From 98eb9539769bff3a1648285d4cfe4ccbb62ef7de Mon Sep 17 00:00:00 2001 From: Boneshock Date: Wed, 1 May 2024 19:26:59 +0200 Subject: [PATCH 01/25] Add headers to categorize filters in large triggers (#5027) --- WeakAuras/Prototypes.lua | 394 ++++++++++++++++++++++--------- WeakAurasOptions/LoadOptions.lua | 9 + 2 files changed, 291 insertions(+), 112 deletions(-) diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index 041f9a6036..0ed362a4d7 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -2650,6 +2650,13 @@ Private.event_prototypes = { enable = WeakAuras.IsRetail(), hidden = not WeakAuras.IsRetail(), }, + { + type = "header", + name = "paragonReputationHeader", + display = L["Paragon Reputation"], + enable = WeakAuras.IsRetail(), + hidden = not WeakAuras.IsRetail(), + }, { name = "isParagon", display = L["Is Paragon Reputation"], @@ -2670,6 +2677,16 @@ Private.event_prototypes = { enable = WeakAuras.IsRetail(), hidden = not WeakAuras.IsRetail(), }, + { + type = "header", + name = "friendshipReputationHeader", + display = L["Friendship Reputation"], + enable = WeakAuras.IsRetail() and function(trigger) + local repInfo = trigger.factionID and C_GossipInfo.GetFriendshipReputation(trigger.factionID); + return repInfo and repInfo.friendshipFactionID > 0 + end, + hidden = not WeakAuras.IsRetail(), + }, { name = "friendshipRank", display = L["Friendship Rank"], @@ -2698,6 +2715,16 @@ Private.event_prototypes = { hidden = not WeakAuras.IsRetail(), noProgressSource = true, }, + { + type = "header", + name = "renownReputationHeader", + display = L["Renown Reputation"], + enable = WeakAuras.IsRetail() and function(trigger) + local majorFactionData = trigger.factionID and C_MajorFactions.GetMajorFactionData(trigger.factionID) + return majorFactionData and majorFactionData.renownLevel + end, + hidden = not WeakAuras.IsRetail(), + }, { name = "renownLevel", display = L["Renown Level"], @@ -2830,6 +2857,11 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "restedExperienceHeader", + display = L["Rested Experience"], + }, { name = "showRested", display = L["Show Rested Overlay"], @@ -3017,6 +3049,11 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "absorbAndHealingHeader", + display = L["Absorb and Healing"], + }, { name = "showAbsorb", display = L["Fetch Absorb"], @@ -3105,6 +3142,11 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "unitCharacteristicsHeader", + display = L["Unit Characteristics"], + }, { name = "name", display = L["Unit Name"], @@ -3220,6 +3262,14 @@ Private.event_prototypes = { test = "true", init = "raidMarkIndex > 0 and '{rt'..raidMarkIndex..'}' or ''" }, + { + type = "header", + name = "miscellaneousHeader", + display = L["Miscellaneous"], + enable = function(trigger) + return trigger.unit == "nameplate" or trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" + end, + }, { name = "includePets", display = L["Include Pets"], @@ -3734,6 +3784,11 @@ Private.event_prototypes = { hidden = true, test = "true" }, + { + type = "header", + name = "unitCharacteristicsHeader", + display = L["Unit Characteristics"], + }, { name = "namerealm", display = L["Unit Name/Realm"], @@ -3833,6 +3888,14 @@ Private.event_prototypes = { test = "true", init = "raidMarkIndex > 0 and '{rt'..raidMarkIndex..'}' or ''" }, + { + type = "header", + name = "miscellaneousHeader", + display = L["Miscellaneous"], + enable = function(trigger) + return trigger.unit == "nameplate" or trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" + end, + }, { name = "includePets", display = L["Include Pets"], @@ -4157,6 +4220,14 @@ Private.event_prototypes = { test = "true", init = "raidMarkIndex > 0 and '{rt'..raidMarkIndex..'}' or ''" }, + { + type = "header", + name = "miscellaneousHeader", + display = L["Miscellaneous"], + enable = function(trigger) + return trigger.unit == "nameplate" or trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" + end, + }, { name = "ignoreSelf", display = L["Ignore Self"], @@ -4234,6 +4305,11 @@ Private.event_prototypes = { {}, -- timestamp ignored with _ argument {}, -- messageType ignored with _ argument (it is checked before the dynamic function) {}, -- hideCaster ignored with _ argument + { + type = "header", + name = "sourceHeader", + display = L["Source Info"], + }, { name = "sourceGUID", init = "arg", @@ -4363,6 +4439,14 @@ Private.event_prototypes = { store = true, hidden = true, }, + { + type = "header", + name = "destHeader", + display = L["Destination Info"], + enable = function(trigger) + return not (trigger.subeventPrefix == "SPELL" and trigger.subeventSuffix == "_CAST_START"); + end, + }, { name = "destGUID", init = "arg", @@ -4528,6 +4612,37 @@ Private.event_prototypes = { return not (trigger.subeventPrefix == "SPELL" and trigger.subeventSuffix == "_CAST_START"); end, }, + { + type = "header", + name = "subeventHeader", + display = L["Subevent Info"], + enable = function(trigger) + return trigger.subeventPrefix and ( + trigger.subeventPrefix == "RANGE" + or trigger.subeventPrefix == "ENVIRONMENTAL" + or trigger.subeventPrefix:find("DAMAGE") + or trigger.subeventPrefix:find("SPELL")) + + or trigger.subeventSuffix and ( + trigger.subeventSuffix == "_ABSORBED" + or trigger.subeventSuffix == "_INTERRUPT" + or trigger.subeventSuffix == "_DISPEL" + or trigger.subeventSuffix == "_DISPEL_FAILED" + or trigger.subeventSuffix == "_STOLEN" + or trigger.subeventSuffix == "_AURA_BROKEN_SPELL" + or trigger.subeventSuffix == "_DAMAGE" + or trigger.subeventSuffix == "_HEAL" + or trigger.subeventSuffix == "_ENERGIZE" + or trigger.subeventSuffix == "_DRAIN" + or trigger.subeventSuffix == "_LEECH" + or trigger.subeventSuffix == "_DAMAGE" + or trigger.subeventSuffix == "_MISSED" + or trigger.subeventSuffix == "_EXTRA_ATTACKS" + or trigger.subeventSuffix == "_CAST_FAILED" + or trigger.subeventSuffix:find("DOSE") + or trigger.subeventSuffix:find("AURA")) + end, + }, { name = "spellId", display = L["Spell Id"], @@ -4831,6 +4946,11 @@ Private.event_prototypes = { return trigger.subeventSuffix == "_CAST_FAILED" end }, -- failedType ignored with _ argument - theoretically this is not necessary because it is the last argument in the event, but it is added here for completeness + { + type = "header", + name = "miscellaneousHeader", + display = L["Miscellaneous"], + }, { name = "cloneId", display = L["Clone per Event"], @@ -8479,6 +8599,11 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "unitCharacteristicsHeader", + display = L["Unit Characteristics"], + }, { name = "name", display = L["Unit Name"], @@ -8893,6 +9018,20 @@ Private.event_prototypes = { store = true, conditionType = "bool", }, + + { + name = "remaining", + display = L["Remaining Time"], + type = "number", + enable = function(trigger) return not trigger.use_inverse end, + }, + { + type = "header", + name = "empoweredHeader", + display = L["Empowered Cast"], + enable = WeakAuras.IsRetail() and function(trigger) return not trigger.use_inverse end or false, + hidden = not WeakAuras.IsRetail() + }, { name = "empowered", display = L["Empowered"], @@ -8943,12 +9082,6 @@ Private.event_prototypes = { type = "toggle", conditionType = "bool", }, - { - name = "remaining", - display = L["Remaining Time"], - type = "number", - enable = function(trigger) return not trigger.use_inverse end, - }, { name = "name", hidden = true, @@ -9001,6 +9134,11 @@ Private.event_prototypes = { return not trigger.use_inverse end }, + { + type = "header", + name = "unitCharacteristicsHeader", + display = L["Unit Characteristics"], + }, { name = "npcId", display = L["Npc ID"], @@ -9078,27 +9216,6 @@ Private.event_prototypes = { test = "true", init = "raidMarkIndex > 0 and '{rt'..raidMarkIndex..'}' or ''" }, - { - name = "includePets", - display = L["Include Pets"], - type = "select", - values = "include_pets_types", - width = WeakAuras.normalWidth, - test = "true", - enable = function(trigger) - return trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" - end - }, - { - name = "ignoreSelf", - display = L["Ignore Self"], - type = "toggle", - width = WeakAuras.doubleWidth, - enable = function(trigger) - return trigger.unit == "nameplate" or trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" - end, - init = "not UnitIsUnit(\"player\", unit)" - }, { name = "nameplateType", display = L["Nameplate Type"], @@ -9211,6 +9328,11 @@ Private.event_prototypes = { enable = function(trigger) return not trigger.use_inverse end, desc = constants.nameRealmFilterDesc, }, + { + type = "header", + name = "miscellaneousHeader", + display = L["Miscellaneous"], + }, { name = "showLatency", display = L["Overlay Latency"], @@ -9221,6 +9343,27 @@ Private.event_prototypes = { end, reloadOptions = true }, + { + name = "includePets", + display = L["Include Pets"], + type = "select", + values = "include_pets_types", + width = WeakAuras.normalWidth, + test = "true", + enable = function(trigger) + return trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" + end + }, + { + name = "ignoreSelf", + display = L["Ignore Self"], + type = "toggle", + width = WeakAuras.doubleWidth, + enable = function(trigger) + return trigger.unit == "nameplate" or trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" + end, + init = "not UnitIsUnit(\"player\", unit)" + }, { name = "onUpdateUnitTarget", display = WeakAuras.newFeatureString .. L["Advanced Caster's Target Check"], @@ -9385,6 +9528,11 @@ Private.event_prototypes = { force_events = "CONDITIONS_CHECK", statesParameter = "one", args = { + { + type = "header", + name = "primaryStatsHeader", + display = L["Primary Stats"], + }, { name = "mainstat", display = L["Main Stat"], @@ -9467,6 +9615,11 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "secondaryStatsHeader", + display = L["Secondary Stats"], + }, { name = "criticalrating", display = L["Critical Rating"], @@ -9728,88 +9881,9 @@ Private.event_prototypes = { }, }, { - name = "resistanceholy", - display = L["Holy Resistance"], - type = "number", - init = "select(2, UnitResistance('player', 1))", - store = true, - enable = WeakAuras.IsClassicEraOrWrathOrCata(), - conditionType = "number", - hidden = WeakAuras.IsRetail(), - multiEntry = { - operator = "and", - limit = 2 - }, - }, - { - name = "resistancefire", - display = L["Fire Resistance"], - type = "number", - init = "select(2, UnitResistance('player', 2))", - store = true, - enable = WeakAuras.IsClassicEraOrWrathOrCata(), - conditionType = "number", - hidden = WeakAuras.IsRetail(), - multiEntry = { - operator = "and", - limit = 2 - }, - }, - { - name = "resistancenature", - display = L["Nature Resistance"], - type = "number", - init = "select(2, UnitResistance('player', 3))", - store = true, - enable = WeakAuras.IsClassicEraOrWrathOrCata(), - conditionType = "number", - hidden = WeakAuras.IsRetail(), - multiEntry = { - operator = "and", - limit = 2 - }, - }, - { - name = "resistancefrost", - display = L["Frost Resistance"], - type = "number", - init = "select(2, UnitResistance('player', 4))", - store = true, - enable = WeakAuras.IsClassicEraOrWrathOrCata(), - conditionType = "number", - hidden = WeakAuras.IsRetail(), - multiEntry = { - operator = "and", - limit = 2 - }, - }, - { - name = "resistanceshadow", - display = L["Shadow Resistance"], - type = "number", - init = "select(2, UnitResistance('player', 5))", - store = true, - enable = WeakAuras.IsClassicEraOrWrathOrCata(), - conditionType = "number", - hidden = WeakAuras.IsRetail(), - multiEntry = { - operator = "and", - limit = 2 - }, - }, - { - name = "resistancearcane", - display = L["Arcane Resistance"], - type = "number", - init = "select(2, UnitResistance('player', 6))", - store = true, - enable = WeakAuras.IsClassicEraOrWrathOrCata(), - conditionType = "number", - hidden = WeakAuras.IsRetail(), - multiEntry = { - operator = "and", - limit = 2 - }, + type = "header", + name = "tertiaryStatsHeader", + display = L["Tertiary Stats"], }, { name = "leechrating", @@ -9912,6 +9986,11 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "defensiveStatsHeader", + display = L["Defensive Stats"], + }, { name = "defense", display = L["Defense"], @@ -10084,6 +10163,97 @@ Private.event_prototypes = { limit = 2 }, }, + { + type = "header", + name = "resistanceHeader", + display = L["Resistances"], + hidden = WeakAuras.IsRetail(), + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + }, + { + name = "resistanceholy", + display = L["Holy Resistance"], + type = "number", + init = "select(2, UnitResistance('player', 1))", + store = true, + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + conditionType = "number", + hidden = WeakAuras.IsRetail(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "resistancefire", + display = L["Fire Resistance"], + type = "number", + init = "select(2, UnitResistance('player', 2))", + store = true, + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + conditionType = "number", + hidden = WeakAuras.IsRetail(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "resistancenature", + display = L["Nature Resistance"], + type = "number", + init = "select(2, UnitResistance('player', 3))", + store = true, + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + conditionType = "number", + hidden = WeakAuras.IsRetail(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "resistancefrost", + display = L["Frost Resistance"], + type = "number", + init = "select(2, UnitResistance('player', 4))", + store = true, + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + conditionType = "number", + hidden = WeakAuras.IsRetail(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "resistanceshadow", + display = L["Shadow Resistance"], + type = "number", + init = "select(2, UnitResistance('player', 5))", + store = true, + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + conditionType = "number", + hidden = WeakAuras.IsRetail(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "resistancearcane", + display = L["Arcane Resistance"], + type = "number", + init = "select(2, UnitResistance('player', 6))", + store = true, + enable = WeakAuras.IsClassicEraOrWrathOrCata(), + conditionType = "number", + hidden = WeakAuras.IsRetail(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, }, automaticrequired = true, progressType = "none" @@ -10865,9 +11035,9 @@ Private.event_prototypes = { }, }, { - name = "instanceTitle", - display = L["Instance Filters"], - type = "description", + type = "header", + name = "instanceHeader", + display = L["Instance Info"], }, { name = "instanceId", diff --git a/WeakAurasOptions/LoadOptions.lua b/WeakAurasOptions/LoadOptions.lua index 70ea819e7f..4e02fc5466 100644 --- a/WeakAurasOptions/LoadOptions.lua +++ b/WeakAurasOptions/LoadOptions.lua @@ -338,6 +338,15 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum hidden = hidden, } order = order + 1; + elseif (arg.type == "header") then + options["header_"..name] = { + type = "header", + width = WeakAuras.doubleWidth, + name = arg.display, + order = order, + hidden = hidden, + } + order = order + 1 else options["use_"..name] = { type = "toggle", From 9aac648bc250d614c531e399dec583c15b6645e3 Mon Sep 17 00:00:00 2001 From: Buds Date: Sun, 14 Apr 2024 16:30:04 +0200 Subject: [PATCH 02/25] Prepare for the removal of deprecated functions --- .luacheckrc | 8 ++++ WeakAuras/AuraEnvironment.lua | 12 ++++++ WeakAuras/BuffTrigger2.lua | 18 +++++++++ WeakAuras/GenericTrigger.lua | 21 +++++----- WeakAuras/Init.lua | 10 ++--- WeakAuras/Prototypes.lua | 40 +++++++++---------- WeakAuras/Types.lua | 18 ++++----- WeakAuras/WeakAuras.lua | 14 +++---- WeakAurasOptions/LoadOptions.lua | 8 ++-- .../OptionsFrames/OptionsFrame.lua | 2 +- WeakAurasOptions/TriggerOptions.lua | 2 +- WeakAurasOptions/WeakAurasOptions.lua | 10 ++--- WeakAurasTemplates/TriggerTemplatesData.lua | 6 +-- .../TriggerTemplatesDataClassicEra.lua | 6 +-- .../TriggerTemplatesDataWrath.lua | 8 ++-- 15 files changed, 109 insertions(+), 74 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index ae9ad90b33..93d171b853 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -272,7 +272,11 @@ globals = { "BuyTrainerService", "BuybackItem", "C_ActionBar", + "C_AddOns.EnableAddOn", + "C_AddOns.GetAddOnEnableState", "C_AddOns.GetAddOnMetadata", + "C_AddOns.IsAddOnLoaded", + "C_AddOns.LoadAddOn", "C_AdventureJournal", "C_AdventureJournal.ActivateEntry", "C_AdventureJournal.CanBeShown", @@ -1045,6 +1049,10 @@ globals = { "C_Social.TwitterPostScreenshot", "C_SpecializationInfo", "C_SpecializationInfo.GetPvpTalentSlotInfo", + "C_Spell", + "C_Spell.GetSchoolString", + "C_Spell.GetSpellCooldown", + "C_Spell.GetSpellInfo", "C_StorePublic", "C_StorePublic.IsDisabledByParentalControls", "C_StorePublic.IsEnabled", diff --git a/WeakAuras/AuraEnvironment.lua b/WeakAuras/AuraEnvironment.lua index a7c4409880..09cb2ec910 100644 --- a/WeakAuras/AuraEnvironment.lua +++ b/WeakAuras/AuraEnvironment.lua @@ -12,6 +12,18 @@ local LibSerialize = LibStub("LibSerialize") local LibDeflate = LibStub:GetLibrary("LibDeflate") local UnitAura = UnitAura +if UnitAura == nil then + --- Deprecated in 10.2.5 + UnitAura = function(unitToken, index, filter) + local auraData = C_UnitAuras.GetAuraDataByIndex(unitToken, index, filter) + if not auraData then + return nil; + end + + return AuraUtil.UnpackAuraData(auraData) + end +end + -- Unit Aura functions that return info about the first Aura matching the spellName or spellID given on the unit. local WA_GetUnitAura = function(unit, spell, filter) if filter and not filter:upper():find("FUL") then diff --git a/WeakAuras/BuffTrigger2.lua b/WeakAuras/BuffTrigger2.lua index e3f756c50b..58a4fed459 100644 --- a/WeakAuras/BuffTrigger2.lua +++ b/WeakAuras/BuffTrigger2.lua @@ -664,6 +664,24 @@ local function FindBestMatchDataForUnit(time, id, triggernum, triggerInfo, unit) return bestMatch, matchCount, stackCount, nextCheck end +--- Deprecated in 10.1.5 +local GetTexCoordsForRole = function(role) + local textureHeight, textureWidth = 256, 256 + local roleHeight, roleWidth = 67, 67 + + if ( role == "GUIDE" ) then + return GetTexCoordsByGrid(1, 1, textureWidth, textureHeight, roleWidth, roleHeight) + elseif ( role == "TANK" ) then + return GetTexCoordsByGrid(1, 2, textureWidth, textureHeight, roleWidth, roleHeight) + elseif ( role == "HEALER" ) then + return GetTexCoordsByGrid(2, 1, textureWidth, textureHeight, roleWidth, roleHeight) + elseif ( role == "DAMAGER" ) then + return GetTexCoordsByGrid(2, 2, textureWidth, textureHeight, roleWidth, roleHeight) + else + error("Unknown role: "..tostring(role)) + end +end + local roleIcons = { DAMAGER = CreateTextureMarkup([=[Interface\LFGFrame\UI-LFG-ICON-ROLES]=], 256, 256, 0, 0, GetTexCoordsForRole("DAMAGER")), HEALER = CreateTextureMarkup([=[Interface\LFGFrame\UI-LFG-ICON-ROLES]=], 256, 256, 0, 0, GetTexCoordsForRole("HEALER")), diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index fc4ca185a6..7644b1bfd2 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -56,7 +56,6 @@ local tinsert, tconcat, wipe = table.insert, table.concat, wipe local tostring, pairs, type = tostring, pairs, type local error, setmetatable = error, setmetatable local CombatLogGetCurrentEventInfo = CombatLogGetCurrentEventInfo; -local GetItemCooldown = GetItemCooldown or (C_Container and C_Container.GetItemCooldown) or nil -- WoW APIs local IsPlayerMoving = IsPlayerMoving @@ -1907,7 +1906,7 @@ do function WeakAuras.GetSwingTimerInfo(hand) if(hand == "main") then local itemId = GetInventoryItemID("player", mh); - local name, _, _, _, _, _, _, _, _, icon = GetItemInfo(itemId or 0); + local name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(itemId or 0); if(lastSwingMain) then return swingDurationMain, lastSwingMain + swingDurationMain - mainSwingOffset, name, icon; elseif WeakAuras.IsRetail() and lastSwingRange then @@ -1917,7 +1916,7 @@ do end elseif(hand == "off") then local itemId = GetInventoryItemID("player", oh); - local name, _, _, _, _, _, _, _, _, icon = GetItemInfo(itemId or 0); + local name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(itemId or 0); if(lastSwingOff) then return swingDurationOff, lastSwingOff + swingDurationOff, name, icon; else @@ -1925,7 +1924,7 @@ do end elseif(hand == "ranged") then local itemId = GetInventoryItemID("player", ranged); - local name, _, _, _, _, _, _, _, _, icon = GetItemInfo(itemId or 0); + local name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(itemId or 0); if (lastSwingRange) then return swingDurationRange, lastSwingRange + swingDurationRange, name, icon; else @@ -3015,7 +3014,7 @@ do ---@type fun() function Private.CheckItemCooldowns() for id, _ in pairs(items) do - local startTime, duration, enabled = GetItemCooldown(id); + local startTime, duration, enabled = C_Container.GetItemCooldown(id); -- TODO: In 10.2.6 the apis return values changed from 1,0 for enabled to true, false -- We should adjust once its on all versions if enabled == false then @@ -3260,7 +3259,7 @@ do items[id] = true; -- TODO: In 10.2.6 the apis return values changed from 1,0 for enabled to true, false -- We should adjust once its on all versions - local startTime, duration, enabled = GetItemCooldown(id); + local startTime, duration, enabled = C_Container.GetItemCooldown(id); if (duration == 0) then enabled = 1; end @@ -4618,7 +4617,7 @@ WeakAuras.GetBonusIdInfo = function(ids, specificSlot) for slot in pairs(checkSlots) do local itemLink = GetInventoryItemLink('player', slot) if itemLink and findIdInLink(id, itemLink, 1) then - local itemID, _, _, _, icon = GetItemInfoInstant(itemLink) + local itemID, _, _, _, icon = C_Item.GetItemInfoInstant(itemLink) local itemName = itemLink:match("%[(.*)%]") return id, itemID, itemName, icon, slot, Private.item_slot_types[slot] end @@ -4631,7 +4630,7 @@ end ---@return boolean|nil isItemEquipped WeakAuras.CheckForItemEquipped = function(itemName, specificSlot) if not specificSlot then - return IsEquippedItem(itemName or '') + return C_Item.IsEquippedItem(itemName or '') else local item = Item:CreateFromEquipmentSlot(specificSlot) if item and not item:IsItemEmpty() then @@ -4643,7 +4642,7 @@ end Private.ExecEnv.GetItemSubClassInfo = function(i) local subClassId = i % 256 local classId = (i - subClassId) / 256 - return GetItemSubClassInfo(classId, subClassId) + return C_Item.GetItemSubClassInfo(classId, subClassId) end Private.ExecEnv.IsEquippedItemType = function(itemType, itemSlot) @@ -4652,11 +4651,11 @@ Private.ExecEnv.IsEquippedItemType = function(itemType, itemSlot) if itemId then local triggerSubClassId = itemType % 256 local triggerClassId = (itemType - triggerSubClassId) / 256 - local _, _, _, _, _, classId, subclassId = GetItemInfoInstant(itemId) + local _, _, _, _, _, classId, subclassId = C_Item.GetItemInfoInstant(itemId) return classId == triggerClassId and subclassId == triggerSubClassId end else - return IsEquippedItemType(Private.ExecEnv.GetItemSubClassInfo(itemType) or '') + return C_Item.IsEquippedItemType(Private.ExecEnv.GetItemSubClassInfo(itemType) or '') end end diff --git a/WeakAuras/Init.lua b/WeakAuras/Init.lua index 4ebddf47fd..6838dd961a 100644 --- a/WeakAuras/Init.lua +++ b/WeakAuras/Init.lua @@ -9,8 +9,6 @@ WeakAuras = {} WeakAuras.L = {} Private.frames = {} -local GetAddOnMetadata = C_AddOns and C_AddOns.GetAddOnMetadata or GetAddOnMetadata - --- @alias uid string --- @alias auraId string @@ -375,11 +373,11 @@ local GetAddOnMetadata = C_AddOns and C_AddOns.GetAddOnMetadata or GetAddOnMetad WeakAuras.normalWidth = 1.3 WeakAuras.halfWidth = WeakAuras.normalWidth / 2 WeakAuras.doubleWidth = WeakAuras.normalWidth * 2 -local versionStringFromToc = GetAddOnMetadata("WeakAuras", "Version") +local versionStringFromToc = C_AddOns.GetAddOnMetadata("WeakAuras", "Version") local versionString = "@project-version@" local buildTime = "@build-time@" -local flavorFromToc = GetAddOnMetadata("WeakAuras", "X-Flavor") +local flavorFromToc = C_AddOns.GetAddOnMetadata("WeakAuras", "X-Flavor") local flavorFromTocToNumber = { Vanilla = 1, TBC = 2, @@ -470,8 +468,8 @@ WeakAuras.prettyPrint = function(...) end -- Force enable WeakAurasCompanion and Archive because some addon managers interfere with it -EnableAddOn("WeakAurasCompanion") -EnableAddOn("WeakAurasArchive") +C_AddOns.EnableAddOn("WeakAurasCompanion") +C_AddOns.EnableAddOn("WeakAurasArchive") local libsAreOk = true do diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index 0ed362a4d7..d9517e417e 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -8,13 +8,13 @@ local Private = select(2, ...) local tinsert, tsort = table.insert, table.sort local tostring = tostring local select, pairs, type = select, pairs, type -local ceil, min = ceil, min +local ceil = ceil -- WoW APIs local GetTalentInfo = GetTalentInfo -local GetNumSpecializationsForClassID, GetSpecialization = GetNumSpecializationsForClassID, GetSpecialization +local GetSpecialization = GetSpecialization local UnitClass = UnitClass -local GetSpellInfo, GetItemInfo, GetItemCount, GetItemIcon = GetSpellInfo, GetItemInfo, GetItemCount, GetItemIcon +local GetSpellInfo = GetSpellInfo local GetShapeshiftFormInfo, GetShapeshiftForm = GetShapeshiftFormInfo, GetShapeshiftForm local GetRuneCooldown, UnitCastingInfo, UnitChannelInfo = GetRuneCooldown, UnitCastingInfo, UnitChannelInfo local UnitDetailedThreatSituation = UnitDetailedThreatSituation @@ -1150,7 +1150,7 @@ do -- Returns the set id OR causes WA_DELAYED_SET_INFORMATION after the item information is available function Private.GetSetId(itemId) if itemId then - local name, _, _, _, _, _, _, _, _, _, _, _, _, _, _, setID = GetItemInfo(itemId) + local name, _, _, _, _, _, _, _, _, _, _, _, _, _, _, setID = C_Item.GetItemInfo(itemId) if not name then if next(waitingFor) == nil then itemDataLoadFrame:RegisterEvent("GET_ITEM_INFO_RECEIVED") @@ -1907,7 +1907,7 @@ Private.load_prototype = { multiEntry = { operator = "or" }, - test = "IsEquippedItem(GetItemInfo(%s) or '')", + test = "C_Item.IsEquippedItem(C_Item.GetItemInfo(%s) or '')", events = { "UNIT_INVENTORY_CHANGED", "PLAYER_EQUIPMENT_CHANGED"} }, { @@ -1917,14 +1917,14 @@ Private.load_prototype = { multiEntry = { operator = "or" }, - test = "not IsEquippedItem(GetItemInfo(%s) or '')", + test = "not C_Item.IsEquippedItem(C_Item.GetItemInfo(%s) or '')", events = { "UNIT_INVENTORY_CHANGED", "PLAYER_EQUIPMENT_CHANGED"} }, { name = "itemtypeequipped", display = L["Item Type Equipped"], type = "multiselect", - test = "IsEquippedItemType(Private.ExecEnv.GetItemSubClassInfo(%s) or '')", + test = "C_Item.IsEquippedItemType(Private.ExecEnv.GetItemSubClassInfo(%s) or '')", events = { "UNIT_INVENTORY_CHANGED", "PLAYER_EQUIPMENT_CHANGED"}, values = "item_weapon_types" }, @@ -5767,7 +5767,7 @@ Private.event_prototypes = { test = "true", conditionType = "bool", conditionTest = function(state, needle) - return state and state.show and (UnitExists('target') and IsItemInRange(state.itemname, 'target')) == (needle == 1) + return state and state.show and (UnitExists('target') and C_Item.IsItemInRange(state.itemname, 'target')) == (needle == 1) end, conditionEvents = AddTargetConditionEvents({ "WA_SPELL_RANGECHECK", @@ -5793,7 +5793,7 @@ Private.event_prototypes = { return duration, startTime + duration; end, nameFunc = function(trigger) - local name = GetItemInfo(trigger.itemName or 0); + local name = C_Item.GetItemInfo(trigger.itemName or 0); if(name) then return name; else @@ -5801,7 +5801,7 @@ Private.event_prototypes = { end end, iconFunc = function(trigger) - local _, _, _, _, icon = GetItemInfoInstant(trigger.itemName or 0); + local _, _, _, _, icon = C_Item.GetItemInfoInstant(trigger.itemName or 0); return icon; end, hasItemID = true, @@ -5951,7 +5951,7 @@ Private.event_prototypes = { nameFunc = function(trigger) local item = GetInventoryItemID("player", trigger.itemSlot or 0); if (item) then - return (GetItemInfo(item)) + return (C_Item.GetItemInfo(item)) end end, stacksFunc = function(trigger) @@ -5991,7 +5991,7 @@ Private.event_prototypes = { } }, nameFunc = function(trigger) - local name = GetItemInfo(trigger.itemName or 0); + local name = C_Item.GetItemInfo(trigger.itemName or 0); if(name) then return name; else @@ -5999,7 +5999,7 @@ Private.event_prototypes = { end end, iconFunc = function(trigger) - local _, _, _, _, icon = GetItemInfoInstant(trigger.itemName or 0); + local _, _, _, _, icon = C_Item.GetItemInfoInstant(trigger.itemName or 0); return icon; end, hasItemID = true, @@ -6031,7 +6031,7 @@ Private.event_prototypes = { nameFunc = function(trigger) local item = GetInventoryItemID("player", trigger.itemSlot or 0); if (item) then - return (GetItemInfo(item)) + return (C_Item.GetItemInfo(item)) else return "" end @@ -7093,9 +7093,9 @@ Private.event_prototypes = { local itemName = %s local exactSpellMatch = %s if not exactSpellMatch and tonumber(itemName) then - itemName = GetItemInfo(itemName) + itemName = C_Item.GetItemInfo(itemName) end - local count = GetItemCount(itemName or "", %s, %s); + local count = C_Item.GetItemCount(itemName or "", %s, %s); local reagentQuality, reagentQualityTexture if WeakAuras.IsRetail() and itemName then reagentQuality = C_TradeSkillUI.GetItemReagentQualityByItemInfo(itemName) @@ -7183,7 +7183,7 @@ Private.event_prototypes = { }, { name = "icon", - init = "GetItemIcon(itemName or '')", + init = "C_Item.GetItemIconByID(itemName or '')", hidden = true, store = true, test = "true" @@ -8171,7 +8171,7 @@ Private.event_prototypes = { local ret = [[ local inverse = %s; - local itemName = GetItemInfo(%s); + local itemName = C_Item.GetItemInfo(%s); local itemSlot = %s; local equipped = WeakAuras.CheckForItemEquipped(itemName, itemSlot); ]]; @@ -8205,11 +8205,11 @@ Private.event_prototypes = { } }, nameFunc = function(trigger) - local name = GetItemInfo(trigger.itemName); + local name = C_Item.GetItemInfo(trigger.itemName); return name; end, iconFunc = function(trigger) - local _, _, _, _, icon = GetItemInfoInstant(trigger.itemName or 0); + local _, _, _, _, icon = C_Item.GetItemInfoInstant(trigger.itemName or 0); return icon; end, hasItemID = true, diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index cb6b1a6745..19196a2643 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -1829,13 +1829,13 @@ Private.loss_of_control_types = { ---@type table Private.main_spell_schools = { - [1] = GetSchoolString(1), - [2] = GetSchoolString(2), - [4] = GetSchoolString(4), - [8] = GetSchoolString(8), - [16] = GetSchoolString(16), - [32] = GetSchoolString(32), - [64] = GetSchoolString(64), + [1] = C_Spell.GetSchoolString(1), + [2] = C_Spell.GetSchoolString(2), + [4] = C_Spell.GetSchoolString(4), + [8] = C_Spell.GetSchoolString(8), + [16] = C_Spell.GetSchoolString(16), + [32] = C_Spell.GetSchoolString(32), + [64] = C_Spell.GetSchoolString(64), } ---@type table> @@ -3990,12 +3990,12 @@ end for i = 0, 20 do if not skippedWeaponTypes[i] then - Private.item_weapon_types[2 * 256 + i] = GetItemSubClassInfo(2, i) + Private.item_weapon_types[2 * 256 + i] = C_Item.GetItemSubClassInfo(2, i) end end -- Shields -Private.item_weapon_types[4 * 256 + 6] = GetItemSubClassInfo(4, 6) +Private.item_weapon_types[4 * 256 + 6] = C_Item.GetItemSubClassInfo(4, 6) WeakAuras.item_weapon_types = Private.item_weapon_types WeakAuras.StopMotion = {} diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index d8051e9eea..90df6018f4 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -9,9 +9,9 @@ local internalVersion = 73 local insert = table.insert -- WoW APIs -local GetTalentInfo, IsAddOnLoaded, InCombatLockdown = GetTalentInfo, IsAddOnLoaded, InCombatLockdown -local LoadAddOn, UnitName, GetRealmName, UnitRace, UnitFactionGroup, IsInRaid - = LoadAddOn, UnitName, GetRealmName, UnitRace, UnitFactionGroup, IsInRaid +local GetTalentInfo, InCombatLockdown = GetTalentInfo, InCombatLockdown +local UnitName, GetRealmName, UnitRace, UnitFactionGroup, IsInRaid + = UnitName, GetRealmName, UnitRace, UnitFactionGroup, IsInRaid local UnitClass, UnitExists, UnitGUID, UnitAffectingCombat, GetInstanceInfo, IsInInstance = UnitClass, UnitExists, UnitGUID, UnitAffectingCombat, GetInstanceInfo, IsInInstance local UnitIsUnit, GetRaidRosterInfo, GetSpecialization, UnitInVehicle, UnitHasVehicleUI, GetSpellInfo @@ -129,7 +129,7 @@ do end function Private.LoadOptions(msg) - if not(IsAddOnLoaded("WeakAurasOptions")) then + if not(C_AddOns.IsAddOnLoaded("WeakAurasOptions")) then if not WeakAuras.IsLoginFinished() then prettyPrint(Private.LoginMessage()) loginQueue[#loginQueue + 1] = WeakAuras.OpenOptions @@ -140,7 +140,7 @@ function Private.LoadOptions(msg) Private.frames["Addon Initialization Handler"]:RegisterEvent("PLAYER_REGEN_ENABLED") return false; else - local loaded, reason = LoadAddOn("WeakAurasOptions"); + local loaded, reason = C_AddOns.LoadAddOn("WeakAurasOptions"); if not(loaded) then reason = string.lower("|cffff2020" .. _G["ADDON_" .. reason] .. "|r.") WeakAuras.prettyPrint(string.format(L["Options could not be loaded, the addon is %s"], reason)); @@ -1179,8 +1179,8 @@ do -- Archive stuff if Archivist:IsInitialized() then return Archivist else - if not IsAddOnLoaded("WeakAurasArchive") then - local ok, reason = LoadAddOn("WeakAurasArchive") + if not C_AddOns.IsAddOnLoaded("WeakAurasArchive") then + local ok, reason = C_AddOns.LoadAddOn("WeakAurasArchive") if not ok then reason = string.lower("|cffff2020" .. _G["ADDON_" .. reason] .. "|r.") error(string.format(L["Could not load WeakAuras Archive, the addon is %s"], reason)) diff --git a/WeakAurasOptions/LoadOptions.lua b/WeakAurasOptions/LoadOptions.lua index 4e02fc5466..9ec0eedcf7 100644 --- a/WeakAurasOptions/LoadOptions.lua +++ b/WeakAurasOptions/LoadOptions.lua @@ -62,7 +62,7 @@ local function CorrectItemName(input) if(inputId) then return inputId; elseif(input) then - local _, link = GetItemInfo(input); + local _, link = C_Item.GetItemInfo(input); if(link) then local itemId = link:match("item:(%d+)"); return tonumber(itemId); @@ -669,7 +669,7 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum local _, _, icon = GetSpellInfo(value); return icon and tostring(icon) or "", 18, 18; elseif(arg.type == "item") then - local _, _, _, _, _, _, _, _, _, icon = GetItemInfo(value); + local _, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(value); return icon and tostring(icon) or "", 18, 18; end else @@ -678,7 +678,7 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum end, disabled = function() local value = getValue(trigger, nil, realname, multiEntry, entryNumber) - return not ((arg.type == "aura" and value and spellCache.GetIcon(value)) or (arg.type == "spell" and value and GetSpellInfo(value)) or (arg.type == "item" and value and GetItemIcon(value or ''))) + return not ((arg.type == "aura" and value and spellCache.GetIcon(value)) or (arg.type == "spell" and value and GetSpellInfo(value)) or (arg.type == "item" and value and C_Item.GetItemIconByID(value or ''))) end }; order = order + 1; @@ -700,7 +700,7 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum return tostring(value) end else - local name = GetItemInfo(value); + local name = C_Item.GetItemInfo(value); if name then return name; end diff --git a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua index e513b5ee54..a6e61fa5cb 100644 --- a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua +++ b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua @@ -1117,7 +1117,7 @@ function OptionsPrivate.CreateFrame() containerScroll:SetLayout("flow") border:AddChild(containerScroll) - if GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0 then + if C_AddOns.GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0 then local simpleLabel = AceGUI:Create("Label") simpleLabel:SetFont(STANDARD_TEXT_FONT, 24, "OUTLINE") simpleLabel:SetColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b) diff --git a/WeakAurasOptions/TriggerOptions.lua b/WeakAurasOptions/TriggerOptions.lua index 517cbfd479..da3a95f653 100644 --- a/WeakAurasOptions/TriggerOptions.lua +++ b/WeakAurasOptions/TriggerOptions.lua @@ -375,7 +375,7 @@ function OptionsPrivate.AddTriggerMetaFunctions(options, data, triggernum) end end } - if (GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0) then + if (C_AddOns.GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0) then options.__applyTemplate = function() -- If we have more than a single aura selected, -- we want to open the template view with the group/multi selection diff --git a/WeakAurasOptions/WeakAurasOptions.lua b/WeakAurasOptions/WeakAurasOptions.lua index 6c8a037469..0c3d6e5d78 100644 --- a/WeakAurasOptions/WeakAurasOptions.lua +++ b/WeakAurasOptions/WeakAurasOptions.lua @@ -13,7 +13,7 @@ local _G = _G -- WoW APIs local InCombatLockdown = InCombatLockdown -local CreateFrame, IsAddOnLoaded, LoadAddOn = CreateFrame, IsAddOnLoaded, LoadAddOn +local CreateFrame = CreateFrame local AceGUI = LibStub("AceGUI-3.0") @@ -1693,8 +1693,8 @@ function OptionsPrivate.OpenIconPicker(baseObject, paths, groupIcon) end function OptionsPrivate.OpenModelPicker(baseObject, path) - if not(IsAddOnLoaded("WeakAurasModelPaths")) then - local loaded, reason = LoadAddOn("WeakAurasModelPaths"); + if not(C_AddOns.IsAddOnLoaded("WeakAurasModelPaths")) then + local loaded, reason = C_AddOns.LoadAddOn("WeakAurasModelPaths"); if not(loaded) then reason = string.lower("|cffff2020" .. _G["ADDON_" .. reason] .. "|r.") WeakAuras.prettyPrint(string.format(L["ModelPaths could not be loaded, the addon is %s"], reason)); @@ -1710,8 +1710,8 @@ function OptionsPrivate.OpenCodeReview(data) end function OptionsPrivate.OpenTriggerTemplate(data, targetId) - if not(IsAddOnLoaded("WeakAurasTemplates")) then - local loaded, reason = LoadAddOn("WeakAurasTemplates"); + if not(C_AddOns.IsAddOnLoaded("WeakAurasTemplates")) then + local loaded, reason = C_AddOns.LoadAddOn("WeakAurasTemplates"); if not(loaded) then reason = string.lower("|cffff2020" .. _G["ADDON_" .. reason] .. "|r.") WeakAuras.prettyPrint(string.format(L["Templates could not be loaded, the addon is %s"], reason)); diff --git a/WeakAurasTemplates/TriggerTemplatesData.lua b/WeakAurasTemplates/TriggerTemplatesData.lua index bceedfa16c..3da5e4820f 100644 --- a/WeakAurasTemplates/TriggerTemplatesData.lua +++ b/WeakAurasTemplates/TriggerTemplatesData.lua @@ -3,7 +3,7 @@ local AddonName, TemplatePrivate = ... local WeakAuras = WeakAuras if not WeakAuras.IsRetail() then return end local L = WeakAuras.L -local GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell = GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell +local GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell = GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell -- The templates tables are created on demand local templates = @@ -5327,7 +5327,7 @@ local function handleItem(item) if (item.spell) then local name, icon, _; if (item.type == "item") then - name, _, _, _, _, _, _, _, _, icon = GetItemInfo(item.spell); + name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(item.spell); if (name == nil) then name = L["Unknown Item"] .. " " .. tostring(item.spell); waitingForItemInfo = true; @@ -5350,7 +5350,7 @@ local function handleItem(item) item.title = item.titlePrefix .. item.title; end if (item.titleItemPrefix) then - local prefix = GetItemInfo(item.titleItemPrefix); + local prefix = C_Item.GetItemInfo(item.titleItemPrefix); if (prefix) then item.title = prefix .. "-" .. item.title; else diff --git a/WeakAurasTemplates/TriggerTemplatesDataClassicEra.lua b/WeakAurasTemplates/TriggerTemplatesDataClassicEra.lua index 1aa5cf0289..197df55c0a 100644 --- a/WeakAurasTemplates/TriggerTemplatesDataClassicEra.lua +++ b/WeakAurasTemplates/TriggerTemplatesDataClassicEra.lua @@ -3,7 +3,7 @@ local AddonName, TemplatePrivate = ... local WeakAuras = WeakAuras if not WeakAuras.IsClassicEra() then return end local L = WeakAuras.L -local GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell = GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell +local GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell = GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell local SoD = C_Seasons and C_Seasons.GetActiveSeason and C_Seasons.GetActiveSeason() == 2 @@ -1197,7 +1197,7 @@ local function handleItem(item) if (item.spell) then local name, icon, _; if (item.type == "item") then - name, _, _, _, _, _, _, _, _, icon = GetItemInfo(item.spell); + name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(item.spell); if (name == nil) then name = L["Unknown Item"] .. " " .. tostring(item.spell); waitingForItemInfo = true; @@ -1220,7 +1220,7 @@ local function handleItem(item) item.title = item.titlePrefix .. item.title; end if (item.titleItemPrefix) then - local prefix = GetItemInfo(item.titleItemPrefix); + local prefix = C_Item.GetItemInfo(item.titleItemPrefix); if (prefix) then item.title = prefix .. "-" .. item.title; else diff --git a/WeakAurasTemplates/TriggerTemplatesDataWrath.lua b/WeakAurasTemplates/TriggerTemplatesDataWrath.lua index a9c7e15446..8e076f6f1c 100644 --- a/WeakAurasTemplates/TriggerTemplatesDataWrath.lua +++ b/WeakAurasTemplates/TriggerTemplatesDataWrath.lua @@ -3,8 +3,8 @@ local AddonName, TemplatePrivate = ... local WeakAuras = WeakAuras if not WeakAuras.IsWrathClassic() then return end local L = WeakAuras.L -local GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell - = GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell +local GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell + = GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell -- The templates tables are created on demand local templates = @@ -1113,7 +1113,7 @@ local function handleItem(item) if (item.spell) then local name, icon, _; if (item.type == "item") then - name, _, _, _, _, _, _, _, _, icon = GetItemInfo(item.spell); + name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(item.spell); if (name == nil) then name = L["Unknown Item"] .. " " .. tostring(item.spell); waitingForItemInfo = true; @@ -1136,7 +1136,7 @@ local function handleItem(item) item.title = item.titlePrefix .. item.title; end if (item.titleItemPrefix) then - local prefix = GetItemInfo(item.titleItemPrefix); + local prefix = C_Item.GetItemInfo(item.titleItemPrefix); if (prefix) then item.title = prefix .. "-" .. item.title; else From 34ff4458a4b2f0b9027707c65175023f7bc31b5d Mon Sep 17 00:00:00 2001 From: Buds Date: Thu, 2 May 2024 18:45:59 +0200 Subject: [PATCH 03/25] Weapon Enchant trigger: support ranged weapon on Cataclysm, fixes #5043 --- WeakAuras/GenericTrigger.lua | 24 ++++++++++++++++++++++-- WeakAuras/Prototypes.lua | 4 +++- WeakAuras/Types.lua | 3 +++ 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index 7644b1bfd2..81e5213916 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -3601,6 +3601,7 @@ end do local mh = GetInventorySlotInfo("MainHandSlot") local oh = GetInventorySlotInfo("SecondaryHandSlot") + local rw = GetInventorySlotInfo("RANGEDSLOT") local mh_name, mh_shortenedName, mh_exp, mh_dur, mh_charges, mh_EnchantID; ---@type string? @@ -3610,6 +3611,10 @@ do ---@type string? local oh_icon = GetInventoryItemTexture("player", oh) or "Interface\\Icons\\INV_Misc_QuestionMark" + local rw_exp, rw_dur, rw_name, rw_shortenedName, rw_charges, rw_EnchantID; + ---@type string? + local rw_icon = GetInventoryItemTexture("player", rw) or "Interface\\Icons\\INV_Misc_QuestionMark" + local tenchFrame = nil Private.frames["Temporary Enchant Handler"] = tenchFrame; local tenchTip; @@ -3671,11 +3676,12 @@ do local function tenchUpdate() Private.StartProfileSystem("generictrigger"); - local _, mh_rem, oh_rem - _, mh_rem, mh_charges, mh_EnchantID, _, oh_rem, oh_charges, oh_EnchantID = GetWeaponEnchantInfo(); + local _, mh_rem, oh_rem, rw_rem + _, mh_rem, mh_charges, mh_EnchantID, _, oh_rem, oh_charges, oh_EnchantID, _, rw_rem, rw_charges, rw_EnchantID = GetWeaponEnchantInfo(); local time = GetTime(); local mh_exp_new = mh_rem and (time + (mh_rem / 1000)); local oh_exp_new = oh_rem and (time + (oh_rem / 1000)); + local rw_exp_new = rw_rem and (time + (rw_rem / 1000)); if(math.abs((mh_exp or 0) - (mh_exp_new or 0)) > 1) then mh_exp = mh_exp_new; mh_dur = mh_rem and mh_rem / 1000; @@ -3696,6 +3702,16 @@ do end oh_icon = GetInventoryItemTexture("player", oh) end + if(math.abs((rw_exp or 0) - (rw_exp_new or 0)) > 1) then + rw_exp = rw_exp_new; + rw_dur = rw_rem and rw_rem / 1000; + if rw_exp then + rw_name, rw_shortenedName = getTenchName(rw) + else + rw_name, rw_shortenedName = "None", "None" + end + rw_icon = GetInventoryItemTexture("player", rw) + end WeakAuras.ScanEvents("TENCH_UPDATE"); Private.StopProfileSystem("generictrigger"); end @@ -3717,6 +3733,10 @@ do function WeakAuras.GetOHTenchInfo() return oh_exp, oh_dur, oh_name, oh_shortenedName, oh_icon, oh_charges, oh_EnchantID; end + + function WeakAuras.GetRangeTenchInfo() + return rw_exp, rw_dur, rw_name, rw_shortenedName, rw_icon, rw_charges, rw_EnchantID; + end end -- Pets diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index d9517e417e..9b1ee723fb 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -7348,8 +7348,10 @@ Private.event_prototypes = { if triggerWeaponType == "main" then expirationTime, duration, name, shortenedName, icon, stacks, enchantID = WeakAuras.GetMHTenchInfo() - else + elseif triggerWeaponType == "off" then expirationTime, duration, name, shortenedName, icon, stacks, enchantID = WeakAuras.GetOHTenchInfo() + elseif triggerWeaponType == "ranged" then + expirationTime, duration, name, shortenedName, icon, stacks, enchantID = WeakAuras.GetRangeTenchInfo() end local remaining = expirationTime and expirationTime - GetTime() diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index 19196a2643..dedf13746b 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -2451,6 +2451,9 @@ Private.weapon_types = { ["main"] = MAINHANDSLOT, ["off"] = SECONDARYHANDSLOT } +if WeakAuras.IsCataClassic() then + Private.weapon_types.ranged = RANGEDSLOT +end ---@type table Private.swing_types = { From fb243ab9f1f1f7526546eb96a306e6232da03338 Mon Sep 17 00:00:00 2001 From: Buds Date: Thu, 2 May 2024 22:11:00 +0200 Subject: [PATCH 04/25] Weapon Enchant trigger: fetch data for ranged slot only on Cataclysm --- WeakAuras/GenericTrigger.lua | 28 +++++++++++++++++----------- WeakAuras/Prototypes.lua | 2 +- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index 81e5213916..8fbeca0791 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -3599,9 +3599,10 @@ end -- Weapon Enchants do + local isCata = WeakAuras.IsCataClassic() + local mh = GetInventorySlotInfo("MainHandSlot") local oh = GetInventorySlotInfo("SecondaryHandSlot") - local rw = GetInventorySlotInfo("RANGEDSLOT") local mh_name, mh_shortenedName, mh_exp, mh_dur, mh_charges, mh_EnchantID; ---@type string? @@ -3611,9 +3612,12 @@ do ---@type string? local oh_icon = GetInventoryItemTexture("player", oh) or "Interface\\Icons\\INV_Misc_QuestionMark" - local rw_exp, rw_dur, rw_name, rw_shortenedName, rw_charges, rw_EnchantID; + local rw, rw_icon, rw_exp, rw_dur, rw_name, rw_shortenedName, rw_charges, rw_EnchantID; ---@type string? - local rw_icon = GetInventoryItemTexture("player", rw) or "Interface\\Icons\\INV_Misc_QuestionMark" + if isCata then + rw = GetInventorySlotInfo("RANGEDSLOT") + rw_icon = GetInventoryItemTexture("player", rw) or "Interface\\Icons\\INV_Misc_QuestionMark" + end local tenchFrame = nil Private.frames["Temporary Enchant Handler"] = tenchFrame; @@ -3702,15 +3706,17 @@ do end oh_icon = GetInventoryItemTexture("player", oh) end - if(math.abs((rw_exp or 0) - (rw_exp_new or 0)) > 1) then - rw_exp = rw_exp_new; - rw_dur = rw_rem and rw_rem / 1000; - if rw_exp then - rw_name, rw_shortenedName = getTenchName(rw) - else - rw_name, rw_shortenedName = "None", "None" + if isCata then + if(math.abs((rw_exp or 0) - (rw_exp_new or 0)) > 1) then + rw_exp = rw_exp_new; + rw_dur = rw_rem and rw_rem / 1000; + if rw_exp then + rw_name, rw_shortenedName = getTenchName(rw) + else + rw_name, rw_shortenedName = "None", "None" + end + rw_icon = GetInventoryItemTexture("player", rw) end - rw_icon = GetInventoryItemTexture("player", rw) end WeakAuras.ScanEvents("TENCH_UPDATE"); Private.StopProfileSystem("generictrigger"); diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index 9b1ee723fb..34c3e9e730 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -7350,7 +7350,7 @@ Private.event_prototypes = { expirationTime, duration, name, shortenedName, icon, stacks, enchantID = WeakAuras.GetMHTenchInfo() elseif triggerWeaponType == "off" then expirationTime, duration, name, shortenedName, icon, stacks, enchantID = WeakAuras.GetOHTenchInfo() - elseif triggerWeaponType == "ranged" then + elseif triggerWeaponType == "ranged" and WeakAuras.IsCataClassic() then expirationTime, duration, name, shortenedName, icon, stacks, enchantID = WeakAuras.GetRangeTenchInfo() end From dbf6c7b501dbe84d614f90edf59f202358ed02d6 Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Fri, 3 May 2024 13:12:19 -0500 Subject: [PATCH 05/25] advertise a link to an experimental build, if one exists (#5037) --- .github/pr-commenter.yml | 12 ++++++++++++ .github/workflows/pull_request.yml | 17 ++++++++++++++++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .github/pr-commenter.yml diff --git a/.github/pr-commenter.yml b/.github/pr-commenter.yml new file mode 100644 index 0000000000..d22cea776b --- /dev/null +++ b/.github/pr-commenter.yml @@ -0,0 +1,12 @@ +comment: + on-update: recreate + + snippets: + - id: advertise_build_url_{{ build_id }} + files: + - '*/*' + glob-options: + dot: true + body: | + {{#build_id}}An experimental build of WeakAuras with the changes in this pull request is available [here](https://nightly.link/{{repository}}/actions/artifacts/{{build_id}}.zip).{{/build_id}} + {{^build_id}}Experimental build was unsuccessful. See the logs for details.{{/build_id}} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 3898b7c866..194006fafc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,6 +1,8 @@ name: CI-PR -on: [pull_request] +on: + pull_request: + types: [opened, reopened, synchronize, labeled] jobs: build: @@ -32,10 +34,23 @@ jobs: args: -d -z - uses: actions/upload-artifact@v4 + id: upload-artifact with: name: WeakAuras-PR#${{ github.event.number }}-${{ github.sha }} path: .release/ + - uses: exercism/pr-commenter-action@v1.5.1 + if: ${{ contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview') }} + with: + github-token: ${{ github.token }} + config-file: ".github/pr-commenter.yml" + template-variables: | + { + "repository": "${{ github.repository }}", + "build_id": "${{ steps.upload-artifact.outputs.artifact-id }}", + "run_id": "${{ github.run_id }}" + } + - name: Send Status to Discord uses: nebularg/actions-discord-webhook@v1 with: From bb5179d54f0f4ce1405883782447824ffbd6dd65 Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Fri, 3 May 2024 14:25:08 -0500 Subject: [PATCH 06/25] only upload & advertise build artifact if triggering actor has a write bit Signed-off-by: Allen Faure --- .github/pr-commenter.yml | 6 +++--- .github/workflows/pull_request.yml | 11 +++++++++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/pr-commenter.yml b/.github/pr-commenter.yml index d22cea776b..306dd5c2f5 100644 --- a/.github/pr-commenter.yml +++ b/.github/pr-commenter.yml @@ -1,12 +1,12 @@ comment: on-update: recreate + glob-options: + dot: true snippets: - id: advertise_build_url_{{ build_id }} files: - - '*/*' - glob-options: - dot: true + - '**' body: | {{#build_id}}An experimental build of WeakAuras with the changes in this pull request is available [here](https://nightly.link/{{repository}}/actions/artifacts/{{build_id}}.zip).{{/build_id}} {{^build_id}}Experimental build was unsuccessful. See the logs for details.{{/build_id}} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 194006fafc..035dd3c69b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,14 +1,20 @@ name: CI-PR on: - pull_request: + pull_request_target: types: [opened, reopened, synchronize, labeled] jobs: build: + runs-on: ubuntu-latest steps: + - uses: actions-cool/check-user-permission@v2 + id: check-permission + with: + require: write + username: ${{ github.triggering_actor }} - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -34,13 +40,14 @@ jobs: args: -d -z - uses: actions/upload-artifact@v4 + if: ${{ steps.check-permission.outputs.require-result == 'true'}} id: upload-artifact with: name: WeakAuras-PR#${{ github.event.number }}-${{ github.sha }} path: .release/ - uses: exercism/pr-commenter-action@v1.5.1 - if: ${{ contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview') }} + if: ${{ steps.check-permission.outputs.require-result == 'true' && contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview') }} with: github-token: ${{ github.token }} config-file: ".github/pr-commenter.yml" From 0f652580f6b944a30922193f73decf4eadc5c0c1 Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Fri, 3 May 2024 23:39:54 +0200 Subject: [PATCH 07/25] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e82984dca3..d73ff1fd73 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -34,8 +34,8 @@ body: options: - Retail (Default) - Beta (WoW 11.0) - - Classic - - Wrath of the Lich King Classic + - Classic Era + - Cataclysm Classic validations: required: true From 7859d5e325576faa1b6263ef920b4f373da415fb Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Sat, 4 May 2024 15:10:24 -0500 Subject: [PATCH 08/25] ensure we always compute the correct rect for a dynamic group (#5034) * ensure we always compute the correct rect for a dynamic group This is actually 2 problems in one: - On initial spinup, our PRD anchor doesn't have a valid rect for 1 frame which would be fine, except we're creating it in the same frame we're anchoring dynamic groups to it. Thus, the dynamic group's children also won't have a valid rect. Fix this by forcing an early draw of the PRD anchor via an explicit GetSize call. (see https://warcraft.wiki.gg/wiki/API_ScriptRegion_IsRectValid for more details) - After initial spinup, our PRD anchor is anchored to NamePlate1 (or something that's attached to it, depending on user's addons). Unfortunately for us, Blizzard in their extremely finite wisdom decided to make NamePlate1 a restricted region. Thus, calls to GetRect & friends on any frame in its anchor family will error. This went unnoticed because we explicitly suppress errors on this to avoid user shenanigans breaking WeakAuras. Fix this problem by checking if GetLeft errors: if so, temporarily reanchor the dynamic group to UIParent before computing a new rect for it. Fixes #5023 --- WeakAuras/RegionTypes/DynamicGroup.lua | 12 ++++++++++++ WeakAuras/RegionTypes/RegionPrototype.lua | 1 + WeakAuras/WeakAuras.lua | 5 +++++ 3 files changed, 18 insertions(+) diff --git a/WeakAuras/RegionTypes/DynamicGroup.lua b/WeakAuras/RegionTypes/DynamicGroup.lua index 63b2852fae..4c7b25ebdb 100644 --- a/WeakAuras/RegionTypes/DynamicGroup.lua +++ b/WeakAuras/RegionTypes/DynamicGroup.lua @@ -1537,6 +1537,15 @@ local function modify(parent, region, data) Private.StartProfileSystem("dynamicgroup") Private.StartProfileAura(data.id) local numVisible, minX, maxX, maxY, minY = 0, nil, nil, nil, nil + local isRestricted = region:IsAnchoringRestricted() + if isRestricted then + -- workaround for restricted anchor families (mostly PRD) + -- if region is in a restricted anchor family, we're not allowed to get the rect of its children + -- and via Blizzard's extremely finite wisdom, the personal resource display is one such restricted family + -- so, temporarily reanchor to unrestrict us & child auras + region:RealClearAllPoints() + region:SetPoint("CENTER", UIParent, "CENTER") + end for active, regionData in ipairs(self.sortedChildren) do if regionData.shown then numVisible = numVisible + 1 @@ -1576,6 +1585,9 @@ local function modify(parent, region, data) self.background:SetPoint("TOPRIGHT", region, "BOTTOMLEFT", maxX + data.borderOffset - regionLeft, maxY + data.borderOffset - regionBottom) end end + if isRestricted then + self:ReAnchor() + end else self:Hide() end diff --git a/WeakAuras/RegionTypes/RegionPrototype.lua b/WeakAuras/RegionTypes/RegionPrototype.lua index 263dbc443d..b8bd838ef0 100644 --- a/WeakAuras/RegionTypes/RegionPrototype.lua +++ b/WeakAuras/RegionTypes/RegionPrototype.lua @@ -650,6 +650,7 @@ function Private.regionPrototype.create(region) region.RunCode = RunCode; region.GlowExternal = GlowExternal; + region.ReAnchor = UpdatePosition; region.SetAnchor = SetAnchor; region.SetOffset = SetOffset; region.SetXOffset = SetXOffset; diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index 90df6018f4..5d56ac5c76 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -5442,6 +5442,11 @@ function Private.ensurePRDFrame() personalRessourceDisplayFrame = CreateFrame("Frame", "WeakAurasAttachToPRD", UIParent); personalRessourceDisplayFrame:Hide(); personalRessourceDisplayFrame.attachedVisibleFrames = {}; + -- force an early frame draw; otherwise this frame won't be drawn until the next frame, + -- and any attached auras won't have a valid rect + personalRessourceDisplayFrame:SetPoint("CENTER", UIParent, "CENTER"); + personalRessourceDisplayFrame:SetSize(16, 16) + personalRessourceDisplayFrame:GetSize() Private.personalRessourceDisplayFrame = personalRessourceDisplayFrame; local moverFrame = CreateFrame("Frame", "WeakAurasPRDMoverFrame", personalRessourceDisplayFrame); From 23666127ffc4ca5fba096adea46ce4fad1c75aef Mon Sep 17 00:00:00 2001 From: Buds Date: Sun, 5 May 2024 03:11:08 +0200 Subject: [PATCH 09/25] AuraBar: add some alias textures, and option to use texture picker --- WeakAuras/RegionTypes/AuraBar.lua | 19 +- WeakAuras/Types.lua | 24 ++ .../WeakAurasStatusbarAtlasWidget.lua | 241 ++++++++++++++++++ WeakAurasOptions/RegionOptions/AuraBar.lua | 61 ++++- WeakAurasOptions/WeakAurasOptions.toc | 1 + WeakAurasOptions/WeakAurasOptions_Cata.toc | 1 + WeakAurasOptions/WeakAurasOptions_Vanilla.toc | 1 + WeakAurasOptions/WeakAurasOptions_Wrath.toc | 1 + 8 files changed, 338 insertions(+), 11 deletions(-) create mode 100644 WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua diff --git a/WeakAuras/RegionTypes/AuraBar.lua b/WeakAuras/RegionTypes/AuraBar.lua index 4c2d0be8ad..ee53c96fad 100644 --- a/WeakAuras/RegionTypes/AuraBar.lua +++ b/WeakAuras/RegionTypes/AuraBar.lua @@ -404,10 +404,10 @@ local barPrototype = { local texture = self.additionalBarsTextures and self.additionalBarsTextures[index]; if texture then - local texturePath = SharedMedia:Fetch("statusbar", texture) or "" - extraTexture:SetTexture(texturePath, extraTextureWrapMode, extraTextureWrapMode) + local texturePath = SharedMedia:Fetch("statusbar_atlas", texture) or SharedMedia:Fetch("statusbar", texture) or "" + Private.SetTextureOrAtlas(extraTexture, texturePath, extraTextureWrapMode, extraTextureWrapMode) else - extraTexture:SetTexture(self:GetStatusBarTexture(), extraTextureWrapMode, extraTextureWrapMode); + Private.SetTextureOrAtlas(extraTexture, self:GetStatusBarTexture(), extraTextureWrapMode, extraTextureWrapMode) end local xOffset = 0; @@ -553,10 +553,10 @@ local barPrototype = { -- Blizzard like SetStatusBarTexture ["SetStatusBarTexture"] = function(self, texture) - self.fg:SetTexture(texture); - self.bg:SetTexture(texture); + Private.SetTextureOrAtlas(self.fg, texture) + Private.SetTextureOrAtlas(self.bg, texture) for index, extraTexture in ipairs(self.extraTextures) do - extraTexture:SetTexture(texture, extraTextureWrapMode, extraTextureWrapMode); + Private.SetTextureOrAtlas(extraTexture, texture, extraTextureWrapMode, extraTextureWrapMode) end end, @@ -1210,7 +1210,12 @@ local function modify(parent, region, data) end -- Update texture settings - local texturePath = SharedMedia:Fetch("statusbar", data.texture) or ""; + local texturePath + if data.textureSource == "Picker" then + texturePath = data.textureInput or "" + else + texturePath = SharedMedia:Fetch("statusbar_atlas", data.texture) or SharedMedia:Fetch("statusbar", data.texture) or "" + end bar:SetStatusBarTexture(texturePath); bar:SetBackgroundColor(data.backgroundColor[1], data.backgroundColor[2], data.backgroundColor[3], data.backgroundColor[4]); -- Update spark settings diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index dedf13746b..3c0ef888b8 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -3151,6 +3151,30 @@ LSM:Register("statusbar", "Thick Stripes", [[Interface\AddOns\WeakAuras\Media\Te LSM:Register("statusbar", "Thin Stripes", [[Interface\AddOns\WeakAuras\Media\Textures\Statusbar_Stripes_Thin]]) LSM:Register("border", "Drop Shadow", [[Interface\AddOns\WeakAuras\Media\Textures\Border_DropShadow]]) +if PowerBarColor then + local function capitalizeFirstLetter(str) + -- Split the string into words separated by underscores + local words = {} + for word in string.gmatch(str, "[^_]+") do + table.insert(words, word) + end + -- Capitalize the first letter of each word + for i, word in ipairs(words) do + words[i] = word:sub(1, 1):upper() .. word:sub(2):lower() + end + return table.concat(words, " ") + end + + for power, data in pairs(PowerBarColor) do + if type(power) == "string" and data.atlas then + local name = "Blizzard " .. capitalizeFirstLetter(power) + LSM:Register("statusbar_atlas", name, data.atlas) + elseif data.atlasElementName then + LSM:Register("statusbar_atlas", "Blizzard " .. data.atlasElementName, "UI-HUD-UnitFrame-Player-PortraitOff-Bar-" .. data.atlasElementName) + end + end +end + ---@type table Private.duration_types = { seconds = L["Seconds"], diff --git a/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua b/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua new file mode 100644 index 0000000000..26733405ee --- /dev/null +++ b/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua @@ -0,0 +1,241 @@ +-- Widget is based on the AceGUIWidget-DropDown.lua supplied with AceGUI-3.0 +-- Original Widget created by Yssaril, modified by WeakAuras Team to handle Atlas + +local AceGUI = LibStub("AceGUI-3.0") +local Media = LibStub("LibSharedMedia-3.0") + +local AGSMW = LibStub("AceGUISharedMediaWidgets-1.0") + +do + local widgetType = "WA_LSM30_StatusbarAtlas" + local widgetVersion = 1 + + local contentFrameCache = {} + local function ReturnSelf(self) + self:ClearAllPoints() + self:Hide() + self.check:Hide() + table.insert(contentFrameCache, self) + end + + local function ContentOnClick(this, button) + local self = this.obj + self:Fire("OnValueChanged", this.text:GetText()) + if self.dropdown then + self.dropdown = AGSMW:ReturnDropDownFrame(self.dropdown) + end + end + + local function GetContentLine() + local frame + if next(contentFrameCache) then + frame = table.remove(contentFrameCache) + else + frame = CreateFrame("Button", nil, UIParent) + --frame:SetWidth(200) + frame:SetHeight(18) + frame:SetHighlightTexture([[Interface\QuestFrame\UI-QuestTitleHighlight]], "ADD") + frame:SetScript("OnClick", ContentOnClick) + local check = frame:CreateTexture("OVERLAY") + check:SetWidth(16) + check:SetHeight(16) + check:SetPoint("LEFT",frame,"LEFT",1,-1) + check:SetTexture("Interface\\Buttons\\UI-CheckBox-Check") + check:Hide() + frame.check = check + local bar = frame:CreateTexture("ARTWORK") + bar:SetHeight(16) + bar:SetPoint("LEFT",check,"RIGHT",1,0) + bar:SetPoint("RIGHT",frame,"RIGHT",-1,0) + frame.bar = bar + local text = frame:CreateFontString(nil,"OVERLAY","GameFontWhite") + + local font, size = text:GetFont() + text:SetFont(font,size,"OUTLINE") + + text:SetPoint("TOPLEFT", check, "TOPRIGHT", 3, 0) + text:SetPoint("BOTTOMRIGHT", frame, "BOTTOMRIGHT", -2, 0) + text:SetJustifyH("LEFT") + text:SetText("Test Test Test Test Test Test Test") + frame.text = text + frame.ReturnSelf = ReturnSelf + end + frame:Show() + return frame + end + + local function OnAcquire(self) + self:SetHeight(44) + self:SetWidth(200) + end + + local function OnRelease(self) + self:SetText("") + self:SetLabel("") + self:SetDisabled(false) + + self.value = nil + self.list = nil + self.open = nil + self.hasClose = nil + + self.frame:ClearAllPoints() + self.frame:Hide() + end + + local function SetValue(self, value) -- Set the value to an item in the List. + if self.list then + self:SetText(value or "") + end + self.value = value + end + + local function GetValue(self) + return self.value + end + + local function SetList(self, list) -- Set the list of values for the dropdown (key => value pairs) + self.list = list or Media:HashTable("statusbar") + end + + + local function SetText(self, text) -- Set the text displayed in the box. + self.frame.text:SetText(text or "") + local statusbar = self.list[text] ~= text and self.list[text] or Media:Fetch('statusbar', text) + if type(statusbar) == "string" and C_Texture.GetAtlasInfo(statusbar) ~= nil then + self.bar:SetAtlas(statusbar) + else + self.bar:SetTexture(statusbar) + end + end + + local function SetLabel(self, text) -- Set the text for the label. + self.frame.label:SetText(text or "") + end + + local function AddItem(self, key, value) -- Add an item to the list. + self.list = self.list or {} + self.list[key] = value + end + local SetItemValue = AddItem -- Set the value of a item in the list. <> + + local function SetMultiselect(self, flag) end -- Toggle multi-selecting. <> + local function GetMultiselect() return false end-- Query the multi-select flag. <> + local function SetItemDisabled(self, key) end-- Disable one item in the list. <> + + local function SetDisabled(self, disabled) -- Disable the widget. + self.disabled = disabled + if disabled then + self.frame:Disable() + else + self.frame:Enable() + end + end + + local function textSort(a,b) + return string.upper(a) < string.upper(b) + end + + local sortedlist = {} + local function ToggleDrop(this) + local self = this.obj + if self.dropdown then + self.dropdown = AGSMW:ReturnDropDownFrame(self.dropdown) + AceGUI:ClearFocus() + else + AceGUI:SetFocus(self) + self.dropdown = AGSMW:GetDropDownFrame() + local width = self.frame:GetWidth() + self.dropdown:SetPoint("TOPLEFT", self.frame, "BOTTOMLEFT") + self.dropdown:SetPoint("TOPRIGHT", self.frame, "BOTTOMRIGHT", width < 160 and (160 - width) or 0, 0) + for k, v in pairs(self.list) do + sortedlist[#sortedlist+1] = k + end + table.sort(sortedlist, textSort) + for i, k in ipairs(sortedlist) do + local f = GetContentLine() + f.text:SetText(k) + --print(k) + if k == self.value then + f.check:Show() + end + + local statusbar = self.list[k] ~= k and self.list[k] or Media:Fetch('statusbar',k) + if type(statusbar) == "string" and C_Texture.GetAtlasInfo(statusbar) ~= nil then + f.bar:SetAtlas(statusbar) + else + f.bar:SetTexture(statusbar) + end + f.obj = self + f.dropdown = self.dropdown + self.dropdown:AddFrame(f) + end + wipe(sortedlist) + end + end + + local function ClearFocus(self) + if self.dropdown then + self.dropdown = AGSMW:ReturnDropDownFrame(self.dropdown) + end + end + + local function OnHide(this) + local self = this.obj + if self.dropdown then + self.dropdown = AGSMW:ReturnDropDownFrame(self.dropdown) + end + end + + local function Drop_OnEnter(this) + this.obj:Fire("OnEnter") + end + + local function Drop_OnLeave(this) + this.obj:Fire("OnLeave") + end + + local function Constructor() + local frame = AGSMW:GetBaseFrame() + local self = {} + + self.type = widgetType + self.frame = frame + frame.obj = self + frame.dropButton.obj = self + frame.dropButton:SetScript("OnEnter", Drop_OnEnter) + frame.dropButton:SetScript("OnLeave", Drop_OnLeave) + frame.dropButton:SetScript("OnClick",ToggleDrop) + frame:SetScript("OnHide", OnHide) + + local bar = frame:CreateTexture(nil, "OVERLAY") + bar:SetPoint("TOPLEFT", frame,"TOPLEFT",6,-25) + bar:SetPoint("BOTTOMRIGHT", frame,"BOTTOMRIGHT", -21, 5) + bar:SetAlpha(0.5) + self.bar = bar + + self.alignoffset = 31 + + self.OnRelease = OnRelease + self.OnAcquire = OnAcquire + self.ClearFocus = ClearFocus + self.SetText = SetText + self.SetValue = SetValue + self.GetValue = GetValue + self.SetList = SetList + self.SetLabel = SetLabel + self.SetDisabled = SetDisabled + self.AddItem = AddItem + self.SetMultiselect = SetMultiselect + self.GetMultiselect = GetMultiselect + self.SetItemValue = SetItemValue + self.SetItemDisabled = SetItemDisabled + self.ToggleDrop = ToggleDrop + + AceGUI:RegisterAsWidget(self) + return self + end + + AceGUI:RegisterWidgetType(widgetType, Constructor, widgetVersion) + +end diff --git a/WeakAurasOptions/RegionOptions/AuraBar.lua b/WeakAurasOptions/RegionOptions/AuraBar.lua index 133cdf052e..b8941f1fcc 100644 --- a/WeakAurasOptions/RegionOptions/AuraBar.lua +++ b/WeakAurasOptions/RegionOptions/AuraBar.lua @@ -9,18 +9,71 @@ local L = WeakAuras.L; -- Create region options table local function createOptions(id, data) + local statusbarList = {} + Mixin(statusbarList, SharedMedia:HashTable("statusbar")) + Mixin(statusbarList, SharedMedia:HashTable("statusbar_atlas")) + -- Region options local screenWidth, screenHeight = math.ceil(GetScreenWidth() / 20) * 20, math.ceil(GetScreenHeight() / 20) * 20; local options = { __title = L["Progress Bar Settings"], __order = 1, - texture = { + textureSource = { type = "select", - dialogControl = "LSM30_Statusbar", order = 1, width = WeakAuras.doubleWidth, + name = L["Texture Selection Mode"], + values = { + LSM = L["LibSharedMedia"], + Picker = L["Texture Picker"] + }, + get = function() + return data.textureSource or "LSM" + end, + }, + texture = { + type = "select", + dialogControl = "WA_LSM30_StatusbarAtlas", + order = 2, + width = WeakAuras.doubleWidth, name = L["Bar Texture"], - values = AceGUIWidgetLSMlists.statusbar + values = statusbarList, + hidden = function() + return data.textureSource == "Picker" + end + }, + textureInput = { + type = "input", + width = WeakAuras.doubleWidth - 0.15, + name = L["Texture"], + order = 3, + hidden = function() + return data.textureSource ~= "Picker" + end + }, + chooseTexture = { + type = "execute", + name = L["Choose"], + width = 0.15, + order = 4, + func = function() + local path = {} + local paths = {} + for child in OptionsPrivate.Private.TraverseLeafsOrAura(data) do + paths[child.id] = path + end + OptionsPrivate.OpenTexturePicker(data, paths, { + texture = "textureInput", + color = "color", + }, OptionsPrivate.Private.texture_types, nil, true) + end, + imageWidth = 24, + imageHeight = 24, + control = "WeakAurasIcon", + image = "Interface\\AddOns\\WeakAuras\\Media\\Textures\\browse", + hidden = function() + return data.textureSource ~= "Picker" + end }, orientation = { type = "select", @@ -556,7 +609,7 @@ local function modifyThumbnail(parent, borderframe, data, fullModify, width, hei end -- Fake status-bar style - texture:SetTexture(SharedMedia:Fetch("statusbar", data.texture)); + OptionsPrivate.Private.SetTextureOrAtlas(texture, SharedMedia:Fetch("statusbar_atlas", data.texture) or SharedMedia:Fetch("statusbar", data.texture)) texture:SetVertexColor(data.barColor[1], data.barColor[2], data.barColor[3], data.barColor[4]); -- Fake icon size diff --git a/WeakAurasOptions/WeakAurasOptions.toc b/WeakAurasOptions/WeakAurasOptions.toc index 63263a2d2c..7c44b8cd52 100644 --- a/WeakAurasOptions/WeakAurasOptions.toc +++ b/WeakAurasOptions/WeakAurasOptions.toc @@ -100,3 +100,4 @@ AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Dragonflight.lua AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua AceGUI-Widgets\AceGuiWidget-WeakAurasMediaSound.lua +AceGUI-Widgets\WeakAurasStatusbarAtlasWidget.lua diff --git a/WeakAurasOptions/WeakAurasOptions_Cata.toc b/WeakAurasOptions/WeakAurasOptions_Cata.toc index 5c85223cf8..9d161bc55b 100644 --- a/WeakAurasOptions/WeakAurasOptions_Cata.toc +++ b/WeakAurasOptions/WeakAurasOptions_Cata.toc @@ -100,3 +100,4 @@ AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Cata.lua AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua AceGUI-Widgets\AceGuiWidget-WeakAurasMediaSound.lua +AceGUI-Widgets\WeakAurasStatusbarAtlasWidget.lua diff --git a/WeakAurasOptions/WeakAurasOptions_Vanilla.toc b/WeakAurasOptions/WeakAurasOptions_Vanilla.toc index 173c66a561..7fd863d7e2 100644 --- a/WeakAurasOptions/WeakAurasOptions_Vanilla.toc +++ b/WeakAurasOptions/WeakAurasOptions_Vanilla.toc @@ -98,3 +98,4 @@ AceGUI-Widgets\AceGUIWidget-WeakAurasSpinBox.lua AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua AceGUI-Widgets\AceGuiWidget-WeakAurasMediaSound.lua +AceGUI-Widgets\WeakAurasStatusbarAtlasWidget.lua diff --git a/WeakAurasOptions/WeakAurasOptions_Wrath.toc b/WeakAurasOptions/WeakAurasOptions_Wrath.toc index d7cab86c79..6f13dfdbc1 100644 --- a/WeakAurasOptions/WeakAurasOptions_Wrath.toc +++ b/WeakAurasOptions/WeakAurasOptions_Wrath.toc @@ -99,3 +99,4 @@ AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Wrath.lua AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua AceGUI-Widgets\AceGuiWidget-WeakAurasMediaSound.lua +AceGUI-Widgets\WeakAurasStatusbarAtlasWidget.lua From cbd5b2ba0ee2ac2b163caa0792a0253bf1233a5b Mon Sep 17 00:00:00 2001 From: Buds Date: Mon, 6 May 2024 00:51:03 +0200 Subject: [PATCH 10/25] Add missing global in luacheckrc --- .luacheckrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.luacheckrc b/.luacheckrc index 93d171b853..9b01ad7ef6 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -103,6 +103,7 @@ globals = { "GetClassColoredTextForUnit", "Lerp", "Mixin", + "PowerBarColor", "ipairs_reverse", "Round", "SafePack", From b6e1e0ef00cdb7f5f2008cfa13eabc84a823c6e6 Mon Sep 17 00:00:00 2001 From: Buds Date: Mon, 6 May 2024 01:07:58 +0200 Subject: [PATCH 11/25] For spell input fields with noValidation (used for "Name(s)" fields) show name from GetSpellInfo when value is a number, fixes #5058 This partially revert https://github.com/WeakAuras/WeakAuras2/commit/7230ad1a4267d25a8304b4efd95336deae7d67a9 Don't convert display when value is a string, but do it for numbers --- WeakAurasOptions/LoadOptions.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WeakAurasOptions/LoadOptions.lua b/WeakAurasOptions/LoadOptions.lua index 9ec0eedcf7..ff607ec9d0 100644 --- a/WeakAurasOptions/LoadOptions.lua +++ b/WeakAurasOptions/LoadOptions.lua @@ -710,9 +710,6 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum return nil; end elseif(arg.type == "spell") then - if arg.noValidation then - return value and tostring(value) - end local useExactSpellId = (arg.showExactOption and getValue(trigger, nil, "use_exact_"..realname, multiEntry, entryNumber)) if value and value ~= "" then local spellID = WeakAuras.SafeToNumber(value) @@ -727,13 +724,16 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum if spellName then return ("%s (%s)"):format(spellID, spellName) .. "\0" .. value end - elseif not useExactSpellId then + elseif not useExactSpellId and not arg.noValidation then local spellName = GetSpellInfo(value) if spellName then return spellName end end end + if arg.noValidation then + return value and tostring(value) + end if value == nil then return nil end From ec9b9af3f06fd11f781ba0b2ac1f169d5ae08580 Mon Sep 17 00:00:00 2001 From: Boneshock Date: Sat, 4 May 2024 23:34:18 +0200 Subject: [PATCH 12/25] Rename cleu message prefix and suffix Message prefix = subevent. Message suffix = subevent suffix. --- WeakAurasOptions/GenericTrigger.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WeakAurasOptions/GenericTrigger.lua b/WeakAurasOptions/GenericTrigger.lua index 5f1cc4c03f..ffa7158f24 100644 --- a/WeakAurasOptions/GenericTrigger.lua +++ b/WeakAurasOptions/GenericTrigger.lua @@ -467,7 +467,7 @@ local function GetGenericTriggerOptions(data, triggernum) { subeventPrefix = { type = "select", - name = L["Message Prefix"], + name = L["Subevent"], width = WeakAuras.normalWidth, order = 8, values = OptionsPrivate.Private.subevent_prefix_types, @@ -484,7 +484,7 @@ local function GetGenericTriggerOptions(data, triggernum) subeventSuffix = { type = "select", width = WeakAuras.normalWidth, - name = L["Message Suffix"], + name = L["Subevent Suffix"], order = 9, values = OptionsPrivate.Private.subevent_suffix_types, sorting = OptionsPrivate.Private.SortOrderForValues(OptionsPrivate.Private.subevent_suffix_types), From 1d001115ffbc19b2aa32a95713f9a6fa2c939772 Mon Sep 17 00:00:00 2001 From: Boneshock Date: Sun, 5 May 2024 00:17:06 +0200 Subject: [PATCH 13/25] Enable clickthrough with 'tooltip on mouseover' Subsequently set the region to only receive mouse hover events instead of all mouse events. --- WeakAuras/RegionTypes/AuraBar.lua | 6 +++--- WeakAuras/RegionTypes/Icon.lua | 5 +++-- WeakAuras/RegionTypes/Text.lua | 5 +++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/WeakAuras/RegionTypes/AuraBar.lua b/WeakAuras/RegionTypes/AuraBar.lua index ee53c96fad..4ca9a0dd6d 100644 --- a/WeakAuras/RegionTypes/AuraBar.lua +++ b/WeakAuras/RegionTypes/AuraBar.lua @@ -1273,11 +1273,11 @@ local function modify(parent, region, data) end); region.tooltipFrame:SetScript("OnLeave", Private.HideTooltip); end - - region.tooltipFrame:EnableMouse(true); + region.tooltipFrame:EnableMouseMotion(true); + region.tooltipFrame:SetMouseClickEnabled(false); elseif region.tooltipFrame then -- Disable tooltip - region.tooltipFrame:EnableMouse(false); + region.tooltipFrame:EnableMouseMotion(false); end region.FrameTick = nil diff --git a/WeakAuras/RegionTypes/Icon.lua b/WeakAuras/RegionTypes/Icon.lua index 9a83d72ee2..b457def17d 100644 --- a/WeakAuras/RegionTypes/Icon.lua +++ b/WeakAuras/RegionTypes/Icon.lua @@ -395,9 +395,10 @@ local function modify(parent, region, data) end); region.tooltipFrame:SetScript("OnLeave", Private.HideTooltip); end - region.tooltipFrame:EnableMouse(true); + region.tooltipFrame:EnableMouseMotion(true); + region.tooltipFrame:SetMouseClickEnabled(false); elseif region.tooltipFrame then - region.tooltipFrame:EnableMouse(false); + region.tooltipFrame:EnableMouseMotion(false); end function region:SetInverse(inverse) diff --git a/WeakAuras/RegionTypes/Text.lua b/WeakAuras/RegionTypes/Text.lua index 52f2523216..a4d90b1db4 100644 --- a/WeakAuras/RegionTypes/Text.lua +++ b/WeakAuras/RegionTypes/Text.lua @@ -107,9 +107,10 @@ local function modify(parent, region, data) end); region.tooltipFrame:SetScript("OnLeave", Private.HideTooltip); end - region.tooltipFrame:EnableMouse(true); + region.tooltipFrame:EnableMouseMotion(true); + region.tooltipFrame:SetMouseClickEnabled(false); elseif region.tooltipFrame then - region.tooltipFrame:EnableMouse(false); + region.tooltipFrame:EnableMouseMotion(false); end text:SetTextHeight(data.fontSize); From 5099f15322540aca6a56c04840f1bee33ca9122b Mon Sep 17 00:00:00 2001 From: Boneshock Date: Sun, 5 May 2024 00:39:40 +0200 Subject: [PATCH 14/25] Fix instance type options are empty on cata classic And enable Instance Difficulty and Instance Type options in the Location trigger for Cata Classic. --- WeakAuras/Prototypes.lua | 8 ++++---- WeakAuras/Types.lua | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index 34c3e9e730..e716a0656f 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -11074,8 +11074,8 @@ Private.event_prototypes = { init = "WeakAuras.InstanceDifficulty()", conditionType = "select", store = true, - enable = WeakAuras.IsRetail(), - hidden = not WeakAuras.IsRetail(), + enable = not WeakAuras.IsClassicEra(), + hidden = WeakAuras.IsClassicEra(), }, { name = "instanceType", @@ -11085,8 +11085,8 @@ Private.event_prototypes = { init = "WeakAuras.InstanceTypeRaw()", conditionType = "select", store = true, - enable = WeakAuras.IsRetail(), - hidden = not WeakAuras.IsRetail(), + enable = not WeakAuras.IsClassicEra(), + hidden = WeakAuras.IsClassicEra(), }, }, automaticrequired = true, diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index 3c0ef888b8..539b29562c 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -2711,7 +2711,7 @@ end ---@type table Private.instance_difficulty_types = {} -if WeakAuras.IsRetail() then +if not WeakAuras.IsClassicEra() then -- Fill out instance_difficulty_types automatically. -- Unfortunately the names BLizzard gives are not entirely unique, -- so try hard to disambiguate them via the type, and if nothing works by From 6fde2c6e37809ff5f293e0a7d94fd019906594a1 Mon Sep 17 00:00:00 2001 From: Boneshock Date: Sun, 5 May 2024 01:42:23 +0200 Subject: [PATCH 15/25] add options for sound fadeout Actions Stop Sound and Conditions Stop Sound now enable an option for Sound Fadeout. User input for fadeoutTime is converted to seconds. --- WeakAuras/Conditions.lua | 5 ++-- WeakAuras/RegionTypes/RegionPrototype.lua | 7 +++--- WeakAuras/WeakAuras.lua | 3 ++- WeakAurasOptions/ActionOptions.lua | 25 +++++++++++++++++++ WeakAurasOptions/ConditionOptions.lua | 30 ++++++++++++++++++++++- 5 files changed, 63 insertions(+), 7 deletions(-) diff --git a/WeakAuras/Conditions.lua b/WeakAuras/Conditions.lua index dd65a03455..a958e9be1c 100644 --- a/WeakAuras/Conditions.lua +++ b/WeakAuras/Conditions.lua @@ -124,13 +124,14 @@ local function formatValueForAssignment(vType, value, pathToCustomFunction, path end elseif(vType == "sound") then if (value and type(value) == "table") then - return string.format("{ sound = %s, sound_channel = %s, sound_path = %s, sound_kit_id = %s, sound_type = %s, %s}", + return string.format("{ sound = %s, sound_channel = %s, sound_path = %s, sound_kit_id = %s, sound_type = %s, %s, %s}", Private.QuotedString(tostring(value.sound or "")), Private.QuotedString(tostring(value.sound_channel or "")), Private.QuotedString(tostring(value.sound_path or "")), Private.QuotedString(tostring(value.sound_kit_id or "")), Private.QuotedString(tostring(value.sound_type or "")), - value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil"); + value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil", + value.sound_fade and "sound_fade = " .. tostring(value.sound_fade) or "nil"); end elseif(vType == "customcode") then return string.format("%s", pathToCustomFunction); diff --git a/WeakAuras/RegionTypes/RegionPrototype.lua b/WeakAuras/RegionTypes/RegionPrototype.lua index b8bd838ef0..721a4519c1 100644 --- a/WeakAuras/RegionTypes/RegionPrototype.lua +++ b/WeakAuras/RegionTypes/RegionPrototype.lua @@ -132,10 +132,10 @@ local function SoundRepeatStop(self) Private.StopProfileSystem("sound"); end -local function SoundStop(self) +local function SoundStop(self, fadeoutTime) Private.StartProfileSystem("sound"); if (self.soundHandle) then - StopSound(self.soundHandle); + StopSound(self.soundHandle, fadeoutTime); end Private.StopProfileSystem("sound"); end @@ -203,7 +203,8 @@ local function SoundPlay(self, options) return end - self:SoundStop(); + local fadeoutTime = options.sound_type == "Stop" and options.sound_fade and options.sound_fade * 1000 or 0 + self:SoundStop(fadeoutTime); self:SoundRepeatStop(); self.soundOptions = options; diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index 5d56ac5c76..07a76b774c 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -3732,7 +3732,8 @@ function Private.PerformActions(data, when, region) if (actions.stop_sound) then if (region.SoundStop) then - region:SoundStop(); + local fadeoutTime = actions.do_sound_fade and actions.stop_sound_fade and actions.stop_sound_fade * 1000 or 0 + region:SoundStop(fadeoutTime); end end diff --git a/WeakAurasOptions/ActionOptions.lua b/WeakAurasOptions/ActionOptions.lua index 9e3553d401..fe1c12d70c 100644 --- a/WeakAurasOptions/ActionOptions.lua +++ b/WeakAurasOptions/ActionOptions.lua @@ -689,6 +689,31 @@ function OptionsPrivate.GetActionOptions(data) name = L["Stop Sound"], order = 29.1, }, + finish_do_sound_fade = { + type = "toggle", + width = WeakAuras.normalWidth, + name = L["Fadeout Sound"], + order = 29.2, + disabled = function() return not data.actions.finish.stop_sound end, + }, + finish_stop_sound_fade = { + type = "range", + control = "WeakAurasSpinBox", + width = WeakAuras.normalWidth, + name = L["Fadeout Time (seconds)"], + order = 29.3, + hidden = function() return not data.actions.finish.do_sound_fade end, + disabled = function() return not data.actions.finish.stop_sound end, + min = 0, + softMax = 10, + bigStep = 1, + }, + finish_stop_sound_fade_space = { + type = "description", + width = WeakAuras.doubleWidth, + order = 29.4, + name = "", + }, finish_do_glow = { type = "toggle", width = WeakAuras.normalWidth, diff --git a/WeakAurasOptions/ConditionOptions.lua b/WeakAurasOptions/ConditionOptions.lua index 3c4f6b3e41..58d03e483c 100644 --- a/WeakAurasOptions/ConditionOptions.lua +++ b/WeakAurasOptions/ConditionOptions.lua @@ -837,6 +837,34 @@ local function addControlsForChange(args, order, data, conditionVariable, totalA } order = order + 1; + args["condition" .. i .. "value" .. j .. "sound_fade"] = { + type = "range", + control = "WeakAurasSpinBox", + width = WeakAuras.normalWidth, + min = 0, + softMax = 10, + bigStep = 1, + name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_fade", L["Fadeout Time (seconds)"], L["Fadeout Time (seconds)"]), + desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_fade", propertyType), + order = order, + get = function() + return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_fade; + end, + set = setValueComplex("sound_fade"), + disabled = function() return not anySoundType("Stop") end, + hidden = function() return not (anySoundType("Stop")) end + } + order = order + 1; + + args["condition" .. i .. "value" .. j .. "sound_fade_space"] = { + type = "description", + width = WeakAuras.normalWidth, + name = "", + order = order, + hidden = function() return not (anySoundType("Stop")) end + } + order = order + 1; + elseif (propertyType == "chat") then args["condition" .. i .. "value" .. j .. "message type"] = { @@ -2807,7 +2835,7 @@ end local function SubPropertiesForChange(change) if change.property == "sound" then - return { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"} + return { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type", "sound_fade"} elseif change.property == "customcode" then return { "custom" } elseif change.property == "glowexternal" then From 16494d83e6974d74473e59b44f1a719e9db712d4 Mon Sep 17 00:00:00 2001 From: Stanzilla <75278+Stanzilla@users.noreply.github.com> Date: Mon, 6 May 2024 10:05:41 +0000 Subject: [PATCH 16/25] Update WeakAurasModelPaths from wago.tools --- .github/scripts/.last_wow_build | 2 +- .github/scripts/.last_wow_classic_beta_build | 2 +- .github/scripts/.last_wow_classic_build | 2 +- WeakAurasModelPaths/ModelPaths.lua | 11678 +- WeakAurasModelPaths/ModelPathsWrath.lua | 149141 ++++++++++------ 5 files changed, 103545 insertions(+), 57280 deletions(-) diff --git a/.github/scripts/.last_wow_build b/.github/scripts/.last_wow_build index 74cdfb9f92..ae7e7e7761 100644 --- a/.github/scripts/.last_wow_build +++ b/.github/scripts/.last_wow_build @@ -1 +1 @@ -c258dd0d5fe7de9f254611ee2b042e2b +a65768c230a4db2d5cf975cfa74a8ae7 diff --git a/.github/scripts/.last_wow_classic_beta_build b/.github/scripts/.last_wow_classic_beta_build index 6144b68a88..3b5d723966 100644 --- a/.github/scripts/.last_wow_classic_beta_build +++ b/.github/scripts/.last_wow_classic_beta_build @@ -1 +1 @@ -3da970fc387261a86bd967f89a9001fa +680af5eed81500f7e4e789a2e9e3c99b diff --git a/.github/scripts/.last_wow_classic_build b/.github/scripts/.last_wow_classic_build index a75ab50b22..04b7f32972 100644 --- a/.github/scripts/.last_wow_classic_build +++ b/.github/scripts/.last_wow_classic_build @@ -1 +1 @@ -c91609c69ed2ab39d44039390a1be969 +08dd7ad4abe5af339d4009342b0f3fbe diff --git a/WeakAurasModelPaths/ModelPaths.lua b/WeakAurasModelPaths/ModelPaths.lua index bb46b79a4d..1d2f840e3c 100644 --- a/WeakAurasModelPaths/ModelPaths.lua +++ b/WeakAurasModelPaths/ModelPaths.lua @@ -281655,6 +281655,402 @@ WeakAuras.ModelPaths = { text = "unk_exp10_5332690_r", value = "unk_exp10_5332690_r", }, + { + children = { + { + fileId = "5350646", + text = "5350646_l.m2", + value = "5350646_l.m2", + }, + }, + text = "unk_exp10_5350646_l", + value = "unk_exp10_5350646_l", + }, + { + children = { + { + fileId = "5350648", + text = "5350648_r.m2", + value = "5350648_r.m2", + }, + }, + text = "unk_exp10_5350648_r", + value = "unk_exp10_5350648_r", + }, + { + children = { + { + fileId = "5350649", + text = "5350649_be_m.m2", + value = "5350649_be_m.m2", + }, + }, + text = "unk_exp10_5350649_be_m", + value = "unk_exp10_5350649_be_m", + }, + { + children = { + { + fileId = "5350650", + text = "5350650_be_f.m2", + value = "5350650_be_f.m2", + }, + }, + text = "unk_exp10_5350650_be_f", + value = "unk_exp10_5350650_be_f", + }, + { + children = { + { + fileId = "5350653", + text = "5350653_dr_m.m2", + value = "5350653_dr_m.m2", + }, + }, + text = "unk_exp10_5350653_dr_m", + value = "unk_exp10_5350653_dr_m", + }, + { + children = { + { + fileId = "5350654", + text = "5350654_dr_f.m2", + value = "5350654_dr_f.m2", + }, + }, + text = "unk_exp10_5350654_dr_f", + value = "unk_exp10_5350654_dr_f", + }, + { + children = { + { + fileId = "5350655", + text = "5350655_dw_m.m2", + value = "5350655_dw_m.m2", + }, + }, + text = "unk_exp10_5350655_dw_m", + value = "unk_exp10_5350655_dw_m", + }, + { + children = { + { + fileId = "5350656", + text = "5350656_dw_f.m2", + value = "5350656_dw_f.m2", + }, + }, + text = "unk_exp10_5350656_dw_f", + value = "unk_exp10_5350656_dw_f", + }, + { + children = { + { + fileId = "5350657", + text = "5350657_hu_m.m2", + value = "5350657_hu_m.m2", + }, + }, + text = "unk_exp10_5350657_hu_m", + value = "unk_exp10_5350657_hu_m", + }, + { + children = { + { + fileId = "5350658", + text = "5350658_gn_m.m2", + value = "5350658_gn_m.m2", + }, + }, + text = "unk_exp10_5350658_gn_m", + value = "unk_exp10_5350658_gn_m", + }, + { + children = { + { + fileId = "5350659", + text = "5350659_gn_f.m2", + value = "5350659_gn_f.m2", + }, + }, + text = "unk_exp10_5350659_gn_f", + value = "unk_exp10_5350659_gn_f", + }, + { + children = { + { + fileId = "5350660", + text = "5350660_go_m.m2", + value = "5350660_go_m.m2", + }, + }, + text = "unk_exp10_5350660_go_m", + value = "unk_exp10_5350660_go_m", + }, + { + children = { + { + fileId = "5350661", + text = "5350661_go_f.m2", + value = "5350661_go_f.m2", + }, + }, + text = "unk_exp10_5350661_go_f", + value = "unk_exp10_5350661_go_f", + }, + { + children = { + { + fileId = "5350662", + text = "5350662_hu_f.m2", + value = "5350662_hu_f.m2", + }, + }, + text = "unk_exp10_5350662_hu_f", + value = "unk_exp10_5350662_hu_f", + }, + { + children = { + { + fileId = "5350665", + text = "5350665_kt_m.m2", + value = "5350665_kt_m.m2", + }, + }, + text = "unk_exp10_5350665_kt_m", + value = "unk_exp10_5350665_kt_m", + }, + { + children = { + { + fileId = "5350666", + text = "5350666_kt_f.m2", + value = "5350666_kt_f.m2", + }, + }, + text = "unk_exp10_5350666_kt_f", + value = "unk_exp10_5350666_kt_f", + }, + { + children = { + { + fileId = "5350668", + text = "5350668_mg_m.m2", + value = "5350668_mg_m.m2", + }, + }, + text = "unk_exp10_5350668_mg_m", + value = "unk_exp10_5350668_mg_m", + }, + { + children = { + { + fileId = "5350669", + text = "5350669_mg_f.m2", + value = "5350669_mg_f.m2", + }, + }, + text = "unk_exp10_5350669_mg_f", + value = "unk_exp10_5350669_mg_f", + }, + { + children = { + { + fileId = "5350670", + text = "5350670_ni_m.m2", + value = "5350670_ni_m.m2", + }, + }, + text = "unk_exp10_5350670_ni_m", + value = "unk_exp10_5350670_ni_m", + }, + { + children = { + { + fileId = "5350671", + text = "5350671_ni_f.m2", + value = "5350671_ni_f.m2", + }, + }, + text = "unk_exp10_5350671_ni_f", + value = "unk_exp10_5350671_ni_f", + }, + { + children = { + { + fileId = "5350673", + text = "5350673_or_m.m2", + value = "5350673_or_m.m2", + }, + }, + text = "unk_exp10_5350673_or_m", + value = "unk_exp10_5350673_or_m", + }, + { + children = { + { + fileId = "5350674", + text = "5350674_or_f.m2", + value = "5350674_or_f.m2", + }, + }, + text = "unk_exp10_5350674_or_f", + value = "unk_exp10_5350674_or_f", + }, + { + children = { + { + fileId = "5350675", + text = "5350675_pa_m.m2", + value = "5350675_pa_m.m2", + }, + }, + text = "unk_exp10_5350675_pa_m", + value = "unk_exp10_5350675_pa_m", + }, + { + children = { + { + fileId = "5350676", + text = "5350676_pa_f.m2", + value = "5350676_pa_f.m2", + }, + }, + text = "unk_exp10_5350676_pa_f", + value = "unk_exp10_5350676_pa_f", + }, + { + children = { + { + fileId = "5350677", + text = "5350677_ta_m.m2", + value = "5350677_ta_m.m2", + }, + }, + text = "unk_exp10_5350677_ta_m", + value = "unk_exp10_5350677_ta_m", + }, + { + children = { + { + fileId = "5350678", + text = "5350678_ta_f.m2", + value = "5350678_ta_f.m2", + }, + }, + text = "unk_exp10_5350678_ta_f", + value = "unk_exp10_5350678_ta_f", + }, + { + children = { + { + fileId = "5350679", + text = "5350679_tr_m.m2", + value = "5350679_tr_m.m2", + }, + }, + text = "unk_exp10_5350679_tr_m", + value = "unk_exp10_5350679_tr_m", + }, + { + children = { + { + fileId = "5350680", + text = "5350680_tr_f.m2", + value = "5350680_tr_f.m2", + }, + }, + text = "unk_exp10_5350680_tr_f", + value = "unk_exp10_5350680_tr_f", + }, + { + children = { + { + fileId = "5350681", + text = "5350681_sc_m.m2", + value = "5350681_sc_m.m2", + }, + }, + text = "unk_exp10_5350681_sc_m", + value = "unk_exp10_5350681_sc_m", + }, + { + children = { + { + fileId = "5350682", + text = "5350682_sc_f.m2", + value = "5350682_sc_f.m2", + }, + }, + text = "unk_exp10_5350682_sc_f", + value = "unk_exp10_5350682_sc_f", + }, + { + children = { + { + fileId = "5350683", + text = "5350683_vu_m.m2", + value = "5350683_vu_m.m2", + }, + }, + text = "unk_exp10_5350683_vu_m", + value = "unk_exp10_5350683_vu_m", + }, + { + children = { + { + fileId = "5350684", + text = "5350684_vu_f.m2", + value = "5350684_vu_f.m2", + }, + }, + text = "unk_exp10_5350684_vu_f", + value = "unk_exp10_5350684_vu_f", + }, + { + children = { + { + fileId = "5350685", + text = "5350685_wo_m.m2", + value = "5350685_wo_m.m2", + }, + }, + text = "unk_exp10_5350685_wo_m", + value = "unk_exp10_5350685_wo_m", + }, + { + children = { + { + fileId = "5350686", + text = "5350686_wo_f.m2", + value = "5350686_wo_f.m2", + }, + }, + text = "unk_exp10_5350686_wo_f", + value = "unk_exp10_5350686_wo_f", + }, + { + children = { + { + fileId = "5350687", + text = "5350687_za_m.m2", + value = "5350687_za_m.m2", + }, + }, + text = "unk_exp10_5350687_za_m", + value = "unk_exp10_5350687_za_m", + }, + { + children = { + { + fileId = "5351055", + text = "5351055.m2", + value = "5351055.m2", + }, + }, + text = "unk_exp10_5351055", + value = "unk_exp10_5351055", + }, { children = { { @@ -282007,654 +282403,36 @@ WeakAuras.ModelPaths = { text = "unk_exp10_tuskarrboots_za_m", value = "unk_exp10_tuskarrboots_za_m", }, + }, + text = "item", + value = "item", + }, + { + children = { { children = { { - children = { - { - children = { - { - fileId = "5350646", - text = "5350766_l.m2", - value = "5350766_l.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350766_l", - value = "5350766_l", + fileId = "2054049", + text = "spellvisualplaceholder_2054049.m2", + value = "spellvisualplaceholder_2054049.m2", }, + }, + text = "svp_2054049", + value = "svp_2054049", + }, + { + children = { { - children = { - { - children = { - { - fileId = "5350648", - text = "5350766_r.m2", - value = "5350766_r.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350766_r", - value = "5350766_r", + fileId = "2054053", + text = "spellvisualplaceholder_2054053.m2", + value = "spellvisualplaceholder_2054053.m2", }, - { - children = { - { - children = { - { - fileId = "5351055", - text = "5350767.m2", - value = "5350767.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350767", - value = "5350767", - }, - { - children = { - { - children = { - { - fileId = "5350650", - text = "5350770_be_f.m2", - value = "5350770_be_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_be_f", - value = "5350770_be_f", - }, - { - children = { - { - children = { - { - fileId = "5350649", - text = "5350770_be_m.m2", - value = "5350770_be_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_be_m", - value = "5350770_be_m", - }, - { - children = { - { - children = { - { - fileId = "5350654", - text = "5350770_dr_f.m2", - value = "5350770_dr_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_dr_f", - value = "5350770_dr_f", - }, - { - children = { - { - children = { - { - fileId = "5350653", - text = "5350770_dr_m.m2", - value = "5350770_dr_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_dr_m", - value = "5350770_dr_m", - }, - { - children = { - { - children = { - { - fileId = "5350656", - text = "5350770_dw_f.m2", - value = "5350770_dw_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_dw_f", - value = "5350770_dw_f", - }, - { - children = { - { - children = { - { - fileId = "5350655", - text = "5350770_dw_m.m2", - value = "5350770_dw_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_dw_m", - value = "5350770_dw_m", - }, - { - children = { - { - children = { - { - fileId = "5350659", - text = "5350770_gn_f.m2", - value = "5350770_gn_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_gn_f", - value = "5350770_gn_f", - }, - { - children = { - { - children = { - { - fileId = "5350658", - text = "5350770_gn_m.m2", - value = "5350770_gn_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_gn_m", - value = "5350770_gn_m", - }, - { - children = { - { - children = { - { - fileId = "5350661", - text = "5350770_go_f.m2", - value = "5350770_go_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_go_f", - value = "5350770_go_f", - }, - { - children = { - { - children = { - { - fileId = "5350660", - text = "5350770_go_m.m2", - value = "5350770_go_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_go_m", - value = "5350770_go_m", - }, - { - children = { - { - children = { - { - fileId = "5350662", - text = "5350770_hu_f.m2", - value = "5350770_hu_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_hu_f", - value = "5350770_hu_f", - }, - { - children = { - { - children = { - { - fileId = "5350657", - text = "5350770_hu_m.m2", - value = "5350770_hu_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_hu_m", - value = "5350770_hu_m", - }, - { - children = { - { - children = { - { - fileId = "5350666", - text = "5350770_kt_f.m2", - value = "5350770_kt_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_kt_f", - value = "5350770_kt_f", - }, - { - children = { - { - children = { - { - fileId = "5350665", - text = "5350770_kt_m.m2", - value = "5350770_kt_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_kt_m", - value = "5350770_kt_m", - }, - { - children = { - { - children = { - { - fileId = "5350669", - text = "5350770_mg_f.m2", - value = "5350770_mg_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_mg_f", - value = "5350770_mg_f", - }, - { - children = { - { - children = { - { - fileId = "5350668", - text = "5350770_mg_m.m2", - value = "5350770_mg_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_mg_m", - value = "5350770_mg_m", - }, - { - children = { - { - children = { - { - fileId = "5350671", - text = "5350770_ni_f.m2", - value = "5350770_ni_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_ni_f", - value = "5350770_ni_f", - }, - { - children = { - { - children = { - { - fileId = "5350670", - text = "5350770_ni_m.m2", - value = "5350770_ni_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_ni_m", - value = "5350770_ni_m", - }, - { - children = { - { - children = { - { - fileId = "5350674", - text = "5350770_or_f.m2", - value = "5350770_or_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_or_f", - value = "5350770_or_f", - }, - { - children = { - { - children = { - { - fileId = "5350673", - text = "5350770_or_m.m2", - value = "5350770_or_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_or_m", - value = "5350770_or_m", - }, - { - children = { - { - children = { - { - fileId = "5350676", - text = "5350770_pa_f.m2", - value = "5350770_pa_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_pa_f", - value = "5350770_pa_f", - }, - { - children = { - { - children = { - { - fileId = "5350675", - text = "5350770_pa_m.m2", - value = "5350770_pa_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_pa_m", - value = "5350770_pa_m", - }, - { - children = { - { - children = { - { - fileId = "5350682", - text = "5350770_sc_f.m2", - value = "5350770_sc_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_sc_f", - value = "5350770_sc_f", - }, - { - children = { - { - children = { - { - fileId = "5350681", - text = "5350770_sc_m.m2", - value = "5350770_sc_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_sc_m", - value = "5350770_sc_m", - }, - { - children = { - { - children = { - { - fileId = "5350678", - text = "5350770_ta_f.m2", - value = "5350770_ta_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_ta_f", - value = "5350770_ta_f", - }, - { - children = { - { - children = { - { - fileId = "5350677", - text = "5350770_ta_m.m2", - value = "5350770_ta_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_ta_m", - value = "5350770_ta_m", - }, - { - children = { - { - children = { - { - fileId = "5350680", - text = "5350770_tr_f.m2", - value = "5350770_tr_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_tr_f", - value = "5350770_tr_f", - }, - { - children = { - { - children = { - { - fileId = "5350679", - text = "5350770_tr_m.m2", - value = "5350770_tr_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_tr_m", - value = "5350770_tr_m", - }, - { - children = { - { - children = { - { - fileId = "5350684", - text = "5350770_vu_f.m2", - value = "5350770_vu_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_vu_f", - value = "5350770_vu_f", - }, - { - children = { - { - children = { - { - fileId = "5350683", - text = "5350770_vu_m.m2", - value = "5350770_vu_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_vu_m", - value = "5350770_vu_m", - }, - { - children = { - { - children = { - { - fileId = "5350686", - text = "5350770_wo_f.m2", - value = "5350770_wo_f.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_wo_f", - value = "5350770_wo_f", - }, - { - children = { - { - children = { - { - fileId = "5350685", - text = "5350770_wo_m.m2", - value = "5350770_wo_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_wo_m", - value = "5350770_wo_m", - }, - { - children = { - { - children = { - { - fileId = "5350687", - text = "5350770_za_m.m2", - value = "5350770_za_m.m2", - }, - }, - text = "unknown_unk_exp", - value = "unknown_unk_exp", - }, - }, - text = "5350770_za_m", - value = "5350770_za_m", - }, - }, - text = "unk_exp10_unknown_unk_exp", - value = "unk_exp10_unknown_unk_exp", - }, - }, - text = "item", - value = "item", - }, - { - children = { - { - children = { - { - fileId = "2054049", - text = "spellvisualplaceholder_2054049.m2", - value = "spellvisualplaceholder_2054049.m2", - }, - }, - text = "svp_2054049", - value = "svp_2054049", - }, - { - children = { - { - fileId = "2054053", - text = "spellvisualplaceholder_2054053.m2", - value = "spellvisualplaceholder_2054053.m2", - }, - }, - text = "svp_2054053", - value = "svp_2054053", - }, - { - children = { + }, + text = "svp_2054053", + value = "svp_2054053", + }, + { + children = { { fileId = "2102155", text = "spellvisualplaceholder_2102155.m2", @@ -282719,11404 +282497,11382 @@ WeakAuras.ModelPaths = { text = "svp_3260365", value = "svp_3260365", }, + }, + text = "spells", + value = "spells", + }, + { + children = { { - children = { - { - fileId = "4336201", - text = "4336201.m2", - value = "4336201.m2", - }, - }, - text = "unk_exp09_4336201", - value = "unk_exp09_4336201", - }, - { - children = { - { - fileId = "4390026", - text = "4390026.m2", - value = "4390026.m2", - }, - }, - text = "unk_exp09_4390026", - value = "unk_exp09_4390026", - }, - { - children = { - { - fileId = "4397637", - text = "4397637.m2", - value = "4397637.m2", - }, - }, - text = "unk_exp09_4397637", - value = "unk_exp09_4397637", - }, - { - children = { - { - fileId = "4417909", - text = "4417909.m2", - value = "4417909.m2", - }, - }, - text = "unk_exp09_4417909", - value = "unk_exp09_4417909", - }, - { - children = { - { - fileId = "4421510", - text = "4421510.m2", - value = "4421510.m2", - }, - }, - text = "unk_exp09_4421510", - value = "unk_exp09_4421510", - }, - { - children = { - { - fileId = "4478729", - text = "4478729.m2", - value = "4478729.m2", - }, - }, - text = "unk_exp09_4478729", - value = "unk_exp09_4478729", + fileId = "1782602", + text = "1782602.m2", + value = "1782602.m2", }, + }, + text = "unk_exp09_1782602", + value = "unk_exp09_1782602", + }, + { + children = { { - children = { - { - fileId = "4492660", - text = "4492660.m2", - value = "4492660.m2", - }, - }, - text = "unk_exp09_4492660", - value = "unk_exp09_4492660", + fileId = "4209079", + text = "4209079.m2", + value = "4209079.m2", }, + }, + text = "unk_exp09_4209079", + value = "unk_exp09_4209079", + }, + { + children = { { - children = { - { - fileId = "4494521", - text = "4494521.m2", - value = "4494521.m2", - }, - }, - text = "unk_exp09_4494521", - value = "unk_exp09_4494521", + fileId = "4209081", + text = "4209081.m2", + value = "4209081.m2", }, + }, + text = "unk_exp09_4209081", + value = "unk_exp09_4209081", + }, + { + children = { { children = { { - fileId = "4495234", - text = "4495234.m2", - value = "4495234.m2", + fileId = "4182600", + text = "4182600.m2", + value = "4182600.m2", }, }, - text = "unk_exp09_4495234", - value = "unk_exp09_4495234", + text = "unk_exp09_4182600", + value = "unk_exp09_4182600", }, { children = { { - fileId = "4495237", - text = "4495237.m2", - value = "4495237.m2", + fileId = "4196646", + text = "4196646.m2", + value = "4196646.m2", }, }, - text = "unk_exp09_4495237", - value = "unk_exp09_4495237", + text = "unk_exp09_4196646", + value = "unk_exp09_4196646", }, { children = { { - fileId = "4497550", - text = "4497550.m2", - value = "4497550.m2", + fileId = "4196648", + text = "4196648.m2", + value = "4196648.m2", }, }, - text = "unk_exp09_4497550", - value = "unk_exp09_4497550", + text = "unk_exp09_4196648", + value = "unk_exp09_4196648", }, { children = { { - fileId = "4498770", - text = "4498770.m2", - value = "4498770.m2", + fileId = "4205988", + text = "4205988.m2", + value = "4205988.m2", }, }, - text = "unk_exp09_4498770", - value = "unk_exp09_4498770", + text = "unk_exp09_4205988", + value = "unk_exp09_4205988", }, { children = { { - fileId = "4499245", - text = "4499245.m2", - value = "4499245.m2", + fileId = "4237313", + text = "4237313.m2", + value = "4237313.m2", }, }, - text = "unk_exp09_4499245", - value = "unk_exp09_4499245", + text = "unk_exp09_4237313", + value = "unk_exp09_4237313", }, { children = { { - fileId = "4505432", - text = "4505432.m2", - value = "4505432.m2", + fileId = "4240488", + text = "4240488.m2", + value = "4240488.m2", }, }, - text = "unk_exp09_4505432", - value = "unk_exp09_4505432", + text = "unk_exp09_4240488", + value = "unk_exp09_4240488", }, { children = { { - fileId = "4519798", - text = "4519798.m2", - value = "4519798.m2", + fileId = "4252178", + text = "4252178.m2", + value = "4252178.m2", }, }, - text = "unk_exp09_4519798", - value = "unk_exp09_4519798", + text = "unk_exp09_4252178", + value = "unk_exp09_4252178", }, { children = { { - fileId = "4519800", - text = "4519800.m2", - value = "4519800.m2", + fileId = "4252960", + text = "4252960.m2", + value = "4252960.m2", }, }, - text = "unk_exp09_4519800", - value = "unk_exp09_4519800", + text = "unk_exp09_4252960", + value = "unk_exp09_4252960", }, { children = { { - fileId = "4519801", - text = "4519801.m2", - value = "4519801.m2", + fileId = "4253530", + text = "4253530.m2", + value = "4253530.m2", }, }, - text = "unk_exp09_4519801", - value = "unk_exp09_4519801", + text = "unk_exp09_4253530", + value = "unk_exp09_4253530", }, { children = { { - fileId = "4521693", - text = "4521693.m2", - value = "4521693.m2", + fileId = "4253532", + text = "4253532.m2", + value = "4253532.m2", }, }, - text = "unk_exp09_4521693", - value = "unk_exp09_4521693", + text = "unk_exp09_4253532", + value = "unk_exp09_4253532", }, { children = { { - fileId = "4522467", - text = "4522467.m2", - value = "4522467.m2", + fileId = "4253534", + text = "4253534.m2", + value = "4253534.m2", }, }, - text = "unk_exp09_4522467", - value = "unk_exp09_4522467", + text = "unk_exp09_4253534", + value = "unk_exp09_4253534", }, { children = { { - fileId = "4523273", - text = "4523273.m2", - value = "4523273.m2", + fileId = "4253535", + text = "4253535.m2", + value = "4253535.m2", }, }, - text = "unk_exp09_4523273", - value = "unk_exp09_4523273", + text = "unk_exp09_4253535", + value = "unk_exp09_4253535", }, { children = { { - fileId = "4525976", - text = "4525976.m2", - value = "4525976.m2", + fileId = "4255190", + text = "4255190.m2", + value = "4255190.m2", }, }, - text = "unk_exp09_4525976", - value = "unk_exp09_4525976", + text = "unk_exp09_4255190", + value = "unk_exp09_4255190", }, { children = { { - fileId = "4529151", - text = "4529151.m2", - value = "4529151.m2", + fileId = "4255496", + text = "4255496.m2", + value = "4255496.m2", }, }, - text = "unk_exp09_4529151", - value = "unk_exp09_4529151", + text = "unk_exp09_4255496", + value = "unk_exp09_4255496", }, { children = { { - fileId = "4533314", - text = "4533314.m2", - value = "4533314.m2", + fileId = "4255498", + text = "4255498.m2", + value = "4255498.m2", }, }, - text = "unk_exp09_4533314", - value = "unk_exp09_4533314", + text = "unk_exp09_4255498", + value = "unk_exp09_4255498", }, { children = { { - fileId = "4568764", - text = "4568764.m2", - value = "4568764.m2", + fileId = "4255500", + text = "4255500.m2", + value = "4255500.m2", }, }, - text = "unk_exp10_4568764", - value = "unk_exp10_4568764", + text = "unk_exp09_4255500", + value = "unk_exp09_4255500", }, { children = { { - fileId = "4568766", - text = "4568766.m2", - value = "4568766.m2", + fileId = "4255501", + text = "4255501.m2", + value = "4255501.m2", }, }, - text = "unk_exp10_4568766", - value = "unk_exp10_4568766", + text = "unk_exp09_4255501", + value = "unk_exp09_4255501", }, { children = { { - fileId = "4623973", - text = "4623973.m2", - value = "4623973.m2", + fileId = "4255502", + text = "4255502.m2", + value = "4255502.m2", }, }, - text = "unk_exp10_4623973", - value = "unk_exp10_4623973", + text = "unk_exp09_4255502", + value = "unk_exp09_4255502", }, { children = { { - fileId = "4630604", - text = "4630604.m2", - value = "4630604.m2", + fileId = "4264152", + text = "4264152.m2", + value = "4264152.m2", }, }, - text = "unk_exp10_4630604", - value = "unk_exp10_4630604", + text = "unk_exp09_4264152", + value = "unk_exp09_4264152", }, { children = { { - fileId = "4631242", - text = "4631242.m2", - value = "4631242.m2", + fileId = "4264159", + text = "4264159.m2", + value = "4264159.m2", }, }, - text = "unk_exp10_4631242", - value = "unk_exp10_4631242", + text = "unk_exp09_4264159", + value = "unk_exp09_4264159", }, { children = { { - fileId = "4639487", - text = "4639487.m2", - value = "4639487.m2", + fileId = "4264160", + text = "4264160.m2", + value = "4264160.m2", }, }, - text = "unk_exp10_4639487", - value = "unk_exp10_4639487", + text = "unk_exp09_4264160", + value = "unk_exp09_4264160", }, { children = { { - fileId = "4663508", - text = "4663508.m2", - value = "4663508.m2", + fileId = "4268667", + text = "4268667.m2", + value = "4268667.m2", }, }, - text = "unk_exp10_4663508", - value = "unk_exp10_4663508", + text = "unk_exp09_4268667", + value = "unk_exp09_4268667", }, { children = { { - fileId = "4663885", - text = "4663885.m2", - value = "4663885.m2", + fileId = "4268668", + text = "4268668.m2", + value = "4268668.m2", }, }, - text = "unk_exp10_4663885", - value = "unk_exp10_4663885", + text = "unk_exp09_4268668", + value = "unk_exp09_4268668", }, { children = { { - fileId = "4687145", - text = "4687145.m2", - value = "4687145.m2", + fileId = "4268669", + text = "4268669.m2", + value = "4268669.m2", }, }, - text = "unk_exp10_4687145", - value = "unk_exp10_4687145", + text = "unk_exp09_4268669", + value = "unk_exp09_4268669", }, { children = { { - fileId = "4696998", - text = "4696998.m2", - value = "4696998.m2", + fileId = "4268670", + text = "4268670.m2", + value = "4268670.m2", }, }, - text = "unk_exp10_4696998", - value = "unk_exp10_4696998", + text = "unk_exp09_4268670", + value = "unk_exp09_4268670", }, { children = { { - fileId = "4699336", - text = "4699336.m2", - value = "4699336.m2", + fileId = "4268671", + text = "4268671.m2", + value = "4268671.m2", }, }, - text = "unk_exp10_4699336", - value = "unk_exp10_4699336", + text = "unk_exp09_4268671", + value = "unk_exp09_4268671", }, { children = { { - fileId = "4703528", - text = "4703528.m2", - value = "4703528.m2", + fileId = "4268927", + text = "4268927.m2", + value = "4268927.m2", }, }, - text = "unk_exp10_4703528", - value = "unk_exp10_4703528", + text = "unk_exp09_4268927", + value = "unk_exp09_4268927", }, { children = { { - fileId = "4703529", - text = "4703529.m2", - value = "4703529.m2", + fileId = "4268928", + text = "4268928.m2", + value = "4268928.m2", }, }, - text = "unk_exp10_4703529", - value = "unk_exp10_4703529", + text = "unk_exp09_4268928", + value = "unk_exp09_4268928", }, { children = { { - fileId = "4703533", - text = "4703533.m2", - value = "4703533.m2", + fileId = "4268929", + text = "4268929.m2", + value = "4268929.m2", }, }, - text = "unk_exp10_4703533", - value = "unk_exp10_4703533", + text = "unk_exp09_4268929", + value = "unk_exp09_4268929", }, { children = { { - fileId = "4703534", - text = "4703534.m2", - value = "4703534.m2", + fileId = "4273171", + text = "4273171.m2", + value = "4273171.m2", }, }, - text = "unk_exp10_4703534", - value = "unk_exp10_4703534", + text = "unk_exp09_4273171", + value = "unk_exp09_4273171", }, { children = { { - fileId = "4737015", - text = "4737015.m2", - value = "4737015.m2", + fileId = "4273172", + text = "4273172.m2", + value = "4273172.m2", }, }, - text = "unk_exp10_4737015", - value = "unk_exp10_4737015", + text = "unk_exp09_4273172", + value = "unk_exp09_4273172", }, { children = { { - fileId = "4864084", - text = "4864084.m2", - value = "4864084.m2", + fileId = "4273174", + text = "4273174.m2", + value = "4273174.m2", }, }, - text = "unk_exp10_4864084", - value = "unk_exp10_4864084", + text = "unk_exp09_4273174", + value = "unk_exp09_4273174", }, { children = { { - fileId = "4865906", - text = "4865906.m2", - value = "4865906.m2", + fileId = "4273175", + text = "4273175.m2", + value = "4273175.m2", }, }, - text = "unk_exp10_4865906", - value = "unk_exp10_4865906", + text = "unk_exp09_4273175", + value = "unk_exp09_4273175", }, { children = { { - fileId = "4867005", - text = "4867005.m2", - value = "4867005.m2", + fileId = "4278343", + text = "4278343.m2", + value = "4278343.m2", }, }, - text = "unk_exp10_4867005", - value = "unk_exp10_4867005", + text = "unk_exp09_4278343", + value = "unk_exp09_4278343", }, { children = { { - fileId = "4869599", - text = "4869599.m2", - value = "4869599.m2", + fileId = "4278344", + text = "4278344.m2", + value = "4278344.m2", }, }, - text = "unk_exp10_4869599", - value = "unk_exp10_4869599", + text = "unk_exp09_4278344", + value = "unk_exp09_4278344", }, { children = { { - fileId = "4869600", - text = "4869600.m2", - value = "4869600.m2", + fileId = "4278346", + text = "4278346.m2", + value = "4278346.m2", }, }, - text = "unk_exp10_4869600", - value = "unk_exp10_4869600", + text = "unk_exp09_4278346", + value = "unk_exp09_4278346", }, { children = { { - fileId = "4870464", - text = "4870464.m2", - value = "4870464.m2", + fileId = "4280141", + text = "4280141.m2", + value = "4280141.m2", }, }, - text = "unk_exp10_4870464", - value = "unk_exp10_4870464", + text = "unk_exp09_4280141", + value = "unk_exp09_4280141", }, { children = { { - fileId = "4870465", - text = "4870465.m2", - value = "4870465.m2", + fileId = "4280142", + text = "4280142.m2", + value = "4280142.m2", }, }, - text = "unk_exp10_4870465", - value = "unk_exp10_4870465", + text = "unk_exp09_4280142", + value = "unk_exp09_4280142", }, { children = { { - fileId = "4870466", - text = "4870466.m2", - value = "4870466.m2", + fileId = "4280143", + text = "4280143.m2", + value = "4280143.m2", }, }, - text = "unk_exp10_4870466", - value = "unk_exp10_4870466", + text = "unk_exp09_4280143", + value = "unk_exp09_4280143", }, { children = { { - fileId = "4870467", - text = "4870467.m2", - value = "4870467.m2", + fileId = "4280144", + text = "4280144.m2", + value = "4280144.m2", }, }, - text = "unk_exp10_4870467", - value = "unk_exp10_4870467", + text = "unk_exp09_4280144", + value = "unk_exp09_4280144", }, { children = { { - fileId = "4870468", - text = "4870468.m2", - value = "4870468.m2", + fileId = "4280561", + text = "4280561.m2", + value = "4280561.m2", }, }, - text = "unk_exp10_4870468", - value = "unk_exp10_4870468", + text = "unk_exp09_4280561", + value = "unk_exp09_4280561", }, { children = { { - fileId = "4871429", - text = "4871429.m2", - value = "4871429.m2", + fileId = "4280661", + text = "4280661.m2", + value = "4280661.m2", }, }, - text = "unk_exp10_4871429", - value = "unk_exp10_4871429", + text = "unk_exp09_4280661", + value = "unk_exp09_4280661", }, { children = { { - fileId = "4871430", - text = "4871430.m2", - value = "4871430.m2", + fileId = "4280662", + text = "4280662.m2", + value = "4280662.m2", }, }, - text = "unk_exp10_4871430", - value = "unk_exp10_4871430", + text = "unk_exp09_4280662", + value = "unk_exp09_4280662", }, { children = { { - fileId = "4871431", - text = "4871431.m2", - value = "4871431.m2", + fileId = "4280663", + text = "4280663.m2", + value = "4280663.m2", }, }, - text = "unk_exp10_4871431", - value = "unk_exp10_4871431", + text = "unk_exp09_4280663", + value = "unk_exp09_4280663", }, { children = { { - fileId = "4879434", - text = "4879434.m2", - value = "4879434.m2", + fileId = "4282507", + text = "4282507.m2", + value = "4282507.m2", }, }, - text = "unk_exp10_4879434", - value = "unk_exp10_4879434", + text = "unk_exp09_4282507", + value = "unk_exp09_4282507", }, { children = { { - fileId = "4891628", - text = "4891628.m2", - value = "4891628.m2", + fileId = "4282526", + text = "4282526.m2", + value = "4282526.m2", }, }, - text = "unk_exp10_4891628", - value = "unk_exp10_4891628", + text = "unk_exp09_4282526", + value = "unk_exp09_4282526", }, { children = { { - fileId = "4891629", - text = "4891629.m2", - value = "4891629.m2", + fileId = "4282533", + text = "4282533.m2", + value = "4282533.m2", }, }, - text = "unk_exp10_4891629", - value = "unk_exp10_4891629", + text = "unk_exp09_4282533", + value = "unk_exp09_4282533", }, { children = { { - fileId = "4891630", - text = "4891630.m2", - value = "4891630.m2", + fileId = "4282536", + text = "4282536.m2", + value = "4282536.m2", }, }, - text = "unk_exp10_4891630", - value = "unk_exp10_4891630", + text = "unk_exp09_4282536", + value = "unk_exp09_4282536", }, { children = { { - fileId = "4906604", - text = "4906604.m2", - value = "4906604.m2", + fileId = "4285567", + text = "4285567.m2", + value = "4285567.m2", }, }, - text = "unk_exp10_4906604", - value = "unk_exp10_4906604", + text = "unk_exp09_4285567", + value = "unk_exp09_4285567", }, { children = { { - fileId = "5001180", - text = "5001180.m2", - value = "5001180.m2", + fileId = "4285568", + text = "4285568.m2", + value = "4285568.m2", }, }, - text = "unk_exp10_5001180", - value = "unk_exp10_5001180", + text = "unk_exp09_4285568", + value = "unk_exp09_4285568", }, { children = { { - fileId = "5012495", - text = "5012495.m2", - value = "5012495.m2", + fileId = "4285570", + text = "4285570.m2", + value = "4285570.m2", }, - }, - text = "unk_exp10_5012495", - value = "unk_exp10_5012495", + }, + text = "unk_exp09_4285570", + value = "unk_exp09_4285570", }, { children = { { - fileId = "5053632", - text = "5053632.m2", - value = "5053632.m2", + fileId = "4285929", + text = "4285929.m2", + value = "4285929.m2", }, }, - text = "unk_exp10_5053632", - value = "unk_exp10_5053632", + text = "unk_exp09_4285929", + value = "unk_exp09_4285929", }, { children = { { - fileId = "5054343", - text = "5054343.m2", - value = "5054343.m2", + fileId = "4285930", + text = "4285930.m2", + value = "4285930.m2", }, }, - text = "unk_exp10_5054343", - value = "unk_exp10_5054343", + text = "unk_exp09_4285930", + value = "unk_exp09_4285930", }, { children = { { - fileId = "5054975", - text = "5054975.m2", - value = "5054975.m2", + fileId = "4285932", + text = "4285932.m2", + value = "4285932.m2", }, }, - text = "unk_exp10_5054975", - value = "unk_exp10_5054975", + text = "unk_exp09_4285932", + value = "unk_exp09_4285932", }, { children = { { - fileId = "5058499", - text = "5058499.m2", - value = "5058499.m2", + fileId = "4285933", + text = "4285933.m2", + value = "4285933.m2", }, }, - text = "unk_exp10_5058499", - value = "unk_exp10_5058499", + text = "unk_exp09_4285933", + value = "unk_exp09_4285933", }, { children = { { - fileId = "5093353", - text = "5093353.m2", - value = "5093353.m2", + fileId = "4285934", + text = "4285934.m2", + value = "4285934.m2", }, }, - text = "unk_exp10_5093353", - value = "unk_exp10_5093353", + text = "unk_exp09_4285934", + value = "unk_exp09_4285934", }, { children = { { - fileId = "5094793", - text = "5094793.m2", - value = "5094793.m2", + fileId = "4286989", + text = "4286989.m2", + value = "4286989.m2", }, }, - text = "unk_exp10_5094793", - value = "unk_exp10_5094793", + text = "unk_exp09_4286989", + value = "unk_exp09_4286989", }, { children = { { - fileId = "5100015", - text = "5100015.m2", - value = "5100015.m2", + fileId = "4286990", + text = "4286990.m2", + value = "4286990.m2", }, }, - text = "unk_exp10_5100015", - value = "unk_exp10_5100015", + text = "unk_exp09_4286990", + value = "unk_exp09_4286990", }, { children = { { - fileId = "5172571", - text = "5172571.m2", - value = "5172571.m2", + fileId = "4286991", + text = "4286991.m2", + value = "4286991.m2", }, }, - text = "unk_exp10_5172571", - value = "unk_exp10_5172571", + text = "unk_exp09_4286991", + value = "unk_exp09_4286991", }, { children = { { - fileId = "5175369", - text = "5175369.m2", - value = "5175369.m2", + fileId = "4286993", + text = "4286993.m2", + value = "4286993.m2", }, }, - text = "unk_exp10_5175369", - value = "unk_exp10_5175369", + text = "unk_exp09_4286993", + value = "unk_exp09_4286993", }, { children = { { - fileId = "5198708", - text = "5198708.m2", - value = "5198708.m2", + fileId = "4286997", + text = "4286997.m2", + value = "4286997.m2", }, }, - text = "unk_exp10_5198708", - value = "unk_exp10_5198708", + text = "unk_exp09_4286997", + value = "unk_exp09_4286997", }, { children = { { - fileId = "5202079", - text = "5202079.m2", - value = "5202079.m2", + fileId = "4288065", + text = "4288065.m2", + value = "4288065.m2", }, }, - text = "unk_exp10_5202079", - value = "unk_exp10_5202079", + text = "unk_exp09_4288065", + value = "unk_exp09_4288065", }, { children = { { - fileId = "5205754", - text = "5205754.m2", - value = "5205754.m2", + fileId = "4288070", + text = "4288070.m2", + value = "4288070.m2", }, }, - text = "unk_exp10_5205754", - value = "unk_exp10_5205754", + text = "unk_exp09_4288070", + value = "unk_exp09_4288070", }, { children = { { - fileId = "5243681", - text = "5243681.m2", - value = "5243681.m2", + fileId = "4288966", + text = "4288966.m2", + value = "4288966.m2", }, }, - text = "unk_exp10_5243681", - value = "unk_exp10_5243681", + text = "unk_exp09_4288966", + value = "unk_exp09_4288966", }, { children = { { - fileId = "5306881", - text = "5306881.m2", - value = "5306881.m2", + fileId = "4288967", + text = "4288967.m2", + value = "4288967.m2", }, }, - text = "unk_exp10_5306881", - value = "unk_exp10_5306881", + text = "unk_exp09_4288967", + value = "unk_exp09_4288967", }, { children = { { - fileId = "5306882", - text = "5306882.m2", - value = "5306882.m2", + fileId = "4289131", + text = "4289131.m2", + value = "4289131.m2", }, }, - text = "unk_exp10_5306882", - value = "unk_exp10_5306882", + text = "unk_exp09_4289131", + value = "unk_exp09_4289131", }, { children = { { - fileId = "5306883", - text = "5306883.m2", - value = "5306883.m2", + fileId = "4290179", + text = "4290179.m2", + value = "4290179.m2", }, }, - text = "unk_exp10_5306883", - value = "unk_exp10_5306883", + text = "unk_exp09_4290179", + value = "unk_exp09_4290179", }, { children = { { - fileId = "5306884", - text = "5306884.m2", - value = "5306884.m2", + fileId = "4290182", + text = "4290182.m2", + value = "4290182.m2", }, }, - text = "unk_exp10_5306884", - value = "unk_exp10_5306884", + text = "unk_exp09_4290182", + value = "unk_exp09_4290182", }, { children = { { - fileId = "5319044", - text = "5319044.m2", - value = "5319044.m2", + fileId = "4291401", + text = "4291401.m2", + value = "4291401.m2", }, }, - text = "unk_exp10_5319044", - value = "unk_exp10_5319044", + text = "unk_exp09_4291401", + value = "unk_exp09_4291401", }, { children = { { - fileId = "5333966", - text = "5333966.m2", - value = "5333966.m2", + fileId = "4291403", + text = "4291403.m2", + value = "4291403.m2", }, }, - text = "unk_exp10_5333966", - value = "unk_exp10_5333966", + text = "unk_exp09_4291403", + value = "unk_exp09_4291403", }, { children = { { - fileId = "5341109", - text = "5341109.m2", - value = "5341109.m2", + fileId = "4291404", + text = "4291404.m2", + value = "4291404.m2", }, }, - text = "unk_exp10_5341109", - value = "unk_exp10_5341109", + text = "unk_exp09_4291404", + value = "unk_exp09_4291404", }, { children = { { - fileId = "5346309", - text = "5346309.m2", - value = "5346309.m2", + fileId = "4291405", + text = "4291405.m2", + value = "4291405.m2", }, }, - text = "unk_exp10_5346309", - value = "unk_exp10_5346309", + text = "unk_exp09_4291405", + value = "unk_exp09_4291405", }, { children = { { - fileId = "5346310", - text = "5346310.m2", - value = "5346310.m2", + fileId = "4291406", + text = "4291406.m2", + value = "4291406.m2", }, }, - text = "unk_exp10_5346310", - value = "unk_exp10_5346310", + text = "unk_exp09_4291406", + value = "unk_exp09_4291406", }, { children = { { - fileId = "5353584", - text = "5353584.m2", - value = "5353584.m2", + fileId = "4293187", + text = "4293187.m2", + value = "4293187.m2", }, }, - text = "unk_exp10_5353584", - value = "unk_exp10_5353584", + text = "unk_exp09_4293187", + value = "unk_exp09_4293187", }, { children = { { - fileId = "5369349", - text = "5369349.m2", - value = "5369349.m2", + fileId = "4293188", + text = "4293188.m2", + value = "4293188.m2", }, }, - text = "unk_exp10_5369349", - value = "unk_exp10_5369349", + text = "unk_exp09_4293188", + value = "unk_exp09_4293188", }, { children = { { - fileId = "5369872", - text = "5369872.m2", - value = "5369872.m2", + fileId = "4293189", + text = "4293189.m2", + value = "4293189.m2", }, }, - text = "unk_exp10_5369872", - value = "unk_exp10_5369872", + text = "unk_exp09_4293189", + value = "unk_exp09_4293189", }, { children = { { - fileId = "5369873", - text = "5369873.m2", - value = "5369873.m2", + fileId = "4294722", + text = "4294722.m2", + value = "4294722.m2", }, }, - text = "unk_exp10_5369873", - value = "unk_exp10_5369873", + text = "unk_exp09_4294722", + value = "unk_exp09_4294722", }, { children = { { - fileId = "5369876", - text = "5369876.m2", - value = "5369876.m2", + fileId = "4298411", + text = "4298411.m2", + value = "4298411.m2", }, }, - text = "unk_exp10_5369876", - value = "unk_exp10_5369876", + text = "unk_exp09_4298411", + value = "unk_exp09_4298411", }, { children = { { - fileId = "5369877", - text = "5369877.m2", - value = "5369877.m2", + fileId = "4298419", + text = "4298419.m2", + value = "4298419.m2", }, }, - text = "unk_exp10_5369877", - value = "unk_exp10_5369877", + text = "unk_exp09_4298419", + value = "unk_exp09_4298419", }, { children = { { - fileId = "5369878", - text = "5369878.m2", - value = "5369878.m2", + fileId = "4298420", + text = "4298420.m2", + value = "4298420.m2", }, }, - text = "unk_exp10_5369878", - value = "unk_exp10_5369878", + text = "unk_exp09_4298420", + value = "unk_exp09_4298420", }, { children = { { - fileId = "5369879", - text = "5369879.m2", - value = "5369879.m2", + fileId = "4298457", + text = "4298457.m2", + value = "4298457.m2", }, }, - text = "unk_exp10_5369879", - value = "unk_exp10_5369879", + text = "unk_exp09_4298457", + value = "unk_exp09_4298457", }, { children = { { - fileId = "5370809", - text = "5370809.m2", - value = "5370809.m2", + fileId = "4298463", + text = "4298463.m2", + value = "4298463.m2", }, }, - text = "unk_exp10_5370809", - value = "unk_exp10_5370809", + text = "unk_exp09_4298463", + value = "unk_exp09_4298463", }, { children = { { - fileId = "5370894", - text = "5370894.m2", - value = "5370894.m2", + fileId = "4298484", + text = "4298484.m2", + value = "4298484.m2", }, }, - text = "unk_exp10_5370894", - value = "unk_exp10_5370894", + text = "unk_exp09_4298484", + value = "unk_exp09_4298484", }, { children = { { - fileId = "5371641", - text = "5371641.m2", - value = "5371641.m2", + fileId = "4298485", + text = "4298485.m2", + value = "4298485.m2", }, }, - text = "unk_exp10_5371641", - value = "unk_exp10_5371641", + text = "unk_exp09_4298485", + value = "unk_exp09_4298485", }, { children = { { - fileId = "5371866", - text = "5371866.m2", - value = "5371866.m2", + fileId = "4298486", + text = "4298486.m2", + value = "4298486.m2", }, }, - text = "unk_exp10_5371866", - value = "unk_exp10_5371866", + text = "unk_exp09_4298486", + value = "unk_exp09_4298486", }, { children = { { - fileId = "5372442", - text = "5372442.m2", - value = "5372442.m2", + fileId = "4298487", + text = "4298487.m2", + value = "4298487.m2", }, }, - text = "unk_exp10_5372442", - value = "unk_exp10_5372442", + text = "unk_exp09_4298487", + value = "unk_exp09_4298487", }, { children = { { - fileId = "5384965", - text = "5384965.m2", - value = "5384965.m2", + fileId = "4298488", + text = "4298488.m2", + value = "4298488.m2", }, }, - text = "unk_exp10_5384965", - value = "unk_exp10_5384965", + text = "unk_exp09_4298488", + value = "unk_exp09_4298488", }, { children = { { - fileId = "5384966", - text = "5384966.m2", - value = "5384966.m2", + fileId = "4298489", + text = "4298489.m2", + value = "4298489.m2", }, }, - text = "unk_exp10_5384966", - value = "unk_exp10_5384966", + text = "unk_exp09_4298489", + value = "unk_exp09_4298489", }, { children = { { - fileId = "5384967", - text = "5384967.m2", - value = "5384967.m2", + fileId = "4317323", + text = "4317323.m2", + value = "4317323.m2", }, }, - text = "unk_exp10_5384967", - value = "unk_exp10_5384967", + text = "unk_exp09_4317323", + value = "unk_exp09_4317323", }, { children = { { - fileId = "5386257", - text = "5386257.m2", - value = "5386257.m2", + fileId = "4317324", + text = "4317324.m2", + value = "4317324.m2", }, }, - text = "unk_exp10_5386257", - value = "unk_exp10_5386257", + text = "unk_exp09_4317324", + value = "unk_exp09_4317324", }, { children = { { - fileId = "5386384", - text = "5386384.m2", - value = "5386384.m2", + fileId = "4317325", + text = "4317325.m2", + value = "4317325.m2", }, }, - text = "unk_exp10_5386384", - value = "unk_exp10_5386384", + text = "unk_exp09_4317325", + value = "unk_exp09_4317325", }, { children = { { - fileId = "5386385", - text = "5386385.m2", - value = "5386385.m2", + fileId = "4317326", + text = "4317326.m2", + value = "4317326.m2", }, }, - text = "unk_exp10_5386385", - value = "unk_exp10_5386385", + text = "unk_exp09_4317326", + value = "unk_exp09_4317326", }, { children = { { - fileId = "5386386", - text = "5386386.m2", - value = "5386386.m2", + fileId = "4317327", + text = "4317327.m2", + value = "4317327.m2", }, }, - text = "unk_exp10_5386386", - value = "unk_exp10_5386386", + text = "unk_exp09_4317327", + value = "unk_exp09_4317327", }, { children = { { - fileId = "5386387", - text = "5386387.m2", - value = "5386387.m2", + fileId = "4317328", + text = "4317328.m2", + value = "4317328.m2", }, }, - text = "unk_exp10_5386387", - value = "unk_exp10_5386387", + text = "unk_exp09_4317328", + value = "unk_exp09_4317328", }, { children = { { - fileId = "5386388", - text = "5386388.m2", - value = "5386388.m2", + fileId = "4320288", + text = "4320288.m2", + value = "4320288.m2", }, }, - text = "unk_exp10_5386388", - value = "unk_exp10_5386388", + text = "unk_exp09_4320288", + value = "unk_exp09_4320288", }, { children = { { - fileId = "5386390", - text = "5386390.m2", - value = "5386390.m2", + fileId = "4320289", + text = "4320289.m2", + value = "4320289.m2", }, }, - text = "unk_exp10_5386390", - value = "unk_exp10_5386390", + text = "unk_exp09_4320289", + value = "unk_exp09_4320289", }, { children = { { - fileId = "5386391", - text = "5386391.m2", - value = "5386391.m2", + fileId = "4320290", + text = "4320290.m2", + value = "4320290.m2", }, }, - text = "unk_exp10_5386391", - value = "unk_exp10_5386391", + text = "unk_exp09_4320290", + value = "unk_exp09_4320290", }, { children = { { - fileId = "5386392", - text = "5386392.m2", - value = "5386392.m2", + fileId = "4320291", + text = "4320291.m2", + value = "4320291.m2", }, }, - text = "unk_exp10_5386392", - value = "unk_exp10_5386392", + text = "unk_exp09_4320291", + value = "unk_exp09_4320291", }, { children = { { - fileId = "5386393", - text = "5386393.m2", - value = "5386393.m2", + fileId = "4320292", + text = "4320292.m2", + value = "4320292.m2", }, }, - text = "unk_exp10_5386393", - value = "unk_exp10_5386393", + text = "unk_exp09_4320292", + value = "unk_exp09_4320292", }, { children = { { - fileId = "5386394", - text = "5386394.m2", - value = "5386394.m2", + fileId = "4323296", + text = "4323296.m2", + value = "4323296.m2", }, }, - text = "unk_exp10_5386394", - value = "unk_exp10_5386394", + text = "unk_exp09_4323296", + value = "unk_exp09_4323296", }, { children = { { - fileId = "5386395", - text = "5386395.m2", - value = "5386395.m2", + fileId = "4324625", + text = "4324625.m2", + value = "4324625.m2", }, }, - text = "unk_exp10_5386395", - value = "unk_exp10_5386395", + text = "unk_exp09_4324625", + value = "unk_exp09_4324625", }, { children = { { - fileId = "5400309", - text = "5400309.m2", - value = "5400309.m2", + fileId = "4324807", + text = "4324807.m2", + value = "4324807.m2", }, }, - text = "unk_exp10_5400309", - value = "unk_exp10_5400309", + text = "unk_exp09_4324807", + value = "unk_exp09_4324807", }, { children = { { - fileId = "5403869", - text = "5403869.m2", - value = "5403869.m2", + fileId = "4325223", + text = "4325223.m2", + value = "4325223.m2", }, }, - text = "unk_exp10_5403869", - value = "unk_exp10_5403869", + text = "unk_exp09_4325223", + value = "unk_exp09_4325223", }, { children = { { - fileId = "5413037", - text = "5413037.m2", - value = "5413037.m2", + fileId = "4326922", + text = "4326922.m2", + value = "4326922.m2", }, }, - text = "unk_exp10_5413037", - value = "unk_exp10_5413037", + text = "unk_exp09_4326922", + value = "unk_exp09_4326922", }, { children = { { - fileId = "5456575", - text = "5456575.m2", - value = "5456575.m2", + fileId = "4327484", + text = "4327484.m2", + value = "4327484.m2", }, }, - text = "unk_exp10_5456575", - value = "unk_exp10_5456575", + text = "unk_exp09_4327484", + value = "unk_exp09_4327484", }, { children = { { - fileId = "5467189", - text = "5467189.m2", - value = "5467189.m2", + fileId = "4327485", + text = "4327485.m2", + value = "4327485.m2", }, }, - text = "unk_exp10_5467189", - value = "unk_exp10_5467189", + text = "unk_exp09_4327485", + value = "unk_exp09_4327485", }, { children = { { - fileId = "5480115", - text = "5480115.m2", - value = "5480115.m2", + fileId = "4327486", + text = "4327486.m2", + value = "4327486.m2", }, }, - text = "unk_exp10_5480115", - value = "unk_exp10_5480115", + text = "unk_exp09_4327486", + value = "unk_exp09_4327486", }, { children = { { - fileId = "5493019", - text = "5493019.m2", - value = "5493019.m2", + fileId = "4328611", + text = "4328611.m2", + value = "4328611.m2", }, }, - text = "unk_exp10_5493019", - value = "unk_exp10_5493019", + text = "unk_exp09_4328611", + value = "unk_exp09_4328611", }, { children = { { - fileId = "5493020", - text = "5493020.m2", - value = "5493020.m2", + fileId = "4328613", + text = "4328613.m2", + value = "4328613.m2", }, }, - text = "unk_exp10_5493020", - value = "unk_exp10_5493020", + text = "unk_exp09_4328613", + value = "unk_exp09_4328613", }, { children = { { - fileId = "5493026", - text = "5493026.m2", - value = "5493026.m2", + fileId = "4331737", + text = "4331737.m2", + value = "4331737.m2", }, }, - text = "unk_exp10_5493026", - value = "unk_exp10_5493026", + text = "unk_exp09_4331737", + value = "unk_exp09_4331737", }, { children = { { - fileId = "5493027", - text = "5493027.m2", - value = "5493027.m2", + fileId = "4331738", + text = "4331738.m2", + value = "4331738.m2", }, }, - text = "unk_exp10_5493027", - value = "unk_exp10_5493027", + text = "unk_exp09_4331738", + value = "unk_exp09_4331738", }, { children = { { - fileId = "5493737", - text = "5493737.m2", - value = "5493737.m2", + fileId = "4335665", + text = "4335665.m2", + value = "4335665.m2", }, }, - text = "unk_exp10_5493737", - value = "unk_exp10_5493737", + text = "unk_exp09_4335665", + value = "unk_exp09_4335665", }, { children = { { - fileId = "5493738", - text = "5493738.m2", - value = "5493738.m2", + fileId = "4335666", + text = "4335666.m2", + value = "4335666.m2", }, }, - text = "unk_exp10_5493738", - value = "unk_exp10_5493738", + text = "unk_exp09_4335666", + value = "unk_exp09_4335666", }, { children = { { - fileId = "5493739", - text = "5493739.m2", - value = "5493739.m2", + fileId = "4335919", + text = "4335919.m2", + value = "4335919.m2", }, }, - text = "unk_exp10_5493739", - value = "unk_exp10_5493739", + text = "unk_exp09_4335919", + value = "unk_exp09_4335919", }, { children = { { - fileId = "5493740", - text = "5493740.m2", - value = "5493740.m2", + fileId = "4335920", + text = "4335920.m2", + value = "4335920.m2", }, }, - text = "unk_exp10_5493740", - value = "unk_exp10_5493740", + text = "unk_exp09_4335920", + value = "unk_exp09_4335920", }, { children = { { - fileId = "5493741", - text = "5493741.m2", - value = "5493741.m2", + fileId = "4336201", + text = "4336201.m2", + value = "4336201.m2", }, }, - text = "unk_exp10_5493741", - value = "unk_exp10_5493741", + text = "unk_exp09_4336201", + value = "unk_exp09_4336201", }, { children = { { - fileId = "5502697", - text = "5502697.m2", - value = "5502697.m2", + fileId = "4336202", + text = "4336202.m2", + value = "4336202.m2", }, }, - text = "unk_exp10_5502697", - value = "unk_exp10_5502697", + text = "unk_exp09_4336202", + value = "unk_exp09_4336202", }, { children = { { - fileId = "5512749", - text = "5512749.m2", - value = "5512749.m2", + fileId = "4362870", + text = "4362870.m2", + value = "4362870.m2", }, }, - text = "unk_exp10_5512749", - value = "unk_exp10_5512749", - }, - }, - text = "spells", - value = "spells", - }, - { - children = { - { - fileId = "1782602", - text = "1782602.m2", - value = "1782602.m2", - }, - }, - text = "unk_exp09_1782602", - value = "unk_exp09_1782602", - }, - { - children = { - { - fileId = "4209079", - text = "4209079.m2", - value = "4209079.m2", + text = "unk_exp09_4362870", + value = "unk_exp09_4362870", }, - }, - text = "unk_exp09_4209079", - value = "unk_exp09_4209079", - }, - { - children = { { - fileId = "4209081", - text = "4209081.m2", - value = "4209081.m2", + children = { + { + fileId = "4370975", + text = "4370975.m2", + value = "4370975.m2", + }, + }, + text = "unk_exp09_4370975", + value = "unk_exp09_4370975", }, - }, - text = "unk_exp09_4209081", - value = "unk_exp09_4209081", - }, - { - children = { { children = { { - fileId = "4182600", - text = "4182600.m2", - value = "4182600.m2", + fileId = "4373474", + text = "4373474.m2", + value = "4373474.m2", }, }, - text = "unk_exp09_4182600", - value = "unk_exp09_4182600", + text = "unk_exp09_4373474", + value = "unk_exp09_4373474", }, { children = { { - fileId = "4196646", - text = "4196646.m2", - value = "4196646.m2", + fileId = "4375661", + text = "4375661.m2", + value = "4375661.m2", }, }, - text = "unk_exp09_4196646", - value = "unk_exp09_4196646", + text = "unk_exp09_4375661", + value = "unk_exp09_4375661", }, { children = { { - fileId = "4196648", - text = "4196648.m2", - value = "4196648.m2", + fileId = "4375662", + text = "4375662.m2", + value = "4375662.m2", }, }, - text = "unk_exp09_4196648", - value = "unk_exp09_4196648", + text = "unk_exp09_4375662", + value = "unk_exp09_4375662", }, { children = { { - fileId = "4205988", - text = "4205988.m2", - value = "4205988.m2", + fileId = "4375665", + text = "4375665.m2", + value = "4375665.m2", }, }, - text = "unk_exp09_4205988", - value = "unk_exp09_4205988", + text = "unk_exp09_4375665", + value = "unk_exp09_4375665", }, { children = { { - fileId = "4237313", - text = "4237313.m2", - value = "4237313.m2", + fileId = "4375669", + text = "4375669.m2", + value = "4375669.m2", }, - }, - text = "unk_exp09_4237313", - value = "unk_exp09_4237313", + }, + text = "unk_exp09_4375669", + value = "unk_exp09_4375669", }, { children = { { - fileId = "4240488", - text = "4240488.m2", - value = "4240488.m2", + fileId = "4381286", + text = "4381286.m2", + value = "4381286.m2", }, }, - text = "unk_exp09_4240488", - value = "unk_exp09_4240488", + text = "unk_exp09_4381286", + value = "unk_exp09_4381286", }, { children = { { - fileId = "4252178", - text = "4252178.m2", - value = "4252178.m2", + fileId = "4381288", + text = "4381288.m2", + value = "4381288.m2", }, }, - text = "unk_exp09_4252178", - value = "unk_exp09_4252178", + text = "unk_exp09_4381288", + value = "unk_exp09_4381288", }, { children = { { - fileId = "4252960", - text = "4252960.m2", - value = "4252960.m2", + fileId = "4381361", + text = "4381361.m2", + value = "4381361.m2", }, }, - text = "unk_exp09_4252960", - value = "unk_exp09_4252960", + text = "unk_exp09_4381361", + value = "unk_exp09_4381361", }, { children = { { - fileId = "4253530", - text = "4253530.m2", - value = "4253530.m2", + fileId = "4381904", + text = "4381904.m2", + value = "4381904.m2", }, }, - text = "unk_exp09_4253530", - value = "unk_exp09_4253530", + text = "unk_exp09_4381904", + value = "unk_exp09_4381904", }, { children = { { - fileId = "4253532", - text = "4253532.m2", - value = "4253532.m2", + fileId = "4381905", + text = "4381905.m2", + value = "4381905.m2", }, }, - text = "unk_exp09_4253532", - value = "unk_exp09_4253532", + text = "unk_exp09_4381905", + value = "unk_exp09_4381905", }, { children = { { - fileId = "4253534", - text = "4253534.m2", - value = "4253534.m2", + fileId = "4382547", + text = "4382547.m2", + value = "4382547.m2", }, }, - text = "unk_exp09_4253534", - value = "unk_exp09_4253534", + text = "unk_exp09_4382547", + value = "unk_exp09_4382547", }, { children = { { - fileId = "4253535", - text = "4253535.m2", - value = "4253535.m2", + fileId = "4382549", + text = "4382549.m2", + value = "4382549.m2", }, }, - text = "unk_exp09_4253535", - value = "unk_exp09_4253535", + text = "unk_exp09_4382549", + value = "unk_exp09_4382549", }, { children = { { - fileId = "4255190", - text = "4255190.m2", - value = "4255190.m2", + fileId = "4382550", + text = "4382550.m2", + value = "4382550.m2", }, }, - text = "unk_exp09_4255190", - value = "unk_exp09_4255190", + text = "unk_exp09_4382550", + value = "unk_exp09_4382550", }, { children = { { - fileId = "4255496", - text = "4255496.m2", - value = "4255496.m2", + fileId = "4382551", + text = "4382551.m2", + value = "4382551.m2", }, }, - text = "unk_exp09_4255496", - value = "unk_exp09_4255496", + text = "unk_exp09_4382551", + value = "unk_exp09_4382551", }, { children = { { - fileId = "4255498", - text = "4255498.m2", - value = "4255498.m2", + fileId = "4382553", + text = "4382553.m2", + value = "4382553.m2", }, }, - text = "unk_exp09_4255498", - value = "unk_exp09_4255498", + text = "unk_exp09_4382553", + value = "unk_exp09_4382553", }, { children = { { - fileId = "4255500", - text = "4255500.m2", - value = "4255500.m2", + fileId = "4389983", + text = "4389983.m2", + value = "4389983.m2", }, }, - text = "unk_exp09_4255500", - value = "unk_exp09_4255500", + text = "unk_exp09_4389983", + value = "unk_exp09_4389983", }, { children = { { - fileId = "4255501", - text = "4255501.m2", - value = "4255501.m2", + fileId = "4390024", + text = "4390024.m2", + value = "4390024.m2", }, }, - text = "unk_exp09_4255501", - value = "unk_exp09_4255501", + text = "unk_exp09_4390024", + value = "unk_exp09_4390024", }, { children = { { - fileId = "4255502", - text = "4255502.m2", - value = "4255502.m2", + fileId = "4390026", + text = "4390026.m2", + value = "4390026.m2", }, }, - text = "unk_exp09_4255502", - value = "unk_exp09_4255502", + text = "unk_exp09_4390026", + value = "unk_exp09_4390026", }, { children = { { - fileId = "4264152", - text = "4264152.m2", - value = "4264152.m2", + fileId = "4390027", + text = "4390027.m2", + value = "4390027.m2", }, }, - text = "unk_exp09_4264152", - value = "unk_exp09_4264152", + text = "unk_exp09_4390027", + value = "unk_exp09_4390027", }, { children = { { - fileId = "4264159", - text = "4264159.m2", - value = "4264159.m2", + fileId = "4390031", + text = "4390031.m2", + value = "4390031.m2", }, }, - text = "unk_exp09_4264159", - value = "unk_exp09_4264159", + text = "unk_exp09_4390031", + value = "unk_exp09_4390031", }, { children = { { - fileId = "4264160", - text = "4264160.m2", - value = "4264160.m2", + fileId = "4390032", + text = "4390032.m2", + value = "4390032.m2", }, }, - text = "unk_exp09_4264160", - value = "unk_exp09_4264160", + text = "unk_exp09_4390032", + value = "unk_exp09_4390032", }, { children = { { - fileId = "4268667", - text = "4268667.m2", - value = "4268667.m2", + fileId = "4390908", + text = "4390908.m2", + value = "4390908.m2", }, }, - text = "unk_exp09_4268667", - value = "unk_exp09_4268667", + text = "unk_exp09_4390908", + value = "unk_exp09_4390908", }, { children = { { - fileId = "4268668", - text = "4268668.m2", - value = "4268668.m2", + fileId = "4391199", + text = "4391199.m2", + value = "4391199.m2", }, }, - text = "unk_exp09_4268668", - value = "unk_exp09_4268668", + text = "unk_exp09_4391199", + value = "unk_exp09_4391199", }, { children = { { - fileId = "4268669", - text = "4268669.m2", - value = "4268669.m2", + fileId = "4391480", + text = "4391480.m2", + value = "4391480.m2", }, }, - text = "unk_exp09_4268669", - value = "unk_exp09_4268669", + text = "unk_exp09_4391480", + value = "unk_exp09_4391480", }, { children = { { - fileId = "4268670", - text = "4268670.m2", - value = "4268670.m2", + fileId = "4391504", + text = "4391504.m2", + value = "4391504.m2", }, }, - text = "unk_exp09_4268670", - value = "unk_exp09_4268670", + text = "unk_exp09_4391504", + value = "unk_exp09_4391504", }, { children = { { - fileId = "4268671", - text = "4268671.m2", - value = "4268671.m2", + fileId = "4391505", + text = "4391505.m2", + value = "4391505.m2", }, }, - text = "unk_exp09_4268671", - value = "unk_exp09_4268671", + text = "unk_exp09_4391505", + value = "unk_exp09_4391505", }, { children = { { - fileId = "4268927", - text = "4268927.m2", - value = "4268927.m2", + fileId = "4391506", + text = "4391506.m2", + value = "4391506.m2", }, }, - text = "unk_exp09_4268927", - value = "unk_exp09_4268927", + text = "unk_exp09_4391506", + value = "unk_exp09_4391506", }, { children = { { - fileId = "4268928", - text = "4268928.m2", - value = "4268928.m2", + fileId = "4391509", + text = "4391509.m2", + value = "4391509.m2", }, }, - text = "unk_exp09_4268928", - value = "unk_exp09_4268928", + text = "unk_exp09_4391509", + value = "unk_exp09_4391509", }, { children = { { - fileId = "4268929", - text = "4268929.m2", - value = "4268929.m2", + fileId = "4391619", + text = "4391619.m2", + value = "4391619.m2", }, }, - text = "unk_exp09_4268929", - value = "unk_exp09_4268929", + text = "unk_exp09_4391619", + value = "unk_exp09_4391619", }, { children = { { - fileId = "4273171", - text = "4273171.m2", - value = "4273171.m2", + fileId = "4391865", + text = "4391865.m2", + value = "4391865.m2", }, }, - text = "unk_exp09_4273171", - value = "unk_exp09_4273171", + text = "unk_exp09_4391865", + value = "unk_exp09_4391865", }, { children = { { - fileId = "4273172", - text = "4273172.m2", - value = "4273172.m2", + fileId = "4391886", + text = "4391886.m2", + value = "4391886.m2", }, }, - text = "unk_exp09_4273172", - value = "unk_exp09_4273172", + text = "unk_exp09_4391886", + value = "unk_exp09_4391886", }, { children = { { - fileId = "4273174", - text = "4273174.m2", - value = "4273174.m2", + fileId = "4391887", + text = "4391887.m2", + value = "4391887.m2", }, }, - text = "unk_exp09_4273174", - value = "unk_exp09_4273174", + text = "unk_exp09_4391887", + value = "unk_exp09_4391887", }, { children = { { - fileId = "4273175", - text = "4273175.m2", - value = "4273175.m2", + fileId = "4397601", + text = "4397601.m2", + value = "4397601.m2", }, }, - text = "unk_exp09_4273175", - value = "unk_exp09_4273175", + text = "unk_exp09_4397601", + value = "unk_exp09_4397601", }, { children = { { - fileId = "4278343", - text = "4278343.m2", - value = "4278343.m2", + fileId = "4397602", + text = "4397602.m2", + value = "4397602.m2", }, }, - text = "unk_exp09_4278343", - value = "unk_exp09_4278343", + text = "unk_exp09_4397602", + value = "unk_exp09_4397602", }, { children = { { - fileId = "4278344", - text = "4278344.m2", - value = "4278344.m2", + fileId = "4397603", + text = "4397603.m2", + value = "4397603.m2", }, }, - text = "unk_exp09_4278344", - value = "unk_exp09_4278344", + text = "unk_exp09_4397603", + value = "unk_exp09_4397603", }, { children = { { - fileId = "4278346", - text = "4278346.m2", - value = "4278346.m2", + fileId = "4397637", + text = "4397637.m2", + value = "4397637.m2", }, }, - text = "unk_exp09_4278346", - value = "unk_exp09_4278346", + text = "unk_exp09_4397637", + value = "unk_exp09_4397637", }, { children = { { - fileId = "4280141", - text = "4280141.m2", - value = "4280141.m2", + fileId = "4416948", + text = "4416948.m2", + value = "4416948.m2", }, }, - text = "unk_exp09_4280141", - value = "unk_exp09_4280141", + text = "unk_exp09_4416948", + value = "unk_exp09_4416948", }, { children = { { - fileId = "4280142", - text = "4280142.m2", - value = "4280142.m2", + fileId = "4417909", + text = "4417909.m2", + value = "4417909.m2", }, }, - text = "unk_exp09_4280142", - value = "unk_exp09_4280142", + text = "unk_exp09_4417909", + value = "unk_exp09_4417909", }, { children = { { - fileId = "4280143", - text = "4280143.m2", - value = "4280143.m2", + fileId = "4418316", + text = "4418316.m2", + value = "4418316.m2", }, }, - text = "unk_exp09_4280143", - value = "unk_exp09_4280143", + text = "unk_exp09_4418316", + value = "unk_exp09_4418316", }, { children = { { - fileId = "4280144", - text = "4280144.m2", - value = "4280144.m2", + fileId = "4418317", + text = "4418317.m2", + value = "4418317.m2", }, }, - text = "unk_exp09_4280144", - value = "unk_exp09_4280144", + text = "unk_exp09_4418317", + value = "unk_exp09_4418317", }, { children = { { - fileId = "4280561", - text = "4280561.m2", - value = "4280561.m2", + fileId = "4419105", + text = "4419105.m2", + value = "4419105.m2", }, }, - text = "unk_exp09_4280561", - value = "unk_exp09_4280561", + text = "unk_exp09_4419105", + value = "unk_exp09_4419105", }, { children = { { - fileId = "4280661", - text = "4280661.m2", - value = "4280661.m2", + fileId = "4419106", + text = "4419106.m2", + value = "4419106.m2", }, }, - text = "unk_exp09_4280661", - value = "unk_exp09_4280661", + text = "unk_exp09_4419106", + value = "unk_exp09_4419106", }, { children = { { - fileId = "4280662", - text = "4280662.m2", - value = "4280662.m2", + fileId = "4419437", + text = "4419437.m2", + value = "4419437.m2", }, }, - text = "unk_exp09_4280662", - value = "unk_exp09_4280662", + text = "unk_exp09_4419437", + value = "unk_exp09_4419437", }, { children = { { - fileId = "4280663", - text = "4280663.m2", - value = "4280663.m2", + fileId = "4419859", + text = "4419859.m2", + value = "4419859.m2", }, }, - text = "unk_exp09_4280663", - value = "unk_exp09_4280663", + text = "unk_exp09_4419859", + value = "unk_exp09_4419859", }, { children = { { - fileId = "4282507", - text = "4282507.m2", - value = "4282507.m2", + fileId = "4420029", + text = "4420029.m2", + value = "4420029.m2", }, }, - text = "unk_exp09_4282507", - value = "unk_exp09_4282507", + text = "unk_exp09_4420029", + value = "unk_exp09_4420029", }, { children = { { - fileId = "4282526", - text = "4282526.m2", - value = "4282526.m2", + fileId = "4420030", + text = "4420030.m2", + value = "4420030.m2", }, }, - text = "unk_exp09_4282526", - value = "unk_exp09_4282526", + text = "unk_exp09_4420030", + value = "unk_exp09_4420030", }, { children = { { - fileId = "4282533", - text = "4282533.m2", - value = "4282533.m2", + fileId = "4420031", + text = "4420031.m2", + value = "4420031.m2", }, }, - text = "unk_exp09_4282533", - value = "unk_exp09_4282533", + text = "unk_exp09_4420031", + value = "unk_exp09_4420031", }, { children = { { - fileId = "4282536", - text = "4282536.m2", - value = "4282536.m2", + fileId = "4420034", + text = "4420034.m2", + value = "4420034.m2", }, }, - text = "unk_exp09_4282536", - value = "unk_exp09_4282536", + text = "unk_exp09_4420034", + value = "unk_exp09_4420034", }, { children = { { - fileId = "4285567", - text = "4285567.m2", - value = "4285567.m2", + fileId = "4420037", + text = "4420037.m2", + value = "4420037.m2", }, }, - text = "unk_exp09_4285567", - value = "unk_exp09_4285567", + text = "unk_exp09_4420037", + value = "unk_exp09_4420037", }, { children = { { - fileId = "4285568", - text = "4285568.m2", - value = "4285568.m2", + fileId = "4420038", + text = "4420038.m2", + value = "4420038.m2", }, }, - text = "unk_exp09_4285568", - value = "unk_exp09_4285568", + text = "unk_exp09_4420038", + value = "unk_exp09_4420038", }, { children = { { - fileId = "4285570", - text = "4285570.m2", - value = "4285570.m2", + fileId = "4420040", + text = "4420040.m2", + value = "4420040.m2", }, }, - text = "unk_exp09_4285570", - value = "unk_exp09_4285570", + text = "unk_exp09_4420040", + value = "unk_exp09_4420040", }, { children = { { - fileId = "4285929", - text = "4285929.m2", - value = "4285929.m2", + fileId = "4420053", + text = "4420053.m2", + value = "4420053.m2", }, }, - text = "unk_exp09_4285929", - value = "unk_exp09_4285929", + text = "unk_exp09_4420053", + value = "unk_exp09_4420053", }, { children = { { - fileId = "4285930", - text = "4285930.m2", - value = "4285930.m2", + fileId = "4420055", + text = "4420055.m2", + value = "4420055.m2", }, }, - text = "unk_exp09_4285930", - value = "unk_exp09_4285930", + text = "unk_exp09_4420055", + value = "unk_exp09_4420055", }, { children = { { - fileId = "4285932", - text = "4285932.m2", - value = "4285932.m2", + fileId = "4420056", + text = "4420056.m2", + value = "4420056.m2", }, }, - text = "unk_exp09_4285932", - value = "unk_exp09_4285932", + text = "unk_exp09_4420056", + value = "unk_exp09_4420056", }, { children = { { - fileId = "4285933", - text = "4285933.m2", - value = "4285933.m2", + fileId = "4420057", + text = "4420057.m2", + value = "4420057.m2", }, }, - text = "unk_exp09_4285933", - value = "unk_exp09_4285933", + text = "unk_exp09_4420057", + value = "unk_exp09_4420057", }, { children = { { - fileId = "4285934", - text = "4285934.m2", - value = "4285934.m2", + fileId = "4420058", + text = "4420058.m2", + value = "4420058.m2", }, - }, - text = "unk_exp09_4285934", - value = "unk_exp09_4285934", + }, + text = "unk_exp09_4420058", + value = "unk_exp09_4420058", }, { children = { { - fileId = "4286989", - text = "4286989.m2", - value = "4286989.m2", + fileId = "4420059", + text = "4420059.m2", + value = "4420059.m2", }, }, - text = "unk_exp09_4286989", - value = "unk_exp09_4286989", + text = "unk_exp09_4420059", + value = "unk_exp09_4420059", }, { children = { { - fileId = "4286990", - text = "4286990.m2", - value = "4286990.m2", + fileId = "4420060", + text = "4420060.m2", + value = "4420060.m2", }, }, - text = "unk_exp09_4286990", - value = "unk_exp09_4286990", + text = "unk_exp09_4420060", + value = "unk_exp09_4420060", }, { children = { { - fileId = "4286991", - text = "4286991.m2", - value = "4286991.m2", + fileId = "4420062", + text = "4420062.m2", + value = "4420062.m2", }, }, - text = "unk_exp09_4286991", - value = "unk_exp09_4286991", + text = "unk_exp09_4420062", + value = "unk_exp09_4420062", }, { children = { { - fileId = "4286993", - text = "4286993.m2", - value = "4286993.m2", + fileId = "4420607", + text = "4420607.m2", + value = "4420607.m2", }, }, - text = "unk_exp09_4286993", - value = "unk_exp09_4286993", + text = "unk_exp09_4420607", + value = "unk_exp09_4420607", }, { children = { { - fileId = "4286997", - text = "4286997.m2", - value = "4286997.m2", + fileId = "4421494", + text = "4421494.m2", + value = "4421494.m2", }, }, - text = "unk_exp09_4286997", - value = "unk_exp09_4286997", + text = "unk_exp09_4421494", + value = "unk_exp09_4421494", }, { children = { { - fileId = "4288065", - text = "4288065.m2", - value = "4288065.m2", + fileId = "4421496", + text = "4421496.m2", + value = "4421496.m2", }, }, - text = "unk_exp09_4288065", - value = "unk_exp09_4288065", + text = "unk_exp09_4421496", + value = "unk_exp09_4421496", }, { children = { { - fileId = "4288070", - text = "4288070.m2", - value = "4288070.m2", + fileId = "4421497", + text = "4421497.m2", + value = "4421497.m2", }, }, - text = "unk_exp09_4288070", - value = "unk_exp09_4288070", + text = "unk_exp09_4421497", + value = "unk_exp09_4421497", }, { children = { { - fileId = "4288966", - text = "4288966.m2", - value = "4288966.m2", + fileId = "4421498", + text = "4421498.m2", + value = "4421498.m2", }, }, - text = "unk_exp09_4288966", - value = "unk_exp09_4288966", + text = "unk_exp09_4421498", + value = "unk_exp09_4421498", }, { children = { { - fileId = "4288967", - text = "4288967.m2", - value = "4288967.m2", + fileId = "4421499", + text = "4421499.m2", + value = "4421499.m2", }, }, - text = "unk_exp09_4288967", - value = "unk_exp09_4288967", + text = "unk_exp09_4421499", + value = "unk_exp09_4421499", }, { children = { { - fileId = "4289131", - text = "4289131.m2", - value = "4289131.m2", + fileId = "4421500", + text = "4421500.m2", + value = "4421500.m2", }, }, - text = "unk_exp09_4289131", - value = "unk_exp09_4289131", + text = "unk_exp09_4421500", + value = "unk_exp09_4421500", }, { children = { { - fileId = "4290179", - text = "4290179.m2", - value = "4290179.m2", + fileId = "4421501", + text = "4421501.m2", + value = "4421501.m2", }, }, - text = "unk_exp09_4290179", - value = "unk_exp09_4290179", + text = "unk_exp09_4421501", + value = "unk_exp09_4421501", }, { children = { { - fileId = "4290182", - text = "4290182.m2", - value = "4290182.m2", + fileId = "4421503", + text = "4421503.m2", + value = "4421503.m2", }, }, - text = "unk_exp09_4290182", - value = "unk_exp09_4290182", + text = "unk_exp09_4421503", + value = "unk_exp09_4421503", }, { children = { { - fileId = "4291401", - text = "4291401.m2", - value = "4291401.m2", + fileId = "4421504", + text = "4421504.m2", + value = "4421504.m2", }, }, - text = "unk_exp09_4291401", - value = "unk_exp09_4291401", + text = "unk_exp09_4421504", + value = "unk_exp09_4421504", }, { children = { { - fileId = "4291403", - text = "4291403.m2", - value = "4291403.m2", + fileId = "4421505", + text = "4421505.m2", + value = "4421505.m2", }, }, - text = "unk_exp09_4291403", - value = "unk_exp09_4291403", + text = "unk_exp09_4421505", + value = "unk_exp09_4421505", }, { children = { { - fileId = "4291404", - text = "4291404.m2", - value = "4291404.m2", + fileId = "4421506", + text = "4421506.m2", + value = "4421506.m2", }, }, - text = "unk_exp09_4291404", - value = "unk_exp09_4291404", + text = "unk_exp09_4421506", + value = "unk_exp09_4421506", }, { children = { { - fileId = "4291405", - text = "4291405.m2", - value = "4291405.m2", + fileId = "4421507", + text = "4421507.m2", + value = "4421507.m2", }, }, - text = "unk_exp09_4291405", - value = "unk_exp09_4291405", + text = "unk_exp09_4421507", + value = "unk_exp09_4421507", }, { children = { { - fileId = "4291406", - text = "4291406.m2", - value = "4291406.m2", + fileId = "4421510", + text = "4421510.m2", + value = "4421510.m2", }, }, - text = "unk_exp09_4291406", - value = "unk_exp09_4291406", + text = "unk_exp09_4421510", + value = "unk_exp09_4421510", }, { children = { { - fileId = "4293187", - text = "4293187.m2", - value = "4293187.m2", + fileId = "4421722", + text = "4421722.m2", + value = "4421722.m2", }, }, - text = "unk_exp09_4293187", - value = "unk_exp09_4293187", + text = "unk_exp09_4421722", + value = "unk_exp09_4421722", }, { children = { { - fileId = "4293188", - text = "4293188.m2", - value = "4293188.m2", + fileId = "4422957", + text = "4422957.m2", + value = "4422957.m2", }, }, - text = "unk_exp09_4293188", - value = "unk_exp09_4293188", + text = "unk_exp09_4422957", + value = "unk_exp09_4422957", }, { children = { { - fileId = "4293189", - text = "4293189.m2", - value = "4293189.m2", + fileId = "4422967", + text = "4422967.m2", + value = "4422967.m2", }, }, - text = "unk_exp09_4293189", - value = "unk_exp09_4293189", + text = "unk_exp09_4422967", + value = "unk_exp09_4422967", }, { children = { { - fileId = "4294722", - text = "4294722.m2", - value = "4294722.m2", + fileId = "4422969", + text = "4422969.m2", + value = "4422969.m2", }, }, - text = "unk_exp09_4294722", - value = "unk_exp09_4294722", + text = "unk_exp09_4422969", + value = "unk_exp09_4422969", }, { children = { { - fileId = "4298411", - text = "4298411.m2", - value = "4298411.m2", + fileId = "4423557", + text = "4423557.m2", + value = "4423557.m2", }, }, - text = "unk_exp09_4298411", - value = "unk_exp09_4298411", + text = "unk_exp09_4423557", + value = "unk_exp09_4423557", }, { children = { { - fileId = "4298419", - text = "4298419.m2", - value = "4298419.m2", + fileId = "4423558", + text = "4423558.m2", + value = "4423558.m2", }, }, - text = "unk_exp09_4298419", - value = "unk_exp09_4298419", + text = "unk_exp09_4423558", + value = "unk_exp09_4423558", }, { children = { { - fileId = "4298420", - text = "4298420.m2", - value = "4298420.m2", + fileId = "4423560", + text = "4423560.m2", + value = "4423560.m2", }, }, - text = "unk_exp09_4298420", - value = "unk_exp09_4298420", + text = "unk_exp09_4423560", + value = "unk_exp09_4423560", }, { children = { { - fileId = "4298457", - text = "4298457.m2", - value = "4298457.m2", + fileId = "4452494", + text = "4452494.m2", + value = "4452494.m2", }, }, - text = "unk_exp09_4298457", - value = "unk_exp09_4298457", + text = "unk_exp09_4452494", + value = "unk_exp09_4452494", }, { children = { { - fileId = "4298463", - text = "4298463.m2", - value = "4298463.m2", + fileId = "4452495", + text = "4452495.m2", + value = "4452495.m2", }, }, - text = "unk_exp09_4298463", - value = "unk_exp09_4298463", + text = "unk_exp09_4452495", + value = "unk_exp09_4452495", }, { children = { { - fileId = "4298484", - text = "4298484.m2", - value = "4298484.m2", + fileId = "4452496", + text = "4452496.m2", + value = "4452496.m2", }, }, - text = "unk_exp09_4298484", - value = "unk_exp09_4298484", + text = "unk_exp09_4452496", + value = "unk_exp09_4452496", }, { children = { { - fileId = "4298485", - text = "4298485.m2", - value = "4298485.m2", + fileId = "4478729", + text = "4478729.m2", + value = "4478729.m2", }, }, - text = "unk_exp09_4298485", - value = "unk_exp09_4298485", + text = "unk_exp09_4478729", + value = "unk_exp09_4478729", }, { children = { { - fileId = "4298486", - text = "4298486.m2", - value = "4298486.m2", + fileId = "4478906", + text = "4478906.m2", + value = "4478906.m2", }, }, - text = "unk_exp09_4298486", - value = "unk_exp09_4298486", + text = "unk_exp09_4478906", + value = "unk_exp09_4478906", }, { children = { { - fileId = "4298487", - text = "4298487.m2", - value = "4298487.m2", + fileId = "4479330", + text = "4479330.m2", + value = "4479330.m2", }, }, - text = "unk_exp09_4298487", - value = "unk_exp09_4298487", + text = "unk_exp09_4479330", + value = "unk_exp09_4479330", }, { children = { { - fileId = "4298488", - text = "4298488.m2", - value = "4298488.m2", + fileId = "4479331", + text = "4479331.m2", + value = "4479331.m2", }, }, - text = "unk_exp09_4298488", - value = "unk_exp09_4298488", + text = "unk_exp09_4479331", + value = "unk_exp09_4479331", }, { children = { { - fileId = "4298489", - text = "4298489.m2", - value = "4298489.m2", + fileId = "4484248", + text = "4484248.m2", + value = "4484248.m2", }, }, - text = "unk_exp09_4298489", - value = "unk_exp09_4298489", + text = "unk_exp09_4484248", + value = "unk_exp09_4484248", }, { children = { { - fileId = "4317323", - text = "4317323.m2", - value = "4317323.m2", + fileId = "4484249", + text = "4484249.m2", + value = "4484249.m2", }, }, - text = "unk_exp09_4317323", - value = "unk_exp09_4317323", + text = "unk_exp09_4484249", + value = "unk_exp09_4484249", }, { children = { { - fileId = "4317324", - text = "4317324.m2", - value = "4317324.m2", + fileId = "4484250", + text = "4484250.m2", + value = "4484250.m2", }, }, - text = "unk_exp09_4317324", - value = "unk_exp09_4317324", + text = "unk_exp09_4484250", + value = "unk_exp09_4484250", }, { children = { { - fileId = "4317325", - text = "4317325.m2", - value = "4317325.m2", + fileId = "4484257", + text = "4484257.m2", + value = "4484257.m2", }, }, - text = "unk_exp09_4317325", - value = "unk_exp09_4317325", + text = "unk_exp09_4484257", + value = "unk_exp09_4484257", }, { children = { { - fileId = "4317326", - text = "4317326.m2", - value = "4317326.m2", + fileId = "4484368", + text = "4484368.m2", + value = "4484368.m2", }, }, - text = "unk_exp09_4317326", - value = "unk_exp09_4317326", + text = "unk_exp09_4484368", + value = "unk_exp09_4484368", }, { children = { { - fileId = "4317327", - text = "4317327.m2", - value = "4317327.m2", + fileId = "4484370", + text = "4484370.m2", + value = "4484370.m2", }, }, - text = "unk_exp09_4317327", - value = "unk_exp09_4317327", + text = "unk_exp09_4484370", + value = "unk_exp09_4484370", }, { children = { { - fileId = "4317328", - text = "4317328.m2", - value = "4317328.m2", + fileId = "4484374", + text = "4484374.m2", + value = "4484374.m2", }, }, - text = "unk_exp09_4317328", - value = "unk_exp09_4317328", + text = "unk_exp09_4484374", + value = "unk_exp09_4484374", }, { children = { { - fileId = "4320288", - text = "4320288.m2", - value = "4320288.m2", + fileId = "4485590", + text = "4485590.m2", + value = "4485590.m2", }, }, - text = "unk_exp09_4320288", - value = "unk_exp09_4320288", + text = "unk_exp09_4485590", + value = "unk_exp09_4485590", }, { children = { { - fileId = "4320289", - text = "4320289.m2", - value = "4320289.m2", + fileId = "4489317", + text = "4489317.m2", + value = "4489317.m2", }, }, - text = "unk_exp09_4320289", - value = "unk_exp09_4320289", + text = "unk_exp09_4489317", + value = "unk_exp09_4489317", }, { children = { { - fileId = "4320290", - text = "4320290.m2", - value = "4320290.m2", + fileId = "4492238", + text = "4492238.m2", + value = "4492238.m2", }, }, - text = "unk_exp09_4320290", - value = "unk_exp09_4320290", + text = "unk_exp09_4492238", + value = "unk_exp09_4492238", }, { children = { { - fileId = "4320291", - text = "4320291.m2", - value = "4320291.m2", + fileId = "4492576", + text = "4492576.m2", + value = "4492576.m2", }, }, - text = "unk_exp09_4320291", - value = "unk_exp09_4320291", + text = "unk_exp09_4492576", + value = "unk_exp09_4492576", }, { children = { { - fileId = "4320292", - text = "4320292.m2", - value = "4320292.m2", + fileId = "4492577", + text = "4492577.m2", + value = "4492577.m2", }, }, - text = "unk_exp09_4320292", - value = "unk_exp09_4320292", + text = "unk_exp09_4492577", + value = "unk_exp09_4492577", }, { children = { { - fileId = "4323296", - text = "4323296.m2", - value = "4323296.m2", + fileId = "4492654", + text = "4492654.m2", + value = "4492654.m2", }, }, - text = "unk_exp09_4323296", - value = "unk_exp09_4323296", + text = "unk_exp09_4492654", + value = "unk_exp09_4492654", }, { children = { { - fileId = "4324625", - text = "4324625.m2", - value = "4324625.m2", + fileId = "4492655", + text = "4492655.m2", + value = "4492655.m2", }, }, - text = "unk_exp09_4324625", - value = "unk_exp09_4324625", + text = "unk_exp09_4492655", + value = "unk_exp09_4492655", }, { children = { { - fileId = "4324807", - text = "4324807.m2", - value = "4324807.m2", + fileId = "4492656", + text = "4492656.m2", + value = "4492656.m2", }, }, - text = "unk_exp09_4324807", - value = "unk_exp09_4324807", + text = "unk_exp09_4492656", + value = "unk_exp09_4492656", }, { children = { { - fileId = "4325223", - text = "4325223.m2", - value = "4325223.m2", + fileId = "4492657", + text = "4492657.m2", + value = "4492657.m2", }, }, - text = "unk_exp09_4325223", - value = "unk_exp09_4325223", + text = "unk_exp09_4492657", + value = "unk_exp09_4492657", }, { children = { { - fileId = "4326922", - text = "4326922.m2", - value = "4326922.m2", + fileId = "4492660", + text = "4492660.m2", + value = "4492660.m2", }, }, - text = "unk_exp09_4326922", - value = "unk_exp09_4326922", + text = "unk_exp09_4492660", + value = "unk_exp09_4492660", }, { children = { { - fileId = "4327484", - text = "4327484.m2", - value = "4327484.m2", + fileId = "4493181", + text = "4493181.m2", + value = "4493181.m2", }, }, - text = "unk_exp09_4327484", - value = "unk_exp09_4327484", + text = "unk_exp09_4493181", + value = "unk_exp09_4493181", }, { children = { { - fileId = "4327485", - text = "4327485.m2", - value = "4327485.m2", + fileId = "4493182", + text = "4493182.m2", + value = "4493182.m2", }, }, - text = "unk_exp09_4327485", - value = "unk_exp09_4327485", + text = "unk_exp09_4493182", + value = "unk_exp09_4493182", }, { children = { { - fileId = "4327486", - text = "4327486.m2", - value = "4327486.m2", + fileId = "4493183", + text = "4493183.m2", + value = "4493183.m2", }, - }, - text = "unk_exp09_4327486", - value = "unk_exp09_4327486", + }, + text = "unk_exp09_4493183", + value = "unk_exp09_4493183", }, { children = { { - fileId = "4328611", - text = "4328611.m2", - value = "4328611.m2", + fileId = "4493184", + text = "4493184.m2", + value = "4493184.m2", }, }, - text = "unk_exp09_4328611", - value = "unk_exp09_4328611", + text = "unk_exp09_4493184", + value = "unk_exp09_4493184", }, { children = { { - fileId = "4328613", - text = "4328613.m2", - value = "4328613.m2", + fileId = "4493185", + text = "4493185.m2", + value = "4493185.m2", }, }, - text = "unk_exp09_4328613", - value = "unk_exp09_4328613", + text = "unk_exp09_4493185", + value = "unk_exp09_4493185", }, { children = { { - fileId = "4331737", - text = "4331737.m2", - value = "4331737.m2", + fileId = "4493212", + text = "4493212.m2", + value = "4493212.m2", }, }, - text = "unk_exp09_4331737", - value = "unk_exp09_4331737", + text = "unk_exp09_4493212", + value = "unk_exp09_4493212", }, { children = { { - fileId = "4331738", - text = "4331738.m2", - value = "4331738.m2", + fileId = "4494521", + text = "4494521.m2", + value = "4494521.m2", }, }, - text = "unk_exp09_4331738", - value = "unk_exp09_4331738", + text = "unk_exp09_4494521", + value = "unk_exp09_4494521", }, { children = { { - fileId = "4335665", - text = "4335665.m2", - value = "4335665.m2", + fileId = "4495229", + text = "4495229.m2", + value = "4495229.m2", }, }, - text = "unk_exp09_4335665", - value = "unk_exp09_4335665", + text = "unk_exp09_4495229", + value = "unk_exp09_4495229", }, { children = { { - fileId = "4335666", - text = "4335666.m2", - value = "4335666.m2", + fileId = "4495234", + text = "4495234.m2", + value = "4495234.m2", }, }, - text = "unk_exp09_4335666", - value = "unk_exp09_4335666", + text = "unk_exp09_4495234", + value = "unk_exp09_4495234", }, { children = { { - fileId = "4335919", - text = "4335919.m2", - value = "4335919.m2", + fileId = "4495237", + text = "4495237.m2", + value = "4495237.m2", }, }, - text = "unk_exp09_4335919", - value = "unk_exp09_4335919", + text = "unk_exp09_4495237", + value = "unk_exp09_4495237", }, { children = { { - fileId = "4335920", - text = "4335920.m2", - value = "4335920.m2", + fileId = "4495240", + text = "4495240.m2", + value = "4495240.m2", }, }, - text = "unk_exp09_4335920", - value = "unk_exp09_4335920", + text = "unk_exp09_4495240", + value = "unk_exp09_4495240", }, { children = { { - fileId = "4336202", - text = "4336202.m2", - value = "4336202.m2", + fileId = "4495243", + text = "4495243.m2", + value = "4495243.m2", }, }, - text = "unk_exp09_4336202", - value = "unk_exp09_4336202", + text = "unk_exp09_4495243", + value = "unk_exp09_4495243", }, { children = { { - fileId = "4362870", - text = "4362870.m2", - value = "4362870.m2", + fileId = "4495314", + text = "4495314.m2", + value = "4495314.m2", }, }, - text = "unk_exp09_4362870", - value = "unk_exp09_4362870", + text = "unk_exp09_4495314", + value = "unk_exp09_4495314", }, { children = { { - fileId = "4370975", - text = "4370975.m2", - value = "4370975.m2", + fileId = "4495939", + text = "4495939.m2", + value = "4495939.m2", }, }, - text = "unk_exp09_4370975", - value = "unk_exp09_4370975", + text = "unk_exp09_4495939", + value = "unk_exp09_4495939", }, { children = { { - fileId = "4373474", - text = "4373474.m2", - value = "4373474.m2", + fileId = "4495940", + text = "4495940.m2", + value = "4495940.m2", }, }, - text = "unk_exp09_4373474", - value = "unk_exp09_4373474", + text = "unk_exp09_4495940", + value = "unk_exp09_4495940", }, { children = { { - fileId = "4375661", - text = "4375661.m2", - value = "4375661.m2", + fileId = "4495941", + text = "4495941.m2", + value = "4495941.m2", }, }, - text = "unk_exp09_4375661", - value = "unk_exp09_4375661", + text = "unk_exp09_4495941", + value = "unk_exp09_4495941", }, { children = { { - fileId = "4375662", - text = "4375662.m2", - value = "4375662.m2", + fileId = "4495942", + text = "4495942.m2", + value = "4495942.m2", }, }, - text = "unk_exp09_4375662", - value = "unk_exp09_4375662", + text = "unk_exp09_4495942", + value = "unk_exp09_4495942", }, { children = { { - fileId = "4375665", - text = "4375665.m2", - value = "4375665.m2", + fileId = "4496145", + text = "4496145.m2", + value = "4496145.m2", }, }, - text = "unk_exp09_4375665", - value = "unk_exp09_4375665", + text = "unk_exp09_4496145", + value = "unk_exp09_4496145", }, { children = { { - fileId = "4375669", - text = "4375669.m2", - value = "4375669.m2", + fileId = "4496175", + text = "4496175.m2", + value = "4496175.m2", }, }, - text = "unk_exp09_4375669", - value = "unk_exp09_4375669", + text = "unk_exp09_4496175", + value = "unk_exp09_4496175", }, { children = { { - fileId = "4381286", - text = "4381286.m2", - value = "4381286.m2", + fileId = "4496461", + text = "4496461.m2", + value = "4496461.m2", }, }, - text = "unk_exp09_4381286", - value = "unk_exp09_4381286", + text = "unk_exp09_4496461", + value = "unk_exp09_4496461", }, { children = { { - fileId = "4381288", - text = "4381288.m2", - value = "4381288.m2", + fileId = "4497524", + text = "4497524.m2", + value = "4497524.m2", }, }, - text = "unk_exp09_4381288", - value = "unk_exp09_4381288", + text = "unk_exp09_4497524", + value = "unk_exp09_4497524", }, { children = { { - fileId = "4381361", - text = "4381361.m2", - value = "4381361.m2", + fileId = "4497550", + text = "4497550.m2", + value = "4497550.m2", }, }, - text = "unk_exp09_4381361", - value = "unk_exp09_4381361", + text = "unk_exp09_4497550", + value = "unk_exp09_4497550", }, { children = { { - fileId = "4381904", - text = "4381904.m2", - value = "4381904.m2", + fileId = "4498770", + text = "4498770.m2", + value = "4498770.m2", }, }, - text = "unk_exp09_4381904", - value = "unk_exp09_4381904", + text = "unk_exp09_4498770", + value = "unk_exp09_4498770", }, { children = { { - fileId = "4381905", - text = "4381905.m2", - value = "4381905.m2", + fileId = "4499245", + text = "4499245.m2", + value = "4499245.m2", }, }, - text = "unk_exp09_4381905", - value = "unk_exp09_4381905", + text = "unk_exp09_4499245", + value = "unk_exp09_4499245", }, { children = { { - fileId = "4382547", - text = "4382547.m2", - value = "4382547.m2", + fileId = "4499453", + text = "4499453.m2", + value = "4499453.m2", }, }, - text = "unk_exp09_4382547", - value = "unk_exp09_4382547", + text = "unk_exp09_4499453", + value = "unk_exp09_4499453", }, { children = { { - fileId = "4382549", - text = "4382549.m2", - value = "4382549.m2", + fileId = "4499454", + text = "4499454.m2", + value = "4499454.m2", }, }, - text = "unk_exp09_4382549", - value = "unk_exp09_4382549", + text = "unk_exp09_4499454", + value = "unk_exp09_4499454", }, { children = { { - fileId = "4382550", - text = "4382550.m2", - value = "4382550.m2", + fileId = "4499471", + text = "4499471.m2", + value = "4499471.m2", }, }, - text = "unk_exp09_4382550", - value = "unk_exp09_4382550", + text = "unk_exp09_4499471", + value = "unk_exp09_4499471", }, { children = { { - fileId = "4382551", - text = "4382551.m2", - value = "4382551.m2", + fileId = "4499472", + text = "4499472.m2", + value = "4499472.m2", }, }, - text = "unk_exp09_4382551", - value = "unk_exp09_4382551", + text = "unk_exp09_4499472", + value = "unk_exp09_4499472", }, { children = { { - fileId = "4382553", - text = "4382553.m2", - value = "4382553.m2", + fileId = "4499473", + text = "4499473.m2", + value = "4499473.m2", }, }, - text = "unk_exp09_4382553", - value = "unk_exp09_4382553", + text = "unk_exp09_4499473", + value = "unk_exp09_4499473", }, { children = { { - fileId = "4389983", - text = "4389983.m2", - value = "4389983.m2", + fileId = "4499474", + text = "4499474.m2", + value = "4499474.m2", }, }, - text = "unk_exp09_4389983", - value = "unk_exp09_4389983", + text = "unk_exp09_4499474", + value = "unk_exp09_4499474", }, { children = { { - fileId = "4390024", - text = "4390024.m2", - value = "4390024.m2", + fileId = "4500324", + text = "4500324.m2", + value = "4500324.m2", }, }, - text = "unk_exp09_4390024", - value = "unk_exp09_4390024", + text = "unk_exp09_4500324", + value = "unk_exp09_4500324", }, { children = { { - fileId = "4390027", - text = "4390027.m2", - value = "4390027.m2", + fileId = "4500573", + text = "4500573.m2", + value = "4500573.m2", }, }, - text = "unk_exp09_4390027", - value = "unk_exp09_4390027", + text = "unk_exp09_4500573", + value = "unk_exp09_4500573", }, { children = { { - fileId = "4390031", - text = "4390031.m2", - value = "4390031.m2", + fileId = "4500889", + text = "4500889.m2", + value = "4500889.m2", }, }, - text = "unk_exp09_4390031", - value = "unk_exp09_4390031", + text = "unk_exp09_4500889", + value = "unk_exp09_4500889", }, { children = { { - fileId = "4390032", - text = "4390032.m2", - value = "4390032.m2", + fileId = "4500890", + text = "4500890.m2", + value = "4500890.m2", }, }, - text = "unk_exp09_4390032", - value = "unk_exp09_4390032", + text = "unk_exp09_4500890", + value = "unk_exp09_4500890", }, { children = { { - fileId = "4390908", - text = "4390908.m2", - value = "4390908.m2", + fileId = "4504450", + text = "4504450.m2", + value = "4504450.m2", }, }, - text = "unk_exp09_4390908", - value = "unk_exp09_4390908", + text = "unk_exp09_4504450", + value = "unk_exp09_4504450", }, { children = { { - fileId = "4391199", - text = "4391199.m2", - value = "4391199.m2", + fileId = "4504453", + text = "4504453.m2", + value = "4504453.m2", }, }, - text = "unk_exp09_4391199", - value = "unk_exp09_4391199", + text = "unk_exp09_4504453", + value = "unk_exp09_4504453", }, { children = { { - fileId = "4391480", - text = "4391480.m2", - value = "4391480.m2", + fileId = "4504454", + text = "4504454.m2", + value = "4504454.m2", }, }, - text = "unk_exp09_4391480", - value = "unk_exp09_4391480", + text = "unk_exp09_4504454", + value = "unk_exp09_4504454", }, { children = { { - fileId = "4391504", - text = "4391504.m2", - value = "4391504.m2", + fileId = "4505206", + text = "4505206.m2", + value = "4505206.m2", }, }, - text = "unk_exp09_4391504", - value = "unk_exp09_4391504", + text = "unk_exp09_4505206", + value = "unk_exp09_4505206", }, { children = { { - fileId = "4391505", - text = "4391505.m2", - value = "4391505.m2", + fileId = "4505207", + text = "4505207.m2", + value = "4505207.m2", }, }, - text = "unk_exp09_4391505", - value = "unk_exp09_4391505", + text = "unk_exp09_4505207", + value = "unk_exp09_4505207", }, { children = { { - fileId = "4391506", - text = "4391506.m2", - value = "4391506.m2", + fileId = "4505284", + text = "4505284.m2", + value = "4505284.m2", }, }, - text = "unk_exp09_4391506", - value = "unk_exp09_4391506", + text = "unk_exp09_4505284", + value = "unk_exp09_4505284", }, { children = { { - fileId = "4391509", - text = "4391509.m2", - value = "4391509.m2", + fileId = "4505287", + text = "4505287.m2", + value = "4505287.m2", }, }, - text = "unk_exp09_4391509", - value = "unk_exp09_4391509", + text = "unk_exp09_4505287", + value = "unk_exp09_4505287", }, { children = { { - fileId = "4391619", - text = "4391619.m2", - value = "4391619.m2", + fileId = "4505288", + text = "4505288.m2", + value = "4505288.m2", }, }, - text = "unk_exp09_4391619", - value = "unk_exp09_4391619", + text = "unk_exp09_4505288", + value = "unk_exp09_4505288", }, { children = { { - fileId = "4391865", - text = "4391865.m2", - value = "4391865.m2", + fileId = "4505294", + text = "4505294.m2", + value = "4505294.m2", }, }, - text = "unk_exp09_4391865", - value = "unk_exp09_4391865", + text = "unk_exp09_4505294", + value = "unk_exp09_4505294", }, { children = { { - fileId = "4391886", - text = "4391886.m2", - value = "4391886.m2", + fileId = "4505295", + text = "4505295.m2", + value = "4505295.m2", }, }, - text = "unk_exp09_4391886", - value = "unk_exp09_4391886", + text = "unk_exp09_4505295", + value = "unk_exp09_4505295", }, { children = { { - fileId = "4391887", - text = "4391887.m2", - value = "4391887.m2", + fileId = "4505432", + text = "4505432.m2", + value = "4505432.m2", }, }, - text = "unk_exp09_4391887", - value = "unk_exp09_4391887", + text = "unk_exp09_4505432", + value = "unk_exp09_4505432", }, { children = { { - fileId = "4397601", - text = "4397601.m2", - value = "4397601.m2", + fileId = "4505526", + text = "4505526.m2", + value = "4505526.m2", }, }, - text = "unk_exp09_4397601", - value = "unk_exp09_4397601", + text = "unk_exp09_4505526", + value = "unk_exp09_4505526", }, { children = { { - fileId = "4397602", - text = "4397602.m2", - value = "4397602.m2", + fileId = "4505527", + text = "4505527.m2", + value = "4505527.m2", }, }, - text = "unk_exp09_4397602", - value = "unk_exp09_4397602", + text = "unk_exp09_4505527", + value = "unk_exp09_4505527", }, { children = { { - fileId = "4397603", - text = "4397603.m2", - value = "4397603.m2", + fileId = "4505547", + text = "4505547.m2", + value = "4505547.m2", }, }, - text = "unk_exp09_4397603", - value = "unk_exp09_4397603", + text = "unk_exp09_4505547", + value = "unk_exp09_4505547", }, { children = { { - fileId = "4416948", - text = "4416948.m2", - value = "4416948.m2", + fileId = "4505548", + text = "4505548.m2", + value = "4505548.m2", }, }, - text = "unk_exp09_4416948", - value = "unk_exp09_4416948", + text = "unk_exp09_4505548", + value = "unk_exp09_4505548", }, { children = { { - fileId = "4418316", - text = "4418316.m2", - value = "4418316.m2", + fileId = "4505550", + text = "4505550.m2", + value = "4505550.m2", }, }, - text = "unk_exp09_4418316", - value = "unk_exp09_4418316", + text = "unk_exp09_4505550", + value = "unk_exp09_4505550", }, { children = { { - fileId = "4418317", - text = "4418317.m2", - value = "4418317.m2", + fileId = "4505976", + text = "4505976.m2", + value = "4505976.m2", }, }, - text = "unk_exp09_4418317", - value = "unk_exp09_4418317", + text = "unk_exp09_4505976", + value = "unk_exp09_4505976", }, { children = { { - fileId = "4419105", - text = "4419105.m2", - value = "4419105.m2", + fileId = "4505977", + text = "4505977.m2", + value = "4505977.m2", }, }, - text = "unk_exp09_4419105", - value = "unk_exp09_4419105", + text = "unk_exp09_4505977", + value = "unk_exp09_4505977", }, { children = { { - fileId = "4419106", - text = "4419106.m2", - value = "4419106.m2", + fileId = "4506442", + text = "4506442.m2", + value = "4506442.m2", }, }, - text = "unk_exp09_4419106", - value = "unk_exp09_4419106", + text = "unk_exp09_4506442", + value = "unk_exp09_4506442", }, { children = { { - fileId = "4419437", - text = "4419437.m2", - value = "4419437.m2", + fileId = "4506579", + text = "4506579.m2", + value = "4506579.m2", }, - }, - text = "unk_exp09_4419437", - value = "unk_exp09_4419437", + }, + text = "unk_exp09_4506579", + value = "unk_exp09_4506579", }, { children = { { - fileId = "4419859", - text = "4419859.m2", - value = "4419859.m2", + fileId = "4507597", + text = "4507597.m2", + value = "4507597.m2", }, }, - text = "unk_exp09_4419859", - value = "unk_exp09_4419859", + text = "unk_exp09_4507597", + value = "unk_exp09_4507597", }, { children = { { - fileId = "4420029", - text = "4420029.m2", - value = "4420029.m2", + fileId = "4507620", + text = "4507620.m2", + value = "4507620.m2", }, }, - text = "unk_exp09_4420029", - value = "unk_exp09_4420029", + text = "unk_exp09_4507620", + value = "unk_exp09_4507620", }, { children = { { - fileId = "4420030", - text = "4420030.m2", - value = "4420030.m2", + fileId = "4507820", + text = "4507820.m2", + value = "4507820.m2", }, }, - text = "unk_exp09_4420030", - value = "unk_exp09_4420030", + text = "unk_exp09_4507820", + value = "unk_exp09_4507820", }, { children = { { - fileId = "4420031", - text = "4420031.m2", - value = "4420031.m2", + fileId = "4507822", + text = "4507822.m2", + value = "4507822.m2", }, }, - text = "unk_exp09_4420031", - value = "unk_exp09_4420031", + text = "unk_exp09_4507822", + value = "unk_exp09_4507822", }, { children = { { - fileId = "4420034", - text = "4420034.m2", - value = "4420034.m2", + fileId = "4507823", + text = "4507823.m2", + value = "4507823.m2", }, }, - text = "unk_exp09_4420034", - value = "unk_exp09_4420034", + text = "unk_exp09_4507823", + value = "unk_exp09_4507823", }, { children = { { - fileId = "4420037", - text = "4420037.m2", - value = "4420037.m2", + fileId = "4507824", + text = "4507824.m2", + value = "4507824.m2", }, }, - text = "unk_exp09_4420037", - value = "unk_exp09_4420037", + text = "unk_exp09_4507824", + value = "unk_exp09_4507824", }, { children = { { - fileId = "4420038", - text = "4420038.m2", - value = "4420038.m2", + fileId = "4507825", + text = "4507825.m2", + value = "4507825.m2", }, }, - text = "unk_exp09_4420038", - value = "unk_exp09_4420038", + text = "unk_exp09_4507825", + value = "unk_exp09_4507825", }, { children = { { - fileId = "4420040", - text = "4420040.m2", - value = "4420040.m2", + fileId = "4507826", + text = "4507826.m2", + value = "4507826.m2", }, }, - text = "unk_exp09_4420040", - value = "unk_exp09_4420040", + text = "unk_exp09_4507826", + value = "unk_exp09_4507826", }, { children = { { - fileId = "4420053", - text = "4420053.m2", - value = "4420053.m2", + fileId = "4507827", + text = "4507827.m2", + value = "4507827.m2", }, }, - text = "unk_exp09_4420053", - value = "unk_exp09_4420053", + text = "unk_exp09_4507827", + value = "unk_exp09_4507827", }, { children = { { - fileId = "4420055", - text = "4420055.m2", - value = "4420055.m2", + fileId = "4507828", + text = "4507828.m2", + value = "4507828.m2", }, }, - text = "unk_exp09_4420055", - value = "unk_exp09_4420055", + text = "unk_exp09_4507828", + value = "unk_exp09_4507828", }, { children = { { - fileId = "4420056", - text = "4420056.m2", - value = "4420056.m2", + fileId = "4507829", + text = "4507829.m2", + value = "4507829.m2", }, }, - text = "unk_exp09_4420056", - value = "unk_exp09_4420056", + text = "unk_exp09_4507829", + value = "unk_exp09_4507829", }, { children = { { - fileId = "4420057", - text = "4420057.m2", - value = "4420057.m2", + fileId = "4507830", + text = "4507830.m2", + value = "4507830.m2", }, }, - text = "unk_exp09_4420057", - value = "unk_exp09_4420057", + text = "unk_exp09_4507830", + value = "unk_exp09_4507830", }, { children = { { - fileId = "4420058", - text = "4420058.m2", - value = "4420058.m2", + fileId = "4507831", + text = "4507831.m2", + value = "4507831.m2", }, }, - text = "unk_exp09_4420058", - value = "unk_exp09_4420058", + text = "unk_exp09_4507831", + value = "unk_exp09_4507831", }, { children = { { - fileId = "4420059", - text = "4420059.m2", - value = "4420059.m2", + fileId = "4508494", + text = "4508494.m2", + value = "4508494.m2", }, }, - text = "unk_exp09_4420059", - value = "unk_exp09_4420059", + text = "unk_exp09_4508494", + value = "unk_exp09_4508494", }, { children = { { - fileId = "4420060", - text = "4420060.m2", - value = "4420060.m2", + fileId = "4508496", + text = "4508496.m2", + value = "4508496.m2", }, }, - text = "unk_exp09_4420060", - value = "unk_exp09_4420060", + text = "unk_exp09_4508496", + value = "unk_exp09_4508496", }, { children = { { - fileId = "4420062", - text = "4420062.m2", - value = "4420062.m2", + fileId = "4508497", + text = "4508497.m2", + value = "4508497.m2", }, }, - text = "unk_exp09_4420062", - value = "unk_exp09_4420062", + text = "unk_exp09_4508497", + value = "unk_exp09_4508497", }, { children = { { - fileId = "4420607", - text = "4420607.m2", - value = "4420607.m2", + fileId = "4508498", + text = "4508498.m2", + value = "4508498.m2", }, }, - text = "unk_exp09_4420607", - value = "unk_exp09_4420607", + text = "unk_exp09_4508498", + value = "unk_exp09_4508498", }, { children = { { - fileId = "4421494", - text = "4421494.m2", - value = "4421494.m2", + fileId = "4508499", + text = "4508499.m2", + value = "4508499.m2", }, }, - text = "unk_exp09_4421494", - value = "unk_exp09_4421494", + text = "unk_exp09_4508499", + value = "unk_exp09_4508499", }, { children = { { - fileId = "4421496", - text = "4421496.m2", - value = "4421496.m2", + fileId = "4508500", + text = "4508500.m2", + value = "4508500.m2", }, }, - text = "unk_exp09_4421496", - value = "unk_exp09_4421496", + text = "unk_exp09_4508500", + value = "unk_exp09_4508500", }, { children = { { - fileId = "4421497", - text = "4421497.m2", - value = "4421497.m2", + fileId = "4508501", + text = "4508501.m2", + value = "4508501.m2", }, }, - text = "unk_exp09_4421497", - value = "unk_exp09_4421497", + text = "unk_exp09_4508501", + value = "unk_exp09_4508501", }, { children = { { - fileId = "4421498", - text = "4421498.m2", - value = "4421498.m2", + fileId = "4508502", + text = "4508502.m2", + value = "4508502.m2", }, }, - text = "unk_exp09_4421498", - value = "unk_exp09_4421498", + text = "unk_exp09_4508502", + value = "unk_exp09_4508502", }, { children = { { - fileId = "4421499", - text = "4421499.m2", - value = "4421499.m2", + fileId = "4509855", + text = "4509855.m2", + value = "4509855.m2", }, }, - text = "unk_exp09_4421499", - value = "unk_exp09_4421499", + text = "unk_exp09_4509855", + value = "unk_exp09_4509855", }, { children = { { - fileId = "4421500", - text = "4421500.m2", - value = "4421500.m2", + fileId = "4510769", + text = "4510769.m2", + value = "4510769.m2", }, }, - text = "unk_exp09_4421500", - value = "unk_exp09_4421500", + text = "unk_exp09_4510769", + value = "unk_exp09_4510769", }, { children = { { - fileId = "4421501", - text = "4421501.m2", - value = "4421501.m2", + fileId = "4510773", + text = "4510773.m2", + value = "4510773.m2", }, }, - text = "unk_exp09_4421501", - value = "unk_exp09_4421501", + text = "unk_exp09_4510773", + value = "unk_exp09_4510773", }, { children = { { - fileId = "4421503", - text = "4421503.m2", - value = "4421503.m2", + fileId = "4510774", + text = "4510774.m2", + value = "4510774.m2", }, }, - text = "unk_exp09_4421503", - value = "unk_exp09_4421503", + text = "unk_exp09_4510774", + value = "unk_exp09_4510774", }, { children = { { - fileId = "4421504", - text = "4421504.m2", - value = "4421504.m2", + fileId = "4511127", + text = "4511127.m2", + value = "4511127.m2", }, }, - text = "unk_exp09_4421504", - value = "unk_exp09_4421504", + text = "unk_exp09_4511127", + value = "unk_exp09_4511127", }, { children = { { - fileId = "4421505", - text = "4421505.m2", - value = "4421505.m2", + fileId = "4516810", + text = "4516810.m2", + value = "4516810.m2", }, }, - text = "unk_exp09_4421505", - value = "unk_exp09_4421505", + text = "unk_exp09_4516810", + value = "unk_exp09_4516810", }, { children = { { - fileId = "4421506", - text = "4421506.m2", - value = "4421506.m2", + fileId = "4516811", + text = "4516811.m2", + value = "4516811.m2", }, }, - text = "unk_exp09_4421506", - value = "unk_exp09_4421506", + text = "unk_exp09_4516811", + value = "unk_exp09_4516811", }, { children = { { - fileId = "4421507", - text = "4421507.m2", - value = "4421507.m2", + fileId = "4516812", + text = "4516812.m2", + value = "4516812.m2", }, }, - text = "unk_exp09_4421507", - value = "unk_exp09_4421507", + text = "unk_exp09_4516812", + value = "unk_exp09_4516812", }, { children = { { - fileId = "4421722", - text = "4421722.m2", - value = "4421722.m2", + fileId = "4516813", + text = "4516813.m2", + value = "4516813.m2", }, }, - text = "unk_exp09_4421722", - value = "unk_exp09_4421722", + text = "unk_exp09_4516813", + value = "unk_exp09_4516813", }, { children = { { - fileId = "4422957", - text = "4422957.m2", - value = "4422957.m2", + fileId = "4516814", + text = "4516814.m2", + value = "4516814.m2", }, }, - text = "unk_exp09_4422957", - value = "unk_exp09_4422957", + text = "unk_exp09_4516814", + value = "unk_exp09_4516814", }, { children = { { - fileId = "4422967", - text = "4422967.m2", - value = "4422967.m2", + fileId = "4516815", + text = "4516815.m2", + value = "4516815.m2", }, }, - text = "unk_exp09_4422967", - value = "unk_exp09_4422967", + text = "unk_exp09_4516815", + value = "unk_exp09_4516815", }, { children = { { - fileId = "4422969", - text = "4422969.m2", - value = "4422969.m2", + fileId = "4516816", + text = "4516816.m2", + value = "4516816.m2", }, }, - text = "unk_exp09_4422969", - value = "unk_exp09_4422969", + text = "unk_exp09_4516816", + value = "unk_exp09_4516816", }, { children = { { - fileId = "4423557", - text = "4423557.m2", - value = "4423557.m2", + fileId = "4516817", + text = "4516817.m2", + value = "4516817.m2", }, }, - text = "unk_exp09_4423557", - value = "unk_exp09_4423557", + text = "unk_exp09_4516817", + value = "unk_exp09_4516817", }, { children = { { - fileId = "4423558", - text = "4423558.m2", - value = "4423558.m2", + fileId = "4516818", + text = "4516818.m2", + value = "4516818.m2", }, }, - text = "unk_exp09_4423558", - value = "unk_exp09_4423558", + text = "unk_exp09_4516818", + value = "unk_exp09_4516818", }, { children = { { - fileId = "4423560", - text = "4423560.m2", - value = "4423560.m2", + fileId = "4519796", + text = "4519796.m2", + value = "4519796.m2", }, }, - text = "unk_exp09_4423560", - value = "unk_exp09_4423560", + text = "unk_exp09_4519796", + value = "unk_exp09_4519796", }, { children = { { - fileId = "4452494", - text = "4452494.m2", - value = "4452494.m2", + fileId = "4519797", + text = "4519797.m2", + value = "4519797.m2", }, }, - text = "unk_exp09_4452494", - value = "unk_exp09_4452494", + text = "unk_exp09_4519797", + value = "unk_exp09_4519797", }, { children = { { - fileId = "4452495", - text = "4452495.m2", - value = "4452495.m2", + fileId = "4519798", + text = "4519798.m2", + value = "4519798.m2", }, }, - text = "unk_exp09_4452495", - value = "unk_exp09_4452495", + text = "unk_exp09_4519798", + value = "unk_exp09_4519798", }, { children = { { - fileId = "4452496", - text = "4452496.m2", - value = "4452496.m2", + fileId = "4519799", + text = "4519799.m2", + value = "4519799.m2", }, }, - text = "unk_exp09_4452496", - value = "unk_exp09_4452496", + text = "unk_exp09_4519799", + value = "unk_exp09_4519799", }, { children = { { - fileId = "4478906", - text = "4478906.m2", - value = "4478906.m2", + fileId = "4519800", + text = "4519800.m2", + value = "4519800.m2", }, }, - text = "unk_exp09_4478906", - value = "unk_exp09_4478906", + text = "unk_exp09_4519800", + value = "unk_exp09_4519800", }, { children = { { - fileId = "4479330", - text = "4479330.m2", - value = "4479330.m2", + fileId = "4519801", + text = "4519801.m2", + value = "4519801.m2", }, }, - text = "unk_exp09_4479330", - value = "unk_exp09_4479330", + text = "unk_exp09_4519801", + value = "unk_exp09_4519801", }, { children = { { - fileId = "4479331", - text = "4479331.m2", - value = "4479331.m2", + fileId = "4519802", + text = "4519802.m2", + value = "4519802.m2", }, }, - text = "unk_exp09_4479331", - value = "unk_exp09_4479331", + text = "unk_exp09_4519802", + value = "unk_exp09_4519802", }, { children = { { - fileId = "4484248", - text = "4484248.m2", - value = "4484248.m2", + fileId = "4519806", + text = "4519806.m2", + value = "4519806.m2", }, }, - text = "unk_exp09_4484248", - value = "unk_exp09_4484248", + text = "unk_exp09_4519806", + value = "unk_exp09_4519806", }, { children = { { - fileId = "4484249", - text = "4484249.m2", - value = "4484249.m2", + fileId = "4519808", + text = "4519808.m2", + value = "4519808.m2", }, }, - text = "unk_exp09_4484249", - value = "unk_exp09_4484249", + text = "unk_exp09_4519808", + value = "unk_exp09_4519808", }, { children = { { - fileId = "4484250", - text = "4484250.m2", - value = "4484250.m2", + fileId = "4519809", + text = "4519809.m2", + value = "4519809.m2", }, }, - text = "unk_exp09_4484250", - value = "unk_exp09_4484250", + text = "unk_exp09_4519809", + value = "unk_exp09_4519809", }, { children = { { - fileId = "4484257", - text = "4484257.m2", - value = "4484257.m2", + fileId = "4519810", + text = "4519810.m2", + value = "4519810.m2", }, }, - text = "unk_exp09_4484257", - value = "unk_exp09_4484257", + text = "unk_exp09_4519810", + value = "unk_exp09_4519810", }, { children = { { - fileId = "4484368", - text = "4484368.m2", - value = "4484368.m2", + fileId = "4519812", + text = "4519812.m2", + value = "4519812.m2", }, }, - text = "unk_exp09_4484368", - value = "unk_exp09_4484368", + text = "unk_exp09_4519812", + value = "unk_exp09_4519812", }, { children = { { - fileId = "4484370", - text = "4484370.m2", - value = "4484370.m2", + fileId = "4519813", + text = "4519813.m2", + value = "4519813.m2", }, }, - text = "unk_exp09_4484370", - value = "unk_exp09_4484370", + text = "unk_exp09_4519813", + value = "unk_exp09_4519813", }, { children = { { - fileId = "4484374", - text = "4484374.m2", - value = "4484374.m2", + fileId = "4521374", + text = "4521374.m2", + value = "4521374.m2", }, }, - text = "unk_exp09_4484374", - value = "unk_exp09_4484374", + text = "unk_exp09_4521374", + value = "unk_exp09_4521374", }, { children = { { - fileId = "4485590", - text = "4485590.m2", - value = "4485590.m2", + fileId = "4521693", + text = "4521693.m2", + value = "4521693.m2", }, }, - text = "unk_exp09_4485590", - value = "unk_exp09_4485590", + text = "unk_exp09_4521693", + value = "unk_exp09_4521693", }, { children = { { - fileId = "4489317", - text = "4489317.m2", - value = "4489317.m2", + fileId = "4521695", + text = "4521695.m2", + value = "4521695.m2", }, - }, - text = "unk_exp09_4489317", - value = "unk_exp09_4489317", + }, + text = "unk_exp09_4521695", + value = "unk_exp09_4521695", }, { children = { { - fileId = "4492238", - text = "4492238.m2", - value = "4492238.m2", + fileId = "4521696", + text = "4521696.m2", + value = "4521696.m2", }, }, - text = "unk_exp09_4492238", - value = "unk_exp09_4492238", + text = "unk_exp09_4521696", + value = "unk_exp09_4521696", }, { children = { { - fileId = "4492576", - text = "4492576.m2", - value = "4492576.m2", + fileId = "4522467", + text = "4522467.m2", + value = "4522467.m2", }, }, - text = "unk_exp09_4492576", - value = "unk_exp09_4492576", + text = "unk_exp09_4522467", + value = "unk_exp09_4522467", }, { children = { { - fileId = "4492577", - text = "4492577.m2", - value = "4492577.m2", + fileId = "4522468", + text = "4522468.m2", + value = "4522468.m2", }, }, - text = "unk_exp09_4492577", - value = "unk_exp09_4492577", + text = "unk_exp09_4522468", + value = "unk_exp09_4522468", }, { children = { { - fileId = "4492654", - text = "4492654.m2", - value = "4492654.m2", + fileId = "4522469", + text = "4522469.m2", + value = "4522469.m2", }, }, - text = "unk_exp09_4492654", - value = "unk_exp09_4492654", + text = "unk_exp09_4522469", + value = "unk_exp09_4522469", }, { children = { { - fileId = "4492655", - text = "4492655.m2", - value = "4492655.m2", + fileId = "4522470", + text = "4522470.m2", + value = "4522470.m2", }, }, - text = "unk_exp09_4492655", - value = "unk_exp09_4492655", + text = "unk_exp09_4522470", + value = "unk_exp09_4522470", }, { children = { { - fileId = "4492656", - text = "4492656.m2", - value = "4492656.m2", + fileId = "4522471", + text = "4522471.m2", + value = "4522471.m2", }, }, - text = "unk_exp09_4492656", - value = "unk_exp09_4492656", + text = "unk_exp09_4522471", + value = "unk_exp09_4522471", }, { children = { { - fileId = "4492657", - text = "4492657.m2", - value = "4492657.m2", + fileId = "4522472", + text = "4522472.m2", + value = "4522472.m2", }, }, - text = "unk_exp09_4492657", - value = "unk_exp09_4492657", + text = "unk_exp09_4522472", + value = "unk_exp09_4522472", }, { children = { { - fileId = "4493181", - text = "4493181.m2", - value = "4493181.m2", + fileId = "4522473", + text = "4522473.m2", + value = "4522473.m2", }, }, - text = "unk_exp09_4493181", - value = "unk_exp09_4493181", + text = "unk_exp09_4522473", + value = "unk_exp09_4522473", }, { children = { { - fileId = "4493182", - text = "4493182.m2", - value = "4493182.m2", + fileId = "4522474", + text = "4522474.m2", + value = "4522474.m2", }, }, - text = "unk_exp09_4493182", - value = "unk_exp09_4493182", + text = "unk_exp09_4522474", + value = "unk_exp09_4522474", }, { children = { { - fileId = "4493183", - text = "4493183.m2", - value = "4493183.m2", + fileId = "4522475", + text = "4522475.m2", + value = "4522475.m2", }, }, - text = "unk_exp09_4493183", - value = "unk_exp09_4493183", + text = "unk_exp09_4522475", + value = "unk_exp09_4522475", }, { children = { { - fileId = "4493184", - text = "4493184.m2", - value = "4493184.m2", + fileId = "4522476", + text = "4522476.m2", + value = "4522476.m2", }, }, - text = "unk_exp09_4493184", - value = "unk_exp09_4493184", + text = "unk_exp09_4522476", + value = "unk_exp09_4522476", }, { children = { { - fileId = "4493185", - text = "4493185.m2", - value = "4493185.m2", + fileId = "4522477", + text = "4522477.m2", + value = "4522477.m2", }, }, - text = "unk_exp09_4493185", - value = "unk_exp09_4493185", + text = "unk_exp09_4522477", + value = "unk_exp09_4522477", }, { children = { { - fileId = "4493212", - text = "4493212.m2", - value = "4493212.m2", + fileId = "4523273", + text = "4523273.m2", + value = "4523273.m2", }, }, - text = "unk_exp09_4493212", - value = "unk_exp09_4493212", + text = "unk_exp09_4523273", + value = "unk_exp09_4523273", }, { children = { { - fileId = "4495229", - text = "4495229.m2", - value = "4495229.m2", + fileId = "4524198", + text = "4524198.m2", + value = "4524198.m2", }, }, - text = "unk_exp09_4495229", - value = "unk_exp09_4495229", + text = "unk_exp09_4524198", + value = "unk_exp09_4524198", }, { children = { { - fileId = "4495240", - text = "4495240.m2", - value = "4495240.m2", + fileId = "4524200", + text = "4524200.m2", + value = "4524200.m2", }, }, - text = "unk_exp09_4495240", - value = "unk_exp09_4495240", + text = "unk_exp09_4524200", + value = "unk_exp09_4524200", }, { children = { { - fileId = "4495243", - text = "4495243.m2", - value = "4495243.m2", + fileId = "4524201", + text = "4524201.m2", + value = "4524201.m2", }, }, - text = "unk_exp09_4495243", - value = "unk_exp09_4495243", + text = "unk_exp09_4524201", + value = "unk_exp09_4524201", }, { children = { { - fileId = "4495314", - text = "4495314.m2", - value = "4495314.m2", + fileId = "4524205", + text = "4524205.m2", + value = "4524205.m2", }, }, - text = "unk_exp09_4495314", - value = "unk_exp09_4495314", + text = "unk_exp09_4524205", + value = "unk_exp09_4524205", }, { children = { { - fileId = "4495939", - text = "4495939.m2", - value = "4495939.m2", + fileId = "4524206", + text = "4524206.m2", + value = "4524206.m2", }, }, - text = "unk_exp09_4495939", - value = "unk_exp09_4495939", + text = "unk_exp09_4524206", + value = "unk_exp09_4524206", }, { children = { { - fileId = "4495940", - text = "4495940.m2", - value = "4495940.m2", + fileId = "4524207", + text = "4524207.m2", + value = "4524207.m2", }, }, - text = "unk_exp09_4495940", - value = "unk_exp09_4495940", + text = "unk_exp09_4524207", + value = "unk_exp09_4524207", }, { children = { { - fileId = "4495941", - text = "4495941.m2", - value = "4495941.m2", + fileId = "4524208", + text = "4524208.m2", + value = "4524208.m2", }, }, - text = "unk_exp09_4495941", - value = "unk_exp09_4495941", + text = "unk_exp09_4524208", + value = "unk_exp09_4524208", }, { children = { { - fileId = "4495942", - text = "4495942.m2", - value = "4495942.m2", + fileId = "4524209", + text = "4524209.m2", + value = "4524209.m2", }, }, - text = "unk_exp09_4495942", - value = "unk_exp09_4495942", + text = "unk_exp09_4524209", + value = "unk_exp09_4524209", }, { children = { { - fileId = "4496145", - text = "4496145.m2", - value = "4496145.m2", + fileId = "4525976", + text = "4525976.m2", + value = "4525976.m2", }, }, - text = "unk_exp09_4496145", - value = "unk_exp09_4496145", + text = "unk_exp09_4525976", + value = "unk_exp09_4525976", }, { children = { { - fileId = "4496175", - text = "4496175.m2", - value = "4496175.m2", + fileId = "4526465", + text = "4526465.m2", + value = "4526465.m2", }, }, - text = "unk_exp09_4496175", - value = "unk_exp09_4496175", + text = "unk_exp09_4526465", + value = "unk_exp09_4526465", }, { children = { { - fileId = "4496461", - text = "4496461.m2", - value = "4496461.m2", + fileId = "4526466", + text = "4526466.m2", + value = "4526466.m2", }, }, - text = "unk_exp09_4496461", - value = "unk_exp09_4496461", + text = "unk_exp09_4526466", + value = "unk_exp09_4526466", }, { children = { { - fileId = "4497524", - text = "4497524.m2", - value = "4497524.m2", + fileId = "4527217", + text = "4527217.m2", + value = "4527217.m2", }, }, - text = "unk_exp09_4497524", - value = "unk_exp09_4497524", + text = "unk_exp09_4527217", + value = "unk_exp09_4527217", }, { children = { { - fileId = "4499453", - text = "4499453.m2", - value = "4499453.m2", + fileId = "4527385", + text = "4527385.m2", + value = "4527385.m2", }, }, - text = "unk_exp09_4499453", - value = "unk_exp09_4499453", + text = "unk_exp09_4527385", + value = "unk_exp09_4527385", }, { children = { { - fileId = "4499454", - text = "4499454.m2", - value = "4499454.m2", + fileId = "4528488", + text = "4528488.m2", + value = "4528488.m2", }, }, - text = "unk_exp09_4499454", - value = "unk_exp09_4499454", + text = "unk_exp09_4528488", + value = "unk_exp09_4528488", }, { children = { { - fileId = "4499471", - text = "4499471.m2", - value = "4499471.m2", + fileId = "4528955", + text = "4528955.m2", + value = "4528955.m2", }, }, - text = "unk_exp09_4499471", - value = "unk_exp09_4499471", + text = "unk_exp09_4528955", + value = "unk_exp09_4528955", }, { children = { { - fileId = "4499472", - text = "4499472.m2", - value = "4499472.m2", + fileId = "4529151", + text = "4529151.m2", + value = "4529151.m2", }, }, - text = "unk_exp09_4499472", - value = "unk_exp09_4499472", + text = "unk_exp09_4529151", + value = "unk_exp09_4529151", }, { children = { { - fileId = "4499473", - text = "4499473.m2", - value = "4499473.m2", + fileId = "4529348", + text = "4529348.m2", + value = "4529348.m2", }, }, - text = "unk_exp09_4499473", - value = "unk_exp09_4499473", + text = "unk_exp09_4529348", + value = "unk_exp09_4529348", }, { children = { { - fileId = "4499474", - text = "4499474.m2", - value = "4499474.m2", + fileId = "4529817", + text = "4529817.m2", + value = "4529817.m2", }, }, - text = "unk_exp09_4499474", - value = "unk_exp09_4499474", + text = "unk_exp09_4529817", + value = "unk_exp09_4529817", }, { children = { { - fileId = "4500324", - text = "4500324.m2", - value = "4500324.m2", + fileId = "4529818", + text = "4529818.m2", + value = "4529818.m2", }, }, - text = "unk_exp09_4500324", - value = "unk_exp09_4500324", + text = "unk_exp09_4529818", + value = "unk_exp09_4529818", }, { children = { { - fileId = "4500573", - text = "4500573.m2", - value = "4500573.m2", + fileId = "4529819", + text = "4529819.m2", + value = "4529819.m2", }, }, - text = "unk_exp09_4500573", - value = "unk_exp09_4500573", + text = "unk_exp09_4529819", + value = "unk_exp09_4529819", }, { children = { { - fileId = "4500889", - text = "4500889.m2", - value = "4500889.m2", + fileId = "4529980", + text = "4529980.m2", + value = "4529980.m2", }, }, - text = "unk_exp09_4500889", - value = "unk_exp09_4500889", + text = "unk_exp09_4529980", + value = "unk_exp09_4529980", }, { children = { { - fileId = "4500890", - text = "4500890.m2", - value = "4500890.m2", + fileId = "4529981", + text = "4529981.m2", + value = "4529981.m2", }, }, - text = "unk_exp09_4500890", - value = "unk_exp09_4500890", + text = "unk_exp09_4529981", + value = "unk_exp09_4529981", }, { children = { { - fileId = "4504450", - text = "4504450.m2", - value = "4504450.m2", + fileId = "4529982", + text = "4529982.m2", + value = "4529982.m2", }, }, - text = "unk_exp09_4504450", - value = "unk_exp09_4504450", + text = "unk_exp09_4529982", + value = "unk_exp09_4529982", }, { children = { { - fileId = "4504453", - text = "4504453.m2", - value = "4504453.m2", + fileId = "4530003", + text = "4530003.m2", + value = "4530003.m2", }, }, - text = "unk_exp09_4504453", - value = "unk_exp09_4504453", + text = "unk_exp09_4530003", + value = "unk_exp09_4530003", }, { children = { { - fileId = "4504454", - text = "4504454.m2", - value = "4504454.m2", + fileId = "4530004", + text = "4530004.m2", + value = "4530004.m2", }, }, - text = "unk_exp09_4504454", - value = "unk_exp09_4504454", + text = "unk_exp09_4530004", + value = "unk_exp09_4530004", }, { children = { { - fileId = "4505206", - text = "4505206.m2", - value = "4505206.m2", + fileId = "4530006", + text = "4530006.m2", + value = "4530006.m2", }, }, - text = "unk_exp09_4505206", - value = "unk_exp09_4505206", + text = "unk_exp09_4530006", + value = "unk_exp09_4530006", }, { children = { { - fileId = "4505207", - text = "4505207.m2", - value = "4505207.m2", + fileId = "4530007", + text = "4530007.m2", + value = "4530007.m2", }, }, - text = "unk_exp09_4505207", - value = "unk_exp09_4505207", + text = "unk_exp09_4530007", + value = "unk_exp09_4530007", }, { children = { { - fileId = "4505284", - text = "4505284.m2", - value = "4505284.m2", + fileId = "4530008", + text = "4530008.m2", + value = "4530008.m2", }, }, - text = "unk_exp09_4505284", - value = "unk_exp09_4505284", + text = "unk_exp09_4530008", + value = "unk_exp09_4530008", }, { children = { { - fileId = "4505287", - text = "4505287.m2", - value = "4505287.m2", + fileId = "4530009", + text = "4530009.m2", + value = "4530009.m2", }, }, - text = "unk_exp09_4505287", - value = "unk_exp09_4505287", + text = "unk_exp09_4530009", + value = "unk_exp09_4530009", }, { children = { { - fileId = "4505288", - text = "4505288.m2", - value = "4505288.m2", + fileId = "4530010", + text = "4530010.m2", + value = "4530010.m2", }, }, - text = "unk_exp09_4505288", - value = "unk_exp09_4505288", + text = "unk_exp09_4530010", + value = "unk_exp09_4530010", }, { children = { { - fileId = "4505294", - text = "4505294.m2", - value = "4505294.m2", + fileId = "4530011", + text = "4530011.m2", + value = "4530011.m2", }, }, - text = "unk_exp09_4505294", - value = "unk_exp09_4505294", + text = "unk_exp09_4530011", + value = "unk_exp09_4530011", }, { children = { { - fileId = "4505295", - text = "4505295.m2", - value = "4505295.m2", + fileId = "4530012", + text = "4530012.m2", + value = "4530012.m2", }, }, - text = "unk_exp09_4505295", - value = "unk_exp09_4505295", + text = "unk_exp09_4530012", + value = "unk_exp09_4530012", }, { children = { { - fileId = "4505526", - text = "4505526.m2", - value = "4505526.m2", + fileId = "4530013", + text = "4530013.m2", + value = "4530013.m2", }, }, - text = "unk_exp09_4505526", - value = "unk_exp09_4505526", + text = "unk_exp09_4530013", + value = "unk_exp09_4530013", }, { children = { { - fileId = "4505527", - text = "4505527.m2", - value = "4505527.m2", + fileId = "4530014", + text = "4530014.m2", + value = "4530014.m2", }, }, - text = "unk_exp09_4505527", - value = "unk_exp09_4505527", + text = "unk_exp09_4530014", + value = "unk_exp09_4530014", }, { children = { { - fileId = "4505547", - text = "4505547.m2", - value = "4505547.m2", + fileId = "4530015", + text = "4530015.m2", + value = "4530015.m2", }, }, - text = "unk_exp09_4505547", - value = "unk_exp09_4505547", + text = "unk_exp09_4530015", + value = "unk_exp09_4530015", }, { children = { { - fileId = "4505548", - text = "4505548.m2", - value = "4505548.m2", + fileId = "4530016", + text = "4530016.m2", + value = "4530016.m2", }, }, - text = "unk_exp09_4505548", - value = "unk_exp09_4505548", + text = "unk_exp09_4530016", + value = "unk_exp09_4530016", }, { children = { { - fileId = "4505550", - text = "4505550.m2", - value = "4505550.m2", + fileId = "4530017", + text = "4530017.m2", + value = "4530017.m2", }, }, - text = "unk_exp09_4505550", - value = "unk_exp09_4505550", + text = "unk_exp09_4530017", + value = "unk_exp09_4530017", }, { children = { { - fileId = "4505976", - text = "4505976.m2", - value = "4505976.m2", + fileId = "4530018", + text = "4530018.m2", + value = "4530018.m2", }, - }, - text = "unk_exp09_4505976", - value = "unk_exp09_4505976", + }, + text = "unk_exp09_4530018", + value = "unk_exp09_4530018", }, { children = { { - fileId = "4505977", - text = "4505977.m2", - value = "4505977.m2", + fileId = "4530047", + text = "4530047.m2", + value = "4530047.m2", }, }, - text = "unk_exp09_4505977", - value = "unk_exp09_4505977", + text = "unk_exp09_4530047", + value = "unk_exp09_4530047", }, { children = { { - fileId = "4506442", - text = "4506442.m2", - value = "4506442.m2", + fileId = "4530701", + text = "4530701.m2", + value = "4530701.m2", }, }, - text = "unk_exp09_4506442", - value = "unk_exp09_4506442", + text = "unk_exp09_4530701", + value = "unk_exp09_4530701", }, { children = { { - fileId = "4506579", - text = "4506579.m2", - value = "4506579.m2", + fileId = "4530702", + text = "4530702.m2", + value = "4530702.m2", }, }, - text = "unk_exp09_4506579", - value = "unk_exp09_4506579", + text = "unk_exp09_4530702", + value = "unk_exp09_4530702", }, { children = { { - fileId = "4507597", - text = "4507597.m2", - value = "4507597.m2", + fileId = "4530705", + text = "4530705.m2", + value = "4530705.m2", }, }, - text = "unk_exp09_4507597", - value = "unk_exp09_4507597", + text = "unk_exp09_4530705", + value = "unk_exp09_4530705", }, { children = { { - fileId = "4507620", - text = "4507620.m2", - value = "4507620.m2", + fileId = "4531161", + text = "4531161.m2", + value = "4531161.m2", }, }, - text = "unk_exp09_4507620", - value = "unk_exp09_4507620", + text = "unk_exp09_4531161", + value = "unk_exp09_4531161", }, { children = { { - fileId = "4507820", - text = "4507820.m2", - value = "4507820.m2", + fileId = "4532356", + text = "4532356.m2", + value = "4532356.m2", }, }, - text = "unk_exp09_4507820", - value = "unk_exp09_4507820", + text = "unk_exp09_4532356", + value = "unk_exp09_4532356", }, { children = { { - fileId = "4507822", - text = "4507822.m2", - value = "4507822.m2", + fileId = "4532358", + text = "4532358.m2", + value = "4532358.m2", }, }, - text = "unk_exp09_4507822", - value = "unk_exp09_4507822", + text = "unk_exp09_4532358", + value = "unk_exp09_4532358", }, { children = { { - fileId = "4507823", - text = "4507823.m2", - value = "4507823.m2", + fileId = "4532360", + text = "4532360.m2", + value = "4532360.m2", }, }, - text = "unk_exp09_4507823", - value = "unk_exp09_4507823", + text = "unk_exp09_4532360", + value = "unk_exp09_4532360", }, { children = { { - fileId = "4507824", - text = "4507824.m2", - value = "4507824.m2", + fileId = "4532361", + text = "4532361.m2", + value = "4532361.m2", }, }, - text = "unk_exp09_4507824", - value = "unk_exp09_4507824", + text = "unk_exp09_4532361", + value = "unk_exp09_4532361", }, { children = { { - fileId = "4507825", - text = "4507825.m2", - value = "4507825.m2", + fileId = "4532364", + text = "4532364.m2", + value = "4532364.m2", }, }, - text = "unk_exp09_4507825", - value = "unk_exp09_4507825", + text = "unk_exp09_4532364", + value = "unk_exp09_4532364", }, { children = { { - fileId = "4507826", - text = "4507826.m2", - value = "4507826.m2", + fileId = "4533205", + text = "4533205.m2", + value = "4533205.m2", }, }, - text = "unk_exp09_4507826", - value = "unk_exp09_4507826", + text = "unk_exp09_4533205", + value = "unk_exp09_4533205", }, { children = { { - fileId = "4507827", - text = "4507827.m2", - value = "4507827.m2", + fileId = "4533207", + text = "4533207.m2", + value = "4533207.m2", }, }, - text = "unk_exp09_4507827", - value = "unk_exp09_4507827", + text = "unk_exp09_4533207", + value = "unk_exp09_4533207", }, { children = { { - fileId = "4507828", - text = "4507828.m2", - value = "4507828.m2", + fileId = "4533212", + text = "4533212.m2", + value = "4533212.m2", }, }, - text = "unk_exp09_4507828", - value = "unk_exp09_4507828", + text = "unk_exp09_4533212", + value = "unk_exp09_4533212", }, { children = { { - fileId = "4507829", - text = "4507829.m2", - value = "4507829.m2", + fileId = "4533213", + text = "4533213.m2", + value = "4533213.m2", }, }, - text = "unk_exp09_4507829", - value = "unk_exp09_4507829", + text = "unk_exp09_4533213", + value = "unk_exp09_4533213", }, { children = { { - fileId = "4507830", - text = "4507830.m2", - value = "4507830.m2", + fileId = "4533215", + text = "4533215.m2", + value = "4533215.m2", }, }, - text = "unk_exp09_4507830", - value = "unk_exp09_4507830", + text = "unk_exp09_4533215", + value = "unk_exp09_4533215", }, { children = { { - fileId = "4507831", - text = "4507831.m2", - value = "4507831.m2", + fileId = "4533217", + text = "4533217.m2", + value = "4533217.m2", }, }, - text = "unk_exp09_4507831", - value = "unk_exp09_4507831", + text = "unk_exp09_4533217", + value = "unk_exp09_4533217", }, { children = { { - fileId = "4508494", - text = "4508494.m2", - value = "4508494.m2", + fileId = "4533218", + text = "4533218.m2", + value = "4533218.m2", }, }, - text = "unk_exp09_4508494", - value = "unk_exp09_4508494", + text = "unk_exp09_4533218", + value = "unk_exp09_4533218", }, { children = { { - fileId = "4508496", - text = "4508496.m2", - value = "4508496.m2", + fileId = "4533222", + text = "4533222.m2", + value = "4533222.m2", }, }, - text = "unk_exp09_4508496", - value = "unk_exp09_4508496", + text = "unk_exp09_4533222", + value = "unk_exp09_4533222", }, { children = { { - fileId = "4508497", - text = "4508497.m2", - value = "4508497.m2", + fileId = "4533314", + text = "4533314.m2", + value = "4533314.m2", }, }, - text = "unk_exp09_4508497", - value = "unk_exp09_4508497", + text = "unk_exp09_4533314", + value = "unk_exp09_4533314", }, { children = { { - fileId = "4508498", - text = "4508498.m2", - value = "4508498.m2", + fileId = "4533832", + text = "4533832.m2", + value = "4533832.m2", }, }, - text = "unk_exp09_4508498", - value = "unk_exp09_4508498", + text = "unk_exp09_4533832", + value = "unk_exp09_4533832", }, { children = { { - fileId = "4508499", - text = "4508499.m2", - value = "4508499.m2", + fileId = "4533833", + text = "4533833.m2", + value = "4533833.m2", }, }, - text = "unk_exp09_4508499", - value = "unk_exp09_4508499", + text = "unk_exp09_4533833", + value = "unk_exp09_4533833", }, { children = { { - fileId = "4508500", - text = "4508500.m2", - value = "4508500.m2", + fileId = "4533834", + text = "4533834.m2", + value = "4533834.m2", }, }, - text = "unk_exp09_4508500", - value = "unk_exp09_4508500", + text = "unk_exp09_4533834", + value = "unk_exp09_4533834", }, { children = { { - fileId = "4508501", - text = "4508501.m2", - value = "4508501.m2", + fileId = "4533835", + text = "4533835.m2", + value = "4533835.m2", }, }, - text = "unk_exp09_4508501", - value = "unk_exp09_4508501", + text = "unk_exp09_4533835", + value = "unk_exp09_4533835", }, { children = { { - fileId = "4508502", - text = "4508502.m2", - value = "4508502.m2", + fileId = "4533836", + text = "4533836.m2", + value = "4533836.m2", }, }, - text = "unk_exp09_4508502", - value = "unk_exp09_4508502", + text = "unk_exp09_4533836", + value = "unk_exp09_4533836", }, { children = { { - fileId = "4509855", - text = "4509855.m2", - value = "4509855.m2", + fileId = "4533837", + text = "4533837.m2", + value = "4533837.m2", }, }, - text = "unk_exp09_4509855", - value = "unk_exp09_4509855", + text = "unk_exp09_4533837", + value = "unk_exp09_4533837", }, { children = { { - fileId = "4510769", - text = "4510769.m2", - value = "4510769.m2", + fileId = "4533839", + text = "4533839.m2", + value = "4533839.m2", }, }, - text = "unk_exp09_4510769", - value = "unk_exp09_4510769", + text = "unk_exp09_4533839", + value = "unk_exp09_4533839", }, { children = { { - fileId = "4510773", - text = "4510773.m2", - value = "4510773.m2", + fileId = "4539354", + text = "4539354.m2", + value = "4539354.m2", }, }, - text = "unk_exp09_4510773", - value = "unk_exp09_4510773", + text = "unk_exp09_4539354", + value = "unk_exp09_4539354", }, { children = { { - fileId = "4510774", - text = "4510774.m2", - value = "4510774.m2", + fileId = "4539678", + text = "4539678.m2", + value = "4539678.m2", }, }, - text = "unk_exp09_4510774", - value = "unk_exp09_4510774", + text = "unk_exp09_4539678", + value = "unk_exp09_4539678", }, { children = { { - fileId = "4511127", - text = "4511127.m2", - value = "4511127.m2", + fileId = "4541692", + text = "4541692.m2", + value = "4541692.m2", }, }, - text = "unk_exp09_4511127", - value = "unk_exp09_4511127", + text = "unk_exp09_4541692", + value = "unk_exp09_4541692", }, { children = { { - fileId = "4516810", - text = "4516810.m2", - value = "4516810.m2", + fileId = "4541693", + text = "4541693.m2", + value = "4541693.m2", }, }, - text = "unk_exp09_4516810", - value = "unk_exp09_4516810", + text = "unk_exp09_4541693", + value = "unk_exp09_4541693", }, { children = { { - fileId = "4516811", - text = "4516811.m2", - value = "4516811.m2", + fileId = "4541694", + text = "4541694.m2", + value = "4541694.m2", }, }, - text = "unk_exp09_4516811", - value = "unk_exp09_4516811", + text = "unk_exp09_4541694", + value = "unk_exp09_4541694", }, { children = { { - fileId = "4516812", - text = "4516812.m2", - value = "4516812.m2", + fileId = "4541696", + text = "4541696.m2", + value = "4541696.m2", }, }, - text = "unk_exp09_4516812", - value = "unk_exp09_4516812", + text = "unk_exp09_4541696", + value = "unk_exp09_4541696", }, { children = { { - fileId = "4516813", - text = "4516813.m2", - value = "4516813.m2", + fileId = "4541697", + text = "4541697.m2", + value = "4541697.m2", }, }, - text = "unk_exp09_4516813", - value = "unk_exp09_4516813", + text = "unk_exp09_4541697", + value = "unk_exp09_4541697", }, { children = { { - fileId = "4516814", - text = "4516814.m2", - value = "4516814.m2", + fileId = "4541698", + text = "4541698.m2", + value = "4541698.m2", }, }, - text = "unk_exp09_4516814", - value = "unk_exp09_4516814", + text = "unk_exp09_4541698", + value = "unk_exp09_4541698", }, { children = { { - fileId = "4516815", - text = "4516815.m2", - value = "4516815.m2", + fileId = "4541699", + text = "4541699.m2", + value = "4541699.m2", }, }, - text = "unk_exp09_4516815", - value = "unk_exp09_4516815", + text = "unk_exp09_4541699", + value = "unk_exp09_4541699", }, { children = { { - fileId = "4516816", - text = "4516816.m2", - value = "4516816.m2", + fileId = "4541700", + text = "4541700.m2", + value = "4541700.m2", }, }, - text = "unk_exp09_4516816", - value = "unk_exp09_4516816", + text = "unk_exp09_4541700", + value = "unk_exp09_4541700", }, { children = { { - fileId = "4516817", - text = "4516817.m2", - value = "4516817.m2", + fileId = "4543418", + text = "4543418.m2", + value = "4543418.m2", }, }, - text = "unk_exp09_4516817", - value = "unk_exp09_4516817", + text = "unk_exp09_4543418", + value = "unk_exp09_4543418", }, { children = { { - fileId = "4516818", - text = "4516818.m2", - value = "4516818.m2", + fileId = "4545616", + text = "4545616.m2", + value = "4545616.m2", }, }, - text = "unk_exp09_4516818", - value = "unk_exp09_4516818", + text = "unk_exp09_4545616", + value = "unk_exp09_4545616", }, { children = { { - fileId = "4519796", - text = "4519796.m2", - value = "4519796.m2", + fileId = "4545940", + text = "4545940.m2", + value = "4545940.m2", }, }, - text = "unk_exp09_4519796", - value = "unk_exp09_4519796", + text = "unk_exp09_4545940", + value = "unk_exp09_4545940", }, { children = { { - fileId = "4519797", - text = "4519797.m2", - value = "4519797.m2", + fileId = "4545942", + text = "4545942.m2", + value = "4545942.m2", }, }, - text = "unk_exp09_4519797", - value = "unk_exp09_4519797", + text = "unk_exp09_4545942", + value = "unk_exp09_4545942", }, { children = { { - fileId = "4519799", - text = "4519799.m2", - value = "4519799.m2", + fileId = "4546505", + text = "4546505.m2", + value = "4546505.m2", }, }, - text = "unk_exp09_4519799", - value = "unk_exp09_4519799", + text = "unk_exp09_4546505", + value = "unk_exp09_4546505", }, { children = { { - fileId = "4519802", - text = "4519802.m2", - value = "4519802.m2", + fileId = "4546506", + text = "4546506.m2", + value = "4546506.m2", }, }, - text = "unk_exp09_4519802", - value = "unk_exp09_4519802", + text = "unk_exp09_4546506", + value = "unk_exp09_4546506", }, { children = { { - fileId = "4519806", - text = "4519806.m2", - value = "4519806.m2", + fileId = "4546507", + text = "4546507.m2", + value = "4546507.m2", }, }, - text = "unk_exp09_4519806", - value = "unk_exp09_4519806", + text = "unk_exp09_4546507", + value = "unk_exp09_4546507", }, { children = { { - fileId = "4519808", - text = "4519808.m2", - value = "4519808.m2", + fileId = "4546837", + text = "4546837.m2", + value = "4546837.m2", }, }, - text = "unk_exp09_4519808", - value = "unk_exp09_4519808", + text = "unk_exp09_4546837", + value = "unk_exp09_4546837", }, { children = { { - fileId = "4519809", - text = "4519809.m2", - value = "4519809.m2", + fileId = "4546838", + text = "4546838.m2", + value = "4546838.m2", }, }, - text = "unk_exp09_4519809", - value = "unk_exp09_4519809", + text = "unk_exp09_4546838", + value = "unk_exp09_4546838", }, { children = { { - fileId = "4519810", - text = "4519810.m2", - value = "4519810.m2", + fileId = "4547459", + text = "4547459.m2", + value = "4547459.m2", }, }, - text = "unk_exp09_4519810", - value = "unk_exp09_4519810", + text = "unk_exp09_4547459", + value = "unk_exp09_4547459", }, { children = { { - fileId = "4519812", - text = "4519812.m2", - value = "4519812.m2", + fileId = "4548038", + text = "4548038.m2", + value = "4548038.m2", }, }, - text = "unk_exp09_4519812", - value = "unk_exp09_4519812", + text = "unk_exp09_4548038", + value = "unk_exp09_4548038", }, { children = { { - fileId = "4519813", - text = "4519813.m2", - value = "4519813.m2", + fileId = "4548976", + text = "4548976.m2", + value = "4548976.m2", }, }, - text = "unk_exp09_4519813", - value = "unk_exp09_4519813", + text = "unk_exp09_4548976", + value = "unk_exp09_4548976", }, { children = { { - fileId = "4521374", - text = "4521374.m2", - value = "4521374.m2", + fileId = "4548978", + text = "4548978.m2", + value = "4548978.m2", }, }, - text = "unk_exp09_4521374", - value = "unk_exp09_4521374", + text = "unk_exp09_4548978", + value = "unk_exp09_4548978", }, { children = { { - fileId = "4521695", - text = "4521695.m2", - value = "4521695.m2", + fileId = "4548979", + text = "4548979.m2", + value = "4548979.m2", }, }, - text = "unk_exp09_4521695", - value = "unk_exp09_4521695", + text = "unk_exp09_4548979", + value = "unk_exp09_4548979", }, { children = { { - fileId = "4521696", - text = "4521696.m2", - value = "4521696.m2", + fileId = "4550041", + text = "4550041.m2", + value = "4550041.m2", }, }, - text = "unk_exp09_4521696", - value = "unk_exp09_4521696", + text = "unk_exp09_4550041", + value = "unk_exp09_4550041", }, { children = { { - fileId = "4522468", - text = "4522468.m2", - value = "4522468.m2", + fileId = "4551104", + text = "4551104.m2", + value = "4551104.m2", }, }, - text = "unk_exp09_4522468", - value = "unk_exp09_4522468", + text = "unk_exp09_4551104", + value = "unk_exp09_4551104", }, { children = { { - fileId = "4522469", - text = "4522469.m2", - value = "4522469.m2", + fileId = "4551105", + text = "4551105.m2", + value = "4551105.m2", }, }, - text = "unk_exp09_4522469", - value = "unk_exp09_4522469", + text = "unk_exp09_4551105", + value = "unk_exp09_4551105", }, { children = { { - fileId = "4522470", - text = "4522470.m2", - value = "4522470.m2", + fileId = "4551106", + text = "4551106.m2", + value = "4551106.m2", }, }, - text = "unk_exp09_4522470", - value = "unk_exp09_4522470", + text = "unk_exp09_4551106", + value = "unk_exp09_4551106", }, { children = { { - fileId = "4522471", - text = "4522471.m2", - value = "4522471.m2", + fileId = "4551107", + text = "4551107.m2", + value = "4551107.m2", }, }, - text = "unk_exp09_4522471", - value = "unk_exp09_4522471", + text = "unk_exp09_4551107", + value = "unk_exp09_4551107", }, { children = { { - fileId = "4522472", - text = "4522472.m2", - value = "4522472.m2", + fileId = "4551108", + text = "4551108.m2", + value = "4551108.m2", }, }, - text = "unk_exp09_4522472", - value = "unk_exp09_4522472", + text = "unk_exp09_4551108", + value = "unk_exp09_4551108", }, { children = { { - fileId = "4522473", - text = "4522473.m2", - value = "4522473.m2", + fileId = "4551109", + text = "4551109.m2", + value = "4551109.m2", }, }, - text = "unk_exp09_4522473", - value = "unk_exp09_4522473", + text = "unk_exp09_4551109", + value = "unk_exp09_4551109", }, { children = { { - fileId = "4522474", - text = "4522474.m2", - value = "4522474.m2", + fileId = "4551110", + text = "4551110.m2", + value = "4551110.m2", }, }, - text = "unk_exp09_4522474", - value = "unk_exp09_4522474", + text = "unk_exp09_4551110", + value = "unk_exp09_4551110", }, { children = { { - fileId = "4522475", - text = "4522475.m2", - value = "4522475.m2", + fileId = "4551111", + text = "4551111.m2", + value = "4551111.m2", }, }, - text = "unk_exp09_4522475", - value = "unk_exp09_4522475", + text = "unk_exp09_4551111", + value = "unk_exp09_4551111", }, { children = { { - fileId = "4522476", - text = "4522476.m2", - value = "4522476.m2", + fileId = "4551112", + text = "4551112.m2", + value = "4551112.m2", }, }, - text = "unk_exp09_4522476", - value = "unk_exp09_4522476", + text = "unk_exp09_4551112", + value = "unk_exp09_4551112", }, { children = { { - fileId = "4522477", - text = "4522477.m2", - value = "4522477.m2", + fileId = "4551113", + text = "4551113.m2", + value = "4551113.m2", }, }, - text = "unk_exp09_4522477", - value = "unk_exp09_4522477", + text = "unk_exp09_4551113", + value = "unk_exp09_4551113", }, { children = { { - fileId = "4524198", - text = "4524198.m2", - value = "4524198.m2", + fileId = "4551114", + text = "4551114.m2", + value = "4551114.m2", }, }, - text = "unk_exp09_4524198", - value = "unk_exp09_4524198", + text = "unk_exp09_4551114", + value = "unk_exp09_4551114", }, { children = { { - fileId = "4524200", - text = "4524200.m2", - value = "4524200.m2", + fileId = "4551442", + text = "4551442.m2", + value = "4551442.m2", }, }, - text = "unk_exp09_4524200", - value = "unk_exp09_4524200", + text = "unk_exp09_4551442", + value = "unk_exp09_4551442", }, { children = { { - fileId = "4524201", - text = "4524201.m2", - value = "4524201.m2", + fileId = "4551445", + text = "4551445.m2", + value = "4551445.m2", }, }, - text = "unk_exp09_4524201", - value = "unk_exp09_4524201", + text = "unk_exp09_4551445", + value = "unk_exp09_4551445", }, { children = { { - fileId = "4524205", - text = "4524205.m2", - value = "4524205.m2", + fileId = "4551446", + text = "4551446.m2", + value = "4551446.m2", }, }, - text = "unk_exp09_4524205", - value = "unk_exp09_4524205", + text = "unk_exp09_4551446", + value = "unk_exp09_4551446", }, { children = { { - fileId = "4524206", - text = "4524206.m2", - value = "4524206.m2", + fileId = "4552767", + text = "4552767.m2", + value = "4552767.m2", }, }, - text = "unk_exp09_4524206", - value = "unk_exp09_4524206", + text = "unk_exp09_4552767", + value = "unk_exp09_4552767", }, { children = { { - fileId = "4524207", - text = "4524207.m2", - value = "4524207.m2", + fileId = "4552768", + text = "4552768.m2", + value = "4552768.m2", }, }, - text = "unk_exp09_4524207", - value = "unk_exp09_4524207", + text = "unk_exp09_4552768", + value = "unk_exp09_4552768", }, { children = { { - fileId = "4524208", - text = "4524208.m2", - value = "4524208.m2", + fileId = "4552769", + text = "4552769.m2", + value = "4552769.m2", }, }, - text = "unk_exp09_4524208", - value = "unk_exp09_4524208", + text = "unk_exp09_4552769", + value = "unk_exp09_4552769", }, { children = { { - fileId = "4524209", - text = "4524209.m2", - value = "4524209.m2", + fileId = "4552770", + text = "4552770.m2", + value = "4552770.m2", }, }, - text = "unk_exp09_4524209", - value = "unk_exp09_4524209", + text = "unk_exp09_4552770", + value = "unk_exp09_4552770", }, { children = { { - fileId = "4526465", - text = "4526465.m2", - value = "4526465.m2", + fileId = "4552771", + text = "4552771.m2", + value = "4552771.m2", }, }, - text = "unk_exp09_4526465", - value = "unk_exp09_4526465", + text = "unk_exp09_4552771", + value = "unk_exp09_4552771", }, { children = { { - fileId = "4526466", - text = "4526466.m2", - value = "4526466.m2", + fileId = "4552772", + text = "4552772.m2", + value = "4552772.m2", }, }, - text = "unk_exp09_4526466", - value = "unk_exp09_4526466", + text = "unk_exp09_4552772", + value = "unk_exp09_4552772", }, { children = { { - fileId = "4527217", - text = "4527217.m2", - value = "4527217.m2", + fileId = "4552773", + text = "4552773.m2", + value = "4552773.m2", }, }, - text = "unk_exp09_4527217", - value = "unk_exp09_4527217", + text = "unk_exp09_4552773", + value = "unk_exp09_4552773", }, { children = { { - fileId = "4527385", - text = "4527385.m2", - value = "4527385.m2", + fileId = "4552774", + text = "4552774.m2", + value = "4552774.m2", }, }, - text = "unk_exp09_4527385", - value = "unk_exp09_4527385", + text = "unk_exp09_4552774", + value = "unk_exp09_4552774", }, { children = { { - fileId = "4528488", - text = "4528488.m2", - value = "4528488.m2", + fileId = "4552775", + text = "4552775.m2", + value = "4552775.m2", }, }, - text = "unk_exp09_4528488", - value = "unk_exp09_4528488", + text = "unk_exp09_4552775", + value = "unk_exp09_4552775", }, { children = { { - fileId = "4528955", - text = "4528955.m2", - value = "4528955.m2", + fileId = "4552776", + text = "4552776.m2", + value = "4552776.m2", }, }, - text = "unk_exp09_4528955", - value = "unk_exp09_4528955", + text = "unk_exp09_4552776", + value = "unk_exp09_4552776", }, { children = { { - fileId = "4529348", - text = "4529348.m2", - value = "4529348.m2", + fileId = "4552871", + text = "4552871.m2", + value = "4552871.m2", }, }, - text = "unk_exp09_4529348", - value = "unk_exp09_4529348", + text = "unk_exp09_4552871", + value = "unk_exp09_4552871", }, { children = { { - fileId = "4529817", - text = "4529817.m2", - value = "4529817.m2", + fileId = "4552872", + text = "4552872.m2", + value = "4552872.m2", }, }, - text = "unk_exp09_4529817", - value = "unk_exp09_4529817", + text = "unk_exp09_4552872", + value = "unk_exp09_4552872", }, { children = { { - fileId = "4529818", - text = "4529818.m2", - value = "4529818.m2", + fileId = "4555849", + text = "4555849.m2", + value = "4555849.m2", }, }, - text = "unk_exp09_4529818", - value = "unk_exp09_4529818", + text = "unk_exp09_4555849", + value = "unk_exp09_4555849", }, { children = { { - fileId = "4529819", - text = "4529819.m2", - value = "4529819.m2", + fileId = "4555850", + text = "4555850.m2", + value = "4555850.m2", }, }, - text = "unk_exp09_4529819", - value = "unk_exp09_4529819", + text = "unk_exp09_4555850", + value = "unk_exp09_4555850", }, { children = { { - fileId = "4529980", - text = "4529980.m2", - value = "4529980.m2", + fileId = "4556765", + text = "4556765.m2", + value = "4556765.m2", }, }, - text = "unk_exp09_4529980", - value = "unk_exp09_4529980", + text = "unk_exp09_4556765", + value = "unk_exp09_4556765", }, { children = { { - fileId = "4529981", - text = "4529981.m2", - value = "4529981.m2", + fileId = "4556766", + text = "4556766.m2", + value = "4556766.m2", }, }, - text = "unk_exp09_4529981", - value = "unk_exp09_4529981", + text = "unk_exp09_4556766", + value = "unk_exp09_4556766", }, { children = { { - fileId = "4529982", - text = "4529982.m2", - value = "4529982.m2", + fileId = "4556767", + text = "4556767.m2", + value = "4556767.m2", }, }, - text = "unk_exp09_4529982", - value = "unk_exp09_4529982", + text = "unk_exp09_4556767", + value = "unk_exp09_4556767", }, { children = { { - fileId = "4530003", - text = "4530003.m2", - value = "4530003.m2", + fileId = "4557573", + text = "4557573.m2", + value = "4557573.m2", }, }, - text = "unk_exp09_4530003", - value = "unk_exp09_4530003", + text = "unk_exp09_4557573", + value = "unk_exp09_4557573", }, { children = { { - fileId = "4530004", - text = "4530004.m2", - value = "4530004.m2", + fileId = "4557574", + text = "4557574.m2", + value = "4557574.m2", }, }, - text = "unk_exp09_4530004", - value = "unk_exp09_4530004", + text = "unk_exp09_4557574", + value = "unk_exp09_4557574", }, { children = { { - fileId = "4530006", - text = "4530006.m2", - value = "4530006.m2", + fileId = "4557575", + text = "4557575.m2", + value = "4557575.m2", }, }, - text = "unk_exp09_4530006", - value = "unk_exp09_4530006", + text = "unk_exp09_4557575", + value = "unk_exp09_4557575", }, { children = { { - fileId = "4530007", - text = "4530007.m2", - value = "4530007.m2", + fileId = "4557590", + text = "4557590.m2", + value = "4557590.m2", }, }, - text = "unk_exp09_4530007", - value = "unk_exp09_4530007", + text = "unk_exp09_4557590", + value = "unk_exp09_4557590", }, { children = { { - fileId = "4530008", - text = "4530008.m2", - value = "4530008.m2", + fileId = "4557591", + text = "4557591.m2", + value = "4557591.m2", }, }, - text = "unk_exp09_4530008", - value = "unk_exp09_4530008", + text = "unk_exp09_4557591", + value = "unk_exp09_4557591", }, { children = { { - fileId = "4530009", - text = "4530009.m2", - value = "4530009.m2", + fileId = "4557592", + text = "4557592.m2", + value = "4557592.m2", }, }, - text = "unk_exp09_4530009", - value = "unk_exp09_4530009", + text = "unk_exp09_4557592", + value = "unk_exp09_4557592", }, { children = { { - fileId = "4530010", - text = "4530010.m2", - value = "4530010.m2", + fileId = "4558379", + text = "4558379.m2", + value = "4558379.m2", }, }, - text = "unk_exp09_4530010", - value = "unk_exp09_4530010", + text = "unk_exp09_4558379", + value = "unk_exp09_4558379", }, { children = { { - fileId = "4530011", - text = "4530011.m2", - value = "4530011.m2", + fileId = "4558380", + text = "4558380.m2", + value = "4558380.m2", }, }, - text = "unk_exp09_4530011", - value = "unk_exp09_4530011", + text = "unk_exp09_4558380", + value = "unk_exp09_4558380", }, { children = { { - fileId = "4530012", - text = "4530012.m2", - value = "4530012.m2", + fileId = "4558381", + text = "4558381.m2", + value = "4558381.m2", }, }, - text = "unk_exp09_4530012", - value = "unk_exp09_4530012", + text = "unk_exp09_4558381", + value = "unk_exp09_4558381", }, { children = { { - fileId = "4530013", - text = "4530013.m2", - value = "4530013.m2", + fileId = "4558382", + text = "4558382.m2", + value = "4558382.m2", }, }, - text = "unk_exp09_4530013", - value = "unk_exp09_4530013", + text = "unk_exp09_4558382", + value = "unk_exp09_4558382", }, { children = { { - fileId = "4530014", - text = "4530014.m2", - value = "4530014.m2", + fileId = "4558383", + text = "4558383.m2", + value = "4558383.m2", }, }, - text = "unk_exp09_4530014", - value = "unk_exp09_4530014", + text = "unk_exp09_4558383", + value = "unk_exp09_4558383", }, { children = { { - fileId = "4530015", - text = "4530015.m2", - value = "4530015.m2", + fileId = "4558384", + text = "4558384.m2", + value = "4558384.m2", }, }, - text = "unk_exp09_4530015", - value = "unk_exp09_4530015", + text = "unk_exp09_4558384", + value = "unk_exp09_4558384", }, { children = { { - fileId = "4530016", - text = "4530016.m2", - value = "4530016.m2", + fileId = "2903202", + text = "7xp_waterfall_top_2903202.m2", + value = "7xp_waterfall_top_2903202.m2", + }, + { + fileId = "2903203", + text = "7xp_waterfall_top_2903203.m2", + value = "7xp_waterfall_top_2903203.m2", + }, + { + fileId = "2903204", + text = "7xp_waterfall_top_2903204.m2", + value = "7xp_waterfall_top_2903204.m2", + }, + { + fileId = "2903205", + text = "7xp_waterfall_top_2903205.m2", + value = "7xp_waterfall_top_2903205.m2", + }, + { + fileId = "2903206", + text = "7xp_waterfall_top_2903206.m2", + value = "7xp_waterfall_top_2903206.m2", + }, + { + fileId = "2903209", + text = "7xp_waterfall_top_2903209.m2", + value = "7xp_waterfall_top_2903209.m2", + }, + { + fileId = "2903210", + text = "7xp_waterfall_top_2903210.m2", + value = "7xp_waterfall_top_2903210.m2", + }, + { + fileId = "2903211", + text = "7xp_waterfall_top_2903211.m2", + value = "7xp_waterfall_top_2903211.m2", + }, + { + fileId = "2903212", + text = "7xp_waterfall_top_2903212.m2", + value = "7xp_waterfall_top_2903212.m2", + }, + { + fileId = "2903213", + text = "7xp_waterfall_top_2903213.m2", + value = "7xp_waterfall_top_2903213.m2", + }, + { + fileId = "2903214", + text = "7xp_waterfall_top_2903214.m2", + value = "7xp_waterfall_top_2903214.m2", + }, + { + fileId = "2903215", + text = "7xp_waterfall_top_2903215.m2", + value = "7xp_waterfall_top_2903215.m2", + }, + { + fileId = "2903216", + text = "7xp_waterfall_top_2903216.m2", + value = "7xp_waterfall_top_2903216.m2", + }, + { + fileId = "2903217", + text = "7xp_waterfall_top_2903217.m2", + value = "7xp_waterfall_top_2903217.m2", + }, + { + fileId = "2903218", + text = "7xp_waterfall_top_2903218.m2", + value = "7xp_waterfall_top_2903218.m2", + }, + { + fileId = "2903219", + text = "7xp_waterfall_top_2903219.m2", + value = "7xp_waterfall_top_2903219.m2", }, - }, - text = "unk_exp09_4530016", - value = "unk_exp09_4530016", - }, - { - children = { { - fileId = "4530017", - text = "4530017.m2", - value = "4530017.m2", + fileId = "2903220", + text = "7xp_waterfall_top_2903220.m2", + value = "7xp_waterfall_top_2903220.m2", }, - }, - text = "unk_exp09_4530017", - value = "unk_exp09_4530017", - }, - { - children = { { - fileId = "4530018", - text = "4530018.m2", - value = "4530018.m2", + fileId = "2903221", + text = "7xp_waterfall_top_2903221.m2", + value = "7xp_waterfall_top_2903221.m2", }, }, - text = "unk_exp09_4530018", - value = "unk_exp09_4530018", + text = "unk_exp09_7xp_waterfall_top", + value = "unk_exp09_7xp_waterfall_top", }, { children = { { - fileId = "4530047", - text = "4530047.m2", - value = "4530047.m2", + fileId = "4559603", + text = "4559603.m2", + value = "4559603.m2", }, }, - text = "unk_exp09_4530047", - value = "unk_exp09_4530047", + text = "unk_exp10_4559603", + value = "unk_exp10_4559603", }, { children = { { - fileId = "4530701", - text = "4530701.m2", - value = "4530701.m2", + fileId = "4559604", + text = "4559604.m2", + value = "4559604.m2", }, }, - text = "unk_exp09_4530701", - value = "unk_exp09_4530701", + text = "unk_exp10_4559604", + value = "unk_exp10_4559604", }, { children = { { - fileId = "4530702", - text = "4530702.m2", - value = "4530702.m2", + fileId = "4559605", + text = "4559605.m2", + value = "4559605.m2", }, }, - text = "unk_exp09_4530702", - value = "unk_exp09_4530702", + text = "unk_exp10_4559605", + value = "unk_exp10_4559605", }, { children = { { - fileId = "4530705", - text = "4530705.m2", - value = "4530705.m2", + fileId = "4559606", + text = "4559606.m2", + value = "4559606.m2", }, }, - text = "unk_exp09_4530705", - value = "unk_exp09_4530705", + text = "unk_exp10_4559606", + value = "unk_exp10_4559606", }, { children = { { - fileId = "4531161", - text = "4531161.m2", - value = "4531161.m2", + fileId = "4559608", + text = "4559608.m2", + value = "4559608.m2", }, }, - text = "unk_exp09_4531161", - value = "unk_exp09_4531161", + text = "unk_exp10_4559608", + value = "unk_exp10_4559608", }, { children = { { - fileId = "4532356", - text = "4532356.m2", - value = "4532356.m2", + fileId = "4559611", + text = "4559611.m2", + value = "4559611.m2", }, }, - text = "unk_exp09_4532356", - value = "unk_exp09_4532356", + text = "unk_exp10_4559611", + value = "unk_exp10_4559611", }, { children = { { - fileId = "4532358", - text = "4532358.m2", - value = "4532358.m2", + fileId = "4559614", + text = "4559614.m2", + value = "4559614.m2", }, }, - text = "unk_exp09_4532358", - value = "unk_exp09_4532358", + text = "unk_exp10_4559614", + value = "unk_exp10_4559614", }, { children = { { - fileId = "4532360", - text = "4532360.m2", - value = "4532360.m2", + fileId = "4559615", + text = "4559615.m2", + value = "4559615.m2", }, }, - text = "unk_exp09_4532360", - value = "unk_exp09_4532360", + text = "unk_exp10_4559615", + value = "unk_exp10_4559615", }, { children = { { - fileId = "4532361", - text = "4532361.m2", - value = "4532361.m2", + fileId = "4559616", + text = "4559616.m2", + value = "4559616.m2", }, }, - text = "unk_exp09_4532361", - value = "unk_exp09_4532361", + text = "unk_exp10_4559616", + value = "unk_exp10_4559616", }, { children = { { - fileId = "4532364", - text = "4532364.m2", - value = "4532364.m2", + fileId = "4559617", + text = "4559617.m2", + value = "4559617.m2", }, }, - text = "unk_exp09_4532364", - value = "unk_exp09_4532364", + text = "unk_exp10_4559617", + value = "unk_exp10_4559617", }, { children = { { - fileId = "4533205", - text = "4533205.m2", - value = "4533205.m2", + fileId = "4559618", + text = "4559618.m2", + value = "4559618.m2", }, }, - text = "unk_exp09_4533205", - value = "unk_exp09_4533205", + text = "unk_exp10_4559618", + value = "unk_exp10_4559618", }, { children = { { - fileId = "4533207", - text = "4533207.m2", - value = "4533207.m2", + fileId = "4559620", + text = "4559620.m2", + value = "4559620.m2", }, }, - text = "unk_exp09_4533207", - value = "unk_exp09_4533207", + text = "unk_exp10_4559620", + value = "unk_exp10_4559620", }, { children = { { - fileId = "4533212", - text = "4533212.m2", - value = "4533212.m2", + fileId = "4559621", + text = "4559621.m2", + value = "4559621.m2", }, }, - text = "unk_exp09_4533212", - value = "unk_exp09_4533212", + text = "unk_exp10_4559621", + value = "unk_exp10_4559621", }, { children = { { - fileId = "4533213", - text = "4533213.m2", - value = "4533213.m2", + fileId = "4559622", + text = "4559622.m2", + value = "4559622.m2", }, }, - text = "unk_exp09_4533213", - value = "unk_exp09_4533213", + text = "unk_exp10_4559622", + value = "unk_exp10_4559622", }, { children = { { - fileId = "4533215", - text = "4533215.m2", - value = "4533215.m2", + fileId = "4559623", + text = "4559623.m2", + value = "4559623.m2", }, }, - text = "unk_exp09_4533215", - value = "unk_exp09_4533215", + text = "unk_exp10_4559623", + value = "unk_exp10_4559623", }, { children = { { - fileId = "4533217", - text = "4533217.m2", - value = "4533217.m2", + fileId = "4559624", + text = "4559624.m2", + value = "4559624.m2", }, }, - text = "unk_exp09_4533217", - value = "unk_exp09_4533217", + text = "unk_exp10_4559624", + value = "unk_exp10_4559624", }, { children = { { - fileId = "4533218", - text = "4533218.m2", - value = "4533218.m2", + fileId = "4559626", + text = "4559626.m2", + value = "4559626.m2", }, }, - text = "unk_exp09_4533218", - value = "unk_exp09_4533218", + text = "unk_exp10_4559626", + value = "unk_exp10_4559626", }, { children = { { - fileId = "4533222", - text = "4533222.m2", - value = "4533222.m2", + fileId = "4559628", + text = "4559628.m2", + value = "4559628.m2", }, }, - text = "unk_exp09_4533222", - value = "unk_exp09_4533222", + text = "unk_exp10_4559628", + value = "unk_exp10_4559628", }, { children = { { - fileId = "4533832", - text = "4533832.m2", - value = "4533832.m2", + fileId = "4559629", + text = "4559629.m2", + value = "4559629.m2", }, }, - text = "unk_exp09_4533832", - value = "unk_exp09_4533832", + text = "unk_exp10_4559629", + value = "unk_exp10_4559629", }, { children = { { - fileId = "4533833", - text = "4533833.m2", - value = "4533833.m2", + fileId = "4559630", + text = "4559630.m2", + value = "4559630.m2", }, }, - text = "unk_exp09_4533833", - value = "unk_exp09_4533833", + text = "unk_exp10_4559630", + value = "unk_exp10_4559630", }, { children = { { - fileId = "4533834", - text = "4533834.m2", - value = "4533834.m2", + fileId = "4559631", + text = "4559631.m2", + value = "4559631.m2", }, }, - text = "unk_exp09_4533834", - value = "unk_exp09_4533834", + text = "unk_exp10_4559631", + value = "unk_exp10_4559631", }, { children = { { - fileId = "4533835", - text = "4533835.m2", - value = "4533835.m2", + fileId = "4559632", + text = "4559632.m2", + value = "4559632.m2", }, }, - text = "unk_exp09_4533835", - value = "unk_exp09_4533835", + text = "unk_exp10_4559632", + value = "unk_exp10_4559632", }, { children = { { - fileId = "4533836", - text = "4533836.m2", - value = "4533836.m2", + fileId = "4559633", + text = "4559633.m2", + value = "4559633.m2", }, }, - text = "unk_exp09_4533836", - value = "unk_exp09_4533836", + text = "unk_exp10_4559633", + value = "unk_exp10_4559633", }, { children = { { - fileId = "4533837", - text = "4533837.m2", - value = "4533837.m2", + fileId = "4559634", + text = "4559634.m2", + value = "4559634.m2", }, }, - text = "unk_exp09_4533837", - value = "unk_exp09_4533837", + text = "unk_exp10_4559634", + value = "unk_exp10_4559634", }, { children = { { - fileId = "4533839", - text = "4533839.m2", - value = "4533839.m2", + fileId = "4559635", + text = "4559635.m2", + value = "4559635.m2", }, }, - text = "unk_exp09_4533839", - value = "unk_exp09_4533839", + text = "unk_exp10_4559635", + value = "unk_exp10_4559635", }, { children = { { - fileId = "4539354", - text = "4539354.m2", - value = "4539354.m2", + fileId = "4559636", + text = "4559636.m2", + value = "4559636.m2", }, }, - text = "unk_exp09_4539354", - value = "unk_exp09_4539354", + text = "unk_exp10_4559636", + value = "unk_exp10_4559636", }, { children = { { - fileId = "4539678", - text = "4539678.m2", - value = "4539678.m2", + fileId = "4559637", + text = "4559637.m2", + value = "4559637.m2", }, }, - text = "unk_exp09_4539678", - value = "unk_exp09_4539678", + text = "unk_exp10_4559637", + value = "unk_exp10_4559637", }, { children = { { - fileId = "4541692", - text = "4541692.m2", - value = "4541692.m2", + fileId = "4559638", + text = "4559638.m2", + value = "4559638.m2", }, }, - text = "unk_exp09_4541692", - value = "unk_exp09_4541692", + text = "unk_exp10_4559638", + value = "unk_exp10_4559638", }, { children = { { - fileId = "4541693", - text = "4541693.m2", - value = "4541693.m2", + fileId = "4559639", + text = "4559639.m2", + value = "4559639.m2", }, }, - text = "unk_exp09_4541693", - value = "unk_exp09_4541693", + text = "unk_exp10_4559639", + value = "unk_exp10_4559639", }, { children = { { - fileId = "4541694", - text = "4541694.m2", - value = "4541694.m2", + fileId = "4559640", + text = "4559640.m2", + value = "4559640.m2", }, }, - text = "unk_exp09_4541694", - value = "unk_exp09_4541694", + text = "unk_exp10_4559640", + value = "unk_exp10_4559640", }, { children = { { - fileId = "4541696", - text = "4541696.m2", - value = "4541696.m2", + fileId = "4559816", + text = "4559816.m2", + value = "4559816.m2", }, }, - text = "unk_exp09_4541696", - value = "unk_exp09_4541696", + text = "unk_exp10_4559816", + value = "unk_exp10_4559816", }, { children = { { - fileId = "4541697", - text = "4541697.m2", - value = "4541697.m2", + fileId = "4559817", + text = "4559817.m2", + value = "4559817.m2", }, }, - text = "unk_exp09_4541697", - value = "unk_exp09_4541697", + text = "unk_exp10_4559817", + value = "unk_exp10_4559817", }, { children = { { - fileId = "4541698", - text = "4541698.m2", - value = "4541698.m2", + fileId = "4559818", + text = "4559818.m2", + value = "4559818.m2", }, }, - text = "unk_exp09_4541698", - value = "unk_exp09_4541698", + text = "unk_exp10_4559818", + value = "unk_exp10_4559818", }, { children = { { - fileId = "4541699", - text = "4541699.m2", - value = "4541699.m2", + fileId = "4559819", + text = "4559819.m2", + value = "4559819.m2", }, }, - text = "unk_exp09_4541699", - value = "unk_exp09_4541699", + text = "unk_exp10_4559819", + value = "unk_exp10_4559819", }, { children = { { - fileId = "4541700", - text = "4541700.m2", - value = "4541700.m2", + fileId = "4559820", + text = "4559820.m2", + value = "4559820.m2", }, }, - text = "unk_exp09_4541700", - value = "unk_exp09_4541700", + text = "unk_exp10_4559820", + value = "unk_exp10_4559820", }, { children = { { - fileId = "4543418", - text = "4543418.m2", - value = "4543418.m2", + fileId = "4559821", + text = "4559821.m2", + value = "4559821.m2", }, }, - text = "unk_exp09_4543418", - value = "unk_exp09_4543418", + text = "unk_exp10_4559821", + value = "unk_exp10_4559821", }, { children = { { - fileId = "4545616", - text = "4545616.m2", - value = "4545616.m2", + fileId = "4560920", + text = "4560920.m2", + value = "4560920.m2", }, }, - text = "unk_exp09_4545616", - value = "unk_exp09_4545616", + text = "unk_exp10_4560920", + value = "unk_exp10_4560920", }, { children = { { - fileId = "4545940", - text = "4545940.m2", - value = "4545940.m2", + fileId = "4563624", + text = "4563624.m2", + value = "4563624.m2", }, }, - text = "unk_exp09_4545940", - value = "unk_exp09_4545940", + text = "unk_exp10_4563624", + value = "unk_exp10_4563624", }, { children = { { - fileId = "4545942", - text = "4545942.m2", - value = "4545942.m2", + fileId = "4563827", + text = "4563827.m2", + value = "4563827.m2", }, }, - text = "unk_exp09_4545942", - value = "unk_exp09_4545942", + text = "unk_exp10_4563827", + value = "unk_exp10_4563827", }, { children = { { - fileId = "4546505", - text = "4546505.m2", - value = "4546505.m2", + fileId = "4563828", + text = "4563828.m2", + value = "4563828.m2", }, }, - text = "unk_exp09_4546505", - value = "unk_exp09_4546505", + text = "unk_exp10_4563828", + value = "unk_exp10_4563828", }, { children = { { - fileId = "4546506", - text = "4546506.m2", - value = "4546506.m2", + fileId = "4566484", + text = "4566484.m2", + value = "4566484.m2", }, }, - text = "unk_exp09_4546506", - value = "unk_exp09_4546506", + text = "unk_exp10_4566484", + value = "unk_exp10_4566484", }, { children = { { - fileId = "4546507", - text = "4546507.m2", - value = "4546507.m2", + fileId = "4566485", + text = "4566485.m2", + value = "4566485.m2", }, }, - text = "unk_exp09_4546507", - value = "unk_exp09_4546507", + text = "unk_exp10_4566485", + value = "unk_exp10_4566485", }, { children = { { - fileId = "4546837", - text = "4546837.m2", - value = "4546837.m2", + fileId = "4566506", + text = "4566506.m2", + value = "4566506.m2", }, }, - text = "unk_exp09_4546837", - value = "unk_exp09_4546837", + text = "unk_exp10_4566506", + value = "unk_exp10_4566506", }, { children = { { - fileId = "4546838", - text = "4546838.m2", - value = "4546838.m2", + fileId = "4567149", + text = "4567149.m2", + value = "4567149.m2", }, }, - text = "unk_exp09_4546838", - value = "unk_exp09_4546838", + text = "unk_exp10_4567149", + value = "unk_exp10_4567149", }, { children = { { - fileId = "4547459", - text = "4547459.m2", - value = "4547459.m2", + fileId = "4568759", + text = "4568759.m2", + value = "4568759.m2", }, }, - text = "unk_exp09_4547459", - value = "unk_exp09_4547459", + text = "unk_exp10_4568759", + value = "unk_exp10_4568759", }, { children = { { - fileId = "4548038", - text = "4548038.m2", - value = "4548038.m2", + fileId = "4568760", + text = "4568760.m2", + value = "4568760.m2", }, }, - text = "unk_exp09_4548038", - value = "unk_exp09_4548038", + text = "unk_exp10_4568760", + value = "unk_exp10_4568760", }, { children = { { - fileId = "4548976", - text = "4548976.m2", - value = "4548976.m2", + fileId = "4568761", + text = "4568761.m2", + value = "4568761.m2", }, }, - text = "unk_exp09_4548976", - value = "unk_exp09_4548976", + text = "unk_exp10_4568761", + value = "unk_exp10_4568761", }, { children = { { - fileId = "4548978", - text = "4548978.m2", - value = "4548978.m2", + fileId = "4568762", + text = "4568762.m2", + value = "4568762.m2", }, }, - text = "unk_exp09_4548978", - value = "unk_exp09_4548978", + text = "unk_exp10_4568762", + value = "unk_exp10_4568762", }, { children = { { - fileId = "4548979", - text = "4548979.m2", - value = "4548979.m2", + fileId = "4568764", + text = "4568764.m2", + value = "4568764.m2", }, }, - text = "unk_exp09_4548979", - value = "unk_exp09_4548979", + text = "unk_exp10_4568764", + value = "unk_exp10_4568764", }, { children = { { - fileId = "4550041", - text = "4550041.m2", - value = "4550041.m2", + fileId = "4568765", + text = "4568765.m2", + value = "4568765.m2", }, }, - text = "unk_exp09_4550041", - value = "unk_exp09_4550041", + text = "unk_exp10_4568765", + value = "unk_exp10_4568765", }, { children = { { - fileId = "4551104", - text = "4551104.m2", - value = "4551104.m2", + fileId = "4568766", + text = "4568766.m2", + value = "4568766.m2", }, }, - text = "unk_exp09_4551104", - value = "unk_exp09_4551104", + text = "unk_exp10_4568766", + value = "unk_exp10_4568766", }, { children = { { - fileId = "4551105", - text = "4551105.m2", - value = "4551105.m2", + fileId = "4568767", + text = "4568767.m2", + value = "4568767.m2", }, }, - text = "unk_exp09_4551105", - value = "unk_exp09_4551105", + text = "unk_exp10_4568767", + value = "unk_exp10_4568767", }, { children = { { - fileId = "4551106", - text = "4551106.m2", - value = "4551106.m2", + fileId = "4569800", + text = "4569800.m2", + value = "4569800.m2", }, }, - text = "unk_exp09_4551106", - value = "unk_exp09_4551106", + text = "unk_exp10_4569800", + value = "unk_exp10_4569800", }, { children = { { - fileId = "4551107", - text = "4551107.m2", - value = "4551107.m2", + fileId = "4571380", + text = "4571380.m2", + value = "4571380.m2", }, }, - text = "unk_exp09_4551107", - value = "unk_exp09_4551107", + text = "unk_exp10_4571380", + value = "unk_exp10_4571380", }, { children = { { - fileId = "4551108", - text = "4551108.m2", - value = "4551108.m2", + fileId = "4571482", + text = "4571482.m2", + value = "4571482.m2", }, }, - text = "unk_exp09_4551108", - value = "unk_exp09_4551108", + text = "unk_exp10_4571482", + value = "unk_exp10_4571482", }, { children = { { - fileId = "4551109", - text = "4551109.m2", - value = "4551109.m2", + fileId = "4575073", + text = "4575073.m2", + value = "4575073.m2", }, }, - text = "unk_exp09_4551109", - value = "unk_exp09_4551109", + text = "unk_exp10_4575073", + value = "unk_exp10_4575073", }, { children = { { - fileId = "4551110", - text = "4551110.m2", - value = "4551110.m2", + fileId = "4575074", + text = "4575074.m2", + value = "4575074.m2", }, }, - text = "unk_exp09_4551110", - value = "unk_exp09_4551110", + text = "unk_exp10_4575074", + value = "unk_exp10_4575074", }, { children = { { - fileId = "4551111", - text = "4551111.m2", - value = "4551111.m2", + fileId = "4575075", + text = "4575075.m2", + value = "4575075.m2", }, }, - text = "unk_exp09_4551111", - value = "unk_exp09_4551111", + text = "unk_exp10_4575075", + value = "unk_exp10_4575075", }, { children = { { - fileId = "4551112", - text = "4551112.m2", - value = "4551112.m2", + fileId = "4575076", + text = "4575076.m2", + value = "4575076.m2", }, }, - text = "unk_exp09_4551112", - value = "unk_exp09_4551112", + text = "unk_exp10_4575076", + value = "unk_exp10_4575076", }, { children = { { - fileId = "4551113", - text = "4551113.m2", - value = "4551113.m2", + fileId = "4609595", + text = "4609595.m2", + value = "4609595.m2", }, }, - text = "unk_exp09_4551113", - value = "unk_exp09_4551113", + text = "unk_exp10_4609595", + value = "unk_exp10_4609595", }, { children = { { - fileId = "4551114", - text = "4551114.m2", - value = "4551114.m2", + fileId = "4609982", + text = "4609982.m2", + value = "4609982.m2", }, }, - text = "unk_exp09_4551114", - value = "unk_exp09_4551114", + text = "unk_exp10_4609982", + value = "unk_exp10_4609982", }, { children = { { - fileId = "4551442", - text = "4551442.m2", - value = "4551442.m2", + fileId = "4609983", + text = "4609983.m2", + value = "4609983.m2", }, }, - text = "unk_exp09_4551442", - value = "unk_exp09_4551442", + text = "unk_exp10_4609983", + value = "unk_exp10_4609983", }, { children = { { - fileId = "4551445", - text = "4551445.m2", - value = "4551445.m2", + fileId = "4609984", + text = "4609984.m2", + value = "4609984.m2", }, }, - text = "unk_exp09_4551445", - value = "unk_exp09_4551445", + text = "unk_exp10_4609984", + value = "unk_exp10_4609984", }, { children = { { - fileId = "4551446", - text = "4551446.m2", - value = "4551446.m2", + fileId = "4609993", + text = "4609993.m2", + value = "4609993.m2", }, }, - text = "unk_exp09_4551446", - value = "unk_exp09_4551446", + text = "unk_exp10_4609993", + value = "unk_exp10_4609993", }, { children = { { - fileId = "4552767", - text = "4552767.m2", - value = "4552767.m2", + fileId = "4609994", + text = "4609994.m2", + value = "4609994.m2", }, }, - text = "unk_exp09_4552767", - value = "unk_exp09_4552767", + text = "unk_exp10_4609994", + value = "unk_exp10_4609994", }, { children = { { - fileId = "4552768", - text = "4552768.m2", - value = "4552768.m2", + fileId = "4609996", + text = "4609996.m2", + value = "4609996.m2", }, }, - text = "unk_exp09_4552768", - value = "unk_exp09_4552768", + text = "unk_exp10_4609996", + value = "unk_exp10_4609996", }, { children = { { - fileId = "4552769", - text = "4552769.m2", - value = "4552769.m2", + fileId = "4609997", + text = "4609997.m2", + value = "4609997.m2", }, }, - text = "unk_exp09_4552769", - value = "unk_exp09_4552769", + text = "unk_exp10_4609997", + value = "unk_exp10_4609997", }, { children = { { - fileId = "4552770", - text = "4552770.m2", - value = "4552770.m2", + fileId = "4611069", + text = "4611069.m2", + value = "4611069.m2", }, }, - text = "unk_exp09_4552770", - value = "unk_exp09_4552770", + text = "unk_exp10_4611069", + value = "unk_exp10_4611069", }, { children = { { - fileId = "4552771", - text = "4552771.m2", - value = "4552771.m2", + fileId = "4611070", + text = "4611070.m2", + value = "4611070.m2", }, }, - text = "unk_exp09_4552771", - value = "unk_exp09_4552771", + text = "unk_exp10_4611070", + value = "unk_exp10_4611070", }, { children = { { - fileId = "4552772", - text = "4552772.m2", - value = "4552772.m2", + fileId = "4611071", + text = "4611071.m2", + value = "4611071.m2", }, }, - text = "unk_exp09_4552772", - value = "unk_exp09_4552772", + text = "unk_exp10_4611071", + value = "unk_exp10_4611071", }, { children = { { - fileId = "4552773", - text = "4552773.m2", - value = "4552773.m2", + fileId = "4611072", + text = "4611072.m2", + value = "4611072.m2", }, }, - text = "unk_exp09_4552773", - value = "unk_exp09_4552773", + text = "unk_exp10_4611072", + value = "unk_exp10_4611072", }, { children = { { - fileId = "4552774", - text = "4552774.m2", - value = "4552774.m2", + fileId = "4611073", + text = "4611073.m2", + value = "4611073.m2", }, }, - text = "unk_exp09_4552774", - value = "unk_exp09_4552774", + text = "unk_exp10_4611073", + value = "unk_exp10_4611073", }, { children = { { - fileId = "4552775", - text = "4552775.m2", - value = "4552775.m2", + fileId = "4611074", + text = "4611074.m2", + value = "4611074.m2", }, }, - text = "unk_exp09_4552775", - value = "unk_exp09_4552775", + text = "unk_exp10_4611074", + value = "unk_exp10_4611074", }, { children = { { - fileId = "4552776", - text = "4552776.m2", - value = "4552776.m2", + fileId = "4611554", + text = "4611554.m2", + value = "4611554.m2", }, }, - text = "unk_exp09_4552776", - value = "unk_exp09_4552776", + text = "unk_exp10_4611554", + value = "unk_exp10_4611554", }, { children = { { - fileId = "4552871", - text = "4552871.m2", - value = "4552871.m2", + fileId = "4611555", + text = "4611555.m2", + value = "4611555.m2", }, }, - text = "unk_exp09_4552871", - value = "unk_exp09_4552871", + text = "unk_exp10_4611555", + value = "unk_exp10_4611555", }, { children = { { - fileId = "4552872", - text = "4552872.m2", - value = "4552872.m2", + fileId = "4611688", + text = "4611688.m2", + value = "4611688.m2", }, }, - text = "unk_exp09_4552872", - value = "unk_exp09_4552872", + text = "unk_exp10_4611688", + value = "unk_exp10_4611688", }, { children = { { - fileId = "4555849", - text = "4555849.m2", - value = "4555849.m2", + fileId = "4612136", + text = "4612136.m2", + value = "4612136.m2", }, }, - text = "unk_exp09_4555849", - value = "unk_exp09_4555849", + text = "unk_exp10_4612136", + value = "unk_exp10_4612136", }, { children = { { - fileId = "4555850", - text = "4555850.m2", - value = "4555850.m2", + fileId = "4612137", + text = "4612137.m2", + value = "4612137.m2", }, }, - text = "unk_exp09_4555850", - value = "unk_exp09_4555850", + text = "unk_exp10_4612137", + value = "unk_exp10_4612137", }, { children = { { - fileId = "4556765", - text = "4556765.m2", - value = "4556765.m2", + fileId = "4612167", + text = "4612167.m2", + value = "4612167.m2", }, }, - text = "unk_exp09_4556765", - value = "unk_exp09_4556765", + text = "unk_exp10_4612167", + value = "unk_exp10_4612167", }, { children = { { - fileId = "4556766", - text = "4556766.m2", - value = "4556766.m2", + fileId = "4614109", + text = "4614109.m2", + value = "4614109.m2", }, }, - text = "unk_exp09_4556766", - value = "unk_exp09_4556766", + text = "unk_exp10_4614109", + value = "unk_exp10_4614109", }, { children = { { - fileId = "4556767", - text = "4556767.m2", - value = "4556767.m2", + fileId = "4614110", + text = "4614110.m2", + value = "4614110.m2", }, }, - text = "unk_exp09_4556767", - value = "unk_exp09_4556767", + text = "unk_exp10_4614110", + value = "unk_exp10_4614110", }, { children = { { - fileId = "4557573", - text = "4557573.m2", - value = "4557573.m2", + fileId = "4614111", + text = "4614111.m2", + value = "4614111.m2", }, }, - text = "unk_exp09_4557573", - value = "unk_exp09_4557573", + text = "unk_exp10_4614111", + value = "unk_exp10_4614111", }, { children = { { - fileId = "4557574", - text = "4557574.m2", - value = "4557574.m2", + fileId = "4614112", + text = "4614112.m2", + value = "4614112.m2", }, }, - text = "unk_exp09_4557574", - value = "unk_exp09_4557574", + text = "unk_exp10_4614112", + value = "unk_exp10_4614112", }, { children = { { - fileId = "4557575", - text = "4557575.m2", - value = "4557575.m2", + fileId = "4615192", + text = "4615192.m2", + value = "4615192.m2", }, }, - text = "unk_exp09_4557575", - value = "unk_exp09_4557575", + text = "unk_exp10_4615192", + value = "unk_exp10_4615192", }, { children = { { - fileId = "4557590", - text = "4557590.m2", - value = "4557590.m2", + fileId = "4615753", + text = "4615753.m2", + value = "4615753.m2", }, }, - text = "unk_exp09_4557590", - value = "unk_exp09_4557590", + text = "unk_exp10_4615753", + value = "unk_exp10_4615753", }, { children = { { - fileId = "4557591", - text = "4557591.m2", - value = "4557591.m2", + fileId = "4615754", + text = "4615754.m2", + value = "4615754.m2", }, }, - text = "unk_exp09_4557591", - value = "unk_exp09_4557591", + text = "unk_exp10_4615754", + value = "unk_exp10_4615754", }, { children = { { - fileId = "4557592", - text = "4557592.m2", - value = "4557592.m2", + fileId = "4615755", + text = "4615755.m2", + value = "4615755.m2", }, }, - text = "unk_exp09_4557592", - value = "unk_exp09_4557592", + text = "unk_exp10_4615755", + value = "unk_exp10_4615755", }, { children = { { - fileId = "4558379", - text = "4558379.m2", - value = "4558379.m2", + fileId = "4615756", + text = "4615756.m2", + value = "4615756.m2", }, }, - text = "unk_exp09_4558379", - value = "unk_exp09_4558379", + text = "unk_exp10_4615756", + value = "unk_exp10_4615756", }, { children = { { - fileId = "4558380", - text = "4558380.m2", - value = "4558380.m2", + fileId = "4618531", + text = "4618531.m2", + value = "4618531.m2", }, }, - text = "unk_exp09_4558380", - value = "unk_exp09_4558380", + text = "unk_exp10_4618531", + value = "unk_exp10_4618531", }, { children = { { - fileId = "4558381", - text = "4558381.m2", - value = "4558381.m2", + fileId = "4618715", + text = "4618715.m2", + value = "4618715.m2", }, }, - text = "unk_exp09_4558381", - value = "unk_exp09_4558381", + text = "unk_exp10_4618715", + value = "unk_exp10_4618715", }, { children = { { - fileId = "4558382", - text = "4558382.m2", - value = "4558382.m2", + fileId = "4618717", + text = "4618717.m2", + value = "4618717.m2", }, }, - text = "unk_exp09_4558382", - value = "unk_exp09_4558382", + text = "unk_exp10_4618717", + value = "unk_exp10_4618717", }, { children = { { - fileId = "4558383", - text = "4558383.m2", - value = "4558383.m2", + fileId = "4618719", + text = "4618719.m2", + value = "4618719.m2", }, }, - text = "unk_exp09_4558383", - value = "unk_exp09_4558383", + text = "unk_exp10_4618719", + value = "unk_exp10_4618719", }, { children = { { - fileId = "4558384", - text = "4558384.m2", - value = "4558384.m2", + fileId = "4618720", + text = "4618720.m2", + value = "4618720.m2", }, }, - text = "unk_exp09_4558384", - value = "unk_exp09_4558384", + text = "unk_exp10_4618720", + value = "unk_exp10_4618720", }, { children = { { - fileId = "2903202", - text = "7xp_waterfall_top_2903202.m2", - value = "7xp_waterfall_top_2903202.m2", - }, - { - fileId = "2903203", - text = "7xp_waterfall_top_2903203.m2", - value = "7xp_waterfall_top_2903203.m2", - }, - { - fileId = "2903204", - text = "7xp_waterfall_top_2903204.m2", - value = "7xp_waterfall_top_2903204.m2", - }, - { - fileId = "2903205", - text = "7xp_waterfall_top_2903205.m2", - value = "7xp_waterfall_top_2903205.m2", - }, - { - fileId = "2903206", - text = "7xp_waterfall_top_2903206.m2", - value = "7xp_waterfall_top_2903206.m2", - }, - { - fileId = "2903209", - text = "7xp_waterfall_top_2903209.m2", - value = "7xp_waterfall_top_2903209.m2", - }, - { - fileId = "2903210", - text = "7xp_waterfall_top_2903210.m2", - value = "7xp_waterfall_top_2903210.m2", - }, - { - fileId = "2903211", - text = "7xp_waterfall_top_2903211.m2", - value = "7xp_waterfall_top_2903211.m2", - }, - { - fileId = "2903212", - text = "7xp_waterfall_top_2903212.m2", - value = "7xp_waterfall_top_2903212.m2", - }, - { - fileId = "2903213", - text = "7xp_waterfall_top_2903213.m2", - value = "7xp_waterfall_top_2903213.m2", - }, - { - fileId = "2903214", - text = "7xp_waterfall_top_2903214.m2", - value = "7xp_waterfall_top_2903214.m2", + fileId = "4618937", + text = "4618937.m2", + value = "4618937.m2", }, + }, + text = "unk_exp10_4618937", + value = "unk_exp10_4618937", + }, + { + children = { { - fileId = "2903215", - text = "7xp_waterfall_top_2903215.m2", - value = "7xp_waterfall_top_2903215.m2", + fileId = "4618940", + text = "4618940.m2", + value = "4618940.m2", }, + }, + text = "unk_exp10_4618940", + value = "unk_exp10_4618940", + }, + { + children = { { - fileId = "2903216", - text = "7xp_waterfall_top_2903216.m2", - value = "7xp_waterfall_top_2903216.m2", + fileId = "4618941", + text = "4618941.m2", + value = "4618941.m2", }, + }, + text = "unk_exp10_4618941", + value = "unk_exp10_4618941", + }, + { + children = { { - fileId = "2903217", - text = "7xp_waterfall_top_2903217.m2", - value = "7xp_waterfall_top_2903217.m2", + fileId = "4619652", + text = "4619652.m2", + value = "4619652.m2", }, + }, + text = "unk_exp10_4619652", + value = "unk_exp10_4619652", + }, + { + children = { { - fileId = "2903218", - text = "7xp_waterfall_top_2903218.m2", - value = "7xp_waterfall_top_2903218.m2", + fileId = "4619860", + text = "4619860.m2", + value = "4619860.m2", }, + }, + text = "unk_exp10_4619860", + value = "unk_exp10_4619860", + }, + { + children = { { - fileId = "2903219", - text = "7xp_waterfall_top_2903219.m2", - value = "7xp_waterfall_top_2903219.m2", + fileId = "4620278", + text = "4620278.m2", + value = "4620278.m2", }, + }, + text = "unk_exp10_4620278", + value = "unk_exp10_4620278", + }, + { + children = { { - fileId = "2903220", - text = "7xp_waterfall_top_2903220.m2", - value = "7xp_waterfall_top_2903220.m2", + fileId = "4620432", + text = "4620432.m2", + value = "4620432.m2", }, + }, + text = "unk_exp10_4620432", + value = "unk_exp10_4620432", + }, + { + children = { { - fileId = "2903221", - text = "7xp_waterfall_top_2903221.m2", - value = "7xp_waterfall_top_2903221.m2", + fileId = "4620446", + text = "4620446.m2", + value = "4620446.m2", }, }, - text = "unk_exp09_7xp_waterfall_top", - value = "unk_exp09_7xp_waterfall_top", + text = "unk_exp10_4620446", + value = "unk_exp10_4620446", }, { children = { { - fileId = "4559603", - text = "4559603.m2", - value = "4559603.m2", + fileId = "4620894", + text = "4620894.m2", + value = "4620894.m2", }, }, - text = "unk_exp10_4559603", - value = "unk_exp10_4559603", + text = "unk_exp10_4620894", + value = "unk_exp10_4620894", }, { children = { { - fileId = "4559604", - text = "4559604.m2", - value = "4559604.m2", + fileId = "4620925", + text = "4620925.m2", + value = "4620925.m2", }, }, - text = "unk_exp10_4559604", - value = "unk_exp10_4559604", + text = "unk_exp10_4620925", + value = "unk_exp10_4620925", }, { children = { { - fileId = "4559605", - text = "4559605.m2", - value = "4559605.m2", + fileId = "4620926", + text = "4620926.m2", + value = "4620926.m2", }, }, - text = "unk_exp10_4559605", - value = "unk_exp10_4559605", + text = "unk_exp10_4620926", + value = "unk_exp10_4620926", }, { children = { { - fileId = "4559606", - text = "4559606.m2", - value = "4559606.m2", + fileId = "4620931", + text = "4620931.m2", + value = "4620931.m2", }, }, - text = "unk_exp10_4559606", - value = "unk_exp10_4559606", + text = "unk_exp10_4620931", + value = "unk_exp10_4620931", }, { children = { { - fileId = "4559608", - text = "4559608.m2", - value = "4559608.m2", + fileId = "4620932", + text = "4620932.m2", + value = "4620932.m2", }, }, - text = "unk_exp10_4559608", - value = "unk_exp10_4559608", + text = "unk_exp10_4620932", + value = "unk_exp10_4620932", }, { children = { { - fileId = "4559611", - text = "4559611.m2", - value = "4559611.m2", + fileId = "4620934", + text = "4620934.m2", + value = "4620934.m2", }, }, - text = "unk_exp10_4559611", - value = "unk_exp10_4559611", + text = "unk_exp10_4620934", + value = "unk_exp10_4620934", }, { children = { { - fileId = "4559614", - text = "4559614.m2", - value = "4559614.m2", + fileId = "4620936", + text = "4620936.m2", + value = "4620936.m2", }, }, - text = "unk_exp10_4559614", - value = "unk_exp10_4559614", + text = "unk_exp10_4620936", + value = "unk_exp10_4620936", }, { children = { { - fileId = "4559615", - text = "4559615.m2", - value = "4559615.m2", + fileId = "4620937", + text = "4620937.m2", + value = "4620937.m2", }, }, - text = "unk_exp10_4559615", - value = "unk_exp10_4559615", + text = "unk_exp10_4620937", + value = "unk_exp10_4620937", }, { children = { { - fileId = "4559616", - text = "4559616.m2", - value = "4559616.m2", + fileId = "4621363", + text = "4621363.m2", + value = "4621363.m2", }, }, - text = "unk_exp10_4559616", - value = "unk_exp10_4559616", + text = "unk_exp10_4621363", + value = "unk_exp10_4621363", }, { children = { { - fileId = "4559617", - text = "4559617.m2", - value = "4559617.m2", + fileId = "4621364", + text = "4621364.m2", + value = "4621364.m2", }, }, - text = "unk_exp10_4559617", - value = "unk_exp10_4559617", + text = "unk_exp10_4621364", + value = "unk_exp10_4621364", }, { children = { { - fileId = "4559618", - text = "4559618.m2", - value = "4559618.m2", + fileId = "4621366", + text = "4621366.m2", + value = "4621366.m2", }, }, - text = "unk_exp10_4559618", - value = "unk_exp10_4559618", + text = "unk_exp10_4621366", + value = "unk_exp10_4621366", }, { children = { { - fileId = "4559620", - text = "4559620.m2", - value = "4559620.m2", + fileId = "4621369", + text = "4621369.m2", + value = "4621369.m2", }, }, - text = "unk_exp10_4559620", - value = "unk_exp10_4559620", + text = "unk_exp10_4621369", + value = "unk_exp10_4621369", }, { children = { { - fileId = "4559621", - text = "4559621.m2", - value = "4559621.m2", + fileId = "4621373", + text = "4621373.m2", + value = "4621373.m2", }, }, - text = "unk_exp10_4559621", - value = "unk_exp10_4559621", + text = "unk_exp10_4621373", + value = "unk_exp10_4621373", }, { children = { { - fileId = "4559622", - text = "4559622.m2", - value = "4559622.m2", + fileId = "4621374", + text = "4621374.m2", + value = "4621374.m2", }, }, - text = "unk_exp10_4559622", - value = "unk_exp10_4559622", + text = "unk_exp10_4621374", + value = "unk_exp10_4621374", }, { children = { { - fileId = "4559623", - text = "4559623.m2", - value = "4559623.m2", + fileId = "4621375", + text = "4621375.m2", + value = "4621375.m2", }, }, - text = "unk_exp10_4559623", - value = "unk_exp10_4559623", + text = "unk_exp10_4621375", + value = "unk_exp10_4621375", }, { children = { { - fileId = "4559624", - text = "4559624.m2", - value = "4559624.m2", + fileId = "4621376", + text = "4621376.m2", + value = "4621376.m2", }, }, - text = "unk_exp10_4559624", - value = "unk_exp10_4559624", + text = "unk_exp10_4621376", + value = "unk_exp10_4621376", }, { children = { { - fileId = "4559626", - text = "4559626.m2", - value = "4559626.m2", + fileId = "4621377", + text = "4621377.m2", + value = "4621377.m2", }, }, - text = "unk_exp10_4559626", - value = "unk_exp10_4559626", + text = "unk_exp10_4621377", + value = "unk_exp10_4621377", }, { children = { { - fileId = "4559628", - text = "4559628.m2", - value = "4559628.m2", + fileId = "4621378", + text = "4621378.m2", + value = "4621378.m2", }, }, - text = "unk_exp10_4559628", - value = "unk_exp10_4559628", + text = "unk_exp10_4621378", + value = "unk_exp10_4621378", }, { children = { { - fileId = "4559629", - text = "4559629.m2", - value = "4559629.m2", + fileId = "4621379", + text = "4621379.m2", + value = "4621379.m2", }, }, - text = "unk_exp10_4559629", - value = "unk_exp10_4559629", + text = "unk_exp10_4621379", + value = "unk_exp10_4621379", }, { children = { { - fileId = "4559630", - text = "4559630.m2", - value = "4559630.m2", + fileId = "4621380", + text = "4621380.m2", + value = "4621380.m2", }, }, - text = "unk_exp10_4559630", - value = "unk_exp10_4559630", + text = "unk_exp10_4621380", + value = "unk_exp10_4621380", }, { children = { { - fileId = "4559631", - text = "4559631.m2", - value = "4559631.m2", + fileId = "4621381", + text = "4621381.m2", + value = "4621381.m2", }, }, - text = "unk_exp10_4559631", - value = "unk_exp10_4559631", + text = "unk_exp10_4621381", + value = "unk_exp10_4621381", }, { children = { { - fileId = "4559632", - text = "4559632.m2", - value = "4559632.m2", + fileId = "4621383", + text = "4621383.m2", + value = "4621383.m2", }, }, - text = "unk_exp10_4559632", - value = "unk_exp10_4559632", + text = "unk_exp10_4621383", + value = "unk_exp10_4621383", }, { children = { { - fileId = "4559633", - text = "4559633.m2", - value = "4559633.m2", + fileId = "4623364", + text = "4623364.m2", + value = "4623364.m2", }, }, - text = "unk_exp10_4559633", - value = "unk_exp10_4559633", + text = "unk_exp10_4623364", + value = "unk_exp10_4623364", }, { children = { { - fileId = "4559634", - text = "4559634.m2", - value = "4559634.m2", + fileId = "4623365", + text = "4623365.m2", + value = "4623365.m2", }, }, - text = "unk_exp10_4559634", - value = "unk_exp10_4559634", + text = "unk_exp10_4623365", + value = "unk_exp10_4623365", }, { children = { { - fileId = "4559635", - text = "4559635.m2", - value = "4559635.m2", + fileId = "4623366", + text = "4623366.m2", + value = "4623366.m2", }, }, - text = "unk_exp10_4559635", - value = "unk_exp10_4559635", + text = "unk_exp10_4623366", + value = "unk_exp10_4623366", }, { children = { { - fileId = "4559636", - text = "4559636.m2", - value = "4559636.m2", + fileId = "4623367", + text = "4623367.m2", + value = "4623367.m2", }, }, - text = "unk_exp10_4559636", - value = "unk_exp10_4559636", + text = "unk_exp10_4623367", + value = "unk_exp10_4623367", }, { children = { { - fileId = "4559637", - text = "4559637.m2", - value = "4559637.m2", + fileId = "4623973", + text = "4623973.m2", + value = "4623973.m2", }, }, - text = "unk_exp10_4559637", - value = "unk_exp10_4559637", + text = "unk_exp10_4623973", + value = "unk_exp10_4623973", }, { children = { { - fileId = "4559638", - text = "4559638.m2", - value = "4559638.m2", + fileId = "4624443", + text = "4624443.m2", + value = "4624443.m2", }, }, - text = "unk_exp10_4559638", - value = "unk_exp10_4559638", + text = "unk_exp10_4624443", + value = "unk_exp10_4624443", }, { children = { { - fileId = "4559639", - text = "4559639.m2", - value = "4559639.m2", + fileId = "4625121", + text = "4625121.m2", + value = "4625121.m2", }, }, - text = "unk_exp10_4559639", - value = "unk_exp10_4559639", + text = "unk_exp10_4625121", + value = "unk_exp10_4625121", }, { children = { { - fileId = "4559640", - text = "4559640.m2", - value = "4559640.m2", + fileId = "4625124", + text = "4625124.m2", + value = "4625124.m2", }, }, - text = "unk_exp10_4559640", - value = "unk_exp10_4559640", + text = "unk_exp10_4625124", + value = "unk_exp10_4625124", }, { children = { { - fileId = "4559816", - text = "4559816.m2", - value = "4559816.m2", + fileId = "4625125", + text = "4625125.m2", + value = "4625125.m2", }, }, - text = "unk_exp10_4559816", - value = "unk_exp10_4559816", + text = "unk_exp10_4625125", + value = "unk_exp10_4625125", }, { children = { { - fileId = "4559817", - text = "4559817.m2", - value = "4559817.m2", + fileId = "4627253", + text = "4627253.m2", + value = "4627253.m2", }, }, - text = "unk_exp10_4559817", - value = "unk_exp10_4559817", + text = "unk_exp10_4627253", + value = "unk_exp10_4627253", }, { children = { { - fileId = "4559818", - text = "4559818.m2", - value = "4559818.m2", + fileId = "4628620", + text = "4628620.m2", + value = "4628620.m2", }, }, - text = "unk_exp10_4559818", - value = "unk_exp10_4559818", + text = "unk_exp10_4628620", + value = "unk_exp10_4628620", }, { children = { { - fileId = "4559819", - text = "4559819.m2", - value = "4559819.m2", + fileId = "4629900", + text = "4629900.m2", + value = "4629900.m2", }, }, - text = "unk_exp10_4559819", - value = "unk_exp10_4559819", + text = "unk_exp10_4629900", + value = "unk_exp10_4629900", }, { children = { { - fileId = "4559820", - text = "4559820.m2", - value = "4559820.m2", + fileId = "4629901", + text = "4629901.m2", + value = "4629901.m2", }, }, - text = "unk_exp10_4559820", - value = "unk_exp10_4559820", + text = "unk_exp10_4629901", + value = "unk_exp10_4629901", }, { children = { { - fileId = "4559821", - text = "4559821.m2", - value = "4559821.m2", + fileId = "4629902", + text = "4629902.m2", + value = "4629902.m2", }, }, - text = "unk_exp10_4559821", - value = "unk_exp10_4559821", + text = "unk_exp10_4629902", + value = "unk_exp10_4629902", }, { children = { { - fileId = "4560920", - text = "4560920.m2", - value = "4560920.m2", + fileId = "4629903", + text = "4629903.m2", + value = "4629903.m2", }, }, - text = "unk_exp10_4560920", - value = "unk_exp10_4560920", + text = "unk_exp10_4629903", + value = "unk_exp10_4629903", }, { children = { { - fileId = "4563624", - text = "4563624.m2", - value = "4563624.m2", + fileId = "4629904", + text = "4629904.m2", + value = "4629904.m2", }, }, - text = "unk_exp10_4563624", - value = "unk_exp10_4563624", + text = "unk_exp10_4629904", + value = "unk_exp10_4629904", }, { children = { { - fileId = "4563827", - text = "4563827.m2", - value = "4563827.m2", + fileId = "4629905", + text = "4629905.m2", + value = "4629905.m2", }, }, - text = "unk_exp10_4563827", - value = "unk_exp10_4563827", + text = "unk_exp10_4629905", + value = "unk_exp10_4629905", }, { children = { { - fileId = "4563828", - text = "4563828.m2", - value = "4563828.m2", + fileId = "4629906", + text = "4629906.m2", + value = "4629906.m2", }, }, - text = "unk_exp10_4563828", - value = "unk_exp10_4563828", + text = "unk_exp10_4629906", + value = "unk_exp10_4629906", }, { children = { { - fileId = "4566484", - text = "4566484.m2", - value = "4566484.m2", + fileId = "4629907", + text = "4629907.m2", + value = "4629907.m2", }, }, - text = "unk_exp10_4566484", - value = "unk_exp10_4566484", + text = "unk_exp10_4629907", + value = "unk_exp10_4629907", }, { children = { { - fileId = "4566485", - text = "4566485.m2", - value = "4566485.m2", + fileId = "4629908", + text = "4629908.m2", + value = "4629908.m2", }, }, - text = "unk_exp10_4566485", - value = "unk_exp10_4566485", + text = "unk_exp10_4629908", + value = "unk_exp10_4629908", }, { children = { { - fileId = "4566506", - text = "4566506.m2", - value = "4566506.m2", + fileId = "4629909", + text = "4629909.m2", + value = "4629909.m2", }, }, - text = "unk_exp10_4566506", - value = "unk_exp10_4566506", + text = "unk_exp10_4629909", + value = "unk_exp10_4629909", }, { children = { - { - fileId = "4567149", - text = "4567149.m2", - value = "4567149.m2", + { + fileId = "4629910", + text = "4629910.m2", + value = "4629910.m2", }, }, - text = "unk_exp10_4567149", - value = "unk_exp10_4567149", + text = "unk_exp10_4629910", + value = "unk_exp10_4629910", }, { children = { { - fileId = "4568759", - text = "4568759.m2", - value = "4568759.m2", + fileId = "4629911", + text = "4629911.m2", + value = "4629911.m2", }, }, - text = "unk_exp10_4568759", - value = "unk_exp10_4568759", + text = "unk_exp10_4629911", + value = "unk_exp10_4629911", }, { children = { { - fileId = "4568760", - text = "4568760.m2", - value = "4568760.m2", + fileId = "4629912", + text = "4629912.m2", + value = "4629912.m2", }, }, - text = "unk_exp10_4568760", - value = "unk_exp10_4568760", + text = "unk_exp10_4629912", + value = "unk_exp10_4629912", }, { children = { { - fileId = "4568761", - text = "4568761.m2", - value = "4568761.m2", + fileId = "4629913", + text = "4629913.m2", + value = "4629913.m2", }, }, - text = "unk_exp10_4568761", - value = "unk_exp10_4568761", + text = "unk_exp10_4629913", + value = "unk_exp10_4629913", }, { children = { { - fileId = "4568762", - text = "4568762.m2", - value = "4568762.m2", + fileId = "4629914", + text = "4629914.m2", + value = "4629914.m2", }, }, - text = "unk_exp10_4568762", - value = "unk_exp10_4568762", + text = "unk_exp10_4629914", + value = "unk_exp10_4629914", }, { children = { { - fileId = "4568765", - text = "4568765.m2", - value = "4568765.m2", + fileId = "4629915", + text = "4629915.m2", + value = "4629915.m2", }, }, - text = "unk_exp10_4568765", - value = "unk_exp10_4568765", + text = "unk_exp10_4629915", + value = "unk_exp10_4629915", }, { children = { { - fileId = "4568767", - text = "4568767.m2", - value = "4568767.m2", + fileId = "4630604", + text = "4630604.m2", + value = "4630604.m2", }, }, - text = "unk_exp10_4568767", - value = "unk_exp10_4568767", + text = "unk_exp10_4630604", + value = "unk_exp10_4630604", }, { children = { { - fileId = "4569800", - text = "4569800.m2", - value = "4569800.m2", + fileId = "4630910", + text = "4630910.m2", + value = "4630910.m2", }, }, - text = "unk_exp10_4569800", - value = "unk_exp10_4569800", + text = "unk_exp10_4630910", + value = "unk_exp10_4630910", }, { children = { { - fileId = "4571380", - text = "4571380.m2", - value = "4571380.m2", + fileId = "4630911", + text = "4630911.m2", + value = "4630911.m2", }, }, - text = "unk_exp10_4571380", - value = "unk_exp10_4571380", + text = "unk_exp10_4630911", + value = "unk_exp10_4630911", }, { children = { { - fileId = "4571482", - text = "4571482.m2", - value = "4571482.m2", + fileId = "4630912", + text = "4630912.m2", + value = "4630912.m2", }, }, - text = "unk_exp10_4571482", - value = "unk_exp10_4571482", + text = "unk_exp10_4630912", + value = "unk_exp10_4630912", }, { children = { { - fileId = "4575073", - text = "4575073.m2", - value = "4575073.m2", + fileId = "4630913", + text = "4630913.m2", + value = "4630913.m2", }, }, - text = "unk_exp10_4575073", - value = "unk_exp10_4575073", + text = "unk_exp10_4630913", + value = "unk_exp10_4630913", }, { children = { { - fileId = "4575074", - text = "4575074.m2", - value = "4575074.m2", + fileId = "4630914", + text = "4630914.m2", + value = "4630914.m2", }, }, - text = "unk_exp10_4575074", - value = "unk_exp10_4575074", + text = "unk_exp10_4630914", + value = "unk_exp10_4630914", }, { children = { { - fileId = "4575075", - text = "4575075.m2", - value = "4575075.m2", + fileId = "4630916", + text = "4630916.m2", + value = "4630916.m2", }, }, - text = "unk_exp10_4575075", - value = "unk_exp10_4575075", + text = "unk_exp10_4630916", + value = "unk_exp10_4630916", }, { children = { { - fileId = "4575076", - text = "4575076.m2", - value = "4575076.m2", + fileId = "4630917", + text = "4630917.m2", + value = "4630917.m2", }, }, - text = "unk_exp10_4575076", - value = "unk_exp10_4575076", + text = "unk_exp10_4630917", + value = "unk_exp10_4630917", }, { children = { { - fileId = "4609595", - text = "4609595.m2", - value = "4609595.m2", + fileId = "4630918", + text = "4630918.m2", + value = "4630918.m2", }, }, - text = "unk_exp10_4609595", - value = "unk_exp10_4609595", + text = "unk_exp10_4630918", + value = "unk_exp10_4630918", }, { children = { { - fileId = "4609982", - text = "4609982.m2", - value = "4609982.m2", + fileId = "4630919", + text = "4630919.m2", + value = "4630919.m2", }, }, - text = "unk_exp10_4609982", - value = "unk_exp10_4609982", + text = "unk_exp10_4630919", + value = "unk_exp10_4630919", }, { children = { { - fileId = "4609983", - text = "4609983.m2", - value = "4609983.m2", + fileId = "4631242", + text = "4631242.m2", + value = "4631242.m2", }, }, - text = "unk_exp10_4609983", - value = "unk_exp10_4609983", + text = "unk_exp10_4631242", + value = "unk_exp10_4631242", }, { children = { { - fileId = "4609984", - text = "4609984.m2", - value = "4609984.m2", + fileId = "4631245", + text = "4631245.m2", + value = "4631245.m2", }, }, - text = "unk_exp10_4609984", - value = "unk_exp10_4609984", + text = "unk_exp10_4631245", + value = "unk_exp10_4631245", }, { children = { { - fileId = "4609993", - text = "4609993.m2", - value = "4609993.m2", + fileId = "4631254", + text = "4631254.m2", + value = "4631254.m2", }, }, - text = "unk_exp10_4609993", - value = "unk_exp10_4609993", + text = "unk_exp10_4631254", + value = "unk_exp10_4631254", }, { children = { { - fileId = "4609994", - text = "4609994.m2", - value = "4609994.m2", + fileId = "4631255", + text = "4631255.m2", + value = "4631255.m2", }, }, - text = "unk_exp10_4609994", - value = "unk_exp10_4609994", + text = "unk_exp10_4631255", + value = "unk_exp10_4631255", }, { children = { { - fileId = "4609996", - text = "4609996.m2", - value = "4609996.m2", + fileId = "4631256", + text = "4631256.m2", + value = "4631256.m2", }, }, - text = "unk_exp10_4609996", - value = "unk_exp10_4609996", + text = "unk_exp10_4631256", + value = "unk_exp10_4631256", }, { children = { { - fileId = "4609997", - text = "4609997.m2", - value = "4609997.m2", + fileId = "4631534", + text = "4631534.m2", + value = "4631534.m2", }, }, - text = "unk_exp10_4609997", - value = "unk_exp10_4609997", + text = "unk_exp10_4631534", + value = "unk_exp10_4631534", }, { children = { { - fileId = "4611069", - text = "4611069.m2", - value = "4611069.m2", + fileId = "4632562", + text = "4632562.m2", + value = "4632562.m2", }, }, - text = "unk_exp10_4611069", - value = "unk_exp10_4611069", + text = "unk_exp10_4632562", + value = "unk_exp10_4632562", }, { children = { { - fileId = "4611070", - text = "4611070.m2", - value = "4611070.m2", + fileId = "4632563", + text = "4632563.m2", + value = "4632563.m2", }, }, - text = "unk_exp10_4611070", - value = "unk_exp10_4611070", + text = "unk_exp10_4632563", + value = "unk_exp10_4632563", }, { children = { { - fileId = "4611071", - text = "4611071.m2", - value = "4611071.m2", + fileId = "4632564", + text = "4632564.m2", + value = "4632564.m2", }, }, - text = "unk_exp10_4611071", - value = "unk_exp10_4611071", + text = "unk_exp10_4632564", + value = "unk_exp10_4632564", }, { children = { { - fileId = "4611072", - text = "4611072.m2", - value = "4611072.m2", + fileId = "4632565", + text = "4632565.m2", + value = "4632565.m2", }, }, - text = "unk_exp10_4611072", - value = "unk_exp10_4611072", + text = "unk_exp10_4632565", + value = "unk_exp10_4632565", }, { children = { { - fileId = "4611073", - text = "4611073.m2", - value = "4611073.m2", + fileId = "4632566", + text = "4632566.m2", + value = "4632566.m2", }, }, - text = "unk_exp10_4611073", - value = "unk_exp10_4611073", + text = "unk_exp10_4632566", + value = "unk_exp10_4632566", }, { children = { { - fileId = "4611074", - text = "4611074.m2", - value = "4611074.m2", + fileId = "4633558", + text = "4633558.m2", + value = "4633558.m2", }, }, - text = "unk_exp10_4611074", - value = "unk_exp10_4611074", + text = "unk_exp10_4633558", + value = "unk_exp10_4633558", }, { children = { { - fileId = "4611554", - text = "4611554.m2", - value = "4611554.m2", + fileId = "4633559", + text = "4633559.m2", + value = "4633559.m2", }, }, - text = "unk_exp10_4611554", - value = "unk_exp10_4611554", + text = "unk_exp10_4633559", + value = "unk_exp10_4633559", }, { children = { { - fileId = "4611555", - text = "4611555.m2", - value = "4611555.m2", + fileId = "4639487", + text = "4639487.m2", + value = "4639487.m2", }, }, - text = "unk_exp10_4611555", - value = "unk_exp10_4611555", + text = "unk_exp10_4639487", + value = "unk_exp10_4639487", }, { children = { { - fileId = "4611688", - text = "4611688.m2", - value = "4611688.m2", + fileId = "4640849", + text = "4640849.m2", + value = "4640849.m2", }, }, - text = "unk_exp10_4611688", - value = "unk_exp10_4611688", + text = "unk_exp10_4640849", + value = "unk_exp10_4640849", }, { children = { { - fileId = "4612136", - text = "4612136.m2", - value = "4612136.m2", + fileId = "4641143", + text = "4641143.m2", + value = "4641143.m2", }, }, - text = "unk_exp10_4612136", - value = "unk_exp10_4612136", + text = "unk_exp10_4641143", + value = "unk_exp10_4641143", }, { children = { { - fileId = "4612137", - text = "4612137.m2", - value = "4612137.m2", + fileId = "4643970", + text = "4643970.m2", + value = "4643970.m2", }, }, - text = "unk_exp10_4612137", - value = "unk_exp10_4612137", + text = "unk_exp10_4643970", + value = "unk_exp10_4643970", }, { children = { { - fileId = "4612167", - text = "4612167.m2", - value = "4612167.m2", + fileId = "4662791", + text = "4662791.m2", + value = "4662791.m2", }, }, - text = "unk_exp10_4612167", - value = "unk_exp10_4612167", + text = "unk_exp10_4662791", + value = "unk_exp10_4662791", }, { children = { { - fileId = "4614109", - text = "4614109.m2", - value = "4614109.m2", + fileId = "4663508", + text = "4663508.m2", + value = "4663508.m2", }, }, - text = "unk_exp10_4614109", - value = "unk_exp10_4614109", + text = "unk_exp10_4663508", + value = "unk_exp10_4663508", }, { children = { { - fileId = "4614110", - text = "4614110.m2", - value = "4614110.m2", + fileId = "4663521", + text = "4663521.m2", + value = "4663521.m2", }, }, - text = "unk_exp10_4614110", - value = "unk_exp10_4614110", + text = "unk_exp10_4663521", + value = "unk_exp10_4663521", }, { children = { { - fileId = "4614111", - text = "4614111.m2", - value = "4614111.m2", + fileId = "4663885", + text = "4663885.m2", + value = "4663885.m2", }, }, - text = "unk_exp10_4614111", - value = "unk_exp10_4614111", + text = "unk_exp10_4663885", + value = "unk_exp10_4663885", }, { children = { { - fileId = "4614112", - text = "4614112.m2", - value = "4614112.m2", + fileId = "4672153", + text = "4672153.m2", + value = "4672153.m2", }, }, - text = "unk_exp10_4614112", - value = "unk_exp10_4614112", + text = "unk_exp10_4672153", + value = "unk_exp10_4672153", }, { children = { { - fileId = "4615192", - text = "4615192.m2", - value = "4615192.m2", + fileId = "4672154", + text = "4672154.m2", + value = "4672154.m2", }, }, - text = "unk_exp10_4615192", - value = "unk_exp10_4615192", + text = "unk_exp10_4672154", + value = "unk_exp10_4672154", }, { children = { { - fileId = "4615753", - text = "4615753.m2", - value = "4615753.m2", + fileId = "4672155", + text = "4672155.m2", + value = "4672155.m2", }, }, - text = "unk_exp10_4615753", - value = "unk_exp10_4615753", + text = "unk_exp10_4672155", + value = "unk_exp10_4672155", }, { children = { { - fileId = "4615754", - text = "4615754.m2", - value = "4615754.m2", + fileId = "4672156", + text = "4672156.m2", + value = "4672156.m2", }, }, - text = "unk_exp10_4615754", - value = "unk_exp10_4615754", + text = "unk_exp10_4672156", + value = "unk_exp10_4672156", }, { children = { { - fileId = "4615755", - text = "4615755.m2", - value = "4615755.m2", + fileId = "4672157", + text = "4672157.m2", + value = "4672157.m2", }, }, - text = "unk_exp10_4615755", - value = "unk_exp10_4615755", + text = "unk_exp10_4672157", + value = "unk_exp10_4672157", }, { children = { { - fileId = "4615756", - text = "4615756.m2", - value = "4615756.m2", + fileId = "4672158", + text = "4672158.m2", + value = "4672158.m2", }, }, - text = "unk_exp10_4615756", - value = "unk_exp10_4615756", + text = "unk_exp10_4672158", + value = "unk_exp10_4672158", }, { children = { { - fileId = "4618531", - text = "4618531.m2", - value = "4618531.m2", + fileId = "4672159", + text = "4672159.m2", + value = "4672159.m2", }, }, - text = "unk_exp10_4618531", - value = "unk_exp10_4618531", + text = "unk_exp10_4672159", + value = "unk_exp10_4672159", }, { children = { { - fileId = "4618715", - text = "4618715.m2", - value = "4618715.m2", + fileId = "4672164", + text = "4672164.m2", + value = "4672164.m2", }, }, - text = "unk_exp10_4618715", - value = "unk_exp10_4618715", + text = "unk_exp10_4672164", + value = "unk_exp10_4672164", }, { children = { { - fileId = "4618717", - text = "4618717.m2", - value = "4618717.m2", + fileId = "4672165", + text = "4672165.m2", + value = "4672165.m2", }, }, - text = "unk_exp10_4618717", - value = "unk_exp10_4618717", + text = "unk_exp10_4672165", + value = "unk_exp10_4672165", }, { children = { { - fileId = "4618719", - text = "4618719.m2", - value = "4618719.m2", + fileId = "4672166", + text = "4672166.m2", + value = "4672166.m2", }, }, - text = "unk_exp10_4618719", - value = "unk_exp10_4618719", + text = "unk_exp10_4672166", + value = "unk_exp10_4672166", }, { children = { { - fileId = "4618720", - text = "4618720.m2", - value = "4618720.m2", + fileId = "4672167", + text = "4672167.m2", + value = "4672167.m2", }, }, - text = "unk_exp10_4618720", - value = "unk_exp10_4618720", + text = "unk_exp10_4672167", + value = "unk_exp10_4672167", }, { children = { { - fileId = "4618937", - text = "4618937.m2", - value = "4618937.m2", + fileId = "4672168", + text = "4672168.m2", + value = "4672168.m2", }, }, - text = "unk_exp10_4618937", - value = "unk_exp10_4618937", + text = "unk_exp10_4672168", + value = "unk_exp10_4672168", }, { children = { { - fileId = "4618940", - text = "4618940.m2", - value = "4618940.m2", + fileId = "4672169", + text = "4672169.m2", + value = "4672169.m2", }, }, - text = "unk_exp10_4618940", - value = "unk_exp10_4618940", + text = "unk_exp10_4672169", + value = "unk_exp10_4672169", }, { children = { { - fileId = "4618941", - text = "4618941.m2", - value = "4618941.m2", + fileId = "4672170", + text = "4672170.m2", + value = "4672170.m2", }, }, - text = "unk_exp10_4618941", - value = "unk_exp10_4618941", + text = "unk_exp10_4672170", + value = "unk_exp10_4672170", }, { children = { - { - fileId = "4619652", - text = "4619652.m2", - value = "4619652.m2", + { + fileId = "4673378", + text = "4673378.m2", + value = "4673378.m2", }, }, - text = "unk_exp10_4619652", - value = "unk_exp10_4619652", + text = "unk_exp10_4673378", + value = "unk_exp10_4673378", }, { children = { { - fileId = "4619860", - text = "4619860.m2", - value = "4619860.m2", + fileId = "4673382", + text = "4673382.m2", + value = "4673382.m2", }, }, - text = "unk_exp10_4619860", - value = "unk_exp10_4619860", + text = "unk_exp10_4673382", + value = "unk_exp10_4673382", }, { children = { { - fileId = "4620278", - text = "4620278.m2", - value = "4620278.m2", + fileId = "4673383", + text = "4673383.m2", + value = "4673383.m2", }, }, - text = "unk_exp10_4620278", - value = "unk_exp10_4620278", + text = "unk_exp10_4673383", + value = "unk_exp10_4673383", }, { children = { { - fileId = "4620432", - text = "4620432.m2", - value = "4620432.m2", + fileId = "4673384", + text = "4673384.m2", + value = "4673384.m2", }, }, - text = "unk_exp10_4620432", - value = "unk_exp10_4620432", + text = "unk_exp10_4673384", + value = "unk_exp10_4673384", }, { children = { { - fileId = "4620446", - text = "4620446.m2", - value = "4620446.m2", + fileId = "4673385", + text = "4673385.m2", + value = "4673385.m2", }, }, - text = "unk_exp10_4620446", - value = "unk_exp10_4620446", + text = "unk_exp10_4673385", + value = "unk_exp10_4673385", }, { children = { { - fileId = "4620894", - text = "4620894.m2", - value = "4620894.m2", + fileId = "4673386", + text = "4673386.m2", + value = "4673386.m2", }, }, - text = "unk_exp10_4620894", - value = "unk_exp10_4620894", + text = "unk_exp10_4673386", + value = "unk_exp10_4673386", }, { children = { { - fileId = "4620925", - text = "4620925.m2", - value = "4620925.m2", + fileId = "4673387", + text = "4673387.m2", + value = "4673387.m2", }, }, - text = "unk_exp10_4620925", - value = "unk_exp10_4620925", + text = "unk_exp10_4673387", + value = "unk_exp10_4673387", }, { children = { { - fileId = "4620926", - text = "4620926.m2", - value = "4620926.m2", + fileId = "4673697", + text = "4673697.m2", + value = "4673697.m2", }, }, - text = "unk_exp10_4620926", - value = "unk_exp10_4620926", + text = "unk_exp10_4673697", + value = "unk_exp10_4673697", }, { children = { { - fileId = "4620931", - text = "4620931.m2", - value = "4620931.m2", + fileId = "4673698", + text = "4673698.m2", + value = "4673698.m2", }, }, - text = "unk_exp10_4620931", - value = "unk_exp10_4620931", + text = "unk_exp10_4673698", + value = "unk_exp10_4673698", }, { children = { { - fileId = "4620932", - text = "4620932.m2", - value = "4620932.m2", + fileId = "4673699", + text = "4673699.m2", + value = "4673699.m2", }, }, - text = "unk_exp10_4620932", - value = "unk_exp10_4620932", + text = "unk_exp10_4673699", + value = "unk_exp10_4673699", }, { children = { { - fileId = "4620934", - text = "4620934.m2", - value = "4620934.m2", + fileId = "4673924", + text = "4673924.m2", + value = "4673924.m2", }, }, - text = "unk_exp10_4620934", - value = "unk_exp10_4620934", + text = "unk_exp10_4673924", + value = "unk_exp10_4673924", }, { children = { { - fileId = "4620936", - text = "4620936.m2", - value = "4620936.m2", + fileId = "4674687", + text = "4674687.m2", + value = "4674687.m2", }, }, - text = "unk_exp10_4620936", - value = "unk_exp10_4620936", + text = "unk_exp10_4674687", + value = "unk_exp10_4674687", }, { children = { { - fileId = "4620937", - text = "4620937.m2", - value = "4620937.m2", + fileId = "4674693", + text = "4674693.m2", + value = "4674693.m2", }, }, - text = "unk_exp10_4620937", - value = "unk_exp10_4620937", + text = "unk_exp10_4674693", + value = "unk_exp10_4674693", }, { children = { { - fileId = "4621363", - text = "4621363.m2", - value = "4621363.m2", + fileId = "4674695", + text = "4674695.m2", + value = "4674695.m2", }, }, - text = "unk_exp10_4621363", - value = "unk_exp10_4621363", + text = "unk_exp10_4674695", + value = "unk_exp10_4674695", }, { children = { { - fileId = "4621364", - text = "4621364.m2", - value = "4621364.m2", + fileId = "4675611", + text = "4675611.m2", + value = "4675611.m2", }, }, - text = "unk_exp10_4621364", - value = "unk_exp10_4621364", + text = "unk_exp10_4675611", + value = "unk_exp10_4675611", }, { children = { { - fileId = "4621366", - text = "4621366.m2", - value = "4621366.m2", + fileId = "4680340", + text = "4680340.m2", + value = "4680340.m2", }, }, - text = "unk_exp10_4621366", - value = "unk_exp10_4621366", + text = "unk_exp10_4680340", + value = "unk_exp10_4680340", }, { children = { { - fileId = "4621369", - text = "4621369.m2", - value = "4621369.m2", + fileId = "4680721", + text = "4680721.m2", + value = "4680721.m2", }, }, - text = "unk_exp10_4621369", - value = "unk_exp10_4621369", + text = "unk_exp10_4680721", + value = "unk_exp10_4680721", }, { children = { { - fileId = "4621373", - text = "4621373.m2", - value = "4621373.m2", + fileId = "4680736", + text = "4680736.m2", + value = "4680736.m2", }, }, - text = "unk_exp10_4621373", - value = "unk_exp10_4621373", + text = "unk_exp10_4680736", + value = "unk_exp10_4680736", }, { children = { { - fileId = "4621374", - text = "4621374.m2", - value = "4621374.m2", + fileId = "4686796", + text = "4686796.m2", + value = "4686796.m2", }, }, - text = "unk_exp10_4621374", - value = "unk_exp10_4621374", + text = "unk_exp10_4686796", + value = "unk_exp10_4686796", }, { children = { { - fileId = "4621375", - text = "4621375.m2", - value = "4621375.m2", + fileId = "4686797", + text = "4686797.m2", + value = "4686797.m2", }, }, - text = "unk_exp10_4621375", - value = "unk_exp10_4621375", + text = "unk_exp10_4686797", + value = "unk_exp10_4686797", }, { children = { { - fileId = "4621376", - text = "4621376.m2", - value = "4621376.m2", + fileId = "4687145", + text = "4687145.m2", + value = "4687145.m2", }, }, - text = "unk_exp10_4621376", - value = "unk_exp10_4621376", + text = "unk_exp10_4687145", + value = "unk_exp10_4687145", }, { children = { { - fileId = "4621377", - text = "4621377.m2", - value = "4621377.m2", + fileId = "4689145", + text = "4689145.m2", + value = "4689145.m2", }, }, - text = "unk_exp10_4621377", - value = "unk_exp10_4621377", + text = "unk_exp10_4689145", + value = "unk_exp10_4689145", }, { children = { { - fileId = "4621378", - text = "4621378.m2", - value = "4621378.m2", + fileId = "4689146", + text = "4689146.m2", + value = "4689146.m2", }, }, - text = "unk_exp10_4621378", - value = "unk_exp10_4621378", + text = "unk_exp10_4689146", + value = "unk_exp10_4689146", }, { children = { { - fileId = "4621379", - text = "4621379.m2", - value = "4621379.m2", + fileId = "4689420", + text = "4689420.m2", + value = "4689420.m2", }, }, - text = "unk_exp10_4621379", - value = "unk_exp10_4621379", + text = "unk_exp10_4689420", + value = "unk_exp10_4689420", }, { children = { { - fileId = "4621380", - text = "4621380.m2", - value = "4621380.m2", + fileId = "4689421", + text = "4689421.m2", + value = "4689421.m2", }, }, - text = "unk_exp10_4621380", - value = "unk_exp10_4621380", + text = "unk_exp10_4689421", + value = "unk_exp10_4689421", }, { children = { { - fileId = "4621381", - text = "4621381.m2", - value = "4621381.m2", + fileId = "4689429", + text = "4689429.m2", + value = "4689429.m2", }, }, - text = "unk_exp10_4621381", - value = "unk_exp10_4621381", + text = "unk_exp10_4689429", + value = "unk_exp10_4689429", }, { children = { { - fileId = "4621383", - text = "4621383.m2", - value = "4621383.m2", + fileId = "4689441", + text = "4689441.m2", + value = "4689441.m2", }, }, - text = "unk_exp10_4621383", - value = "unk_exp10_4621383", + text = "unk_exp10_4689441", + value = "unk_exp10_4689441", }, { children = { { - fileId = "4623364", - text = "4623364.m2", - value = "4623364.m2", + fileId = "4690402", + text = "4690402.m2", + value = "4690402.m2", }, }, - text = "unk_exp10_4623364", - value = "unk_exp10_4623364", + text = "unk_exp10_4690402", + value = "unk_exp10_4690402", }, { children = { { - fileId = "4623365", - text = "4623365.m2", - value = "4623365.m2", + fileId = "4690403", + text = "4690403.m2", + value = "4690403.m2", }, }, - text = "unk_exp10_4623365", - value = "unk_exp10_4623365", + text = "unk_exp10_4690403", + value = "unk_exp10_4690403", }, { children = { { - fileId = "4623366", - text = "4623366.m2", - value = "4623366.m2", + fileId = "4690404", + text = "4690404.m2", + value = "4690404.m2", }, }, - text = "unk_exp10_4623366", - value = "unk_exp10_4623366", + text = "unk_exp10_4690404", + value = "unk_exp10_4690404", }, { children = { { - fileId = "4623367", - text = "4623367.m2", - value = "4623367.m2", + fileId = "4690405", + text = "4690405.m2", + value = "4690405.m2", }, }, - text = "unk_exp10_4623367", - value = "unk_exp10_4623367", + text = "unk_exp10_4690405", + value = "unk_exp10_4690405", }, { children = { { - fileId = "4624443", - text = "4624443.m2", - value = "4624443.m2", + fileId = "4690406", + text = "4690406.m2", + value = "4690406.m2", }, }, - text = "unk_exp10_4624443", - value = "unk_exp10_4624443", + text = "unk_exp10_4690406", + value = "unk_exp10_4690406", }, { children = { { - fileId = "4625121", - text = "4625121.m2", - value = "4625121.m2", + fileId = "4690407", + text = "4690407.m2", + value = "4690407.m2", }, }, - text = "unk_exp10_4625121", - value = "unk_exp10_4625121", + text = "unk_exp10_4690407", + value = "unk_exp10_4690407", }, { children = { { - fileId = "4625124", - text = "4625124.m2", - value = "4625124.m2", + fileId = "4690408", + text = "4690408.m2", + value = "4690408.m2", }, }, - text = "unk_exp10_4625124", - value = "unk_exp10_4625124", + text = "unk_exp10_4690408", + value = "unk_exp10_4690408", }, { children = { { - fileId = "4625125", - text = "4625125.m2", - value = "4625125.m2", + fileId = "4690409", + text = "4690409.m2", + value = "4690409.m2", }, }, - text = "unk_exp10_4625125", - value = "unk_exp10_4625125", + text = "unk_exp10_4690409", + value = "unk_exp10_4690409", }, { children = { { - fileId = "4627253", - text = "4627253.m2", - value = "4627253.m2", + fileId = "4690410", + text = "4690410.m2", + value = "4690410.m2", }, }, - text = "unk_exp10_4627253", - value = "unk_exp10_4627253", + text = "unk_exp10_4690410", + value = "unk_exp10_4690410", }, { children = { { - fileId = "4628620", - text = "4628620.m2", - value = "4628620.m2", + fileId = "4690411", + text = "4690411.m2", + value = "4690411.m2", }, }, - text = "unk_exp10_4628620", - value = "unk_exp10_4628620", + text = "unk_exp10_4690411", + value = "unk_exp10_4690411", }, { children = { { - fileId = "4629900", - text = "4629900.m2", - value = "4629900.m2", + fileId = "4690413", + text = "4690413.m2", + value = "4690413.m2", }, }, - text = "unk_exp10_4629900", - value = "unk_exp10_4629900", + text = "unk_exp10_4690413", + value = "unk_exp10_4690413", }, { children = { { - fileId = "4629901", - text = "4629901.m2", - value = "4629901.m2", + fileId = "4690415", + text = "4690415.m2", + value = "4690415.m2", }, }, - text = "unk_exp10_4629901", - value = "unk_exp10_4629901", + text = "unk_exp10_4690415", + value = "unk_exp10_4690415", }, { children = { { - fileId = "4629902", - text = "4629902.m2", - value = "4629902.m2", + fileId = "4690416", + text = "4690416.m2", + value = "4690416.m2", }, }, - text = "unk_exp10_4629902", - value = "unk_exp10_4629902", + text = "unk_exp10_4690416", + value = "unk_exp10_4690416", }, { children = { { - fileId = "4629903", - text = "4629903.m2", - value = "4629903.m2", + fileId = "4690417", + text = "4690417.m2", + value = "4690417.m2", }, }, - text = "unk_exp10_4629903", - value = "unk_exp10_4629903", + text = "unk_exp10_4690417", + value = "unk_exp10_4690417", }, { children = { { - fileId = "4629904", - text = "4629904.m2", - value = "4629904.m2", + fileId = "4690418", + text = "4690418.m2", + value = "4690418.m2", }, }, - text = "unk_exp10_4629904", - value = "unk_exp10_4629904", + text = "unk_exp10_4690418", + value = "unk_exp10_4690418", }, { children = { { - fileId = "4629905", - text = "4629905.m2", - value = "4629905.m2", + fileId = "4690419", + text = "4690419.m2", + value = "4690419.m2", }, }, - text = "unk_exp10_4629905", - value = "unk_exp10_4629905", + text = "unk_exp10_4690419", + value = "unk_exp10_4690419", }, { children = { { - fileId = "4629906", - text = "4629906.m2", - value = "4629906.m2", + fileId = "4690420", + text = "4690420.m2", + value = "4690420.m2", }, }, - text = "unk_exp10_4629906", - value = "unk_exp10_4629906", + text = "unk_exp10_4690420", + value = "unk_exp10_4690420", }, { children = { { - fileId = "4629907", - text = "4629907.m2", - value = "4629907.m2", + fileId = "4690421", + text = "4690421.m2", + value = "4690421.m2", }, }, - text = "unk_exp10_4629907", - value = "unk_exp10_4629907", + text = "unk_exp10_4690421", + value = "unk_exp10_4690421", }, { children = { { - fileId = "4629908", - text = "4629908.m2", - value = "4629908.m2", + fileId = "4690422", + text = "4690422.m2", + value = "4690422.m2", }, }, - text = "unk_exp10_4629908", - value = "unk_exp10_4629908", + text = "unk_exp10_4690422", + value = "unk_exp10_4690422", }, { children = { { - fileId = "4629909", - text = "4629909.m2", - value = "4629909.m2", + fileId = "4690425", + text = "4690425.m2", + value = "4690425.m2", }, }, - text = "unk_exp10_4629909", - value = "unk_exp10_4629909", + text = "unk_exp10_4690425", + value = "unk_exp10_4690425", }, { children = { { - fileId = "4629910", - text = "4629910.m2", - value = "4629910.m2", + fileId = "4690426", + text = "4690426.m2", + value = "4690426.m2", }, }, - text = "unk_exp10_4629910", - value = "unk_exp10_4629910", + text = "unk_exp10_4690426", + value = "unk_exp10_4690426", }, { children = { { - fileId = "4629911", - text = "4629911.m2", - value = "4629911.m2", + fileId = "4690428", + text = "4690428.m2", + value = "4690428.m2", }, }, - text = "unk_exp10_4629911", - value = "unk_exp10_4629911", + text = "unk_exp10_4690428", + value = "unk_exp10_4690428", }, { children = { { - fileId = "4629912", - text = "4629912.m2", - value = "4629912.m2", + fileId = "4690429", + text = "4690429.m2", + value = "4690429.m2", }, }, - text = "unk_exp10_4629912", - value = "unk_exp10_4629912", + text = "unk_exp10_4690429", + value = "unk_exp10_4690429", }, { children = { { - fileId = "4629913", - text = "4629913.m2", - value = "4629913.m2", + fileId = "4695277", + text = "4695277.m2", + value = "4695277.m2", }, }, - text = "unk_exp10_4629913", - value = "unk_exp10_4629913", + text = "unk_exp10_4695277", + value = "unk_exp10_4695277", }, { children = { - { - fileId = "4629914", - text = "4629914.m2", - value = "4629914.m2", + { + fileId = "4695278", + text = "4695278.m2", + value = "4695278.m2", }, }, - text = "unk_exp10_4629914", - value = "unk_exp10_4629914", + text = "unk_exp10_4695278", + value = "unk_exp10_4695278", }, { children = { { - fileId = "4629915", - text = "4629915.m2", - value = "4629915.m2", + fileId = "4695281", + text = "4695281.m2", + value = "4695281.m2", }, }, - text = "unk_exp10_4629915", - value = "unk_exp10_4629915", + text = "unk_exp10_4695281", + value = "unk_exp10_4695281", }, { children = { { - fileId = "4630910", - text = "4630910.m2", - value = "4630910.m2", + fileId = "4695282", + text = "4695282.m2", + value = "4695282.m2", }, }, - text = "unk_exp10_4630910", - value = "unk_exp10_4630910", + text = "unk_exp10_4695282", + value = "unk_exp10_4695282", }, { children = { { - fileId = "4630911", - text = "4630911.m2", - value = "4630911.m2", + fileId = "4696086", + text = "4696086.m2", + value = "4696086.m2", }, }, - text = "unk_exp10_4630911", - value = "unk_exp10_4630911", + text = "unk_exp10_4696086", + value = "unk_exp10_4696086", }, { children = { { - fileId = "4630912", - text = "4630912.m2", - value = "4630912.m2", + fileId = "4696998", + text = "4696998.m2", + value = "4696998.m2", }, }, - text = "unk_exp10_4630912", - value = "unk_exp10_4630912", + text = "unk_exp10_4696998", + value = "unk_exp10_4696998", }, { children = { { - fileId = "4630913", - text = "4630913.m2", - value = "4630913.m2", + fileId = "4699336", + text = "4699336.m2", + value = "4699336.m2", }, }, - text = "unk_exp10_4630913", - value = "unk_exp10_4630913", + text = "unk_exp10_4699336", + value = "unk_exp10_4699336", }, { children = { { - fileId = "4630914", - text = "4630914.m2", - value = "4630914.m2", + fileId = "4699389", + text = "4699389.m2", + value = "4699389.m2", }, }, - text = "unk_exp10_4630914", - value = "unk_exp10_4630914", + text = "unk_exp10_4699389", + value = "unk_exp10_4699389", }, { children = { { - fileId = "4630916", - text = "4630916.m2", - value = "4630916.m2", + fileId = "4703526", + text = "4703526.m2", + value = "4703526.m2", }, }, - text = "unk_exp10_4630916", - value = "unk_exp10_4630916", + text = "unk_exp10_4703526", + value = "unk_exp10_4703526", }, { children = { { - fileId = "4630917", - text = "4630917.m2", - value = "4630917.m2", + fileId = "4703528", + text = "4703528.m2", + value = "4703528.m2", }, }, - text = "unk_exp10_4630917", - value = "unk_exp10_4630917", + text = "unk_exp10_4703528", + value = "unk_exp10_4703528", }, { children = { { - fileId = "4630918", - text = "4630918.m2", - value = "4630918.m2", + fileId = "4703529", + text = "4703529.m2", + value = "4703529.m2", }, }, - text = "unk_exp10_4630918", - value = "unk_exp10_4630918", + text = "unk_exp10_4703529", + value = "unk_exp10_4703529", }, { children = { { - fileId = "4630919", - text = "4630919.m2", - value = "4630919.m2", + fileId = "4703532", + text = "4703532.m2", + value = "4703532.m2", }, }, - text = "unk_exp10_4630919", - value = "unk_exp10_4630919", + text = "unk_exp10_4703532", + value = "unk_exp10_4703532", }, { children = { { - fileId = "4631245", - text = "4631245.m2", - value = "4631245.m2", + fileId = "4703533", + text = "4703533.m2", + value = "4703533.m2", }, }, - text = "unk_exp10_4631245", - value = "unk_exp10_4631245", + text = "unk_exp10_4703533", + value = "unk_exp10_4703533", }, { children = { { - fileId = "4631254", - text = "4631254.m2", - value = "4631254.m2", + fileId = "4703534", + text = "4703534.m2", + value = "4703534.m2", }, }, - text = "unk_exp10_4631254", - value = "unk_exp10_4631254", + text = "unk_exp10_4703534", + value = "unk_exp10_4703534", }, { children = { { - fileId = "4631255", - text = "4631255.m2", - value = "4631255.m2", + fileId = "4723971", + text = "4723971.m2", + value = "4723971.m2", }, }, - text = "unk_exp10_4631255", - value = "unk_exp10_4631255", + text = "unk_exp10_4723971", + value = "unk_exp10_4723971", }, { children = { { - fileId = "4631256", - text = "4631256.m2", - value = "4631256.m2", + fileId = "4723972", + text = "4723972.m2", + value = "4723972.m2", }, }, - text = "unk_exp10_4631256", - value = "unk_exp10_4631256", + text = "unk_exp10_4723972", + value = "unk_exp10_4723972", }, { children = { { - fileId = "4631534", - text = "4631534.m2", - value = "4631534.m2", + fileId = "4723973", + text = "4723973.m2", + value = "4723973.m2", }, }, - text = "unk_exp10_4631534", - value = "unk_exp10_4631534", + text = "unk_exp10_4723973", + value = "unk_exp10_4723973", }, { children = { { - fileId = "4632562", - text = "4632562.m2", - value = "4632562.m2", + fileId = "4730956", + text = "4730956.m2", + value = "4730956.m2", }, }, - text = "unk_exp10_4632562", - value = "unk_exp10_4632562", + text = "unk_exp10_4730956", + value = "unk_exp10_4730956", }, { children = { { - fileId = "4632563", - text = "4632563.m2", - value = "4632563.m2", + fileId = "4731127", + text = "4731127.m2", + value = "4731127.m2", }, }, - text = "unk_exp10_4632563", - value = "unk_exp10_4632563", + text = "unk_exp10_4731127", + value = "unk_exp10_4731127", }, { children = { { - fileId = "4632564", - text = "4632564.m2", - value = "4632564.m2", + fileId = "4731567", + text = "4731567.m2", + value = "4731567.m2", }, }, - text = "unk_exp10_4632564", - value = "unk_exp10_4632564", + text = "unk_exp10_4731567", + value = "unk_exp10_4731567", }, { children = { { - fileId = "4632565", - text = "4632565.m2", - value = "4632565.m2", + fileId = "4732280", + text = "4732280.m2", + value = "4732280.m2", }, }, - text = "unk_exp10_4632565", - value = "unk_exp10_4632565", + text = "unk_exp10_4732280", + value = "unk_exp10_4732280", }, { children = { { - fileId = "4632566", - text = "4632566.m2", - value = "4632566.m2", + fileId = "4735781", + text = "4735781.m2", + value = "4735781.m2", }, }, - text = "unk_exp10_4632566", - value = "unk_exp10_4632566", + text = "unk_exp10_4735781", + value = "unk_exp10_4735781", }, { children = { { - fileId = "4633558", - text = "4633558.m2", - value = "4633558.m2", + fileId = "4737015", + text = "4737015.m2", + value = "4737015.m2", }, }, - text = "unk_exp10_4633558", - value = "unk_exp10_4633558", + text = "unk_exp10_4737015", + value = "unk_exp10_4737015", }, { children = { { - fileId = "4633559", - text = "4633559.m2", - value = "4633559.m2", + fileId = "4737022", + text = "4737022.m2", + value = "4737022.m2", }, }, - text = "unk_exp10_4633559", - value = "unk_exp10_4633559", + text = "unk_exp10_4737022", + value = "unk_exp10_4737022", }, { children = { { - fileId = "4640849", - text = "4640849.m2", - value = "4640849.m2", + fileId = "4742736", + text = "4742736.m2", + value = "4742736.m2", }, }, - text = "unk_exp10_4640849", - value = "unk_exp10_4640849", + text = "unk_exp10_4742736", + value = "unk_exp10_4742736", }, { children = { { - fileId = "4641143", - text = "4641143.m2", - value = "4641143.m2", + fileId = "4742737", + text = "4742737.m2", + value = "4742737.m2", }, }, - text = "unk_exp10_4641143", - value = "unk_exp10_4641143", + text = "unk_exp10_4742737", + value = "unk_exp10_4742737", }, { children = { { - fileId = "4643970", - text = "4643970.m2", - value = "4643970.m2", + fileId = "4752633", + text = "4752633.m2", + value = "4752633.m2", }, }, - text = "unk_exp10_4643970", - value = "unk_exp10_4643970", + text = "unk_exp10_4752633", + value = "unk_exp10_4752633", }, { children = { { - fileId = "4662791", - text = "4662791.m2", - value = "4662791.m2", + fileId = "4752639", + text = "4752639.m2", + value = "4752639.m2", }, }, - text = "unk_exp10_4662791", - value = "unk_exp10_4662791", + text = "unk_exp10_4752639", + value = "unk_exp10_4752639", }, { children = { { - fileId = "4663521", - text = "4663521.m2", - value = "4663521.m2", + fileId = "4852135", + text = "4852135.m2", + value = "4852135.m2", }, }, - text = "unk_exp10_4663521", - value = "unk_exp10_4663521", + text = "unk_exp10_4852135", + value = "unk_exp10_4852135", }, { children = { { - fileId = "4672153", - text = "4672153.m2", - value = "4672153.m2", + fileId = "4852136", + text = "4852136.m2", + value = "4852136.m2", }, }, - text = "unk_exp10_4672153", - value = "unk_exp10_4672153", + text = "unk_exp10_4852136", + value = "unk_exp10_4852136", }, { children = { { - fileId = "4672154", - text = "4672154.m2", - value = "4672154.m2", + fileId = "4852138", + text = "4852138.m2", + value = "4852138.m2", }, }, - text = "unk_exp10_4672154", - value = "unk_exp10_4672154", + text = "unk_exp10_4852138", + value = "unk_exp10_4852138", }, { children = { { - fileId = "4672155", - text = "4672155.m2", - value = "4672155.m2", + fileId = "4852139", + text = "4852139.m2", + value = "4852139.m2", }, }, - text = "unk_exp10_4672155", - value = "unk_exp10_4672155", + text = "unk_exp10_4852139", + value = "unk_exp10_4852139", }, { children = { { - fileId = "4672156", - text = "4672156.m2", - value = "4672156.m2", + fileId = "4852140", + text = "4852140.m2", + value = "4852140.m2", }, }, - text = "unk_exp10_4672156", - value = "unk_exp10_4672156", + text = "unk_exp10_4852140", + value = "unk_exp10_4852140", }, { children = { { - fileId = "4672157", - text = "4672157.m2", - value = "4672157.m2", + fileId = "4853497", + text = "4853497.m2", + value = "4853497.m2", }, }, - text = "unk_exp10_4672157", - value = "unk_exp10_4672157", + text = "unk_exp10_4853497", + value = "unk_exp10_4853497", }, { children = { { - fileId = "4672158", - text = "4672158.m2", - value = "4672158.m2", + fileId = "4853498", + text = "4853498.m2", + value = "4853498.m2", }, }, - text = "unk_exp10_4672158", - value = "unk_exp10_4672158", + text = "unk_exp10_4853498", + value = "unk_exp10_4853498", }, { children = { { - fileId = "4672159", - text = "4672159.m2", - value = "4672159.m2", + fileId = "4853499", + text = "4853499.m2", + value = "4853499.m2", }, }, - text = "unk_exp10_4672159", - value = "unk_exp10_4672159", + text = "unk_exp10_4853499", + value = "unk_exp10_4853499", }, { children = { { - fileId = "4672164", - text = "4672164.m2", - value = "4672164.m2", + fileId = "4853500", + text = "4853500.m2", + value = "4853500.m2", }, }, - text = "unk_exp10_4672164", - value = "unk_exp10_4672164", + text = "unk_exp10_4853500", + value = "unk_exp10_4853500", }, { children = { { - fileId = "4672165", - text = "4672165.m2", - value = "4672165.m2", + fileId = "4853501", + text = "4853501.m2", + value = "4853501.m2", }, }, - text = "unk_exp10_4672165", - value = "unk_exp10_4672165", + text = "unk_exp10_4853501", + value = "unk_exp10_4853501", }, { children = { { - fileId = "4672166", - text = "4672166.m2", - value = "4672166.m2", + fileId = "4853502", + text = "4853502.m2", + value = "4853502.m2", }, }, - text = "unk_exp10_4672166", - value = "unk_exp10_4672166", + text = "unk_exp10_4853502", + value = "unk_exp10_4853502", }, { children = { { - fileId = "4672167", - text = "4672167.m2", - value = "4672167.m2", + fileId = "4855216", + text = "4855216.m2", + value = "4855216.m2", }, }, - text = "unk_exp10_4672167", - value = "unk_exp10_4672167", + text = "unk_exp10_4855216", + value = "unk_exp10_4855216", }, { children = { { - fileId = "4672168", - text = "4672168.m2", - value = "4672168.m2", + fileId = "4855217", + text = "4855217.m2", + value = "4855217.m2", }, }, - text = "unk_exp10_4672168", - value = "unk_exp10_4672168", + text = "unk_exp10_4855217", + value = "unk_exp10_4855217", }, { children = { { - fileId = "4672169", - text = "4672169.m2", - value = "4672169.m2", + fileId = "4855218", + text = "4855218.m2", + value = "4855218.m2", }, }, - text = "unk_exp10_4672169", - value = "unk_exp10_4672169", + text = "unk_exp10_4855218", + value = "unk_exp10_4855218", }, { children = { { - fileId = "4672170", - text = "4672170.m2", - value = "4672170.m2", + fileId = "4859394", + text = "4859394.m2", + value = "4859394.m2", }, }, - text = "unk_exp10_4672170", - value = "unk_exp10_4672170", + text = "unk_exp10_4859394", + value = "unk_exp10_4859394", }, { children = { { - fileId = "4673378", - text = "4673378.m2", - value = "4673378.m2", + fileId = "4859395", + text = "4859395.m2", + value = "4859395.m2", }, }, - text = "unk_exp10_4673378", - value = "unk_exp10_4673378", + text = "unk_exp10_4859395", + value = "unk_exp10_4859395", }, { children = { { - fileId = "4673382", - text = "4673382.m2", - value = "4673382.m2", + fileId = "4864074", + text = "4864074.m2", + value = "4864074.m2", }, }, - text = "unk_exp10_4673382", - value = "unk_exp10_4673382", + text = "unk_exp10_4864074", + value = "unk_exp10_4864074", }, { children = { { - fileId = "4673383", - text = "4673383.m2", - value = "4673383.m2", + fileId = "4864075", + text = "4864075.m2", + value = "4864075.m2", }, }, - text = "unk_exp10_4673383", - value = "unk_exp10_4673383", + text = "unk_exp10_4864075", + value = "unk_exp10_4864075", }, { children = { { - fileId = "4673384", - text = "4673384.m2", - value = "4673384.m2", + fileId = "4864076", + text = "4864076.m2", + value = "4864076.m2", }, }, - text = "unk_exp10_4673384", - value = "unk_exp10_4673384", + text = "unk_exp10_4864076", + value = "unk_exp10_4864076", }, { children = { { - fileId = "4673385", - text = "4673385.m2", - value = "4673385.m2", + fileId = "4864077", + text = "4864077.m2", + value = "4864077.m2", }, }, - text = "unk_exp10_4673385", - value = "unk_exp10_4673385", + text = "unk_exp10_4864077", + value = "unk_exp10_4864077", }, { children = { { - fileId = "4673386", - text = "4673386.m2", - value = "4673386.m2", + fileId = "4864079", + text = "4864079.m2", + value = "4864079.m2", }, }, - text = "unk_exp10_4673386", - value = "unk_exp10_4673386", + text = "unk_exp10_4864079", + value = "unk_exp10_4864079", }, { children = { { - fileId = "4673387", - text = "4673387.m2", - value = "4673387.m2", + fileId = "4864080", + text = "4864080.m2", + value = "4864080.m2", }, }, - text = "unk_exp10_4673387", - value = "unk_exp10_4673387", + text = "unk_exp10_4864080", + value = "unk_exp10_4864080", }, { children = { { - fileId = "4673697", - text = "4673697.m2", - value = "4673697.m2", + fileId = "4864081", + text = "4864081.m2", + value = "4864081.m2", }, }, - text = "unk_exp10_4673697", - value = "unk_exp10_4673697", + text = "unk_exp10_4864081", + value = "unk_exp10_4864081", }, { children = { { - fileId = "4673698", - text = "4673698.m2", - value = "4673698.m2", + fileId = "4864082", + text = "4864082.m2", + value = "4864082.m2", }, }, - text = "unk_exp10_4673698", - value = "unk_exp10_4673698", + text = "unk_exp10_4864082", + value = "unk_exp10_4864082", }, { children = { - { - fileId = "4673699", - text = "4673699.m2", - value = "4673699.m2", + { + fileId = "4864083", + text = "4864083.m2", + value = "4864083.m2", }, }, - text = "unk_exp10_4673699", - value = "unk_exp10_4673699", + text = "unk_exp10_4864083", + value = "unk_exp10_4864083", }, { children = { { - fileId = "4673924", - text = "4673924.m2", - value = "4673924.m2", + fileId = "4864084", + text = "4864084.m2", + value = "4864084.m2", }, }, - text = "unk_exp10_4673924", - value = "unk_exp10_4673924", + text = "unk_exp10_4864084", + value = "unk_exp10_4864084", }, { children = { { - fileId = "4674687", - text = "4674687.m2", - value = "4674687.m2", + fileId = "4864087", + text = "4864087.m2", + value = "4864087.m2", }, }, - text = "unk_exp10_4674687", - value = "unk_exp10_4674687", + text = "unk_exp10_4864087", + value = "unk_exp10_4864087", }, { children = { { - fileId = "4674693", - text = "4674693.m2", - value = "4674693.m2", + fileId = "4864089", + text = "4864089.m2", + value = "4864089.m2", }, }, - text = "unk_exp10_4674693", - value = "unk_exp10_4674693", + text = "unk_exp10_4864089", + value = "unk_exp10_4864089", }, { children = { { - fileId = "4674695", - text = "4674695.m2", - value = "4674695.m2", + fileId = "4864090", + text = "4864090.m2", + value = "4864090.m2", }, }, - text = "unk_exp10_4674695", - value = "unk_exp10_4674695", + text = "unk_exp10_4864090", + value = "unk_exp10_4864090", }, { children = { { - fileId = "4675611", - text = "4675611.m2", - value = "4675611.m2", + fileId = "4864091", + text = "4864091.m2", + value = "4864091.m2", }, }, - text = "unk_exp10_4675611", - value = "unk_exp10_4675611", + text = "unk_exp10_4864091", + value = "unk_exp10_4864091", }, { children = { { - fileId = "4680340", - text = "4680340.m2", - value = "4680340.m2", + fileId = "4864092", + text = "4864092.m2", + value = "4864092.m2", }, }, - text = "unk_exp10_4680340", - value = "unk_exp10_4680340", + text = "unk_exp10_4864092", + value = "unk_exp10_4864092", }, { children = { { - fileId = "4680721", - text = "4680721.m2", - value = "4680721.m2", + fileId = "4864093", + text = "4864093.m2", + value = "4864093.m2", }, }, - text = "unk_exp10_4680721", - value = "unk_exp10_4680721", + text = "unk_exp10_4864093", + value = "unk_exp10_4864093", }, { children = { { - fileId = "4680736", - text = "4680736.m2", - value = "4680736.m2", + fileId = "4864094", + text = "4864094.m2", + value = "4864094.m2", }, }, - text = "unk_exp10_4680736", - value = "unk_exp10_4680736", + text = "unk_exp10_4864094", + value = "unk_exp10_4864094", }, { children = { { - fileId = "4686796", - text = "4686796.m2", - value = "4686796.m2", + fileId = "4864095", + text = "4864095.m2", + value = "4864095.m2", }, }, - text = "unk_exp10_4686796", - value = "unk_exp10_4686796", + text = "unk_exp10_4864095", + value = "unk_exp10_4864095", }, { children = { { - fileId = "4686797", - text = "4686797.m2", - value = "4686797.m2", + fileId = "4864096", + text = "4864096.m2", + value = "4864096.m2", }, }, - text = "unk_exp10_4686797", - value = "unk_exp10_4686797", + text = "unk_exp10_4864096", + value = "unk_exp10_4864096", }, { children = { { - fileId = "4689145", - text = "4689145.m2", - value = "4689145.m2", + fileId = "4864097", + text = "4864097.m2", + value = "4864097.m2", }, }, - text = "unk_exp10_4689145", - value = "unk_exp10_4689145", + text = "unk_exp10_4864097", + value = "unk_exp10_4864097", }, { children = { { - fileId = "4689146", - text = "4689146.m2", - value = "4689146.m2", + fileId = "4865906", + text = "4865906.m2", + value = "4865906.m2", }, }, - text = "unk_exp10_4689146", - value = "unk_exp10_4689146", + text = "unk_exp10_4865906", + value = "unk_exp10_4865906", }, { children = { { - fileId = "4689420", - text = "4689420.m2", - value = "4689420.m2", + fileId = "4865936", + text = "4865936.m2", + value = "4865936.m2", }, }, - text = "unk_exp10_4689420", - value = "unk_exp10_4689420", + text = "unk_exp10_4865936", + value = "unk_exp10_4865936", }, { children = { { - fileId = "4689421", - text = "4689421.m2", - value = "4689421.m2", + fileId = "4865940", + text = "4865940.m2", + value = "4865940.m2", }, }, - text = "unk_exp10_4689421", - value = "unk_exp10_4689421", + text = "unk_exp10_4865940", + value = "unk_exp10_4865940", }, { children = { { - fileId = "4689429", - text = "4689429.m2", - value = "4689429.m2", + fileId = "4865941", + text = "4865941.m2", + value = "4865941.m2", }, }, - text = "unk_exp10_4689429", - value = "unk_exp10_4689429", + text = "unk_exp10_4865941", + value = "unk_exp10_4865941", }, { children = { { - fileId = "4689441", - text = "4689441.m2", - value = "4689441.m2", + fileId = "4865942", + text = "4865942.m2", + value = "4865942.m2", }, }, - text = "unk_exp10_4689441", - value = "unk_exp10_4689441", + text = "unk_exp10_4865942", + value = "unk_exp10_4865942", }, { children = { { - fileId = "4690402", - text = "4690402.m2", - value = "4690402.m2", + fileId = "4865943", + text = "4865943.m2", + value = "4865943.m2", }, }, - text = "unk_exp10_4690402", - value = "unk_exp10_4690402", + text = "unk_exp10_4865943", + value = "unk_exp10_4865943", }, { children = { { - fileId = "4690403", - text = "4690403.m2", - value = "4690403.m2", + fileId = "4865944", + text = "4865944.m2", + value = "4865944.m2", }, }, - text = "unk_exp10_4690403", - value = "unk_exp10_4690403", + text = "unk_exp10_4865944", + value = "unk_exp10_4865944", }, { children = { { - fileId = "4690404", - text = "4690404.m2", - value = "4690404.m2", + fileId = "4867005", + text = "4867005.m2", + value = "4867005.m2", }, }, - text = "unk_exp10_4690404", - value = "unk_exp10_4690404", + text = "unk_exp10_4867005", + value = "unk_exp10_4867005", }, { children = { { - fileId = "4690405", - text = "4690405.m2", - value = "4690405.m2", + fileId = "4867506", + text = "4867506.m2", + value = "4867506.m2", }, }, - text = "unk_exp10_4690405", - value = "unk_exp10_4690405", + text = "unk_exp10_4867506", + value = "unk_exp10_4867506", }, { children = { { - fileId = "4690406", - text = "4690406.m2", - value = "4690406.m2", + fileId = "4867507", + text = "4867507.m2", + value = "4867507.m2", }, }, - text = "unk_exp10_4690406", - value = "unk_exp10_4690406", + text = "unk_exp10_4867507", + value = "unk_exp10_4867507", }, { children = { { - fileId = "4690407", - text = "4690407.m2", - value = "4690407.m2", + fileId = "4867508", + text = "4867508.m2", + value = "4867508.m2", }, }, - text = "unk_exp10_4690407", - value = "unk_exp10_4690407", + text = "unk_exp10_4867508", + value = "unk_exp10_4867508", }, { children = { { - fileId = "4690408", - text = "4690408.m2", - value = "4690408.m2", + fileId = "4867509", + text = "4867509.m2", + value = "4867509.m2", }, }, - text = "unk_exp10_4690408", - value = "unk_exp10_4690408", + text = "unk_exp10_4867509", + value = "unk_exp10_4867509", }, { children = { { - fileId = "4690409", - text = "4690409.m2", - value = "4690409.m2", + fileId = "4867651", + text = "4867651.m2", + value = "4867651.m2", }, }, - text = "unk_exp10_4690409", - value = "unk_exp10_4690409", + text = "unk_exp10_4867651", + value = "unk_exp10_4867651", }, { children = { { - fileId = "4690410", - text = "4690410.m2", - value = "4690410.m2", + fileId = "4867652", + text = "4867652.m2", + value = "4867652.m2", }, }, - text = "unk_exp10_4690410", - value = "unk_exp10_4690410", + text = "unk_exp10_4867652", + value = "unk_exp10_4867652", }, { children = { { - fileId = "4690411", - text = "4690411.m2", - value = "4690411.m2", + fileId = "4867781", + text = "4867781.m2", + value = "4867781.m2", }, }, - text = "unk_exp10_4690411", - value = "unk_exp10_4690411", + text = "unk_exp10_4867781", + value = "unk_exp10_4867781", }, { children = { { - fileId = "4690413", - text = "4690413.m2", - value = "4690413.m2", + fileId = "4867782", + text = "4867782.m2", + value = "4867782.m2", }, }, - text = "unk_exp10_4690413", - value = "unk_exp10_4690413", + text = "unk_exp10_4867782", + value = "unk_exp10_4867782", }, { children = { { - fileId = "4690415", - text = "4690415.m2", - value = "4690415.m2", + fileId = "4868286", + text = "4868286.m2", + value = "4868286.m2", }, }, - text = "unk_exp10_4690415", - value = "unk_exp10_4690415", + text = "unk_exp10_4868286", + value = "unk_exp10_4868286", }, { children = { { - fileId = "4690416", - text = "4690416.m2", - value = "4690416.m2", + fileId = "4868288", + text = "4868288.m2", + value = "4868288.m2", }, }, - text = "unk_exp10_4690416", - value = "unk_exp10_4690416", + text = "unk_exp10_4868288", + value = "unk_exp10_4868288", }, { children = { { - fileId = "4690417", - text = "4690417.m2", - value = "4690417.m2", + fileId = "4869599", + text = "4869599.m2", + value = "4869599.m2", }, }, - text = "unk_exp10_4690417", - value = "unk_exp10_4690417", + text = "unk_exp10_4869599", + value = "unk_exp10_4869599", }, { children = { { - fileId = "4690418", - text = "4690418.m2", - value = "4690418.m2", + fileId = "4869600", + text = "4869600.m2", + value = "4869600.m2", }, }, - text = "unk_exp10_4690418", - value = "unk_exp10_4690418", + text = "unk_exp10_4869600", + value = "unk_exp10_4869600", }, { children = { { - fileId = "4690419", - text = "4690419.m2", - value = "4690419.m2", + fileId = "4870464", + text = "4870464.m2", + value = "4870464.m2", }, }, - text = "unk_exp10_4690419", - value = "unk_exp10_4690419", + text = "unk_exp10_4870464", + value = "unk_exp10_4870464", }, { children = { { - fileId = "4690420", - text = "4690420.m2", - value = "4690420.m2", + fileId = "4870465", + text = "4870465.m2", + value = "4870465.m2", }, }, - text = "unk_exp10_4690420", - value = "unk_exp10_4690420", + text = "unk_exp10_4870465", + value = "unk_exp10_4870465", }, { children = { { - fileId = "4690421", - text = "4690421.m2", - value = "4690421.m2", + fileId = "4870466", + text = "4870466.m2", + value = "4870466.m2", }, }, - text = "unk_exp10_4690421", - value = "unk_exp10_4690421", + text = "unk_exp10_4870466", + value = "unk_exp10_4870466", }, { children = { { - fileId = "4690422", - text = "4690422.m2", - value = "4690422.m2", + fileId = "4870467", + text = "4870467.m2", + value = "4870467.m2", }, }, - text = "unk_exp10_4690422", - value = "unk_exp10_4690422", + text = "unk_exp10_4870467", + value = "unk_exp10_4870467", }, { children = { { - fileId = "4690425", - text = "4690425.m2", - value = "4690425.m2", + fileId = "4870468", + text = "4870468.m2", + value = "4870468.m2", }, }, - text = "unk_exp10_4690425", - value = "unk_exp10_4690425", + text = "unk_exp10_4870468", + value = "unk_exp10_4870468", }, { children = { { - fileId = "4690426", - text = "4690426.m2", - value = "4690426.m2", + fileId = "4871429", + text = "4871429.m2", + value = "4871429.m2", }, }, - text = "unk_exp10_4690426", - value = "unk_exp10_4690426", + text = "unk_exp10_4871429", + value = "unk_exp10_4871429", }, { children = { { - fileId = "4690428", - text = "4690428.m2", - value = "4690428.m2", + fileId = "4871430", + text = "4871430.m2", + value = "4871430.m2", }, }, - text = "unk_exp10_4690428", - value = "unk_exp10_4690428", + text = "unk_exp10_4871430", + value = "unk_exp10_4871430", }, { children = { { - fileId = "4690429", - text = "4690429.m2", - value = "4690429.m2", + fileId = "4871431", + text = "4871431.m2", + value = "4871431.m2", }, }, - text = "unk_exp10_4690429", - value = "unk_exp10_4690429", + text = "unk_exp10_4871431", + value = "unk_exp10_4871431", }, { children = { { - fileId = "4695277", - text = "4695277.m2", - value = "4695277.m2", + fileId = "4872834", + text = "4872834.m2", + value = "4872834.m2", }, }, - text = "unk_exp10_4695277", - value = "unk_exp10_4695277", + text = "unk_exp10_4872834", + value = "unk_exp10_4872834", }, { children = { { - fileId = "4695278", - text = "4695278.m2", - value = "4695278.m2", + fileId = "4872835", + text = "4872835.m2", + value = "4872835.m2", }, }, - text = "unk_exp10_4695278", - value = "unk_exp10_4695278", + text = "unk_exp10_4872835", + value = "unk_exp10_4872835", }, { children = { { - fileId = "4695281", - text = "4695281.m2", - value = "4695281.m2", + fileId = "4872836", + text = "4872836.m2", + value = "4872836.m2", }, }, - text = "unk_exp10_4695281", - value = "unk_exp10_4695281", + text = "unk_exp10_4872836", + value = "unk_exp10_4872836", }, { children = { { - fileId = "4695282", - text = "4695282.m2", - value = "4695282.m2", + fileId = "4872837", + text = "4872837.m2", + value = "4872837.m2", }, }, - text = "unk_exp10_4695282", - value = "unk_exp10_4695282", + text = "unk_exp10_4872837", + value = "unk_exp10_4872837", }, { children = { { - fileId = "4696086", - text = "4696086.m2", - value = "4696086.m2", + fileId = "4872841", + text = "4872841.m2", + value = "4872841.m2", }, }, - text = "unk_exp10_4696086", - value = "unk_exp10_4696086", + text = "unk_exp10_4872841", + value = "unk_exp10_4872841", }, { children = { { - fileId = "4699389", - text = "4699389.m2", - value = "4699389.m2", + fileId = "4872843", + text = "4872843.m2", + value = "4872843.m2", }, }, - text = "unk_exp10_4699389", - value = "unk_exp10_4699389", + text = "unk_exp10_4872843", + value = "unk_exp10_4872843", }, { children = { { - fileId = "4703526", - text = "4703526.m2", - value = "4703526.m2", + fileId = "4872846", + text = "4872846.m2", + value = "4872846.m2", }, }, - text = "unk_exp10_4703526", - value = "unk_exp10_4703526", + text = "unk_exp10_4872846", + value = "unk_exp10_4872846", }, { children = { { - fileId = "4703532", - text = "4703532.m2", - value = "4703532.m2", + fileId = "4872847", + text = "4872847.m2", + value = "4872847.m2", }, }, - text = "unk_exp10_4703532", - value = "unk_exp10_4703532", + text = "unk_exp10_4872847", + value = "unk_exp10_4872847", }, { children = { { - fileId = "4723971", - text = "4723971.m2", - value = "4723971.m2", + fileId = "4872848", + text = "4872848.m2", + value = "4872848.m2", }, }, - text = "unk_exp10_4723971", - value = "unk_exp10_4723971", + text = "unk_exp10_4872848", + value = "unk_exp10_4872848", }, { children = { { - fileId = "4723972", - text = "4723972.m2", - value = "4723972.m2", + fileId = "4879051", + text = "4879051.m2", + value = "4879051.m2", }, }, - text = "unk_exp10_4723972", - value = "unk_exp10_4723972", + text = "unk_exp10_4879051", + value = "unk_exp10_4879051", }, { children = { { - fileId = "4723973", - text = "4723973.m2", - value = "4723973.m2", + fileId = "4879426", + text = "4879426.m2", + value = "4879426.m2", }, }, - text = "unk_exp10_4723973", - value = "unk_exp10_4723973", + text = "unk_exp10_4879426", + value = "unk_exp10_4879426", }, { children = { - { - fileId = "4730956", - text = "4730956.m2", - value = "4730956.m2", + { + fileId = "4879427", + text = "4879427.m2", + value = "4879427.m2", }, }, - text = "unk_exp10_4730956", - value = "unk_exp10_4730956", + text = "unk_exp10_4879427", + value = "unk_exp10_4879427", }, { children = { { - fileId = "4731127", - text = "4731127.m2", - value = "4731127.m2", + fileId = "4879429", + text = "4879429.m2", + value = "4879429.m2", }, }, - text = "unk_exp10_4731127", - value = "unk_exp10_4731127", + text = "unk_exp10_4879429", + value = "unk_exp10_4879429", }, { children = { { - fileId = "4731567", - text = "4731567.m2", - value = "4731567.m2", + fileId = "4879431", + text = "4879431.m2", + value = "4879431.m2", }, }, - text = "unk_exp10_4731567", - value = "unk_exp10_4731567", + text = "unk_exp10_4879431", + value = "unk_exp10_4879431", }, { children = { { - fileId = "4732280", - text = "4732280.m2", - value = "4732280.m2", + fileId = "4879432", + text = "4879432.m2", + value = "4879432.m2", }, }, - text = "unk_exp10_4732280", - value = "unk_exp10_4732280", + text = "unk_exp10_4879432", + value = "unk_exp10_4879432", }, { children = { { - fileId = "4735781", - text = "4735781.m2", - value = "4735781.m2", + fileId = "4879433", + text = "4879433.m2", + value = "4879433.m2", }, }, - text = "unk_exp10_4735781", - value = "unk_exp10_4735781", + text = "unk_exp10_4879433", + value = "unk_exp10_4879433", }, { children = { { - fileId = "4737022", - text = "4737022.m2", - value = "4737022.m2", + fileId = "4879434", + text = "4879434.m2", + value = "4879434.m2", }, }, - text = "unk_exp10_4737022", - value = "unk_exp10_4737022", + text = "unk_exp10_4879434", + value = "unk_exp10_4879434", }, { children = { { - fileId = "4742736", - text = "4742736.m2", - value = "4742736.m2", + fileId = "4879435", + text = "4879435.m2", + value = "4879435.m2", }, }, - text = "unk_exp10_4742736", - value = "unk_exp10_4742736", + text = "unk_exp10_4879435", + value = "unk_exp10_4879435", }, { children = { { - fileId = "4742737", - text = "4742737.m2", - value = "4742737.m2", + fileId = "4879436", + text = "4879436.m2", + value = "4879436.m2", }, }, - text = "unk_exp10_4742737", - value = "unk_exp10_4742737", + text = "unk_exp10_4879436", + value = "unk_exp10_4879436", }, { children = { { - fileId = "4752633", - text = "4752633.m2", - value = "4752633.m2", + fileId = "4888637", + text = "4888637.m2", + value = "4888637.m2", }, }, - text = "unk_exp10_4752633", - value = "unk_exp10_4752633", + text = "unk_exp10_4888637", + value = "unk_exp10_4888637", }, { children = { { - fileId = "4752639", - text = "4752639.m2", - value = "4752639.m2", + fileId = "4891379", + text = "4891379.m2", + value = "4891379.m2", }, }, - text = "unk_exp10_4752639", - value = "unk_exp10_4752639", + text = "unk_exp10_4891379", + value = "unk_exp10_4891379", }, { children = { { - fileId = "4852135", - text = "4852135.m2", - value = "4852135.m2", + fileId = "4891628", + text = "4891628.m2", + value = "4891628.m2", }, }, - text = "unk_exp10_4852135", - value = "unk_exp10_4852135", + text = "unk_exp10_4891628", + value = "unk_exp10_4891628", }, { children = { { - fileId = "4852136", - text = "4852136.m2", - value = "4852136.m2", + fileId = "4891629", + text = "4891629.m2", + value = "4891629.m2", }, }, - text = "unk_exp10_4852136", - value = "unk_exp10_4852136", + text = "unk_exp10_4891629", + value = "unk_exp10_4891629", }, { children = { { - fileId = "4852138", - text = "4852138.m2", - value = "4852138.m2", + fileId = "4891630", + text = "4891630.m2", + value = "4891630.m2", }, }, - text = "unk_exp10_4852138", - value = "unk_exp10_4852138", + text = "unk_exp10_4891630", + value = "unk_exp10_4891630", }, { children = { { - fileId = "4852139", - text = "4852139.m2", - value = "4852139.m2", + fileId = "4891631", + text = "4891631.m2", + value = "4891631.m2", }, }, - text = "unk_exp10_4852139", - value = "unk_exp10_4852139", + text = "unk_exp10_4891631", + value = "unk_exp10_4891631", }, { children = { { - fileId = "4852140", - text = "4852140.m2", - value = "4852140.m2", + fileId = "4895039", + text = "4895039.m2", + value = "4895039.m2", }, }, - text = "unk_exp10_4852140", - value = "unk_exp10_4852140", + text = "unk_exp10_4895039", + value = "unk_exp10_4895039", }, { children = { { - fileId = "4853497", - text = "4853497.m2", - value = "4853497.m2", + fileId = "4895070", + text = "4895070.m2", + value = "4895070.m2", }, }, - text = "unk_exp10_4853497", - value = "unk_exp10_4853497", + text = "unk_exp10_4895070", + value = "unk_exp10_4895070", }, { children = { { - fileId = "4853498", - text = "4853498.m2", - value = "4853498.m2", + fileId = "4900378", + text = "4900378.m2", + value = "4900378.m2", }, }, - text = "unk_exp10_4853498", - value = "unk_exp10_4853498", + text = "unk_exp10_4900378", + value = "unk_exp10_4900378", }, { children = { { - fileId = "4853499", - text = "4853499.m2", - value = "4853499.m2", + fileId = "4900379", + text = "4900379.m2", + value = "4900379.m2", }, }, - text = "unk_exp10_4853499", - value = "unk_exp10_4853499", + text = "unk_exp10_4900379", + value = "unk_exp10_4900379", }, { children = { { - fileId = "4853500", - text = "4853500.m2", - value = "4853500.m2", + fileId = "4901597", + text = "4901597.m2", + value = "4901597.m2", }, }, - text = "unk_exp10_4853500", - value = "unk_exp10_4853500", + text = "unk_exp10_4901597", + value = "unk_exp10_4901597", }, { children = { { - fileId = "4853501", - text = "4853501.m2", - value = "4853501.m2", + fileId = "4901598", + text = "4901598.m2", + value = "4901598.m2", }, }, - text = "unk_exp10_4853501", - value = "unk_exp10_4853501", + text = "unk_exp10_4901598", + value = "unk_exp10_4901598", }, { children = { { - fileId = "4853502", - text = "4853502.m2", - value = "4853502.m2", + fileId = "4901599", + text = "4901599.m2", + value = "4901599.m2", }, }, - text = "unk_exp10_4853502", - value = "unk_exp10_4853502", + text = "unk_exp10_4901599", + value = "unk_exp10_4901599", }, { children = { { - fileId = "4855216", - text = "4855216.m2", - value = "4855216.m2", + fileId = "4901600", + text = "4901600.m2", + value = "4901600.m2", }, }, - text = "unk_exp10_4855216", - value = "unk_exp10_4855216", + text = "unk_exp10_4901600", + value = "unk_exp10_4901600", }, { children = { { - fileId = "4855217", - text = "4855217.m2", - value = "4855217.m2", + fileId = "4903382", + text = "4903382.m2", + value = "4903382.m2", }, }, - text = "unk_exp10_4855217", - value = "unk_exp10_4855217", + text = "unk_exp10_4903382", + value = "unk_exp10_4903382", }, { children = { { - fileId = "4855218", - text = "4855218.m2", - value = "4855218.m2", + fileId = "4903383", + text = "4903383.m2", + value = "4903383.m2", }, }, - text = "unk_exp10_4855218", - value = "unk_exp10_4855218", + text = "unk_exp10_4903383", + value = "unk_exp10_4903383", }, { children = { { - fileId = "4859394", - text = "4859394.m2", - value = "4859394.m2", + fileId = "4903384", + text = "4903384.m2", + value = "4903384.m2", }, }, - text = "unk_exp10_4859394", - value = "unk_exp10_4859394", + text = "unk_exp10_4903384", + value = "unk_exp10_4903384", }, { children = { { - fileId = "4859395", - text = "4859395.m2", - value = "4859395.m2", + fileId = "4906602", + text = "4906602.m2", + value = "4906602.m2", }, }, - text = "unk_exp10_4859395", - value = "unk_exp10_4859395", + text = "unk_exp10_4906602", + value = "unk_exp10_4906602", }, { children = { { - fileId = "4864074", - text = "4864074.m2", - value = "4864074.m2", + fileId = "4906604", + text = "4906604.m2", + value = "4906604.m2", }, }, - text = "unk_exp10_4864074", - value = "unk_exp10_4864074", + text = "unk_exp10_4906604", + value = "unk_exp10_4906604", }, { children = { { - fileId = "4864075", - text = "4864075.m2", - value = "4864075.m2", + fileId = "4908471", + text = "4908471.m2", + value = "4908471.m2", }, }, - text = "unk_exp10_4864075", - value = "unk_exp10_4864075", + text = "unk_exp10_4908471", + value = "unk_exp10_4908471", }, { children = { { - fileId = "4864076", - text = "4864076.m2", - value = "4864076.m2", + fileId = "4910754", + text = "4910754.m2", + value = "4910754.m2", }, }, - text = "unk_exp10_4864076", - value = "unk_exp10_4864076", + text = "unk_exp10_4910754", + value = "unk_exp10_4910754", }, { children = { { - fileId = "4864077", - text = "4864077.m2", - value = "4864077.m2", + fileId = "4913972", + text = "4913972.m2", + value = "4913972.m2", }, }, - text = "unk_exp10_4864077", - value = "unk_exp10_4864077", + text = "unk_exp10_4913972", + value = "unk_exp10_4913972", }, { children = { { - fileId = "4864079", - text = "4864079.m2", - value = "4864079.m2", + fileId = "4914530", + text = "4914530.m2", + value = "4914530.m2", }, }, - text = "unk_exp10_4864079", - value = "unk_exp10_4864079", + text = "unk_exp10_4914530", + value = "unk_exp10_4914530", }, { children = { { - fileId = "4864080", - text = "4864080.m2", - value = "4864080.m2", + fileId = "4914531", + text = "4914531.m2", + value = "4914531.m2", }, }, - text = "unk_exp10_4864080", - value = "unk_exp10_4864080", + text = "unk_exp10_4914531", + value = "unk_exp10_4914531", }, { children = { { - fileId = "4864081", - text = "4864081.m2", - value = "4864081.m2", + fileId = "4925906", + text = "4925906.m2", + value = "4925906.m2", }, }, - text = "unk_exp10_4864081", - value = "unk_exp10_4864081", + text = "unk_exp10_4925906", + value = "unk_exp10_4925906", }, { children = { { - fileId = "4864082", - text = "4864082.m2", - value = "4864082.m2", + fileId = "4925907", + text = "4925907.m2", + value = "4925907.m2", }, }, - text = "unk_exp10_4864082", - value = "unk_exp10_4864082", + text = "unk_exp10_4925907", + value = "unk_exp10_4925907", }, { children = { { - fileId = "4864083", - text = "4864083.m2", - value = "4864083.m2", + fileId = "4925908", + text = "4925908.m2", + value = "4925908.m2", }, }, - text = "unk_exp10_4864083", - value = "unk_exp10_4864083", + text = "unk_exp10_4925908", + value = "unk_exp10_4925908", }, { children = { { - fileId = "4864087", - text = "4864087.m2", - value = "4864087.m2", + fileId = "4925909", + text = "4925909.m2", + value = "4925909.m2", }, }, - text = "unk_exp10_4864087", - value = "unk_exp10_4864087", + text = "unk_exp10_4925909", + value = "unk_exp10_4925909", }, { children = { { - fileId = "4864089", - text = "4864089.m2", - value = "4864089.m2", + fileId = "4925910", + text = "4925910.m2", + value = "4925910.m2", }, }, - text = "unk_exp10_4864089", - value = "unk_exp10_4864089", + text = "unk_exp10_4925910", + value = "unk_exp10_4925910", }, { children = { { - fileId = "4864090", - text = "4864090.m2", - value = "4864090.m2", + fileId = "4925911", + text = "4925911.m2", + value = "4925911.m2", }, }, - text = "unk_exp10_4864090", - value = "unk_exp10_4864090", + text = "unk_exp10_4925911", + value = "unk_exp10_4925911", }, { children = { { - fileId = "4864091", - text = "4864091.m2", - value = "4864091.m2", + fileId = "4925912", + text = "4925912.m2", + value = "4925912.m2", }, }, - text = "unk_exp10_4864091", - value = "unk_exp10_4864091", + text = "unk_exp10_4925912", + value = "unk_exp10_4925912", }, { children = { { - fileId = "4864092", - text = "4864092.m2", - value = "4864092.m2", + fileId = "4925913", + text = "4925913.m2", + value = "4925913.m2", }, }, - text = "unk_exp10_4864092", - value = "unk_exp10_4864092", + text = "unk_exp10_4925913", + value = "unk_exp10_4925913", }, { children = { { - fileId = "4864093", - text = "4864093.m2", - value = "4864093.m2", + fileId = "4925914", + text = "4925914.m2", + value = "4925914.m2", }, }, - text = "unk_exp10_4864093", - value = "unk_exp10_4864093", + text = "unk_exp10_4925914", + value = "unk_exp10_4925914", }, { children = { { - fileId = "4864094", - text = "4864094.m2", - value = "4864094.m2", + fileId = "4925915", + text = "4925915.m2", + value = "4925915.m2", }, }, - text = "unk_exp10_4864094", - value = "unk_exp10_4864094", + text = "unk_exp10_4925915", + value = "unk_exp10_4925915", }, { children = { { - fileId = "4864095", - text = "4864095.m2", - value = "4864095.m2", + fileId = "4925916", + text = "4925916.m2", + value = "4925916.m2", }, }, - text = "unk_exp10_4864095", - value = "unk_exp10_4864095", + text = "unk_exp10_4925916", + value = "unk_exp10_4925916", }, { children = { { - fileId = "4864096", - text = "4864096.m2", - value = "4864096.m2", + fileId = "4925917", + text = "4925917.m2", + value = "4925917.m2", }, }, - text = "unk_exp10_4864096", - value = "unk_exp10_4864096", + text = "unk_exp10_4925917", + value = "unk_exp10_4925917", }, { children = { { - fileId = "4864097", - text = "4864097.m2", - value = "4864097.m2", + fileId = "4925918", + text = "4925918.m2", + value = "4925918.m2", }, }, - text = "unk_exp10_4864097", - value = "unk_exp10_4864097", + text = "unk_exp10_4925918", + value = "unk_exp10_4925918", }, { children = { { - fileId = "4865936", - text = "4865936.m2", - value = "4865936.m2", + fileId = "4925919", + text = "4925919.m2", + value = "4925919.m2", }, }, - text = "unk_exp10_4865936", - value = "unk_exp10_4865936", + text = "unk_exp10_4925919", + value = "unk_exp10_4925919", }, { children = { { - fileId = "4865940", - text = "4865940.m2", - value = "4865940.m2", + fileId = "4952141", + text = "4952141.m2", + value = "4952141.m2", }, }, - text = "unk_exp10_4865940", - value = "unk_exp10_4865940", + text = "unk_exp10_4952141", + value = "unk_exp10_4952141", }, { children = { { - fileId = "4865941", - text = "4865941.m2", - value = "4865941.m2", + fileId = "4952142", + text = "4952142.m2", + value = "4952142.m2", }, }, - text = "unk_exp10_4865941", - value = "unk_exp10_4865941", + text = "unk_exp10_4952142", + value = "unk_exp10_4952142", }, { children = { { - fileId = "4865942", - text = "4865942.m2", - value = "4865942.m2", + fileId = "4952580", + text = "4952580.m2", + value = "4952580.m2", }, }, - text = "unk_exp10_4865942", - value = "unk_exp10_4865942", + text = "unk_exp10_4952580", + value = "unk_exp10_4952580", }, { children = { { - fileId = "4865943", - text = "4865943.m2", - value = "4865943.m2", + fileId = "4952582", + text = "4952582.m2", + value = "4952582.m2", }, }, - text = "unk_exp10_4865943", - value = "unk_exp10_4865943", + text = "unk_exp10_4952582", + value = "unk_exp10_4952582", }, { children = { { - fileId = "4865944", - text = "4865944.m2", - value = "4865944.m2", + fileId = "4952583", + text = "4952583.m2", + value = "4952583.m2", }, }, - text = "unk_exp10_4865944", - value = "unk_exp10_4865944", + text = "unk_exp10_4952583", + value = "unk_exp10_4952583", }, { children = { - { - fileId = "4867506", - text = "4867506.m2", - value = "4867506.m2", + { + fileId = "4995950", + text = "4995950.m2", + value = "4995950.m2", }, }, - text = "unk_exp10_4867506", - value = "unk_exp10_4867506", + text = "unk_exp10_4995950", + value = "unk_exp10_4995950", }, { children = { { - fileId = "4867507", - text = "4867507.m2", - value = "4867507.m2", + fileId = "5001180", + text = "5001180.m2", + value = "5001180.m2", }, }, - text = "unk_exp10_4867507", - value = "unk_exp10_4867507", + text = "unk_exp10_5001180", + value = "unk_exp10_5001180", }, { children = { { - fileId = "4867508", - text = "4867508.m2", - value = "4867508.m2", + fileId = "5002709", + text = "5002709.m2", + value = "5002709.m2", }, }, - text = "unk_exp10_4867508", - value = "unk_exp10_4867508", + text = "unk_exp10_5002709", + value = "unk_exp10_5002709", }, { children = { { - fileId = "4867509", - text = "4867509.m2", - value = "4867509.m2", + fileId = "5002710", + text = "5002710.m2", + value = "5002710.m2", }, }, - text = "unk_exp10_4867509", - value = "unk_exp10_4867509", + text = "unk_exp10_5002710", + value = "unk_exp10_5002710", }, { children = { { - fileId = "4867651", - text = "4867651.m2", - value = "4867651.m2", + fileId = "5002714", + text = "5002714.m2", + value = "5002714.m2", }, }, - text = "unk_exp10_4867651", - value = "unk_exp10_4867651", + text = "unk_exp10_5002714", + value = "unk_exp10_5002714", }, { children = { { - fileId = "4867652", - text = "4867652.m2", - value = "4867652.m2", + fileId = "5003016", + text = "5003016.m2", + value = "5003016.m2", }, }, - text = "unk_exp10_4867652", - value = "unk_exp10_4867652", + text = "unk_exp10_5003016", + value = "unk_exp10_5003016", }, { children = { { - fileId = "4867781", - text = "4867781.m2", - value = "4867781.m2", + fileId = "5003018", + text = "5003018.m2", + value = "5003018.m2", }, }, - text = "unk_exp10_4867781", - value = "unk_exp10_4867781", + text = "unk_exp10_5003018", + value = "unk_exp10_5003018", }, { children = { { - fileId = "4867782", - text = "4867782.m2", - value = "4867782.m2", + fileId = "5003804", + text = "5003804.m2", + value = "5003804.m2", }, }, - text = "unk_exp10_4867782", - value = "unk_exp10_4867782", + text = "unk_exp10_5003804", + value = "unk_exp10_5003804", }, { children = { { - fileId = "4868286", - text = "4868286.m2", - value = "4868286.m2", + fileId = "5006520", + text = "5006520.m2", + value = "5006520.m2", }, }, - text = "unk_exp10_4868286", - value = "unk_exp10_4868286", + text = "unk_exp10_5006520", + value = "unk_exp10_5006520", }, { children = { { - fileId = "4868288", - text = "4868288.m2", - value = "4868288.m2", + fileId = "5006521", + text = "5006521.m2", + value = "5006521.m2", }, }, - text = "unk_exp10_4868288", - value = "unk_exp10_4868288", + text = "unk_exp10_5006521", + value = "unk_exp10_5006521", }, { children = { { - fileId = "4872834", - text = "4872834.m2", - value = "4872834.m2", + fileId = "5006522", + text = "5006522.m2", + value = "5006522.m2", }, }, - text = "unk_exp10_4872834", - value = "unk_exp10_4872834", + text = "unk_exp10_5006522", + value = "unk_exp10_5006522", }, { children = { { - fileId = "4872835", - text = "4872835.m2", - value = "4872835.m2", + fileId = "5006523", + text = "5006523.m2", + value = "5006523.m2", }, }, - text = "unk_exp10_4872835", - value = "unk_exp10_4872835", + text = "unk_exp10_5006523", + value = "unk_exp10_5006523", }, { children = { { - fileId = "4872836", - text = "4872836.m2", - value = "4872836.m2", + fileId = "5006526", + text = "5006526.m2", + value = "5006526.m2", }, }, - text = "unk_exp10_4872836", - value = "unk_exp10_4872836", + text = "unk_exp10_5006526", + value = "unk_exp10_5006526", }, { children = { { - fileId = "4872837", - text = "4872837.m2", - value = "4872837.m2", + fileId = "5006527", + text = "5006527.m2", + value = "5006527.m2", }, }, - text = "unk_exp10_4872837", - value = "unk_exp10_4872837", + text = "unk_exp10_5006527", + value = "unk_exp10_5006527", }, { children = { { - fileId = "4872841", - text = "4872841.m2", - value = "4872841.m2", + fileId = "5006528", + text = "5006528.m2", + value = "5006528.m2", }, }, - text = "unk_exp10_4872841", - value = "unk_exp10_4872841", + text = "unk_exp10_5006528", + value = "unk_exp10_5006528", }, { children = { { - fileId = "4872843", - text = "4872843.m2", - value = "4872843.m2", + fileId = "5006529", + text = "5006529.m2", + value = "5006529.m2", }, }, - text = "unk_exp10_4872843", - value = "unk_exp10_4872843", + text = "unk_exp10_5006529", + value = "unk_exp10_5006529", }, { children = { { - fileId = "4872846", - text = "4872846.m2", - value = "4872846.m2", + fileId = "5006530", + text = "5006530.m2", + value = "5006530.m2", }, }, - text = "unk_exp10_4872846", - value = "unk_exp10_4872846", + text = "unk_exp10_5006530", + value = "unk_exp10_5006530", }, { children = { { - fileId = "4872847", - text = "4872847.m2", - value = "4872847.m2", + fileId = "5012056", + text = "5012056.m2", + value = "5012056.m2", }, }, - text = "unk_exp10_4872847", - value = "unk_exp10_4872847", + text = "unk_exp10_5012056", + value = "unk_exp10_5012056", }, { children = { { - fileId = "4872848", - text = "4872848.m2", - value = "4872848.m2", + fileId = "5012057", + text = "5012057.m2", + value = "5012057.m2", }, }, - text = "unk_exp10_4872848", - value = "unk_exp10_4872848", + text = "unk_exp10_5012057", + value = "unk_exp10_5012057", }, { children = { { - fileId = "4879051", - text = "4879051.m2", - value = "4879051.m2", + fileId = "5012060", + text = "5012060.m2", + value = "5012060.m2", }, }, - text = "unk_exp10_4879051", - value = "unk_exp10_4879051", + text = "unk_exp10_5012060", + value = "unk_exp10_5012060", }, { children = { { - fileId = "4879426", - text = "4879426.m2", - value = "4879426.m2", + fileId = "5012061", + text = "5012061.m2", + value = "5012061.m2", }, }, - text = "unk_exp10_4879426", - value = "unk_exp10_4879426", + text = "unk_exp10_5012061", + value = "unk_exp10_5012061", }, { children = { { - fileId = "4879427", - text = "4879427.m2", - value = "4879427.m2", + fileId = "5012062", + text = "5012062.m2", + value = "5012062.m2", }, }, - text = "unk_exp10_4879427", - value = "unk_exp10_4879427", + text = "unk_exp10_5012062", + value = "unk_exp10_5012062", }, { children = { { - fileId = "4879429", - text = "4879429.m2", - value = "4879429.m2", + fileId = "5012495", + text = "5012495.m2", + value = "5012495.m2", }, }, - text = "unk_exp10_4879429", - value = "unk_exp10_4879429", + text = "unk_exp10_5012495", + value = "unk_exp10_5012495", }, { children = { { - fileId = "4879431", - text = "4879431.m2", - value = "4879431.m2", + fileId = "5014565", + text = "5014565.m2", + value = "5014565.m2", }, }, - text = "unk_exp10_4879431", - value = "unk_exp10_4879431", + text = "unk_exp10_5014565", + value = "unk_exp10_5014565", }, { children = { { - fileId = "4879432", - text = "4879432.m2", - value = "4879432.m2", + fileId = "5017656", + text = "5017656.m2", + value = "5017656.m2", }, }, - text = "unk_exp10_4879432", - value = "unk_exp10_4879432", + text = "unk_exp10_5017656", + value = "unk_exp10_5017656", }, { children = { { - fileId = "4879433", - text = "4879433.m2", - value = "4879433.m2", + fileId = "5017661", + text = "5017661.m2", + value = "5017661.m2", }, }, - text = "unk_exp10_4879433", - value = "unk_exp10_4879433", + text = "unk_exp10_5017661", + value = "unk_exp10_5017661", }, { children = { { - fileId = "4879435", - text = "4879435.m2", - value = "4879435.m2", + fileId = "5017664", + text = "5017664.m2", + value = "5017664.m2", }, }, - text = "unk_exp10_4879435", - value = "unk_exp10_4879435", + text = "unk_exp10_5017664", + value = "unk_exp10_5017664", }, { children = { { - fileId = "4879436", - text = "4879436.m2", - value = "4879436.m2", + fileId = "5042463", + text = "5042463.m2", + value = "5042463.m2", }, }, - text = "unk_exp10_4879436", - value = "unk_exp10_4879436", + text = "unk_exp10_5042463", + value = "unk_exp10_5042463", }, { children = { { - fileId = "4888637", - text = "4888637.m2", - value = "4888637.m2", + fileId = "5044445", + text = "5044445.m2", + value = "5044445.m2", }, }, - text = "unk_exp10_4888637", - value = "unk_exp10_4888637", + text = "unk_exp10_5044445", + value = "unk_exp10_5044445", }, { children = { { - fileId = "4891379", - text = "4891379.m2", - value = "4891379.m2", + fileId = "5044446", + text = "5044446.m2", + value = "5044446.m2", }, }, - text = "unk_exp10_4891379", - value = "unk_exp10_4891379", + text = "unk_exp10_5044446", + value = "unk_exp10_5044446", }, { children = { { - fileId = "4891631", - text = "4891631.m2", - value = "4891631.m2", + fileId = "5048829", + text = "5048829.m2", + value = "5048829.m2", }, }, - text = "unk_exp10_4891631", - value = "unk_exp10_4891631", + text = "unk_exp10_5048829", + value = "unk_exp10_5048829", }, { children = { { - fileId = "4895039", - text = "4895039.m2", - value = "4895039.m2", + fileId = "5048830", + text = "5048830.m2", + value = "5048830.m2", }, }, - text = "unk_exp10_4895039", - value = "unk_exp10_4895039", + text = "unk_exp10_5048830", + value = "unk_exp10_5048830", }, { children = { { - fileId = "4895070", - text = "4895070.m2", - value = "4895070.m2", + fileId = "5048831", + text = "5048831.m2", + value = "5048831.m2", }, }, - text = "unk_exp10_4895070", - value = "unk_exp10_4895070", + text = "unk_exp10_5048831", + value = "unk_exp10_5048831", }, { children = { { - fileId = "4900378", - text = "4900378.m2", - value = "4900378.m2", + fileId = "5048832", + text = "5048832.m2", + value = "5048832.m2", }, }, - text = "unk_exp10_4900378", - value = "unk_exp10_4900378", + text = "unk_exp10_5048832", + value = "unk_exp10_5048832", }, { children = { { - fileId = "4900379", - text = "4900379.m2", - value = "4900379.m2", + fileId = "5049180", + text = "5049180.m2", + value = "5049180.m2", }, }, - text = "unk_exp10_4900379", - value = "unk_exp10_4900379", + text = "unk_exp10_5049180", + value = "unk_exp10_5049180", }, { children = { { - fileId = "4901597", - text = "4901597.m2", - value = "4901597.m2", + fileId = "5053632", + text = "5053632.m2", + value = "5053632.m2", }, }, - text = "unk_exp10_4901597", - value = "unk_exp10_4901597", + text = "unk_exp10_5053632", + value = "unk_exp10_5053632", }, { children = { { - fileId = "4901598", - text = "4901598.m2", - value = "4901598.m2", + fileId = "5054343", + text = "5054343.m2", + value = "5054343.m2", }, }, - text = "unk_exp10_4901598", - value = "unk_exp10_4901598", + text = "unk_exp10_5054343", + value = "unk_exp10_5054343", }, { children = { { - fileId = "4901599", - text = "4901599.m2", - value = "4901599.m2", + fileId = "5054975", + text = "5054975.m2", + value = "5054975.m2", }, }, - text = "unk_exp10_4901599", - value = "unk_exp10_4901599", + text = "unk_exp10_5054975", + value = "unk_exp10_5054975", }, { children = { { - fileId = "4901600", - text = "4901600.m2", - value = "4901600.m2", + fileId = "5058499", + text = "5058499.m2", + value = "5058499.m2", }, }, - text = "unk_exp10_4901600", - value = "unk_exp10_4901600", + text = "unk_exp10_5058499", + value = "unk_exp10_5058499", }, { children = { { - fileId = "4903382", - text = "4903382.m2", - value = "4903382.m2", + fileId = "5091193", + text = "5091193.m2", + value = "5091193.m2", }, }, - text = "unk_exp10_4903382", - value = "unk_exp10_4903382", + text = "unk_exp10_5091193", + value = "unk_exp10_5091193", }, { children = { { - fileId = "4903383", - text = "4903383.m2", - value = "4903383.m2", + fileId = "5091195", + text = "5091195.m2", + value = "5091195.m2", }, }, - text = "unk_exp10_4903383", - value = "unk_exp10_4903383", + text = "unk_exp10_5091195", + value = "unk_exp10_5091195", }, { children = { { - fileId = "4903384", - text = "4903384.m2", - value = "4903384.m2", + fileId = "5091196", + text = "5091196.m2", + value = "5091196.m2", }, }, - text = "unk_exp10_4903384", - value = "unk_exp10_4903384", + text = "unk_exp10_5091196", + value = "unk_exp10_5091196", }, { children = { { - fileId = "4906602", - text = "4906602.m2", - value = "4906602.m2", + fileId = "5091198", + text = "5091198.m2", + value = "5091198.m2", }, }, - text = "unk_exp10_4906602", - value = "unk_exp10_4906602", + text = "unk_exp10_5091198", + value = "unk_exp10_5091198", }, { children = { { - fileId = "4908471", - text = "4908471.m2", - value = "4908471.m2", + fileId = "5093353", + text = "5093353.m2", + value = "5093353.m2", }, }, - text = "unk_exp10_4908471", - value = "unk_exp10_4908471", + text = "unk_exp10_5093353", + value = "unk_exp10_5093353", }, { children = { { - fileId = "4910754", - text = "4910754.m2", - value = "4910754.m2", + fileId = "5093669", + text = "5093669.m2", + value = "5093669.m2", }, }, - text = "unk_exp10_4910754", - value = "unk_exp10_4910754", + text = "unk_exp10_5093669", + value = "unk_exp10_5093669", }, { children = { { - fileId = "4913972", - text = "4913972.m2", - value = "4913972.m2", + fileId = "5094793", + text = "5094793.m2", + value = "5094793.m2", }, }, - text = "unk_exp10_4913972", - value = "unk_exp10_4913972", + text = "unk_exp10_5094793", + value = "unk_exp10_5094793", }, { children = { { - fileId = "4914530", - text = "4914530.m2", - value = "4914530.m2", + fileId = "5097395", + text = "5097395.m2", + value = "5097395.m2", }, }, - text = "unk_exp10_4914530", - value = "unk_exp10_4914530", + text = "unk_exp10_5097395", + value = "unk_exp10_5097395", }, { children = { { - fileId = "4914531", - text = "4914531.m2", - value = "4914531.m2", + fileId = "5097396", + text = "5097396.m2", + value = "5097396.m2", }, }, - text = "unk_exp10_4914531", - value = "unk_exp10_4914531", + text = "unk_exp10_5097396", + value = "unk_exp10_5097396", }, { children = { { - fileId = "4925906", - text = "4925906.m2", - value = "4925906.m2", + fileId = "5097399", + text = "5097399.m2", + value = "5097399.m2", }, }, - text = "unk_exp10_4925906", - value = "unk_exp10_4925906", + text = "unk_exp10_5097399", + value = "unk_exp10_5097399", }, { children = { { - fileId = "4925907", - text = "4925907.m2", - value = "4925907.m2", + fileId = "5097402", + text = "5097402.m2", + value = "5097402.m2", }, }, - text = "unk_exp10_4925907", - value = "unk_exp10_4925907", + text = "unk_exp10_5097402", + value = "unk_exp10_5097402", }, { children = { { - fileId = "4925908", - text = "4925908.m2", - value = "4925908.m2", + fileId = "5097403", + text = "5097403.m2", + value = "5097403.m2", }, }, - text = "unk_exp10_4925908", - value = "unk_exp10_4925908", + text = "unk_exp10_5097403", + value = "unk_exp10_5097403", }, { children = { - { - fileId = "4925909", - text = "4925909.m2", - value = "4925909.m2", + { + fileId = "5097404", + text = "5097404.m2", + value = "5097404.m2", }, }, - text = "unk_exp10_4925909", - value = "unk_exp10_4925909", + text = "unk_exp10_5097404", + value = "unk_exp10_5097404", }, { children = { { - fileId = "4925910", - text = "4925910.m2", - value = "4925910.m2", + fileId = "5098317", + text = "5098317.m2", + value = "5098317.m2", }, }, - text = "unk_exp10_4925910", - value = "unk_exp10_4925910", + text = "unk_exp10_5098317", + value = "unk_exp10_5098317", }, { children = { { - fileId = "4925911", - text = "4925911.m2", - value = "4925911.m2", + fileId = "5098319", + text = "5098319.m2", + value = "5098319.m2", }, }, - text = "unk_exp10_4925911", - value = "unk_exp10_4925911", + text = "unk_exp10_5098319", + value = "unk_exp10_5098319", }, { children = { { - fileId = "4925912", - text = "4925912.m2", - value = "4925912.m2", + fileId = "5098320", + text = "5098320.m2", + value = "5098320.m2", }, }, - text = "unk_exp10_4925912", - value = "unk_exp10_4925912", + text = "unk_exp10_5098320", + value = "unk_exp10_5098320", }, { children = { { - fileId = "4925913", - text = "4925913.m2", - value = "4925913.m2", + fileId = "5098697", + text = "5098697.m2", + value = "5098697.m2", }, }, - text = "unk_exp10_4925913", - value = "unk_exp10_4925913", + text = "unk_exp10_5098697", + value = "unk_exp10_5098697", }, { children = { { - fileId = "4925914", - text = "4925914.m2", - value = "4925914.m2", + fileId = "5098698", + text = "5098698.m2", + value = "5098698.m2", }, }, - text = "unk_exp10_4925914", - value = "unk_exp10_4925914", + text = "unk_exp10_5098698", + value = "unk_exp10_5098698", }, { children = { { - fileId = "4925915", - text = "4925915.m2", - value = "4925915.m2", + fileId = "5098699", + text = "5098699.m2", + value = "5098699.m2", }, }, - text = "unk_exp10_4925915", - value = "unk_exp10_4925915", + text = "unk_exp10_5098699", + value = "unk_exp10_5098699", }, { children = { { - fileId = "4925916", - text = "4925916.m2", - value = "4925916.m2", + fileId = "5098701", + text = "5098701.m2", + value = "5098701.m2", }, }, - text = "unk_exp10_4925916", - value = "unk_exp10_4925916", + text = "unk_exp10_5098701", + value = "unk_exp10_5098701", }, { children = { { - fileId = "4925917", - text = "4925917.m2", - value = "4925917.m2", + fileId = "5098702", + text = "5098702.m2", + value = "5098702.m2", }, }, - text = "unk_exp10_4925917", - value = "unk_exp10_4925917", + text = "unk_exp10_5098702", + value = "unk_exp10_5098702", }, { children = { { - fileId = "4925918", - text = "4925918.m2", - value = "4925918.m2", + fileId = "5098906", + text = "5098906.m2", + value = "5098906.m2", }, }, - text = "unk_exp10_4925918", - value = "unk_exp10_4925918", + text = "unk_exp10_5098906", + value = "unk_exp10_5098906", }, { children = { { - fileId = "4925919", - text = "4925919.m2", - value = "4925919.m2", + fileId = "5098909", + text = "5098909.m2", + value = "5098909.m2", }, }, - text = "unk_exp10_4925919", - value = "unk_exp10_4925919", + text = "unk_exp10_5098909", + value = "unk_exp10_5098909", }, { children = { { - fileId = "4952141", - text = "4952141.m2", - value = "4952141.m2", + fileId = "5098910", + text = "5098910.m2", + value = "5098910.m2", }, }, - text = "unk_exp10_4952141", - value = "unk_exp10_4952141", + text = "unk_exp10_5098910", + value = "unk_exp10_5098910", }, { children = { { - fileId = "4952142", - text = "4952142.m2", - value = "4952142.m2", + fileId = "5100015", + text = "5100015.m2", + value = "5100015.m2", }, }, - text = "unk_exp10_4952142", - value = "unk_exp10_4952142", + text = "unk_exp10_5100015", + value = "unk_exp10_5100015", }, { children = { { - fileId = "4952580", - text = "4952580.m2", - value = "4952580.m2", + fileId = "5100780", + text = "5100780.m2", + value = "5100780.m2", }, }, - text = "unk_exp10_4952580", - value = "unk_exp10_4952580", + text = "unk_exp10_5100780", + value = "unk_exp10_5100780", }, { children = { { - fileId = "4952582", - text = "4952582.m2", - value = "4952582.m2", + fileId = "5140106", + text = "5140106.m2", + value = "5140106.m2", }, }, - text = "unk_exp10_4952582", - value = "unk_exp10_4952582", + text = "unk_exp10_5140106", + value = "unk_exp10_5140106", }, { children = { { - fileId = "4952583", - text = "4952583.m2", - value = "4952583.m2", + fileId = "5151434", + text = "5151434.m2", + value = "5151434.m2", }, }, - text = "unk_exp10_4952583", - value = "unk_exp10_4952583", + text = "unk_exp10_5151434", + value = "unk_exp10_5151434", }, { children = { { - fileId = "4995950", - text = "4995950.m2", - value = "4995950.m2", + fileId = "5153345", + text = "5153345.m2", + value = "5153345.m2", }, }, - text = "unk_exp10_4995950", - value = "unk_exp10_4995950", + text = "unk_exp10_5153345", + value = "unk_exp10_5153345", }, { children = { { - fileId = "5002709", - text = "5002709.m2", - value = "5002709.m2", + fileId = "5153346", + text = "5153346.m2", + value = "5153346.m2", }, }, - text = "unk_exp10_5002709", - value = "unk_exp10_5002709", + text = "unk_exp10_5153346", + value = "unk_exp10_5153346", }, { children = { { - fileId = "5002710", - text = "5002710.m2", - value = "5002710.m2", + fileId = "5153347", + text = "5153347.m2", + value = "5153347.m2", }, }, - text = "unk_exp10_5002710", - value = "unk_exp10_5002710", + text = "unk_exp10_5153347", + value = "unk_exp10_5153347", }, { children = { { - fileId = "5002714", - text = "5002714.m2", - value = "5002714.m2", + fileId = "5154471", + text = "5154471.m2", + value = "5154471.m2", }, }, - text = "unk_exp10_5002714", - value = "unk_exp10_5002714", + text = "unk_exp10_5154471", + value = "unk_exp10_5154471", }, { children = { { - fileId = "5003016", - text = "5003016.m2", - value = "5003016.m2", + fileId = "5161820", + text = "5161820.m2", + value = "5161820.m2", }, }, - text = "unk_exp10_5003016", - value = "unk_exp10_5003016", + text = "unk_exp10_5161820", + value = "unk_exp10_5161820", }, { children = { { - fileId = "5003018", - text = "5003018.m2", - value = "5003018.m2", + fileId = "5168372", + text = "5168372.m2", + value = "5168372.m2", }, }, - text = "unk_exp10_5003018", - value = "unk_exp10_5003018", + text = "unk_exp10_5168372", + value = "unk_exp10_5168372", }, { children = { { - fileId = "5003804", - text = "5003804.m2", - value = "5003804.m2", + fileId = "5168373", + text = "5168373.m2", + value = "5168373.m2", }, }, - text = "unk_exp10_5003804", - value = "unk_exp10_5003804", + text = "unk_exp10_5168373", + value = "unk_exp10_5168373", }, { children = { { - fileId = "5006520", - text = "5006520.m2", - value = "5006520.m2", + fileId = "5172571", + text = "5172571.m2", + value = "5172571.m2", }, }, - text = "unk_exp10_5006520", - value = "unk_exp10_5006520", + text = "unk_exp10_5172571", + value = "unk_exp10_5172571", }, { children = { { - fileId = "5006521", - text = "5006521.m2", - value = "5006521.m2", + fileId = "5175368", + text = "5175368.m2", + value = "5175368.m2", }, }, - text = "unk_exp10_5006521", - value = "unk_exp10_5006521", + text = "unk_exp10_5175368", + value = "unk_exp10_5175368", }, { children = { { - fileId = "5006522", - text = "5006522.m2", - value = "5006522.m2", + fileId = "5175369", + text = "5175369.m2", + value = "5175369.m2", }, }, - text = "unk_exp10_5006522", - value = "unk_exp10_5006522", + text = "unk_exp10_5175369", + value = "unk_exp10_5175369", }, { children = { { - fileId = "5006523", - text = "5006523.m2", - value = "5006523.m2", + fileId = "5189860", + text = "5189860.m2", + value = "5189860.m2", }, }, - text = "unk_exp10_5006523", - value = "unk_exp10_5006523", + text = "unk_exp10_5189860", + value = "unk_exp10_5189860", }, { children = { { - fileId = "5006526", - text = "5006526.m2", - value = "5006526.m2", + fileId = "5198704", + text = "5198704.m2", + value = "5198704.m2", }, }, - text = "unk_exp10_5006526", - value = "unk_exp10_5006526", + text = "unk_exp10_5198704", + value = "unk_exp10_5198704", }, { children = { { - fileId = "5006527", - text = "5006527.m2", - value = "5006527.m2", + fileId = "5198705", + text = "5198705.m2", + value = "5198705.m2", }, }, - text = "unk_exp10_5006527", - value = "unk_exp10_5006527", + text = "unk_exp10_5198705", + value = "unk_exp10_5198705", }, { children = { { - fileId = "5006528", - text = "5006528.m2", - value = "5006528.m2", + fileId = "5198708", + text = "5198708.m2", + value = "5198708.m2", }, }, - text = "unk_exp10_5006528", - value = "unk_exp10_5006528", + text = "unk_exp10_5198708", + value = "unk_exp10_5198708", }, { children = { { - fileId = "5006529", - text = "5006529.m2", - value = "5006529.m2", + fileId = "5202079", + text = "5202079.m2", + value = "5202079.m2", }, }, - text = "unk_exp10_5006529", - value = "unk_exp10_5006529", + text = "unk_exp10_5202079", + value = "unk_exp10_5202079", }, { children = { { - fileId = "5006530", - text = "5006530.m2", - value = "5006530.m2", + fileId = "5205754", + text = "5205754.m2", + value = "5205754.m2", }, }, - text = "unk_exp10_5006530", - value = "unk_exp10_5006530", + text = "unk_exp10_5205754", + value = "unk_exp10_5205754", }, { children = { { - fileId = "5012056", - text = "5012056.m2", - value = "5012056.m2", + fileId = "5207583", + text = "5207583.m2", + value = "5207583.m2", }, }, - text = "unk_exp10_5012056", - value = "unk_exp10_5012056", + text = "unk_exp10_5207583", + value = "unk_exp10_5207583", }, { children = { { - fileId = "5012057", - text = "5012057.m2", - value = "5012057.m2", + fileId = "5210666", + text = "5210666.m2", + value = "5210666.m2", }, }, - text = "unk_exp10_5012057", - value = "unk_exp10_5012057", + text = "unk_exp10_5210666", + value = "unk_exp10_5210666", }, { children = { { - fileId = "5012060", - text = "5012060.m2", - value = "5012060.m2", + fileId = "5210667", + text = "5210667.m2", + value = "5210667.m2", }, }, - text = "unk_exp10_5012060", - value = "unk_exp10_5012060", + text = "unk_exp10_5210667", + value = "unk_exp10_5210667", }, { children = { { - fileId = "5012061", - text = "5012061.m2", - value = "5012061.m2", + fileId = "5210668", + text = "5210668.m2", + value = "5210668.m2", }, }, - text = "unk_exp10_5012061", - value = "unk_exp10_5012061", + text = "unk_exp10_5210668", + value = "unk_exp10_5210668", }, { children = { { - fileId = "5012062", - text = "5012062.m2", - value = "5012062.m2", + fileId = "5225900", + text = "5225900.m2", + value = "5225900.m2", }, }, - text = "unk_exp10_5012062", - value = "unk_exp10_5012062", + text = "unk_exp10_5225900", + value = "unk_exp10_5225900", }, { children = { { - fileId = "5014565", - text = "5014565.m2", - value = "5014565.m2", + fileId = "5243671", + text = "5243671.m2", + value = "5243671.m2", }, }, - text = "unk_exp10_5014565", - value = "unk_exp10_5014565", + text = "unk_exp10_5243671", + value = "unk_exp10_5243671", }, { children = { { - fileId = "5017656", - text = "5017656.m2", - value = "5017656.m2", + fileId = "5243676", + text = "5243676.m2", + value = "5243676.m2", }, }, - text = "unk_exp10_5017656", - value = "unk_exp10_5017656", + text = "unk_exp10_5243676", + value = "unk_exp10_5243676", }, { children = { { - fileId = "5017661", - text = "5017661.m2", - value = "5017661.m2", + fileId = "5243681", + text = "5243681.m2", + value = "5243681.m2", }, }, - text = "unk_exp10_5017661", - value = "unk_exp10_5017661", + text = "unk_exp10_5243681", + value = "unk_exp10_5243681", }, { children = { { - fileId = "5017664", - text = "5017664.m2", - value = "5017664.m2", + fileId = "5243686", + text = "5243686.m2", + value = "5243686.m2", }, }, - text = "unk_exp10_5017664", - value = "unk_exp10_5017664", + text = "unk_exp10_5243686", + value = "unk_exp10_5243686", }, { children = { { - fileId = "5042463", - text = "5042463.m2", - value = "5042463.m2", + fileId = "5243691", + text = "5243691.m2", + value = "5243691.m2", }, }, - text = "unk_exp10_5042463", - value = "unk_exp10_5042463", + text = "unk_exp10_5243691", + value = "unk_exp10_5243691", }, { children = { { - fileId = "5044445", - text = "5044445.m2", - value = "5044445.m2", + fileId = "5243696", + text = "5243696.m2", + value = "5243696.m2", }, }, - text = "unk_exp10_5044445", - value = "unk_exp10_5044445", + text = "unk_exp10_5243696", + value = "unk_exp10_5243696", }, { children = { { - fileId = "5044446", - text = "5044446.m2", - value = "5044446.m2", + fileId = "5306881", + text = "5306881.m2", + value = "5306881.m2", }, }, - text = "unk_exp10_5044446", - value = "unk_exp10_5044446", + text = "unk_exp10_5306881", + value = "unk_exp10_5306881", }, { children = { { - fileId = "5048829", - text = "5048829.m2", - value = "5048829.m2", + fileId = "5306882", + text = "5306882.m2", + value = "5306882.m2", }, }, - text = "unk_exp10_5048829", - value = "unk_exp10_5048829", + text = "unk_exp10_5306882", + value = "unk_exp10_5306882", }, { children = { { - fileId = "5048830", - text = "5048830.m2", - value = "5048830.m2", + fileId = "5306883", + text = "5306883.m2", + value = "5306883.m2", }, }, - text = "unk_exp10_5048830", - value = "unk_exp10_5048830", + text = "unk_exp10_5306883", + value = "unk_exp10_5306883", }, { children = { { - fileId = "5048831", - text = "5048831.m2", - value = "5048831.m2", + fileId = "5306884", + text = "5306884.m2", + value = "5306884.m2", }, }, - text = "unk_exp10_5048831", - value = "unk_exp10_5048831", + text = "unk_exp10_5306884", + value = "unk_exp10_5306884", }, { children = { { - fileId = "5048832", - text = "5048832.m2", - value = "5048832.m2", + fileId = "5319044", + text = "5319044.m2", + value = "5319044.m2", }, }, - text = "unk_exp10_5048832", - value = "unk_exp10_5048832", + text = "unk_exp10_5319044", + value = "unk_exp10_5319044", }, { children = { { - fileId = "5049180", - text = "5049180.m2", - value = "5049180.m2", + fileId = "5323463", + text = "5323463.m2", + value = "5323463.m2", }, }, - text = "unk_exp10_5049180", - value = "unk_exp10_5049180", + text = "unk_exp10_5323463", + value = "unk_exp10_5323463", }, { children = { { - fileId = "5091193", - text = "5091193.m2", - value = "5091193.m2", + fileId = "5333966", + text = "5333966.m2", + value = "5333966.m2", }, }, - text = "unk_exp10_5091193", - value = "unk_exp10_5091193", + text = "unk_exp10_5333966", + value = "unk_exp10_5333966", }, { children = { { - fileId = "5091195", - text = "5091195.m2", - value = "5091195.m2", + fileId = "5341109", + text = "5341109.m2", + value = "5341109.m2", }, }, - text = "unk_exp10_5091195", - value = "unk_exp10_5091195", + text = "unk_exp10_5341109", + value = "unk_exp10_5341109", }, { children = { - { - fileId = "5091196", - text = "5091196.m2", - value = "5091196.m2", + { + fileId = "5342421", + text = "5342421.m2", + value = "5342421.m2", }, }, - text = "unk_exp10_5091196", - value = "unk_exp10_5091196", + text = "unk_exp10_5342421", + value = "unk_exp10_5342421", }, { children = { { - fileId = "5091198", - text = "5091198.m2", - value = "5091198.m2", + fileId = "5346309", + text = "5346309.m2", + value = "5346309.m2", }, }, - text = "unk_exp10_5091198", - value = "unk_exp10_5091198", + text = "unk_exp10_5346309", + value = "unk_exp10_5346309", }, { children = { { - fileId = "5093669", - text = "5093669.m2", - value = "5093669.m2", + fileId = "5346310", + text = "5346310.m2", + value = "5346310.m2", }, }, - text = "unk_exp10_5093669", - value = "unk_exp10_5093669", + text = "unk_exp10_5346310", + value = "unk_exp10_5346310", }, { children = { { - fileId = "5097395", - text = "5097395.m2", - value = "5097395.m2", + fileId = "5353584", + text = "5353584.m2", + value = "5353584.m2", }, }, - text = "unk_exp10_5097395", - value = "unk_exp10_5097395", + text = "unk_exp10_5353584", + value = "unk_exp10_5353584", }, { children = { { - fileId = "5097396", - text = "5097396.m2", - value = "5097396.m2", + fileId = "5369349", + text = "5369349.m2", + value = "5369349.m2", }, }, - text = "unk_exp10_5097396", - value = "unk_exp10_5097396", + text = "unk_exp10_5369349", + value = "unk_exp10_5369349", }, { children = { { - fileId = "5097399", - text = "5097399.m2", - value = "5097399.m2", + fileId = "5369872", + text = "5369872.m2", + value = "5369872.m2", }, }, - text = "unk_exp10_5097399", - value = "unk_exp10_5097399", + text = "unk_exp10_5369872", + value = "unk_exp10_5369872", }, { children = { { - fileId = "5097402", - text = "5097402.m2", - value = "5097402.m2", + fileId = "5369873", + text = "5369873.m2", + value = "5369873.m2", }, }, - text = "unk_exp10_5097402", - value = "unk_exp10_5097402", + text = "unk_exp10_5369873", + value = "unk_exp10_5369873", }, { children = { { - fileId = "5097403", - text = "5097403.m2", - value = "5097403.m2", + fileId = "5369876", + text = "5369876.m2", + value = "5369876.m2", }, }, - text = "unk_exp10_5097403", - value = "unk_exp10_5097403", + text = "unk_exp10_5369876", + value = "unk_exp10_5369876", }, { children = { { - fileId = "5097404", - text = "5097404.m2", - value = "5097404.m2", + fileId = "5369877", + text = "5369877.m2", + value = "5369877.m2", }, }, - text = "unk_exp10_5097404", - value = "unk_exp10_5097404", + text = "unk_exp10_5369877", + value = "unk_exp10_5369877", }, { children = { { - fileId = "5098317", - text = "5098317.m2", - value = "5098317.m2", + fileId = "5369878", + text = "5369878.m2", + value = "5369878.m2", }, }, - text = "unk_exp10_5098317", - value = "unk_exp10_5098317", + text = "unk_exp10_5369878", + value = "unk_exp10_5369878", }, { children = { { - fileId = "5098319", - text = "5098319.m2", - value = "5098319.m2", + fileId = "5369879", + text = "5369879.m2", + value = "5369879.m2", }, }, - text = "unk_exp10_5098319", - value = "unk_exp10_5098319", + text = "unk_exp10_5369879", + value = "unk_exp10_5369879", }, { children = { { - fileId = "5098320", - text = "5098320.m2", - value = "5098320.m2", + fileId = "5370809", + text = "5370809.m2", + value = "5370809.m2", }, }, - text = "unk_exp10_5098320", - value = "unk_exp10_5098320", + text = "unk_exp10_5370809", + value = "unk_exp10_5370809", }, { children = { { - fileId = "5098697", - text = "5098697.m2", - value = "5098697.m2", + fileId = "5370894", + text = "5370894.m2", + value = "5370894.m2", }, }, - text = "unk_exp10_5098697", - value = "unk_exp10_5098697", + text = "unk_exp10_5370894", + value = "unk_exp10_5370894", }, { children = { { - fileId = "5098698", - text = "5098698.m2", - value = "5098698.m2", + fileId = "5371641", + text = "5371641.m2", + value = "5371641.m2", }, }, - text = "unk_exp10_5098698", - value = "unk_exp10_5098698", + text = "unk_exp10_5371641", + value = "unk_exp10_5371641", }, { children = { { - fileId = "5098699", - text = "5098699.m2", - value = "5098699.m2", + fileId = "5371866", + text = "5371866.m2", + value = "5371866.m2", }, }, - text = "unk_exp10_5098699", - value = "unk_exp10_5098699", + text = "unk_exp10_5371866", + value = "unk_exp10_5371866", }, { children = { { - fileId = "5098701", - text = "5098701.m2", - value = "5098701.m2", + fileId = "5372442", + text = "5372442.m2", + value = "5372442.m2", }, }, - text = "unk_exp10_5098701", - value = "unk_exp10_5098701", + text = "unk_exp10_5372442", + value = "unk_exp10_5372442", }, { children = { { - fileId = "5098702", - text = "5098702.m2", - value = "5098702.m2", + fileId = "5384965", + text = "5384965.m2", + value = "5384965.m2", }, }, - text = "unk_exp10_5098702", - value = "unk_exp10_5098702", + text = "unk_exp10_5384965", + value = "unk_exp10_5384965", }, { children = { { - fileId = "5098906", - text = "5098906.m2", - value = "5098906.m2", + fileId = "5384966", + text = "5384966.m2", + value = "5384966.m2", }, }, - text = "unk_exp10_5098906", - value = "unk_exp10_5098906", + text = "unk_exp10_5384966", + value = "unk_exp10_5384966", }, { children = { { - fileId = "5098909", - text = "5098909.m2", - value = "5098909.m2", + fileId = "5384967", + text = "5384967.m2", + value = "5384967.m2", }, }, - text = "unk_exp10_5098909", - value = "unk_exp10_5098909", + text = "unk_exp10_5384967", + value = "unk_exp10_5384967", }, { children = { { - fileId = "5098910", - text = "5098910.m2", - value = "5098910.m2", + fileId = "5386257", + text = "5386257.m2", + value = "5386257.m2", }, }, - text = "unk_exp10_5098910", - value = "unk_exp10_5098910", + text = "unk_exp10_5386257", + value = "unk_exp10_5386257", }, { children = { { - fileId = "5100016", - text = "5100016.m2", - value = "5100016.m2", + fileId = "5386384", + text = "5386384.m2", + value = "5386384.m2", }, }, - text = "unk_exp10_5100016", - value = "unk_exp10_5100016", + text = "unk_exp10_5386384", + value = "unk_exp10_5386384", }, { children = { { - fileId = "5100780", - text = "5100780.m2", - value = "5100780.m2", + fileId = "5386385", + text = "5386385.m2", + value = "5386385.m2", }, }, - text = "unk_exp10_5100780", - value = "unk_exp10_5100780", + text = "unk_exp10_5386385", + value = "unk_exp10_5386385", }, { children = { { - fileId = "5140106", - text = "5140106.m2", - value = "5140106.m2", + fileId = "5386386", + text = "5386386.m2", + value = "5386386.m2", }, }, - text = "unk_exp10_5140106", - value = "unk_exp10_5140106", + text = "unk_exp10_5386386", + value = "unk_exp10_5386386", }, { children = { { - fileId = "5151434", - text = "5151434.m2", - value = "5151434.m2", + fileId = "5386387", + text = "5386387.m2", + value = "5386387.m2", }, }, - text = "unk_exp10_5151434", - value = "unk_exp10_5151434", + text = "unk_exp10_5386387", + value = "unk_exp10_5386387", }, { children = { { - fileId = "5153345", - text = "5153345.m2", - value = "5153345.m2", + fileId = "5386388", + text = "5386388.m2", + value = "5386388.m2", }, }, - text = "unk_exp10_5153345", - value = "unk_exp10_5153345", + text = "unk_exp10_5386388", + value = "unk_exp10_5386388", }, { children = { { - fileId = "5153346", - text = "5153346.m2", - value = "5153346.m2", + fileId = "5386390", + text = "5386390.m2", + value = "5386390.m2", }, }, - text = "unk_exp10_5153346", - value = "unk_exp10_5153346", + text = "unk_exp10_5386390", + value = "unk_exp10_5386390", }, { children = { { - fileId = "5153347", - text = "5153347.m2", - value = "5153347.m2", + fileId = "5386391", + text = "5386391.m2", + value = "5386391.m2", }, }, - text = "unk_exp10_5153347", - value = "unk_exp10_5153347", + text = "unk_exp10_5386391", + value = "unk_exp10_5386391", }, { children = { { - fileId = "5154471", - text = "5154471.m2", - value = "5154471.m2", + fileId = "5386392", + text = "5386392.m2", + value = "5386392.m2", }, }, - text = "unk_exp10_5154471", - value = "unk_exp10_5154471", + text = "unk_exp10_5386392", + value = "unk_exp10_5386392", }, { children = { { - fileId = "5161820", - text = "5161820.m2", - value = "5161820.m2", + fileId = "5386393", + text = "5386393.m2", + value = "5386393.m2", }, }, - text = "unk_exp10_5161820", - value = "unk_exp10_5161820", + text = "unk_exp10_5386393", + value = "unk_exp10_5386393", }, { children = { { - fileId = "5168372", - text = "5168372.m2", - value = "5168372.m2", + fileId = "5386394", + text = "5386394.m2", + value = "5386394.m2", }, }, - text = "unk_exp10_5168372", - value = "unk_exp10_5168372", + text = "unk_exp10_5386394", + value = "unk_exp10_5386394", }, { children = { { - fileId = "5168373", - text = "5168373.m2", - value = "5168373.m2", + fileId = "5386395", + text = "5386395.m2", + value = "5386395.m2", }, }, - text = "unk_exp10_5168373", - value = "unk_exp10_5168373", + text = "unk_exp10_5386395", + value = "unk_exp10_5386395", }, { children = { { - fileId = "5175368", - text = "5175368.m2", - value = "5175368.m2", + fileId = "5400309", + text = "5400309.m2", + value = "5400309.m2", }, }, - text = "unk_exp10_5175368", - value = "unk_exp10_5175368", + text = "unk_exp10_5400309", + value = "unk_exp10_5400309", }, { children = { { - fileId = "5189860", - text = "5189860.m2", - value = "5189860.m2", + fileId = "5403869", + text = "5403869.m2", + value = "5403869.m2", }, }, - text = "unk_exp10_5189860", - value = "unk_exp10_5189860", + text = "unk_exp10_5403869", + value = "unk_exp10_5403869", }, { children = { { - fileId = "5198704", - text = "5198704.m2", - value = "5198704.m2", + fileId = "5413037", + text = "5413037.m2", + value = "5413037.m2", }, }, - text = "unk_exp10_5198704", - value = "unk_exp10_5198704", + text = "unk_exp10_5413037", + value = "unk_exp10_5413037", }, { children = { { - fileId = "5198705", - text = "5198705.m2", - value = "5198705.m2", + fileId = "5456575", + text = "5456575.m2", + value = "5456575.m2", }, }, - text = "unk_exp10_5198705", - value = "unk_exp10_5198705", + text = "unk_exp10_5456575", + value = "unk_exp10_5456575", }, { children = { { - fileId = "5207583", - text = "5207583.m2", - value = "5207583.m2", + fileId = "5467189", + text = "5467189.m2", + value = "5467189.m2", }, }, - text = "unk_exp10_5207583", - value = "unk_exp10_5207583", + text = "unk_exp10_5467189", + value = "unk_exp10_5467189", }, { children = { { - fileId = "5210666", - text = "5210666.m2", - value = "5210666.m2", + fileId = "5479998", + text = "5479998.m2", + value = "5479998.m2", }, }, - text = "unk_exp10_5210666", - value = "unk_exp10_5210666", + text = "unk_exp10_5479998", + value = "unk_exp10_5479998", }, { children = { { - fileId = "5210667", - text = "5210667.m2", - value = "5210667.m2", + fileId = "5480115", + text = "5480115.m2", + value = "5480115.m2", }, }, - text = "unk_exp10_5210667", - value = "unk_exp10_5210667", + text = "unk_exp10_5480115", + value = "unk_exp10_5480115", }, { children = { { - fileId = "5210668", - text = "5210668.m2", - value = "5210668.m2", + fileId = "5493019", + text = "5493019.m2", + value = "5493019.m2", }, }, - text = "unk_exp10_5210668", - value = "unk_exp10_5210668", + text = "unk_exp10_5493019", + value = "unk_exp10_5493019", }, { children = { { - fileId = "5225900", - text = "5225900.m2", - value = "5225900.m2", + fileId = "5493020", + text = "5493020.m2", + value = "5493020.m2", }, }, - text = "unk_exp10_5225900", - value = "unk_exp10_5225900", + text = "unk_exp10_5493020", + value = "unk_exp10_5493020", }, { children = { { - fileId = "5243671", - text = "5243671.m2", - value = "5243671.m2", + fileId = "5493026", + text = "5493026.m2", + value = "5493026.m2", }, }, - text = "unk_exp10_5243671", - value = "unk_exp10_5243671", + text = "unk_exp10_5493026", + value = "unk_exp10_5493026", }, { children = { { - fileId = "5243676", - text = "5243676.m2", - value = "5243676.m2", + fileId = "5493027", + text = "5493027.m2", + value = "5493027.m2", }, }, - text = "unk_exp10_5243676", - value = "unk_exp10_5243676", + text = "unk_exp10_5493027", + value = "unk_exp10_5493027", }, { children = { { - fileId = "5243686", - text = "5243686.m2", - value = "5243686.m2", + fileId = "5493737", + text = "5493737.m2", + value = "5493737.m2", }, }, - text = "unk_exp10_5243686", - value = "unk_exp10_5243686", + text = "unk_exp10_5493737", + value = "unk_exp10_5493737", }, { children = { { - fileId = "5243691", - text = "5243691.m2", - value = "5243691.m2", + fileId = "5493738", + text = "5493738.m2", + value = "5493738.m2", }, }, - text = "unk_exp10_5243691", - value = "unk_exp10_5243691", + text = "unk_exp10_5493738", + value = "unk_exp10_5493738", }, { children = { { - fileId = "5243696", - text = "5243696.m2", - value = "5243696.m2", + fileId = "5493739", + text = "5493739.m2", + value = "5493739.m2", }, }, - text = "unk_exp10_5243696", - value = "unk_exp10_5243696", + text = "unk_exp10_5493739", + value = "unk_exp10_5493739", }, { children = { { - fileId = "5323463", - text = "5323463.m2", - value = "5323463.m2", + fileId = "5493740", + text = "5493740.m2", + value = "5493740.m2", }, }, - text = "unk_exp10_5323463", - value = "unk_exp10_5323463", + text = "unk_exp10_5493740", + value = "unk_exp10_5493740", }, { children = { { - fileId = "5342421", - text = "5342421.m2", - value = "5342421.m2", + fileId = "5493741", + text = "5493741.m2", + value = "5493741.m2", }, }, - text = "unk_exp10_5342421", - value = "unk_exp10_5342421", + text = "unk_exp10_5493741", + value = "unk_exp10_5493741", }, { children = { { - fileId = "5479998", - text = "5479998.m2", - value = "5479998.m2", + fileId = "5502697", + text = "5502697.m2", + value = "5502697.m2", }, }, - text = "unk_exp10_5479998", - value = "unk_exp10_5479998", + text = "unk_exp10_5502697", + value = "unk_exp10_5502697", }, { children = { @@ -294129,6 +293885,17 @@ WeakAuras.ModelPaths = { text = "unk_exp10_5509098", value = "unk_exp10_5509098", }, + { + children = { + { + fileId = "5512749", + text = "5512749.m2", + value = "5512749.m2", + }, + }, + text = "unk_exp10_5512749", + value = "unk_exp10_5512749", + }, { children = { { @@ -294314,6 +294081,11 @@ WeakAuras.ModelPaths = { text = "4489315.m2", value = "4489315.m2", }, + { + fileId = "4495927", + text = "4495927.m2", + value = "4495927.m2", + }, { fileId = "4495928", text = "4495928.m2", @@ -294429,6 +294201,11 @@ WeakAuras.ModelPaths = { text = "4533630.m2", value = "4533630.m2", }, + { + fileId = "4533631", + text = "4533631.m2", + value = "4533631.m2", + }, { fileId = "4533632", text = "4533632.m2", @@ -294559,16 +294336,6 @@ WeakAuras.ModelPaths = { text = "5048220.m2", value = "5048220.m2", }, - { - fileId = "4495927", - text = "fx_amplifiedquakingstone_precast.m2", - value = "fx_amplifiedquakingstone_precast.m2", - }, - { - fileId = "4533631", - text = "fx_shrubbery_aura01.m2", - value = "fx_shrubbery_aura01.m2", - }, }, text = "detail", value = "detail", @@ -299560,6 +299327,17 @@ WeakAuras.ModelPaths = { text = "unk_exp10_5099793", value = "unk_exp10_5099793", }, + { + children = { + { + fileId = "5100016", + text = "5100016.m2", + value = "5100016.m2", + }, + }, + text = "unk_exp10_5100016", + value = "unk_exp10_5100016", + }, { children = { { diff --git a/WeakAurasModelPaths/ModelPathsWrath.lua b/WeakAurasModelPaths/ModelPathsWrath.lua index 199b977cd5..bd4af56335 100644 --- a/WeakAurasModelPaths/ModelPathsWrath.lua +++ b/WeakAurasModelPaths/ModelPathsWrath.lua @@ -1,6 +1,21 @@ WeakAuras.ModelPaths = { { children = { + { + fileId = "372761", + text = "abyssal_maw_camerafly_01.m2", + value = "abyssal_maw_camerafly_01.m2", + }, + { + fileId = "525294", + text = "firelands_bridge_camera_01.m2", + value = "firelands_bridge_camera_01.m2", + }, + { + fileId = "415008", + text = "flyby_maelstrom.m2", + value = "flyby_maelstrom.m2", + }, { fileId = "116902", text = "flybybloodelf.m2", @@ -21,11 +36,26 @@ WeakAuras.ModelPaths = { text = "flybydwarf.m2", value = "flybydwarf.m2", }, + { + fileId = "319842", + text = "flybygilneas_telescope.m2", + value = "flybygilneas_telescope.m2", + }, + { + fileId = "323399", + text = "flybygilneasshort.m2", + value = "flybygilneasshort.m2", + }, { fileId = "116905", text = "flybygnome.m2", value = "flybygnome.m2", }, + { + fileId = "404865", + text = "flybygoblin.m2", + value = "flybygoblin.m2", + }, { fileId = "116906", text = "flybyhuman.m2", @@ -61,6 +91,11 @@ WeakAuras.ModelPaths = { text = "flybyundead.m2", value = "flybyundead.m2", }, + { + fileId = "378600", + text = "flybyworgen.m2", + value = "flybyworgen.m2", + }, { fileId = "116913", text = "orcintro01.m2", @@ -639,6 +674,34 @@ WeakAuras.ModelPaths = { text = "vrykul", value = "vrykul", }, + { + children = { + { + children = { + { + fileId = "307453", + text = "worgenfemale.m2", + value = "worgenfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "307454", + text = "worgenmale.m2", + value = "worgenmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "worgen", + value = "worgen", + }, }, text = "character", value = "character", @@ -689,6 +752,17 @@ WeakAuras.ModelPaths = { text = "akama", value = "akama", }, + { + children = { + { + fileId = "465108", + text = "alakir.m2", + value = "alakir.m2", + }, + }, + text = "alakir", + value = "alakir", + }, { children = { { @@ -701,6 +775,11 @@ WeakAuras.ModelPaths = { text = "ladyalexstrasa.m2", value = "ladyalexstrasa.m2", }, + { + fileId = "575104", + text = "ladyalexstrasa2.m2", + value = "ladyalexstrasa2.m2", + }, }, text = "alexstrasza", value = "alexstrasza", @@ -734,10 +813,37 @@ WeakAuras.ModelPaths = { text = "alliancebrasscannon.m2", value = "alliancebrasscannon.m2", }, + { + fileId = "466077", + text = "alliancebrasscannon_flat.m2", + value = "alliancebrasscannon_flat.m2", + }, }, text = "alliancebrasscannon", value = "alliancebrasscannon", }, + { + children = { + { + fileId = "462736", + text = "alliancelion.m2", + value = "alliancelion.m2", + }, + }, + text = "alliancelionmount", + value = "alliancelionmount", + }, + { + children = { + { + fileId = "523189", + text = "alliancepvpmount.m2", + value = "alliancepvpmount.m2", + }, + }, + text = "alliancepvpmount", + value = "alliancepvpmount", + }, { children = { { @@ -749,6 +855,17 @@ WeakAuras.ModelPaths = { text = "alliancerider", value = "alliancerider", }, + { + children = { + { + fileId = "389198", + text = "ammunae.m2", + value = "ammunae.m2", + }, + }, + text = "ammunae", + value = "ammunae", + }, { children = { { @@ -804,6 +921,28 @@ WeakAuras.ModelPaths = { text = "ancientprotectorcrystalsong", value = "ancientprotectorcrystalsong", }, + { + children = { + { + fileId = "418699", + text = "ancientseaturtle.m2", + value = "ancientseaturtle.m2", + }, + }, + text = "ancientseaturtle", + value = "ancientseaturtle", + }, + { + children = { + { + fileId = "439295", + text = "ancientseaturtlefire.m2", + value = "ancientseaturtlefire.m2", + }, + }, + text = "ancientseaturtlefire", + value = "ancientseaturtlefire", + }, { children = { { @@ -907,6 +1046,17 @@ WeakAuras.ModelPaths = { text = "arfuspetclassic", value = "arfuspetclassic", }, + { + children = { + { + fileId = "456112", + text = "armadillo.m2", + value = "armadillo.m2", + }, + }, + text = "armadillo", + value = "armadillo", + }, { children = { { @@ -945,6 +1095,28 @@ WeakAuras.ModelPaths = { text = "arthasundead", value = "arthasundead", }, + { + children = { + { + fileId = "445928", + text = "avengingangel.m2", + value = "avengingangel.m2", + }, + }, + text = "avengingangel", + value = "avengingangel", + }, + { + children = { + { + fileId = "535719", + text = "azshara.m2", + value = "azshara.m2", + }, + }, + text = "azshara", + value = "azshara", + }, { children = { { @@ -1000,6 +1172,44 @@ WeakAuras.ModelPaths = { text = "babylich", value = "babylich", }, + { + children = { + { + fileId = "467885", + text = "babymoonkin_ne.m2", + value = "babymoonkin_ne.m2", + }, + { + fileId = "467887", + text = "babymoonkin_ta.m2", + value = "babymoonkin_ta.m2", + }, + }, + text = "babymoonkin", + value = "babymoonkin", + }, + { + children = { + { + fileId = "467890", + text = "babyragnoros.m2", + value = "babyragnoros.m2", + }, + }, + text = "babyragnoros", + value = "babyragnoros", + }, + { + children = { + { + fileId = "518934", + text = "creature_balloon_01.m2", + value = "creature_balloon_01.m2", + }, + }, + text = "balloon", + value = "balloon", + }, { children = { { @@ -1130,6 +1340,11 @@ WeakAuras.ModelPaths = { text = "bearmountalt.m2", value = "bearmountalt.m2", }, + { + fileId = "532825", + text = "bearmountalt_darkmoonfaire.m2", + value = "bearmountalt_darkmoonfaire.m2", + }, }, text = "bearmountalt", value = "bearmountalt", @@ -1256,6 +1471,11 @@ WeakAuras.ModelPaths = { text = "boneguard.m2", value = "boneguard.m2", }, + { + fileId = "368596", + text = "boneguardrock.m2", + value = "boneguardrock.m2", + }, }, text = "boneguard", value = "boneguard", @@ -1282,6 +1502,96 @@ WeakAuras.ModelPaths = { text = "boneworm", value = "boneworm", }, + { + children = { + { + fileId = "377274", + text = "bouldergiant.m2", + value = "bouldergiant.m2", + }, + }, + text = "bouldergiant", + value = "bouldergiant", + }, + { + children = { + { + fileId = "424056", + text = "boundairelemental.m2", + value = "boundairelemental.m2", + }, + { + fileId = "426121", + text = "unboundairelemental.m2", + value = "unboundairelemental.m2", + }, + { + fileId = "457663", + text = "unboundairelementallord.m2", + value = "unboundairelementallord.m2", + }, + }, + text = "boundairelemental", + value = "boundairelemental", + }, + { + children = { + { + fileId = "405301", + text = "boundearthelemental.m2", + value = "boundearthelemental.m2", + }, + { + fileId = "426122", + text = "unboundearthelemental.m2", + value = "unboundearthelemental.m2", + }, + { + fileId = "512038", + text = "unboundearthelementallord.m2", + value = "unboundearthelementallord.m2", + }, + }, + text = "boundearthelemental", + value = "boundearthelemental", + }, + { + children = { + { + fileId = "429123", + text = "boundfireelemental.m2", + value = "boundfireelemental.m2", + }, + { + fileId = "436878", + text = "unboundfireelemental.m2", + value = "unboundfireelemental.m2", + }, + { + fileId = "512020", + text = "unboundfireelementallord.m2", + value = "unboundfireelementallord.m2", + }, + }, + text = "boundfireelemental", + value = "boundfireelemental", + }, + { + children = { + { + fileId = "410346", + text = "boundwaterelemental.m2", + value = "boundwaterelemental.m2", + }, + { + fileId = "426123", + text = "unboundwaterelemental.m2", + value = "unboundwaterelemental.m2", + }, + }, + text = "boundwaterelemental", + value = "boundwaterelemental", + }, { children = { { @@ -1315,6 +1625,44 @@ WeakAuras.ModelPaths = { text = "brutallus", value = "brutallus", }, + { + children = { + { + fileId = "378601", + text = "bubble_creature.m2", + value = "bubble_creature.m2", + }, + }, + text = "bubble_creature", + value = "bubble_creature", + }, + { + children = { + { + fileId = "329435", + text = "bushchicken.m2", + value = "bushchicken.m2", + }, + }, + text = "bushchicken", + value = "bushchicken", + }, + { + children = { + { + fileId = "383497", + text = "camel.m2", + value = "camel.m2", + }, + { + fileId = "384457", + text = "camelmount.m2", + value = "camelmount.m2", + }, + }, + text = "camel", + value = "camel", + }, { children = { { @@ -1344,6 +1692,11 @@ WeakAuras.ModelPaths = { text = "cat.m2", value = "cat.m2", }, + { + fileId = "523767", + text = "cat_hallowsend.m2", + value = "cat_hallowsend.m2", + }, { fileId = "319730", text = "spectralcat.m2", @@ -1353,6 +1706,28 @@ WeakAuras.ModelPaths = { text = "cat", value = "cat", }, + { + children = { + { + fileId = "387274", + text = "cataclysmcrocodile.m2", + value = "cataclysmcrocodile.m2", + }, + }, + text = "cataclysmcrocodile", + value = "cataclysmcrocodile", + }, + { + children = { + { + fileId = "512958", + text = "catapultball01_creature.m2", + value = "catapultball01_creature.m2", + }, + }, + text = "catapultball", + value = "catapultball", + }, { children = { { @@ -1380,6 +1755,17 @@ WeakAuras.ModelPaths = { text = "celestialhorse", value = "celestialhorse", }, + { + children = { + { + fileId = "426717", + text = "cenarius.m2", + value = "cenarius.m2", + }, + }, + text = "cenarius", + value = "cenarius", + }, { children = { { @@ -1449,6 +1835,17 @@ WeakAuras.ModelPaths = { text = "chimera", value = "chimera", }, + { + children = { + { + fileId = "455580", + text = "chimerabeast.m2", + value = "chimerabeast.m2", + }, + }, + text = "chimerabeast", + value = "chimerabeast", + }, { children = { { @@ -1476,6 +1873,44 @@ WeakAuras.ModelPaths = { text = "chinesedragon", value = "chinesedragon", }, + { + children = { + { + fileId = "414827", + text = "chogall.m2", + value = "chogall.m2", + }, + { + fileId = "394557", + text = "chogalldisciple.m2", + value = "chogalldisciple.m2", + }, + }, + text = "chogall", + value = "chogall", + }, + { + children = { + { + fileId = "467025", + text = "chogall_corrupt.m2", + value = "chogall_corrupt.m2", + }, + }, + text = "chogall_corrupt", + value = "chogall_corrupt", + }, + { + children = { + { + fileId = "574802", + text = "chromaticdragonpet.m2", + value = "chromaticdragonpet.m2", + }, + }, + text = "chromaticdragonpet", + value = "chromaticdragonpet", + }, { children = { { @@ -1625,6 +2060,28 @@ WeakAuras.ModelPaths = { text = "coldwraith", value = "coldwraith", }, + { + children = { + { + fileId = "536100", + text = "corrupted_deathwing_missile_creature.m2", + value = "corrupted_deathwing_missile_creature.m2", + }, + }, + text = "corrupted_deathwing_missile", + value = "corrupted_deathwing_missile", + }, + { + children = { + { + fileId = "531316", + text = "corruptedtentacle.m2", + value = "corruptedtentacle.m2", + }, + }, + text = "corruptedtentacle", + value = "corruptedtentacle", + }, { children = { { @@ -1701,6 +2158,17 @@ WeakAuras.ModelPaths = { text = "crawlerelite", value = "crawlerelite", }, + { + children = { + { + fileId = "426971", + text = "crawlinghandpet.m2", + value = "crawlinghandpet.m2", + }, + }, + text = "crawlinghandpet", + value = "crawlinghandpet", + }, { children = { { @@ -1810,6 +2278,43 @@ WeakAuras.ModelPaths = { text = "darkhound", value = "darkhound", }, + { + children = { + { + fileId = "397341", + text = "darkphoenix.m2", + value = "darkphoenix.m2", + }, + { + fileId = "402149", + text = "darkphoenixmount.m2", + value = "darkphoenixmount.m2", + }, + { + fileId = "467087", + text = "darkphoenixmount_spectral.m2", + value = "darkphoenixmount_spectral.m2", + }, + }, + text = "darkphoenix", + value = "darkphoenix", + }, + { + children = { + { + fileId = "463512", + text = "darkphoenixpet.m2", + value = "darkphoenixpet.m2", + }, + { + fileId = "467088", + text = "darkphoenixpet_spectral.m2", + value = "darkphoenixpet_spectral.m2", + }, + }, + text = "darkphoenixpet", + value = "darkphoenixpet", + }, { children = { { @@ -1821,6 +2326,188 @@ WeakAuras.ModelPaths = { text = "deathknightmount", value = "deathknightmount", }, + { + children = { + { + fileId = "386839", + text = "deathwing.m2", + value = "deathwing.m2", + }, + { + fileId = "522166", + text = "deathwing_backplate_test01_creature.m2", + value = "deathwing_backplate_test01_creature.m2", + }, + { + fileId = "522168", + text = "deathwing_backplate_test02_creature.m2", + value = "deathwing_backplate_test02_creature.m2", + }, + { + fileId = "522170", + text = "deathwing_backplate_test03_creature.m2", + value = "deathwing_backplate_test03_creature.m2", + }, + }, + text = "deathwing", + value = "deathwing", + }, + { + children = { + { + fileId = "534251", + text = "deathwingcorrupted.m2", + value = "deathwingcorrupted.m2", + }, + { + fileId = "574620", + text = "deathwingcorruptedarml.m2", + value = "deathwingcorruptedarml.m2", + }, + { + fileId = "574590", + text = "deathwingcorruptedarmr.m2", + value = "deathwingcorruptedarmr.m2", + }, + { + fileId = "574622", + text = "deathwingcorruptedwingarml.m2", + value = "deathwingcorruptedwingarml.m2", + }, + { + fileId = "574624", + text = "deathwingcorruptedwingarmr.m2", + value = "deathwingcorruptedwingarmr.m2", + }, + { + fileId = "576369", + text = "smalldeathwingcorrupted.m2", + value = "smalldeathwingcorrupted.m2", + }, + }, + text = "deathwingcorrupted", + value = "deathwingcorrupted", + }, + { + children = { + { + fileId = "534255", + text = "deathwingcorruptedclaw.m2", + value = "deathwingcorruptedclaw.m2", + }, + { + fileId = "537073", + text = "deathwingcorruptedclawr.m2", + value = "deathwingcorruptedclawr.m2", + }, + }, + text = "deathwingcorruptedclaw", + value = "deathwingcorruptedclaw", + }, + { + children = { + { + fileId = "575527", + text = "deathwingcorruptedjaw.m2", + value = "deathwingcorruptedjaw.m2", + }, + }, + text = "deathwingcorruptedjaw", + value = "deathwingcorruptedjaw", + }, + { + children = { + { + fileId = "534259", + text = "deathwingcorruptedtail.m2", + value = "deathwingcorruptedtail.m2", + }, + }, + text = "deathwingcorruptedtail", + value = "deathwingcorruptedtail", + }, + { + children = { + { + fileId = "534263", + text = "deathwingcorruptedwing.m2", + value = "deathwingcorruptedwing.m2", + }, + }, + text = "deathwingcorruptedwing", + value = "deathwingcorruptedwing", + }, + { + children = { + { + fileId = "529609", + text = "deathwingdungeon.m2", + value = "deathwingdungeon.m2", + }, + }, + text = "deathwingdungeon", + value = "deathwingdungeon", + }, + { + children = { + { + fileId = "528274", + text = "deathwingelemental.m2", + value = "deathwingelemental.m2", + }, + }, + text = "deathwingelemental", + value = "deathwingelemental", + }, + { + children = { + { + fileId = "406461", + text = "deathwinghuman.m2", + value = "deathwinghuman.m2", + }, + }, + text = "deathwinghuman", + value = "deathwinghuman", + }, + { + children = { + { + fileId = "414830", + text = "deepholmgolem.m2", + value = "deepholmgolem.m2", + }, + }, + text = "deepholmgolem", + value = "deepholmgolem", + }, + { + children = { + { + fileId = "370048", + text = "deepseacrab.m2", + value = "deepseacrab.m2", + }, + { + fileId = "466716", + text = "deepseacrab_ghost.m2", + value = "deepseacrab_ghost.m2", + }, + }, + text = "deepseacrab", + value = "deepseacrab", + }, + { + children = { + { + fileId = "365647", + text = "deepseaturtle.m2", + value = "deepseaturtle.m2", + }, + }, + text = "deepseaturtle", + value = "deepseaturtle", + }, { children = { { @@ -1887,6 +2574,17 @@ WeakAuras.ModelPaths = { text = "diablo", value = "diablo", }, + { + children = { + { + fileId = "576440", + text = "diablofetish.m2", + value = "diablofetish.m2", + }, + }, + text = "diablofetish", + value = "diablofetish", + }, { children = { { @@ -1930,6 +2628,17 @@ WeakAuras.ModelPaths = { text = "direwolf", value = "direwolf", }, + { + children = { + { + fileId = "436777", + text = "djinn.m2", + value = "djinn.m2", + }, + }, + text = "djinn", + value = "djinn", + }, { children = { { @@ -1948,6 +2657,11 @@ WeakAuras.ModelPaths = { text = "doomguardoutland.m2", value = "doomguardoutland.m2", }, + { + fileId = "537925", + text = "doomguardoutland_low.m2", + value = "doomguardoutland_low.m2", + }, }, text = "doomguardoutland", value = "doomguardoutland", @@ -2025,6 +2739,39 @@ WeakAuras.ModelPaths = { text = "dragon", value = "dragon", }, + { + children = { + { + fileId = "423654", + text = "dragonatramedes.m2", + value = "dragonatramedes.m2", + }, + }, + text = "dragonatramedes", + value = "dragonatramedes", + }, + { + children = { + { + fileId = "576056", + text = "dragonchromatic.m2", + value = "dragonchromatic.m2", + }, + }, + text = "dragonchromatic", + value = "dragonchromatic", + }, + { + children = { + { + fileId = "576063", + text = "dragonchromaticmount.m2", + value = "dragonchromaticmount.m2", + }, + }, + text = "dragonchromaticmount", + value = "dragonchromaticmount", + }, { children = { { @@ -2036,6 +2783,22 @@ WeakAuras.ModelPaths = { text = "dragondarkshade", value = "dragondarkshade", }, + { + children = { + { + fileId = "396544", + text = "dragondeepholm.m2", + value = "dragondeepholm.m2", + }, + { + fileId = "400759", + text = "dragondeepholmmount.m2", + value = "dragondeepholmmount.m2", + }, + }, + text = "dragondeepholm", + value = "dragondeepholm", + }, { children = { { @@ -2092,6 +2855,11 @@ WeakAuras.ModelPaths = { text = "dragonkalecgos.m2", value = "dragonkalecgos.m2", }, + { + fileId = "515625", + text = "dragonkalecgos_flighttier.m2", + value = "dragonkalecgos_flighttier.m2", + }, }, text = "dragonkalecgos", value = "dragonkalecgos", @@ -2107,6 +2875,55 @@ WeakAuras.ModelPaths = { text = "dragonkite", value = "dragonkite", }, + { + children = { + { + fileId = "394774", + text = "dragonman.m2", + value = "dragonman.m2", + }, + { + fileId = "396350", + text = "dragonman_var1.m2", + value = "dragonman_var1.m2", + }, + }, + text = "dragonman", + value = "dragonman", + }, + { + children = { + { + fileId = "430968", + text = "dragonmanhulk.m2", + value = "dragonmanhulk.m2", + }, + }, + text = "dragonmanhulk", + value = "dragonmanhulk", + }, + { + children = { + { + fileId = "396314", + text = "dragonnefarianzombified.m2", + value = "dragonnefarianzombified.m2", + }, + }, + text = "dragonnefarianzombified", + value = "dragonnefarianzombified", + }, + { + children = { + { + fileId = "534761", + text = "dragonprince.m2", + value = "dragonprince.m2", + }, + }, + text = "dragonprince", + value = "dragonprince", + }, { children = { { @@ -2123,6 +2940,38 @@ WeakAuras.ModelPaths = { text = "dragonredcrystal", value = "dragonredcrystal", }, + { + children = { + { + fileId = "412501", + text = "dragonsinestra.m2", + value = "dragonsinestra.m2", + }, + { + fileId = "519288", + text = "dragontarecgosa.m2", + value = "dragontarecgosa.m2", + }, + }, + text = "dragonsinestra", + value = "dragonsinestra", + }, + { + children = { + { + fileId = "404121", + text = "dragonskywall.m2", + value = "dragonskywall.m2", + }, + { + fileId = "406462", + text = "dragonskywallmount.m2", + value = "dragonskywallmount.m2", + }, + }, + text = "dragonskywall", + value = "dragonskywall", + }, { children = { { @@ -2150,6 +2999,26 @@ WeakAuras.ModelPaths = { text = "dragonspawnoverlordnexus.m2", value = "dragonspawnoverlordnexus.m2", }, + { + fileId = "356425", + text = "dragonspawntwilight.m2", + value = "dragonspawntwilight.m2", + }, + { + fileId = "357098", + text = "dragonspawntwilightarmored.m2", + value = "dragonspawntwilightarmored.m2", + }, + { + fileId = "356426", + text = "dragonspawntwilightcaster.m2", + value = "dragonspawntwilightcaster.m2", + }, + { + fileId = "356427", + text = "dragonspawntwilightoverlord.m2", + value = "dragonspawntwilightoverlord.m2", + }, }, text = "dragonspawn", value = "dragonspawn", @@ -2232,10 +3101,26 @@ WeakAuras.ModelPaths = { text = "dragonwhelponyxia.m2", value = "dragonwhelponyxia.m2", }, + { + fileId = "524056", + text = "dragonwhelptarecgosa.m2", + value = "dragonwhelptarecgosa.m2", + }, }, text = "dragonwhelp", value = "dragonwhelp", }, + { + children = { + { + fileId = "462364", + text = "dragonwhelpcataclysm.m2", + value = "dragonwhelpcataclysm.m2", + }, + }, + text = "dragonwhelpcataclysm", + value = "dragonwhelpcataclysm", + }, { children = { { @@ -2247,6 +3132,17 @@ WeakAuras.ModelPaths = { text = "dragonwhelpdarkshade", value = "dragonwhelpdarkshade", }, + { + children = { + { + fileId = "466235", + text = "dragonwhelpelementium.m2", + value = "dragonwhelpelementium.m2", + }, + }, + text = "dragonwhelpelementium", + value = "dragonwhelpelementium", + }, { children = { { @@ -2325,11 +3221,21 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "519559", + text = "armoredtwilightdrake.m2", + value = "armoredtwilightdrake.m2", + }, { fileId = "234564", text = "drakemount.m2", value = "drakemount.m2", }, + { + fileId = "587735", + text = "feldrakemount.m2", + value = "feldrakemount.m2", + }, }, text = "drakemount", value = "drakemount", @@ -2371,6 +3277,28 @@ WeakAuras.ModelPaths = { text = "druidbear", value = "druidbear", }, + { + children = { + { + fileId = "403282", + text = "druidbeartroll.m2", + value = "druidbeartroll.m2", + }, + }, + text = "druidbeartroll", + value = "druidbeartroll", + }, + { + children = { + { + fileId = "393782", + text = "druidbearworgen.m2", + value = "druidbearworgen.m2", + }, + }, + text = "druidbearworgen", + value = "druidbearworgen", + }, { children = { { @@ -2403,6 +3331,28 @@ WeakAuras.ModelPaths = { text = "druidcattauren", value = "druidcattauren", }, + { + children = { + { + fileId = "392615", + text = "druidcattroll.m2", + value = "druidcattroll.m2", + }, + }, + text = "druidcattroll", + value = "druidcattroll", + }, + { + children = { + { + fileId = "393783", + text = "druidcatworgen.m2", + value = "druidcatworgen.m2", + }, + }, + text = "druidcatworgen", + value = "druidcatworgen", + }, { children = { { @@ -2419,6 +3369,17 @@ WeakAuras.ModelPaths = { text = "druidowlbear", value = "druidowlbear", }, + { + children = { + { + fileId = "464148", + text = "druidtreeform.m2", + value = "druidtreeform.m2", + }, + }, + text = "druidtreeform", + value = "druidtreeform", + }, { children = { { @@ -2479,6 +3440,17 @@ WeakAuras.ModelPaths = { text = "eaglegod", value = "eaglegod", }, + { + children = { + { + fileId = "422791", + text = "earthen_onager_vehicle.m2", + value = "earthen_onager_vehicle.m2", + }, + }, + text = "earthen_onager_vehicle", + value = "earthen_onager_vehicle", + }, { children = { { @@ -2486,6 +3458,11 @@ WeakAuras.ModelPaths = { text = "earthendwarf.m2", value = "earthendwarf.m2", }, + { + fileId = "407377", + text = "earthendwarf_low.m2", + value = "earthendwarf_low.m2", + }, }, text = "earthendwarf", value = "earthendwarf", @@ -2572,6 +3549,28 @@ WeakAuras.ModelPaths = { text = "epicdruidflighthorde", value = "epicdruidflighthorde", }, + { + children = { + { + fileId = "468264", + text = "epicdruidflighttroll.m2", + value = "epicdruidflighttroll.m2", + }, + }, + text = "epicdruidflighttroll", + value = "epicdruidflighttroll", + }, + { + children = { + { + fileId = "467905", + text = "epicdruidflightworgen.m2", + value = "epicdruidflightworgen.m2", + }, + }, + text = "epicdruidflightworgen", + value = "epicdruidflightworgen", + }, { children = { { @@ -2621,6 +3620,22 @@ WeakAuras.ModelPaths = { text = "etherialrobe", value = "etherialrobe", }, + { + children = { + { + fileId = "329844", + text = "ettin.m2", + value = "ettin.m2", + }, + { + fileId = "389860", + text = "throngus.m2", + value = "throngus.m2", + }, + }, + text = "ettin", + value = "ettin", + }, { children = { { @@ -2654,6 +3669,17 @@ WeakAuras.ModelPaths = { text = "facelessgeneral", value = "facelessgeneral", }, + { + children = { + { + fileId = "384342", + text = "facelessmount.m2", + value = "facelessmount.m2", + }, + }, + text = "facelessmount", + value = "facelessmount", + }, { children = { { @@ -2665,6 +3691,28 @@ WeakAuras.ModelPaths = { text = "facelessone", value = "facelessone", }, + { + children = { + { + fileId = "363815", + text = "facelessoneaquatic.m2", + value = "facelessoneaquatic.m2", + }, + }, + text = "facelessoneaquatic", + value = "facelessoneaquatic", + }, + { + children = { + { + fileId = "378541", + text = "facelessonecaster.m2", + value = "facelessonecaster.m2", + }, + }, + text = "facelessonecaster", + value = "facelessonecaster", + }, { children = { { @@ -2681,6 +3729,44 @@ WeakAuras.ModelPaths = { text = "faeriedragon", value = "faeriedragon", }, + { + children = { + { + fileId = "513986", + text = "fandralfirecat.m2", + value = "fandralfirecat.m2", + }, + { + fileId = "524328", + text = "fandralfirecatnoarmor.m2", + value = "fandralfirecatnoarmor.m2", + }, + }, + text = "fandralfirecat", + value = "fandralfirecat", + }, + { + children = { + { + fileId = "514172", + text = "fandralfirescorpion.m2", + value = "fandralfirescorpion.m2", + }, + }, + text = "fandralfirescorpion", + value = "fandralfirescorpion", + }, + { + children = { + { + fileId = "514985", + text = "fandralstaghelm.m2", + value = "fandralstaghelm.m2", + }, + }, + text = "fandralstaghelm", + value = "fandralstaghelm", + }, { children = { { @@ -2818,10 +3904,31 @@ WeakAuras.ModelPaths = { text = "felguard.m2", value = "felguard.m2", }, + { + fileId = "537919", + text = "felguard_low.m2", + value = "felguard_low.m2", + }, }, text = "felguard", value = "felguard", }, + { + children = { + { + fileId = "536519", + text = "felhippogryph.m2", + value = "felhippogryph.m2", + }, + { + fileId = "538457", + text = "felhippogryphmount.m2", + value = "felhippogryphmount.m2", + }, + }, + text = "felhippogryph", + value = "felhippogryph", + }, { children = { { @@ -2943,10 +4050,37 @@ WeakAuras.ModelPaths = { text = "felreaver.m2", value = "felreaver.m2", }, + { + fileId = "428737", + text = "minifelreaver.m2", + value = "minifelreaver.m2", + }, }, text = "felreaver", value = "felreaver", }, + { + children = { + { + fileId = "523377", + text = "creature_fireblock_shannox.m2", + value = "creature_fireblock_shannox.m2", + }, + }, + text = "fireblock_shannox", + value = "fireblock_shannox", + }, + { + children = { + { + fileId = "523665", + text = "creature_fireblock_solid.m2", + value = "creature_fireblock_solid.m2", + }, + }, + text = "fireblock_solid", + value = "fireblock_solid", + }, { children = { { @@ -2974,6 +4108,17 @@ WeakAuras.ModelPaths = { text = "fireelemental", value = "fireelemental", }, + { + children = { + { + fileId = "523381", + text = "fireelemental_kar.m2", + value = "fireelemental_kar.m2", + }, + }, + text = "fireelemental_kar", + value = "fireelemental_kar", + }, { children = { { @@ -2985,6 +4130,60 @@ WeakAuras.ModelPaths = { text = "firefly", value = "firefly", }, + { + children = { + { + fileId = "512303", + text = "firehawk.m2", + value = "firehawk.m2", + }, + { + fileId = "514089", + text = "firehawk_mount.m2", + value = "firehawk_mount.m2", + }, + { + fileId = "512819", + text = "firehawk_noarmor.m2", + value = "firehawk_noarmor.m2", + }, + }, + text = "firehawk", + value = "firehawk", + }, + { + children = { + { + fileId = "526575", + text = "fireravengodmount.m2", + value = "fireravengodmount.m2", + }, + }, + text = "fireravengodmount", + value = "fireravengodmount", + }, + { + children = { + { + fileId = "516498", + text = "firespider.m2", + value = "firespider.m2", + }, + }, + text = "firespider", + value = "firespider", + }, + { + children = { + { + fileId = "514819", + text = "firespiderboss.m2", + value = "firespiderboss.m2", + }, + }, + text = "firespiderboss", + value = "firespiderboss", + }, { children = { { @@ -3084,6 +4283,11 @@ WeakAuras.ModelPaths = { text = "flyingbomber_02.m2", value = "flyingbomber_02.m2", }, + { + fileId = "396427", + text = "flyingbomber_02closedcanopy.m2", + value = "flyingbomber_02closedcanopy.m2", + }, { fileId = "234613", text = "flyingbomber_02nosmoke.m2", @@ -3142,6 +4346,17 @@ WeakAuras.ModelPaths = { text = "flyingnerubian", value = "flyingnerubian", }, + { + children = { + { + fileId = "611399", + text = "flyingpanther.m2", + value = "flyingpanther.m2", + }, + }, + text = "flyingpanther", + value = "flyingpanther", + }, { children = { { @@ -3268,6 +4483,11 @@ WeakAuras.ModelPaths = { text = "ridingfrostsabre.m2", value = "ridingfrostsabre.m2", }, + { + fileId = "511423", + text = "sabrecub.m2", + value = "sabrecub.m2", + }, }, text = "frostsabre", value = "frostsabre", @@ -3387,6 +4607,17 @@ WeakAuras.ModelPaths = { text = "gargoyle", value = "gargoyle", }, + { + children = { + { + fileId = "387859", + text = "garrosh.m2", + value = "garrosh.m2", + }, + }, + text = "garrosh", + value = "garrosh", + }, { children = { { @@ -3409,6 +4640,17 @@ WeakAuras.ModelPaths = { text = "geist", value = "geist", }, + { + children = { + { + fileId = "396354", + text = "geode.m2", + value = "geode.m2", + }, + }, + text = "geode", + value = "geode", + }, { children = { { @@ -3447,6 +4689,17 @@ WeakAuras.ModelPaths = { text = "ghoul", value = "ghoul", }, + { + children = { + { + fileId = "375463", + text = "giantremora.m2", + value = "giantremora.m2", + }, + }, + text = "giantremora", + value = "giantremora", + }, { children = { { @@ -3458,6 +4711,38 @@ WeakAuras.ModelPaths = { text = "giantspider", value = "giantspider", }, + { + children = { + { + fileId = "368597", + text = "gilgoblin.m2", + value = "gilgoblin.m2", + }, + }, + text = "gilgoblin", + value = "gilgoblin", + }, + { + children = { + { + fileId = "377987", + text = "gilneasstagecoach.m2", + value = "gilneasstagecoach.m2", + }, + { + fileId = "382487", + text = "gilneasstagecoach_carriage.m2", + value = "gilneasstagecoach_carriage.m2", + }, + { + fileId = "382488", + text = "gilneasstagecoach_harness.m2", + value = "gilneasstagecoach_harness.m2", + }, + }, + text = "gilneasstagecoach", + value = "gilneasstagecoach", + }, { children = { { @@ -3599,6 +4884,11 @@ WeakAuras.ModelPaths = { text = "goblinshredder.m2", value = "goblinshredder.m2", }, + { + fileId = "366643", + text = "goblinshredder_low.m2", + value = "goblinshredder_low.m2", + }, }, text = "goblin", value = "goblin", @@ -3614,6 +4904,82 @@ WeakAuras.ModelPaths = { text = "goblin_cannon", value = "goblin_cannon", }, + { + children = { + { + fileId = "347782", + text = "goblin_riverboat_creature.m2", + value = "goblin_riverboat_creature.m2", + }, + { + fileId = "449085", + text = "goblin_riverboat_creature_cannon_front.m2", + value = "goblin_riverboat_creature_cannon_front.m2", + }, + { + fileId = "449086", + text = "goblin_riverboat_creature_cannon_side.m2", + value = "goblin_riverboat_creature_cannon_side.m2", + }, + }, + text = "goblin_riverboat_creature", + value = "goblin_riverboat_creature", + }, + { + children = { + { + fileId = "516489", + text = "goblinfemalekid.m2", + value = "goblinfemalekid.m2", + }, + }, + text = "goblinfemalekid", + value = "goblinfemalekid", + }, + { + children = { + { + fileId = "366041", + text = "goblinhotairballoonvehicle.m2", + value = "goblinhotairballoonvehicle.m2", + }, + }, + text = "goblinhotairballoonvehicle", + value = "goblinhotairballoonvehicle", + }, + { + children = { + { + fileId = "367918", + text = "goblinhotrod.m2", + value = "goblinhotrod.m2", + }, + }, + text = "goblinhotrod", + value = "goblinhotrod", + }, + { + children = { + { + fileId = "518459", + text = "goblinmalekid.m2", + value = "goblinmalekid.m2", + }, + }, + text = "goblinmalekid", + value = "goblinmalekid", + }, + { + children = { + { + fileId = "307079", + text = "goblin_rocket.m2", + value = "goblin_rocket.m2", + }, + }, + text = "goblinrocket", + value = "goblinrocket", + }, { children = { { @@ -3632,10 +4998,42 @@ WeakAuras.ModelPaths = { text = "goblinshreddermount.m2", value = "goblinshreddermount.m2", }, + { + fileId = "365746", + text = "goblinshreddermount_low.m2", + value = "goblinshreddermount_low.m2", + }, }, text = "goblinshreddermount", value = "goblinshreddermount", }, + { + children = { + { + fileId = "431572", + text = "goblintrike01.m2", + value = "goblintrike01.m2", + }, + { + fileId = "431580", + text = "goblintrike02.m2", + value = "goblintrike02.m2", + }, + }, + text = "goblintrike", + value = "goblintrike", + }, + { + children = { + { + fileId = "376247", + text = "golemdwarven.m2", + value = "golemdwarven.m2", + }, + }, + text = "golemdwarven", + value = "golemdwarven", + }, { children = { { @@ -3706,6 +5104,42 @@ WeakAuras.ModelPaths = { text = "gorilla", value = "gorilla", }, + { + children = { + { + fileId = "390813", + text = "greaterslime.m2", + value = "greaterslime.m2", + }, + { + fileId = "464067", + text = "greaterslime_sorted.m2", + value = "greaterslime_sorted.m2", + }, + { + fileId = "466078", + text = "greaterslime_unsorted.m2", + value = "greaterslime_unsorted.m2", + }, + { + fileId = "531411", + text = "greaterslimedeathwing.m2", + value = "greaterslimedeathwing.m2", + }, + { + fileId = "577387", + text = "greaterslimedeathwing_sorted.m2", + value = "greaterslimedeathwing_sorted.m2", + }, + { + fileId = "394773", + text = "greaterslimemercury.m2", + value = "greaterslimemercury.m2", + }, + }, + text = "greaterslime", + value = "greaterslime", + }, { children = { { @@ -3739,6 +5173,17 @@ WeakAuras.ModelPaths = { text = "groundflower", value = "groundflower", }, + { + children = { + { + fileId = "372197", + text = "grouper.m2", + value = "grouper.m2", + }, + }, + text = "grouper", + value = "grouper", + }, { children = { { @@ -3751,6 +5196,11 @@ WeakAuras.ModelPaths = { text = "gryphon_armored.m2", value = "gryphon_armored.m2", }, + { + fileId = "306634", + text = "gryphon_armored_vehicle.m2", + value = "gryphon_armored_vehicle.m2", + }, { fileId = "124293", text = "gryphon_armoredmount.m2", @@ -3781,6 +5231,11 @@ WeakAuras.ModelPaths = { text = "gryphon_skeletal_mount.m2", value = "gryphon_skeletal_mount.m2", }, + { + fileId = "511909", + text = "gryphon_skeletal_mount_deathknight.m2", + value = "gryphon_skeletal_mount_deathknight.m2", + }, }, text = "gryphon", value = "gryphon", @@ -3792,10 +5247,32 @@ WeakAuras.ModelPaths = { text = "gryphonpet.m2", value = "gryphonpet.m2", }, + { + fileId = "378543", + text = "gryphonpetgeneric.m2", + value = "gryphonpetgeneric.m2", + }, }, text = "gryphonpet", value = "gryphonpet", }, + { + children = { + { + children = { + { + fileId = "458542", + text = "alliancelionmount.m2", + value = "alliancelionmount.m2", + }, + }, + text = "alliancelionmount", + value = "alliancelionmount", + }, + }, + text = "guildcreatures", + value = "guildcreatures", + }, { children = { { @@ -3911,6 +5388,17 @@ WeakAuras.ModelPaths = { text = "headlesshorsemanmount", value = "headlesshorsemanmount", }, + { + children = { + { + fileId = "511081", + text = "hellhound.m2", + value = "hellhound.m2", + }, + }, + text = "hellhound", + value = "hellhound", + }, { children = { { @@ -4011,6 +5499,17 @@ WeakAuras.ModelPaths = { text = "hippogryphmount", value = "hippogryphmount", }, + { + children = { + { + fileId = "321588", + text = "hobgoblin.m2", + value = "hobgoblin.m2", + }, + }, + text = "hobgoblin", + value = "hobgoblin", + }, { children = { { @@ -4033,6 +5532,27 @@ WeakAuras.ModelPaths = { text = "holidayrobot", value = "holidayrobot", }, + { + children = { + { + fileId = "336473", + text = "hordecaravanvehicle.m2", + value = "hordecaravanvehicle.m2", + }, + { + fileId = "344223", + text = "hordecaravanvehicle_carriage.m2", + value = "hordecaravanvehicle_carriage.m2", + }, + { + fileId = "344367", + text = "hordecaravanvehicle_harness.m2", + value = "hordecaravanvehicle_harness.m2", + }, + }, + text = "hordecaravan", + value = "hordecaravan", + }, { children = { { @@ -4044,6 +5564,17 @@ WeakAuras.ModelPaths = { text = "hordedeckgun", value = "hordedeckgun", }, + { + children = { + { + fileId = "523497", + text = "hordepvpmount.m2", + value = "hordepvpmount.m2", + }, + }, + text = "hordepvpmount", + value = "hordepvpmount", + }, { children = { { @@ -4055,6 +5586,22 @@ WeakAuras.ModelPaths = { text = "horderider", value = "horderider", }, + { + children = { + { + fileId = "461265", + text = "hordescorpion.m2", + value = "hordescorpion.m2", + }, + { + fileId = "463776", + text = "hordescorpionmount.m2", + value = "hordescorpionmount.m2", + }, + }, + text = "hordescorpionmount", + value = "hordescorpionmount", + }, { children = { { @@ -4231,6 +5778,17 @@ WeakAuras.ModelPaths = { text = "humanmaleblacksmith", value = "humanmaleblacksmith", }, + { + children = { + { + fileId = "522995", + text = "humanmaleburied.m2", + value = "humanmaleburied.m2", + }, + }, + text = "humanmaleburied", + value = "humanmaleburied", + }, { children = { { @@ -4621,6 +6179,17 @@ WeakAuras.ModelPaths = { text = "illidan", value = "illidan", }, + { + children = { + { + fileId = "532924", + text = "illidan_past.m2", + value = "illidan_past.m2", + }, + }, + text = "illidan_past", + value = "illidan_past", + }, { children = { { @@ -4699,6 +6268,11 @@ WeakAuras.ModelPaths = { text = "invisiblestalker.m2", value = "invisiblestalker.m2", }, + { + fileId = "439302", + text = "invisiblestalker_followterrain.m2", + value = "invisiblestalker_followterrain.m2", + }, { fileId = "343863", text = "invisiblestalker_noanims.m2", @@ -4750,6 +6324,17 @@ WeakAuras.ModelPaths = { text = "ironvrykulmale", value = "ironvrykulmale", }, + { + children = { + { + fileId = "400774", + text = "isiset.m2", + value = "isiset.m2", + }, + }, + text = "isiset", + value = "isiset", + }, { children = { { @@ -4827,6 +6412,17 @@ WeakAuras.ModelPaths = { text = "kargath", value = "kargath", }, + { + children = { + { + fileId = "406666", + text = "karshsteelbendermolten.m2", + value = "karshsteelbendermolten.m2", + }, + }, + text = "karshsteelbendermolten", + value = "karshsteelbendermolten", + }, { children = { { @@ -4925,6 +6521,16 @@ WeakAuras.ModelPaths = { text = "ridingkodo.m2", value = "ridingkodo.m2", }, + { + fileId = "326710", + text = "ridingkotobeastsunwalker.m2", + value = "ridingkotobeastsunwalker.m2", + }, + { + fileId = "329845", + text = "ridingkotobeastsunwalkerelite.m2", + value = "ridingkotobeastsunwalkerelite.m2", + }, }, text = "kodobeast", value = "kodobeast", @@ -4979,10 +6585,26 @@ WeakAuras.ModelPaths = { text = "krakken.m2", value = "krakken.m2", }, + { + fileId = "409017", + text = "krakkennofx.m2", + value = "krakkennofx.m2", + }, }, text = "krakken", value = "krakken", }, + { + children = { + { + fileId = "418189", + text = "ladynazjar.m2", + value = "ladynazjar.m2", + }, + }, + text = "ladynazjar", + value = "ladynazjar", + }, { children = { { @@ -5016,6 +6638,32 @@ WeakAuras.ModelPaths = { text = "landro", value = "landro", }, + { + children = { + { + fileId = "456326", + text = "be_lantern_01_pet.m2", + value = "be_lantern_01_pet.m2", + }, + { + fileId = "456327", + text = "dr_lantern_01_pet.m2", + value = "dr_lantern_01_pet.m2", + }, + { + fileId = "534430", + text = "lunarnewyearlantern_alliance_hanging_pet.m2", + value = "lunarnewyearlantern_alliance_hanging_pet.m2", + }, + { + fileId = "534432", + text = "lunarnewyearlantern_horde_hanging_pet.m2", + value = "lunarnewyearlantern_horde_hanging_pet.m2", + }, + }, + text = "lanternpet", + value = "lanternpet", + }, { children = { { @@ -5060,6 +6708,17 @@ WeakAuras.ModelPaths = { text = "lasherorchid", value = "lasherorchid", }, + { + children = { + { + fileId = "464080", + text = "lasher_sunflower.m2", + value = "lasher_sunflower.m2", + }, + }, + text = "lashersunflower", + value = "lashersunflower", + }, { children = { { @@ -5071,6 +6730,27 @@ WeakAuras.ModelPaths = { text = "lavaman", value = "lavaman", }, + { + children = { + { + fileId = "383253", + text = "lavaworm.m2", + value = "lavaworm.m2", + }, + { + fileId = "394940", + text = "lavaworm_02.m2", + value = "lavaworm_02.m2", + }, + { + fileId = "512614", + text = "lavaworm_03.m2", + value = "lavaworm_03.m2", + }, + }, + text = "lavaworm", + value = "lavaworm", + }, { children = { { @@ -5102,6 +6782,27 @@ WeakAuras.ModelPaths = { text = "lessermanafiend", value = "lessermanafiend", }, + { + children = { + { + fileId = "387851", + text = "leviathan.m2", + value = "leviathan.m2", + }, + { + fileId = "429719", + text = "leviathan_tentacle.m2", + value = "leviathan_tentacle.m2", + }, + { + fileId = "429720", + text = "leviathan_tentacle_tail.m2", + value = "leviathan_tentacle_tail.m2", + }, + }, + text = "leviathan", + value = "leviathan", + }, { children = { { @@ -5146,6 +6847,17 @@ WeakAuras.ModelPaths = { text = "lionseal", value = "lionseal", }, + { + children = { + { + fileId = "520739", + text = "liquidmagmagiant.m2", + value = "liquidmagmagiant.m2", + }, + }, + text = "liquidmagmagiant", + value = "liquidmagmagiant", + }, { children = { { @@ -5168,6 +6880,32 @@ WeakAuras.ModelPaths = { text = "lobstrokoutland", value = "lobstrokoutland", }, + { + children = { + { + fileId = "314949", + text = "lostisles_carnivorousplant01_creature.m2", + value = "lostisles_carnivorousplant01_creature.m2", + }, + { + fileId = "463995", + text = "lostisles_carnivorousplant01_creature_redspitter.m2", + value = "lostisles_carnivorousplant01_creature_redspitter.m2", + }, + { + fileId = "314950", + text = "lostisles_carnivorousplant02_creature.m2", + value = "lostisles_carnivorousplant02_creature.m2", + }, + { + fileId = "463996", + text = "lostisles_carnivorousplant02_creature_freezer.m2", + value = "lostisles_carnivorousplant02_creature_freezer.m2", + }, + }, + text = "lostisles_carnivorousplant", + value = "lostisles_carnivorousplant", + }, { children = { { @@ -5228,6 +6966,22 @@ WeakAuras.ModelPaths = { text = "madscientist", value = "madscientist", }, + { + children = { + { + fileId = "450902", + text = "mage_flameorb_01.m2", + value = "mage_flameorb_01.m2", + }, + { + fileId = "450903", + text = "mage_flameorb_02.m2", + value = "mage_flameorb_02.m2", + }, + }, + text = "mage_flameorb", + value = "mage_flameorb", + }, { children = { { @@ -5250,6 +7004,27 @@ WeakAuras.ModelPaths = { text = "magicalfishpetclassic", value = "magicalfishpetclassic", }, + { + children = { + { + fileId = "519051", + text = "magmagiant.m2", + value = "magmagiant.m2", + }, + { + fileId = "529614", + text = "magmagiant_legleft.m2", + value = "magmagiant_legleft.m2", + }, + { + fileId = "529616", + text = "magmagiant_legright.m2", + value = "magmagiant_legright.m2", + }, + }, + text = "magmagiant", + value = "magmagiant", + }, { children = { { @@ -5261,6 +7036,17 @@ WeakAuras.ModelPaths = { text = "magnataur", value = "magnataur", }, + { + children = { + { + fileId = "432000", + text = "malfurionstormrage.m2", + value = "malfurionstormrage.m2", + }, + }, + text = "malfurionstormrage", + value = "malfurionstormrage", + }, { children = { { @@ -5272,6 +7058,17 @@ WeakAuras.ModelPaths = { text = "malganis", value = "malganis", }, + { + children = { + { + fileId = "516232", + text = "malorne.m2", + value = "malorne.m2", + }, + }, + text = "malorne", + value = "malorne", + }, { children = { { @@ -5347,6 +7144,28 @@ WeakAuras.ModelPaths = { text = "manawurm", value = "manawurm", }, + { + children = { + { + fileId = "320622", + text = "mastiff.m2", + value = "mastiff.m2", + }, + }, + text = "mastiff", + value = "mastiff", + }, + { + children = { + { + fileId = "383595", + text = "mechanicalrabbit.m2", + value = "mechanicalrabbit.m2", + }, + }, + text = "mechanicalrabbit", + value = "mechanicalrabbit", + }, { children = { { @@ -5379,6 +7198,17 @@ WeakAuras.ModelPaths = { text = "medivh", value = "medivh", }, + { + children = { + { + fileId = "369409", + text = "mercilessone.m2", + value = "mercilessone.m2", + }, + }, + text = "mercilessone", + value = "mercilessone", + }, { children = { { @@ -5459,6 +7289,17 @@ WeakAuras.ModelPaths = { text = "missilerocketmount", value = "missilerocketmount", }, + { + children = { + { + fileId = "321131", + text = "mistfox.m2", + value = "mistfox.m2", + }, + }, + text = "mistfox", + value = "mistfox", + }, { children = { { @@ -5517,6 +7358,55 @@ WeakAuras.ModelPaths = { text = "mobat", value = "mobat", }, + { + children = { + { + fileId = "521770", + text = "molten_meteor.m2", + value = "molten_meteor.m2", + }, + }, + text = "molten_meteor", + value = "molten_meteor", + }, + { + children = { + { + fileId = "524124", + text = "moltengiant.m2", + value = "moltengiant.m2", + }, + }, + text = "moltengiant", + value = "moltengiant", + }, + { + children = { + { + fileId = "318592", + text = "monkey.m2", + value = "monkey.m2", + }, + { + fileId = "536525", + text = "monkey_fez.m2", + value = "monkey_fez.m2", + }, + }, + text = "monkey", + value = "monkey", + }, + { + children = { + { + fileId = "369377", + text = "monstrouseel.m2", + value = "monstrouseel.m2", + }, + }, + text = "monstrouseel", + value = "monstrouseel", + }, { children = { { @@ -5524,6 +7414,11 @@ WeakAuras.ModelPaths = { text = "moth.m2", value = "moth.m2", }, + { + fileId = "462663", + text = "moth_low.m2", + value = "moth_low.m2", + }, }, text = "moth", value = "moth", @@ -5706,6 +7601,16 @@ WeakAuras.ModelPaths = { text = "babymurlocplated.m2", value = "babymurlocplated.m2", }, + { + fileId = "462670", + text = "deathwingbabymurloc.m2", + value = "deathwingbabymurloc.m2", + }, + { + fileId = "528217", + text = "diablobabymurloc.m2", + value = "diablobabymurloc.m2", + }, { fileId = "306886", text = "marinebabymurloc.m2", @@ -5716,6 +7621,11 @@ WeakAuras.ModelPaths = { text = "murloc.m2", value = "murloc.m2", }, + { + fileId = "360359", + text = "murlocdeepsea.m2", + value = "murlocdeepsea.m2", + }, }, text = "murloc", value = "murloc", @@ -5752,6 +7662,17 @@ WeakAuras.ModelPaths = { text = "murmur", value = "murmur", }, + { + children = { + { + fileId = "535218", + text = "murozond.m2", + value = "murozond.m2", + }, + }, + text = "murozond", + value = "murozond", + }, { children = { { @@ -5774,6 +7695,22 @@ WeakAuras.ModelPaths = { text = "naaru", value = "naaru", }, + { + children = { + { + fileId = "424741", + text = "nagafemale_low01.m2", + value = "nagafemale_low01.m2", + }, + { + fileId = "360253", + text = "nagamale_low01.m2", + value = "nagamale_low01.m2", + }, + }, + text = "naga", + value = "naga", + }, { children = { { @@ -5829,6 +7766,17 @@ WeakAuras.ModelPaths = { text = "nefarian", value = "nefarian", }, + { + children = { + { + fileId = "386003", + text = "neptulon.m2", + value = "neptulon.m2", + }, + }, + text = "neptulon", + value = "neptulon", + }, { children = { { @@ -6187,6 +8135,33 @@ WeakAuras.ModelPaths = { text = "northrendworgen", value = "northrendworgen", }, + { + children = { + { + fileId = "526474", + text = "nozdormu.m2", + value = "nozdormu.m2", + }, + { + fileId = "575159", + text = "nozdormu2.m2", + value = "nozdormu2.m2", + }, + }, + text = "nozdormu", + value = "nozdormu", + }, + { + children = { + { + fileId = "534996", + text = "nozdormudragon.m2", + value = "nozdormudragon.m2", + }, + }, + text = "nozdormudragon", + value = "nozdormudragon", + }, { children = { { @@ -6284,6 +8259,17 @@ WeakAuras.ModelPaths = { text = "ogremagelord", value = "ogremagelord", }, + { + children = { + { + fileId = "380534", + text = "onyxiaundead.m2", + value = "onyxiaundead.m2", + }, + }, + text = "onyxiaundead", + value = "onyxiaundead", + }, { children = { { @@ -6409,6 +8395,17 @@ WeakAuras.ModelPaths = { text = "orcmalewarriorlight", value = "orcmalewarriorlight", }, + { + children = { + { + fileId = "513909", + text = "overfiend.m2", + value = "overfiend.m2", + }, + }, + text = "overfiend", + value = "overfiend", + }, { children = { { @@ -6420,6 +8417,17 @@ WeakAuras.ModelPaths = { text = "owl", value = "owl", }, + { + children = { + { + fileId = "523669", + text = "owlghost_green.m2", + value = "owlghost_green.m2", + }, + }, + text = "owlghost_green", + value = "owlghost_green", + }, { children = { { @@ -6502,6 +8510,17 @@ WeakAuras.ModelPaths = { text = "penguinpet", value = "penguinpet", }, + { + children = { + { + fileId = "533196", + text = "perotharn.m2", + value = "perotharn.m2", + }, + }, + text = "perotharn", + value = "perotharn", + }, { children = { { @@ -6642,6 +8661,17 @@ WeakAuras.ModelPaths = { text = "pterrordax", value = "pterrordax", }, + { + children = { + { + fileId = "378602", + text = "pufferfish.m2", + value = "pufferfish.m2", + }, + }, + text = "pufferfish", + value = "pufferfish", + }, { children = { { @@ -6666,6 +8696,93 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "370358", + text = "pygmybase.m2", + value = "pygmybase.m2", + }, + { + fileId = "370359", + text = "pygmyhunter.m2", + value = "pygmyhunter.m2", + }, + { + fileId = "370360", + text = "pygmyroadie.m2", + value = "pygmyroadie.m2", + }, + { + fileId = "370361", + text = "pygmyshaman.m2", + value = "pygmyshaman.m2", + }, + { + fileId = "370362", + text = "pygmywarrior.m2", + value = "pygmywarrior.m2", + }, + { + fileId = "463356", + text = "sandpygmy.m2", + value = "sandpygmy.m2", + }, + }, + text = "pygmy", + value = "pygmy", + }, + { + children = { + { + fileId = "511879", + text = "pyrogryph.m2", + value = "pyrogryph.m2", + }, + }, + text = "pyrogryph", + value = "pyrogryph", + }, + { + children = { + { + fileId = "387867", + text = "blackrockv2_shieldgong_01.m2", + value = "blackrockv2_shieldgong_01.m2", + }, + { + fileId = "387871", + text = "blackrockv2_shieldgong_02.m2", + value = "blackrockv2_shieldgong_02.m2", + }, + { + fileId = "387875", + text = "blackrockv2_shieldgong_03.m2", + value = "blackrockv2_shieldgong_03.m2", + }, + { + fileId = "387876", + text = "blackrockv2_shieldgong_04.m2", + value = "blackrockv2_shieldgong_04.m2", + }, + { + fileId = "387880", + text = "blackrockv2_shieldgong_05.m2", + value = "blackrockv2_shieldgong_05.m2", + }, + { + fileId = "387884", + text = "blackrockv2_shieldgong_06.m2", + value = "blackrockv2_shieldgong_06.m2", + }, + { + fileId = "387888", + text = "blackrockv2_shieldgong_07.m2", + value = "blackrockv2_shieldgong_07.m2", + }, + { + fileId = "387892", + text = "blackrockv2_shieldgong_08.m2", + value = "blackrockv2_shieldgong_08.m2", + }, { fileId = "125446", text = "creature_burningash.m2", @@ -6838,6 +8955,17 @@ WeakAuras.ModelPaths = { text = "ragnaros", value = "ragnaros", }, + { + children = { + { + fileId = "512427", + text = "ragnaros2.m2", + value = "ragnaros2.m2", + }, + }, + text = "ragnaros2", + value = "ragnaros2", + }, { children = { { @@ -6849,6 +8977,17 @@ WeakAuras.ModelPaths = { text = "ragnarosmountclassic", value = "ragnarosmountclassic", }, + { + children = { + { + fileId = "394562", + text = "rajah.m2", + value = "rajah.m2", + }, + }, + text = "rajah", + value = "rajah", + }, { children = { { @@ -6908,6 +9047,17 @@ WeakAuras.ModelPaths = { text = "rat", value = "rat", }, + { + children = { + { + fileId = "357810", + text = "raven.m2", + value = "raven.m2", + }, + }, + text = "raven", + value = "raven", + }, { children = { { @@ -6919,6 +9069,17 @@ WeakAuras.ModelPaths = { text = "ravengod", value = "ravengod", }, + { + children = { + { + fileId = "528687", + text = "reddrakemount.m2", + value = "reddrakemount.m2", + }, + }, + text = "reddrakemount", + value = "reddrakemount", + }, { children = { { @@ -6992,6 +9153,27 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "464116", + text = "ridingdirewolfspectral.m2", + value = "ridingdirewolfspectral.m2", + }, + }, + text = "ridingdirewolfspectral", + value = "ridingdirewolfspectral", + }, + { + children = { + { + fileId = "355809", + text = "draeneipaladinelekk.m2", + value = "draeneipaladinelekk.m2", + }, + { + fileId = "359117", + text = "paladinelekkelite.m2", + value = "paladinelekkelite.m2", + }, { fileId = "125593", text = "ridingelekk.m2", @@ -7023,6 +9205,11 @@ WeakAuras.ModelPaths = { text = "ridinghorsepvpt2.m2", value = "ridinghorsepvpt2.m2", }, + { + fileId = "464001", + text = "ridinghorsespectral.m2", + value = "ridinghorsespectral.m2", + }, }, text = "ridinghorse", value = "ridinghorse", @@ -7146,6 +9333,17 @@ WeakAuras.ModelPaths = { text = "ridingwyvernarmored", value = "ridingwyvernarmored", }, + { + children = { + { + fileId = "400775", + text = "ringworm.m2", + value = "ringworm.m2", + }, + }, + text = "ringworm", + value = "ringworm", + }, { children = { { @@ -7200,6 +9398,17 @@ WeakAuras.ModelPaths = { text = "rockflayer", value = "rockflayer", }, + { + children = { + { + fileId = "392102", + text = "romogg.m2", + value = "romogg.m2", + }, + }, + text = "romogg", + value = "romogg", + }, { children = { { @@ -7259,6 +9468,28 @@ WeakAuras.ModelPaths = { text = "salamander", value = "salamander", }, + { + children = { + { + fileId = "512145", + text = "salamanderhunter.m2", + value = "salamanderhunter.m2", + }, + }, + text = "salamanderhunter", + value = "salamanderhunter", + }, + { + children = { + { + fileId = "534267", + text = "sandbox_tiger_01.m2", + value = "sandbox_tiger_01.m2", + }, + }, + text = "sandboxtiger", + value = "sandboxtiger", + }, { children = { { @@ -7303,6 +9534,17 @@ WeakAuras.ModelPaths = { text = "satyr", value = "satyr", }, + { + children = { + { + fileId = "520915", + text = "scaleddrakemount.m2", + value = "scaleddrakemount.m2", + }, + }, + text = "scaleddrakemount", + value = "scaleddrakemount", + }, { children = { { @@ -7336,6 +9578,38 @@ WeakAuras.ModelPaths = { text = "seagiant", value = "seagiant", }, + { + children = { + { + fileId = "357812", + text = "seagull.m2", + value = "seagull.m2", + }, + }, + text = "seagull", + value = "seagull", + }, + { + children = { + { + fileId = "377247", + text = "seahorse.m2", + value = "seahorse.m2", + }, + { + fileId = "466080", + text = "seahorse_baby.m2", + value = "seahorse_baby.m2", + }, + { + fileId = "395776", + text = "seahorsemount.m2", + value = "seahorsemount.m2", + }, + }, + text = "seahorse", + value = "seahorse", + }, { children = { { @@ -7347,6 +9621,17 @@ WeakAuras.ModelPaths = { text = "sealion", value = "sealion", }, + { + children = { + { + fileId = "368580", + text = "seasnake.m2", + value = "seasnake.m2", + }, + }, + text = "seasnake", + value = "seasnake", + }, { children = { { @@ -7406,6 +9691,17 @@ WeakAuras.ModelPaths = { text = "serpent", value = "serpent", }, + { + children = { + { + fileId = "391460", + text = "setesh.m2", + value = "setesh.m2", + }, + }, + text = "setesh", + value = "setesh", + }, { children = { { @@ -7422,6 +9718,28 @@ WeakAuras.ModelPaths = { text = "shade", value = "shade", }, + { + children = { + { + fileId = "408915", + text = "shalespider.m2", + value = "shalespider.m2", + }, + }, + text = "shalespider", + value = "shalespider", + }, + { + children = { + { + fileId = "447138", + text = "shaman_thrall.m2", + value = "shaman_thrall.m2", + }, + }, + text = "shaman_thrall", + value = "shaman_thrall", + }, { children = { { @@ -7505,6 +9823,11 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "571939", + text = "scarab_pet.m2", + value = "scarab_pet.m2", + }, { fileId = "125892", text = "silithidscarab.m2", @@ -7563,6 +9886,27 @@ WeakAuras.ModelPaths = { text = "silithidwaspboss", value = "silithidwaspboss", }, + { + children = { + { + fileId = "405423", + text = "skeletalraptor.m2", + value = "skeletalraptor.m2", + }, + { + fileId = "405425", + text = "skeletalraptormount.m2", + value = "skeletalraptormount.m2", + }, + { + fileId = "408916", + text = "skeletalraptorpet.m2", + value = "skeletalraptorpet.m2", + }, + }, + text = "skeletalraptor", + value = "skeletalraptor", + }, { children = { { @@ -7630,6 +9974,11 @@ WeakAuras.ModelPaths = { text = "slime.m2", value = "slime.m2", }, + { + fileId = "464002", + text = "slime_flame.m2", + value = "slime_flame.m2", + }, { fileId = "125958", text = "slimelesser.m2", @@ -7661,6 +10010,17 @@ WeakAuras.ModelPaths = { text = "slith", value = "slith", }, + { + children = { + { + fileId = "382328", + text = "snail.m2", + value = "snail.m2", + }, + }, + text = "snail", + value = "snail", + }, { children = { { @@ -7705,6 +10065,17 @@ WeakAuras.ModelPaths = { text = "snowman", value = "snowman", }, + { + children = { + { + fileId = "537287", + text = "spectralgryphon.m2", + value = "spectralgryphon.m2", + }, + }, + text = "spectralgryphon", + value = "spectralgryphon", + }, { children = { { @@ -7742,6 +10113,17 @@ WeakAuras.ModelPaths = { text = "spectraltigerferal", value = "spectraltigerferal", }, + { + children = { + { + fileId = "537523", + text = "spectralwyvern.m2", + value = "spectralwyvern.m2", + }, + }, + text = "spectralwyvern", + value = "spectralwyvern", + }, { children = { { @@ -7754,11 +10136,21 @@ WeakAuras.ModelPaths = { text = "battlestandard_alliance.m2", value = "battlestandard_alliance.m2", }, + { + fileId = "125992", + text = "battlestandard_frostwolf_a_01.m2", + value = "battlestandard_frostwolf_a_01.m2", + }, { fileId = "125993", text = "battlestandard_horde.m2", value = "battlestandard_horde.m2", }, + { + fileId = "125994", + text = "battlestandard_stormpike_a_01.m2", + value = "battlestandard_stormpike_a_01.m2", + }, { fileId = "125995", text = "creature_spellportal.m2", @@ -7784,6 +10176,11 @@ WeakAuras.ModelPaths = { text = "draeneitotem_water.m2", value = "draeneitotem_water.m2", }, + { + fileId = "463513", + text = "dragonbreath_sinestra.m2", + value = "dragonbreath_sinestra.m2", + }, { fileId = "328197", text = "dwarventotem_air.m2", @@ -7814,11 +10211,21 @@ WeakAuras.ModelPaths = { text = "eyeofkilrog.m2", value = "eyeofkilrog.m2", }, + { + fileId = "394977", + text = "eyeofkilrog_blue.m2", + value = "eyeofkilrog_blue.m2", + }, { fileId = "126012", text = "fireelementaltotem.m2", value = "fireelementaltotem.m2", }, + { + fileId = "463504", + text = "fireforceshield_purple_sinestra.m2", + value = "fireforceshield_purple_sinestra.m2", + }, { fileId = "126013", text = "firelighttotem.m2", @@ -7834,6 +10241,31 @@ WeakAuras.ModelPaths = { text = "flameturret.m2", value = "flameturret.m2", }, + { + fileId = "365458", + text = "goblinshamantotem_air.m2", + value = "goblinshamantotem_air.m2", + }, + { + fileId = "365271", + text = "goblinshamantotem_earth.m2", + value = "goblinshamantotem_earth.m2", + }, + { + fileId = "364737", + text = "goblinshamantotem_fire.m2", + value = "goblinshamantotem_fire.m2", + }, + { + fileId = "365615", + text = "goblinshamantotem_water.m2", + value = "goblinshamantotem_water.m2", + }, + { + fileId = "428159", + text = "goo_splash_statefire.m2", + value = "goo_splash_statefire.m2", + }, { fileId = "126018", text = "healingtotem.m2", @@ -7859,6 +10291,11 @@ WeakAuras.ModelPaths = { text = "monsterlure01.m2", value = "monsterlure01.m2", }, + { + fileId = "465840", + text = "monsterlure_02.m2", + value = "monsterlure_02.m2", + }, { fileId = "329291", text = "orctotem_air.m2", @@ -7889,6 +10326,21 @@ WeakAuras.ModelPaths = { text = "serpent_totem.m2", value = "serpent_totem.m2", }, + { + fileId = "466409", + text = "skywall_djinn_frost_b4_fight.m2", + value = "skywall_djinn_frost_b4_fight.m2", + }, + { + fileId = "466488", + text = "skywall_djinn_healing_b4_fight.m2", + value = "skywall_djinn_healing_b4_fight.m2", + }, + { + fileId = "466410", + text = "skywall_djinn_tornado_b4_fight.m2", + value = "skywall_djinn_tornado_b4_fight.m2", + }, { fileId = "126036", text = "stasistotem.m2", @@ -8027,6 +10479,17 @@ WeakAuras.ModelPaths = { text = "steamtonk", value = "steamtonk", }, + { + children = { + { + fileId = "405002", + text = "stingray.m2", + value = "stingray.m2", + }, + }, + text = "stingray", + value = "stingray", + }, { children = { { @@ -8202,6 +10665,17 @@ WeakAuras.ModelPaths = { text = "tempscourgemalenpc", value = "tempscourgemalenpc", }, + { + children = { + { + fileId = "402659", + text = "tentacle.m2", + value = "tentacle.m2", + }, + }, + text = "tentacle", + value = "tentacle", + }, { children = { { @@ -8246,6 +10720,17 @@ WeakAuras.ModelPaths = { text = "tharazun", value = "tharazun", }, + { + children = { + { + fileId = "465847", + text = "therazane.m2", + value = "therazane.m2", + }, + }, + text = "therazane", + value = "therazane", + }, { children = { { @@ -8268,6 +10753,17 @@ WeakAuras.ModelPaths = { text = "threshadon", value = "threshadon", }, + { + children = { + { + fileId = "371932", + text = "threshershark.m2", + value = "threshershark.m2", + }, + }, + text = "threshershark", + value = "threshershark", + }, { children = { { @@ -8275,6 +10771,11 @@ WeakAuras.ModelPaths = { text = "thunderaan.m2", value = "thunderaan.m2", }, + { + fileId = "464136", + text = "thunderaan_stave.m2", + value = "thunderaan_stave.m2", + }, }, text = "thunderaan", value = "thunderaan", @@ -8428,6 +10929,55 @@ WeakAuras.ModelPaths = { text = "titanorb", value = "titanorb", }, + { + children = { + { + fileId = "445999", + text = "tolbaradflameleviathan.m2", + value = "tolbaradflameleviathan.m2", + }, + { + fileId = "446000", + text = "tolbaradflameleviathan_weapon_cannon.m2", + value = "tolbaradflameleviathan_weapon_cannon.m2", + }, + }, + text = "tolbaradflameleviathan", + value = "tolbaradflameleviathan", + }, + { + children = { + { + fileId = "415230", + text = "tolvir.m2", + value = "tolvir.m2", + }, + }, + text = "tolvir", + value = "tolvir", + }, + { + children = { + { + fileId = "405444", + text = "toothedshark.m2", + value = "toothedshark.m2", + }, + }, + text = "toothedshark", + value = "toothedshark", + }, + { + children = { + { + fileId = "382368", + text = "toothlessshark.m2", + value = "toothlessshark.m2", + }, + }, + text = "toothlessshark", + value = "toothlessshark", + }, { children = { { @@ -8446,6 +10996,11 @@ WeakAuras.ModelPaths = { text = "ashenvaletreefalling01.m2", value = "ashenvaletreefalling01.m2", }, + { + fileId = "428739", + text = "ashenvaletreefalling01_invisible.m2", + value = "ashenvaletreefalling01_invisible.m2", + }, }, text = "tree", value = "tree", @@ -8601,6 +11156,83 @@ WeakAuras.ModelPaths = { text = "twighlightdragon", value = "twighlightdragon", }, + { + children = { + { + fileId = "433893", + text = "twilightascendantair.m2", + value = "twilightascendantair.m2", + }, + }, + text = "twilightascendantair", + value = "twilightascendantair", + }, + { + children = { + { + fileId = "445930", + text = "twilightascendantearth.m2", + value = "twilightascendantearth.m2", + }, + }, + text = "twilightascendantearth", + value = "twilightascendantearth", + }, + { + children = { + { + fileId = "464150", + text = "twilightascendantelementium.m2", + value = "twilightascendantelementium.m2", + }, + }, + text = "twilightascendantelementium", + value = "twilightascendantelementium", + }, + { + children = { + { + fileId = "535983", + text = "twilightascendantice.m2", + value = "twilightascendantice.m2", + }, + }, + text = "twilightascendantice", + value = "twilightascendantice", + }, + { + children = { + { + fileId = "441861", + text = "twilightascendantwater.m2", + value = "twilightascendantwater.m2", + }, + }, + text = "twilightascendantwater", + value = "twilightascendantwater", + }, + { + children = { + { + fileId = "436834", + text = "twilightshammer_dragonegg.m2", + value = "twilightshammer_dragonegg.m2", + }, + }, + text = "twilightshammer_dragonegg", + value = "twilightshammer_dragonegg", + }, + { + children = { + { + fileId = "431516", + text = "twillightascendantfire.m2", + value = "twillightascendantfire.m2", + }, + }, + text = "twillightascendantfire", + value = "twillightascendantfire", + }, { children = { { @@ -8612,6 +11244,17 @@ WeakAuras.ModelPaths = { text = "twinemperor", value = "twinemperor", }, + { + children = { + { + fileId = "576471", + text = "tyraelmount.m2", + value = "tyraelmount.m2", + }, + }, + text = "tyraelmount", + value = "tyraelmount", + }, { children = { { @@ -8623,6 +11266,60 @@ WeakAuras.ModelPaths = { text = "tyraelpet", value = "tyraelpet", }, + { + children = { + { + fileId = "536149", + text = "tyrande.m2", + value = "tyrande.m2", + }, + }, + text = "tyrande", + value = "tyrande", + }, + { + children = { + { + fileId = "407139", + text = "uldumwatchercenter.m2", + value = "uldumwatchercenter.m2", + }, + { + fileId = "407141", + text = "uldumwatcherleft.m2", + value = "uldumwatcherleft.m2", + }, + { + fileId = "407143", + text = "uldumwatcherright.m2", + value = "uldumwatcherright.m2", + }, + }, + text = "uldumwatcher", + value = "uldumwatcher", + }, + { + children = { + { + fileId = "536536", + text = "ultraxion.m2", + value = "ultraxion.m2", + }, + }, + text = "ultraxion", + value = "ultraxion", + }, + { + children = { + { + fileId = "456297", + text = "unboundwaterelementalmercury.m2", + value = "unboundwaterelementalmercury.m2", + }, + }, + text = "unboundwaterelementalmercury", + value = "unboundwaterelementalmercury", + }, { children = { { @@ -8953,6 +11650,11 @@ WeakAuras.ModelPaths = { text = "warpstalker.m2", value = "warpstalker.m2", }, + { + fileId = "461581", + text = "warpstalker_low.m2", + value = "warpstalker_low.m2", + }, }, text = "warpstalker", value = "warpstalker", @@ -8989,6 +11691,17 @@ WeakAuras.ModelPaths = { text = "warpstorm", value = "warpstorm", }, + { + children = { + { + fileId = "372753", + text = "watcher.m2", + value = "watcher.m2", + }, + }, + text = "watcher", + value = "watcher", + }, { children = { { @@ -9012,10 +11725,26 @@ WeakAuras.ModelPaths = { text = "waterelemental.m2", value = "waterelemental.m2", }, + { + fileId = "316522", + text = "waterelemental_nosplash.m2", + value = "waterelemental_nosplash.m2", + }, }, text = "waterelemental", value = "waterelemental", }, + { + children = { + { + fileId = "456329", + text = "waterelementalmercury.m2", + value = "waterelementalmercury.m2", + }, + }, + text = "waterelementalmercury", + value = "waterelementalmercury", + }, { children = { { @@ -9053,6 +11782,49 @@ WeakAuras.ModelPaths = { text = "wendigo", value = "wendigo", }, + { + children = { + { + fileId = "512718", + text = "wendigo_02.m2", + value = "wendigo_02.m2", + }, + }, + text = "wendigo_02", + value = "wendigo_02", + }, + { + children = { + { + fileId = "533501", + text = "whack_a_gnoll.m2", + value = "whack_a_gnoll.m2", + }, + { + fileId = "533504", + text = "whack_a_gnoll_baby.m2", + value = "whack_a_gnoll_baby.m2", + }, + { + fileId = "533507", + text = "whack_a_gnoll_elite.m2", + value = "whack_a_gnoll_elite.m2", + }, + }, + text = "whackagnoll", + value = "whackagnoll", + }, + { + children = { + { + fileId = "369759", + text = "whaleshark.m2", + value = "whaleshark.m2", + }, + }, + text = "whaleshark", + value = "whaleshark", + }, { children = { { @@ -9107,6 +11879,28 @@ WeakAuras.ModelPaths = { text = "wingedhorse", value = "wingedhorse", }, + { + children = { + { + fileId = "514863", + text = "wingedlionmount.m2", + value = "wingedlionmount.m2", + }, + }, + text = "wingedlionmount", + value = "wingedlionmount", + }, + { + children = { + { + fileId = "519240", + text = "wingedlionpet.m2", + value = "wingedlionpet.m2", + }, + }, + text = "wingedlionpet", + value = "wingedlionpet", + }, { children = { { @@ -9188,6 +11982,28 @@ WeakAuras.ModelPaths = { text = "worgen", value = "worgen", }, + { + children = { + { + fileId = "515178", + text = "worgenfemalekid.m2", + value = "worgenfemalekid.m2", + }, + }, + text = "worgenfemalekid", + value = "worgenfemalekid", + }, + { + children = { + { + fileId = "518964", + text = "worgenmalekid.m2", + value = "worgenmalekid.m2", + }, + }, + text = "worgenmalekid", + value = "worgenmalekid", + }, { children = { { @@ -9238,6 +12054,11 @@ WeakAuras.ModelPaths = { text = "wyvernpet.m2", value = "wyvernpet.m2", }, + { + fileId = "377981", + text = "wyvernpetgeneric.m2", + value = "wyvernpetgeneric.m2", + }, }, text = "wyvernpet", value = "wyvernpet", @@ -9255,6 +12076,22 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "531432", + text = "yeti_greench.m2", + value = "yeti_greench.m2", + }, + }, + text = "yeti_greench", + value = "yeti_greench", + }, + { + children = { + { + fileId = "412502", + text = "cataclysm_tentacle.m2", + value = "cataclysm_tentacle.m2", + }, { fileId = "253209", text = "yoggsaron.m2", @@ -9280,15 +12117,52 @@ WeakAuras.ModelPaths = { text = "yoggsarontentaclemace.m2", value = "yoggsarontentaclemace.m2", }, + { + fileId = "576848", + text = "yoggsarontentaclemace_lootable.m2", + value = "yoggsarontentaclemace_lootable.m2", + }, { fileId = "253185", text = "yoggsarontentaclethin.m2", value = "yoggsarontentaclethin.m2", }, + { + fileId = "463997", + text = "yoggsarontentaclethin_vine.m2", + value = "yoggsarontentaclethin_vine.m2", + }, }, text = "yoggsaron", value = "yoggsaron", }, + { + children = { + { + fileId = "437089", + text = "ysera.m2", + value = "ysera.m2", + }, + { + fileId = "575208", + text = "ysera2.m2", + value = "ysera2.m2", + }, + }, + text = "ysera", + value = "ysera", + }, + { + children = { + { + fileId = "532126", + text = "yseradragon.m2", + value = "yseradragon.m2", + }, + }, + text = "yseradragon", + value = "yseradragon", + }, { children = { { @@ -9461,6 +12335,11 @@ WeakAuras.ModelPaths = { text = "chamberaspectsblacksky.m2", value = "chamberaspectsblacksky.m2", }, + { + fileId = "516720", + text = "coldarralunareclipsesky.m2", + value = "coldarralunareclipsesky.m2", + }, { fileId = "130485", text = "coldarrasky.m2", @@ -9476,6 +12355,11 @@ WeakAuras.ModelPaths = { text = "dalaranskybox.m2", value = "dalaranskybox.m2", }, + { + fileId = "574823", + text = "darkmoonsky01.m2", + value = "darkmoonsky01.m2", + }, { fileId = "130495", text = "deathclouds.m2", @@ -9491,6 +12375,21 @@ WeakAuras.ModelPaths = { text = "deathskybox.m2", value = "deathskybox.m2", }, + { + fileId = "527515", + text = "deathwingfightsky01.m2", + value = "deathwingfightsky01.m2", + }, + { + fileId = "521191", + text = "deathwingskyboxtest.m2", + value = "deathwingskyboxtest.m2", + }, + { + fileId = "378272", + text = "deepholm_sky01.m2", + value = "deepholm_sky01.m2", + }, { fileId = "130497", text = "diremaulskybox.m2", @@ -9501,11 +12400,31 @@ WeakAuras.ModelPaths = { text = "dragonblightscarletskybox.m2", value = "dragonblightscarletskybox.m2", }, + { + fileId = "527828", + text = "fallofazeroth01.m2", + value = "fallofazeroth01.m2", + }, + { + fileId = "512948", + text = "firelandssky01.m2", + value = "firelandssky01.m2", + }, { fileId = "130525", text = "hellfireskybox.m2", value = "hellfireskybox.m2", }, + { + fileId = "529874", + text = "hour_twilight_rewind_time.m2", + value = "hour_twilight_rewind_time.m2", + }, + { + fileId = "317347", + text = "hyjal_skybox.m2", + value = "hyjal_skybox.m2", + }, { fileId = "336477", text = "icecrownarthasdeathsky.m2", @@ -9556,6 +12475,41 @@ WeakAuras.ModelPaths = { text = "icecrownsunsetsky.m2", value = "icecrownsunsetsky.m2", }, + { + fileId = "332833", + text = "kezanskybox.m2", + value = "kezanskybox.m2", + }, + { + fileId = "405439", + text = "lostislegloomyskybox.m2", + value = "lostislegloomyskybox.m2", + }, + { + fileId = "321486", + text = "lostisleskybox.m2", + value = "lostisleskybox.m2", + }, + { + fileId = "389704", + text = "lostislevocanoskybox.m2", + value = "lostislevocanoskybox.m2", + }, + { + fileId = "406671", + text = "maelstrom_sky01.m2", + value = "maelstrom_sky01.m2", + }, + { + fileId = "536985", + text = "maelstrom_sky02_deathwingfight.m2", + value = "maelstrom_sky02_deathwingfight.m2", + }, + { + fileId = "574890", + text = "maelstrom_sky03_stormbreak.m2", + value = "maelstrom_sky03_stormbreak.m2", + }, { fileId = "130575", text = "nagrandskybox.m2", @@ -9566,6 +12520,11 @@ WeakAuras.ModelPaths = { text = "netherstormskybox.m2", value = "netherstormskybox.m2", }, + { + fileId = "533860", + text = "nexus_arcane_sanctum.m2", + value = "nexus_arcane_sanctum.m2", + }, { fileId = "235337", text = "nexusraid_nebulasky.m2", @@ -9616,6 +12575,21 @@ WeakAuras.ModelPaths = { text = "shadowmoonskybox.m2", value = "shadowmoonskybox.m2", }, + { + fileId = "428743", + text = "skywallraidskybox.m2", + value = "skywallraidskybox.m2", + }, + { + fileId = "454481", + text = "skywallraidstormyskybox.m2", + value = "skywallraidstormyskybox.m2", + }, + { + fileId = "366242", + text = "skywallskybox.m2", + value = "skywallskybox.m2", + }, { fileId = "130629", text = "stars.m2", @@ -9641,11 +12615,41 @@ WeakAuras.ModelPaths = { text = "stratholmeskybox.m2", value = "stratholmeskybox.m2", }, + { + fileId = "392407", + text = "twilighthighlandssky.m2", + value = "twilighthighlandssky.m2", + }, + { + fileId = "451101", + text = "twilighthighlandssky2.m2", + value = "twilighthighlandssky2.m2", + }, + { + fileId = "532845", + text = "twilightrealmsky01.m2", + value = "twilightrealmsky01.m2", + }, + { + fileId = "385315", + text = "twilightshammersky.m2", + value = "twilightshammersky.m2", + }, + { + fileId = "375466", + text = "uldum_sky01.m2", + value = "uldum_sky01.m2", + }, { fileId = "235374", text = "uldurancloudysky.m2", value = "uldurancloudysky.m2", }, + { + fileId = "537118", + text = "wellofeternity01.m2", + value = "wellofeternity01.m2", + }, { fileId = "235383", text = "wintergraspsmokysky.m2", @@ -10479,6 +13483,17 @@ WeakAuras.ModelPaths = { text = "ammo", value = "ammo", }, + { + children = { + { + fileId = "534613", + text = "parachute_01.m2", + value = "parachute_01.m2", + }, + }, + text = "backpack", + value = "backpack", + }, { children = { { @@ -10517,6 +13532,22 @@ WeakAuras.ModelPaths = { text = "battlestandards", value = "battlestandards", }, + { + children = { + { + fileId = "1718333", + text = "worgencombattransformation_wo_f.m2", + value = "worgencombattransformation_wo_f.m2", + }, + { + fileId = "1718332", + text = "worgencombattransformation_wo_m.m2", + value = "worgencombattransformation_wo_m.m2", + }, + }, + text = "collections", + value = "collections", + }, { children = { { @@ -10629,6 +13660,16 @@ WeakAuras.ModelPaths = { text = "helm_blindfold_a_01_trm.m2", value = "helm_blindfold_a_01_trm.m2", }, + { + fileId = "454075", + text = "helm_blindfold_a_01_wof.m2", + value = "helm_blindfold_a_01_wof.m2", + }, + { + fileId = "463014", + text = "helm_blindfold_a_01_wom.m2", + value = "helm_blindfold_a_01_wom.m2", + }, { fileId = "137467", text = "helm_circlet_a_01_bef.m2", @@ -10739,6 +13780,16 @@ WeakAuras.ModelPaths = { text = "helm_circlet_a_01_trm.m2", value = "helm_circlet_a_01_trm.m2", }, + { + fileId = "454076", + text = "helm_circlet_a_01_wof.m2", + value = "helm_circlet_a_01_wof.m2", + }, + { + fileId = "437841", + text = "helm_circlet_a_01_wom.m2", + value = "helm_circlet_a_01_wom.m2", + }, { fileId = "137491", text = "helm_circlet_b_01_bef.m2", @@ -10849,6 +13900,16 @@ WeakAuras.ModelPaths = { text = "helm_circlet_b_01_trm.m2", value = "helm_circlet_b_01_trm.m2", }, + { + fileId = "403229", + text = "helm_circlet_b_01_wof.m2", + value = "helm_circlet_b_01_wof.m2", + }, + { + fileId = "403230", + text = "helm_circlet_b_01_wom.m2", + value = "helm_circlet_b_01_wom.m2", + }, { fileId = "137520", text = "helm_circlet_b_02_bef.m2", @@ -10959,6 +14020,16 @@ WeakAuras.ModelPaths = { text = "helm_circlet_b_02_trm.m2", value = "helm_circlet_b_02_trm.m2", }, + { + fileId = "403231", + text = "helm_circlet_b_02_wof.m2", + value = "helm_circlet_b_02_wof.m2", + }, + { + fileId = "403232", + text = "helm_circlet_b_02_wom.m2", + value = "helm_circlet_b_02_wom.m2", + }, { fileId = "137548", text = "helm_circlet_c_01_bef.m2", @@ -11069,6 +14140,136 @@ WeakAuras.ModelPaths = { text = "helm_circlet_c_01_trm.m2", value = "helm_circlet_c_01_trm.m2", }, + { + fileId = "403233", + text = "helm_circlet_c_01_wof.m2", + value = "helm_circlet_c_01_wof.m2", + }, + { + fileId = "403234", + text = "helm_circlet_c_01_wom.m2", + value = "helm_circlet_c_01_wom.m2", + }, + { + fileId = "516874", + text = "helm_circlet_firelands_d_01_bef.m2", + value = "helm_circlet_firelands_d_01_bef.m2", + }, + { + fileId = "516876", + text = "helm_circlet_firelands_d_01_bem.m2", + value = "helm_circlet_firelands_d_01_bem.m2", + }, + { + fileId = "516878", + text = "helm_circlet_firelands_d_01_drf.m2", + value = "helm_circlet_firelands_d_01_drf.m2", + }, + { + fileId = "516880", + text = "helm_circlet_firelands_d_01_drm.m2", + value = "helm_circlet_firelands_d_01_drm.m2", + }, + { + fileId = "516882", + text = "helm_circlet_firelands_d_01_dwf.m2", + value = "helm_circlet_firelands_d_01_dwf.m2", + }, + { + fileId = "516884", + text = "helm_circlet_firelands_d_01_dwm.m2", + value = "helm_circlet_firelands_d_01_dwm.m2", + }, + { + fileId = "516886", + text = "helm_circlet_firelands_d_01_gnf.m2", + value = "helm_circlet_firelands_d_01_gnf.m2", + }, + { + fileId = "516888", + text = "helm_circlet_firelands_d_01_gnm.m2", + value = "helm_circlet_firelands_d_01_gnm.m2", + }, + { + fileId = "516890", + text = "helm_circlet_firelands_d_01_gof.m2", + value = "helm_circlet_firelands_d_01_gof.m2", + }, + { + fileId = "516892", + text = "helm_circlet_firelands_d_01_gom.m2", + value = "helm_circlet_firelands_d_01_gom.m2", + }, + { + fileId = "516894", + text = "helm_circlet_firelands_d_01_huf.m2", + value = "helm_circlet_firelands_d_01_huf.m2", + }, + { + fileId = "516896", + text = "helm_circlet_firelands_d_01_hum.m2", + value = "helm_circlet_firelands_d_01_hum.m2", + }, + { + fileId = "516898", + text = "helm_circlet_firelands_d_01_nif.m2", + value = "helm_circlet_firelands_d_01_nif.m2", + }, + { + fileId = "516900", + text = "helm_circlet_firelands_d_01_nim.m2", + value = "helm_circlet_firelands_d_01_nim.m2", + }, + { + fileId = "516902", + text = "helm_circlet_firelands_d_01_orf.m2", + value = "helm_circlet_firelands_d_01_orf.m2", + }, + { + fileId = "516904", + text = "helm_circlet_firelands_d_01_orm.m2", + value = "helm_circlet_firelands_d_01_orm.m2", + }, + { + fileId = "516906", + text = "helm_circlet_firelands_d_01_scf.m2", + value = "helm_circlet_firelands_d_01_scf.m2", + }, + { + fileId = "516908", + text = "helm_circlet_firelands_d_01_scm.m2", + value = "helm_circlet_firelands_d_01_scm.m2", + }, + { + fileId = "516910", + text = "helm_circlet_firelands_d_01_taf.m2", + value = "helm_circlet_firelands_d_01_taf.m2", + }, + { + fileId = "516912", + text = "helm_circlet_firelands_d_01_tam.m2", + value = "helm_circlet_firelands_d_01_tam.m2", + }, + { + fileId = "516914", + text = "helm_circlet_firelands_d_01_trf.m2", + value = "helm_circlet_firelands_d_01_trf.m2", + }, + { + fileId = "516916", + text = "helm_circlet_firelands_d_01_trm.m2", + value = "helm_circlet_firelands_d_01_trm.m2", + }, + { + fileId = "516918", + text = "helm_circlet_firelands_d_01_wof.m2", + value = "helm_circlet_firelands_d_01_wof.m2", + }, + { + fileId = "516920", + text = "helm_circlet_firelands_d_01_wom.m2", + value = "helm_circlet_firelands_d_01_wom.m2", + }, { fileId = "137573", text = "helm_cloth_a_01_bef.m2", @@ -11179,6 +14380,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_a_01_trm.m2", value = "helm_cloth_a_01_trm.m2", }, + { + fileId = "403235", + text = "helm_cloth_a_01_wof.m2", + value = "helm_cloth_a_01_wof.m2", + }, + { + fileId = "403236", + text = "helm_cloth_a_01_wom.m2", + value = "helm_cloth_a_01_wom.m2", + }, { fileId = "137625", text = "helm_cloth_a_02_bef.m2", @@ -11289,6 +14500,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_a_02_trm.m2", value = "helm_cloth_a_02_trm.m2", }, + { + fileId = "404446", + text = "helm_cloth_a_02_wof.m2", + value = "helm_cloth_a_02_wof.m2", + }, + { + fileId = "404447", + text = "helm_cloth_a_02_wom.m2", + value = "helm_cloth_a_02_wom.m2", + }, { fileId = "137647", text = "helm_cloth_b_01pirate_bef.m2", @@ -11379,6 +14600,11 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_01pirate_scm.m2", value = "helm_cloth_b_01pirate_scm.m2", }, + { + fileId = "375534", + text = "helm_cloth_b_01pirate_skm.m2", + value = "helm_cloth_b_01pirate_skm.m2", + }, { fileId = "137665", text = "helm_cloth_b_01pirate_taf.m2", @@ -11399,6 +14625,21 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_01pirate_trm.m2", value = "helm_cloth_b_01pirate_trm.m2", }, + { + fileId = "374813", + text = "helm_cloth_b_01pirate_vrk.m2", + value = "helm_cloth_b_01pirate_vrk.m2", + }, + { + fileId = "454077", + text = "helm_cloth_b_01pirate_wof.m2", + value = "helm_cloth_b_01pirate_wof.m2", + }, + { + fileId = "429987", + text = "helm_cloth_b_01pirate_wom.m2", + value = "helm_cloth_b_01pirate_wom.m2", + }, { fileId = "137672", text = "helm_cloth_b_03admiral_bef.m2", @@ -11489,6 +14730,11 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_03admiral_scm.m2", value = "helm_cloth_b_03admiral_scm.m2", }, + { + fileId = "375535", + text = "helm_cloth_b_03admiral_skm.m2", + value = "helm_cloth_b_03admiral_skm.m2", + }, { fileId = "137690", text = "helm_cloth_b_03admiral_taf.m2", @@ -11509,6 +14755,21 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_03admiral_trm.m2", value = "helm_cloth_b_03admiral_trm.m2", }, + { + fileId = "375001", + text = "helm_cloth_b_03admiral_vrk.m2", + value = "helm_cloth_b_03admiral_vrk.m2", + }, + { + fileId = "454078", + text = "helm_cloth_b_03admiral_wof.m2", + value = "helm_cloth_b_03admiral_wof.m2", + }, + { + fileId = "429988", + text = "helm_cloth_b_03admiral_wom.m2", + value = "helm_cloth_b_03admiral_wom.m2", + }, { fileId = "137696", text = "helm_cloth_b_04widebrim_bef.m2", @@ -11619,6 +14880,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_04widebrim_trm.m2", value = "helm_cloth_b_04widebrim_trm.m2", }, + { + fileId = "454079", + text = "helm_cloth_b_04widebrim_wof.m2", + value = "helm_cloth_b_04widebrim_wof.m2", + }, + { + fileId = "429989", + text = "helm_cloth_b_04widebrim_wom.m2", + value = "helm_cloth_b_04widebrim_wom.m2", + }, { fileId = "137726", text = "helm_cloth_b_05_bef.m2", @@ -11729,6 +15000,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_05_trm.m2", value = "helm_cloth_b_05_trm.m2", }, + { + fileId = "454483", + text = "helm_cloth_b_05_wof.m2", + value = "helm_cloth_b_05_wof.m2", + }, + { + fileId = "429990", + text = "helm_cloth_b_05_wom.m2", + value = "helm_cloth_b_05_wom.m2", + }, { fileId = "137751", text = "helm_cloth_b_06_bef.m2", @@ -11839,6 +15120,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_b_06_trm.m2", value = "helm_cloth_b_06_trm.m2", }, + { + fileId = "454484", + text = "helm_cloth_b_06_wof.m2", + value = "helm_cloth_b_06_wof.m2", + }, + { + fileId = "429991", + text = "helm_cloth_b_06_wom.m2", + value = "helm_cloth_b_06_wom.m2", + }, { fileId = "137782", text = "helm_cloth_c_01mitre_bef.m2", @@ -11949,6 +15240,256 @@ WeakAuras.ModelPaths = { text = "helm_cloth_c_01mitre_trm.m2", value = "helm_cloth_c_01mitre_trm.m2", }, + { + fileId = "454485", + text = "helm_cloth_c_01mitre_wof.m2", + value = "helm_cloth_c_01mitre_wof.m2", + }, + { + fileId = "429992", + text = "helm_cloth_c_01mitre_wom.m2", + value = "helm_cloth_c_01mitre_wom.m2", + }, + { + fileId = "424773", + text = "helm_cloth_cataclysm_b_01_bef.m2", + value = "helm_cloth_cataclysm_b_01_bef.m2", + }, + { + fileId = "424774", + text = "helm_cloth_cataclysm_b_01_bem.m2", + value = "helm_cloth_cataclysm_b_01_bem.m2", + }, + { + fileId = "424775", + text = "helm_cloth_cataclysm_b_01_drf.m2", + value = "helm_cloth_cataclysm_b_01_drf.m2", + }, + { + fileId = "424776", + text = "helm_cloth_cataclysm_b_01_drm.m2", + value = "helm_cloth_cataclysm_b_01_drm.m2", + }, + { + fileId = "424777", + text = "helm_cloth_cataclysm_b_01_dwf.m2", + value = "helm_cloth_cataclysm_b_01_dwf.m2", + }, + { + fileId = "424778", + text = "helm_cloth_cataclysm_b_01_dwm.m2", + value = "helm_cloth_cataclysm_b_01_dwm.m2", + }, + { + fileId = "424779", + text = "helm_cloth_cataclysm_b_01_gnf.m2", + value = "helm_cloth_cataclysm_b_01_gnf.m2", + }, + { + fileId = "424780", + text = "helm_cloth_cataclysm_b_01_gnm.m2", + value = "helm_cloth_cataclysm_b_01_gnm.m2", + }, + { + fileId = "424781", + text = "helm_cloth_cataclysm_b_01_gof.m2", + value = "helm_cloth_cataclysm_b_01_gof.m2", + }, + { + fileId = "424782", + text = "helm_cloth_cataclysm_b_01_gom.m2", + value = "helm_cloth_cataclysm_b_01_gom.m2", + }, + { + fileId = "424783", + text = "helm_cloth_cataclysm_b_01_huf.m2", + value = "helm_cloth_cataclysm_b_01_huf.m2", + }, + { + fileId = "424784", + text = "helm_cloth_cataclysm_b_01_hum.m2", + value = "helm_cloth_cataclysm_b_01_hum.m2", + }, + { + fileId = "424785", + text = "helm_cloth_cataclysm_b_01_nif.m2", + value = "helm_cloth_cataclysm_b_01_nif.m2", + }, + { + fileId = "424786", + text = "helm_cloth_cataclysm_b_01_nim.m2", + value = "helm_cloth_cataclysm_b_01_nim.m2", + }, + { + fileId = "424787", + text = "helm_cloth_cataclysm_b_01_orf.m2", + value = "helm_cloth_cataclysm_b_01_orf.m2", + }, + { + fileId = "424788", + text = "helm_cloth_cataclysm_b_01_orm.m2", + value = "helm_cloth_cataclysm_b_01_orm.m2", + }, + { + fileId = "424790", + text = "helm_cloth_cataclysm_b_01_scf.m2", + value = "helm_cloth_cataclysm_b_01_scf.m2", + }, + { + fileId = "424791", + text = "helm_cloth_cataclysm_b_01_scm.m2", + value = "helm_cloth_cataclysm_b_01_scm.m2", + }, + { + fileId = "424792", + text = "helm_cloth_cataclysm_b_01_taf.m2", + value = "helm_cloth_cataclysm_b_01_taf.m2", + }, + { + fileId = "424793", + text = "helm_cloth_cataclysm_b_01_tam.m2", + value = "helm_cloth_cataclysm_b_01_tam.m2", + }, + { + fileId = "424794", + text = "helm_cloth_cataclysm_b_01_trf.m2", + value = "helm_cloth_cataclysm_b_01_trf.m2", + }, + { + fileId = "424795", + text = "helm_cloth_cataclysm_b_01_trm.m2", + value = "helm_cloth_cataclysm_b_01_trm.m2", + }, + { + fileId = "424796", + text = "helm_cloth_cataclysm_b_01_wof.m2", + value = "helm_cloth_cataclysm_b_01_wof.m2", + }, + { + fileId = "424797", + text = "helm_cloth_cataclysm_b_01_wom.m2", + value = "helm_cloth_cataclysm_b_01_wom.m2", + }, + { + fileId = "433450", + text = "helm_cloth_cataclysm_b_02_bef.m2", + value = "helm_cloth_cataclysm_b_02_bef.m2", + }, + { + fileId = "433451", + text = "helm_cloth_cataclysm_b_02_bem.m2", + value = "helm_cloth_cataclysm_b_02_bem.m2", + }, + { + fileId = "433452", + text = "helm_cloth_cataclysm_b_02_drf.m2", + value = "helm_cloth_cataclysm_b_02_drf.m2", + }, + { + fileId = "433453", + text = "helm_cloth_cataclysm_b_02_drm.m2", + value = "helm_cloth_cataclysm_b_02_drm.m2", + }, + { + fileId = "433454", + text = "helm_cloth_cataclysm_b_02_dwf.m2", + value = "helm_cloth_cataclysm_b_02_dwf.m2", + }, + { + fileId = "433455", + text = "helm_cloth_cataclysm_b_02_dwm.m2", + value = "helm_cloth_cataclysm_b_02_dwm.m2", + }, + { + fileId = "433456", + text = "helm_cloth_cataclysm_b_02_gnf.m2", + value = "helm_cloth_cataclysm_b_02_gnf.m2", + }, + { + fileId = "433457", + text = "helm_cloth_cataclysm_b_02_gnm.m2", + value = "helm_cloth_cataclysm_b_02_gnm.m2", + }, + { + fileId = "433458", + text = "helm_cloth_cataclysm_b_02_gof.m2", + value = "helm_cloth_cataclysm_b_02_gof.m2", + }, + { + fileId = "433459", + text = "helm_cloth_cataclysm_b_02_gom.m2", + value = "helm_cloth_cataclysm_b_02_gom.m2", + }, + { + fileId = "433460", + text = "helm_cloth_cataclysm_b_02_huf.m2", + value = "helm_cloth_cataclysm_b_02_huf.m2", + }, + { + fileId = "433461", + text = "helm_cloth_cataclysm_b_02_hum.m2", + value = "helm_cloth_cataclysm_b_02_hum.m2", + }, + { + fileId = "433462", + text = "helm_cloth_cataclysm_b_02_nif.m2", + value = "helm_cloth_cataclysm_b_02_nif.m2", + }, + { + fileId = "433463", + text = "helm_cloth_cataclysm_b_02_nim.m2", + value = "helm_cloth_cataclysm_b_02_nim.m2", + }, + { + fileId = "433464", + text = "helm_cloth_cataclysm_b_02_orf.m2", + value = "helm_cloth_cataclysm_b_02_orf.m2", + }, + { + fileId = "433465", + text = "helm_cloth_cataclysm_b_02_orm.m2", + value = "helm_cloth_cataclysm_b_02_orm.m2", + }, + { + fileId = "433466", + text = "helm_cloth_cataclysm_b_02_scf.m2", + value = "helm_cloth_cataclysm_b_02_scf.m2", + }, + { + fileId = "433467", + text = "helm_cloth_cataclysm_b_02_scm.m2", + value = "helm_cloth_cataclysm_b_02_scm.m2", + }, + { + fileId = "433468", + text = "helm_cloth_cataclysm_b_02_taf.m2", + value = "helm_cloth_cataclysm_b_02_taf.m2", + }, + { + fileId = "433469", + text = "helm_cloth_cataclysm_b_02_tam.m2", + value = "helm_cloth_cataclysm_b_02_tam.m2", + }, + { + fileId = "433470", + text = "helm_cloth_cataclysm_b_02_trf.m2", + value = "helm_cloth_cataclysm_b_02_trf.m2", + }, + { + fileId = "433471", + text = "helm_cloth_cataclysm_b_02_trm.m2", + value = "helm_cloth_cataclysm_b_02_trm.m2", + }, + { + fileId = "433472", + text = "helm_cloth_cataclysm_b_02_wof.m2", + value = "helm_cloth_cataclysm_b_02_wof.m2", + }, + { + fileId = "433473", + text = "helm_cloth_cataclysm_b_02_wom.m2", + value = "helm_cloth_cataclysm_b_02_wom.m2", + }, { fileId = "237760", text = "helm_cloth_chefhat_a_01_bef.m2", @@ -12059,6 +15600,256 @@ WeakAuras.ModelPaths = { text = "helm_cloth_chefhat_a_01_trm.m2", value = "helm_cloth_chefhat_a_01_trm.m2", }, + { + fileId = "403283", + text = "helm_cloth_chefhat_a_01_wof.m2", + value = "helm_cloth_chefhat_a_01_wof.m2", + }, + { + fileId = "403284", + text = "helm_cloth_chefhat_a_01_wom.m2", + value = "helm_cloth_chefhat_a_01_wom.m2", + }, + { + fileId = "320265", + text = "helm_cloth_gilneashat_a_01_bef.m2", + value = "helm_cloth_gilneashat_a_01_bef.m2", + }, + { + fileId = "320266", + text = "helm_cloth_gilneashat_a_01_bem.m2", + value = "helm_cloth_gilneashat_a_01_bem.m2", + }, + { + fileId = "320267", + text = "helm_cloth_gilneashat_a_01_drf.m2", + value = "helm_cloth_gilneashat_a_01_drf.m2", + }, + { + fileId = "320268", + text = "helm_cloth_gilneashat_a_01_drm.m2", + value = "helm_cloth_gilneashat_a_01_drm.m2", + }, + { + fileId = "320269", + text = "helm_cloth_gilneashat_a_01_dwf.m2", + value = "helm_cloth_gilneashat_a_01_dwf.m2", + }, + { + fileId = "320270", + text = "helm_cloth_gilneashat_a_01_dwm.m2", + value = "helm_cloth_gilneashat_a_01_dwm.m2", + }, + { + fileId = "320271", + text = "helm_cloth_gilneashat_a_01_gnf.m2", + value = "helm_cloth_gilneashat_a_01_gnf.m2", + }, + { + fileId = "320272", + text = "helm_cloth_gilneashat_a_01_gnm.m2", + value = "helm_cloth_gilneashat_a_01_gnm.m2", + }, + { + fileId = "320273", + text = "helm_cloth_gilneashat_a_01_gof.m2", + value = "helm_cloth_gilneashat_a_01_gof.m2", + }, + { + fileId = "320274", + text = "helm_cloth_gilneashat_a_01_gom.m2", + value = "helm_cloth_gilneashat_a_01_gom.m2", + }, + { + fileId = "320275", + text = "helm_cloth_gilneashat_a_01_huf.m2", + value = "helm_cloth_gilneashat_a_01_huf.m2", + }, + { + fileId = "320276", + text = "helm_cloth_gilneashat_a_01_hum.m2", + value = "helm_cloth_gilneashat_a_01_hum.m2", + }, + { + fileId = "320277", + text = "helm_cloth_gilneashat_a_01_nif.m2", + value = "helm_cloth_gilneashat_a_01_nif.m2", + }, + { + fileId = "320278", + text = "helm_cloth_gilneashat_a_01_nim.m2", + value = "helm_cloth_gilneashat_a_01_nim.m2", + }, + { + fileId = "320279", + text = "helm_cloth_gilneashat_a_01_orf.m2", + value = "helm_cloth_gilneashat_a_01_orf.m2", + }, + { + fileId = "320280", + text = "helm_cloth_gilneashat_a_01_orm.m2", + value = "helm_cloth_gilneashat_a_01_orm.m2", + }, + { + fileId = "320281", + text = "helm_cloth_gilneashat_a_01_scf.m2", + value = "helm_cloth_gilneashat_a_01_scf.m2", + }, + { + fileId = "320282", + text = "helm_cloth_gilneashat_a_01_scm.m2", + value = "helm_cloth_gilneashat_a_01_scm.m2", + }, + { + fileId = "320283", + text = "helm_cloth_gilneashat_a_01_taf.m2", + value = "helm_cloth_gilneashat_a_01_taf.m2", + }, + { + fileId = "320284", + text = "helm_cloth_gilneashat_a_01_tam.m2", + value = "helm_cloth_gilneashat_a_01_tam.m2", + }, + { + fileId = "320285", + text = "helm_cloth_gilneashat_a_01_trf.m2", + value = "helm_cloth_gilneashat_a_01_trf.m2", + }, + { + fileId = "320286", + text = "helm_cloth_gilneashat_a_01_trm.m2", + value = "helm_cloth_gilneashat_a_01_trm.m2", + }, + { + fileId = "404129", + text = "helm_cloth_gilneashat_a_01_wof.m2", + value = "helm_cloth_gilneashat_a_01_wof.m2", + }, + { + fileId = "404130", + text = "helm_cloth_gilneashat_a_01_wom.m2", + value = "helm_cloth_gilneashat_a_01_wom.m2", + }, + { + fileId = "320287", + text = "helm_cloth_gilneashat_a_02_bef.m2", + value = "helm_cloth_gilneashat_a_02_bef.m2", + }, + { + fileId = "320288", + text = "helm_cloth_gilneashat_a_02_bem.m2", + value = "helm_cloth_gilneashat_a_02_bem.m2", + }, + { + fileId = "320289", + text = "helm_cloth_gilneashat_a_02_drf.m2", + value = "helm_cloth_gilneashat_a_02_drf.m2", + }, + { + fileId = "320290", + text = "helm_cloth_gilneashat_a_02_drm.m2", + value = "helm_cloth_gilneashat_a_02_drm.m2", + }, + { + fileId = "320291", + text = "helm_cloth_gilneashat_a_02_dwf.m2", + value = "helm_cloth_gilneashat_a_02_dwf.m2", + }, + { + fileId = "320292", + text = "helm_cloth_gilneashat_a_02_dwm.m2", + value = "helm_cloth_gilneashat_a_02_dwm.m2", + }, + { + fileId = "320293", + text = "helm_cloth_gilneashat_a_02_gnf.m2", + value = "helm_cloth_gilneashat_a_02_gnf.m2", + }, + { + fileId = "320294", + text = "helm_cloth_gilneashat_a_02_gnm.m2", + value = "helm_cloth_gilneashat_a_02_gnm.m2", + }, + { + fileId = "320295", + text = "helm_cloth_gilneashat_a_02_gof.m2", + value = "helm_cloth_gilneashat_a_02_gof.m2", + }, + { + fileId = "320296", + text = "helm_cloth_gilneashat_a_02_gom.m2", + value = "helm_cloth_gilneashat_a_02_gom.m2", + }, + { + fileId = "320297", + text = "helm_cloth_gilneashat_a_02_huf.m2", + value = "helm_cloth_gilneashat_a_02_huf.m2", + }, + { + fileId = "320298", + text = "helm_cloth_gilneashat_a_02_hum.m2", + value = "helm_cloth_gilneashat_a_02_hum.m2", + }, + { + fileId = "320299", + text = "helm_cloth_gilneashat_a_02_nif.m2", + value = "helm_cloth_gilneashat_a_02_nif.m2", + }, + { + fileId = "320300", + text = "helm_cloth_gilneashat_a_02_nim.m2", + value = "helm_cloth_gilneashat_a_02_nim.m2", + }, + { + fileId = "320301", + text = "helm_cloth_gilneashat_a_02_orf.m2", + value = "helm_cloth_gilneashat_a_02_orf.m2", + }, + { + fileId = "320302", + text = "helm_cloth_gilneashat_a_02_orm.m2", + value = "helm_cloth_gilneashat_a_02_orm.m2", + }, + { + fileId = "320303", + text = "helm_cloth_gilneashat_a_02_scf.m2", + value = "helm_cloth_gilneashat_a_02_scf.m2", + }, + { + fileId = "320304", + text = "helm_cloth_gilneashat_a_02_scm.m2", + value = "helm_cloth_gilneashat_a_02_scm.m2", + }, + { + fileId = "320305", + text = "helm_cloth_gilneashat_a_02_taf.m2", + value = "helm_cloth_gilneashat_a_02_taf.m2", + }, + { + fileId = "320306", + text = "helm_cloth_gilneashat_a_02_tam.m2", + value = "helm_cloth_gilneashat_a_02_tam.m2", + }, + { + fileId = "320307", + text = "helm_cloth_gilneashat_a_02_trf.m2", + value = "helm_cloth_gilneashat_a_02_trf.m2", + }, + { + fileId = "320308", + text = "helm_cloth_gilneashat_a_02_trm.m2", + value = "helm_cloth_gilneashat_a_02_trm.m2", + }, + { + fileId = "404131", + text = "helm_cloth_gilneashat_a_02_wof.m2", + value = "helm_cloth_gilneashat_a_02_wof.m2", + }, + { + fileId = "404132", + text = "helm_cloth_gilneashat_a_02_wom.m2", + value = "helm_cloth_gilneashat_a_02_wom.m2", + }, { fileId = "137805", text = "helm_cloth_holiday_christmas_a_01_bef.m2", @@ -12169,6 +15960,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_holiday_christmas_a_01_trm.m2", value = "helm_cloth_holiday_christmas_a_01_trm.m2", }, + { + fileId = "404133", + text = "helm_cloth_holiday_christmas_a_01_wof.m2", + value = "helm_cloth_holiday_christmas_a_01_wof.m2", + }, + { + fileId = "404134", + text = "helm_cloth_holiday_christmas_a_01_wom.m2", + value = "helm_cloth_holiday_christmas_a_01_wom.m2", + }, { fileId = "137828", text = "helm_cloth_mexico_a_01_bef.m2", @@ -12284,6 +16085,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_mexico_a_01_trm.m2", value = "helm_cloth_mexico_a_01_trm.m2", }, + { + fileId = "454080", + text = "helm_cloth_mexico_a_01_wof.m2", + value = "helm_cloth_mexico_a_01_wof.m2", + }, + { + fileId = "429993", + text = "helm_cloth_mexico_a_01_wom.m2", + value = "helm_cloth_mexico_a_01_wom.m2", + }, { fileId = "237783", text = "helm_cloth_pvpmage_b_01_bef.m2", @@ -12394,6 +16205,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvpmage_b_01_trm.m2", value = "helm_cloth_pvpmage_b_01_trm.m2", }, + { + fileId = "454081", + text = "helm_cloth_pvpmage_b_01_wof.m2", + value = "helm_cloth_pvpmage_b_01_wof.m2", + }, + { + fileId = "432016", + text = "helm_cloth_pvpmage_b_01_wom.m2", + value = "helm_cloth_pvpmage_b_01_wom.m2", + }, { fileId = "255283", text = "helm_cloth_pvpmage_b_02_bef.m2", @@ -12504,6 +16325,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvpmage_b_02_trm.m2", value = "helm_cloth_pvpmage_b_02_trm.m2", }, + { + fileId = "454082", + text = "helm_cloth_pvpmage_b_02_wof.m2", + value = "helm_cloth_pvpmage_b_02_wof.m2", + }, + { + fileId = "432017", + text = "helm_cloth_pvpmage_b_02_wom.m2", + value = "helm_cloth_pvpmage_b_02_wom.m2", + }, { fileId = "305298", text = "helm_cloth_pvpmage_b_03_bef.m2", @@ -12614,6 +16445,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvpmage_b_03_trm.m2", value = "helm_cloth_pvpmage_b_03_trm.m2", }, + { + fileId = "454083", + text = "helm_cloth_pvpmage_b_03_wof.m2", + value = "helm_cloth_pvpmage_b_03_wof.m2", + }, + { + fileId = "432018", + text = "helm_cloth_pvpmage_b_03_wom.m2", + value = "helm_cloth_pvpmage_b_03_wom.m2", + }, { fileId = "343995", text = "helm_cloth_pvpmage_b_04_bef.m2", @@ -12654,6 +16495,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvpmage_b_04_gnm.m2", value = "helm_cloth_pvpmage_b_04_gnm.m2", }, + { + fileId = "454084", + text = "helm_cloth_pvpmage_b_04_gof.m2", + value = "helm_cloth_pvpmage_b_04_gof.m2", + }, + { + fileId = "454085", + text = "helm_cloth_pvpmage_b_04_gom.m2", + value = "helm_cloth_pvpmage_b_04_gom.m2", + }, { fileId = "344003", text = "helm_cloth_pvpmage_b_04_huf.m2", @@ -12714,6 +16565,256 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvpmage_b_04_trm.m2", value = "helm_cloth_pvpmage_b_04_trm.m2", }, + { + fileId = "454086", + text = "helm_cloth_pvpmage_b_04_wof.m2", + value = "helm_cloth_pvpmage_b_04_wof.m2", + }, + { + fileId = "430172", + text = "helm_cloth_pvpmage_b_04_wom.m2", + value = "helm_cloth_pvpmage_b_04_wom.m2", + }, + { + fileId = "426138", + text = "helm_cloth_pvpmage_c_01_bef.m2", + value = "helm_cloth_pvpmage_c_01_bef.m2", + }, + { + fileId = "426139", + text = "helm_cloth_pvpmage_c_01_bem.m2", + value = "helm_cloth_pvpmage_c_01_bem.m2", + }, + { + fileId = "426140", + text = "helm_cloth_pvpmage_c_01_drf.m2", + value = "helm_cloth_pvpmage_c_01_drf.m2", + }, + { + fileId = "426141", + text = "helm_cloth_pvpmage_c_01_drm.m2", + value = "helm_cloth_pvpmage_c_01_drm.m2", + }, + { + fileId = "426142", + text = "helm_cloth_pvpmage_c_01_dwf.m2", + value = "helm_cloth_pvpmage_c_01_dwf.m2", + }, + { + fileId = "426143", + text = "helm_cloth_pvpmage_c_01_dwm.m2", + value = "helm_cloth_pvpmage_c_01_dwm.m2", + }, + { + fileId = "426144", + text = "helm_cloth_pvpmage_c_01_gnf.m2", + value = "helm_cloth_pvpmage_c_01_gnf.m2", + }, + { + fileId = "426145", + text = "helm_cloth_pvpmage_c_01_gnm.m2", + value = "helm_cloth_pvpmage_c_01_gnm.m2", + }, + { + fileId = "426146", + text = "helm_cloth_pvpmage_c_01_gof.m2", + value = "helm_cloth_pvpmage_c_01_gof.m2", + }, + { + fileId = "426147", + text = "helm_cloth_pvpmage_c_01_gom.m2", + value = "helm_cloth_pvpmage_c_01_gom.m2", + }, + { + fileId = "426148", + text = "helm_cloth_pvpmage_c_01_huf.m2", + value = "helm_cloth_pvpmage_c_01_huf.m2", + }, + { + fileId = "426149", + text = "helm_cloth_pvpmage_c_01_hum.m2", + value = "helm_cloth_pvpmage_c_01_hum.m2", + }, + { + fileId = "426150", + text = "helm_cloth_pvpmage_c_01_nif.m2", + value = "helm_cloth_pvpmage_c_01_nif.m2", + }, + { + fileId = "426151", + text = "helm_cloth_pvpmage_c_01_nim.m2", + value = "helm_cloth_pvpmage_c_01_nim.m2", + }, + { + fileId = "426152", + text = "helm_cloth_pvpmage_c_01_orf.m2", + value = "helm_cloth_pvpmage_c_01_orf.m2", + }, + { + fileId = "426153", + text = "helm_cloth_pvpmage_c_01_orm.m2", + value = "helm_cloth_pvpmage_c_01_orm.m2", + }, + { + fileId = "426154", + text = "helm_cloth_pvpmage_c_01_scf.m2", + value = "helm_cloth_pvpmage_c_01_scf.m2", + }, + { + fileId = "426155", + text = "helm_cloth_pvpmage_c_01_scm.m2", + value = "helm_cloth_pvpmage_c_01_scm.m2", + }, + { + fileId = "426156", + text = "helm_cloth_pvpmage_c_01_taf.m2", + value = "helm_cloth_pvpmage_c_01_taf.m2", + }, + { + fileId = "426157", + text = "helm_cloth_pvpmage_c_01_tam.m2", + value = "helm_cloth_pvpmage_c_01_tam.m2", + }, + { + fileId = "426158", + text = "helm_cloth_pvpmage_c_01_trf.m2", + value = "helm_cloth_pvpmage_c_01_trf.m2", + }, + { + fileId = "426159", + text = "helm_cloth_pvpmage_c_01_trm.m2", + value = "helm_cloth_pvpmage_c_01_trm.m2", + }, + { + fileId = "426160", + text = "helm_cloth_pvpmage_c_01_wof.m2", + value = "helm_cloth_pvpmage_c_01_wof.m2", + }, + { + fileId = "426161", + text = "helm_cloth_pvpmage_c_01_wom.m2", + value = "helm_cloth_pvpmage_c_01_wom.m2", + }, + { + fileId = "469010", + text = "helm_cloth_pvpmage_c_02_bef.m2", + value = "helm_cloth_pvpmage_c_02_bef.m2", + }, + { + fileId = "469011", + text = "helm_cloth_pvpmage_c_02_bem.m2", + value = "helm_cloth_pvpmage_c_02_bem.m2", + }, + { + fileId = "469012", + text = "helm_cloth_pvpmage_c_02_drf.m2", + value = "helm_cloth_pvpmage_c_02_drf.m2", + }, + { + fileId = "469013", + text = "helm_cloth_pvpmage_c_02_drm.m2", + value = "helm_cloth_pvpmage_c_02_drm.m2", + }, + { + fileId = "469014", + text = "helm_cloth_pvpmage_c_02_dwf.m2", + value = "helm_cloth_pvpmage_c_02_dwf.m2", + }, + { + fileId = "469015", + text = "helm_cloth_pvpmage_c_02_dwm.m2", + value = "helm_cloth_pvpmage_c_02_dwm.m2", + }, + { + fileId = "469016", + text = "helm_cloth_pvpmage_c_02_gnf.m2", + value = "helm_cloth_pvpmage_c_02_gnf.m2", + }, + { + fileId = "469017", + text = "helm_cloth_pvpmage_c_02_gnm.m2", + value = "helm_cloth_pvpmage_c_02_gnm.m2", + }, + { + fileId = "469018", + text = "helm_cloth_pvpmage_c_02_gof.m2", + value = "helm_cloth_pvpmage_c_02_gof.m2", + }, + { + fileId = "469019", + text = "helm_cloth_pvpmage_c_02_gom.m2", + value = "helm_cloth_pvpmage_c_02_gom.m2", + }, + { + fileId = "469020", + text = "helm_cloth_pvpmage_c_02_huf.m2", + value = "helm_cloth_pvpmage_c_02_huf.m2", + }, + { + fileId = "469021", + text = "helm_cloth_pvpmage_c_02_hum.m2", + value = "helm_cloth_pvpmage_c_02_hum.m2", + }, + { + fileId = "469022", + text = "helm_cloth_pvpmage_c_02_nif.m2", + value = "helm_cloth_pvpmage_c_02_nif.m2", + }, + { + fileId = "469023", + text = "helm_cloth_pvpmage_c_02_nim.m2", + value = "helm_cloth_pvpmage_c_02_nim.m2", + }, + { + fileId = "469024", + text = "helm_cloth_pvpmage_c_02_orf.m2", + value = "helm_cloth_pvpmage_c_02_orf.m2", + }, + { + fileId = "469025", + text = "helm_cloth_pvpmage_c_02_orm.m2", + value = "helm_cloth_pvpmage_c_02_orm.m2", + }, + { + fileId = "469026", + text = "helm_cloth_pvpmage_c_02_scf.m2", + value = "helm_cloth_pvpmage_c_02_scf.m2", + }, + { + fileId = "469027", + text = "helm_cloth_pvpmage_c_02_scm.m2", + value = "helm_cloth_pvpmage_c_02_scm.m2", + }, + { + fileId = "469028", + text = "helm_cloth_pvpmage_c_02_taf.m2", + value = "helm_cloth_pvpmage_c_02_taf.m2", + }, + { + fileId = "469029", + text = "helm_cloth_pvpmage_c_02_tam.m2", + value = "helm_cloth_pvpmage_c_02_tam.m2", + }, + { + fileId = "469030", + text = "helm_cloth_pvpmage_c_02_trf.m2", + value = "helm_cloth_pvpmage_c_02_trf.m2", + }, + { + fileId = "469031", + text = "helm_cloth_pvpmage_c_02_trm.m2", + value = "helm_cloth_pvpmage_c_02_trm.m2", + }, + { + fileId = "469032", + text = "helm_cloth_pvpmage_c_02_wof.m2", + value = "helm_cloth_pvpmage_c_02_wof.m2", + }, + { + fileId = "469033", + text = "helm_cloth_pvpmage_c_02_wom.m2", + value = "helm_cloth_pvpmage_c_02_wom.m2", + }, { fileId = "237809", text = "helm_cloth_pvppriest_b_01_bef.m2", @@ -12824,6 +16925,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvppriest_b_01_trm.m2", value = "helm_cloth_pvppriest_b_01_trm.m2", }, + { + fileId = "454486", + text = "helm_cloth_pvppriest_b_01_wof.m2", + value = "helm_cloth_pvppriest_b_01_wof.m2", + }, + { + fileId = "429994", + text = "helm_cloth_pvppriest_b_01_wom.m2", + value = "helm_cloth_pvppriest_b_01_wom.m2", + }, { fileId = "293933", text = "helm_cloth_pvppriest_b_02_bef.m2", @@ -12934,6 +17045,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvppriest_b_02_trm.m2", value = "helm_cloth_pvppriest_b_02_trm.m2", }, + { + fileId = "404448", + text = "helm_cloth_pvppriest_b_02_wof.m2", + value = "helm_cloth_pvppriest_b_02_wof.m2", + }, + { + fileId = "404449", + text = "helm_cloth_pvppriest_b_02_wom.m2", + value = "helm_cloth_pvppriest_b_02_wom.m2", + }, { fileId = "306488", text = "helm_cloth_pvppriest_b_03_bef.m2", @@ -13044,6 +17165,16 @@ WeakAuras.ModelPaths = { text = "helm_cloth_pvppriest_b_03_trm.m2", value = "helm_cloth_pvppriest_b_03_trm.m2", }, + { + fileId = "404450", + text = "helm_cloth_pvppriest_b_03_wof.m2", + value = "helm_cloth_pvppriest_b_03_wof.m2", + }, + { + fileId = "404451", + text = "helm_cloth_pvppriest_b_03_wom.m2", + value = "helm_cloth_pvppriest_b_03_wom.m2", + }, { fileId = "347743", text = "helm_cloth_pvppriest_b_04_bef.m2", @@ -13155,38582 +17286,56238 @@ WeakAuras.ModelPaths = { value = "helm_cloth_pvppriest_b_04_trm.m2", }, { - fileId = "137850", - text = "helm_cloth_sunfest_a_01_bef.m2", - value = "helm_cloth_sunfest_a_01_bef.m2", + fileId = "454087", + text = "helm_cloth_pvppriest_b_04_wof.m2", + value = "helm_cloth_pvppriest_b_04_wof.m2", }, { - fileId = "137851", - text = "helm_cloth_sunfest_a_01_bem.m2", - value = "helm_cloth_sunfest_a_01_bem.m2", + fileId = "411685", + text = "helm_cloth_pvppriest_b_04_wom.m2", + value = "helm_cloth_pvppriest_b_04_wom.m2", }, { - fileId = "137852", - text = "helm_cloth_sunfest_a_01_drf.m2", - value = "helm_cloth_sunfest_a_01_drf.m2", + fileId = "413706", + text = "helm_cloth_pvppriest_c_01_bef.m2", + value = "helm_cloth_pvppriest_c_01_bef.m2", }, { - fileId = "137853", - text = "helm_cloth_sunfest_a_01_drm.m2", - value = "helm_cloth_sunfest_a_01_drm.m2", + fileId = "413707", + text = "helm_cloth_pvppriest_c_01_bem.m2", + value = "helm_cloth_pvppriest_c_01_bem.m2", }, { - fileId = "137854", - text = "helm_cloth_sunfest_a_01_dwf.m2", - value = "helm_cloth_sunfest_a_01_dwf.m2", + fileId = "413708", + text = "helm_cloth_pvppriest_c_01_drf.m2", + value = "helm_cloth_pvppriest_c_01_drf.m2", }, { - fileId = "137855", - text = "helm_cloth_sunfest_a_01_dwm.m2", - value = "helm_cloth_sunfest_a_01_dwm.m2", + fileId = "413709", + text = "helm_cloth_pvppriest_c_01_drm.m2", + value = "helm_cloth_pvppriest_c_01_drm.m2", }, { - fileId = "137856", - text = "helm_cloth_sunfest_a_01_gnf.m2", - value = "helm_cloth_sunfest_a_01_gnf.m2", + fileId = "413710", + text = "helm_cloth_pvppriest_c_01_dwf.m2", + value = "helm_cloth_pvppriest_c_01_dwf.m2", }, { - fileId = "137857", - text = "helm_cloth_sunfest_a_01_gnm.m2", - value = "helm_cloth_sunfest_a_01_gnm.m2", + fileId = "413711", + text = "helm_cloth_pvppriest_c_01_dwm.m2", + value = "helm_cloth_pvppriest_c_01_dwm.m2", }, { - fileId = "137858", - text = "helm_cloth_sunfest_a_01_gof.m2", - value = "helm_cloth_sunfest_a_01_gof.m2", + fileId = "413712", + text = "helm_cloth_pvppriest_c_01_gnf.m2", + value = "helm_cloth_pvppriest_c_01_gnf.m2", }, { - fileId = "137859", - text = "helm_cloth_sunfest_a_01_gom.m2", - value = "helm_cloth_sunfest_a_01_gom.m2", + fileId = "413713", + text = "helm_cloth_pvppriest_c_01_gnm.m2", + value = "helm_cloth_pvppriest_c_01_gnm.m2", }, { - fileId = "137860", - text = "helm_cloth_sunfest_a_01_huf.m2", - value = "helm_cloth_sunfest_a_01_huf.m2", + fileId = "413714", + text = "helm_cloth_pvppriest_c_01_gof.m2", + value = "helm_cloth_pvppriest_c_01_gof.m2", }, { - fileId = "137861", - text = "helm_cloth_sunfest_a_01_hum.m2", - value = "helm_cloth_sunfest_a_01_hum.m2", + fileId = "413715", + text = "helm_cloth_pvppriest_c_01_gom.m2", + value = "helm_cloth_pvppriest_c_01_gom.m2", }, { - fileId = "137862", - text = "helm_cloth_sunfest_a_01_nif.m2", - value = "helm_cloth_sunfest_a_01_nif.m2", + fileId = "413716", + text = "helm_cloth_pvppriest_c_01_huf.m2", + value = "helm_cloth_pvppriest_c_01_huf.m2", }, { - fileId = "137863", - text = "helm_cloth_sunfest_a_01_nim.m2", - value = "helm_cloth_sunfest_a_01_nim.m2", + fileId = "413554", + text = "helm_cloth_pvppriest_c_01_hum.m2", + value = "helm_cloth_pvppriest_c_01_hum.m2", }, { - fileId = "137864", - text = "helm_cloth_sunfest_a_01_orf.m2", - value = "helm_cloth_sunfest_a_01_orf.m2", + fileId = "413717", + text = "helm_cloth_pvppriest_c_01_nif.m2", + value = "helm_cloth_pvppriest_c_01_nif.m2", }, { - fileId = "137865", - text = "helm_cloth_sunfest_a_01_orm.m2", - value = "helm_cloth_sunfest_a_01_orm.m2", + fileId = "413718", + text = "helm_cloth_pvppriest_c_01_nim.m2", + value = "helm_cloth_pvppriest_c_01_nim.m2", }, { - fileId = "137866", - text = "helm_cloth_sunfest_a_01_scf.m2", - value = "helm_cloth_sunfest_a_01_scf.m2", + fileId = "413719", + text = "helm_cloth_pvppriest_c_01_orf.m2", + value = "helm_cloth_pvppriest_c_01_orf.m2", }, { - fileId = "137867", - text = "helm_cloth_sunfest_a_01_scm.m2", - value = "helm_cloth_sunfest_a_01_scm.m2", + fileId = "413720", + text = "helm_cloth_pvppriest_c_01_orm.m2", + value = "helm_cloth_pvppriest_c_01_orm.m2", }, { - fileId = "137868", - text = "helm_cloth_sunfest_a_01_taf.m2", - value = "helm_cloth_sunfest_a_01_taf.m2", + fileId = "413721", + text = "helm_cloth_pvppriest_c_01_scf.m2", + value = "helm_cloth_pvppriest_c_01_scf.m2", }, { - fileId = "137869", - text = "helm_cloth_sunfest_a_01_tam.m2", - value = "helm_cloth_sunfest_a_01_tam.m2", + fileId = "413722", + text = "helm_cloth_pvppriest_c_01_scm.m2", + value = "helm_cloth_pvppriest_c_01_scm.m2", }, { - fileId = "137870", - text = "helm_cloth_sunfest_a_01_trf.m2", - value = "helm_cloth_sunfest_a_01_trf.m2", + fileId = "413723", + text = "helm_cloth_pvppriest_c_01_taf.m2", + value = "helm_cloth_pvppriest_c_01_taf.m2", }, { - fileId = "137871", - text = "helm_cloth_sunfest_a_01_trm.m2", - value = "helm_cloth_sunfest_a_01_trm.m2", + fileId = "413724", + text = "helm_cloth_pvppriest_c_01_tam.m2", + value = "helm_cloth_pvppriest_c_01_tam.m2", }, { - fileId = "237834", - text = "helm_draenei_giftofnaaru_01_drm.m2", - value = "helm_draenei_giftofnaaru_01_drm.m2", + fileId = "413725", + text = "helm_cloth_pvppriest_c_01_trf.m2", + value = "helm_cloth_pvppriest_c_01_trf.m2", }, { - fileId = "237835", - text = "helm_draenei_giftofnaaru_01_hum.m2", - value = "helm_draenei_giftofnaaru_01_hum.m2", + fileId = "413726", + text = "helm_cloth_pvppriest_c_01_trm.m2", + value = "helm_cloth_pvppriest_c_01_trm.m2", }, { - fileId = "137874", - text = "helm_engi_b_01_bef.m2", - value = "helm_engi_b_01_bef.m2", + fileId = "413727", + text = "helm_cloth_pvppriest_c_01_wof.m2", + value = "helm_cloth_pvppriest_c_01_wof.m2", }, { - fileId = "137875", - text = "helm_engi_b_01_bem.m2", - value = "helm_engi_b_01_bem.m2", + fileId = "413728", + text = "helm_cloth_pvppriest_c_01_wom.m2", + value = "helm_cloth_pvppriest_c_01_wom.m2", }, { - fileId = "137876", - text = "helm_engi_b_01_drf.m2", - value = "helm_engi_b_01_drf.m2", + fileId = "469176", + text = "helm_cloth_pvppriest_c_02_bef.m2", + value = "helm_cloth_pvppriest_c_02_bef.m2", }, { - fileId = "137877", - text = "helm_engi_b_01_drm.m2", - value = "helm_engi_b_01_drm.m2", + fileId = "469177", + text = "helm_cloth_pvppriest_c_02_bem.m2", + value = "helm_cloth_pvppriest_c_02_bem.m2", }, { - fileId = "137878", - text = "helm_engi_b_01_dwf.m2", - value = "helm_engi_b_01_dwf.m2", + fileId = "469178", + text = "helm_cloth_pvppriest_c_02_drf.m2", + value = "helm_cloth_pvppriest_c_02_drf.m2", }, { - fileId = "137879", - text = "helm_engi_b_01_dwm.m2", - value = "helm_engi_b_01_dwm.m2", + fileId = "469179", + text = "helm_cloth_pvppriest_c_02_drm.m2", + value = "helm_cloth_pvppriest_c_02_drm.m2", }, { - fileId = "137880", - text = "helm_engi_b_01_gnf.m2", - value = "helm_engi_b_01_gnf.m2", + fileId = "469180", + text = "helm_cloth_pvppriest_c_02_dwf.m2", + value = "helm_cloth_pvppriest_c_02_dwf.m2", }, { - fileId = "137881", - text = "helm_engi_b_01_gnm.m2", - value = "helm_engi_b_01_gnm.m2", + fileId = "469181", + text = "helm_cloth_pvppriest_c_02_dwm.m2", + value = "helm_cloth_pvppriest_c_02_dwm.m2", }, { - fileId = "137882", - text = "helm_engi_b_01_gof.m2", - value = "helm_engi_b_01_gof.m2", + fileId = "469182", + text = "helm_cloth_pvppriest_c_02_gnf.m2", + value = "helm_cloth_pvppriest_c_02_gnf.m2", }, { - fileId = "137883", - text = "helm_engi_b_01_gom.m2", - value = "helm_engi_b_01_gom.m2", + fileId = "469183", + text = "helm_cloth_pvppriest_c_02_gnm.m2", + value = "helm_cloth_pvppriest_c_02_gnm.m2", }, { - fileId = "137884", - text = "helm_engi_b_01_huf.m2", - value = "helm_engi_b_01_huf.m2", + fileId = "469184", + text = "helm_cloth_pvppriest_c_02_gof.m2", + value = "helm_cloth_pvppriest_c_02_gof.m2", }, { - fileId = "137885", - text = "helm_engi_b_01_hum.m2", - value = "helm_engi_b_01_hum.m2", + fileId = "469185", + text = "helm_cloth_pvppriest_c_02_gom.m2", + value = "helm_cloth_pvppriest_c_02_gom.m2", }, { - fileId = "137886", - text = "helm_engi_b_01_nif.m2", - value = "helm_engi_b_01_nif.m2", + fileId = "469186", + text = "helm_cloth_pvppriest_c_02_huf.m2", + value = "helm_cloth_pvppriest_c_02_huf.m2", }, { - fileId = "137887", - text = "helm_engi_b_01_nim.m2", - value = "helm_engi_b_01_nim.m2", + fileId = "469187", + text = "helm_cloth_pvppriest_c_02_hum.m2", + value = "helm_cloth_pvppriest_c_02_hum.m2", }, { - fileId = "137888", - text = "helm_engi_b_01_orf.m2", - value = "helm_engi_b_01_orf.m2", + fileId = "469188", + text = "helm_cloth_pvppriest_c_02_nif.m2", + value = "helm_cloth_pvppriest_c_02_nif.m2", }, { - fileId = "137889", - text = "helm_engi_b_01_orm.m2", - value = "helm_engi_b_01_orm.m2", + fileId = "469189", + text = "helm_cloth_pvppriest_c_02_nim.m2", + value = "helm_cloth_pvppriest_c_02_nim.m2", }, { - fileId = "137890", - text = "helm_engi_b_01_scf.m2", - value = "helm_engi_b_01_scf.m2", + fileId = "469190", + text = "helm_cloth_pvppriest_c_02_orf.m2", + value = "helm_cloth_pvppriest_c_02_orf.m2", }, { - fileId = "137891", - text = "helm_engi_b_01_scm.m2", - value = "helm_engi_b_01_scm.m2", + fileId = "469191", + text = "helm_cloth_pvppriest_c_02_orm.m2", + value = "helm_cloth_pvppriest_c_02_orm.m2", }, { - fileId = "137892", - text = "helm_engi_b_01_taf.m2", - value = "helm_engi_b_01_taf.m2", + fileId = "469192", + text = "helm_cloth_pvppriest_c_02_scf.m2", + value = "helm_cloth_pvppriest_c_02_scf.m2", }, { - fileId = "137893", - text = "helm_engi_b_01_tam.m2", - value = "helm_engi_b_01_tam.m2", + fileId = "469193", + text = "helm_cloth_pvppriest_c_02_scm.m2", + value = "helm_cloth_pvppriest_c_02_scm.m2", }, { - fileId = "137894", - text = "helm_engi_b_01_trf.m2", - value = "helm_engi_b_01_trf.m2", + fileId = "469194", + text = "helm_cloth_pvppriest_c_02_taf.m2", + value = "helm_cloth_pvppriest_c_02_taf.m2", }, { - fileId = "137895", - text = "helm_engi_b_01_trm.m2", - value = "helm_engi_b_01_trm.m2", + fileId = "469195", + text = "helm_cloth_pvppriest_c_02_tam.m2", + value = "helm_cloth_pvppriest_c_02_tam.m2", }, { - fileId = "137897", - text = "helm_engi_b_02_bef.m2", - value = "helm_engi_b_02_bef.m2", + fileId = "469196", + text = "helm_cloth_pvppriest_c_02_trf.m2", + value = "helm_cloth_pvppriest_c_02_trf.m2", }, { - fileId = "137898", - text = "helm_engi_b_02_bem.m2", - value = "helm_engi_b_02_bem.m2", + fileId = "469197", + text = "helm_cloth_pvppriest_c_02_trm.m2", + value = "helm_cloth_pvppriest_c_02_trm.m2", }, { - fileId = "137899", - text = "helm_engi_b_02_drf.m2", - value = "helm_engi_b_02_drf.m2", + fileId = "469198", + text = "helm_cloth_pvppriest_c_02_wof.m2", + value = "helm_cloth_pvppriest_c_02_wof.m2", }, { - fileId = "137900", - text = "helm_engi_b_02_drm.m2", - value = "helm_engi_b_02_drm.m2", + fileId = "469199", + text = "helm_cloth_pvppriest_c_02_wom.m2", + value = "helm_cloth_pvppriest_c_02_wom.m2", }, { - fileId = "137901", - text = "helm_engi_b_02_dwf.m2", - value = "helm_engi_b_02_dwf.m2", + fileId = "366996", + text = "helm_cloth_pvpwarlock_c_01_bef.m2", + value = "helm_cloth_pvpwarlock_c_01_bef.m2", }, { - fileId = "137902", - text = "helm_engi_b_02_dwm.m2", - value = "helm_engi_b_02_dwm.m2", + fileId = "366997", + text = "helm_cloth_pvpwarlock_c_01_bem.m2", + value = "helm_cloth_pvpwarlock_c_01_bem.m2", }, { - fileId = "137903", - text = "helm_engi_b_02_gnf.m2", - value = "helm_engi_b_02_gnf.m2", + fileId = "366998", + text = "helm_cloth_pvpwarlock_c_01_drf.m2", + value = "helm_cloth_pvpwarlock_c_01_drf.m2", }, { - fileId = "137904", - text = "helm_engi_b_02_gnm.m2", - value = "helm_engi_b_02_gnm.m2", + fileId = "366999", + text = "helm_cloth_pvpwarlock_c_01_drm.m2", + value = "helm_cloth_pvpwarlock_c_01_drm.m2", }, { - fileId = "137905", - text = "helm_engi_b_02_gof.m2", - value = "helm_engi_b_02_gof.m2", + fileId = "367000", + text = "helm_cloth_pvpwarlock_c_01_dwf.m2", + value = "helm_cloth_pvpwarlock_c_01_dwf.m2", }, { - fileId = "137906", - text = "helm_engi_b_02_gom.m2", - value = "helm_engi_b_02_gom.m2", + fileId = "367001", + text = "helm_cloth_pvpwarlock_c_01_dwm.m2", + value = "helm_cloth_pvpwarlock_c_01_dwm.m2", }, { - fileId = "137907", - text = "helm_engi_b_02_huf.m2", - value = "helm_engi_b_02_huf.m2", + fileId = "367002", + text = "helm_cloth_pvpwarlock_c_01_gnf.m2", + value = "helm_cloth_pvpwarlock_c_01_gnf.m2", }, { - fileId = "137908", - text = "helm_engi_b_02_hum.m2", - value = "helm_engi_b_02_hum.m2", + fileId = "367003", + text = "helm_cloth_pvpwarlock_c_01_gnm.m2", + value = "helm_cloth_pvpwarlock_c_01_gnm.m2", }, { - fileId = "137909", - text = "helm_engi_b_02_nif.m2", - value = "helm_engi_b_02_nif.m2", + fileId = "367004", + text = "helm_cloth_pvpwarlock_c_01_gof.m2", + value = "helm_cloth_pvpwarlock_c_01_gof.m2", }, { - fileId = "137910", - text = "helm_engi_b_02_nim.m2", - value = "helm_engi_b_02_nim.m2", + fileId = "367005", + text = "helm_cloth_pvpwarlock_c_01_gom.m2", + value = "helm_cloth_pvpwarlock_c_01_gom.m2", }, { - fileId = "137911", - text = "helm_engi_b_02_orf.m2", - value = "helm_engi_b_02_orf.m2", + fileId = "367006", + text = "helm_cloth_pvpwarlock_c_01_huf.m2", + value = "helm_cloth_pvpwarlock_c_01_huf.m2", }, { - fileId = "137912", - text = "helm_engi_b_02_orm.m2", - value = "helm_engi_b_02_orm.m2", + fileId = "366943", + text = "helm_cloth_pvpwarlock_c_01_hum.m2", + value = "helm_cloth_pvpwarlock_c_01_hum.m2", }, { - fileId = "137913", - text = "helm_engi_b_02_scf.m2", - value = "helm_engi_b_02_scf.m2", + fileId = "367007", + text = "helm_cloth_pvpwarlock_c_01_nif.m2", + value = "helm_cloth_pvpwarlock_c_01_nif.m2", }, { - fileId = "137914", - text = "helm_engi_b_02_scm.m2", - value = "helm_engi_b_02_scm.m2", + fileId = "367008", + text = "helm_cloth_pvpwarlock_c_01_nim.m2", + value = "helm_cloth_pvpwarlock_c_01_nim.m2", }, { - fileId = "137915", - text = "helm_engi_b_02_taf.m2", - value = "helm_engi_b_02_taf.m2", + fileId = "367009", + text = "helm_cloth_pvpwarlock_c_01_orf.m2", + value = "helm_cloth_pvpwarlock_c_01_orf.m2", }, { - fileId = "137916", - text = "helm_engi_b_02_tam.m2", - value = "helm_engi_b_02_tam.m2", + fileId = "367010", + text = "helm_cloth_pvpwarlock_c_01_orm.m2", + value = "helm_cloth_pvpwarlock_c_01_orm.m2", }, { - fileId = "137917", - text = "helm_engi_b_02_trf.m2", - value = "helm_engi_b_02_trf.m2", + fileId = "367011", + text = "helm_cloth_pvpwarlock_c_01_scf.m2", + value = "helm_cloth_pvpwarlock_c_01_scf.m2", }, { - fileId = "137918", - text = "helm_engi_b_02_trm.m2", - value = "helm_engi_b_02_trm.m2", + fileId = "367012", + text = "helm_cloth_pvpwarlock_c_01_scm.m2", + value = "helm_cloth_pvpwarlock_c_01_scm.m2", }, { - fileId = "2199344", - text = "helm_engi_c_01diver.m2", - value = "helm_engi_c_01diver.m2", + fileId = "367013", + text = "helm_cloth_pvpwarlock_c_01_taf.m2", + value = "helm_cloth_pvpwarlock_c_01_taf.m2", }, { - fileId = "137921", - text = "helm_engi_c_01diver_bef.m2", - value = "helm_engi_c_01diver_bef.m2", + fileId = "367014", + text = "helm_cloth_pvpwarlock_c_01_tam.m2", + value = "helm_cloth_pvpwarlock_c_01_tam.m2", }, { - fileId = "137922", - text = "helm_engi_c_01diver_bem.m2", - value = "helm_engi_c_01diver_bem.m2", + fileId = "367015", + text = "helm_cloth_pvpwarlock_c_01_trf.m2", + value = "helm_cloth_pvpwarlock_c_01_trf.m2", }, { - fileId = "137923", - text = "helm_engi_c_01diver_drf.m2", - value = "helm_engi_c_01diver_drf.m2", + fileId = "367016", + text = "helm_cloth_pvpwarlock_c_01_trm.m2", + value = "helm_cloth_pvpwarlock_c_01_trm.m2", }, { - fileId = "137924", - text = "helm_engi_c_01diver_drm.m2", - value = "helm_engi_c_01diver_drm.m2", + fileId = "454088", + text = "helm_cloth_pvpwarlock_c_01_wof.m2", + value = "helm_cloth_pvpwarlock_c_01_wof.m2", }, { - fileId = "137925", - text = "helm_engi_c_01diver_dwf.m2", - value = "helm_engi_c_01diver_dwf.m2", + fileId = "411686", + text = "helm_cloth_pvpwarlock_c_01_wom.m2", + value = "helm_cloth_pvpwarlock_c_01_wom.m2", }, { - fileId = "137926", - text = "helm_engi_c_01diver_dwm.m2", - value = "helm_engi_c_01diver_dwm.m2", + fileId = "469200", + text = "helm_cloth_pvpwarlock_c_02_bef.m2", + value = "helm_cloth_pvpwarlock_c_02_bef.m2", }, { - fileId = "137927", - text = "helm_engi_c_01diver_gnf.m2", - value = "helm_engi_c_01diver_gnf.m2", + fileId = "469201", + text = "helm_cloth_pvpwarlock_c_02_bem.m2", + value = "helm_cloth_pvpwarlock_c_02_bem.m2", }, { - fileId = "137928", - text = "helm_engi_c_01diver_gnm.m2", - value = "helm_engi_c_01diver_gnm.m2", + fileId = "469202", + text = "helm_cloth_pvpwarlock_c_02_drf.m2", + value = "helm_cloth_pvpwarlock_c_02_drf.m2", }, { - fileId = "137929", - text = "helm_engi_c_01diver_gof.m2", - value = "helm_engi_c_01diver_gof.m2", + fileId = "469203", + text = "helm_cloth_pvpwarlock_c_02_drm.m2", + value = "helm_cloth_pvpwarlock_c_02_drm.m2", }, { - fileId = "137930", - text = "helm_engi_c_01diver_gom.m2", - value = "helm_engi_c_01diver_gom.m2", + fileId = "469204", + text = "helm_cloth_pvpwarlock_c_02_dwf.m2", + value = "helm_cloth_pvpwarlock_c_02_dwf.m2", }, { - fileId = "137931", - text = "helm_engi_c_01diver_huf.m2", - value = "helm_engi_c_01diver_huf.m2", + fileId = "469205", + text = "helm_cloth_pvpwarlock_c_02_dwm.m2", + value = "helm_cloth_pvpwarlock_c_02_dwm.m2", }, { - fileId = "137932", - text = "helm_engi_c_01diver_hum.m2", - value = "helm_engi_c_01diver_hum.m2", + fileId = "469206", + text = "helm_cloth_pvpwarlock_c_02_gnf.m2", + value = "helm_cloth_pvpwarlock_c_02_gnf.m2", }, { - fileId = "137933", - text = "helm_engi_c_01diver_nif.m2", - value = "helm_engi_c_01diver_nif.m2", + fileId = "469207", + text = "helm_cloth_pvpwarlock_c_02_gnm.m2", + value = "helm_cloth_pvpwarlock_c_02_gnm.m2", }, { - fileId = "137934", - text = "helm_engi_c_01diver_nim.m2", - value = "helm_engi_c_01diver_nim.m2", + fileId = "469208", + text = "helm_cloth_pvpwarlock_c_02_gof.m2", + value = "helm_cloth_pvpwarlock_c_02_gof.m2", }, { - fileId = "137935", - text = "helm_engi_c_01diver_orf.m2", - value = "helm_engi_c_01diver_orf.m2", + fileId = "469209", + text = "helm_cloth_pvpwarlock_c_02_gom.m2", + value = "helm_cloth_pvpwarlock_c_02_gom.m2", }, { - fileId = "137936", - text = "helm_engi_c_01diver_orm.m2", - value = "helm_engi_c_01diver_orm.m2", + fileId = "469210", + text = "helm_cloth_pvpwarlock_c_02_huf.m2", + value = "helm_cloth_pvpwarlock_c_02_huf.m2", }, { - fileId = "137937", - text = "helm_engi_c_01diver_scf.m2", - value = "helm_engi_c_01diver_scf.m2", + fileId = "469211", + text = "helm_cloth_pvpwarlock_c_02_hum.m2", + value = "helm_cloth_pvpwarlock_c_02_hum.m2", }, { - fileId = "137938", - text = "helm_engi_c_01diver_scm.m2", - value = "helm_engi_c_01diver_scm.m2", + fileId = "469212", + text = "helm_cloth_pvpwarlock_c_02_nif.m2", + value = "helm_cloth_pvpwarlock_c_02_nif.m2", }, { - fileId = "137939", - text = "helm_engi_c_01diver_taf.m2", - value = "helm_engi_c_01diver_taf.m2", + fileId = "469213", + text = "helm_cloth_pvpwarlock_c_02_nim.m2", + value = "helm_cloth_pvpwarlock_c_02_nim.m2", }, { - fileId = "137940", - text = "helm_engi_c_01diver_tam.m2", - value = "helm_engi_c_01diver_tam.m2", + fileId = "469214", + text = "helm_cloth_pvpwarlock_c_02_orf.m2", + value = "helm_cloth_pvpwarlock_c_02_orf.m2", }, { - fileId = "137941", - text = "helm_engi_c_01diver_trf.m2", - value = "helm_engi_c_01diver_trf.m2", + fileId = "469215", + text = "helm_cloth_pvpwarlock_c_02_orm.m2", + value = "helm_cloth_pvpwarlock_c_02_orm.m2", }, { - fileId = "137942", - text = "helm_engi_c_01diver_trm.m2", - value = "helm_engi_c_01diver_trm.m2", + fileId = "469216", + text = "helm_cloth_pvpwarlock_c_02_scf.m2", + value = "helm_cloth_pvpwarlock_c_02_scf.m2", }, { - fileId = "137946", - text = "helm_engi_c_02space_bef.m2", - value = "helm_engi_c_02space_bef.m2", + fileId = "469217", + text = "helm_cloth_pvpwarlock_c_02_scm.m2", + value = "helm_cloth_pvpwarlock_c_02_scm.m2", }, { - fileId = "137947", - text = "helm_engi_c_02space_bem.m2", - value = "helm_engi_c_02space_bem.m2", + fileId = "469218", + text = "helm_cloth_pvpwarlock_c_02_taf.m2", + value = "helm_cloth_pvpwarlock_c_02_taf.m2", }, { - fileId = "137948", - text = "helm_engi_c_02space_drf.m2", - value = "helm_engi_c_02space_drf.m2", + fileId = "469219", + text = "helm_cloth_pvpwarlock_c_02_tam.m2", + value = "helm_cloth_pvpwarlock_c_02_tam.m2", }, { - fileId = "137949", - text = "helm_engi_c_02space_drm.m2", - value = "helm_engi_c_02space_drm.m2", + fileId = "469220", + text = "helm_cloth_pvpwarlock_c_02_trf.m2", + value = "helm_cloth_pvpwarlock_c_02_trf.m2", }, { - fileId = "137950", - text = "helm_engi_c_02space_dwf.m2", - value = "helm_engi_c_02space_dwf.m2", + fileId = "469221", + text = "helm_cloth_pvpwarlock_c_02_trm.m2", + value = "helm_cloth_pvpwarlock_c_02_trm.m2", }, { - fileId = "137951", - text = "helm_engi_c_02space_dwm.m2", - value = "helm_engi_c_02space_dwm.m2", + fileId = "469222", + text = "helm_cloth_pvpwarlock_c_02_wof.m2", + value = "helm_cloth_pvpwarlock_c_02_wof.m2", }, { - fileId = "137952", - text = "helm_engi_c_02space_gnf.m2", - value = "helm_engi_c_02space_gnf.m2", + fileId = "469223", + text = "helm_cloth_pvpwarlock_c_02_wom.m2", + value = "helm_cloth_pvpwarlock_c_02_wom.m2", }, { - fileId = "137953", - text = "helm_engi_c_02space_gnm.m2", - value = "helm_engi_c_02space_gnm.m2", + fileId = "465117", + text = "helm_cloth_raidpriest_i_01_bef.m2", + value = "helm_cloth_raidpriest_i_01_bef.m2", }, { - fileId = "137954", - text = "helm_engi_c_02space_gof.m2", - value = "helm_engi_c_02space_gof.m2", + fileId = "465118", + text = "helm_cloth_raidpriest_i_01_bem.m2", + value = "helm_cloth_raidpriest_i_01_bem.m2", }, { - fileId = "137955", - text = "helm_engi_c_02space_gom.m2", - value = "helm_engi_c_02space_gom.m2", + fileId = "465119", + text = "helm_cloth_raidpriest_i_01_drf.m2", + value = "helm_cloth_raidpriest_i_01_drf.m2", }, { - fileId = "137956", - text = "helm_engi_c_02space_huf.m2", - value = "helm_engi_c_02space_huf.m2", + fileId = "465120", + text = "helm_cloth_raidpriest_i_01_drm.m2", + value = "helm_cloth_raidpriest_i_01_drm.m2", }, { - fileId = "137957", - text = "helm_engi_c_02space_hum.m2", - value = "helm_engi_c_02space_hum.m2", + fileId = "465121", + text = "helm_cloth_raidpriest_i_01_dwf.m2", + value = "helm_cloth_raidpriest_i_01_dwf.m2", }, { - fileId = "137958", - text = "helm_engi_c_02space_nif.m2", - value = "helm_engi_c_02space_nif.m2", + fileId = "465122", + text = "helm_cloth_raidpriest_i_01_dwm.m2", + value = "helm_cloth_raidpriest_i_01_dwm.m2", }, { - fileId = "137959", - text = "helm_engi_c_02space_nim.m2", - value = "helm_engi_c_02space_nim.m2", + fileId = "465123", + text = "helm_cloth_raidpriest_i_01_gnf.m2", + value = "helm_cloth_raidpriest_i_01_gnf.m2", }, { - fileId = "137960", - text = "helm_engi_c_02space_orf.m2", - value = "helm_engi_c_02space_orf.m2", + fileId = "465124", + text = "helm_cloth_raidpriest_i_01_gnm.m2", + value = "helm_cloth_raidpriest_i_01_gnm.m2", }, { - fileId = "137961", - text = "helm_engi_c_02space_orm.m2", - value = "helm_engi_c_02space_orm.m2", + fileId = "465125", + text = "helm_cloth_raidpriest_i_01_gof.m2", + value = "helm_cloth_raidpriest_i_01_gof.m2", }, { - fileId = "137962", - text = "helm_engi_c_02space_scf.m2", - value = "helm_engi_c_02space_scf.m2", + fileId = "465126", + text = "helm_cloth_raidpriest_i_01_gom.m2", + value = "helm_cloth_raidpriest_i_01_gom.m2", }, { - fileId = "137963", - text = "helm_engi_c_02space_scm.m2", - value = "helm_engi_c_02space_scm.m2", + fileId = "465127", + text = "helm_cloth_raidpriest_i_01_huf.m2", + value = "helm_cloth_raidpriest_i_01_huf.m2", }, { - fileId = "137964", - text = "helm_engi_c_02space_taf.m2", - value = "helm_engi_c_02space_taf.m2", + fileId = "465128", + text = "helm_cloth_raidpriest_i_01_hum.m2", + value = "helm_cloth_raidpriest_i_01_hum.m2", }, { - fileId = "137965", - text = "helm_engi_c_02space_tam.m2", - value = "helm_engi_c_02space_tam.m2", + fileId = "465129", + text = "helm_cloth_raidpriest_i_01_nif.m2", + value = "helm_cloth_raidpriest_i_01_nif.m2", }, { - fileId = "137966", - text = "helm_engi_c_02space_trf.m2", - value = "helm_engi_c_02space_trf.m2", + fileId = "465130", + text = "helm_cloth_raidpriest_i_01_nim.m2", + value = "helm_cloth_raidpriest_i_01_nim.m2", }, { - fileId = "137967", - text = "helm_engi_c_02space_trm.m2", - value = "helm_engi_c_02space_trm.m2", + fileId = "465131", + text = "helm_cloth_raidpriest_i_01_orf.m2", + value = "helm_cloth_raidpriest_i_01_orf.m2", }, { - fileId = "137968", - text = "helm_eyepatch_a_01_bef.m2", - value = "helm_eyepatch_a_01_bef.m2", + fileId = "465132", + text = "helm_cloth_raidpriest_i_01_orm.m2", + value = "helm_cloth_raidpriest_i_01_orm.m2", }, { - fileId = "137969", - text = "helm_eyepatch_a_01_bem.m2", - value = "helm_eyepatch_a_01_bem.m2", + fileId = "465133", + text = "helm_cloth_raidpriest_i_01_scf.m2", + value = "helm_cloth_raidpriest_i_01_scf.m2", }, { - fileId = "137970", - text = "helm_eyepatch_a_01_drf.m2", - value = "helm_eyepatch_a_01_drf.m2", + fileId = "465134", + text = "helm_cloth_raidpriest_i_01_scm.m2", + value = "helm_cloth_raidpriest_i_01_scm.m2", }, { - fileId = "137971", - text = "helm_eyepatch_a_01_drm.m2", - value = "helm_eyepatch_a_01_drm.m2", + fileId = "465135", + text = "helm_cloth_raidpriest_i_01_taf.m2", + value = "helm_cloth_raidpriest_i_01_taf.m2", }, { - fileId = "137972", - text = "helm_eyepatch_a_01_dwf.m2", - value = "helm_eyepatch_a_01_dwf.m2", + fileId = "465136", + text = "helm_cloth_raidpriest_i_01_tam.m2", + value = "helm_cloth_raidpriest_i_01_tam.m2", }, { - fileId = "137973", - text = "helm_eyepatch_a_01_dwm.m2", - value = "helm_eyepatch_a_01_dwm.m2", + fileId = "465137", + text = "helm_cloth_raidpriest_i_01_trf.m2", + value = "helm_cloth_raidpriest_i_01_trf.m2", }, { - fileId = "137974", - text = "helm_eyepatch_a_01_gnf.m2", - value = "helm_eyepatch_a_01_gnf.m2", + fileId = "465138", + text = "helm_cloth_raidpriest_i_01_trm.m2", + value = "helm_cloth_raidpriest_i_01_trm.m2", }, { - fileId = "137975", - text = "helm_eyepatch_a_01_gnm.m2", - value = "helm_eyepatch_a_01_gnm.m2", + fileId = "465139", + text = "helm_cloth_raidpriest_i_01_wof.m2", + value = "helm_cloth_raidpriest_i_01_wof.m2", }, { - fileId = "137976", - text = "helm_eyepatch_a_01_gof.m2", - value = "helm_eyepatch_a_01_gof.m2", + fileId = "465140", + text = "helm_cloth_raidpriest_i_01_wom.m2", + value = "helm_cloth_raidpriest_i_01_wom.m2", }, { - fileId = "137977", - text = "helm_eyepatch_a_01_gom.m2", - value = "helm_eyepatch_a_01_gom.m2", + fileId = "462544", + text = "helm_cloth_raidwarlock_i_01_bef.m2", + value = "helm_cloth_raidwarlock_i_01_bef.m2", }, { - fileId = "137978", - text = "helm_eyepatch_a_01_huf.m2", - value = "helm_eyepatch_a_01_huf.m2", + fileId = "462545", + text = "helm_cloth_raidwarlock_i_01_bem.m2", + value = "helm_cloth_raidwarlock_i_01_bem.m2", }, { - fileId = "137979", - text = "helm_eyepatch_a_01_hum.m2", - value = "helm_eyepatch_a_01_hum.m2", + fileId = "462546", + text = "helm_cloth_raidwarlock_i_01_drf.m2", + value = "helm_cloth_raidwarlock_i_01_drf.m2", }, { - fileId = "137980", - text = "helm_eyepatch_a_01_nif.m2", - value = "helm_eyepatch_a_01_nif.m2", + fileId = "462547", + text = "helm_cloth_raidwarlock_i_01_drm.m2", + value = "helm_cloth_raidwarlock_i_01_drm.m2", }, { - fileId = "137981", - text = "helm_eyepatch_a_01_nim.m2", - value = "helm_eyepatch_a_01_nim.m2", + fileId = "462548", + text = "helm_cloth_raidwarlock_i_01_dwf.m2", + value = "helm_cloth_raidwarlock_i_01_dwf.m2", }, { - fileId = "137982", - text = "helm_eyepatch_a_01_orf.m2", - value = "helm_eyepatch_a_01_orf.m2", + fileId = "462549", + text = "helm_cloth_raidwarlock_i_01_dwm.m2", + value = "helm_cloth_raidwarlock_i_01_dwm.m2", }, { - fileId = "137983", - text = "helm_eyepatch_a_01_orm.m2", - value = "helm_eyepatch_a_01_orm.m2", + fileId = "462550", + text = "helm_cloth_raidwarlock_i_01_gnf.m2", + value = "helm_cloth_raidwarlock_i_01_gnf.m2", }, { - fileId = "137984", - text = "helm_eyepatch_a_01_scf.m2", - value = "helm_eyepatch_a_01_scf.m2", + fileId = "462551", + text = "helm_cloth_raidwarlock_i_01_gnm.m2", + value = "helm_cloth_raidwarlock_i_01_gnm.m2", }, { - fileId = "137985", - text = "helm_eyepatch_a_01_scm.m2", - value = "helm_eyepatch_a_01_scm.m2", + fileId = "462552", + text = "helm_cloth_raidwarlock_i_01_gof.m2", + value = "helm_cloth_raidwarlock_i_01_gof.m2", }, { - fileId = "137986", - text = "helm_eyepatch_a_01_taf.m2", - value = "helm_eyepatch_a_01_taf.m2", + fileId = "462553", + text = "helm_cloth_raidwarlock_i_01_gom.m2", + value = "helm_cloth_raidwarlock_i_01_gom.m2", }, { - fileId = "137987", - text = "helm_eyepatch_a_01_tam.m2", - value = "helm_eyepatch_a_01_tam.m2", + fileId = "462554", + text = "helm_cloth_raidwarlock_i_01_huf.m2", + value = "helm_cloth_raidwarlock_i_01_huf.m2", }, { - fileId = "137988", - text = "helm_eyepatch_a_01_trf.m2", - value = "helm_eyepatch_a_01_trf.m2", + fileId = "462555", + text = "helm_cloth_raidwarlock_i_01_hum.m2", + value = "helm_cloth_raidwarlock_i_01_hum.m2", }, { - fileId = "137989", - text = "helm_eyepatch_a_01_trm.m2", - value = "helm_eyepatch_a_01_trm.m2", + fileId = "462556", + text = "helm_cloth_raidwarlock_i_01_nif.m2", + value = "helm_cloth_raidwarlock_i_01_nif.m2", }, { - fileId = "137996", - text = "helm_eyepatch_a_02_bem.m2", - value = "helm_eyepatch_a_02_bem.m2", + fileId = "462557", + text = "helm_cloth_raidwarlock_i_01_nim.m2", + value = "helm_cloth_raidwarlock_i_01_nim.m2", }, { - fileId = "137998", - text = "helm_goggles_b_01_bef.m2", - value = "helm_goggles_b_01_bef.m2", + fileId = "462558", + text = "helm_cloth_raidwarlock_i_01_orf.m2", + value = "helm_cloth_raidwarlock_i_01_orf.m2", }, { - fileId = "137999", - text = "helm_goggles_b_01_bem.m2", - value = "helm_goggles_b_01_bem.m2", + fileId = "462559", + text = "helm_cloth_raidwarlock_i_01_orm.m2", + value = "helm_cloth_raidwarlock_i_01_orm.m2", }, { - fileId = "138000", - text = "helm_goggles_b_01_drf.m2", - value = "helm_goggles_b_01_drf.m2", + fileId = "462560", + text = "helm_cloth_raidwarlock_i_01_scf.m2", + value = "helm_cloth_raidwarlock_i_01_scf.m2", }, { - fileId = "138001", - text = "helm_goggles_b_01_drm.m2", - value = "helm_goggles_b_01_drm.m2", + fileId = "462561", + text = "helm_cloth_raidwarlock_i_01_scm.m2", + value = "helm_cloth_raidwarlock_i_01_scm.m2", }, { - fileId = "138002", - text = "helm_goggles_b_01_dwf.m2", - value = "helm_goggles_b_01_dwf.m2", + fileId = "462562", + text = "helm_cloth_raidwarlock_i_01_taf.m2", + value = "helm_cloth_raidwarlock_i_01_taf.m2", }, { - fileId = "138003", - text = "helm_goggles_b_01_dwm.m2", - value = "helm_goggles_b_01_dwm.m2", + fileId = "462563", + text = "helm_cloth_raidwarlock_i_01_tam.m2", + value = "helm_cloth_raidwarlock_i_01_tam.m2", }, { - fileId = "138004", - text = "helm_goggles_b_01_gnf.m2", - value = "helm_goggles_b_01_gnf.m2", + fileId = "462564", + text = "helm_cloth_raidwarlock_i_01_trf.m2", + value = "helm_cloth_raidwarlock_i_01_trf.m2", }, { - fileId = "138005", - text = "helm_goggles_b_01_gnm.m2", - value = "helm_goggles_b_01_gnm.m2", + fileId = "462565", + text = "helm_cloth_raidwarlock_i_01_trm.m2", + value = "helm_cloth_raidwarlock_i_01_trm.m2", }, { - fileId = "138006", - text = "helm_goggles_b_01_gom.m2", - value = "helm_goggles_b_01_gom.m2", + fileId = "462566", + text = "helm_cloth_raidwarlock_i_01_wof.m2", + value = "helm_cloth_raidwarlock_i_01_wof.m2", }, { - fileId = "138007", - text = "helm_goggles_b_01_huf.m2", - value = "helm_goggles_b_01_huf.m2", + fileId = "462567", + text = "helm_cloth_raidwarlock_i_01_wom.m2", + value = "helm_cloth_raidwarlock_i_01_wom.m2", }, { - fileId = "138008", - text = "helm_goggles_b_01_hum.m2", - value = "helm_goggles_b_01_hum.m2", + fileId = "137850", + text = "helm_cloth_sunfest_a_01_bef.m2", + value = "helm_cloth_sunfest_a_01_bef.m2", }, { - fileId = "138009", - text = "helm_goggles_b_01_nif.m2", - value = "helm_goggles_b_01_nif.m2", + fileId = "137851", + text = "helm_cloth_sunfest_a_01_bem.m2", + value = "helm_cloth_sunfest_a_01_bem.m2", }, { - fileId = "138010", - text = "helm_goggles_b_01_nim.m2", - value = "helm_goggles_b_01_nim.m2", + fileId = "137852", + text = "helm_cloth_sunfest_a_01_drf.m2", + value = "helm_cloth_sunfest_a_01_drf.m2", }, { - fileId = "138011", - text = "helm_goggles_b_01_orf.m2", - value = "helm_goggles_b_01_orf.m2", + fileId = "137853", + text = "helm_cloth_sunfest_a_01_drm.m2", + value = "helm_cloth_sunfest_a_01_drm.m2", }, { - fileId = "138012", - text = "helm_goggles_b_01_orm.m2", - value = "helm_goggles_b_01_orm.m2", + fileId = "137854", + text = "helm_cloth_sunfest_a_01_dwf.m2", + value = "helm_cloth_sunfest_a_01_dwf.m2", }, { - fileId = "138013", - text = "helm_goggles_b_01_scf.m2", - value = "helm_goggles_b_01_scf.m2", + fileId = "137855", + text = "helm_cloth_sunfest_a_01_dwm.m2", + value = "helm_cloth_sunfest_a_01_dwm.m2", }, { - fileId = "138014", - text = "helm_goggles_b_01_scm.m2", - value = "helm_goggles_b_01_scm.m2", + fileId = "137856", + text = "helm_cloth_sunfest_a_01_gnf.m2", + value = "helm_cloth_sunfest_a_01_gnf.m2", }, { - fileId = "138015", - text = "helm_goggles_b_01_taf.m2", - value = "helm_goggles_b_01_taf.m2", + fileId = "137857", + text = "helm_cloth_sunfest_a_01_gnm.m2", + value = "helm_cloth_sunfest_a_01_gnm.m2", }, { - fileId = "138016", - text = "helm_goggles_b_01_tam.m2", - value = "helm_goggles_b_01_tam.m2", + fileId = "137858", + text = "helm_cloth_sunfest_a_01_gof.m2", + value = "helm_cloth_sunfest_a_01_gof.m2", }, { - fileId = "138017", - text = "helm_goggles_b_01_trf.m2", - value = "helm_goggles_b_01_trf.m2", + fileId = "137859", + text = "helm_cloth_sunfest_a_01_gom.m2", + value = "helm_cloth_sunfest_a_01_gom.m2", }, { - fileId = "138018", - text = "helm_goggles_b_01_trm.m2", - value = "helm_goggles_b_01_trm.m2", + fileId = "137860", + text = "helm_cloth_sunfest_a_01_huf.m2", + value = "helm_cloth_sunfest_a_01_huf.m2", }, { - fileId = "138028", - text = "helm_goggles_b_02engi_bef.m2", - value = "helm_goggles_b_02engi_bef.m2", + fileId = "137861", + text = "helm_cloth_sunfest_a_01_hum.m2", + value = "helm_cloth_sunfest_a_01_hum.m2", }, { - fileId = "138029", - text = "helm_goggles_b_02engi_bem.m2", - value = "helm_goggles_b_02engi_bem.m2", + fileId = "137862", + text = "helm_cloth_sunfest_a_01_nif.m2", + value = "helm_cloth_sunfest_a_01_nif.m2", }, { - fileId = "138030", - text = "helm_goggles_b_02engi_drf.m2", - value = "helm_goggles_b_02engi_drf.m2", + fileId = "137863", + text = "helm_cloth_sunfest_a_01_nim.m2", + value = "helm_cloth_sunfest_a_01_nim.m2", }, { - fileId = "138031", - text = "helm_goggles_b_02engi_drm.m2", - value = "helm_goggles_b_02engi_drm.m2", + fileId = "137864", + text = "helm_cloth_sunfest_a_01_orf.m2", + value = "helm_cloth_sunfest_a_01_orf.m2", }, { - fileId = "138032", - text = "helm_goggles_b_02engi_dwf.m2", - value = "helm_goggles_b_02engi_dwf.m2", + fileId = "137865", + text = "helm_cloth_sunfest_a_01_orm.m2", + value = "helm_cloth_sunfest_a_01_orm.m2", }, { - fileId = "138033", - text = "helm_goggles_b_02engi_dwm.m2", - value = "helm_goggles_b_02engi_dwm.m2", + fileId = "137866", + text = "helm_cloth_sunfest_a_01_scf.m2", + value = "helm_cloth_sunfest_a_01_scf.m2", }, { - fileId = "138034", - text = "helm_goggles_b_02engi_gnf.m2", - value = "helm_goggles_b_02engi_gnf.m2", + fileId = "137867", + text = "helm_cloth_sunfest_a_01_scm.m2", + value = "helm_cloth_sunfest_a_01_scm.m2", }, { - fileId = "138035", - text = "helm_goggles_b_02engi_gnm.m2", - value = "helm_goggles_b_02engi_gnm.m2", + fileId = "137868", + text = "helm_cloth_sunfest_a_01_taf.m2", + value = "helm_cloth_sunfest_a_01_taf.m2", }, { - fileId = "138036", - text = "helm_goggles_b_02engi_gof.m2", - value = "helm_goggles_b_02engi_gof.m2", + fileId = "137869", + text = "helm_cloth_sunfest_a_01_tam.m2", + value = "helm_cloth_sunfest_a_01_tam.m2", }, { - fileId = "138037", - text = "helm_goggles_b_02engi_gom.m2", - value = "helm_goggles_b_02engi_gom.m2", + fileId = "137870", + text = "helm_cloth_sunfest_a_01_trf.m2", + value = "helm_cloth_sunfest_a_01_trf.m2", }, { - fileId = "138038", - text = "helm_goggles_b_02engi_huf.m2", - value = "helm_goggles_b_02engi_huf.m2", + fileId = "137871", + text = "helm_cloth_sunfest_a_01_trm.m2", + value = "helm_cloth_sunfest_a_01_trm.m2", }, { - fileId = "138039", - text = "helm_goggles_b_02engi_hum.m2", - value = "helm_goggles_b_02engi_hum.m2", + fileId = "454089", + text = "helm_cloth_sunfest_a_01_wof.m2", + value = "helm_cloth_sunfest_a_01_wof.m2", }, { - fileId = "138040", - text = "helm_goggles_b_02engi_nif.m2", - value = "helm_goggles_b_02engi_nif.m2", + fileId = "429995", + text = "helm_cloth_sunfest_a_01_wom.m2", + value = "helm_cloth_sunfest_a_01_wom.m2", }, { - fileId = "138041", - text = "helm_goggles_b_02engi_nim.m2", - value = "helm_goggles_b_02engi_nim.m2", + fileId = "426163", + text = "helm_cloth_turban_a_01_hum.m2", + value = "helm_cloth_turban_a_01_hum.m2", }, { - fileId = "138042", - text = "helm_goggles_b_02engi_orf.m2", - value = "helm_goggles_b_02engi_orf.m2", + fileId = "426164", + text = "helm_cloth_turban_a_02_hum.m2", + value = "helm_cloth_turban_a_02_hum.m2", }, { - fileId = "138043", - text = "helm_goggles_b_02engi_orm.m2", - value = "helm_goggles_b_02engi_orm.m2", + fileId = "1315497", + text = "helm_cloth_uisuit_a_01_bef.m2", + value = "helm_cloth_uisuit_a_01_bef.m2", }, { - fileId = "138044", - text = "helm_goggles_b_02engi_scf.m2", - value = "helm_goggles_b_02engi_scf.m2", + fileId = "1315498", + text = "helm_cloth_uisuit_a_01_bem.m2", + value = "helm_cloth_uisuit_a_01_bem.m2", }, { - fileId = "138045", - text = "helm_goggles_b_02engi_scm.m2", - value = "helm_goggles_b_02engi_scm.m2", + fileId = "1315499", + text = "helm_cloth_uisuit_a_01_drf.m2", + value = "helm_cloth_uisuit_a_01_drf.m2", }, { - fileId = "138046", - text = "helm_goggles_b_02engi_taf.m2", - value = "helm_goggles_b_02engi_taf.m2", + fileId = "1315500", + text = "helm_cloth_uisuit_a_01_drm.m2", + value = "helm_cloth_uisuit_a_01_drm.m2", }, { - fileId = "138047", - text = "helm_goggles_b_02engi_tam.m2", - value = "helm_goggles_b_02engi_tam.m2", + fileId = "1315501", + text = "helm_cloth_uisuit_a_01_dwf.m2", + value = "helm_cloth_uisuit_a_01_dwf.m2", }, { - fileId = "138048", - text = "helm_goggles_b_02engi_trf.m2", - value = "helm_goggles_b_02engi_trf.m2", + fileId = "1315502", + text = "helm_cloth_uisuit_a_01_dwm.m2", + value = "helm_cloth_uisuit_a_01_dwm.m2", }, { - fileId = "138049", - text = "helm_goggles_b_02engi_trm.m2", - value = "helm_goggles_b_02engi_trm.m2", + fileId = "1315503", + text = "helm_cloth_uisuit_a_01_gnf.m2", + value = "helm_cloth_uisuit_a_01_gnf.m2", }, { - fileId = "138051", - text = "helm_goggles_b_03_bef.m2", - value = "helm_goggles_b_03_bef.m2", + fileId = "1315504", + text = "helm_cloth_uisuit_a_01_gnm.m2", + value = "helm_cloth_uisuit_a_01_gnm.m2", }, { - fileId = "138052", - text = "helm_goggles_b_03_bem.m2", - value = "helm_goggles_b_03_bem.m2", + fileId = "1315505", + text = "helm_cloth_uisuit_a_01_gof.m2", + value = "helm_cloth_uisuit_a_01_gof.m2", }, { - fileId = "138053", - text = "helm_goggles_b_03_drf.m2", - value = "helm_goggles_b_03_drf.m2", + fileId = "1315506", + text = "helm_cloth_uisuit_a_01_gom.m2", + value = "helm_cloth_uisuit_a_01_gom.m2", }, { - fileId = "138054", - text = "helm_goggles_b_03_drm.m2", - value = "helm_goggles_b_03_drm.m2", + fileId = "1315507", + text = "helm_cloth_uisuit_a_01_huf.m2", + value = "helm_cloth_uisuit_a_01_huf.m2", }, { - fileId = "138055", - text = "helm_goggles_b_03_dwf.m2", - value = "helm_goggles_b_03_dwf.m2", + fileId = "1315508", + text = "helm_cloth_uisuit_a_01_hum.m2", + value = "helm_cloth_uisuit_a_01_hum.m2", }, { - fileId = "138056", - text = "helm_goggles_b_03_dwm.m2", - value = "helm_goggles_b_03_dwm.m2", + fileId = "1315509", + text = "helm_cloth_uisuit_a_01_nif.m2", + value = "helm_cloth_uisuit_a_01_nif.m2", }, { - fileId = "138057", - text = "helm_goggles_b_03_gnf.m2", - value = "helm_goggles_b_03_gnf.m2", + fileId = "1315510", + text = "helm_cloth_uisuit_a_01_nim.m2", + value = "helm_cloth_uisuit_a_01_nim.m2", }, { - fileId = "138058", - text = "helm_goggles_b_03_gnm.m2", - value = "helm_goggles_b_03_gnm.m2", + fileId = "1315511", + text = "helm_cloth_uisuit_a_01_orf.m2", + value = "helm_cloth_uisuit_a_01_orf.m2", }, { - fileId = "138059", - text = "helm_goggles_b_03_gof.m2", - value = "helm_goggles_b_03_gof.m2", + fileId = "1315512", + text = "helm_cloth_uisuit_a_01_orm.m2", + value = "helm_cloth_uisuit_a_01_orm.m2", }, { - fileId = "138060", - text = "helm_goggles_b_03_gom.m2", - value = "helm_goggles_b_03_gom.m2", + fileId = "1315515", + text = "helm_cloth_uisuit_a_01_scf.m2", + value = "helm_cloth_uisuit_a_01_scf.m2", }, { - fileId = "138061", - text = "helm_goggles_b_03_huf.m2", - value = "helm_goggles_b_03_huf.m2", + fileId = "1315516", + text = "helm_cloth_uisuit_a_01_scm.m2", + value = "helm_cloth_uisuit_a_01_scm.m2", }, { - fileId = "138062", - text = "helm_goggles_b_03_hum.m2", - value = "helm_goggles_b_03_hum.m2", + fileId = "1315518", + text = "helm_cloth_uisuit_a_01_taf.m2", + value = "helm_cloth_uisuit_a_01_taf.m2", }, { - fileId = "138063", - text = "helm_goggles_b_03_nif.m2", - value = "helm_goggles_b_03_nif.m2", + fileId = "1315520", + text = "helm_cloth_uisuit_a_01_tam.m2", + value = "helm_cloth_uisuit_a_01_tam.m2", }, { - fileId = "138064", - text = "helm_goggles_b_03_nim.m2", - value = "helm_goggles_b_03_nim.m2", + fileId = "1315521", + text = "helm_cloth_uisuit_a_01_trf.m2", + value = "helm_cloth_uisuit_a_01_trf.m2", }, { - fileId = "138065", - text = "helm_goggles_b_03_orf.m2", - value = "helm_goggles_b_03_orf.m2", + fileId = "1315523", + text = "helm_cloth_uisuit_a_01_trm.m2", + value = "helm_cloth_uisuit_a_01_trm.m2", }, { - fileId = "138066", - text = "helm_goggles_b_03_orm.m2", - value = "helm_goggles_b_03_orm.m2", + fileId = "1315524", + text = "helm_cloth_uisuit_a_01_wof.m2", + value = "helm_cloth_uisuit_a_01_wof.m2", }, { - fileId = "138067", - text = "helm_goggles_b_03_scf.m2", - value = "helm_goggles_b_03_scf.m2", + fileId = "1315526", + text = "helm_cloth_uisuit_a_01_wom.m2", + value = "helm_cloth_uisuit_a_01_wom.m2", }, { - fileId = "138068", - text = "helm_goggles_b_03_scm.m2", - value = "helm_goggles_b_03_scm.m2", + fileId = "237834", + text = "helm_draenei_giftofnaaru_01_drm.m2", + value = "helm_draenei_giftofnaaru_01_drm.m2", }, { - fileId = "138069", - text = "helm_goggles_b_03_taf.m2", - value = "helm_goggles_b_03_taf.m2", + fileId = "237835", + text = "helm_draenei_giftofnaaru_01_hum.m2", + value = "helm_draenei_giftofnaaru_01_hum.m2", }, { - fileId = "138070", - text = "helm_goggles_b_03_tam.m2", - value = "helm_goggles_b_03_tam.m2", + fileId = "137874", + text = "helm_engi_b_01_bef.m2", + value = "helm_engi_b_01_bef.m2", }, { - fileId = "138071", - text = "helm_goggles_b_03_trf.m2", - value = "helm_goggles_b_03_trf.m2", + fileId = "137875", + text = "helm_engi_b_01_bem.m2", + value = "helm_engi_b_01_bem.m2", }, { - fileId = "138072", - text = "helm_goggles_b_03_trm.m2", - value = "helm_goggles_b_03_trm.m2", + fileId = "137876", + text = "helm_engi_b_01_drf.m2", + value = "helm_engi_b_01_drf.m2", }, { - fileId = "138074", - text = "helm_goggles_b_04.m2", - value = "helm_goggles_b_04.m2", + fileId = "137877", + text = "helm_engi_b_01_drm.m2", + value = "helm_engi_b_01_drm.m2", }, { - fileId = "138075", - text = "helm_goggles_b_04_dwf.m2", - value = "helm_goggles_b_04_dwf.m2", + fileId = "137878", + text = "helm_engi_b_01_dwf.m2", + value = "helm_engi_b_01_dwf.m2", }, { - fileId = "138076", - text = "helm_goggles_b_04_dwm.m2", - value = "helm_goggles_b_04_dwm.m2", + fileId = "137879", + text = "helm_engi_b_01_dwm.m2", + value = "helm_engi_b_01_dwm.m2", }, { - fileId = "138078", - text = "helm_goggles_c_01_bef.m2", - value = "helm_goggles_c_01_bef.m2", + fileId = "137880", + text = "helm_engi_b_01_gnf.m2", + value = "helm_engi_b_01_gnf.m2", }, { - fileId = "138079", - text = "helm_goggles_c_01_bem.m2", - value = "helm_goggles_c_01_bem.m2", + fileId = "137881", + text = "helm_engi_b_01_gnm.m2", + value = "helm_engi_b_01_gnm.m2", }, { - fileId = "138080", - text = "helm_goggles_c_01_drf.m2", - value = "helm_goggles_c_01_drf.m2", + fileId = "137882", + text = "helm_engi_b_01_gof.m2", + value = "helm_engi_b_01_gof.m2", }, { - fileId = "138081", - text = "helm_goggles_c_01_drm.m2", - value = "helm_goggles_c_01_drm.m2", + fileId = "137883", + text = "helm_engi_b_01_gom.m2", + value = "helm_engi_b_01_gom.m2", }, { - fileId = "138082", - text = "helm_goggles_c_01_dwf.m2", - value = "helm_goggles_c_01_dwf.m2", + fileId = "137884", + text = "helm_engi_b_01_huf.m2", + value = "helm_engi_b_01_huf.m2", }, { - fileId = "138083", - text = "helm_goggles_c_01_dwm.m2", - value = "helm_goggles_c_01_dwm.m2", + fileId = "137885", + text = "helm_engi_b_01_hum.m2", + value = "helm_engi_b_01_hum.m2", }, { - fileId = "138084", - text = "helm_goggles_c_01_gnf.m2", - value = "helm_goggles_c_01_gnf.m2", + fileId = "137886", + text = "helm_engi_b_01_nif.m2", + value = "helm_engi_b_01_nif.m2", }, { - fileId = "138085", - text = "helm_goggles_c_01_gnm.m2", - value = "helm_goggles_c_01_gnm.m2", + fileId = "137887", + text = "helm_engi_b_01_nim.m2", + value = "helm_engi_b_01_nim.m2", }, { - fileId = "138086", - text = "helm_goggles_c_01_gof.m2", - value = "helm_goggles_c_01_gof.m2", + fileId = "137888", + text = "helm_engi_b_01_orf.m2", + value = "helm_engi_b_01_orf.m2", }, { - fileId = "138087", - text = "helm_goggles_c_01_gom.m2", - value = "helm_goggles_c_01_gom.m2", + fileId = "137889", + text = "helm_engi_b_01_orm.m2", + value = "helm_engi_b_01_orm.m2", }, { - fileId = "138088", - text = "helm_goggles_c_01_huf.m2", - value = "helm_goggles_c_01_huf.m2", + fileId = "137890", + text = "helm_engi_b_01_scf.m2", + value = "helm_engi_b_01_scf.m2", }, { - fileId = "138089", - text = "helm_goggles_c_01_hum.m2", - value = "helm_goggles_c_01_hum.m2", + fileId = "137891", + text = "helm_engi_b_01_scm.m2", + value = "helm_engi_b_01_scm.m2", }, { - fileId = "138090", - text = "helm_goggles_c_01_nif.m2", - value = "helm_goggles_c_01_nif.m2", + fileId = "137892", + text = "helm_engi_b_01_taf.m2", + value = "helm_engi_b_01_taf.m2", }, { - fileId = "138091", - text = "helm_goggles_c_01_nim.m2", - value = "helm_goggles_c_01_nim.m2", + fileId = "137893", + text = "helm_engi_b_01_tam.m2", + value = "helm_engi_b_01_tam.m2", }, { - fileId = "138092", - text = "helm_goggles_c_01_orf.m2", - value = "helm_goggles_c_01_orf.m2", + fileId = "137894", + text = "helm_engi_b_01_trf.m2", + value = "helm_engi_b_01_trf.m2", }, { - fileId = "138093", - text = "helm_goggles_c_01_orm.m2", - value = "helm_goggles_c_01_orm.m2", + fileId = "137895", + text = "helm_engi_b_01_trm.m2", + value = "helm_engi_b_01_trm.m2", }, { - fileId = "138094", - text = "helm_goggles_c_01_scf.m2", - value = "helm_goggles_c_01_scf.m2", + fileId = "454090", + text = "helm_engi_b_01_wof.m2", + value = "helm_engi_b_01_wof.m2", }, { - fileId = "138095", - text = "helm_goggles_c_01_scm.m2", - value = "helm_goggles_c_01_scm.m2", + fileId = "424559", + text = "helm_engi_b_01_wom.m2", + value = "helm_engi_b_01_wom.m2", }, { - fileId = "138096", - text = "helm_goggles_c_01_taf.m2", - value = "helm_goggles_c_01_taf.m2", + fileId = "137897", + text = "helm_engi_b_02_bef.m2", + value = "helm_engi_b_02_bef.m2", }, { - fileId = "138097", - text = "helm_goggles_c_01_tam.m2", - value = "helm_goggles_c_01_tam.m2", + fileId = "137898", + text = "helm_engi_b_02_bem.m2", + value = "helm_engi_b_02_bem.m2", }, { - fileId = "138098", - text = "helm_goggles_c_01_trf.m2", - value = "helm_goggles_c_01_trf.m2", + fileId = "137899", + text = "helm_engi_b_02_drf.m2", + value = "helm_engi_b_02_drf.m2", }, { - fileId = "138099", - text = "helm_goggles_c_01_trm.m2", - value = "helm_goggles_c_01_trm.m2", + fileId = "137900", + text = "helm_engi_b_02_drm.m2", + value = "helm_engi_b_02_drm.m2", }, { - fileId = "138104", - text = "helm_goggles_d_01_bef.m2", - value = "helm_goggles_d_01_bef.m2", + fileId = "137901", + text = "helm_engi_b_02_dwf.m2", + value = "helm_engi_b_02_dwf.m2", }, { - fileId = "138105", - text = "helm_goggles_d_01_bem.m2", - value = "helm_goggles_d_01_bem.m2", + fileId = "137902", + text = "helm_engi_b_02_dwm.m2", + value = "helm_engi_b_02_dwm.m2", }, { - fileId = "138106", - text = "helm_goggles_d_01_drf.m2", - value = "helm_goggles_d_01_drf.m2", + fileId = "137903", + text = "helm_engi_b_02_gnf.m2", + value = "helm_engi_b_02_gnf.m2", }, { - fileId = "138107", - text = "helm_goggles_d_01_drm.m2", - value = "helm_goggles_d_01_drm.m2", + fileId = "137904", + text = "helm_engi_b_02_gnm.m2", + value = "helm_engi_b_02_gnm.m2", }, { - fileId = "138108", - text = "helm_goggles_d_01_dwf.m2", - value = "helm_goggles_d_01_dwf.m2", + fileId = "137905", + text = "helm_engi_b_02_gof.m2", + value = "helm_engi_b_02_gof.m2", }, { - fileId = "138109", - text = "helm_goggles_d_01_dwm.m2", - value = "helm_goggles_d_01_dwm.m2", + fileId = "137906", + text = "helm_engi_b_02_gom.m2", + value = "helm_engi_b_02_gom.m2", }, { - fileId = "138110", - text = "helm_goggles_d_01_gnf.m2", - value = "helm_goggles_d_01_gnf.m2", + fileId = "137907", + text = "helm_engi_b_02_huf.m2", + value = "helm_engi_b_02_huf.m2", }, { - fileId = "138111", - text = "helm_goggles_d_01_gnm.m2", - value = "helm_goggles_d_01_gnm.m2", + fileId = "137908", + text = "helm_engi_b_02_hum.m2", + value = "helm_engi_b_02_hum.m2", }, { - fileId = "138112", - text = "helm_goggles_d_01_gof.m2", - value = "helm_goggles_d_01_gof.m2", + fileId = "137909", + text = "helm_engi_b_02_nif.m2", + value = "helm_engi_b_02_nif.m2", }, { - fileId = "138113", - text = "helm_goggles_d_01_gom.m2", - value = "helm_goggles_d_01_gom.m2", + fileId = "137910", + text = "helm_engi_b_02_nim.m2", + value = "helm_engi_b_02_nim.m2", }, { - fileId = "138114", - text = "helm_goggles_d_01_huf.m2", - value = "helm_goggles_d_01_huf.m2", + fileId = "137911", + text = "helm_engi_b_02_orf.m2", + value = "helm_engi_b_02_orf.m2", }, { - fileId = "138115", - text = "helm_goggles_d_01_hum.m2", - value = "helm_goggles_d_01_hum.m2", + fileId = "137912", + text = "helm_engi_b_02_orm.m2", + value = "helm_engi_b_02_orm.m2", }, { - fileId = "138116", - text = "helm_goggles_d_01_nif.m2", - value = "helm_goggles_d_01_nif.m2", + fileId = "137913", + text = "helm_engi_b_02_scf.m2", + value = "helm_engi_b_02_scf.m2", }, { - fileId = "138117", - text = "helm_goggles_d_01_nim.m2", - value = "helm_goggles_d_01_nim.m2", + fileId = "137914", + text = "helm_engi_b_02_scm.m2", + value = "helm_engi_b_02_scm.m2", }, { - fileId = "138118", - text = "helm_goggles_d_01_orf.m2", - value = "helm_goggles_d_01_orf.m2", + fileId = "137915", + text = "helm_engi_b_02_taf.m2", + value = "helm_engi_b_02_taf.m2", }, { - fileId = "138119", - text = "helm_goggles_d_01_orm.m2", - value = "helm_goggles_d_01_orm.m2", + fileId = "137916", + text = "helm_engi_b_02_tam.m2", + value = "helm_engi_b_02_tam.m2", }, { - fileId = "138120", - text = "helm_goggles_d_01_scf.m2", - value = "helm_goggles_d_01_scf.m2", + fileId = "137917", + text = "helm_engi_b_02_trf.m2", + value = "helm_engi_b_02_trf.m2", }, { - fileId = "138121", - text = "helm_goggles_d_01_scm.m2", - value = "helm_goggles_d_01_scm.m2", + fileId = "137918", + text = "helm_engi_b_02_trm.m2", + value = "helm_engi_b_02_trm.m2", }, { - fileId = "138122", - text = "helm_goggles_d_01_taf.m2", - value = "helm_goggles_d_01_taf.m2", + fileId = "454091", + text = "helm_engi_b_02_wof.m2", + value = "helm_engi_b_02_wof.m2", }, { - fileId = "138123", - text = "helm_goggles_d_01_tam.m2", - value = "helm_goggles_d_01_tam.m2", + fileId = "454092", + text = "helm_engi_b_02_wom.m2", + value = "helm_engi_b_02_wom.m2", }, { - fileId = "138124", - text = "helm_goggles_d_01_trf.m2", - value = "helm_goggles_d_01_trf.m2", + fileId = "2199344", + text = "helm_engi_c_01diver.m2", + value = "helm_engi_c_01diver.m2", }, { - fileId = "138125", - text = "helm_goggles_d_01_trm.m2", - value = "helm_goggles_d_01_trm.m2", + fileId = "137921", + text = "helm_engi_c_01diver_bef.m2", + value = "helm_engi_c_01diver_bef.m2", }, { - fileId = "237836", - text = "helm_goggles_xray_a_01_bef.m2", - value = "helm_goggles_xray_a_01_bef.m2", + fileId = "137922", + text = "helm_engi_c_01diver_bem.m2", + value = "helm_engi_c_01diver_bem.m2", }, { - fileId = "237837", - text = "helm_goggles_xray_a_01_bem.m2", - value = "helm_goggles_xray_a_01_bem.m2", + fileId = "137923", + text = "helm_engi_c_01diver_drf.m2", + value = "helm_engi_c_01diver_drf.m2", }, { - fileId = "237838", - text = "helm_goggles_xray_a_01_drf.m2", - value = "helm_goggles_xray_a_01_drf.m2", + fileId = "137924", + text = "helm_engi_c_01diver_drm.m2", + value = "helm_engi_c_01diver_drm.m2", }, { - fileId = "237839", - text = "helm_goggles_xray_a_01_drm.m2", - value = "helm_goggles_xray_a_01_drm.m2", + fileId = "137925", + text = "helm_engi_c_01diver_dwf.m2", + value = "helm_engi_c_01diver_dwf.m2", }, { - fileId = "237840", - text = "helm_goggles_xray_a_01_dwf.m2", - value = "helm_goggles_xray_a_01_dwf.m2", + fileId = "137926", + text = "helm_engi_c_01diver_dwm.m2", + value = "helm_engi_c_01diver_dwm.m2", }, { - fileId = "237841", - text = "helm_goggles_xray_a_01_dwm.m2", - value = "helm_goggles_xray_a_01_dwm.m2", + fileId = "137927", + text = "helm_engi_c_01diver_gnf.m2", + value = "helm_engi_c_01diver_gnf.m2", }, { - fileId = "237842", - text = "helm_goggles_xray_a_01_gnf.m2", - value = "helm_goggles_xray_a_01_gnf.m2", + fileId = "137928", + text = "helm_engi_c_01diver_gnm.m2", + value = "helm_engi_c_01diver_gnm.m2", }, { - fileId = "237843", - text = "helm_goggles_xray_a_01_gnm.m2", - value = "helm_goggles_xray_a_01_gnm.m2", + fileId = "137929", + text = "helm_engi_c_01diver_gof.m2", + value = "helm_engi_c_01diver_gof.m2", }, { - fileId = "237844", - text = "helm_goggles_xray_a_01_gof.m2", - value = "helm_goggles_xray_a_01_gof.m2", + fileId = "137930", + text = "helm_engi_c_01diver_gom.m2", + value = "helm_engi_c_01diver_gom.m2", }, { - fileId = "237845", - text = "helm_goggles_xray_a_01_gom.m2", - value = "helm_goggles_xray_a_01_gom.m2", + fileId = "137931", + text = "helm_engi_c_01diver_huf.m2", + value = "helm_engi_c_01diver_huf.m2", }, { - fileId = "237846", - text = "helm_goggles_xray_a_01_huf.m2", - value = "helm_goggles_xray_a_01_huf.m2", + fileId = "137932", + text = "helm_engi_c_01diver_hum.m2", + value = "helm_engi_c_01diver_hum.m2", }, { - fileId = "237847", - text = "helm_goggles_xray_a_01_hum.m2", - value = "helm_goggles_xray_a_01_hum.m2", + fileId = "137933", + text = "helm_engi_c_01diver_nif.m2", + value = "helm_engi_c_01diver_nif.m2", }, { - fileId = "237848", - text = "helm_goggles_xray_a_01_nif.m2", - value = "helm_goggles_xray_a_01_nif.m2", + fileId = "137934", + text = "helm_engi_c_01diver_nim.m2", + value = "helm_engi_c_01diver_nim.m2", }, { - fileId = "237849", - text = "helm_goggles_xray_a_01_nim.m2", - value = "helm_goggles_xray_a_01_nim.m2", + fileId = "137935", + text = "helm_engi_c_01diver_orf.m2", + value = "helm_engi_c_01diver_orf.m2", }, { - fileId = "237850", - text = "helm_goggles_xray_a_01_orf.m2", - value = "helm_goggles_xray_a_01_orf.m2", + fileId = "137936", + text = "helm_engi_c_01diver_orm.m2", + value = "helm_engi_c_01diver_orm.m2", }, { - fileId = "237851", - text = "helm_goggles_xray_a_01_orm.m2", - value = "helm_goggles_xray_a_01_orm.m2", + fileId = "137937", + text = "helm_engi_c_01diver_scf.m2", + value = "helm_engi_c_01diver_scf.m2", }, { - fileId = "237852", - text = "helm_goggles_xray_a_01_scf.m2", - value = "helm_goggles_xray_a_01_scf.m2", + fileId = "137938", + text = "helm_engi_c_01diver_scm.m2", + value = "helm_engi_c_01diver_scm.m2", }, { - fileId = "237853", - text = "helm_goggles_xray_a_01_scm.m2", - value = "helm_goggles_xray_a_01_scm.m2", + fileId = "375536", + text = "helm_engi_c_01diver_skm.m2", + value = "helm_engi_c_01diver_skm.m2", }, { - fileId = "237854", - text = "helm_goggles_xray_a_01_taf.m2", - value = "helm_goggles_xray_a_01_taf.m2", + fileId = "137939", + text = "helm_engi_c_01diver_taf.m2", + value = "helm_engi_c_01diver_taf.m2", }, { - fileId = "237855", - text = "helm_goggles_xray_a_01_tam.m2", - value = "helm_goggles_xray_a_01_tam.m2", + fileId = "137940", + text = "helm_engi_c_01diver_tam.m2", + value = "helm_engi_c_01diver_tam.m2", }, { - fileId = "237856", - text = "helm_goggles_xray_a_01_trf.m2", - value = "helm_goggles_xray_a_01_trf.m2", + fileId = "137941", + text = "helm_engi_c_01diver_trf.m2", + value = "helm_engi_c_01diver_trf.m2", }, { - fileId = "237857", - text = "helm_goggles_xray_a_01_trm.m2", - value = "helm_goggles_xray_a_01_trm.m2", + fileId = "137942", + text = "helm_engi_c_01diver_trm.m2", + value = "helm_engi_c_01diver_trm.m2", }, { - fileId = "138137", - text = "helm_leather_a_01_bef.m2", - value = "helm_leather_a_01_bef.m2", + fileId = "375002", + text = "helm_engi_c_01diver_vrk.m2", + value = "helm_engi_c_01diver_vrk.m2", }, { - fileId = "138138", - text = "helm_leather_a_01_bem.m2", - value = "helm_leather_a_01_bem.m2", + fileId = "454093", + text = "helm_engi_c_01diver_wof.m2", + value = "helm_engi_c_01diver_wof.m2", }, { - fileId = "138139", - text = "helm_leather_a_01_drf.m2", - value = "helm_leather_a_01_drf.m2", + fileId = "429996", + text = "helm_engi_c_01diver_wom.m2", + value = "helm_engi_c_01diver_wom.m2", }, { - fileId = "138140", - text = "helm_leather_a_01_drm.m2", - value = "helm_leather_a_01_drm.m2", + fileId = "137946", + text = "helm_engi_c_02space_bef.m2", + value = "helm_engi_c_02space_bef.m2", }, { - fileId = "138141", - text = "helm_leather_a_01_dwf.m2", - value = "helm_leather_a_01_dwf.m2", + fileId = "137947", + text = "helm_engi_c_02space_bem.m2", + value = "helm_engi_c_02space_bem.m2", }, { - fileId = "138142", - text = "helm_leather_a_01_dwm.m2", - value = "helm_leather_a_01_dwm.m2", + fileId = "137948", + text = "helm_engi_c_02space_drf.m2", + value = "helm_engi_c_02space_drf.m2", }, { - fileId = "138143", - text = "helm_leather_a_01_gnf.m2", - value = "helm_leather_a_01_gnf.m2", + fileId = "137949", + text = "helm_engi_c_02space_drm.m2", + value = "helm_engi_c_02space_drm.m2", }, { - fileId = "138144", - text = "helm_leather_a_01_gnm.m2", - value = "helm_leather_a_01_gnm.m2", + fileId = "137950", + text = "helm_engi_c_02space_dwf.m2", + value = "helm_engi_c_02space_dwf.m2", }, { - fileId = "138145", - text = "helm_leather_a_01_gof.m2", - value = "helm_leather_a_01_gof.m2", + fileId = "137951", + text = "helm_engi_c_02space_dwm.m2", + value = "helm_engi_c_02space_dwm.m2", }, { - fileId = "138146", - text = "helm_leather_a_01_gom.m2", - value = "helm_leather_a_01_gom.m2", + fileId = "137952", + text = "helm_engi_c_02space_gnf.m2", + value = "helm_engi_c_02space_gnf.m2", }, { - fileId = "138147", - text = "helm_leather_a_01_huf.m2", - value = "helm_leather_a_01_huf.m2", + fileId = "137953", + text = "helm_engi_c_02space_gnm.m2", + value = "helm_engi_c_02space_gnm.m2", }, { - fileId = "138148", - text = "helm_leather_a_01_hum.m2", - value = "helm_leather_a_01_hum.m2", + fileId = "137954", + text = "helm_engi_c_02space_gof.m2", + value = "helm_engi_c_02space_gof.m2", }, { - fileId = "138149", - text = "helm_leather_a_01_nif.m2", - value = "helm_leather_a_01_nif.m2", + fileId = "137955", + text = "helm_engi_c_02space_gom.m2", + value = "helm_engi_c_02space_gom.m2", }, { - fileId = "138150", - text = "helm_leather_a_01_nim.m2", - value = "helm_leather_a_01_nim.m2", + fileId = "137956", + text = "helm_engi_c_02space_huf.m2", + value = "helm_engi_c_02space_huf.m2", }, { - fileId = "138151", - text = "helm_leather_a_01_orf.m2", - value = "helm_leather_a_01_orf.m2", + fileId = "137957", + text = "helm_engi_c_02space_hum.m2", + value = "helm_engi_c_02space_hum.m2", }, { - fileId = "138152", - text = "helm_leather_a_01_orm.m2", - value = "helm_leather_a_01_orm.m2", + fileId = "137958", + text = "helm_engi_c_02space_nif.m2", + value = "helm_engi_c_02space_nif.m2", }, { - fileId = "138153", - text = "helm_leather_a_01_scf.m2", - value = "helm_leather_a_01_scf.m2", + fileId = "137959", + text = "helm_engi_c_02space_nim.m2", + value = "helm_engi_c_02space_nim.m2", }, { - fileId = "138154", - text = "helm_leather_a_01_scm.m2", - value = "helm_leather_a_01_scm.m2", + fileId = "137960", + text = "helm_engi_c_02space_orf.m2", + value = "helm_engi_c_02space_orf.m2", }, { - fileId = "138155", - text = "helm_leather_a_01_taf.m2", - value = "helm_leather_a_01_taf.m2", + fileId = "137961", + text = "helm_engi_c_02space_orm.m2", + value = "helm_engi_c_02space_orm.m2", }, { - fileId = "138156", - text = "helm_leather_a_01_tam.m2", - value = "helm_leather_a_01_tam.m2", + fileId = "137962", + text = "helm_engi_c_02space_scf.m2", + value = "helm_engi_c_02space_scf.m2", }, { - fileId = "138157", - text = "helm_leather_a_01_trf.m2", - value = "helm_leather_a_01_trf.m2", + fileId = "137963", + text = "helm_engi_c_02space_scm.m2", + value = "helm_engi_c_02space_scm.m2", }, { - fileId = "138158", - text = "helm_leather_a_01_trm.m2", - value = "helm_leather_a_01_trm.m2", + fileId = "137964", + text = "helm_engi_c_02space_taf.m2", + value = "helm_engi_c_02space_taf.m2", }, { - fileId = "138167", - text = "helm_leather_a_02_bef.m2", - value = "helm_leather_a_02_bef.m2", + fileId = "137965", + text = "helm_engi_c_02space_tam.m2", + value = "helm_engi_c_02space_tam.m2", }, { - fileId = "138168", - text = "helm_leather_a_02_bem.m2", - value = "helm_leather_a_02_bem.m2", + fileId = "137966", + text = "helm_engi_c_02space_trf.m2", + value = "helm_engi_c_02space_trf.m2", }, { - fileId = "138169", - text = "helm_leather_a_02_drf.m2", - value = "helm_leather_a_02_drf.m2", + fileId = "137967", + text = "helm_engi_c_02space_trm.m2", + value = "helm_engi_c_02space_trm.m2", }, { - fileId = "138170", - text = "helm_leather_a_02_drm.m2", - value = "helm_leather_a_02_drm.m2", + fileId = "454094", + text = "helm_engi_c_02space_wof.m2", + value = "helm_engi_c_02space_wof.m2", }, { - fileId = "138171", - text = "helm_leather_a_02_dwf.m2", - value = "helm_leather_a_02_dwf.m2", + fileId = "429997", + text = "helm_engi_c_02space_wom.m2", + value = "helm_engi_c_02space_wom.m2", }, { - fileId = "138172", - text = "helm_leather_a_02_dwm.m2", - value = "helm_leather_a_02_dwm.m2", + fileId = "137968", + text = "helm_eyepatch_a_01_bef.m2", + value = "helm_eyepatch_a_01_bef.m2", }, { - fileId = "138173", - text = "helm_leather_a_02_gnf.m2", - value = "helm_leather_a_02_gnf.m2", + fileId = "137969", + text = "helm_eyepatch_a_01_bem.m2", + value = "helm_eyepatch_a_01_bem.m2", }, { - fileId = "138174", - text = "helm_leather_a_02_gnm.m2", - value = "helm_leather_a_02_gnm.m2", + fileId = "137970", + text = "helm_eyepatch_a_01_drf.m2", + value = "helm_eyepatch_a_01_drf.m2", }, { - fileId = "138175", - text = "helm_leather_a_02_gof.m2", - value = "helm_leather_a_02_gof.m2", + fileId = "137971", + text = "helm_eyepatch_a_01_drm.m2", + value = "helm_eyepatch_a_01_drm.m2", }, { - fileId = "138176", - text = "helm_leather_a_02_gom.m2", - value = "helm_leather_a_02_gom.m2", + fileId = "137972", + text = "helm_eyepatch_a_01_dwf.m2", + value = "helm_eyepatch_a_01_dwf.m2", }, { - fileId = "138177", - text = "helm_leather_a_02_huf.m2", - value = "helm_leather_a_02_huf.m2", + fileId = "137973", + text = "helm_eyepatch_a_01_dwm.m2", + value = "helm_eyepatch_a_01_dwm.m2", }, { - fileId = "138178", - text = "helm_leather_a_02_hum.m2", - value = "helm_leather_a_02_hum.m2", + fileId = "137974", + text = "helm_eyepatch_a_01_gnf.m2", + value = "helm_eyepatch_a_01_gnf.m2", }, { - fileId = "138179", - text = "helm_leather_a_02_nif.m2", - value = "helm_leather_a_02_nif.m2", + fileId = "137975", + text = "helm_eyepatch_a_01_gnm.m2", + value = "helm_eyepatch_a_01_gnm.m2", }, { - fileId = "138180", - text = "helm_leather_a_02_nim.m2", - value = "helm_leather_a_02_nim.m2", + fileId = "137976", + text = "helm_eyepatch_a_01_gof.m2", + value = "helm_eyepatch_a_01_gof.m2", }, { - fileId = "138181", - text = "helm_leather_a_02_orf.m2", - value = "helm_leather_a_02_orf.m2", + fileId = "137977", + text = "helm_eyepatch_a_01_gom.m2", + value = "helm_eyepatch_a_01_gom.m2", }, { - fileId = "138182", - text = "helm_leather_a_02_orm.m2", - value = "helm_leather_a_02_orm.m2", + fileId = "137978", + text = "helm_eyepatch_a_01_huf.m2", + value = "helm_eyepatch_a_01_huf.m2", }, { - fileId = "138183", - text = "helm_leather_a_02_scf.m2", - value = "helm_leather_a_02_scf.m2", - }, - { - fileId = "138184", - text = "helm_leather_a_02_scm.m2", - value = "helm_leather_a_02_scm.m2", + fileId = "137979", + text = "helm_eyepatch_a_01_hum.m2", + value = "helm_eyepatch_a_01_hum.m2", }, { - fileId = "138185", - text = "helm_leather_a_02_taf.m2", - value = "helm_leather_a_02_taf.m2", + fileId = "137980", + text = "helm_eyepatch_a_01_nif.m2", + value = "helm_eyepatch_a_01_nif.m2", }, { - fileId = "138186", - text = "helm_leather_a_02_tam.m2", - value = "helm_leather_a_02_tam.m2", + fileId = "137981", + text = "helm_eyepatch_a_01_nim.m2", + value = "helm_eyepatch_a_01_nim.m2", }, { - fileId = "138187", - text = "helm_leather_a_02_trf.m2", - value = "helm_leather_a_02_trf.m2", + fileId = "137982", + text = "helm_eyepatch_a_01_orf.m2", + value = "helm_eyepatch_a_01_orf.m2", }, { - fileId = "138188", - text = "helm_leather_a_02_trm.m2", - value = "helm_leather_a_02_trm.m2", + fileId = "137983", + text = "helm_eyepatch_a_01_orm.m2", + value = "helm_eyepatch_a_01_orm.m2", }, { - fileId = "138194", - text = "helm_leather_a_03defias_bef.m2", - value = "helm_leather_a_03defias_bef.m2", + fileId = "137984", + text = "helm_eyepatch_a_01_scf.m2", + value = "helm_eyepatch_a_01_scf.m2", }, { - fileId = "138195", - text = "helm_leather_a_03defias_bem.m2", - value = "helm_leather_a_03defias_bem.m2", + fileId = "137985", + text = "helm_eyepatch_a_01_scm.m2", + value = "helm_eyepatch_a_01_scm.m2", }, { - fileId = "138196", - text = "helm_leather_a_03defias_drf.m2", - value = "helm_leather_a_03defias_drf.m2", + fileId = "375537", + text = "helm_eyepatch_a_01_skm.m2", + value = "helm_eyepatch_a_01_skm.m2", }, { - fileId = "138197", - text = "helm_leather_a_03defias_drm.m2", - value = "helm_leather_a_03defias_drm.m2", + fileId = "137986", + text = "helm_eyepatch_a_01_taf.m2", + value = "helm_eyepatch_a_01_taf.m2", }, { - fileId = "138198", - text = "helm_leather_a_03defias_dwf.m2", - value = "helm_leather_a_03defias_dwf.m2", + fileId = "137987", + text = "helm_eyepatch_a_01_tam.m2", + value = "helm_eyepatch_a_01_tam.m2", }, { - fileId = "138199", - text = "helm_leather_a_03defias_dwm.m2", - value = "helm_leather_a_03defias_dwm.m2", + fileId = "137988", + text = "helm_eyepatch_a_01_trf.m2", + value = "helm_eyepatch_a_01_trf.m2", }, { - fileId = "138200", - text = "helm_leather_a_03defias_gnf.m2", - value = "helm_leather_a_03defias_gnf.m2", + fileId = "137989", + text = "helm_eyepatch_a_01_trm.m2", + value = "helm_eyepatch_a_01_trm.m2", }, { - fileId = "138201", - text = "helm_leather_a_03defias_gnm.m2", - value = "helm_leather_a_03defias_gnm.m2", + fileId = "375003", + text = "helm_eyepatch_a_01_vrk.m2", + value = "helm_eyepatch_a_01_vrk.m2", }, { - fileId = "138202", - text = "helm_leather_a_03defias_gof.m2", - value = "helm_leather_a_03defias_gof.m2", + fileId = "454095", + text = "helm_eyepatch_a_01_wof.m2", + value = "helm_eyepatch_a_01_wof.m2", }, { - fileId = "138203", - text = "helm_leather_a_03defias_gom.m2", - value = "helm_leather_a_03defias_gom.m2", + fileId = "429998", + text = "helm_eyepatch_a_01_wom.m2", + value = "helm_eyepatch_a_01_wom.m2", }, { - fileId = "138204", - text = "helm_leather_a_03defias_huf.m2", - value = "helm_leather_a_03defias_huf.m2", + fileId = "137996", + text = "helm_eyepatch_a_02_bem.m2", + value = "helm_eyepatch_a_02_bem.m2", }, { - fileId = "138205", - text = "helm_leather_a_03defias_hum.m2", - value = "helm_leather_a_03defias_hum.m2", + fileId = "512865", + text = "helm_gallywix_hat.m2", + value = "helm_gallywix_hat.m2", }, { - fileId = "138206", - text = "helm_leather_a_03defias_nif.m2", - value = "helm_leather_a_03defias_nif.m2", + fileId = "137998", + text = "helm_goggles_b_01_bef.m2", + value = "helm_goggles_b_01_bef.m2", }, { - fileId = "138207", - text = "helm_leather_a_03defias_nim.m2", - value = "helm_leather_a_03defias_nim.m2", + fileId = "137999", + text = "helm_goggles_b_01_bem.m2", + value = "helm_goggles_b_01_bem.m2", }, { - fileId = "138208", - text = "helm_leather_a_03defias_orf.m2", - value = "helm_leather_a_03defias_orf.m2", + fileId = "138000", + text = "helm_goggles_b_01_drf.m2", + value = "helm_goggles_b_01_drf.m2", }, { - fileId = "138209", - text = "helm_leather_a_03defias_orm.m2", - value = "helm_leather_a_03defias_orm.m2", + fileId = "138001", + text = "helm_goggles_b_01_drm.m2", + value = "helm_goggles_b_01_drm.m2", }, { - fileId = "138210", - text = "helm_leather_a_03defias_scf.m2", - value = "helm_leather_a_03defias_scf.m2", + fileId = "138002", + text = "helm_goggles_b_01_dwf.m2", + value = "helm_goggles_b_01_dwf.m2", }, { - fileId = "138211", - text = "helm_leather_a_03defias_scm.m2", - value = "helm_leather_a_03defias_scm.m2", + fileId = "138003", + text = "helm_goggles_b_01_dwm.m2", + value = "helm_goggles_b_01_dwm.m2", }, { - fileId = "138212", - text = "helm_leather_a_03defias_taf.m2", - value = "helm_leather_a_03defias_taf.m2", + fileId = "138004", + text = "helm_goggles_b_01_gnf.m2", + value = "helm_goggles_b_01_gnf.m2", }, { - fileId = "138213", - text = "helm_leather_a_03defias_tam.m2", - value = "helm_leather_a_03defias_tam.m2", + fileId = "138005", + text = "helm_goggles_b_01_gnm.m2", + value = "helm_goggles_b_01_gnm.m2", }, { - fileId = "138214", - text = "helm_leather_a_03defias_trf.m2", - value = "helm_leather_a_03defias_trf.m2", + fileId = "405447", + text = "helm_goggles_b_01_gof.m2", + value = "helm_goggles_b_01_gof.m2", }, { - fileId = "138215", - text = "helm_leather_a_03defias_trm.m2", - value = "helm_leather_a_03defias_trm.m2", + fileId = "138006", + text = "helm_goggles_b_01_gom.m2", + value = "helm_goggles_b_01_gom.m2", }, { - fileId = "138223", - text = "helm_leather_ahnqiraj_a_01_bef.m2", - value = "helm_leather_ahnqiraj_a_01_bef.m2", + fileId = "138007", + text = "helm_goggles_b_01_huf.m2", + value = "helm_goggles_b_01_huf.m2", }, { - fileId = "138224", - text = "helm_leather_ahnqiraj_a_01_bem.m2", - value = "helm_leather_ahnqiraj_a_01_bem.m2", + fileId = "138008", + text = "helm_goggles_b_01_hum.m2", + value = "helm_goggles_b_01_hum.m2", }, { - fileId = "138225", - text = "helm_leather_ahnqiraj_a_01_drf.m2", - value = "helm_leather_ahnqiraj_a_01_drf.m2", + fileId = "138009", + text = "helm_goggles_b_01_nif.m2", + value = "helm_goggles_b_01_nif.m2", }, { - fileId = "138226", - text = "helm_leather_ahnqiraj_a_01_drm.m2", - value = "helm_leather_ahnqiraj_a_01_drm.m2", + fileId = "138010", + text = "helm_goggles_b_01_nim.m2", + value = "helm_goggles_b_01_nim.m2", }, { - fileId = "138227", - text = "helm_leather_ahnqiraj_a_01_dwf.m2", - value = "helm_leather_ahnqiraj_a_01_dwf.m2", + fileId = "138011", + text = "helm_goggles_b_01_orf.m2", + value = "helm_goggles_b_01_orf.m2", }, { - fileId = "138228", - text = "helm_leather_ahnqiraj_a_01_dwm.m2", - value = "helm_leather_ahnqiraj_a_01_dwm.m2", + fileId = "138012", + text = "helm_goggles_b_01_orm.m2", + value = "helm_goggles_b_01_orm.m2", }, { - fileId = "138229", - text = "helm_leather_ahnqiraj_a_01_gnf.m2", - value = "helm_leather_ahnqiraj_a_01_gnf.m2", + fileId = "138013", + text = "helm_goggles_b_01_scf.m2", + value = "helm_goggles_b_01_scf.m2", }, { - fileId = "138230", - text = "helm_leather_ahnqiraj_a_01_gnm.m2", - value = "helm_leather_ahnqiraj_a_01_gnm.m2", + fileId = "138014", + text = "helm_goggles_b_01_scm.m2", + value = "helm_goggles_b_01_scm.m2", }, { - fileId = "138231", - text = "helm_leather_ahnqiraj_a_01_gof.m2", - value = "helm_leather_ahnqiraj_a_01_gof.m2", + fileId = "138015", + text = "helm_goggles_b_01_taf.m2", + value = "helm_goggles_b_01_taf.m2", }, { - fileId = "138232", - text = "helm_leather_ahnqiraj_a_01_gom.m2", - value = "helm_leather_ahnqiraj_a_01_gom.m2", + fileId = "138016", + text = "helm_goggles_b_01_tam.m2", + value = "helm_goggles_b_01_tam.m2", }, { - fileId = "138233", - text = "helm_leather_ahnqiraj_a_01_huf.m2", - value = "helm_leather_ahnqiraj_a_01_huf.m2", + fileId = "138017", + text = "helm_goggles_b_01_trf.m2", + value = "helm_goggles_b_01_trf.m2", }, { - fileId = "138234", - text = "helm_leather_ahnqiraj_a_01_hum.m2", - value = "helm_leather_ahnqiraj_a_01_hum.m2", + fileId = "138018", + text = "helm_goggles_b_01_trm.m2", + value = "helm_goggles_b_01_trm.m2", }, { - fileId = "138235", - text = "helm_leather_ahnqiraj_a_01_nif.m2", - value = "helm_leather_ahnqiraj_a_01_nif.m2", + fileId = "454096", + text = "helm_goggles_b_01_wof.m2", + value = "helm_goggles_b_01_wof.m2", }, { - fileId = "138236", - text = "helm_leather_ahnqiraj_a_01_nim.m2", - value = "helm_leather_ahnqiraj_a_01_nim.m2", + fileId = "429999", + text = "helm_goggles_b_01_wom.m2", + value = "helm_goggles_b_01_wom.m2", }, { - fileId = "138237", - text = "helm_leather_ahnqiraj_a_01_orf.m2", - value = "helm_leather_ahnqiraj_a_01_orf.m2", + fileId = "138028", + text = "helm_goggles_b_02engi_bef.m2", + value = "helm_goggles_b_02engi_bef.m2", }, { - fileId = "138238", - text = "helm_leather_ahnqiraj_a_01_orm.m2", - value = "helm_leather_ahnqiraj_a_01_orm.m2", + fileId = "138029", + text = "helm_goggles_b_02engi_bem.m2", + value = "helm_goggles_b_02engi_bem.m2", }, { - fileId = "138239", - text = "helm_leather_ahnqiraj_a_01_scf.m2", - value = "helm_leather_ahnqiraj_a_01_scf.m2", + fileId = "138030", + text = "helm_goggles_b_02engi_drf.m2", + value = "helm_goggles_b_02engi_drf.m2", }, { - fileId = "138240", - text = "helm_leather_ahnqiraj_a_01_scm.m2", - value = "helm_leather_ahnqiraj_a_01_scm.m2", + fileId = "138031", + text = "helm_goggles_b_02engi_drm.m2", + value = "helm_goggles_b_02engi_drm.m2", }, { - fileId = "138241", - text = "helm_leather_ahnqiraj_a_01_taf.m2", - value = "helm_leather_ahnqiraj_a_01_taf.m2", + fileId = "138032", + text = "helm_goggles_b_02engi_dwf.m2", + value = "helm_goggles_b_02engi_dwf.m2", }, { - fileId = "138242", - text = "helm_leather_ahnqiraj_a_01_tam.m2", - value = "helm_leather_ahnqiraj_a_01_tam.m2", + fileId = "138033", + text = "helm_goggles_b_02engi_dwm.m2", + value = "helm_goggles_b_02engi_dwm.m2", }, { - fileId = "138243", - text = "helm_leather_ahnqiraj_a_01_trf.m2", - value = "helm_leather_ahnqiraj_a_01_trf.m2", + fileId = "138034", + text = "helm_goggles_b_02engi_gnf.m2", + value = "helm_goggles_b_02engi_gnf.m2", }, { - fileId = "138244", - text = "helm_leather_ahnqiraj_a_01_trm.m2", - value = "helm_leather_ahnqiraj_a_01_trm.m2", + fileId = "138035", + text = "helm_goggles_b_02engi_gnm.m2", + value = "helm_goggles_b_02engi_gnm.m2", }, { - fileId = "316643", - text = "helm_leather_argentalliance_d_01_bef.m2", - value = "helm_leather_argentalliance_d_01_bef.m2", + fileId = "138036", + text = "helm_goggles_b_02engi_gof.m2", + value = "helm_goggles_b_02engi_gof.m2", }, { - fileId = "316644", - text = "helm_leather_argentalliance_d_01_bem.m2", - value = "helm_leather_argentalliance_d_01_bem.m2", + fileId = "138037", + text = "helm_goggles_b_02engi_gom.m2", + value = "helm_goggles_b_02engi_gom.m2", }, { - fileId = "316645", - text = "helm_leather_argentalliance_d_01_drf.m2", - value = "helm_leather_argentalliance_d_01_drf.m2", + fileId = "138038", + text = "helm_goggles_b_02engi_huf.m2", + value = "helm_goggles_b_02engi_huf.m2", }, { - fileId = "316646", - text = "helm_leather_argentalliance_d_01_drm.m2", - value = "helm_leather_argentalliance_d_01_drm.m2", + fileId = "138039", + text = "helm_goggles_b_02engi_hum.m2", + value = "helm_goggles_b_02engi_hum.m2", }, { - fileId = "316647", - text = "helm_leather_argentalliance_d_01_dwf.m2", - value = "helm_leather_argentalliance_d_01_dwf.m2", + fileId = "138040", + text = "helm_goggles_b_02engi_nif.m2", + value = "helm_goggles_b_02engi_nif.m2", }, { - fileId = "316648", - text = "helm_leather_argentalliance_d_01_dwm.m2", - value = "helm_leather_argentalliance_d_01_dwm.m2", + fileId = "138041", + text = "helm_goggles_b_02engi_nim.m2", + value = "helm_goggles_b_02engi_nim.m2", }, { - fileId = "316649", - text = "helm_leather_argentalliance_d_01_gnf.m2", - value = "helm_leather_argentalliance_d_01_gnf.m2", + fileId = "138042", + text = "helm_goggles_b_02engi_orf.m2", + value = "helm_goggles_b_02engi_orf.m2", }, { - fileId = "316650", - text = "helm_leather_argentalliance_d_01_gnm.m2", - value = "helm_leather_argentalliance_d_01_gnm.m2", + fileId = "138043", + text = "helm_goggles_b_02engi_orm.m2", + value = "helm_goggles_b_02engi_orm.m2", }, { - fileId = "316651", - text = "helm_leather_argentalliance_d_01_gof.m2", - value = "helm_leather_argentalliance_d_01_gof.m2", + fileId = "138044", + text = "helm_goggles_b_02engi_scf.m2", + value = "helm_goggles_b_02engi_scf.m2", }, { - fileId = "316652", - text = "helm_leather_argentalliance_d_01_gom.m2", - value = "helm_leather_argentalliance_d_01_gom.m2", + fileId = "138045", + text = "helm_goggles_b_02engi_scm.m2", + value = "helm_goggles_b_02engi_scm.m2", }, { - fileId = "316653", - text = "helm_leather_argentalliance_d_01_huf.m2", - value = "helm_leather_argentalliance_d_01_huf.m2", + fileId = "138046", + text = "helm_goggles_b_02engi_taf.m2", + value = "helm_goggles_b_02engi_taf.m2", }, { - fileId = "316654", - text = "helm_leather_argentalliance_d_01_hum.m2", - value = "helm_leather_argentalliance_d_01_hum.m2", + fileId = "138047", + text = "helm_goggles_b_02engi_tam.m2", + value = "helm_goggles_b_02engi_tam.m2", }, { - fileId = "316655", - text = "helm_leather_argentalliance_d_01_nif.m2", - value = "helm_leather_argentalliance_d_01_nif.m2", + fileId = "138048", + text = "helm_goggles_b_02engi_trf.m2", + value = "helm_goggles_b_02engi_trf.m2", }, { - fileId = "316656", - text = "helm_leather_argentalliance_d_01_nim.m2", - value = "helm_leather_argentalliance_d_01_nim.m2", + fileId = "138049", + text = "helm_goggles_b_02engi_trm.m2", + value = "helm_goggles_b_02engi_trm.m2", }, { - fileId = "316657", - text = "helm_leather_argentalliance_d_01_orf.m2", - value = "helm_leather_argentalliance_d_01_orf.m2", + fileId = "454097", + text = "helm_goggles_b_02engi_wof.m2", + value = "helm_goggles_b_02engi_wof.m2", }, { - fileId = "316658", - text = "helm_leather_argentalliance_d_01_orm.m2", - value = "helm_leather_argentalliance_d_01_orm.m2", + fileId = "430000", + text = "helm_goggles_b_02engi_wom.m2", + value = "helm_goggles_b_02engi_wom.m2", }, { - fileId = "316659", - text = "helm_leather_argentalliance_d_01_scf.m2", - value = "helm_leather_argentalliance_d_01_scf.m2", + fileId = "138051", + text = "helm_goggles_b_03_bef.m2", + value = "helm_goggles_b_03_bef.m2", }, { - fileId = "316660", - text = "helm_leather_argentalliance_d_01_scm.m2", - value = "helm_leather_argentalliance_d_01_scm.m2", + fileId = "138052", + text = "helm_goggles_b_03_bem.m2", + value = "helm_goggles_b_03_bem.m2", }, { - fileId = "316661", - text = "helm_leather_argentalliance_d_01_taf.m2", - value = "helm_leather_argentalliance_d_01_taf.m2", + fileId = "138053", + text = "helm_goggles_b_03_drf.m2", + value = "helm_goggles_b_03_drf.m2", }, { - fileId = "316662", - text = "helm_leather_argentalliance_d_01_tam.m2", - value = "helm_leather_argentalliance_d_01_tam.m2", + fileId = "138054", + text = "helm_goggles_b_03_drm.m2", + value = "helm_goggles_b_03_drm.m2", }, { - fileId = "316663", - text = "helm_leather_argentalliance_d_01_trf.m2", - value = "helm_leather_argentalliance_d_01_trf.m2", + fileId = "138055", + text = "helm_goggles_b_03_dwf.m2", + value = "helm_goggles_b_03_dwf.m2", }, { - fileId = "316664", - text = "helm_leather_argentalliance_d_01_trm.m2", - value = "helm_leather_argentalliance_d_01_trm.m2", + fileId = "138056", + text = "helm_goggles_b_03_dwm.m2", + value = "helm_goggles_b_03_dwm.m2", }, { - fileId = "312695", - text = "helm_leather_argenthorde_d_01_bef.m2", - value = "helm_leather_argenthorde_d_01_bef.m2", + fileId = "138057", + text = "helm_goggles_b_03_gnf.m2", + value = "helm_goggles_b_03_gnf.m2", }, { - fileId = "312696", - text = "helm_leather_argenthorde_d_01_bem.m2", - value = "helm_leather_argenthorde_d_01_bem.m2", + fileId = "138058", + text = "helm_goggles_b_03_gnm.m2", + value = "helm_goggles_b_03_gnm.m2", }, { - fileId = "312697", - text = "helm_leather_argenthorde_d_01_drf.m2", - value = "helm_leather_argenthorde_d_01_drf.m2", + fileId = "138059", + text = "helm_goggles_b_03_gof.m2", + value = "helm_goggles_b_03_gof.m2", }, { - fileId = "312698", - text = "helm_leather_argenthorde_d_01_drm.m2", - value = "helm_leather_argenthorde_d_01_drm.m2", + fileId = "138060", + text = "helm_goggles_b_03_gom.m2", + value = "helm_goggles_b_03_gom.m2", }, { - fileId = "312699", - text = "helm_leather_argenthorde_d_01_dwf.m2", - value = "helm_leather_argenthorde_d_01_dwf.m2", + fileId = "138061", + text = "helm_goggles_b_03_huf.m2", + value = "helm_goggles_b_03_huf.m2", }, { - fileId = "312700", - text = "helm_leather_argenthorde_d_01_dwm.m2", - value = "helm_leather_argenthorde_d_01_dwm.m2", + fileId = "138062", + text = "helm_goggles_b_03_hum.m2", + value = "helm_goggles_b_03_hum.m2", }, { - fileId = "312701", - text = "helm_leather_argenthorde_d_01_gnf.m2", - value = "helm_leather_argenthorde_d_01_gnf.m2", + fileId = "138063", + text = "helm_goggles_b_03_nif.m2", + value = "helm_goggles_b_03_nif.m2", }, { - fileId = "312702", - text = "helm_leather_argenthorde_d_01_gnm.m2", - value = "helm_leather_argenthorde_d_01_gnm.m2", + fileId = "138064", + text = "helm_goggles_b_03_nim.m2", + value = "helm_goggles_b_03_nim.m2", }, { - fileId = "312703", - text = "helm_leather_argenthorde_d_01_gof.m2", - value = "helm_leather_argenthorde_d_01_gof.m2", + fileId = "138065", + text = "helm_goggles_b_03_orf.m2", + value = "helm_goggles_b_03_orf.m2", }, { - fileId = "312704", - text = "helm_leather_argenthorde_d_01_gom.m2", - value = "helm_leather_argenthorde_d_01_gom.m2", + fileId = "138066", + text = "helm_goggles_b_03_orm.m2", + value = "helm_goggles_b_03_orm.m2", }, { - fileId = "312705", - text = "helm_leather_argenthorde_d_01_huf.m2", - value = "helm_leather_argenthorde_d_01_huf.m2", + fileId = "138067", + text = "helm_goggles_b_03_scf.m2", + value = "helm_goggles_b_03_scf.m2", }, { - fileId = "312706", - text = "helm_leather_argenthorde_d_01_hum.m2", - value = "helm_leather_argenthorde_d_01_hum.m2", + fileId = "138068", + text = "helm_goggles_b_03_scm.m2", + value = "helm_goggles_b_03_scm.m2", }, { - fileId = "312707", - text = "helm_leather_argenthorde_d_01_nif.m2", - value = "helm_leather_argenthorde_d_01_nif.m2", + fileId = "138069", + text = "helm_goggles_b_03_taf.m2", + value = "helm_goggles_b_03_taf.m2", }, { - fileId = "312708", - text = "helm_leather_argenthorde_d_01_nim.m2", - value = "helm_leather_argenthorde_d_01_nim.m2", + fileId = "138070", + text = "helm_goggles_b_03_tam.m2", + value = "helm_goggles_b_03_tam.m2", }, { - fileId = "312709", - text = "helm_leather_argenthorde_d_01_orf.m2", - value = "helm_leather_argenthorde_d_01_orf.m2", + fileId = "138071", + text = "helm_goggles_b_03_trf.m2", + value = "helm_goggles_b_03_trf.m2", }, { - fileId = "312710", - text = "helm_leather_argenthorde_d_01_orm.m2", - value = "helm_leather_argenthorde_d_01_orm.m2", + fileId = "138072", + text = "helm_goggles_b_03_trm.m2", + value = "helm_goggles_b_03_trm.m2", }, { - fileId = "312711", - text = "helm_leather_argenthorde_d_01_scf.m2", - value = "helm_leather_argenthorde_d_01_scf.m2", + fileId = "454098", + text = "helm_goggles_b_03_wof.m2", + value = "helm_goggles_b_03_wof.m2", }, { - fileId = "312712", - text = "helm_leather_argenthorde_d_01_scm.m2", - value = "helm_leather_argenthorde_d_01_scm.m2", + fileId = "430001", + text = "helm_goggles_b_03_wom.m2", + value = "helm_goggles_b_03_wom.m2", }, { - fileId = "312713", - text = "helm_leather_argenthorde_d_01_taf.m2", - value = "helm_leather_argenthorde_d_01_taf.m2", + fileId = "138074", + text = "helm_goggles_b_04.m2", + value = "helm_goggles_b_04.m2", }, { - fileId = "312714", - text = "helm_leather_argenthorde_d_01_tam.m2", - value = "helm_leather_argenthorde_d_01_tam.m2", + fileId = "138075", + text = "helm_goggles_b_04_dwf.m2", + value = "helm_goggles_b_04_dwf.m2", }, { - fileId = "312715", - text = "helm_leather_argenthorde_d_01_trf.m2", - value = "helm_leather_argenthorde_d_01_trf.m2", + fileId = "138076", + text = "helm_goggles_b_04_dwm.m2", + value = "helm_goggles_b_04_dwm.m2", }, { - fileId = "312716", - text = "helm_leather_argenthorde_d_01_trm.m2", - value = "helm_leather_argenthorde_d_01_trm.m2", + fileId = "138078", + text = "helm_goggles_c_01_bef.m2", + value = "helm_goggles_c_01_bef.m2", }, { - fileId = "138248", - text = "helm_leather_b_01_bef.m2", - value = "helm_leather_b_01_bef.m2", + fileId = "138079", + text = "helm_goggles_c_01_bem.m2", + value = "helm_goggles_c_01_bem.m2", }, { - fileId = "138249", - text = "helm_leather_b_01_bem.m2", - value = "helm_leather_b_01_bem.m2", + fileId = "138080", + text = "helm_goggles_c_01_drf.m2", + value = "helm_goggles_c_01_drf.m2", }, { - fileId = "138250", - text = "helm_leather_b_01_drf.m2", - value = "helm_leather_b_01_drf.m2", + fileId = "138081", + text = "helm_goggles_c_01_drm.m2", + value = "helm_goggles_c_01_drm.m2", }, { - fileId = "138251", - text = "helm_leather_b_01_drm.m2", - value = "helm_leather_b_01_drm.m2", + fileId = "138082", + text = "helm_goggles_c_01_dwf.m2", + value = "helm_goggles_c_01_dwf.m2", }, { - fileId = "138252", - text = "helm_leather_b_01_dwf.m2", - value = "helm_leather_b_01_dwf.m2", + fileId = "138083", + text = "helm_goggles_c_01_dwm.m2", + value = "helm_goggles_c_01_dwm.m2", }, { - fileId = "138253", - text = "helm_leather_b_01_dwm.m2", - value = "helm_leather_b_01_dwm.m2", + fileId = "138084", + text = "helm_goggles_c_01_gnf.m2", + value = "helm_goggles_c_01_gnf.m2", }, { - fileId = "138254", - text = "helm_leather_b_01_gnf.m2", - value = "helm_leather_b_01_gnf.m2", + fileId = "138085", + text = "helm_goggles_c_01_gnm.m2", + value = "helm_goggles_c_01_gnm.m2", }, { - fileId = "138255", - text = "helm_leather_b_01_gnm.m2", - value = "helm_leather_b_01_gnm.m2", + fileId = "138086", + text = "helm_goggles_c_01_gof.m2", + value = "helm_goggles_c_01_gof.m2", }, { - fileId = "138256", - text = "helm_leather_b_01_gof.m2", - value = "helm_leather_b_01_gof.m2", + fileId = "138087", + text = "helm_goggles_c_01_gom.m2", + value = "helm_goggles_c_01_gom.m2", }, { - fileId = "138257", - text = "helm_leather_b_01_gom.m2", - value = "helm_leather_b_01_gom.m2", + fileId = "138088", + text = "helm_goggles_c_01_huf.m2", + value = "helm_goggles_c_01_huf.m2", }, { - fileId = "138258", - text = "helm_leather_b_01_huf.m2", - value = "helm_leather_b_01_huf.m2", + fileId = "138089", + text = "helm_goggles_c_01_hum.m2", + value = "helm_goggles_c_01_hum.m2", }, { - fileId = "138259", - text = "helm_leather_b_01_hum.m2", - value = "helm_leather_b_01_hum.m2", + fileId = "138090", + text = "helm_goggles_c_01_nif.m2", + value = "helm_goggles_c_01_nif.m2", }, { - fileId = "138260", - text = "helm_leather_b_01_nif.m2", - value = "helm_leather_b_01_nif.m2", + fileId = "138091", + text = "helm_goggles_c_01_nim.m2", + value = "helm_goggles_c_01_nim.m2", }, { - fileId = "138261", - text = "helm_leather_b_01_nim.m2", - value = "helm_leather_b_01_nim.m2", + fileId = "138092", + text = "helm_goggles_c_01_orf.m2", + value = "helm_goggles_c_01_orf.m2", }, { - fileId = "138262", - text = "helm_leather_b_01_orf.m2", - value = "helm_leather_b_01_orf.m2", + fileId = "138093", + text = "helm_goggles_c_01_orm.m2", + value = "helm_goggles_c_01_orm.m2", }, { - fileId = "138263", - text = "helm_leather_b_01_orm.m2", - value = "helm_leather_b_01_orm.m2", + fileId = "138094", + text = "helm_goggles_c_01_scf.m2", + value = "helm_goggles_c_01_scf.m2", }, { - fileId = "138264", - text = "helm_leather_b_01_scf.m2", - value = "helm_leather_b_01_scf.m2", + fileId = "138095", + text = "helm_goggles_c_01_scm.m2", + value = "helm_goggles_c_01_scm.m2", }, { - fileId = "138265", - text = "helm_leather_b_01_scm.m2", - value = "helm_leather_b_01_scm.m2", + fileId = "138096", + text = "helm_goggles_c_01_taf.m2", + value = "helm_goggles_c_01_taf.m2", }, { - fileId = "138266", - text = "helm_leather_b_01_taf.m2", - value = "helm_leather_b_01_taf.m2", + fileId = "138097", + text = "helm_goggles_c_01_tam.m2", + value = "helm_goggles_c_01_tam.m2", }, { - fileId = "138267", - text = "helm_leather_b_01_tam.m2", - value = "helm_leather_b_01_tam.m2", + fileId = "138098", + text = "helm_goggles_c_01_trf.m2", + value = "helm_goggles_c_01_trf.m2", }, { - fileId = "138268", - text = "helm_leather_b_01_trf.m2", - value = "helm_leather_b_01_trf.m2", + fileId = "138099", + text = "helm_goggles_c_01_trm.m2", + value = "helm_goggles_c_01_trm.m2", }, { - fileId = "138269", - text = "helm_leather_b_01_trm.m2", - value = "helm_leather_b_01_trm.m2", + fileId = "454099", + text = "helm_goggles_c_01_wof.m2", + value = "helm_goggles_c_01_wof.m2", }, { - fileId = "138279", - text = "helm_leather_b_03venture_bef.m2", - value = "helm_leather_b_03venture_bef.m2", + fileId = "430002", + text = "helm_goggles_c_01_wom.m2", + value = "helm_goggles_c_01_wom.m2", }, { - fileId = "138280", - text = "helm_leather_b_03venture_bem.m2", - value = "helm_leather_b_03venture_bem.m2", + fileId = "138104", + text = "helm_goggles_d_01_bef.m2", + value = "helm_goggles_d_01_bef.m2", }, { - fileId = "138281", - text = "helm_leather_b_03venture_drf.m2", - value = "helm_leather_b_03venture_drf.m2", + fileId = "138105", + text = "helm_goggles_d_01_bem.m2", + value = "helm_goggles_d_01_bem.m2", }, { - fileId = "138282", - text = "helm_leather_b_03venture_drm.m2", - value = "helm_leather_b_03venture_drm.m2", + fileId = "138106", + text = "helm_goggles_d_01_drf.m2", + value = "helm_goggles_d_01_drf.m2", }, { - fileId = "138283", - text = "helm_leather_b_03venture_dwf.m2", - value = "helm_leather_b_03venture_dwf.m2", + fileId = "138107", + text = "helm_goggles_d_01_drm.m2", + value = "helm_goggles_d_01_drm.m2", }, { - fileId = "138284", - text = "helm_leather_b_03venture_dwm.m2", - value = "helm_leather_b_03venture_dwm.m2", + fileId = "138108", + text = "helm_goggles_d_01_dwf.m2", + value = "helm_goggles_d_01_dwf.m2", }, { - fileId = "138286", - text = "helm_leather_b_03venture_gnf.m2", - value = "helm_leather_b_03venture_gnf.m2", + fileId = "138109", + text = "helm_goggles_d_01_dwm.m2", + value = "helm_goggles_d_01_dwm.m2", }, { - fileId = "138287", - text = "helm_leather_b_03venture_gnm.m2", - value = "helm_leather_b_03venture_gnm.m2", + fileId = "138110", + text = "helm_goggles_d_01_gnf.m2", + value = "helm_goggles_d_01_gnf.m2", }, { - fileId = "138288", - text = "helm_leather_b_03venture_gof.m2", - value = "helm_leather_b_03venture_gof.m2", + fileId = "138111", + text = "helm_goggles_d_01_gnm.m2", + value = "helm_goggles_d_01_gnm.m2", }, { - fileId = "138289", - text = "helm_leather_b_03venture_gom.m2", - value = "helm_leather_b_03venture_gom.m2", + fileId = "138112", + text = "helm_goggles_d_01_gof.m2", + value = "helm_goggles_d_01_gof.m2", }, { - fileId = "138290", - text = "helm_leather_b_03venture_huf.m2", - value = "helm_leather_b_03venture_huf.m2", + fileId = "138113", + text = "helm_goggles_d_01_gom.m2", + value = "helm_goggles_d_01_gom.m2", }, { - fileId = "138291", - text = "helm_leather_b_03venture_hum.m2", - value = "helm_leather_b_03venture_hum.m2", + fileId = "138114", + text = "helm_goggles_d_01_huf.m2", + value = "helm_goggles_d_01_huf.m2", }, { - fileId = "138292", - text = "helm_leather_b_03venture_nif.m2", - value = "helm_leather_b_03venture_nif.m2", + fileId = "138115", + text = "helm_goggles_d_01_hum.m2", + value = "helm_goggles_d_01_hum.m2", }, { - fileId = "138293", - text = "helm_leather_b_03venture_nim.m2", - value = "helm_leather_b_03venture_nim.m2", + fileId = "138116", + text = "helm_goggles_d_01_nif.m2", + value = "helm_goggles_d_01_nif.m2", }, { - fileId = "138294", - text = "helm_leather_b_03venture_orf.m2", - value = "helm_leather_b_03venture_orf.m2", + fileId = "138117", + text = "helm_goggles_d_01_nim.m2", + value = "helm_goggles_d_01_nim.m2", }, { - fileId = "138295", - text = "helm_leather_b_03venture_orm.m2", - value = "helm_leather_b_03venture_orm.m2", + fileId = "138118", + text = "helm_goggles_d_01_orf.m2", + value = "helm_goggles_d_01_orf.m2", }, { - fileId = "138296", - text = "helm_leather_b_03venture_scf.m2", - value = "helm_leather_b_03venture_scf.m2", + fileId = "138119", + text = "helm_goggles_d_01_orm.m2", + value = "helm_goggles_d_01_orm.m2", }, { - fileId = "138297", - text = "helm_leather_b_03venture_scm.m2", - value = "helm_leather_b_03venture_scm.m2", + fileId = "138120", + text = "helm_goggles_d_01_scf.m2", + value = "helm_goggles_d_01_scf.m2", }, { - fileId = "138298", - text = "helm_leather_b_03venture_taf.m2", - value = "helm_leather_b_03venture_taf.m2", + fileId = "138121", + text = "helm_goggles_d_01_scm.m2", + value = "helm_goggles_d_01_scm.m2", }, { - fileId = "138299", - text = "helm_leather_b_03venture_tam.m2", - value = "helm_leather_b_03venture_tam.m2", + fileId = "138122", + text = "helm_goggles_d_01_taf.m2", + value = "helm_goggles_d_01_taf.m2", }, { - fileId = "138300", - text = "helm_leather_b_03venture_trf.m2", - value = "helm_leather_b_03venture_trf.m2", + fileId = "138123", + text = "helm_goggles_d_01_tam.m2", + value = "helm_goggles_d_01_tam.m2", }, { - fileId = "138301", - text = "helm_leather_b_03venture_trm.m2", - value = "helm_leather_b_03venture_trm.m2", + fileId = "138124", + text = "helm_goggles_d_01_trf.m2", + value = "helm_goggles_d_01_trf.m2", }, { - fileId = "138302", - text = "helm_leather_b_06_bef.m2", - value = "helm_leather_b_06_bef.m2", + fileId = "138125", + text = "helm_goggles_d_01_trm.m2", + value = "helm_goggles_d_01_trm.m2", }, { - fileId = "138303", - text = "helm_leather_b_06_bem.m2", - value = "helm_leather_b_06_bem.m2", + fileId = "454100", + text = "helm_goggles_d_01_wof.m2", + value = "helm_goggles_d_01_wof.m2", }, { - fileId = "138304", - text = "helm_leather_b_06_drf.m2", - value = "helm_leather_b_06_drf.m2", + fileId = "430003", + text = "helm_goggles_d_01_wom.m2", + value = "helm_goggles_d_01_wom.m2", }, { - fileId = "138305", - text = "helm_leather_b_06_drm.m2", - value = "helm_leather_b_06_drm.m2", + fileId = "351462", + text = "helm_goggles_d_02_bef.m2", + value = "helm_goggles_d_02_bef.m2", }, { - fileId = "138306", - text = "helm_leather_b_06_dwf.m2", - value = "helm_leather_b_06_dwf.m2", + fileId = "351463", + text = "helm_goggles_d_02_bem.m2", + value = "helm_goggles_d_02_bem.m2", }, { - fileId = "138307", - text = "helm_leather_b_06_dwm.m2", - value = "helm_leather_b_06_dwm.m2", + fileId = "351464", + text = "helm_goggles_d_02_drf.m2", + value = "helm_goggles_d_02_drf.m2", }, { - fileId = "138308", - text = "helm_leather_b_06_gnf.m2", - value = "helm_leather_b_06_gnf.m2", + fileId = "351465", + text = "helm_goggles_d_02_drm.m2", + value = "helm_goggles_d_02_drm.m2", }, { - fileId = "138309", - text = "helm_leather_b_06_gnm.m2", - value = "helm_leather_b_06_gnm.m2", + fileId = "351466", + text = "helm_goggles_d_02_dwf.m2", + value = "helm_goggles_d_02_dwf.m2", }, { - fileId = "138310", - text = "helm_leather_b_06_gof.m2", - value = "helm_leather_b_06_gof.m2", + fileId = "351467", + text = "helm_goggles_d_02_dwm.m2", + value = "helm_goggles_d_02_dwm.m2", }, { - fileId = "138311", - text = "helm_leather_b_06_huf.m2", - value = "helm_leather_b_06_huf.m2", + fileId = "351468", + text = "helm_goggles_d_02_gnf.m2", + value = "helm_goggles_d_02_gnf.m2", }, { - fileId = "138312", - text = "helm_leather_b_06_hum.m2", - value = "helm_leather_b_06_hum.m2", + fileId = "351469", + text = "helm_goggles_d_02_gnm.m2", + value = "helm_goggles_d_02_gnm.m2", }, { - fileId = "138313", - text = "helm_leather_b_06_nif.m2", - value = "helm_leather_b_06_nif.m2", + fileId = "351470", + text = "helm_goggles_d_02_gof.m2", + value = "helm_goggles_d_02_gof.m2", }, { - fileId = "138314", - text = "helm_leather_b_06_nim.m2", - value = "helm_leather_b_06_nim.m2", + fileId = "351471", + text = "helm_goggles_d_02_gom.m2", + value = "helm_goggles_d_02_gom.m2", }, { - fileId = "138315", - text = "helm_leather_b_06_orf.m2", - value = "helm_leather_b_06_orf.m2", + fileId = "351472", + text = "helm_goggles_d_02_huf.m2", + value = "helm_goggles_d_02_huf.m2", }, { - fileId = "138316", - text = "helm_leather_b_06_orm.m2", - value = "helm_leather_b_06_orm.m2", + fileId = "351473", + text = "helm_goggles_d_02_hum.m2", + value = "helm_goggles_d_02_hum.m2", }, { - fileId = "138317", - text = "helm_leather_b_06_scf.m2", - value = "helm_leather_b_06_scf.m2", + fileId = "351474", + text = "helm_goggles_d_02_nif.m2", + value = "helm_goggles_d_02_nif.m2", }, { - fileId = "138318", - text = "helm_leather_b_06_scm.m2", - value = "helm_leather_b_06_scm.m2", + fileId = "351475", + text = "helm_goggles_d_02_nim.m2", + value = "helm_goggles_d_02_nim.m2", }, { - fileId = "138319", - text = "helm_leather_b_06_taf.m2", - value = "helm_leather_b_06_taf.m2", + fileId = "351476", + text = "helm_goggles_d_02_orf.m2", + value = "helm_goggles_d_02_orf.m2", }, { - fileId = "138320", - text = "helm_leather_b_06_tam.m2", - value = "helm_leather_b_06_tam.m2", + fileId = "351477", + text = "helm_goggles_d_02_orm.m2", + value = "helm_goggles_d_02_orm.m2", }, { - fileId = "138321", - text = "helm_leather_b_06_trf.m2", - value = "helm_leather_b_06_trf.m2", + fileId = "351478", + text = "helm_goggles_d_02_scf.m2", + value = "helm_goggles_d_02_scf.m2", }, { - fileId = "138322", - text = "helm_leather_b_06_trm.m2", - value = "helm_leather_b_06_trm.m2", + fileId = "351479", + text = "helm_goggles_d_02_scm.m2", + value = "helm_goggles_d_02_scm.m2", }, { - fileId = "138336", - text = "helm_leather_blood_c_02_bef.m2", - value = "helm_leather_blood_c_02_bef.m2", + fileId = "351480", + text = "helm_goggles_d_02_taf.m2", + value = "helm_goggles_d_02_taf.m2", }, { - fileId = "138337", - text = "helm_leather_blood_c_02_bem.m2", - value = "helm_leather_blood_c_02_bem.m2", + fileId = "351481", + text = "helm_goggles_d_02_tam.m2", + value = "helm_goggles_d_02_tam.m2", }, { - fileId = "138338", - text = "helm_leather_blood_c_02_drf.m2", - value = "helm_leather_blood_c_02_drf.m2", + fileId = "351482", + text = "helm_goggles_d_02_trf.m2", + value = "helm_goggles_d_02_trf.m2", }, { - fileId = "138339", - text = "helm_leather_blood_c_02_drm.m2", - value = "helm_leather_blood_c_02_drm.m2", + fileId = "351483", + text = "helm_goggles_d_02_trm.m2", + value = "helm_goggles_d_02_trm.m2", }, { - fileId = "138340", - text = "helm_leather_blood_c_02_dwf.m2", - value = "helm_leather_blood_c_02_dwf.m2", + fileId = "454101", + text = "helm_goggles_d_02_wof.m2", + value = "helm_goggles_d_02_wof.m2", }, { - fileId = "138341", - text = "helm_leather_blood_c_02_dwm.m2", - value = "helm_leather_blood_c_02_dwm.m2", + fileId = "463015", + text = "helm_goggles_d_02_wom.m2", + value = "helm_goggles_d_02_wom.m2", }, { - fileId = "138342", - text = "helm_leather_blood_c_02_gnf.m2", - value = "helm_leather_blood_c_02_gnf.m2", + fileId = "237836", + text = "helm_goggles_xray_a_01_bef.m2", + value = "helm_goggles_xray_a_01_bef.m2", }, { - fileId = "138343", - text = "helm_leather_blood_c_02_gnm.m2", - value = "helm_leather_blood_c_02_gnm.m2", + fileId = "237837", + text = "helm_goggles_xray_a_01_bem.m2", + value = "helm_goggles_xray_a_01_bem.m2", }, { - fileId = "138344", - text = "helm_leather_blood_c_02_gof.m2", - value = "helm_leather_blood_c_02_gof.m2", + fileId = "237838", + text = "helm_goggles_xray_a_01_drf.m2", + value = "helm_goggles_xray_a_01_drf.m2", }, { - fileId = "138345", - text = "helm_leather_blood_c_02_gom.m2", - value = "helm_leather_blood_c_02_gom.m2", + fileId = "237839", + text = "helm_goggles_xray_a_01_drm.m2", + value = "helm_goggles_xray_a_01_drm.m2", }, { - fileId = "138346", - text = "helm_leather_blood_c_02_huf.m2", - value = "helm_leather_blood_c_02_huf.m2", + fileId = "237840", + text = "helm_goggles_xray_a_01_dwf.m2", + value = "helm_goggles_xray_a_01_dwf.m2", }, { - fileId = "138347", - text = "helm_leather_blood_c_02_hum.m2", - value = "helm_leather_blood_c_02_hum.m2", + fileId = "237841", + text = "helm_goggles_xray_a_01_dwm.m2", + value = "helm_goggles_xray_a_01_dwm.m2", }, { - fileId = "138348", - text = "helm_leather_blood_c_02_nif.m2", - value = "helm_leather_blood_c_02_nif.m2", + fileId = "237842", + text = "helm_goggles_xray_a_01_gnf.m2", + value = "helm_goggles_xray_a_01_gnf.m2", }, { - fileId = "138349", - text = "helm_leather_blood_c_02_nim.m2", - value = "helm_leather_blood_c_02_nim.m2", + fileId = "237843", + text = "helm_goggles_xray_a_01_gnm.m2", + value = "helm_goggles_xray_a_01_gnm.m2", }, { - fileId = "138350", - text = "helm_leather_blood_c_02_orf.m2", - value = "helm_leather_blood_c_02_orf.m2", + fileId = "237844", + text = "helm_goggles_xray_a_01_gof.m2", + value = "helm_goggles_xray_a_01_gof.m2", }, { - fileId = "138351", - text = "helm_leather_blood_c_02_orm.m2", - value = "helm_leather_blood_c_02_orm.m2", + fileId = "237845", + text = "helm_goggles_xray_a_01_gom.m2", + value = "helm_goggles_xray_a_01_gom.m2", }, { - fileId = "138352", - text = "helm_leather_blood_c_02_scf.m2", - value = "helm_leather_blood_c_02_scf.m2", + fileId = "237846", + text = "helm_goggles_xray_a_01_huf.m2", + value = "helm_goggles_xray_a_01_huf.m2", }, { - fileId = "138353", - text = "helm_leather_blood_c_02_scm.m2", - value = "helm_leather_blood_c_02_scm.m2", + fileId = "237847", + text = "helm_goggles_xray_a_01_hum.m2", + value = "helm_goggles_xray_a_01_hum.m2", }, { - fileId = "138354", - text = "helm_leather_blood_c_02_taf.m2", - value = "helm_leather_blood_c_02_taf.m2", + fileId = "237848", + text = "helm_goggles_xray_a_01_nif.m2", + value = "helm_goggles_xray_a_01_nif.m2", }, { - fileId = "138355", - text = "helm_leather_blood_c_02_tam.m2", - value = "helm_leather_blood_c_02_tam.m2", + fileId = "237849", + text = "helm_goggles_xray_a_01_nim.m2", + value = "helm_goggles_xray_a_01_nim.m2", }, { - fileId = "138356", - text = "helm_leather_blood_c_02_trf.m2", - value = "helm_leather_blood_c_02_trf.m2", + fileId = "237850", + text = "helm_goggles_xray_a_01_orf.m2", + value = "helm_goggles_xray_a_01_orf.m2", }, { - fileId = "138357", - text = "helm_leather_blood_c_02_trm.m2", - value = "helm_leather_blood_c_02_trm.m2", + fileId = "237851", + text = "helm_goggles_xray_a_01_orm.m2", + value = "helm_goggles_xray_a_01_orm.m2", }, { - fileId = "138358", - text = "helm_leather_d_01_bef.m2", - value = "helm_leather_d_01_bef.m2", + fileId = "237852", + text = "helm_goggles_xray_a_01_scf.m2", + value = "helm_goggles_xray_a_01_scf.m2", }, { - fileId = "138359", - text = "helm_leather_d_01_bem.m2", - value = "helm_leather_d_01_bem.m2", + fileId = "237853", + text = "helm_goggles_xray_a_01_scm.m2", + value = "helm_goggles_xray_a_01_scm.m2", }, { - fileId = "138360", - text = "helm_leather_d_01_drf.m2", - value = "helm_leather_d_01_drf.m2", + fileId = "237854", + text = "helm_goggles_xray_a_01_taf.m2", + value = "helm_goggles_xray_a_01_taf.m2", }, { - fileId = "138361", - text = "helm_leather_d_01_drm.m2", - value = "helm_leather_d_01_drm.m2", + fileId = "237855", + text = "helm_goggles_xray_a_01_tam.m2", + value = "helm_goggles_xray_a_01_tam.m2", }, { - fileId = "138362", - text = "helm_leather_d_01_dwf.m2", - value = "helm_leather_d_01_dwf.m2", + fileId = "237856", + text = "helm_goggles_xray_a_01_trf.m2", + value = "helm_goggles_xray_a_01_trf.m2", }, { - fileId = "138363", - text = "helm_leather_d_01_dwm.m2", - value = "helm_leather_d_01_dwm.m2", + fileId = "237857", + text = "helm_goggles_xray_a_01_trm.m2", + value = "helm_goggles_xray_a_01_trm.m2", }, { - fileId = "138364", - text = "helm_leather_d_01_gnf.m2", - value = "helm_leather_d_01_gnf.m2", + fileId = "454102", + text = "helm_goggles_xray_a_01_wof.m2", + value = "helm_goggles_xray_a_01_wof.m2", }, { - fileId = "138365", - text = "helm_leather_d_01_gnm.m2", - value = "helm_leather_d_01_gnm.m2", + fileId = "411687", + text = "helm_goggles_xray_a_01_wom.m2", + value = "helm_goggles_xray_a_01_wom.m2", }, { - fileId = "138366", - text = "helm_leather_d_01_gof.m2", - value = "helm_leather_d_01_gof.m2", + fileId = "138137", + text = "helm_leather_a_01_bef.m2", + value = "helm_leather_a_01_bef.m2", }, { - fileId = "138367", - text = "helm_leather_d_01_gom.m2", - value = "helm_leather_d_01_gom.m2", + fileId = "138138", + text = "helm_leather_a_01_bem.m2", + value = "helm_leather_a_01_bem.m2", }, { - fileId = "138368", - text = "helm_leather_d_01_huf.m2", - value = "helm_leather_d_01_huf.m2", + fileId = "138139", + text = "helm_leather_a_01_drf.m2", + value = "helm_leather_a_01_drf.m2", }, { - fileId = "138369", - text = "helm_leather_d_01_hum.m2", - value = "helm_leather_d_01_hum.m2", - }, - { - fileId = "138370", - text = "helm_leather_d_01_nif.m2", - value = "helm_leather_d_01_nif.m2", + fileId = "138140", + text = "helm_leather_a_01_drm.m2", + value = "helm_leather_a_01_drm.m2", }, { - fileId = "138371", - text = "helm_leather_d_01_nim.m2", - value = "helm_leather_d_01_nim.m2", + fileId = "138141", + text = "helm_leather_a_01_dwf.m2", + value = "helm_leather_a_01_dwf.m2", }, { - fileId = "138372", - text = "helm_leather_d_01_orf.m2", - value = "helm_leather_d_01_orf.m2", + fileId = "138142", + text = "helm_leather_a_01_dwm.m2", + value = "helm_leather_a_01_dwm.m2", }, { - fileId = "138373", - text = "helm_leather_d_01_orm.m2", - value = "helm_leather_d_01_orm.m2", + fileId = "138143", + text = "helm_leather_a_01_gnf.m2", + value = "helm_leather_a_01_gnf.m2", }, { - fileId = "138374", - text = "helm_leather_d_01_scf.m2", - value = "helm_leather_d_01_scf.m2", + fileId = "138144", + text = "helm_leather_a_01_gnm.m2", + value = "helm_leather_a_01_gnm.m2", }, { - fileId = "138375", - text = "helm_leather_d_01_scm.m2", - value = "helm_leather_d_01_scm.m2", + fileId = "138145", + text = "helm_leather_a_01_gof.m2", + value = "helm_leather_a_01_gof.m2", }, { - fileId = "138376", - text = "helm_leather_d_01_taf.m2", - value = "helm_leather_d_01_taf.m2", + fileId = "138146", + text = "helm_leather_a_01_gom.m2", + value = "helm_leather_a_01_gom.m2", }, { - fileId = "138377", - text = "helm_leather_d_01_tam.m2", - value = "helm_leather_d_01_tam.m2", + fileId = "138147", + text = "helm_leather_a_01_huf.m2", + value = "helm_leather_a_01_huf.m2", }, { - fileId = "138378", - text = "helm_leather_d_01_trf.m2", - value = "helm_leather_d_01_trf.m2", + fileId = "138148", + text = "helm_leather_a_01_hum.m2", + value = "helm_leather_a_01_hum.m2", }, { - fileId = "138379", - text = "helm_leather_d_01_trm.m2", - value = "helm_leather_d_01_trm.m2", + fileId = "138149", + text = "helm_leather_a_01_nif.m2", + value = "helm_leather_a_01_nif.m2", }, { - fileId = "138389", - text = "helm_leather_d_02_bef.m2", - value = "helm_leather_d_02_bef.m2", + fileId = "138150", + text = "helm_leather_a_01_nim.m2", + value = "helm_leather_a_01_nim.m2", }, { - fileId = "138390", - text = "helm_leather_d_02_bem.m2", - value = "helm_leather_d_02_bem.m2", + fileId = "138151", + text = "helm_leather_a_01_orf.m2", + value = "helm_leather_a_01_orf.m2", }, { - fileId = "138391", - text = "helm_leather_d_02_drf.m2", - value = "helm_leather_d_02_drf.m2", + fileId = "138152", + text = "helm_leather_a_01_orm.m2", + value = "helm_leather_a_01_orm.m2", }, { - fileId = "138392", - text = "helm_leather_d_02_drm.m2", - value = "helm_leather_d_02_drm.m2", + fileId = "138153", + text = "helm_leather_a_01_scf.m2", + value = "helm_leather_a_01_scf.m2", }, { - fileId = "138393", - text = "helm_leather_d_02_dwf.m2", - value = "helm_leather_d_02_dwf.m2", + fileId = "138154", + text = "helm_leather_a_01_scm.m2", + value = "helm_leather_a_01_scm.m2", }, { - fileId = "138394", - text = "helm_leather_d_02_dwm.m2", - value = "helm_leather_d_02_dwm.m2", + fileId = "138155", + text = "helm_leather_a_01_taf.m2", + value = "helm_leather_a_01_taf.m2", }, { - fileId = "138395", - text = "helm_leather_d_02_gnf.m2", - value = "helm_leather_d_02_gnf.m2", + fileId = "138156", + text = "helm_leather_a_01_tam.m2", + value = "helm_leather_a_01_tam.m2", }, { - fileId = "138396", - text = "helm_leather_d_02_gnm.m2", - value = "helm_leather_d_02_gnm.m2", + fileId = "138157", + text = "helm_leather_a_01_trf.m2", + value = "helm_leather_a_01_trf.m2", }, { - fileId = "138397", - text = "helm_leather_d_02_gof.m2", - value = "helm_leather_d_02_gof.m2", + fileId = "138158", + text = "helm_leather_a_01_trm.m2", + value = "helm_leather_a_01_trm.m2", }, { - fileId = "138398", - text = "helm_leather_d_02_gom.m2", - value = "helm_leather_d_02_gom.m2", + fileId = "454106", + text = "helm_leather_a_01_wof.m2", + value = "helm_leather_a_01_wof.m2", }, { - fileId = "138399", - text = "helm_leather_d_02_huf.m2", - value = "helm_leather_d_02_huf.m2", + fileId = "424560", + text = "helm_leather_a_01_wom.m2", + value = "helm_leather_a_01_wom.m2", }, { - fileId = "138400", - text = "helm_leather_d_02_hum.m2", - value = "helm_leather_d_02_hum.m2", + fileId = "138167", + text = "helm_leather_a_02_bef.m2", + value = "helm_leather_a_02_bef.m2", }, { - fileId = "138401", - text = "helm_leather_d_02_nif.m2", - value = "helm_leather_d_02_nif.m2", + fileId = "138168", + text = "helm_leather_a_02_bem.m2", + value = "helm_leather_a_02_bem.m2", }, { - fileId = "138402", - text = "helm_leather_d_02_nim.m2", - value = "helm_leather_d_02_nim.m2", + fileId = "138169", + text = "helm_leather_a_02_drf.m2", + value = "helm_leather_a_02_drf.m2", }, { - fileId = "138403", - text = "helm_leather_d_02_orf.m2", - value = "helm_leather_d_02_orf.m2", + fileId = "138170", + text = "helm_leather_a_02_drm.m2", + value = "helm_leather_a_02_drm.m2", }, { - fileId = "138404", - text = "helm_leather_d_02_orm.m2", - value = "helm_leather_d_02_orm.m2", + fileId = "138171", + text = "helm_leather_a_02_dwf.m2", + value = "helm_leather_a_02_dwf.m2", }, { - fileId = "138405", - text = "helm_leather_d_02_scf.m2", - value = "helm_leather_d_02_scf.m2", + fileId = "138172", + text = "helm_leather_a_02_dwm.m2", + value = "helm_leather_a_02_dwm.m2", }, { - fileId = "138406", - text = "helm_leather_d_02_scm.m2", - value = "helm_leather_d_02_scm.m2", + fileId = "138173", + text = "helm_leather_a_02_gnf.m2", + value = "helm_leather_a_02_gnf.m2", }, { - fileId = "138407", - text = "helm_leather_d_02_taf.m2", - value = "helm_leather_d_02_taf.m2", + fileId = "138174", + text = "helm_leather_a_02_gnm.m2", + value = "helm_leather_a_02_gnm.m2", }, { - fileId = "138408", - text = "helm_leather_d_02_tam.m2", - value = "helm_leather_d_02_tam.m2", + fileId = "138175", + text = "helm_leather_a_02_gof.m2", + value = "helm_leather_a_02_gof.m2", }, { - fileId = "138409", - text = "helm_leather_d_02_trf.m2", - value = "helm_leather_d_02_trf.m2", + fileId = "138176", + text = "helm_leather_a_02_gom.m2", + value = "helm_leather_a_02_gom.m2", }, { - fileId = "138410", - text = "helm_leather_d_02_trm.m2", - value = "helm_leather_d_02_trm.m2", + fileId = "138177", + text = "helm_leather_a_02_huf.m2", + value = "helm_leather_a_02_huf.m2", }, { - fileId = "138419", - text = "helm_leather_dungeondruid_a_01_bef.m2", - value = "helm_leather_dungeondruid_a_01_bef.m2", + fileId = "138178", + text = "helm_leather_a_02_hum.m2", + value = "helm_leather_a_02_hum.m2", }, { - fileId = "138420", - text = "helm_leather_dungeondruid_a_01_bem.m2", - value = "helm_leather_dungeondruid_a_01_bem.m2", + fileId = "138179", + text = "helm_leather_a_02_nif.m2", + value = "helm_leather_a_02_nif.m2", }, { - fileId = "138421", - text = "helm_leather_dungeondruid_a_01_drf.m2", - value = "helm_leather_dungeondruid_a_01_drf.m2", + fileId = "138180", + text = "helm_leather_a_02_nim.m2", + value = "helm_leather_a_02_nim.m2", }, { - fileId = "138422", - text = "helm_leather_dungeondruid_a_01_drm.m2", - value = "helm_leather_dungeondruid_a_01_drm.m2", + fileId = "138181", + text = "helm_leather_a_02_orf.m2", + value = "helm_leather_a_02_orf.m2", }, { - fileId = "138423", - text = "helm_leather_dungeondruid_a_01_dwf.m2", - value = "helm_leather_dungeondruid_a_01_dwf.m2", + fileId = "138182", + text = "helm_leather_a_02_orm.m2", + value = "helm_leather_a_02_orm.m2", }, { - fileId = "138424", - text = "helm_leather_dungeondruid_a_01_dwm.m2", - value = "helm_leather_dungeondruid_a_01_dwm.m2", + fileId = "138183", + text = "helm_leather_a_02_scf.m2", + value = "helm_leather_a_02_scf.m2", }, { - fileId = "138425", - text = "helm_leather_dungeondruid_a_01_gnf.m2", - value = "helm_leather_dungeondruid_a_01_gnf.m2", + fileId = "138184", + text = "helm_leather_a_02_scm.m2", + value = "helm_leather_a_02_scm.m2", }, { - fileId = "138426", - text = "helm_leather_dungeondruid_a_01_gnm.m2", - value = "helm_leather_dungeondruid_a_01_gnm.m2", + fileId = "138185", + text = "helm_leather_a_02_taf.m2", + value = "helm_leather_a_02_taf.m2", }, { - fileId = "138427", - text = "helm_leather_dungeondruid_a_01_gom.m2", - value = "helm_leather_dungeondruid_a_01_gom.m2", + fileId = "138186", + text = "helm_leather_a_02_tam.m2", + value = "helm_leather_a_02_tam.m2", }, { - fileId = "138428", - text = "helm_leather_dungeondruid_a_01_huf.m2", - value = "helm_leather_dungeondruid_a_01_huf.m2", + fileId = "138187", + text = "helm_leather_a_02_trf.m2", + value = "helm_leather_a_02_trf.m2", }, { - fileId = "138429", - text = "helm_leather_dungeondruid_a_01_hum.m2", - value = "helm_leather_dungeondruid_a_01_hum.m2", + fileId = "138188", + text = "helm_leather_a_02_trm.m2", + value = "helm_leather_a_02_trm.m2", }, { - fileId = "138430", - text = "helm_leather_dungeondruid_a_01_nif.m2", - value = "helm_leather_dungeondruid_a_01_nif.m2", + fileId = "454107", + text = "helm_leather_a_02_wof.m2", + value = "helm_leather_a_02_wof.m2", }, { - fileId = "138431", - text = "helm_leather_dungeondruid_a_01_nim.m2", - value = "helm_leather_dungeondruid_a_01_nim.m2", + fileId = "424561", + text = "helm_leather_a_02_wom.m2", + value = "helm_leather_a_02_wom.m2", }, { - fileId = "138432", - text = "helm_leather_dungeondruid_a_01_orf.m2", - value = "helm_leather_dungeondruid_a_01_orf.m2", + fileId = "138194", + text = "helm_leather_a_03defias_bef.m2", + value = "helm_leather_a_03defias_bef.m2", }, { - fileId = "138433", - text = "helm_leather_dungeondruid_a_01_orm.m2", - value = "helm_leather_dungeondruid_a_01_orm.m2", + fileId = "138195", + text = "helm_leather_a_03defias_bem.m2", + value = "helm_leather_a_03defias_bem.m2", }, { - fileId = "138435", - text = "helm_leather_dungeondruid_a_01_scf.m2", - value = "helm_leather_dungeondruid_a_01_scf.m2", + fileId = "138196", + text = "helm_leather_a_03defias_drf.m2", + value = "helm_leather_a_03defias_drf.m2", }, { - fileId = "138436", - text = "helm_leather_dungeondruid_a_01_scm.m2", - value = "helm_leather_dungeondruid_a_01_scm.m2", + fileId = "138197", + text = "helm_leather_a_03defias_drm.m2", + value = "helm_leather_a_03defias_drm.m2", }, { - fileId = "138437", - text = "helm_leather_dungeondruid_a_01_taf.m2", - value = "helm_leather_dungeondruid_a_01_taf.m2", + fileId = "138198", + text = "helm_leather_a_03defias_dwf.m2", + value = "helm_leather_a_03defias_dwf.m2", }, { - fileId = "138438", - text = "helm_leather_dungeondruid_a_01_tam.m2", - value = "helm_leather_dungeondruid_a_01_tam.m2", + fileId = "138199", + text = "helm_leather_a_03defias_dwm.m2", + value = "helm_leather_a_03defias_dwm.m2", }, { - fileId = "138439", - text = "helm_leather_dungeondruid_a_01_trf.m2", - value = "helm_leather_dungeondruid_a_01_trf.m2", + fileId = "138200", + text = "helm_leather_a_03defias_gnf.m2", + value = "helm_leather_a_03defias_gnf.m2", }, { - fileId = "138440", - text = "helm_leather_dungeondruid_a_01_trm.m2", - value = "helm_leather_dungeondruid_a_01_trm.m2", + fileId = "138201", + text = "helm_leather_a_03defias_gnm.m2", + value = "helm_leather_a_03defias_gnm.m2", }, { - fileId = "138445", - text = "helm_leather_dungeondruid_b_01_bef.m2", - value = "helm_leather_dungeondruid_b_01_bef.m2", + fileId = "138202", + text = "helm_leather_a_03defias_gof.m2", + value = "helm_leather_a_03defias_gof.m2", }, { - fileId = "138446", - text = "helm_leather_dungeondruid_b_01_bem.m2", - value = "helm_leather_dungeondruid_b_01_bem.m2", + fileId = "138203", + text = "helm_leather_a_03defias_gom.m2", + value = "helm_leather_a_03defias_gom.m2", }, { - fileId = "138447", - text = "helm_leather_dungeondruid_b_01_drf.m2", - value = "helm_leather_dungeondruid_b_01_drf.m2", + fileId = "138204", + text = "helm_leather_a_03defias_huf.m2", + value = "helm_leather_a_03defias_huf.m2", }, { - fileId = "138448", - text = "helm_leather_dungeondruid_b_01_drm.m2", - value = "helm_leather_dungeondruid_b_01_drm.m2", + fileId = "138205", + text = "helm_leather_a_03defias_hum.m2", + value = "helm_leather_a_03defias_hum.m2", }, { - fileId = "138449", - text = "helm_leather_dungeondruid_b_01_dwf.m2", - value = "helm_leather_dungeondruid_b_01_dwf.m2", + fileId = "138206", + text = "helm_leather_a_03defias_nif.m2", + value = "helm_leather_a_03defias_nif.m2", }, { - fileId = "138450", - text = "helm_leather_dungeondruid_b_01_dwm.m2", - value = "helm_leather_dungeondruid_b_01_dwm.m2", + fileId = "138207", + text = "helm_leather_a_03defias_nim.m2", + value = "helm_leather_a_03defias_nim.m2", }, { - fileId = "138451", - text = "helm_leather_dungeondruid_b_01_gnf.m2", - value = "helm_leather_dungeondruid_b_01_gnf.m2", + fileId = "138208", + text = "helm_leather_a_03defias_orf.m2", + value = "helm_leather_a_03defias_orf.m2", }, { - fileId = "138452", - text = "helm_leather_dungeondruid_b_01_gnm.m2", - value = "helm_leather_dungeondruid_b_01_gnm.m2", + fileId = "138209", + text = "helm_leather_a_03defias_orm.m2", + value = "helm_leather_a_03defias_orm.m2", }, { - fileId = "138453", - text = "helm_leather_dungeondruid_b_01_gof.m2", - value = "helm_leather_dungeondruid_b_01_gof.m2", + fileId = "138210", + text = "helm_leather_a_03defias_scf.m2", + value = "helm_leather_a_03defias_scf.m2", }, { - fileId = "138454", - text = "helm_leather_dungeondruid_b_01_gom.m2", - value = "helm_leather_dungeondruid_b_01_gom.m2", + fileId = "138211", + text = "helm_leather_a_03defias_scm.m2", + value = "helm_leather_a_03defias_scm.m2", }, { - fileId = "138455", - text = "helm_leather_dungeondruid_b_01_huf.m2", - value = "helm_leather_dungeondruid_b_01_huf.m2", + fileId = "138212", + text = "helm_leather_a_03defias_taf.m2", + value = "helm_leather_a_03defias_taf.m2", }, { - fileId = "138456", - text = "helm_leather_dungeondruid_b_01_hum.m2", - value = "helm_leather_dungeondruid_b_01_hum.m2", + fileId = "138213", + text = "helm_leather_a_03defias_tam.m2", + value = "helm_leather_a_03defias_tam.m2", }, { - fileId = "138457", - text = "helm_leather_dungeondruid_b_01_nif.m2", - value = "helm_leather_dungeondruid_b_01_nif.m2", + fileId = "138214", + text = "helm_leather_a_03defias_trf.m2", + value = "helm_leather_a_03defias_trf.m2", }, { - fileId = "138458", - text = "helm_leather_dungeondruid_b_01_nim.m2", - value = "helm_leather_dungeondruid_b_01_nim.m2", + fileId = "138215", + text = "helm_leather_a_03defias_trm.m2", + value = "helm_leather_a_03defias_trm.m2", }, { - fileId = "138459", - text = "helm_leather_dungeondruid_b_01_orf.m2", - value = "helm_leather_dungeondruid_b_01_orf.m2", + fileId = "454108", + text = "helm_leather_a_03defias_wof.m2", + value = "helm_leather_a_03defias_wof.m2", }, { - fileId = "138460", - text = "helm_leather_dungeondruid_b_01_orm.m2", - value = "helm_leather_dungeondruid_b_01_orm.m2", + fileId = "430004", + text = "helm_leather_a_03defias_wom.m2", + value = "helm_leather_a_03defias_wom.m2", }, { - fileId = "138461", - text = "helm_leather_dungeondruid_b_01_scf.m2", - value = "helm_leather_dungeondruid_b_01_scf.m2", + fileId = "138223", + text = "helm_leather_ahnqiraj_a_01_bef.m2", + value = "helm_leather_ahnqiraj_a_01_bef.m2", }, { - fileId = "138462", - text = "helm_leather_dungeondruid_b_01_scm.m2", - value = "helm_leather_dungeondruid_b_01_scm.m2", + fileId = "138224", + text = "helm_leather_ahnqiraj_a_01_bem.m2", + value = "helm_leather_ahnqiraj_a_01_bem.m2", }, { - fileId = "138463", - text = "helm_leather_dungeondruid_b_01_taf.m2", - value = "helm_leather_dungeondruid_b_01_taf.m2", + fileId = "138225", + text = "helm_leather_ahnqiraj_a_01_drf.m2", + value = "helm_leather_ahnqiraj_a_01_drf.m2", }, { - fileId = "138464", - text = "helm_leather_dungeondruid_b_01_tam.m2", - value = "helm_leather_dungeondruid_b_01_tam.m2", + fileId = "138226", + text = "helm_leather_ahnqiraj_a_01_drm.m2", + value = "helm_leather_ahnqiraj_a_01_drm.m2", }, { - fileId = "138465", - text = "helm_leather_dungeondruid_b_01_trf.m2", - value = "helm_leather_dungeondruid_b_01_trf.m2", + fileId = "138227", + text = "helm_leather_ahnqiraj_a_01_dwf.m2", + value = "helm_leather_ahnqiraj_a_01_dwf.m2", }, { - fileId = "138466", - text = "helm_leather_dungeondruid_b_01_trm.m2", - value = "helm_leather_dungeondruid_b_01_trm.m2", + fileId = "138228", + text = "helm_leather_ahnqiraj_a_01_dwm.m2", + value = "helm_leather_ahnqiraj_a_01_dwm.m2", }, { - fileId = "237858", - text = "helm_leather_dungeonleather_c_01_bef.m2", - value = "helm_leather_dungeonleather_c_01_bef.m2", + fileId = "138229", + text = "helm_leather_ahnqiraj_a_01_gnf.m2", + value = "helm_leather_ahnqiraj_a_01_gnf.m2", }, { - fileId = "237859", - text = "helm_leather_dungeonleather_c_01_bem.m2", - value = "helm_leather_dungeonleather_c_01_bem.m2", + fileId = "138230", + text = "helm_leather_ahnqiraj_a_01_gnm.m2", + value = "helm_leather_ahnqiraj_a_01_gnm.m2", }, { - fileId = "237860", - text = "helm_leather_dungeonleather_c_01_drf.m2", - value = "helm_leather_dungeonleather_c_01_drf.m2", + fileId = "138231", + text = "helm_leather_ahnqiraj_a_01_gof.m2", + value = "helm_leather_ahnqiraj_a_01_gof.m2", }, { - fileId = "237861", - text = "helm_leather_dungeonleather_c_01_drm.m2", - value = "helm_leather_dungeonleather_c_01_drm.m2", + fileId = "138232", + text = "helm_leather_ahnqiraj_a_01_gom.m2", + value = "helm_leather_ahnqiraj_a_01_gom.m2", }, { - fileId = "237862", - text = "helm_leather_dungeonleather_c_01_dwf.m2", - value = "helm_leather_dungeonleather_c_01_dwf.m2", + fileId = "138233", + text = "helm_leather_ahnqiraj_a_01_huf.m2", + value = "helm_leather_ahnqiraj_a_01_huf.m2", }, { - fileId = "237863", - text = "helm_leather_dungeonleather_c_01_dwm.m2", - value = "helm_leather_dungeonleather_c_01_dwm.m2", + fileId = "138234", + text = "helm_leather_ahnqiraj_a_01_hum.m2", + value = "helm_leather_ahnqiraj_a_01_hum.m2", }, { - fileId = "237864", - text = "helm_leather_dungeonleather_c_01_gnf.m2", - value = "helm_leather_dungeonleather_c_01_gnf.m2", + fileId = "138235", + text = "helm_leather_ahnqiraj_a_01_nif.m2", + value = "helm_leather_ahnqiraj_a_01_nif.m2", }, { - fileId = "237865", - text = "helm_leather_dungeonleather_c_01_gnm.m2", - value = "helm_leather_dungeonleather_c_01_gnm.m2", + fileId = "138236", + text = "helm_leather_ahnqiraj_a_01_nim.m2", + value = "helm_leather_ahnqiraj_a_01_nim.m2", }, { - fileId = "237866", - text = "helm_leather_dungeonleather_c_01_gof.m2", - value = "helm_leather_dungeonleather_c_01_gof.m2", + fileId = "138237", + text = "helm_leather_ahnqiraj_a_01_orf.m2", + value = "helm_leather_ahnqiraj_a_01_orf.m2", }, { - fileId = "237867", - text = "helm_leather_dungeonleather_c_01_gom.m2", - value = "helm_leather_dungeonleather_c_01_gom.m2", + fileId = "138238", + text = "helm_leather_ahnqiraj_a_01_orm.m2", + value = "helm_leather_ahnqiraj_a_01_orm.m2", }, { - fileId = "237868", - text = "helm_leather_dungeonleather_c_01_huf.m2", - value = "helm_leather_dungeonleather_c_01_huf.m2", + fileId = "138239", + text = "helm_leather_ahnqiraj_a_01_scf.m2", + value = "helm_leather_ahnqiraj_a_01_scf.m2", }, { - fileId = "237869", - text = "helm_leather_dungeonleather_c_01_hum.m2", - value = "helm_leather_dungeonleather_c_01_hum.m2", + fileId = "138240", + text = "helm_leather_ahnqiraj_a_01_scm.m2", + value = "helm_leather_ahnqiraj_a_01_scm.m2", }, { - fileId = "237870", - text = "helm_leather_dungeonleather_c_01_nif.m2", - value = "helm_leather_dungeonleather_c_01_nif.m2", + fileId = "138241", + text = "helm_leather_ahnqiraj_a_01_taf.m2", + value = "helm_leather_ahnqiraj_a_01_taf.m2", }, { - fileId = "237871", - text = "helm_leather_dungeonleather_c_01_nim.m2", - value = "helm_leather_dungeonleather_c_01_nim.m2", + fileId = "138242", + text = "helm_leather_ahnqiraj_a_01_tam.m2", + value = "helm_leather_ahnqiraj_a_01_tam.m2", }, { - fileId = "237872", - text = "helm_leather_dungeonleather_c_01_orf.m2", - value = "helm_leather_dungeonleather_c_01_orf.m2", + fileId = "138243", + text = "helm_leather_ahnqiraj_a_01_trf.m2", + value = "helm_leather_ahnqiraj_a_01_trf.m2", }, { - fileId = "237873", - text = "helm_leather_dungeonleather_c_01_orm.m2", - value = "helm_leather_dungeonleather_c_01_orm.m2", + fileId = "138244", + text = "helm_leather_ahnqiraj_a_01_trm.m2", + value = "helm_leather_ahnqiraj_a_01_trm.m2", }, { - fileId = "237874", - text = "helm_leather_dungeonleather_c_01_scf.m2", - value = "helm_leather_dungeonleather_c_01_scf.m2", + fileId = "454103", + text = "helm_leather_ahnqiraj_a_01_wof.m2", + value = "helm_leather_ahnqiraj_a_01_wof.m2", }, { - fileId = "237875", - text = "helm_leather_dungeonleather_c_01_scm.m2", - value = "helm_leather_dungeonleather_c_01_scm.m2", + fileId = "411688", + text = "helm_leather_ahnqiraj_a_01_wom.m2", + value = "helm_leather_ahnqiraj_a_01_wom.m2", }, { - fileId = "237876", - text = "helm_leather_dungeonleather_c_01_taf.m2", - value = "helm_leather_dungeonleather_c_01_taf.m2", + fileId = "316643", + text = "helm_leather_argentalliance_d_01_bef.m2", + value = "helm_leather_argentalliance_d_01_bef.m2", }, { - fileId = "237877", - text = "helm_leather_dungeonleather_c_01_tam.m2", - value = "helm_leather_dungeonleather_c_01_tam.m2", + fileId = "316644", + text = "helm_leather_argentalliance_d_01_bem.m2", + value = "helm_leather_argentalliance_d_01_bem.m2", }, { - fileId = "237878", - text = "helm_leather_dungeonleather_c_01_trf.m2", - value = "helm_leather_dungeonleather_c_01_trf.m2", + fileId = "316645", + text = "helm_leather_argentalliance_d_01_drf.m2", + value = "helm_leather_argentalliance_d_01_drf.m2", }, { - fileId = "237879", - text = "helm_leather_dungeonleather_c_01_trm.m2", - value = "helm_leather_dungeonleather_c_01_trm.m2", + fileId = "316646", + text = "helm_leather_argentalliance_d_01_drm.m2", + value = "helm_leather_argentalliance_d_01_drm.m2", }, { - fileId = "340349", - text = "helm_leather_dungeonleather_c_02_bef.m2", - value = "helm_leather_dungeonleather_c_02_bef.m2", + fileId = "316647", + text = "helm_leather_argentalliance_d_01_dwf.m2", + value = "helm_leather_argentalliance_d_01_dwf.m2", }, { - fileId = "340350", - text = "helm_leather_dungeonleather_c_02_bem.m2", - value = "helm_leather_dungeonleather_c_02_bem.m2", + fileId = "316648", + text = "helm_leather_argentalliance_d_01_dwm.m2", + value = "helm_leather_argentalliance_d_01_dwm.m2", }, { - fileId = "340351", - text = "helm_leather_dungeonleather_c_02_drf.m2", - value = "helm_leather_dungeonleather_c_02_drf.m2", + fileId = "316649", + text = "helm_leather_argentalliance_d_01_gnf.m2", + value = "helm_leather_argentalliance_d_01_gnf.m2", }, { - fileId = "340352", - text = "helm_leather_dungeonleather_c_02_drm.m2", - value = "helm_leather_dungeonleather_c_02_drm.m2", + fileId = "316650", + text = "helm_leather_argentalliance_d_01_gnm.m2", + value = "helm_leather_argentalliance_d_01_gnm.m2", }, { - fileId = "340353", - text = "helm_leather_dungeonleather_c_02_dwf.m2", - value = "helm_leather_dungeonleather_c_02_dwf.m2", + fileId = "316651", + text = "helm_leather_argentalliance_d_01_gof.m2", + value = "helm_leather_argentalliance_d_01_gof.m2", }, { - fileId = "340354", - text = "helm_leather_dungeonleather_c_02_dwm.m2", - value = "helm_leather_dungeonleather_c_02_dwm.m2", + fileId = "316652", + text = "helm_leather_argentalliance_d_01_gom.m2", + value = "helm_leather_argentalliance_d_01_gom.m2", }, { - fileId = "340355", - text = "helm_leather_dungeonleather_c_02_gnf.m2", - value = "helm_leather_dungeonleather_c_02_gnf.m2", + fileId = "316653", + text = "helm_leather_argentalliance_d_01_huf.m2", + value = "helm_leather_argentalliance_d_01_huf.m2", }, { - fileId = "340356", - text = "helm_leather_dungeonleather_c_02_gnm.m2", - value = "helm_leather_dungeonleather_c_02_gnm.m2", + fileId = "316654", + text = "helm_leather_argentalliance_d_01_hum.m2", + value = "helm_leather_argentalliance_d_01_hum.m2", }, { - fileId = "340357", - text = "helm_leather_dungeonleather_c_02_gof.m2", - value = "helm_leather_dungeonleather_c_02_gof.m2", + fileId = "316655", + text = "helm_leather_argentalliance_d_01_nif.m2", + value = "helm_leather_argentalliance_d_01_nif.m2", }, { - fileId = "340358", - text = "helm_leather_dungeonleather_c_02_gom.m2", - value = "helm_leather_dungeonleather_c_02_gom.m2", + fileId = "316656", + text = "helm_leather_argentalliance_d_01_nim.m2", + value = "helm_leather_argentalliance_d_01_nim.m2", }, { - fileId = "340359", - text = "helm_leather_dungeonleather_c_02_huf.m2", - value = "helm_leather_dungeonleather_c_02_huf.m2", + fileId = "316657", + text = "helm_leather_argentalliance_d_01_orf.m2", + value = "helm_leather_argentalliance_d_01_orf.m2", }, { - fileId = "340360", - text = "helm_leather_dungeonleather_c_02_hum.m2", - value = "helm_leather_dungeonleather_c_02_hum.m2", + fileId = "316658", + text = "helm_leather_argentalliance_d_01_orm.m2", + value = "helm_leather_argentalliance_d_01_orm.m2", }, { - fileId = "340361", - text = "helm_leather_dungeonleather_c_02_nif.m2", - value = "helm_leather_dungeonleather_c_02_nif.m2", + fileId = "316659", + text = "helm_leather_argentalliance_d_01_scf.m2", + value = "helm_leather_argentalliance_d_01_scf.m2", }, { - fileId = "340362", - text = "helm_leather_dungeonleather_c_02_nim.m2", - value = "helm_leather_dungeonleather_c_02_nim.m2", + fileId = "316660", + text = "helm_leather_argentalliance_d_01_scm.m2", + value = "helm_leather_argentalliance_d_01_scm.m2", }, { - fileId = "340363", - text = "helm_leather_dungeonleather_c_02_orf.m2", - value = "helm_leather_dungeonleather_c_02_orf.m2", + fileId = "316661", + text = "helm_leather_argentalliance_d_01_taf.m2", + value = "helm_leather_argentalliance_d_01_taf.m2", }, { - fileId = "340364", - text = "helm_leather_dungeonleather_c_02_orm.m2", - value = "helm_leather_dungeonleather_c_02_orm.m2", + fileId = "316662", + text = "helm_leather_argentalliance_d_01_tam.m2", + value = "helm_leather_argentalliance_d_01_tam.m2", }, { - fileId = "340365", - text = "helm_leather_dungeonleather_c_02_scf.m2", - value = "helm_leather_dungeonleather_c_02_scf.m2", + fileId = "316663", + text = "helm_leather_argentalliance_d_01_trf.m2", + value = "helm_leather_argentalliance_d_01_trf.m2", }, { - fileId = "340366", - text = "helm_leather_dungeonleather_c_02_scm.m2", - value = "helm_leather_dungeonleather_c_02_scm.m2", + fileId = "316664", + text = "helm_leather_argentalliance_d_01_trm.m2", + value = "helm_leather_argentalliance_d_01_trm.m2", }, { - fileId = "340367", - text = "helm_leather_dungeonleather_c_02_taf.m2", - value = "helm_leather_dungeonleather_c_02_taf.m2", + fileId = "454104", + text = "helm_leather_argentalliance_d_01_wof.m2", + value = "helm_leather_argentalliance_d_01_wof.m2", }, { - fileId = "340368", - text = "helm_leather_dungeonleather_c_02_tam.m2", - value = "helm_leather_dungeonleather_c_02_tam.m2", + fileId = "411689", + text = "helm_leather_argentalliance_d_01_wom.m2", + value = "helm_leather_argentalliance_d_01_wom.m2", }, { - fileId = "340369", - text = "helm_leather_dungeonleather_c_02_trf.m2", - value = "helm_leather_dungeonleather_c_02_trf.m2", + fileId = "312695", + text = "helm_leather_argenthorde_d_01_bef.m2", + value = "helm_leather_argenthorde_d_01_bef.m2", }, { - fileId = "340370", - text = "helm_leather_dungeonleather_c_02_trm.m2", - value = "helm_leather_dungeonleather_c_02_trm.m2", + fileId = "312696", + text = "helm_leather_argenthorde_d_01_bem.m2", + value = "helm_leather_argenthorde_d_01_bem.m2", }, { - fileId = "138471", - text = "helm_leather_dungeonrogue_b_01_bef.m2", - value = "helm_leather_dungeonrogue_b_01_bef.m2", + fileId = "312697", + text = "helm_leather_argenthorde_d_01_drf.m2", + value = "helm_leather_argenthorde_d_01_drf.m2", }, { - fileId = "138472", - text = "helm_leather_dungeonrogue_b_01_bem.m2", - value = "helm_leather_dungeonrogue_b_01_bem.m2", + fileId = "312698", + text = "helm_leather_argenthorde_d_01_drm.m2", + value = "helm_leather_argenthorde_d_01_drm.m2", }, { - fileId = "138473", - text = "helm_leather_dungeonrogue_b_01_drf.m2", - value = "helm_leather_dungeonrogue_b_01_drf.m2", + fileId = "312699", + text = "helm_leather_argenthorde_d_01_dwf.m2", + value = "helm_leather_argenthorde_d_01_dwf.m2", }, { - fileId = "138474", - text = "helm_leather_dungeonrogue_b_01_drm.m2", - value = "helm_leather_dungeonrogue_b_01_drm.m2", + fileId = "312700", + text = "helm_leather_argenthorde_d_01_dwm.m2", + value = "helm_leather_argenthorde_d_01_dwm.m2", }, { - fileId = "138475", - text = "helm_leather_dungeonrogue_b_01_dwf.m2", - value = "helm_leather_dungeonrogue_b_01_dwf.m2", + fileId = "312701", + text = "helm_leather_argenthorde_d_01_gnf.m2", + value = "helm_leather_argenthorde_d_01_gnf.m2", }, { - fileId = "138476", - text = "helm_leather_dungeonrogue_b_01_dwm.m2", - value = "helm_leather_dungeonrogue_b_01_dwm.m2", + fileId = "312702", + text = "helm_leather_argenthorde_d_01_gnm.m2", + value = "helm_leather_argenthorde_d_01_gnm.m2", }, { - fileId = "138477", - text = "helm_leather_dungeonrogue_b_01_gnf.m2", - value = "helm_leather_dungeonrogue_b_01_gnf.m2", + fileId = "312703", + text = "helm_leather_argenthorde_d_01_gof.m2", + value = "helm_leather_argenthorde_d_01_gof.m2", }, { - fileId = "138478", - text = "helm_leather_dungeonrogue_b_01_gnm.m2", - value = "helm_leather_dungeonrogue_b_01_gnm.m2", + fileId = "312704", + text = "helm_leather_argenthorde_d_01_gom.m2", + value = "helm_leather_argenthorde_d_01_gom.m2", }, { - fileId = "138479", - text = "helm_leather_dungeonrogue_b_01_gof.m2", - value = "helm_leather_dungeonrogue_b_01_gof.m2", + fileId = "312705", + text = "helm_leather_argenthorde_d_01_huf.m2", + value = "helm_leather_argenthorde_d_01_huf.m2", }, { - fileId = "138480", - text = "helm_leather_dungeonrogue_b_01_gom.m2", - value = "helm_leather_dungeonrogue_b_01_gom.m2", + fileId = "312706", + text = "helm_leather_argenthorde_d_01_hum.m2", + value = "helm_leather_argenthorde_d_01_hum.m2", }, { - fileId = "138481", - text = "helm_leather_dungeonrogue_b_01_huf.m2", - value = "helm_leather_dungeonrogue_b_01_huf.m2", + fileId = "312707", + text = "helm_leather_argenthorde_d_01_nif.m2", + value = "helm_leather_argenthorde_d_01_nif.m2", }, { - fileId = "138482", - text = "helm_leather_dungeonrogue_b_01_hum.m2", - value = "helm_leather_dungeonrogue_b_01_hum.m2", + fileId = "312708", + text = "helm_leather_argenthorde_d_01_nim.m2", + value = "helm_leather_argenthorde_d_01_nim.m2", }, { - fileId = "138483", - text = "helm_leather_dungeonrogue_b_01_nif.m2", - value = "helm_leather_dungeonrogue_b_01_nif.m2", + fileId = "312709", + text = "helm_leather_argenthorde_d_01_orf.m2", + value = "helm_leather_argenthorde_d_01_orf.m2", }, { - fileId = "138484", - text = "helm_leather_dungeonrogue_b_01_nim.m2", - value = "helm_leather_dungeonrogue_b_01_nim.m2", + fileId = "312710", + text = "helm_leather_argenthorde_d_01_orm.m2", + value = "helm_leather_argenthorde_d_01_orm.m2", }, { - fileId = "138485", - text = "helm_leather_dungeonrogue_b_01_orf.m2", - value = "helm_leather_dungeonrogue_b_01_orf.m2", + fileId = "312711", + text = "helm_leather_argenthorde_d_01_scf.m2", + value = "helm_leather_argenthorde_d_01_scf.m2", }, { - fileId = "138486", - text = "helm_leather_dungeonrogue_b_01_orm.m2", - value = "helm_leather_dungeonrogue_b_01_orm.m2", + fileId = "312712", + text = "helm_leather_argenthorde_d_01_scm.m2", + value = "helm_leather_argenthorde_d_01_scm.m2", }, { - fileId = "138487", - text = "helm_leather_dungeonrogue_b_01_scf.m2", - value = "helm_leather_dungeonrogue_b_01_scf.m2", + fileId = "312713", + text = "helm_leather_argenthorde_d_01_taf.m2", + value = "helm_leather_argenthorde_d_01_taf.m2", }, { - fileId = "138488", - text = "helm_leather_dungeonrogue_b_01_scm.m2", - value = "helm_leather_dungeonrogue_b_01_scm.m2", + fileId = "312714", + text = "helm_leather_argenthorde_d_01_tam.m2", + value = "helm_leather_argenthorde_d_01_tam.m2", }, { - fileId = "138489", - text = "helm_leather_dungeonrogue_b_01_taf.m2", - value = "helm_leather_dungeonrogue_b_01_taf.m2", + fileId = "312715", + text = "helm_leather_argenthorde_d_01_trf.m2", + value = "helm_leather_argenthorde_d_01_trf.m2", }, { - fileId = "138490", - text = "helm_leather_dungeonrogue_b_01_tam.m2", - value = "helm_leather_dungeonrogue_b_01_tam.m2", + fileId = "312716", + text = "helm_leather_argenthorde_d_01_trm.m2", + value = "helm_leather_argenthorde_d_01_trm.m2", }, { - fileId = "138491", - text = "helm_leather_dungeonrogue_b_01_trf.m2", - value = "helm_leather_dungeonrogue_b_01_trf.m2", + fileId = "454105", + text = "helm_leather_argenthorde_d_01_wof.m2", + value = "helm_leather_argenthorde_d_01_wof.m2", }, { - fileId = "138492", - text = "helm_leather_dungeonrogue_b_01_trm.m2", - value = "helm_leather_dungeonrogue_b_01_trm.m2", + fileId = "411690", + text = "helm_leather_argenthorde_d_01_wom.m2", + value = "helm_leather_argenthorde_d_01_wom.m2", }, { - fileId = "138498", - text = "helm_leather_northrend_b_01_bef.m2", - value = "helm_leather_northrend_b_01_bef.m2", + fileId = "138248", + text = "helm_leather_b_01_bef.m2", + value = "helm_leather_b_01_bef.m2", }, { - fileId = "138499", - text = "helm_leather_northrend_b_01_bem.m2", - value = "helm_leather_northrend_b_01_bem.m2", + fileId = "138249", + text = "helm_leather_b_01_bem.m2", + value = "helm_leather_b_01_bem.m2", }, { - fileId = "138500", - text = "helm_leather_northrend_b_01_drf.m2", - value = "helm_leather_northrend_b_01_drf.m2", + fileId = "138250", + text = "helm_leather_b_01_drf.m2", + value = "helm_leather_b_01_drf.m2", }, { - fileId = "138501", - text = "helm_leather_northrend_b_01_drm.m2", - value = "helm_leather_northrend_b_01_drm.m2", + fileId = "138251", + text = "helm_leather_b_01_drm.m2", + value = "helm_leather_b_01_drm.m2", }, { - fileId = "138502", - text = "helm_leather_northrend_b_01_dwf.m2", - value = "helm_leather_northrend_b_01_dwf.m2", + fileId = "138252", + text = "helm_leather_b_01_dwf.m2", + value = "helm_leather_b_01_dwf.m2", }, { - fileId = "138503", - text = "helm_leather_northrend_b_01_dwm.m2", - value = "helm_leather_northrend_b_01_dwm.m2", + fileId = "138253", + text = "helm_leather_b_01_dwm.m2", + value = "helm_leather_b_01_dwm.m2", }, { - fileId = "138504", - text = "helm_leather_northrend_b_01_gnf.m2", - value = "helm_leather_northrend_b_01_gnf.m2", + fileId = "138254", + text = "helm_leather_b_01_gnf.m2", + value = "helm_leather_b_01_gnf.m2", }, { - fileId = "138505", - text = "helm_leather_northrend_b_01_gnm.m2", - value = "helm_leather_northrend_b_01_gnm.m2", + fileId = "138255", + text = "helm_leather_b_01_gnm.m2", + value = "helm_leather_b_01_gnm.m2", }, { - fileId = "138506", - text = "helm_leather_northrend_b_01_gof.m2", - value = "helm_leather_northrend_b_01_gof.m2", + fileId = "138256", + text = "helm_leather_b_01_gof.m2", + value = "helm_leather_b_01_gof.m2", }, { - fileId = "138507", - text = "helm_leather_northrend_b_01_gom.m2", - value = "helm_leather_northrend_b_01_gom.m2", + fileId = "138257", + text = "helm_leather_b_01_gom.m2", + value = "helm_leather_b_01_gom.m2", }, { - fileId = "138508", - text = "helm_leather_northrend_b_01_huf.m2", - value = "helm_leather_northrend_b_01_huf.m2", + fileId = "138258", + text = "helm_leather_b_01_huf.m2", + value = "helm_leather_b_01_huf.m2", }, { - fileId = "138509", - text = "helm_leather_northrend_b_01_hum.m2", - value = "helm_leather_northrend_b_01_hum.m2", + fileId = "138259", + text = "helm_leather_b_01_hum.m2", + value = "helm_leather_b_01_hum.m2", }, { - fileId = "138510", - text = "helm_leather_northrend_b_01_nif.m2", - value = "helm_leather_northrend_b_01_nif.m2", + fileId = "138260", + text = "helm_leather_b_01_nif.m2", + value = "helm_leather_b_01_nif.m2", }, { - fileId = "138511", - text = "helm_leather_northrend_b_01_nim.m2", - value = "helm_leather_northrend_b_01_nim.m2", + fileId = "138261", + text = "helm_leather_b_01_nim.m2", + value = "helm_leather_b_01_nim.m2", }, { - fileId = "138512", - text = "helm_leather_northrend_b_01_orf.m2", - value = "helm_leather_northrend_b_01_orf.m2", + fileId = "138262", + text = "helm_leather_b_01_orf.m2", + value = "helm_leather_b_01_orf.m2", }, { - fileId = "138513", - text = "helm_leather_northrend_b_01_orm.m2", - value = "helm_leather_northrend_b_01_orm.m2", + fileId = "138263", + text = "helm_leather_b_01_orm.m2", + value = "helm_leather_b_01_orm.m2", }, { - fileId = "138514", - text = "helm_leather_northrend_b_01_scf.m2", - value = "helm_leather_northrend_b_01_scf.m2", + fileId = "138264", + text = "helm_leather_b_01_scf.m2", + value = "helm_leather_b_01_scf.m2", }, { - fileId = "138515", - text = "helm_leather_northrend_b_01_scm.m2", - value = "helm_leather_northrend_b_01_scm.m2", + fileId = "138265", + text = "helm_leather_b_01_scm.m2", + value = "helm_leather_b_01_scm.m2", }, { - fileId = "138516", - text = "helm_leather_northrend_b_01_taf.m2", - value = "helm_leather_northrend_b_01_taf.m2", + fileId = "138266", + text = "helm_leather_b_01_taf.m2", + value = "helm_leather_b_01_taf.m2", }, { - fileId = "138517", - text = "helm_leather_northrend_b_01_tam.m2", - value = "helm_leather_northrend_b_01_tam.m2", + fileId = "138267", + text = "helm_leather_b_01_tam.m2", + value = "helm_leather_b_01_tam.m2", }, { - fileId = "138518", - text = "helm_leather_northrend_b_01_trf.m2", - value = "helm_leather_northrend_b_01_trf.m2", + fileId = "138268", + text = "helm_leather_b_01_trf.m2", + value = "helm_leather_b_01_trf.m2", }, { - fileId = "138519", - text = "helm_leather_northrend_b_01_trm.m2", - value = "helm_leather_northrend_b_01_trm.m2", + fileId = "138269", + text = "helm_leather_b_01_trm.m2", + value = "helm_leather_b_01_trm.m2", }, { - fileId = "138524", - text = "helm_leather_northrend_b_02_bef.m2", - value = "helm_leather_northrend_b_02_bef.m2", + fileId = "454109", + text = "helm_leather_b_01_wof.m2", + value = "helm_leather_b_01_wof.m2", }, { - fileId = "138525", - text = "helm_leather_northrend_b_02_bem.m2", - value = "helm_leather_northrend_b_02_bem.m2", + fileId = "454110", + text = "helm_leather_b_01_wom.m2", + value = "helm_leather_b_01_wom.m2", }, { - fileId = "138526", - text = "helm_leather_northrend_b_02_drf.m2", - value = "helm_leather_northrend_b_02_drf.m2", + fileId = "138279", + text = "helm_leather_b_03venture_bef.m2", + value = "helm_leather_b_03venture_bef.m2", }, { - fileId = "138527", - text = "helm_leather_northrend_b_02_drm.m2", - value = "helm_leather_northrend_b_02_drm.m2", + fileId = "138280", + text = "helm_leather_b_03venture_bem.m2", + value = "helm_leather_b_03venture_bem.m2", }, { - fileId = "138528", - text = "helm_leather_northrend_b_02_dwf.m2", - value = "helm_leather_northrend_b_02_dwf.m2", + fileId = "138281", + text = "helm_leather_b_03venture_drf.m2", + value = "helm_leather_b_03venture_drf.m2", }, { - fileId = "138529", - text = "helm_leather_northrend_b_02_dwm.m2", - value = "helm_leather_northrend_b_02_dwm.m2", + fileId = "138282", + text = "helm_leather_b_03venture_drm.m2", + value = "helm_leather_b_03venture_drm.m2", }, { - fileId = "138530", - text = "helm_leather_northrend_b_02_gnf.m2", - value = "helm_leather_northrend_b_02_gnf.m2", + fileId = "138283", + text = "helm_leather_b_03venture_dwf.m2", + value = "helm_leather_b_03venture_dwf.m2", }, { - fileId = "138531", - text = "helm_leather_northrend_b_02_gnm.m2", - value = "helm_leather_northrend_b_02_gnm.m2", + fileId = "138284", + text = "helm_leather_b_03venture_dwm.m2", + value = "helm_leather_b_03venture_dwm.m2", }, { - fileId = "138532", - text = "helm_leather_northrend_b_02_huf.m2", - value = "helm_leather_northrend_b_02_huf.m2", + fileId = "138286", + text = "helm_leather_b_03venture_gnf.m2", + value = "helm_leather_b_03venture_gnf.m2", }, { - fileId = "138533", - text = "helm_leather_northrend_b_02_hum.m2", - value = "helm_leather_northrend_b_02_hum.m2", + fileId = "138287", + text = "helm_leather_b_03venture_gnm.m2", + value = "helm_leather_b_03venture_gnm.m2", }, { - fileId = "138534", - text = "helm_leather_northrend_b_02_nif.m2", - value = "helm_leather_northrend_b_02_nif.m2", + fileId = "138288", + text = "helm_leather_b_03venture_gof.m2", + value = "helm_leather_b_03venture_gof.m2", }, { - fileId = "138535", - text = "helm_leather_northrend_b_02_nim.m2", - value = "helm_leather_northrend_b_02_nim.m2", + fileId = "138289", + text = "helm_leather_b_03venture_gom.m2", + value = "helm_leather_b_03venture_gom.m2", }, { - fileId = "138536", - text = "helm_leather_northrend_b_02_orf.m2", - value = "helm_leather_northrend_b_02_orf.m2", + fileId = "138290", + text = "helm_leather_b_03venture_huf.m2", + value = "helm_leather_b_03venture_huf.m2", }, { - fileId = "138537", - text = "helm_leather_northrend_b_02_orm.m2", - value = "helm_leather_northrend_b_02_orm.m2", + fileId = "138291", + text = "helm_leather_b_03venture_hum.m2", + value = "helm_leather_b_03venture_hum.m2", }, { - fileId = "138538", - text = "helm_leather_northrend_b_02_scf.m2", - value = "helm_leather_northrend_b_02_scf.m2", + fileId = "138292", + text = "helm_leather_b_03venture_nif.m2", + value = "helm_leather_b_03venture_nif.m2", }, { - fileId = "138539", - text = "helm_leather_northrend_b_02_scm.m2", - value = "helm_leather_northrend_b_02_scm.m2", + fileId = "138293", + text = "helm_leather_b_03venture_nim.m2", + value = "helm_leather_b_03venture_nim.m2", }, { - fileId = "138540", - text = "helm_leather_northrend_b_02_taf.m2", - value = "helm_leather_northrend_b_02_taf.m2", + fileId = "138294", + text = "helm_leather_b_03venture_orf.m2", + value = "helm_leather_b_03venture_orf.m2", }, { - fileId = "138541", - text = "helm_leather_northrend_b_02_tam.m2", - value = "helm_leather_northrend_b_02_tam.m2", + fileId = "138295", + text = "helm_leather_b_03venture_orm.m2", + value = "helm_leather_b_03venture_orm.m2", }, { - fileId = "138542", - text = "helm_leather_northrend_b_02_trf.m2", - value = "helm_leather_northrend_b_02_trf.m2", + fileId = "138296", + text = "helm_leather_b_03venture_scf.m2", + value = "helm_leather_b_03venture_scf.m2", }, { - fileId = "138543", - text = "helm_leather_northrend_b_02_trm.m2", - value = "helm_leather_northrend_b_02_trm.m2", + fileId = "138297", + text = "helm_leather_b_03venture_scm.m2", + value = "helm_leather_b_03venture_scm.m2", }, { - fileId = "138545", - text = "helm_leather_northrend_b_03_bef.m2", - value = "helm_leather_northrend_b_03_bef.m2", + fileId = "138298", + text = "helm_leather_b_03venture_taf.m2", + value = "helm_leather_b_03venture_taf.m2", }, { - fileId = "138546", - text = "helm_leather_northrend_b_03_bem.m2", - value = "helm_leather_northrend_b_03_bem.m2", + fileId = "138299", + text = "helm_leather_b_03venture_tam.m2", + value = "helm_leather_b_03venture_tam.m2", }, { - fileId = "138547", - text = "helm_leather_northrend_b_03_drf.m2", - value = "helm_leather_northrend_b_03_drf.m2", + fileId = "138300", + text = "helm_leather_b_03venture_trf.m2", + value = "helm_leather_b_03venture_trf.m2", }, { - fileId = "138548", - text = "helm_leather_northrend_b_03_drm.m2", - value = "helm_leather_northrend_b_03_drm.m2", + fileId = "138301", + text = "helm_leather_b_03venture_trm.m2", + value = "helm_leather_b_03venture_trm.m2", }, { - fileId = "138549", - text = "helm_leather_northrend_b_03_dwf.m2", - value = "helm_leather_northrend_b_03_dwf.m2", + fileId = "454111", + text = "helm_leather_b_03venture_wof.m2", + value = "helm_leather_b_03venture_wof.m2", }, { - fileId = "138550", - text = "helm_leather_northrend_b_03_dwm.m2", - value = "helm_leather_northrend_b_03_dwm.m2", + fileId = "430005", + text = "helm_leather_b_03venture_wom.m2", + value = "helm_leather_b_03venture_wom.m2", }, { - fileId = "138551", - text = "helm_leather_northrend_b_03_gnf.m2", - value = "helm_leather_northrend_b_03_gnf.m2", + fileId = "138302", + text = "helm_leather_b_06_bef.m2", + value = "helm_leather_b_06_bef.m2", }, { - fileId = "138552", - text = "helm_leather_northrend_b_03_gnm.m2", - value = "helm_leather_northrend_b_03_gnm.m2", + fileId = "138303", + text = "helm_leather_b_06_bem.m2", + value = "helm_leather_b_06_bem.m2", }, { - fileId = "138553", - text = "helm_leather_northrend_b_03_huf.m2", - value = "helm_leather_northrend_b_03_huf.m2", + fileId = "138304", + text = "helm_leather_b_06_drf.m2", + value = "helm_leather_b_06_drf.m2", }, { - fileId = "138554", - text = "helm_leather_northrend_b_03_hum.m2", - value = "helm_leather_northrend_b_03_hum.m2", + fileId = "138305", + text = "helm_leather_b_06_drm.m2", + value = "helm_leather_b_06_drm.m2", }, { - fileId = "138555", - text = "helm_leather_northrend_b_03_nif.m2", - value = "helm_leather_northrend_b_03_nif.m2", + fileId = "138306", + text = "helm_leather_b_06_dwf.m2", + value = "helm_leather_b_06_dwf.m2", }, { - fileId = "138556", - text = "helm_leather_northrend_b_03_nim.m2", - value = "helm_leather_northrend_b_03_nim.m2", + fileId = "138307", + text = "helm_leather_b_06_dwm.m2", + value = "helm_leather_b_06_dwm.m2", }, { - fileId = "138557", - text = "helm_leather_northrend_b_03_orf.m2", - value = "helm_leather_northrend_b_03_orf.m2", + fileId = "138308", + text = "helm_leather_b_06_gnf.m2", + value = "helm_leather_b_06_gnf.m2", }, { - fileId = "138558", - text = "helm_leather_northrend_b_03_orm.m2", - value = "helm_leather_northrend_b_03_orm.m2", + fileId = "138309", + text = "helm_leather_b_06_gnm.m2", + value = "helm_leather_b_06_gnm.m2", }, { - fileId = "138559", - text = "helm_leather_northrend_b_03_scf.m2", - value = "helm_leather_northrend_b_03_scf.m2", + fileId = "138310", + text = "helm_leather_b_06_gof.m2", + value = "helm_leather_b_06_gof.m2", }, { - fileId = "138560", - text = "helm_leather_northrend_b_03_scm.m2", - value = "helm_leather_northrend_b_03_scm.m2", + fileId = "407227", + text = "helm_leather_b_06_gom.m2", + value = "helm_leather_b_06_gom.m2", }, { - fileId = "138561", - text = "helm_leather_northrend_b_03_taf.m2", - value = "helm_leather_northrend_b_03_taf.m2", + fileId = "138311", + text = "helm_leather_b_06_huf.m2", + value = "helm_leather_b_06_huf.m2", }, { - fileId = "138562", - text = "helm_leather_northrend_b_03_tam.m2", - value = "helm_leather_northrend_b_03_tam.m2", + fileId = "138312", + text = "helm_leather_b_06_hum.m2", + value = "helm_leather_b_06_hum.m2", }, { - fileId = "138563", - text = "helm_leather_northrend_b_03_trf.m2", - value = "helm_leather_northrend_b_03_trf.m2", + fileId = "138313", + text = "helm_leather_b_06_nif.m2", + value = "helm_leather_b_06_nif.m2", }, { - fileId = "138564", - text = "helm_leather_northrend_b_03_trm.m2", - value = "helm_leather_northrend_b_03_trm.m2", + fileId = "138314", + text = "helm_leather_b_06_nim.m2", + value = "helm_leather_b_06_nim.m2", }, { - fileId = "138568", - text = "helm_leather_northrend_c_02_bef.m2", - value = "helm_leather_northrend_c_02_bef.m2", + fileId = "138315", + text = "helm_leather_b_06_orf.m2", + value = "helm_leather_b_06_orf.m2", }, { - fileId = "138569", - text = "helm_leather_northrend_c_02_bem.m2", - value = "helm_leather_northrend_c_02_bem.m2", + fileId = "138316", + text = "helm_leather_b_06_orm.m2", + value = "helm_leather_b_06_orm.m2", }, { - fileId = "138570", - text = "helm_leather_northrend_c_02_drf.m2", - value = "helm_leather_northrend_c_02_drf.m2", + fileId = "138317", + text = "helm_leather_b_06_scf.m2", + value = "helm_leather_b_06_scf.m2", }, { - fileId = "138571", - text = "helm_leather_northrend_c_02_drm.m2", - value = "helm_leather_northrend_c_02_drm.m2", + fileId = "138318", + text = "helm_leather_b_06_scm.m2", + value = "helm_leather_b_06_scm.m2", }, { - fileId = "138572", - text = "helm_leather_northrend_c_02_dwf.m2", - value = "helm_leather_northrend_c_02_dwf.m2", + fileId = "138319", + text = "helm_leather_b_06_taf.m2", + value = "helm_leather_b_06_taf.m2", }, { - fileId = "138573", - text = "helm_leather_northrend_c_02_dwm.m2", - value = "helm_leather_northrend_c_02_dwm.m2", + fileId = "138320", + text = "helm_leather_b_06_tam.m2", + value = "helm_leather_b_06_tam.m2", }, { - fileId = "138574", - text = "helm_leather_northrend_c_02_gnf.m2", - value = "helm_leather_northrend_c_02_gnf.m2", + fileId = "138321", + text = "helm_leather_b_06_trf.m2", + value = "helm_leather_b_06_trf.m2", }, { - fileId = "138575", - text = "helm_leather_northrend_c_02_gnm.m2", - value = "helm_leather_northrend_c_02_gnm.m2", + fileId = "138322", + text = "helm_leather_b_06_trm.m2", + value = "helm_leather_b_06_trm.m2", }, { - fileId = "138576", - text = "helm_leather_northrend_c_02_gof.m2", - value = "helm_leather_northrend_c_02_gof.m2", + fileId = "454112", + text = "helm_leather_b_06_wof.m2", + value = "helm_leather_b_06_wof.m2", }, { - fileId = "138577", - text = "helm_leather_northrend_c_02_gom.m2", - value = "helm_leather_northrend_c_02_gom.m2", + fileId = "430006", + text = "helm_leather_b_06_wom.m2", + value = "helm_leather_b_06_wom.m2", }, { - fileId = "138578", - text = "helm_leather_northrend_c_02_huf.m2", - value = "helm_leather_northrend_c_02_huf.m2", + fileId = "138336", + text = "helm_leather_blood_c_02_bef.m2", + value = "helm_leather_blood_c_02_bef.m2", }, { - fileId = "138579", - text = "helm_leather_northrend_c_02_hum.m2", - value = "helm_leather_northrend_c_02_hum.m2", + fileId = "138337", + text = "helm_leather_blood_c_02_bem.m2", + value = "helm_leather_blood_c_02_bem.m2", }, { - fileId = "138580", - text = "helm_leather_northrend_c_02_nif.m2", - value = "helm_leather_northrend_c_02_nif.m2", + fileId = "138338", + text = "helm_leather_blood_c_02_drf.m2", + value = "helm_leather_blood_c_02_drf.m2", }, { - fileId = "138581", - text = "helm_leather_northrend_c_02_nim.m2", - value = "helm_leather_northrend_c_02_nim.m2", + fileId = "138339", + text = "helm_leather_blood_c_02_drm.m2", + value = "helm_leather_blood_c_02_drm.m2", }, { - fileId = "138582", - text = "helm_leather_northrend_c_02_orf.m2", - value = "helm_leather_northrend_c_02_orf.m2", + fileId = "138340", + text = "helm_leather_blood_c_02_dwf.m2", + value = "helm_leather_blood_c_02_dwf.m2", }, { - fileId = "138583", - text = "helm_leather_northrend_c_02_orm.m2", - value = "helm_leather_northrend_c_02_orm.m2", + fileId = "138341", + text = "helm_leather_blood_c_02_dwm.m2", + value = "helm_leather_blood_c_02_dwm.m2", }, { - fileId = "138584", - text = "helm_leather_northrend_c_02_scf.m2", - value = "helm_leather_northrend_c_02_scf.m2", + fileId = "138342", + text = "helm_leather_blood_c_02_gnf.m2", + value = "helm_leather_blood_c_02_gnf.m2", }, { - fileId = "138585", - text = "helm_leather_northrend_c_02_scm.m2", - value = "helm_leather_northrend_c_02_scm.m2", + fileId = "138343", + text = "helm_leather_blood_c_02_gnm.m2", + value = "helm_leather_blood_c_02_gnm.m2", }, { - fileId = "138586", - text = "helm_leather_northrend_c_02_taf.m2", - value = "helm_leather_northrend_c_02_taf.m2", + fileId = "138344", + text = "helm_leather_blood_c_02_gof.m2", + value = "helm_leather_blood_c_02_gof.m2", }, { - fileId = "138587", - text = "helm_leather_northrend_c_02_tam.m2", - value = "helm_leather_northrend_c_02_tam.m2", + fileId = "138345", + text = "helm_leather_blood_c_02_gom.m2", + value = "helm_leather_blood_c_02_gom.m2", }, { - fileId = "138588", - text = "helm_leather_northrend_c_02_trf.m2", - value = "helm_leather_northrend_c_02_trf.m2", + fileId = "138346", + text = "helm_leather_blood_c_02_huf.m2", + value = "helm_leather_blood_c_02_huf.m2", }, { - fileId = "138589", - text = "helm_leather_northrend_c_02_trm.m2", - value = "helm_leather_northrend_c_02_trm.m2", + fileId = "138347", + text = "helm_leather_blood_c_02_hum.m2", + value = "helm_leather_blood_c_02_hum.m2", }, { - fileId = "138595", - text = "helm_leather_northrend_d_01_bef.m2", - value = "helm_leather_northrend_d_01_bef.m2", + fileId = "138348", + text = "helm_leather_blood_c_02_nif.m2", + value = "helm_leather_blood_c_02_nif.m2", }, { - fileId = "138596", - text = "helm_leather_northrend_d_01_bem.m2", - value = "helm_leather_northrend_d_01_bem.m2", + fileId = "138349", + text = "helm_leather_blood_c_02_nim.m2", + value = "helm_leather_blood_c_02_nim.m2", }, { - fileId = "138597", - text = "helm_leather_northrend_d_01_drf.m2", - value = "helm_leather_northrend_d_01_drf.m2", + fileId = "138350", + text = "helm_leather_blood_c_02_orf.m2", + value = "helm_leather_blood_c_02_orf.m2", }, { - fileId = "138598", - text = "helm_leather_northrend_d_01_drm.m2", - value = "helm_leather_northrend_d_01_drm.m2", + fileId = "138351", + text = "helm_leather_blood_c_02_orm.m2", + value = "helm_leather_blood_c_02_orm.m2", }, { - fileId = "138599", - text = "helm_leather_northrend_d_01_dwf.m2", - value = "helm_leather_northrend_d_01_dwf.m2", + fileId = "138352", + text = "helm_leather_blood_c_02_scf.m2", + value = "helm_leather_blood_c_02_scf.m2", }, { - fileId = "138600", - text = "helm_leather_northrend_d_01_dwm.m2", - value = "helm_leather_northrend_d_01_dwm.m2", + fileId = "138353", + text = "helm_leather_blood_c_02_scm.m2", + value = "helm_leather_blood_c_02_scm.m2", }, { - fileId = "138601", - text = "helm_leather_northrend_d_01_gnf.m2", - value = "helm_leather_northrend_d_01_gnf.m2", + fileId = "138354", + text = "helm_leather_blood_c_02_taf.m2", + value = "helm_leather_blood_c_02_taf.m2", }, { - fileId = "138602", - text = "helm_leather_northrend_d_01_gnm.m2", - value = "helm_leather_northrend_d_01_gnm.m2", + fileId = "138355", + text = "helm_leather_blood_c_02_tam.m2", + value = "helm_leather_blood_c_02_tam.m2", }, { - fileId = "138603", - text = "helm_leather_northrend_d_01_huf.m2", - value = "helm_leather_northrend_d_01_huf.m2", + fileId = "138356", + text = "helm_leather_blood_c_02_trf.m2", + value = "helm_leather_blood_c_02_trf.m2", }, { - fileId = "138604", - text = "helm_leather_northrend_d_01_hum.m2", - value = "helm_leather_northrend_d_01_hum.m2", + fileId = "138357", + text = "helm_leather_blood_c_02_trm.m2", + value = "helm_leather_blood_c_02_trm.m2", }, { - fileId = "138605", - text = "helm_leather_northrend_d_01_nif.m2", - value = "helm_leather_northrend_d_01_nif.m2", + fileId = "410350", + text = "helm_leather_blood_c_02_wof.m2", + value = "helm_leather_blood_c_02_wof.m2", }, { - fileId = "138606", - text = "helm_leather_northrend_d_01_nim.m2", - value = "helm_leather_northrend_d_01_nim.m2", + fileId = "410351", + text = "helm_leather_blood_c_02_wom.m2", + value = "helm_leather_blood_c_02_wom.m2", }, { - fileId = "138607", - text = "helm_leather_northrend_d_01_orf.m2", - value = "helm_leather_northrend_d_01_orf.m2", + fileId = "426507", + text = "helm_leather_cataclysm_b_01_bef.m2", + value = "helm_leather_cataclysm_b_01_bef.m2", }, { - fileId = "138608", - text = "helm_leather_northrend_d_01_orm.m2", - value = "helm_leather_northrend_d_01_orm.m2", + fileId = "426508", + text = "helm_leather_cataclysm_b_01_bem.m2", + value = "helm_leather_cataclysm_b_01_bem.m2", }, { - fileId = "138609", - text = "helm_leather_northrend_d_01_scf.m2", - value = "helm_leather_northrend_d_01_scf.m2", + fileId = "426509", + text = "helm_leather_cataclysm_b_01_drf.m2", + value = "helm_leather_cataclysm_b_01_drf.m2", }, { - fileId = "138610", - text = "helm_leather_northrend_d_01_scm.m2", - value = "helm_leather_northrend_d_01_scm.m2", + fileId = "426510", + text = "helm_leather_cataclysm_b_01_drm.m2", + value = "helm_leather_cataclysm_b_01_drm.m2", }, { - fileId = "138611", - text = "helm_leather_northrend_d_01_taf.m2", - value = "helm_leather_northrend_d_01_taf.m2", + fileId = "426511", + text = "helm_leather_cataclysm_b_01_dwf.m2", + value = "helm_leather_cataclysm_b_01_dwf.m2", }, { - fileId = "138612", - text = "helm_leather_northrend_d_01_tam.m2", - value = "helm_leather_northrend_d_01_tam.m2", + fileId = "426512", + text = "helm_leather_cataclysm_b_01_dwm.m2", + value = "helm_leather_cataclysm_b_01_dwm.m2", }, { - fileId = "138613", - text = "helm_leather_northrend_d_01_trf.m2", - value = "helm_leather_northrend_d_01_trf.m2", + fileId = "426513", + text = "helm_leather_cataclysm_b_01_gnf.m2", + value = "helm_leather_cataclysm_b_01_gnf.m2", }, { - fileId = "138614", - text = "helm_leather_northrend_d_01_trm.m2", - value = "helm_leather_northrend_d_01_trm.m2", + fileId = "426514", + text = "helm_leather_cataclysm_b_01_gnm.m2", + value = "helm_leather_cataclysm_b_01_gnm.m2", }, { - fileId = "138618", - text = "helm_leather_pvpalliance_a_01_bef.m2", - value = "helm_leather_pvpalliance_a_01_bef.m2", + fileId = "426515", + text = "helm_leather_cataclysm_b_01_gof.m2", + value = "helm_leather_cataclysm_b_01_gof.m2", }, { - fileId = "138619", - text = "helm_leather_pvpalliance_a_01_bem.m2", - value = "helm_leather_pvpalliance_a_01_bem.m2", + fileId = "426516", + text = "helm_leather_cataclysm_b_01_gom.m2", + value = "helm_leather_cataclysm_b_01_gom.m2", }, { - fileId = "138620", - text = "helm_leather_pvpalliance_a_01_drf.m2", - value = "helm_leather_pvpalliance_a_01_drf.m2", + fileId = "426517", + text = "helm_leather_cataclysm_b_01_huf.m2", + value = "helm_leather_cataclysm_b_01_huf.m2", }, { - fileId = "138621", - text = "helm_leather_pvpalliance_a_01_drm.m2", - value = "helm_leather_pvpalliance_a_01_drm.m2", + fileId = "426518", + text = "helm_leather_cataclysm_b_01_hum.m2", + value = "helm_leather_cataclysm_b_01_hum.m2", }, { - fileId = "138622", - text = "helm_leather_pvpalliance_a_01_dwf.m2", - value = "helm_leather_pvpalliance_a_01_dwf.m2", + fileId = "426519", + text = "helm_leather_cataclysm_b_01_nif.m2", + value = "helm_leather_cataclysm_b_01_nif.m2", }, { - fileId = "138623", - text = "helm_leather_pvpalliance_a_01_dwm.m2", - value = "helm_leather_pvpalliance_a_01_dwm.m2", + fileId = "426520", + text = "helm_leather_cataclysm_b_01_nim.m2", + value = "helm_leather_cataclysm_b_01_nim.m2", }, { - fileId = "138624", - text = "helm_leather_pvpalliance_a_01_gnf.m2", - value = "helm_leather_pvpalliance_a_01_gnf.m2", + fileId = "426521", + text = "helm_leather_cataclysm_b_01_orf.m2", + value = "helm_leather_cataclysm_b_01_orf.m2", }, { - fileId = "138625", - text = "helm_leather_pvpalliance_a_01_gnm.m2", - value = "helm_leather_pvpalliance_a_01_gnm.m2", + fileId = "426522", + text = "helm_leather_cataclysm_b_01_orm.m2", + value = "helm_leather_cataclysm_b_01_orm.m2", }, { - fileId = "138626", - text = "helm_leather_pvpalliance_a_01_gof.m2", - value = "helm_leather_pvpalliance_a_01_gof.m2", + fileId = "426523", + text = "helm_leather_cataclysm_b_01_scf.m2", + value = "helm_leather_cataclysm_b_01_scf.m2", }, { - fileId = "138627", - text = "helm_leather_pvpalliance_a_01_gom.m2", - value = "helm_leather_pvpalliance_a_01_gom.m2", + fileId = "426524", + text = "helm_leather_cataclysm_b_01_scm.m2", + value = "helm_leather_cataclysm_b_01_scm.m2", }, { - fileId = "138628", - text = "helm_leather_pvpalliance_a_01_huf.m2", - value = "helm_leather_pvpalliance_a_01_huf.m2", + fileId = "426525", + text = "helm_leather_cataclysm_b_01_taf.m2", + value = "helm_leather_cataclysm_b_01_taf.m2", }, { - fileId = "138629", - text = "helm_leather_pvpalliance_a_01_hum.m2", - value = "helm_leather_pvpalliance_a_01_hum.m2", + fileId = "426526", + text = "helm_leather_cataclysm_b_01_tam.m2", + value = "helm_leather_cataclysm_b_01_tam.m2", }, { - fileId = "138630", - text = "helm_leather_pvpalliance_a_01_nif.m2", - value = "helm_leather_pvpalliance_a_01_nif.m2", + fileId = "426527", + text = "helm_leather_cataclysm_b_01_trf.m2", + value = "helm_leather_cataclysm_b_01_trf.m2", }, { - fileId = "138631", - text = "helm_leather_pvpalliance_a_01_nim.m2", - value = "helm_leather_pvpalliance_a_01_nim.m2", + fileId = "426528", + text = "helm_leather_cataclysm_b_01_trm.m2", + value = "helm_leather_cataclysm_b_01_trm.m2", }, { - fileId = "138632", - text = "helm_leather_pvpalliance_a_01_orf.m2", - value = "helm_leather_pvpalliance_a_01_orf.m2", + fileId = "462660", + text = "helm_leather_cataclysm_b_01_wof.m2", + value = "helm_leather_cataclysm_b_01_wof.m2", }, { - fileId = "138633", - text = "helm_leather_pvpalliance_a_01_orm.m2", - value = "helm_leather_pvpalliance_a_01_orm.m2", + fileId = "426529", + text = "helm_leather_cataclysm_b_01_wom.m2", + value = "helm_leather_cataclysm_b_01_wom.m2", }, { - fileId = "138634", - text = "helm_leather_pvpalliance_a_01_scf.m2", - value = "helm_leather_pvpalliance_a_01_scf.m2", + fileId = "461585", + text = "helm_leather_cataclysm_b_02_bef.m2", + value = "helm_leather_cataclysm_b_02_bef.m2", }, { - fileId = "138635", - text = "helm_leather_pvpalliance_a_01_scm.m2", - value = "helm_leather_pvpalliance_a_01_scm.m2", + fileId = "461586", + text = "helm_leather_cataclysm_b_02_bem.m2", + value = "helm_leather_cataclysm_b_02_bem.m2", }, { - fileId = "138636", - text = "helm_leather_pvpalliance_a_01_taf.m2", - value = "helm_leather_pvpalliance_a_01_taf.m2", + fileId = "461587", + text = "helm_leather_cataclysm_b_02_drf.m2", + value = "helm_leather_cataclysm_b_02_drf.m2", }, { - fileId = "138637", - text = "helm_leather_pvpalliance_a_01_tam.m2", - value = "helm_leather_pvpalliance_a_01_tam.m2", + fileId = "461588", + text = "helm_leather_cataclysm_b_02_drm.m2", + value = "helm_leather_cataclysm_b_02_drm.m2", }, { - fileId = "138638", - text = "helm_leather_pvpalliance_a_01_trf.m2", - value = "helm_leather_pvpalliance_a_01_trf.m2", + fileId = "461589", + text = "helm_leather_cataclysm_b_02_dwf.m2", + value = "helm_leather_cataclysm_b_02_dwf.m2", }, { - fileId = "138639", - text = "helm_leather_pvpalliance_a_01_trm.m2", - value = "helm_leather_pvpalliance_a_01_trm.m2", + fileId = "461590", + text = "helm_leather_cataclysm_b_02_dwm.m2", + value = "helm_leather_cataclysm_b_02_dwm.m2", }, { - fileId = "138642", - text = "helm_leather_pvpalliance_c_01_bef.m2", - value = "helm_leather_pvpalliance_c_01_bef.m2", + fileId = "461592", + text = "helm_leather_cataclysm_b_02_gnf.m2", + value = "helm_leather_cataclysm_b_02_gnf.m2", }, { - fileId = "138643", - text = "helm_leather_pvpalliance_c_01_drf.m2", - value = "helm_leather_pvpalliance_c_01_drf.m2", + fileId = "461593", + text = "helm_leather_cataclysm_b_02_gnm.m2", + value = "helm_leather_cataclysm_b_02_gnm.m2", }, { - fileId = "138644", - text = "helm_leather_pvpalliance_c_01_drm.m2", - value = "helm_leather_pvpalliance_c_01_drm.m2", + fileId = "461594", + text = "helm_leather_cataclysm_b_02_gof.m2", + value = "helm_leather_cataclysm_b_02_gof.m2", }, { - fileId = "138645", - text = "helm_leather_pvpalliance_c_01_gof.m2", - value = "helm_leather_pvpalliance_c_01_gof.m2", + fileId = "461595", + text = "helm_leather_cataclysm_b_02_gom.m2", + value = "helm_leather_cataclysm_b_02_gom.m2", }, { - fileId = "237883", - text = "helm_leather_pvpdruid_b_01_bef.m2", - value = "helm_leather_pvpdruid_b_01_bef.m2", + fileId = "461596", + text = "helm_leather_cataclysm_b_02_huf.m2", + value = "helm_leather_cataclysm_b_02_huf.m2", }, { - fileId = "237884", - text = "helm_leather_pvpdruid_b_01_bem.m2", - value = "helm_leather_pvpdruid_b_01_bem.m2", + fileId = "461597", + text = "helm_leather_cataclysm_b_02_hum.m2", + value = "helm_leather_cataclysm_b_02_hum.m2", }, { - fileId = "237885", - text = "helm_leather_pvpdruid_b_01_drf.m2", - value = "helm_leather_pvpdruid_b_01_drf.m2", + fileId = "461598", + text = "helm_leather_cataclysm_b_02_nif.m2", + value = "helm_leather_cataclysm_b_02_nif.m2", }, { - fileId = "237886", - text = "helm_leather_pvpdruid_b_01_drm.m2", - value = "helm_leather_pvpdruid_b_01_drm.m2", + fileId = "461599", + text = "helm_leather_cataclysm_b_02_nim.m2", + value = "helm_leather_cataclysm_b_02_nim.m2", }, { - fileId = "237887", - text = "helm_leather_pvpdruid_b_01_dwf.m2", - value = "helm_leather_pvpdruid_b_01_dwf.m2", + fileId = "461600", + text = "helm_leather_cataclysm_b_02_orf.m2", + value = "helm_leather_cataclysm_b_02_orf.m2", }, { - fileId = "237888", - text = "helm_leather_pvpdruid_b_01_dwm.m2", - value = "helm_leather_pvpdruid_b_01_dwm.m2", + fileId = "461601", + text = "helm_leather_cataclysm_b_02_orm.m2", + value = "helm_leather_cataclysm_b_02_orm.m2", }, { - fileId = "237889", - text = "helm_leather_pvpdruid_b_01_gnf.m2", - value = "helm_leather_pvpdruid_b_01_gnf.m2", + fileId = "461602", + text = "helm_leather_cataclysm_b_02_scf.m2", + value = "helm_leather_cataclysm_b_02_scf.m2", }, { - fileId = "237890", - text = "helm_leather_pvpdruid_b_01_gnm.m2", - value = "helm_leather_pvpdruid_b_01_gnm.m2", + fileId = "461603", + text = "helm_leather_cataclysm_b_02_scm.m2", + value = "helm_leather_cataclysm_b_02_scm.m2", }, { - fileId = "237891", - text = "helm_leather_pvpdruid_b_01_gof.m2", - value = "helm_leather_pvpdruid_b_01_gof.m2", + fileId = "461604", + text = "helm_leather_cataclysm_b_02_taf.m2", + value = "helm_leather_cataclysm_b_02_taf.m2", }, { - fileId = "237892", - text = "helm_leather_pvpdruid_b_01_gom.m2", - value = "helm_leather_pvpdruid_b_01_gom.m2", + fileId = "461605", + text = "helm_leather_cataclysm_b_02_tam.m2", + value = "helm_leather_cataclysm_b_02_tam.m2", }, { - fileId = "237893", - text = "helm_leather_pvpdruid_b_01_huf.m2", - value = "helm_leather_pvpdruid_b_01_huf.m2", + fileId = "461606", + text = "helm_leather_cataclysm_b_02_trf.m2", + value = "helm_leather_cataclysm_b_02_trf.m2", }, { - fileId = "237894", - text = "helm_leather_pvpdruid_b_01_hum.m2", - value = "helm_leather_pvpdruid_b_01_hum.m2", + fileId = "461607", + text = "helm_leather_cataclysm_b_02_trm.m2", + value = "helm_leather_cataclysm_b_02_trm.m2", }, { - fileId = "237895", - text = "helm_leather_pvpdruid_b_01_nif.m2", - value = "helm_leather_pvpdruid_b_01_nif.m2", + fileId = "461608", + text = "helm_leather_cataclysm_b_02_wof.m2", + value = "helm_leather_cataclysm_b_02_wof.m2", }, { - fileId = "237896", - text = "helm_leather_pvpdruid_b_01_nim.m2", - value = "helm_leather_pvpdruid_b_01_nim.m2", + fileId = "461609", + text = "helm_leather_cataclysm_b_02_wom.m2", + value = "helm_leather_cataclysm_b_02_wom.m2", }, { - fileId = "237897", - text = "helm_leather_pvpdruid_b_01_orf.m2", - value = "helm_leather_pvpdruid_b_01_orf.m2", + fileId = "357145", + text = "helm_leather_common_b_01_bef.m2", + value = "helm_leather_common_b_01_bef.m2", }, { - fileId = "237898", - text = "helm_leather_pvpdruid_b_01_orm.m2", - value = "helm_leather_pvpdruid_b_01_orm.m2", + fileId = "357146", + text = "helm_leather_common_b_01_bem.m2", + value = "helm_leather_common_b_01_bem.m2", }, { - fileId = "237899", - text = "helm_leather_pvpdruid_b_01_scf.m2", - value = "helm_leather_pvpdruid_b_01_scf.m2", + fileId = "357147", + text = "helm_leather_common_b_01_drf.m2", + value = "helm_leather_common_b_01_drf.m2", }, { - fileId = "237900", - text = "helm_leather_pvpdruid_b_01_scm.m2", - value = "helm_leather_pvpdruid_b_01_scm.m2", + fileId = "357148", + text = "helm_leather_common_b_01_drm.m2", + value = "helm_leather_common_b_01_drm.m2", }, { - fileId = "237901", - text = "helm_leather_pvpdruid_b_01_taf.m2", - value = "helm_leather_pvpdruid_b_01_taf.m2", + fileId = "357149", + text = "helm_leather_common_b_01_dwf.m2", + value = "helm_leather_common_b_01_dwf.m2", }, { - fileId = "237902", - text = "helm_leather_pvpdruid_b_01_tam.m2", - value = "helm_leather_pvpdruid_b_01_tam.m2", + fileId = "357150", + text = "helm_leather_common_b_01_dwm.m2", + value = "helm_leather_common_b_01_dwm.m2", }, { - fileId = "237903", - text = "helm_leather_pvpdruid_b_01_trf.m2", - value = "helm_leather_pvpdruid_b_01_trf.m2", + fileId = "357151", + text = "helm_leather_common_b_01_gnf.m2", + value = "helm_leather_common_b_01_gnf.m2", }, { - fileId = "237904", - text = "helm_leather_pvpdruid_b_01_trm.m2", - value = "helm_leather_pvpdruid_b_01_trm.m2", + fileId = "357152", + text = "helm_leather_common_b_01_gnm.m2", + value = "helm_leather_common_b_01_gnm.m2", }, { - fileId = "294403", - text = "helm_leather_pvpdruid_b_02_bef.m2", - value = "helm_leather_pvpdruid_b_02_bef.m2", + fileId = "463016", + text = "helm_leather_common_b_01_gof.m2", + value = "helm_leather_common_b_01_gof.m2", }, { - fileId = "294404", - text = "helm_leather_pvpdruid_b_02_bem.m2", - value = "helm_leather_pvpdruid_b_02_bem.m2", + fileId = "463017", + text = "helm_leather_common_b_01_gom.m2", + value = "helm_leather_common_b_01_gom.m2", }, { - fileId = "294405", - text = "helm_leather_pvpdruid_b_02_drf.m2", - value = "helm_leather_pvpdruid_b_02_drf.m2", + fileId = "357153", + text = "helm_leather_common_b_01_huf.m2", + value = "helm_leather_common_b_01_huf.m2", }, { - fileId = "294406", - text = "helm_leather_pvpdruid_b_02_drm.m2", - value = "helm_leather_pvpdruid_b_02_drm.m2", + fileId = "357154", + text = "helm_leather_common_b_01_hum.m2", + value = "helm_leather_common_b_01_hum.m2", }, { - fileId = "294407", - text = "helm_leather_pvpdruid_b_02_dwf.m2", - value = "helm_leather_pvpdruid_b_02_dwf.m2", + fileId = "357155", + text = "helm_leather_common_b_01_nif.m2", + value = "helm_leather_common_b_01_nif.m2", }, { - fileId = "294408", - text = "helm_leather_pvpdruid_b_02_dwm.m2", - value = "helm_leather_pvpdruid_b_02_dwm.m2", + fileId = "357156", + text = "helm_leather_common_b_01_nim.m2", + value = "helm_leather_common_b_01_nim.m2", }, { - fileId = "294409", - text = "helm_leather_pvpdruid_b_02_gnf.m2", - value = "helm_leather_pvpdruid_b_02_gnf.m2", + fileId = "357157", + text = "helm_leather_common_b_01_orf.m2", + value = "helm_leather_common_b_01_orf.m2", }, { - fileId = "294410", - text = "helm_leather_pvpdruid_b_02_gnm.m2", - value = "helm_leather_pvpdruid_b_02_gnm.m2", + fileId = "357158", + text = "helm_leather_common_b_01_orm.m2", + value = "helm_leather_common_b_01_orm.m2", }, { - fileId = "294411", - text = "helm_leather_pvpdruid_b_02_gof.m2", - value = "helm_leather_pvpdruid_b_02_gof.m2", + fileId = "357159", + text = "helm_leather_common_b_01_scf.m2", + value = "helm_leather_common_b_01_scf.m2", }, { - fileId = "294412", - text = "helm_leather_pvpdruid_b_02_gom.m2", - value = "helm_leather_pvpdruid_b_02_gom.m2", + fileId = "357160", + text = "helm_leather_common_b_01_scm.m2", + value = "helm_leather_common_b_01_scm.m2", }, { - fileId = "294413", - text = "helm_leather_pvpdruid_b_02_huf.m2", - value = "helm_leather_pvpdruid_b_02_huf.m2", + fileId = "357161", + text = "helm_leather_common_b_01_taf.m2", + value = "helm_leather_common_b_01_taf.m2", }, { - fileId = "294414", - text = "helm_leather_pvpdruid_b_02_hum.m2", - value = "helm_leather_pvpdruid_b_02_hum.m2", + fileId = "357162", + text = "helm_leather_common_b_01_tam.m2", + value = "helm_leather_common_b_01_tam.m2", }, { - fileId = "294415", - text = "helm_leather_pvpdruid_b_02_nif.m2", - value = "helm_leather_pvpdruid_b_02_nif.m2", + fileId = "357163", + text = "helm_leather_common_b_01_trf.m2", + value = "helm_leather_common_b_01_trf.m2", }, { - fileId = "294416", - text = "helm_leather_pvpdruid_b_02_nim.m2", - value = "helm_leather_pvpdruid_b_02_nim.m2", + fileId = "357164", + text = "helm_leather_common_b_01_trm.m2", + value = "helm_leather_common_b_01_trm.m2", }, { - fileId = "294417", - text = "helm_leather_pvpdruid_b_02_orf.m2", - value = "helm_leather_pvpdruid_b_02_orf.m2", + fileId = "454113", + text = "helm_leather_common_b_01_wof.m2", + value = "helm_leather_common_b_01_wof.m2", }, { - fileId = "294418", - text = "helm_leather_pvpdruid_b_02_orm.m2", - value = "helm_leather_pvpdruid_b_02_orm.m2", + fileId = "409931", + text = "helm_leather_common_b_01_wom.m2", + value = "helm_leather_common_b_01_wom.m2", }, { - fileId = "294419", - text = "helm_leather_pvpdruid_b_02_scf.m2", - value = "helm_leather_pvpdruid_b_02_scf.m2", + fileId = "360905", + text = "helm_leather_common_b_02_bef.m2", + value = "helm_leather_common_b_02_bef.m2", }, { - fileId = "294420", - text = "helm_leather_pvpdruid_b_02_scm.m2", - value = "helm_leather_pvpdruid_b_02_scm.m2", + fileId = "360906", + text = "helm_leather_common_b_02_bem.m2", + value = "helm_leather_common_b_02_bem.m2", }, { - fileId = "294421", - text = "helm_leather_pvpdruid_b_02_taf.m2", - value = "helm_leather_pvpdruid_b_02_taf.m2", + fileId = "360907", + text = "helm_leather_common_b_02_drf.m2", + value = "helm_leather_common_b_02_drf.m2", }, { - fileId = "294422", - text = "helm_leather_pvpdruid_b_02_tam.m2", - value = "helm_leather_pvpdruid_b_02_tam.m2", + fileId = "360908", + text = "helm_leather_common_b_02_drm.m2", + value = "helm_leather_common_b_02_drm.m2", }, { - fileId = "294423", - text = "helm_leather_pvpdruid_b_02_trf.m2", - value = "helm_leather_pvpdruid_b_02_trf.m2", + fileId = "360909", + text = "helm_leather_common_b_02_dwf.m2", + value = "helm_leather_common_b_02_dwf.m2", }, { - fileId = "294424", - text = "helm_leather_pvpdruid_b_02_trm.m2", - value = "helm_leather_pvpdruid_b_02_trm.m2", + fileId = "360910", + text = "helm_leather_common_b_02_dwm.m2", + value = "helm_leather_common_b_02_dwm.m2", }, { - fileId = "304551", - text = "helm_leather_pvpdruid_b_03_bef.m2", - value = "helm_leather_pvpdruid_b_03_bef.m2", + fileId = "360911", + text = "helm_leather_common_b_02_gnf.m2", + value = "helm_leather_common_b_02_gnf.m2", }, { - fileId = "304552", - text = "helm_leather_pvpdruid_b_03_bem.m2", - value = "helm_leather_pvpdruid_b_03_bem.m2", + fileId = "360912", + text = "helm_leather_common_b_02_gnm.m2", + value = "helm_leather_common_b_02_gnm.m2", }, { - fileId = "304553", - text = "helm_leather_pvpdruid_b_03_drf.m2", - value = "helm_leather_pvpdruid_b_03_drf.m2", + fileId = "463018", + text = "helm_leather_common_b_02_gof.m2", + value = "helm_leather_common_b_02_gof.m2", }, { - fileId = "304554", - text = "helm_leather_pvpdruid_b_03_drm.m2", - value = "helm_leather_pvpdruid_b_03_drm.m2", + fileId = "463238", + text = "helm_leather_common_b_02_gom.m2", + value = "helm_leather_common_b_02_gom.m2", }, { - fileId = "304555", - text = "helm_leather_pvpdruid_b_03_dwf.m2", - value = "helm_leather_pvpdruid_b_03_dwf.m2", + fileId = "360913", + text = "helm_leather_common_b_02_huf.m2", + value = "helm_leather_common_b_02_huf.m2", }, { - fileId = "304556", - text = "helm_leather_pvpdruid_b_03_dwm.m2", - value = "helm_leather_pvpdruid_b_03_dwm.m2", + fileId = "360914", + text = "helm_leather_common_b_02_hum.m2", + value = "helm_leather_common_b_02_hum.m2", }, { - fileId = "304557", - text = "helm_leather_pvpdruid_b_03_gnf.m2", - value = "helm_leather_pvpdruid_b_03_gnf.m2", + fileId = "360915", + text = "helm_leather_common_b_02_nif.m2", + value = "helm_leather_common_b_02_nif.m2", }, { - fileId = "304558", - text = "helm_leather_pvpdruid_b_03_gnm.m2", - value = "helm_leather_pvpdruid_b_03_gnm.m2", + fileId = "360916", + text = "helm_leather_common_b_02_nim.m2", + value = "helm_leather_common_b_02_nim.m2", }, { - fileId = "304559", - text = "helm_leather_pvpdruid_b_03_gof.m2", - value = "helm_leather_pvpdruid_b_03_gof.m2", + fileId = "360917", + text = "helm_leather_common_b_02_orf.m2", + value = "helm_leather_common_b_02_orf.m2", }, { - fileId = "304560", - text = "helm_leather_pvpdruid_b_03_gom.m2", - value = "helm_leather_pvpdruid_b_03_gom.m2", + fileId = "360918", + text = "helm_leather_common_b_02_orm.m2", + value = "helm_leather_common_b_02_orm.m2", }, { - fileId = "304561", - text = "helm_leather_pvpdruid_b_03_huf.m2", - value = "helm_leather_pvpdruid_b_03_huf.m2", + fileId = "360919", + text = "helm_leather_common_b_02_scf.m2", + value = "helm_leather_common_b_02_scf.m2", }, { - fileId = "304562", - text = "helm_leather_pvpdruid_b_03_hum.m2", - value = "helm_leather_pvpdruid_b_03_hum.m2", + fileId = "360920", + text = "helm_leather_common_b_02_scm.m2", + value = "helm_leather_common_b_02_scm.m2", }, { - fileId = "304563", - text = "helm_leather_pvpdruid_b_03_nif.m2", - value = "helm_leather_pvpdruid_b_03_nif.m2", + fileId = "360921", + text = "helm_leather_common_b_02_taf.m2", + value = "helm_leather_common_b_02_taf.m2", }, { - fileId = "304564", - text = "helm_leather_pvpdruid_b_03_nim.m2", - value = "helm_leather_pvpdruid_b_03_nim.m2", + fileId = "360922", + text = "helm_leather_common_b_02_tam.m2", + value = "helm_leather_common_b_02_tam.m2", }, { - fileId = "304565", - text = "helm_leather_pvpdruid_b_03_orf.m2", - value = "helm_leather_pvpdruid_b_03_orf.m2", + fileId = "360923", + text = "helm_leather_common_b_02_trf.m2", + value = "helm_leather_common_b_02_trf.m2", }, { - fileId = "304566", - text = "helm_leather_pvpdruid_b_03_orm.m2", - value = "helm_leather_pvpdruid_b_03_orm.m2", + fileId = "360924", + text = "helm_leather_common_b_02_trm.m2", + value = "helm_leather_common_b_02_trm.m2", }, { - fileId = "304567", - text = "helm_leather_pvpdruid_b_03_scf.m2", - value = "helm_leather_pvpdruid_b_03_scf.m2", + fileId = "454114", + text = "helm_leather_common_b_02_wof.m2", + value = "helm_leather_common_b_02_wof.m2", }, { - fileId = "304568", - text = "helm_leather_pvpdruid_b_03_scm.m2", - value = "helm_leather_pvpdruid_b_03_scm.m2", + fileId = "409932", + text = "helm_leather_common_b_02_wom.m2", + value = "helm_leather_common_b_02_wom.m2", }, { - fileId = "304569", - text = "helm_leather_pvpdruid_b_03_taf.m2", - value = "helm_leather_pvpdruid_b_03_taf.m2", + fileId = "361378", + text = "helm_leather_common_b_03_bef.m2", + value = "helm_leather_common_b_03_bef.m2", }, { - fileId = "304570", - text = "helm_leather_pvpdruid_b_03_tam.m2", - value = "helm_leather_pvpdruid_b_03_tam.m2", + fileId = "361379", + text = "helm_leather_common_b_03_bem.m2", + value = "helm_leather_common_b_03_bem.m2", }, { - fileId = "304571", - text = "helm_leather_pvpdruid_b_03_trf.m2", - value = "helm_leather_pvpdruid_b_03_trf.m2", + fileId = "361380", + text = "helm_leather_common_b_03_drf.m2", + value = "helm_leather_common_b_03_drf.m2", }, { - fileId = "304572", - text = "helm_leather_pvpdruid_b_03_trm.m2", - value = "helm_leather_pvpdruid_b_03_trm.m2", + fileId = "361381", + text = "helm_leather_common_b_03_drm.m2", + value = "helm_leather_common_b_03_drm.m2", }, { - fileId = "348109", - text = "helm_leather_pvpdruid_b_04_bef.m2", - value = "helm_leather_pvpdruid_b_04_bef.m2", + fileId = "361382", + text = "helm_leather_common_b_03_dwf.m2", + value = "helm_leather_common_b_03_dwf.m2", }, { - fileId = "348110", - text = "helm_leather_pvpdruid_b_04_bem.m2", - value = "helm_leather_pvpdruid_b_04_bem.m2", + fileId = "361383", + text = "helm_leather_common_b_03_dwm.m2", + value = "helm_leather_common_b_03_dwm.m2", }, { - fileId = "348111", - text = "helm_leather_pvpdruid_b_04_drf.m2", - value = "helm_leather_pvpdruid_b_04_drf.m2", + fileId = "361384", + text = "helm_leather_common_b_03_gnf.m2", + value = "helm_leather_common_b_03_gnf.m2", }, { - fileId = "348112", - text = "helm_leather_pvpdruid_b_04_drm.m2", - value = "helm_leather_pvpdruid_b_04_drm.m2", + fileId = "361385", + text = "helm_leather_common_b_03_gnm.m2", + value = "helm_leather_common_b_03_gnm.m2", }, { - fileId = "348113", - text = "helm_leather_pvpdruid_b_04_dwf.m2", - value = "helm_leather_pvpdruid_b_04_dwf.m2", + fileId = "361386", + text = "helm_leather_common_b_03_gof.m2", + value = "helm_leather_common_b_03_gof.m2", }, { - fileId = "348114", - text = "helm_leather_pvpdruid_b_04_dwm.m2", - value = "helm_leather_pvpdruid_b_04_dwm.m2", + fileId = "361387", + text = "helm_leather_common_b_03_gom.m2", + value = "helm_leather_common_b_03_gom.m2", }, { - fileId = "348115", - text = "helm_leather_pvpdruid_b_04_gnf.m2", - value = "helm_leather_pvpdruid_b_04_gnf.m2", + fileId = "361388", + text = "helm_leather_common_b_03_huf.m2", + value = "helm_leather_common_b_03_huf.m2", }, { - fileId = "348116", - text = "helm_leather_pvpdruid_b_04_gnm.m2", - value = "helm_leather_pvpdruid_b_04_gnm.m2", + fileId = "361389", + text = "helm_leather_common_b_03_hum.m2", + value = "helm_leather_common_b_03_hum.m2", }, { - fileId = "348117", - text = "helm_leather_pvpdruid_b_04_gof.m2", - value = "helm_leather_pvpdruid_b_04_gof.m2", + fileId = "361390", + text = "helm_leather_common_b_03_nif.m2", + value = "helm_leather_common_b_03_nif.m2", }, { - fileId = "348118", - text = "helm_leather_pvpdruid_b_04_gom.m2", - value = "helm_leather_pvpdruid_b_04_gom.m2", + fileId = "361391", + text = "helm_leather_common_b_03_nim.m2", + value = "helm_leather_common_b_03_nim.m2", }, { - fileId = "348119", - text = "helm_leather_pvpdruid_b_04_huf.m2", - value = "helm_leather_pvpdruid_b_04_huf.m2", + fileId = "361392", + text = "helm_leather_common_b_03_orf.m2", + value = "helm_leather_common_b_03_orf.m2", }, { - fileId = "348120", - text = "helm_leather_pvpdruid_b_04_hum.m2", - value = "helm_leather_pvpdruid_b_04_hum.m2", + fileId = "361393", + text = "helm_leather_common_b_03_orm.m2", + value = "helm_leather_common_b_03_orm.m2", }, { - fileId = "348121", - text = "helm_leather_pvpdruid_b_04_nif.m2", - value = "helm_leather_pvpdruid_b_04_nif.m2", + fileId = "361394", + text = "helm_leather_common_b_03_scf.m2", + value = "helm_leather_common_b_03_scf.m2", }, { - fileId = "348122", - text = "helm_leather_pvpdruid_b_04_nim.m2", - value = "helm_leather_pvpdruid_b_04_nim.m2", + fileId = "361395", + text = "helm_leather_common_b_03_scm.m2", + value = "helm_leather_common_b_03_scm.m2", }, { - fileId = "348123", - text = "helm_leather_pvpdruid_b_04_orf.m2", - value = "helm_leather_pvpdruid_b_04_orf.m2", + fileId = "361396", + text = "helm_leather_common_b_03_taf.m2", + value = "helm_leather_common_b_03_taf.m2", }, { - fileId = "348124", - text = "helm_leather_pvpdruid_b_04_orm.m2", - value = "helm_leather_pvpdruid_b_04_orm.m2", + fileId = "361397", + text = "helm_leather_common_b_03_tam.m2", + value = "helm_leather_common_b_03_tam.m2", }, { - fileId = "348125", - text = "helm_leather_pvpdruid_b_04_scf.m2", - value = "helm_leather_pvpdruid_b_04_scf.m2", + fileId = "361398", + text = "helm_leather_common_b_03_trf.m2", + value = "helm_leather_common_b_03_trf.m2", }, { - fileId = "348773", - text = "helm_leather_pvpdruid_b_04_scm.m2", - value = "helm_leather_pvpdruid_b_04_scm.m2", + fileId = "361399", + text = "helm_leather_common_b_03_trm.m2", + value = "helm_leather_common_b_03_trm.m2", }, { - fileId = "348774", - text = "helm_leather_pvpdruid_b_04_taf.m2", - value = "helm_leather_pvpdruid_b_04_taf.m2", + fileId = "404452", + text = "helm_leather_common_b_03_wof.m2", + value = "helm_leather_common_b_03_wof.m2", }, { - fileId = "348775", - text = "helm_leather_pvpdruid_b_04_tam.m2", - value = "helm_leather_pvpdruid_b_04_tam.m2", + fileId = "404453", + text = "helm_leather_common_b_03_wom.m2", + value = "helm_leather_common_b_03_wom.m2", }, { - fileId = "348776", - text = "helm_leather_pvpdruid_b_04_trf.m2", - value = "helm_leather_pvpdruid_b_04_trf.m2", + fileId = "364337", + text = "helm_leather_common_c_01_bef.m2", + value = "helm_leather_common_c_01_bef.m2", }, { - fileId = "348777", - text = "helm_leather_pvpdruid_b_04_trm.m2", - value = "helm_leather_pvpdruid_b_04_trm.m2", + fileId = "364338", + text = "helm_leather_common_c_01_bem.m2", + value = "helm_leather_common_c_01_bem.m2", }, { - fileId = "138646", - text = "helm_leather_pvphorde_a_01_bef.m2", - value = "helm_leather_pvphorde_a_01_bef.m2", + fileId = "364339", + text = "helm_leather_common_c_01_drf.m2", + value = "helm_leather_common_c_01_drf.m2", }, { - fileId = "138647", - text = "helm_leather_pvphorde_a_01_bem.m2", - value = "helm_leather_pvphorde_a_01_bem.m2", + fileId = "364340", + text = "helm_leather_common_c_01_drm.m2", + value = "helm_leather_common_c_01_drm.m2", }, { - fileId = "138648", - text = "helm_leather_pvphorde_a_01_drf.m2", - value = "helm_leather_pvphorde_a_01_drf.m2", + fileId = "364341", + text = "helm_leather_common_c_01_dwf.m2", + value = "helm_leather_common_c_01_dwf.m2", }, { - fileId = "138649", - text = "helm_leather_pvphorde_a_01_drm.m2", - value = "helm_leather_pvphorde_a_01_drm.m2", + fileId = "364342", + text = "helm_leather_common_c_01_dwm.m2", + value = "helm_leather_common_c_01_dwm.m2", }, { - fileId = "138650", - text = "helm_leather_pvphorde_a_01_dwf.m2", - value = "helm_leather_pvphorde_a_01_dwf.m2", + fileId = "364343", + text = "helm_leather_common_c_01_gnf.m2", + value = "helm_leather_common_c_01_gnf.m2", }, { - fileId = "138651", - text = "helm_leather_pvphorde_a_01_dwm.m2", - value = "helm_leather_pvphorde_a_01_dwm.m2", + fileId = "364344", + text = "helm_leather_common_c_01_gnm.m2", + value = "helm_leather_common_c_01_gnm.m2", }, { - fileId = "138652", - text = "helm_leather_pvphorde_a_01_gnf.m2", - value = "helm_leather_pvphorde_a_01_gnf.m2", + fileId = "364345", + text = "helm_leather_common_c_01_gof.m2", + value = "helm_leather_common_c_01_gof.m2", }, { - fileId = "138653", - text = "helm_leather_pvphorde_a_01_gnm.m2", - value = "helm_leather_pvphorde_a_01_gnm.m2", + fileId = "364346", + text = "helm_leather_common_c_01_gom.m2", + value = "helm_leather_common_c_01_gom.m2", }, { - fileId = "138654", - text = "helm_leather_pvphorde_a_01_gof.m2", - value = "helm_leather_pvphorde_a_01_gof.m2", + fileId = "364347", + text = "helm_leather_common_c_01_huf.m2", + value = "helm_leather_common_c_01_huf.m2", }, { - fileId = "138655", - text = "helm_leather_pvphorde_a_01_gom.m2", - value = "helm_leather_pvphorde_a_01_gom.m2", + fileId = "364348", + text = "helm_leather_common_c_01_hum.m2", + value = "helm_leather_common_c_01_hum.m2", }, { - fileId = "138656", - text = "helm_leather_pvphorde_a_01_huf.m2", - value = "helm_leather_pvphorde_a_01_huf.m2", + fileId = "364349", + text = "helm_leather_common_c_01_nif.m2", + value = "helm_leather_common_c_01_nif.m2", }, { - fileId = "138657", - text = "helm_leather_pvphorde_a_01_hum.m2", - value = "helm_leather_pvphorde_a_01_hum.m2", + fileId = "364350", + text = "helm_leather_common_c_01_nim.m2", + value = "helm_leather_common_c_01_nim.m2", }, { - fileId = "138658", - text = "helm_leather_pvphorde_a_01_nif.m2", - value = "helm_leather_pvphorde_a_01_nif.m2", + fileId = "364351", + text = "helm_leather_common_c_01_orf.m2", + value = "helm_leather_common_c_01_orf.m2", }, { - fileId = "138659", - text = "helm_leather_pvphorde_a_01_nim.m2", - value = "helm_leather_pvphorde_a_01_nim.m2", + fileId = "364352", + text = "helm_leather_common_c_01_orm.m2", + value = "helm_leather_common_c_01_orm.m2", }, { - fileId = "138660", - text = "helm_leather_pvphorde_a_01_orf.m2", - value = "helm_leather_pvphorde_a_01_orf.m2", + fileId = "364353", + text = "helm_leather_common_c_01_scf.m2", + value = "helm_leather_common_c_01_scf.m2", }, { - fileId = "138661", - text = "helm_leather_pvphorde_a_01_orm.m2", - value = "helm_leather_pvphorde_a_01_orm.m2", + fileId = "364354", + text = "helm_leather_common_c_01_scm.m2", + value = "helm_leather_common_c_01_scm.m2", }, { - fileId = "138662", - text = "helm_leather_pvphorde_a_01_scf.m2", - value = "helm_leather_pvphorde_a_01_scf.m2", + fileId = "364355", + text = "helm_leather_common_c_01_taf.m2", + value = "helm_leather_common_c_01_taf.m2", }, { - fileId = "138663", - text = "helm_leather_pvphorde_a_01_scm.m2", - value = "helm_leather_pvphorde_a_01_scm.m2", + fileId = "364356", + text = "helm_leather_common_c_01_tam.m2", + value = "helm_leather_common_c_01_tam.m2", }, { - fileId = "138664", - text = "helm_leather_pvphorde_a_01_taf.m2", - value = "helm_leather_pvphorde_a_01_taf.m2", + fileId = "364357", + text = "helm_leather_common_c_01_trf.m2", + value = "helm_leather_common_c_01_trf.m2", }, { - fileId = "138665", - text = "helm_leather_pvphorde_a_01_tam.m2", - value = "helm_leather_pvphorde_a_01_tam.m2", + fileId = "364358", + text = "helm_leather_common_c_01_trm.m2", + value = "helm_leather_common_c_01_trm.m2", }, { - fileId = "138666", - text = "helm_leather_pvphorde_a_01_trf.m2", - value = "helm_leather_pvphorde_a_01_trf.m2", + fileId = "454115", + text = "helm_leather_common_c_01_wof.m2", + value = "helm_leather_common_c_01_wof.m2", }, { - fileId = "138667", - text = "helm_leather_pvphorde_a_01_trm.m2", - value = "helm_leather_pvphorde_a_01_trm.m2", + fileId = "409933", + text = "helm_leather_common_c_01_wom.m2", + value = "helm_leather_common_c_01_wom.m2", }, { - fileId = "138670", - text = "helm_leather_pvphorde_c_01_bef.m2", - value = "helm_leather_pvphorde_c_01_bef.m2", + fileId = "138358", + text = "helm_leather_d_01_bef.m2", + value = "helm_leather_d_01_bef.m2", }, { - fileId = "138671", - text = "helm_leather_pvphorde_c_01_bem.m2", - value = "helm_leather_pvphorde_c_01_bem.m2", + fileId = "138359", + text = "helm_leather_d_01_bem.m2", + value = "helm_leather_d_01_bem.m2", }, { - fileId = "138672", - text = "helm_leather_pvphorde_c_01_drf.m2", - value = "helm_leather_pvphorde_c_01_drf.m2", + fileId = "138360", + text = "helm_leather_d_01_drf.m2", + value = "helm_leather_d_01_drf.m2", }, { - fileId = "138673", - text = "helm_leather_pvphorde_c_01_drm.m2", - value = "helm_leather_pvphorde_c_01_drm.m2", + fileId = "138361", + text = "helm_leather_d_01_drm.m2", + value = "helm_leather_d_01_drm.m2", }, { - fileId = "138674", - text = "helm_leather_pvphorde_c_01_dwf.m2", - value = "helm_leather_pvphorde_c_01_dwf.m2", + fileId = "138362", + text = "helm_leather_d_01_dwf.m2", + value = "helm_leather_d_01_dwf.m2", }, { - fileId = "138675", - text = "helm_leather_pvphorde_c_01_dwm.m2", - value = "helm_leather_pvphorde_c_01_dwm.m2", + fileId = "138363", + text = "helm_leather_d_01_dwm.m2", + value = "helm_leather_d_01_dwm.m2", }, { - fileId = "138676", - text = "helm_leather_pvphorde_c_01_gnf.m2", - value = "helm_leather_pvphorde_c_01_gnf.m2", + fileId = "138364", + text = "helm_leather_d_01_gnf.m2", + value = "helm_leather_d_01_gnf.m2", }, { - fileId = "138677", - text = "helm_leather_pvphorde_c_01_gnm.m2", - value = "helm_leather_pvphorde_c_01_gnm.m2", + fileId = "138365", + text = "helm_leather_d_01_gnm.m2", + value = "helm_leather_d_01_gnm.m2", }, { - fileId = "138678", - text = "helm_leather_pvphorde_c_01_gof.m2", - value = "helm_leather_pvphorde_c_01_gof.m2", + fileId = "138366", + text = "helm_leather_d_01_gof.m2", + value = "helm_leather_d_01_gof.m2", }, { - fileId = "138679", - text = "helm_leather_pvphorde_c_01_gom.m2", - value = "helm_leather_pvphorde_c_01_gom.m2", + fileId = "138367", + text = "helm_leather_d_01_gom.m2", + value = "helm_leather_d_01_gom.m2", }, { - fileId = "138680", - text = "helm_leather_pvphorde_c_01_huf.m2", - value = "helm_leather_pvphorde_c_01_huf.m2", + fileId = "138368", + text = "helm_leather_d_01_huf.m2", + value = "helm_leather_d_01_huf.m2", }, { - fileId = "138681", - text = "helm_leather_pvphorde_c_01_hum.m2", - value = "helm_leather_pvphorde_c_01_hum.m2", + fileId = "138369", + text = "helm_leather_d_01_hum.m2", + value = "helm_leather_d_01_hum.m2", }, { - fileId = "138682", - text = "helm_leather_pvphorde_c_01_nif.m2", - value = "helm_leather_pvphorde_c_01_nif.m2", + fileId = "138370", + text = "helm_leather_d_01_nif.m2", + value = "helm_leather_d_01_nif.m2", }, { - fileId = "138683", - text = "helm_leather_pvphorde_c_01_nim.m2", - value = "helm_leather_pvphorde_c_01_nim.m2", + fileId = "138371", + text = "helm_leather_d_01_nim.m2", + value = "helm_leather_d_01_nim.m2", }, { - fileId = "138684", - text = "helm_leather_pvphorde_c_01_orf.m2", - value = "helm_leather_pvphorde_c_01_orf.m2", + fileId = "138372", + text = "helm_leather_d_01_orf.m2", + value = "helm_leather_d_01_orf.m2", }, { - fileId = "138685", - text = "helm_leather_pvphorde_c_01_orm.m2", - value = "helm_leather_pvphorde_c_01_orm.m2", + fileId = "138373", + text = "helm_leather_d_01_orm.m2", + value = "helm_leather_d_01_orm.m2", }, { - fileId = "138686", - text = "helm_leather_pvphorde_c_01_scf.m2", - value = "helm_leather_pvphorde_c_01_scf.m2", + fileId = "138374", + text = "helm_leather_d_01_scf.m2", + value = "helm_leather_d_01_scf.m2", }, { - fileId = "138687", - text = "helm_leather_pvphorde_c_01_scm.m2", - value = "helm_leather_pvphorde_c_01_scm.m2", + fileId = "138375", + text = "helm_leather_d_01_scm.m2", + value = "helm_leather_d_01_scm.m2", }, { - fileId = "138688", - text = "helm_leather_pvphorde_c_01_taf.m2", - value = "helm_leather_pvphorde_c_01_taf.m2", + fileId = "138376", + text = "helm_leather_d_01_taf.m2", + value = "helm_leather_d_01_taf.m2", }, { - fileId = "138689", - text = "helm_leather_pvphorde_c_01_tam.m2", - value = "helm_leather_pvphorde_c_01_tam.m2", + fileId = "138377", + text = "helm_leather_d_01_tam.m2", + value = "helm_leather_d_01_tam.m2", }, { - fileId = "138690", - text = "helm_leather_pvphorde_c_01_trf.m2", - value = "helm_leather_pvphorde_c_01_trf.m2", + fileId = "138378", + text = "helm_leather_d_01_trf.m2", + value = "helm_leather_d_01_trf.m2", }, { - fileId = "138691", - text = "helm_leather_pvphorde_c_01_trm.m2", - value = "helm_leather_pvphorde_c_01_trm.m2", + fileId = "138379", + text = "helm_leather_d_01_trm.m2", + value = "helm_leather_d_01_trm.m2", }, { - fileId = "237909", - text = "helm_leather_pvprogue_b_01_bef.m2", - value = "helm_leather_pvprogue_b_01_bef.m2", + fileId = "454121", + text = "helm_leather_d_01_wof.m2", + value = "helm_leather_d_01_wof.m2", }, { - fileId = "237910", - text = "helm_leather_pvprogue_b_01_bem.m2", - value = "helm_leather_pvprogue_b_01_bem.m2", + fileId = "409936", + text = "helm_leather_d_01_wom.m2", + value = "helm_leather_d_01_wom.m2", }, { - fileId = "237911", - text = "helm_leather_pvprogue_b_01_drf.m2", - value = "helm_leather_pvprogue_b_01_drf.m2", + fileId = "138389", + text = "helm_leather_d_02_bef.m2", + value = "helm_leather_d_02_bef.m2", }, { - fileId = "237912", - text = "helm_leather_pvprogue_b_01_drm.m2", - value = "helm_leather_pvprogue_b_01_drm.m2", + fileId = "138390", + text = "helm_leather_d_02_bem.m2", + value = "helm_leather_d_02_bem.m2", }, { - fileId = "237913", - text = "helm_leather_pvprogue_b_01_dwf.m2", - value = "helm_leather_pvprogue_b_01_dwf.m2", + fileId = "138391", + text = "helm_leather_d_02_drf.m2", + value = "helm_leather_d_02_drf.m2", }, { - fileId = "237914", - text = "helm_leather_pvprogue_b_01_dwm.m2", - value = "helm_leather_pvprogue_b_01_dwm.m2", + fileId = "138392", + text = "helm_leather_d_02_drm.m2", + value = "helm_leather_d_02_drm.m2", }, { - fileId = "237915", - text = "helm_leather_pvprogue_b_01_gnf.m2", - value = "helm_leather_pvprogue_b_01_gnf.m2", + fileId = "138393", + text = "helm_leather_d_02_dwf.m2", + value = "helm_leather_d_02_dwf.m2", }, { - fileId = "237916", - text = "helm_leather_pvprogue_b_01_gnm.m2", - value = "helm_leather_pvprogue_b_01_gnm.m2", + fileId = "138394", + text = "helm_leather_d_02_dwm.m2", + value = "helm_leather_d_02_dwm.m2", }, { - fileId = "237917", - text = "helm_leather_pvprogue_b_01_gof.m2", - value = "helm_leather_pvprogue_b_01_gof.m2", + fileId = "138395", + text = "helm_leather_d_02_gnf.m2", + value = "helm_leather_d_02_gnf.m2", }, { - fileId = "237918", - text = "helm_leather_pvprogue_b_01_gom.m2", - value = "helm_leather_pvprogue_b_01_gom.m2", + fileId = "138396", + text = "helm_leather_d_02_gnm.m2", + value = "helm_leather_d_02_gnm.m2", }, { - fileId = "237919", - text = "helm_leather_pvprogue_b_01_huf.m2", - value = "helm_leather_pvprogue_b_01_huf.m2", + fileId = "138397", + text = "helm_leather_d_02_gof.m2", + value = "helm_leather_d_02_gof.m2", }, { - fileId = "237920", - text = "helm_leather_pvprogue_b_01_hum.m2", - value = "helm_leather_pvprogue_b_01_hum.m2", + fileId = "138398", + text = "helm_leather_d_02_gom.m2", + value = "helm_leather_d_02_gom.m2", }, { - fileId = "237921", - text = "helm_leather_pvprogue_b_01_nif.m2", - value = "helm_leather_pvprogue_b_01_nif.m2", + fileId = "138399", + text = "helm_leather_d_02_huf.m2", + value = "helm_leather_d_02_huf.m2", }, { - fileId = "237922", - text = "helm_leather_pvprogue_b_01_nim.m2", - value = "helm_leather_pvprogue_b_01_nim.m2", + fileId = "138400", + text = "helm_leather_d_02_hum.m2", + value = "helm_leather_d_02_hum.m2", }, { - fileId = "237923", - text = "helm_leather_pvprogue_b_01_orf.m2", - value = "helm_leather_pvprogue_b_01_orf.m2", + fileId = "138401", + text = "helm_leather_d_02_nif.m2", + value = "helm_leather_d_02_nif.m2", }, { - fileId = "237924", - text = "helm_leather_pvprogue_b_01_orm.m2", - value = "helm_leather_pvprogue_b_01_orm.m2", + fileId = "138402", + text = "helm_leather_d_02_nim.m2", + value = "helm_leather_d_02_nim.m2", }, { - fileId = "237925", - text = "helm_leather_pvprogue_b_01_scf.m2", - value = "helm_leather_pvprogue_b_01_scf.m2", + fileId = "138403", + text = "helm_leather_d_02_orf.m2", + value = "helm_leather_d_02_orf.m2", }, { - fileId = "237926", - text = "helm_leather_pvprogue_b_01_scm.m2", - value = "helm_leather_pvprogue_b_01_scm.m2", + fileId = "138404", + text = "helm_leather_d_02_orm.m2", + value = "helm_leather_d_02_orm.m2", }, { - fileId = "237927", - text = "helm_leather_pvprogue_b_01_taf.m2", - value = "helm_leather_pvprogue_b_01_taf.m2", + fileId = "138405", + text = "helm_leather_d_02_scf.m2", + value = "helm_leather_d_02_scf.m2", }, { - fileId = "237928", - text = "helm_leather_pvprogue_b_01_tam.m2", - value = "helm_leather_pvprogue_b_01_tam.m2", + fileId = "138406", + text = "helm_leather_d_02_scm.m2", + value = "helm_leather_d_02_scm.m2", }, { - fileId = "237929", - text = "helm_leather_pvprogue_b_01_trf.m2", - value = "helm_leather_pvprogue_b_01_trf.m2", + fileId = "138407", + text = "helm_leather_d_02_taf.m2", + value = "helm_leather_d_02_taf.m2", }, { - fileId = "237930", - text = "helm_leather_pvprogue_b_01_trm.m2", - value = "helm_leather_pvprogue_b_01_trm.m2", + fileId = "138408", + text = "helm_leather_d_02_tam.m2", + value = "helm_leather_d_02_tam.m2", }, { - fileId = "254583", - text = "helm_leather_pvprogue_b_02_bef.m2", - value = "helm_leather_pvprogue_b_02_bef.m2", + fileId = "138409", + text = "helm_leather_d_02_trf.m2", + value = "helm_leather_d_02_trf.m2", }, { - fileId = "254584", - text = "helm_leather_pvprogue_b_02_bem.m2", - value = "helm_leather_pvprogue_b_02_bem.m2", + fileId = "138410", + text = "helm_leather_d_02_trm.m2", + value = "helm_leather_d_02_trm.m2", }, { - fileId = "254585", - text = "helm_leather_pvprogue_b_02_drf.m2", - value = "helm_leather_pvprogue_b_02_drf.m2", + fileId = "454122", + text = "helm_leather_d_02_wof.m2", + value = "helm_leather_d_02_wof.m2", }, { - fileId = "254586", - text = "helm_leather_pvprogue_b_02_drm.m2", - value = "helm_leather_pvprogue_b_02_drm.m2", + fileId = "409937", + text = "helm_leather_d_02_wom.m2", + value = "helm_leather_d_02_wom.m2", }, { - fileId = "254587", - text = "helm_leather_pvprogue_b_02_dwf.m2", - value = "helm_leather_pvprogue_b_02_dwf.m2", + fileId = "138419", + text = "helm_leather_dungeondruid_a_01_bef.m2", + value = "helm_leather_dungeondruid_a_01_bef.m2", }, { - fileId = "254588", - text = "helm_leather_pvprogue_b_02_dwm.m2", - value = "helm_leather_pvprogue_b_02_dwm.m2", + fileId = "138420", + text = "helm_leather_dungeondruid_a_01_bem.m2", + value = "helm_leather_dungeondruid_a_01_bem.m2", }, { - fileId = "254589", - text = "helm_leather_pvprogue_b_02_gnf.m2", - value = "helm_leather_pvprogue_b_02_gnf.m2", + fileId = "138421", + text = "helm_leather_dungeondruid_a_01_drf.m2", + value = "helm_leather_dungeondruid_a_01_drf.m2", }, { - fileId = "254590", - text = "helm_leather_pvprogue_b_02_gnm.m2", - value = "helm_leather_pvprogue_b_02_gnm.m2", + fileId = "138422", + text = "helm_leather_dungeondruid_a_01_drm.m2", + value = "helm_leather_dungeondruid_a_01_drm.m2", }, { - fileId = "254591", - text = "helm_leather_pvprogue_b_02_gof.m2", - value = "helm_leather_pvprogue_b_02_gof.m2", + fileId = "138423", + text = "helm_leather_dungeondruid_a_01_dwf.m2", + value = "helm_leather_dungeondruid_a_01_dwf.m2", }, { - fileId = "254592", - text = "helm_leather_pvprogue_b_02_gom.m2", - value = "helm_leather_pvprogue_b_02_gom.m2", + fileId = "138424", + text = "helm_leather_dungeondruid_a_01_dwm.m2", + value = "helm_leather_dungeondruid_a_01_dwm.m2", }, { - fileId = "254593", - text = "helm_leather_pvprogue_b_02_huf.m2", - value = "helm_leather_pvprogue_b_02_huf.m2", + fileId = "138425", + text = "helm_leather_dungeondruid_a_01_gnf.m2", + value = "helm_leather_dungeondruid_a_01_gnf.m2", }, { - fileId = "254594", - text = "helm_leather_pvprogue_b_02_hum.m2", - value = "helm_leather_pvprogue_b_02_hum.m2", + fileId = "138426", + text = "helm_leather_dungeondruid_a_01_gnm.m2", + value = "helm_leather_dungeondruid_a_01_gnm.m2", }, { - fileId = "254595", - text = "helm_leather_pvprogue_b_02_nif.m2", - value = "helm_leather_pvprogue_b_02_nif.m2", + fileId = "463019", + text = "helm_leather_dungeondruid_a_01_gof.m2", + value = "helm_leather_dungeondruid_a_01_gof.m2", }, { - fileId = "254596", - text = "helm_leather_pvprogue_b_02_nim.m2", - value = "helm_leather_pvprogue_b_02_nim.m2", + fileId = "138427", + text = "helm_leather_dungeondruid_a_01_gom.m2", + value = "helm_leather_dungeondruid_a_01_gom.m2", }, { - fileId = "254597", - text = "helm_leather_pvprogue_b_02_orf.m2", - value = "helm_leather_pvprogue_b_02_orf.m2", + fileId = "138428", + text = "helm_leather_dungeondruid_a_01_huf.m2", + value = "helm_leather_dungeondruid_a_01_huf.m2", }, { - fileId = "254598", - text = "helm_leather_pvprogue_b_02_orm.m2", - value = "helm_leather_pvprogue_b_02_orm.m2", + fileId = "138429", + text = "helm_leather_dungeondruid_a_01_hum.m2", + value = "helm_leather_dungeondruid_a_01_hum.m2", }, { - fileId = "254599", - text = "helm_leather_pvprogue_b_02_scf.m2", - value = "helm_leather_pvprogue_b_02_scf.m2", + fileId = "138430", + text = "helm_leather_dungeondruid_a_01_nif.m2", + value = "helm_leather_dungeondruid_a_01_nif.m2", }, { - fileId = "254600", - text = "helm_leather_pvprogue_b_02_scm.m2", - value = "helm_leather_pvprogue_b_02_scm.m2", + fileId = "138431", + text = "helm_leather_dungeondruid_a_01_nim.m2", + value = "helm_leather_dungeondruid_a_01_nim.m2", }, { - fileId = "254601", - text = "helm_leather_pvprogue_b_02_taf.m2", - value = "helm_leather_pvprogue_b_02_taf.m2", + fileId = "138432", + text = "helm_leather_dungeondruid_a_01_orf.m2", + value = "helm_leather_dungeondruid_a_01_orf.m2", }, { - fileId = "254602", - text = "helm_leather_pvprogue_b_02_tam.m2", - value = "helm_leather_pvprogue_b_02_tam.m2", + fileId = "138433", + text = "helm_leather_dungeondruid_a_01_orm.m2", + value = "helm_leather_dungeondruid_a_01_orm.m2", }, { - fileId = "254603", - text = "helm_leather_pvprogue_b_02_trf.m2", - value = "helm_leather_pvprogue_b_02_trf.m2", + fileId = "138435", + text = "helm_leather_dungeondruid_a_01_scf.m2", + value = "helm_leather_dungeondruid_a_01_scf.m2", }, { - fileId = "254604", - text = "helm_leather_pvprogue_b_02_trm.m2", - value = "helm_leather_pvprogue_b_02_trm.m2", + fileId = "138436", + text = "helm_leather_dungeondruid_a_01_scm.m2", + value = "helm_leather_dungeondruid_a_01_scm.m2", }, { - fileId = "304469", - text = "helm_leather_pvprogue_b_03_bef.m2", - value = "helm_leather_pvprogue_b_03_bef.m2", + fileId = "138437", + text = "helm_leather_dungeondruid_a_01_taf.m2", + value = "helm_leather_dungeondruid_a_01_taf.m2", }, { - fileId = "304470", - text = "helm_leather_pvprogue_b_03_bem.m2", - value = "helm_leather_pvprogue_b_03_bem.m2", + fileId = "138438", + text = "helm_leather_dungeondruid_a_01_tam.m2", + value = "helm_leather_dungeondruid_a_01_tam.m2", }, { - fileId = "304471", - text = "helm_leather_pvprogue_b_03_drf.m2", - value = "helm_leather_pvprogue_b_03_drf.m2", + fileId = "138439", + text = "helm_leather_dungeondruid_a_01_trf.m2", + value = "helm_leather_dungeondruid_a_01_trf.m2", }, { - fileId = "304472", - text = "helm_leather_pvprogue_b_03_drm.m2", - value = "helm_leather_pvprogue_b_03_drm.m2", + fileId = "138440", + text = "helm_leather_dungeondruid_a_01_trm.m2", + value = "helm_leather_dungeondruid_a_01_trm.m2", }, { - fileId = "304473", - text = "helm_leather_pvprogue_b_03_dwf.m2", - value = "helm_leather_pvprogue_b_03_dwf.m2", + fileId = "454116", + text = "helm_leather_dungeondruid_a_01_wof.m2", + value = "helm_leather_dungeondruid_a_01_wof.m2", }, { - fileId = "304474", - text = "helm_leather_pvprogue_b_03_dwm.m2", - value = "helm_leather_pvprogue_b_03_dwm.m2", + fileId = "430007", + text = "helm_leather_dungeondruid_a_01_wom.m2", + value = "helm_leather_dungeondruid_a_01_wom.m2", }, { - fileId = "304475", - text = "helm_leather_pvprogue_b_03_gnf.m2", - value = "helm_leather_pvprogue_b_03_gnf.m2", + fileId = "138445", + text = "helm_leather_dungeondruid_b_01_bef.m2", + value = "helm_leather_dungeondruid_b_01_bef.m2", }, { - fileId = "304476", - text = "helm_leather_pvprogue_b_03_gnm.m2", - value = "helm_leather_pvprogue_b_03_gnm.m2", + fileId = "138446", + text = "helm_leather_dungeondruid_b_01_bem.m2", + value = "helm_leather_dungeondruid_b_01_bem.m2", }, { - fileId = "304477", - text = "helm_leather_pvprogue_b_03_gof.m2", - value = "helm_leather_pvprogue_b_03_gof.m2", + fileId = "138447", + text = "helm_leather_dungeondruid_b_01_drf.m2", + value = "helm_leather_dungeondruid_b_01_drf.m2", }, { - fileId = "304478", - text = "helm_leather_pvprogue_b_03_gom.m2", - value = "helm_leather_pvprogue_b_03_gom.m2", + fileId = "138448", + text = "helm_leather_dungeondruid_b_01_drm.m2", + value = "helm_leather_dungeondruid_b_01_drm.m2", }, { - fileId = "304479", - text = "helm_leather_pvprogue_b_03_huf.m2", - value = "helm_leather_pvprogue_b_03_huf.m2", + fileId = "138449", + text = "helm_leather_dungeondruid_b_01_dwf.m2", + value = "helm_leather_dungeondruid_b_01_dwf.m2", }, { - fileId = "304480", - text = "helm_leather_pvprogue_b_03_hum.m2", - value = "helm_leather_pvprogue_b_03_hum.m2", + fileId = "138450", + text = "helm_leather_dungeondruid_b_01_dwm.m2", + value = "helm_leather_dungeondruid_b_01_dwm.m2", }, { - fileId = "304481", - text = "helm_leather_pvprogue_b_03_nif.m2", - value = "helm_leather_pvprogue_b_03_nif.m2", + fileId = "138451", + text = "helm_leather_dungeondruid_b_01_gnf.m2", + value = "helm_leather_dungeondruid_b_01_gnf.m2", }, { - fileId = "304482", - text = "helm_leather_pvprogue_b_03_nim.m2", - value = "helm_leather_pvprogue_b_03_nim.m2", + fileId = "138452", + text = "helm_leather_dungeondruid_b_01_gnm.m2", + value = "helm_leather_dungeondruid_b_01_gnm.m2", }, { - fileId = "304483", - text = "helm_leather_pvprogue_b_03_orf.m2", - value = "helm_leather_pvprogue_b_03_orf.m2", + fileId = "138453", + text = "helm_leather_dungeondruid_b_01_gof.m2", + value = "helm_leather_dungeondruid_b_01_gof.m2", }, { - fileId = "304484", - text = "helm_leather_pvprogue_b_03_orm.m2", - value = "helm_leather_pvprogue_b_03_orm.m2", + fileId = "138454", + text = "helm_leather_dungeondruid_b_01_gom.m2", + value = "helm_leather_dungeondruid_b_01_gom.m2", }, { - fileId = "304485", - text = "helm_leather_pvprogue_b_03_scf.m2", - value = "helm_leather_pvprogue_b_03_scf.m2", + fileId = "138455", + text = "helm_leather_dungeondruid_b_01_huf.m2", + value = "helm_leather_dungeondruid_b_01_huf.m2", }, { - fileId = "304486", - text = "helm_leather_pvprogue_b_03_scm.m2", - value = "helm_leather_pvprogue_b_03_scm.m2", + fileId = "138456", + text = "helm_leather_dungeondruid_b_01_hum.m2", + value = "helm_leather_dungeondruid_b_01_hum.m2", }, { - fileId = "304487", - text = "helm_leather_pvprogue_b_03_taf.m2", - value = "helm_leather_pvprogue_b_03_taf.m2", + fileId = "138457", + text = "helm_leather_dungeondruid_b_01_nif.m2", + value = "helm_leather_dungeondruid_b_01_nif.m2", }, { - fileId = "304488", - text = "helm_leather_pvprogue_b_03_tam.m2", - value = "helm_leather_pvprogue_b_03_tam.m2", + fileId = "138458", + text = "helm_leather_dungeondruid_b_01_nim.m2", + value = "helm_leather_dungeondruid_b_01_nim.m2", }, { - fileId = "304489", - text = "helm_leather_pvprogue_b_03_trf.m2", - value = "helm_leather_pvprogue_b_03_trf.m2", + fileId = "138459", + text = "helm_leather_dungeondruid_b_01_orf.m2", + value = "helm_leather_dungeondruid_b_01_orf.m2", }, { - fileId = "304490", - text = "helm_leather_pvprogue_b_03_trm.m2", - value = "helm_leather_pvprogue_b_03_trm.m2", + fileId = "138460", + text = "helm_leather_dungeondruid_b_01_orm.m2", + value = "helm_leather_dungeondruid_b_01_orm.m2", }, { - fileId = "346054", - text = "helm_leather_pvprogue_b_04_bef.m2", - value = "helm_leather_pvprogue_b_04_bef.m2", + fileId = "138461", + text = "helm_leather_dungeondruid_b_01_scf.m2", + value = "helm_leather_dungeondruid_b_01_scf.m2", }, { - fileId = "346055", - text = "helm_leather_pvprogue_b_04_bem.m2", - value = "helm_leather_pvprogue_b_04_bem.m2", + fileId = "138462", + text = "helm_leather_dungeondruid_b_01_scm.m2", + value = "helm_leather_dungeondruid_b_01_scm.m2", }, { - fileId = "346056", - text = "helm_leather_pvprogue_b_04_drf.m2", - value = "helm_leather_pvprogue_b_04_drf.m2", + fileId = "138463", + text = "helm_leather_dungeondruid_b_01_taf.m2", + value = "helm_leather_dungeondruid_b_01_taf.m2", }, { - fileId = "346057", - text = "helm_leather_pvprogue_b_04_drm.m2", - value = "helm_leather_pvprogue_b_04_drm.m2", + fileId = "138464", + text = "helm_leather_dungeondruid_b_01_tam.m2", + value = "helm_leather_dungeondruid_b_01_tam.m2", }, { - fileId = "346058", - text = "helm_leather_pvprogue_b_04_dwf.m2", - value = "helm_leather_pvprogue_b_04_dwf.m2", + fileId = "138465", + text = "helm_leather_dungeondruid_b_01_trf.m2", + value = "helm_leather_dungeondruid_b_01_trf.m2", }, { - fileId = "346059", - text = "helm_leather_pvprogue_b_04_dwm.m2", - value = "helm_leather_pvprogue_b_04_dwm.m2", + fileId = "138466", + text = "helm_leather_dungeondruid_b_01_trm.m2", + value = "helm_leather_dungeondruid_b_01_trm.m2", }, { - fileId = "346060", - text = "helm_leather_pvprogue_b_04_gnf.m2", - value = "helm_leather_pvprogue_b_04_gnf.m2", + fileId = "454117", + text = "helm_leather_dungeondruid_b_01_wof.m2", + value = "helm_leather_dungeondruid_b_01_wof.m2", }, { - fileId = "346061", - text = "helm_leather_pvprogue_b_04_gnm.m2", - value = "helm_leather_pvprogue_b_04_gnm.m2", + fileId = "409934", + text = "helm_leather_dungeondruid_b_01_wom.m2", + value = "helm_leather_dungeondruid_b_01_wom.m2", }, { - fileId = "346062", - text = "helm_leather_pvprogue_b_04_gof.m2", - value = "helm_leather_pvprogue_b_04_gof.m2", + fileId = "237858", + text = "helm_leather_dungeonleather_c_01_bef.m2", + value = "helm_leather_dungeonleather_c_01_bef.m2", }, { - fileId = "346063", - text = "helm_leather_pvprogue_b_04_gom.m2", - value = "helm_leather_pvprogue_b_04_gom.m2", + fileId = "237859", + text = "helm_leather_dungeonleather_c_01_bem.m2", + value = "helm_leather_dungeonleather_c_01_bem.m2", }, { - fileId = "346064", - text = "helm_leather_pvprogue_b_04_huf.m2", - value = "helm_leather_pvprogue_b_04_huf.m2", + fileId = "237860", + text = "helm_leather_dungeonleather_c_01_drf.m2", + value = "helm_leather_dungeonleather_c_01_drf.m2", }, { - fileId = "346065", - text = "helm_leather_pvprogue_b_04_hum.m2", - value = "helm_leather_pvprogue_b_04_hum.m2", + fileId = "237861", + text = "helm_leather_dungeonleather_c_01_drm.m2", + value = "helm_leather_dungeonleather_c_01_drm.m2", }, { - fileId = "346066", - text = "helm_leather_pvprogue_b_04_nif.m2", - value = "helm_leather_pvprogue_b_04_nif.m2", + fileId = "237862", + text = "helm_leather_dungeonleather_c_01_dwf.m2", + value = "helm_leather_dungeonleather_c_01_dwf.m2", }, { - fileId = "346067", - text = "helm_leather_pvprogue_b_04_nim.m2", - value = "helm_leather_pvprogue_b_04_nim.m2", + fileId = "237863", + text = "helm_leather_dungeonleather_c_01_dwm.m2", + value = "helm_leather_dungeonleather_c_01_dwm.m2", }, { - fileId = "346068", - text = "helm_leather_pvprogue_b_04_orf.m2", - value = "helm_leather_pvprogue_b_04_orf.m2", + fileId = "237864", + text = "helm_leather_dungeonleather_c_01_gnf.m2", + value = "helm_leather_dungeonleather_c_01_gnf.m2", }, { - fileId = "346069", - text = "helm_leather_pvprogue_b_04_orm.m2", - value = "helm_leather_pvprogue_b_04_orm.m2", + fileId = "237865", + text = "helm_leather_dungeonleather_c_01_gnm.m2", + value = "helm_leather_dungeonleather_c_01_gnm.m2", }, { - fileId = "346070", - text = "helm_leather_pvprogue_b_04_scf.m2", - value = "helm_leather_pvprogue_b_04_scf.m2", + fileId = "237866", + text = "helm_leather_dungeonleather_c_01_gof.m2", + value = "helm_leather_dungeonleather_c_01_gof.m2", }, { - fileId = "346071", - text = "helm_leather_pvprogue_b_04_scm.m2", - value = "helm_leather_pvprogue_b_04_scm.m2", + fileId = "237867", + text = "helm_leather_dungeonleather_c_01_gom.m2", + value = "helm_leather_dungeonleather_c_01_gom.m2", }, { - fileId = "346072", - text = "helm_leather_pvprogue_b_04_taf.m2", - value = "helm_leather_pvprogue_b_04_taf.m2", + fileId = "237868", + text = "helm_leather_dungeonleather_c_01_huf.m2", + value = "helm_leather_dungeonleather_c_01_huf.m2", }, { - fileId = "346073", - text = "helm_leather_pvprogue_b_04_tam.m2", - value = "helm_leather_pvprogue_b_04_tam.m2", + fileId = "237869", + text = "helm_leather_dungeonleather_c_01_hum.m2", + value = "helm_leather_dungeonleather_c_01_hum.m2", }, { - fileId = "346074", - text = "helm_leather_pvprogue_b_04_trf.m2", - value = "helm_leather_pvprogue_b_04_trf.m2", + fileId = "237870", + text = "helm_leather_dungeonleather_c_01_nif.m2", + value = "helm_leather_dungeonleather_c_01_nif.m2", }, { - fileId = "346075", - text = "helm_leather_pvprogue_b_04_trm.m2", - value = "helm_leather_pvprogue_b_04_trm.m2", + fileId = "237871", + text = "helm_leather_dungeonleather_c_01_nim.m2", + value = "helm_leather_dungeonleather_c_01_nim.m2", }, { - fileId = "138695", - text = "helm_leather_raiddruid_a_01_bef.m2", - value = "helm_leather_raiddruid_a_01_bef.m2", + fileId = "237872", + text = "helm_leather_dungeonleather_c_01_orf.m2", + value = "helm_leather_dungeonleather_c_01_orf.m2", }, { - fileId = "138696", - text = "helm_leather_raiddruid_a_01_bem.m2", - value = "helm_leather_raiddruid_a_01_bem.m2", + fileId = "237873", + text = "helm_leather_dungeonleather_c_01_orm.m2", + value = "helm_leather_dungeonleather_c_01_orm.m2", }, { - fileId = "138697", - text = "helm_leather_raiddruid_a_01_drf.m2", - value = "helm_leather_raiddruid_a_01_drf.m2", + fileId = "237874", + text = "helm_leather_dungeonleather_c_01_scf.m2", + value = "helm_leather_dungeonleather_c_01_scf.m2", }, { - fileId = "138698", - text = "helm_leather_raiddruid_a_01_drm.m2", - value = "helm_leather_raiddruid_a_01_drm.m2", + fileId = "237875", + text = "helm_leather_dungeonleather_c_01_scm.m2", + value = "helm_leather_dungeonleather_c_01_scm.m2", }, { - fileId = "138699", - text = "helm_leather_raiddruid_a_01_dwf.m2", - value = "helm_leather_raiddruid_a_01_dwf.m2", + fileId = "237876", + text = "helm_leather_dungeonleather_c_01_taf.m2", + value = "helm_leather_dungeonleather_c_01_taf.m2", }, { - fileId = "138700", - text = "helm_leather_raiddruid_a_01_dwm.m2", - value = "helm_leather_raiddruid_a_01_dwm.m2", + fileId = "237877", + text = "helm_leather_dungeonleather_c_01_tam.m2", + value = "helm_leather_dungeonleather_c_01_tam.m2", }, { - fileId = "138701", - text = "helm_leather_raiddruid_a_01_gnf.m2", - value = "helm_leather_raiddruid_a_01_gnf.m2", + fileId = "237878", + text = "helm_leather_dungeonleather_c_01_trf.m2", + value = "helm_leather_dungeonleather_c_01_trf.m2", }, { - fileId = "138702", - text = "helm_leather_raiddruid_a_01_gnm.m2", - value = "helm_leather_raiddruid_a_01_gnm.m2", + fileId = "237879", + text = "helm_leather_dungeonleather_c_01_trm.m2", + value = "helm_leather_dungeonleather_c_01_trm.m2", }, { - fileId = "138703", - text = "helm_leather_raiddruid_a_01_gof.m2", - value = "helm_leather_raiddruid_a_01_gof.m2", + fileId = "454118", + text = "helm_leather_dungeonleather_c_01_wof.m2", + value = "helm_leather_dungeonleather_c_01_wof.m2", }, { - fileId = "138704", - text = "helm_leather_raiddruid_a_01_huf.m2", - value = "helm_leather_raiddruid_a_01_huf.m2", + fileId = "409935", + text = "helm_leather_dungeonleather_c_01_wom.m2", + value = "helm_leather_dungeonleather_c_01_wom.m2", }, { - fileId = "138705", - text = "helm_leather_raiddruid_a_01_hum.m2", - value = "helm_leather_raiddruid_a_01_hum.m2", + fileId = "340349", + text = "helm_leather_dungeonleather_c_02_bef.m2", + value = "helm_leather_dungeonleather_c_02_bef.m2", }, { - fileId = "138706", - text = "helm_leather_raiddruid_a_01_nif.m2", - value = "helm_leather_raiddruid_a_01_nif.m2", + fileId = "340350", + text = "helm_leather_dungeonleather_c_02_bem.m2", + value = "helm_leather_dungeonleather_c_02_bem.m2", }, { - fileId = "138707", - text = "helm_leather_raiddruid_a_01_nim.m2", - value = "helm_leather_raiddruid_a_01_nim.m2", + fileId = "340351", + text = "helm_leather_dungeonleather_c_02_drf.m2", + value = "helm_leather_dungeonleather_c_02_drf.m2", }, { - fileId = "138708", - text = "helm_leather_raiddruid_a_01_orf.m2", - value = "helm_leather_raiddruid_a_01_orf.m2", + fileId = "340352", + text = "helm_leather_dungeonleather_c_02_drm.m2", + value = "helm_leather_dungeonleather_c_02_drm.m2", }, { - fileId = "138709", - text = "helm_leather_raiddruid_a_01_orm.m2", - value = "helm_leather_raiddruid_a_01_orm.m2", + fileId = "340353", + text = "helm_leather_dungeonleather_c_02_dwf.m2", + value = "helm_leather_dungeonleather_c_02_dwf.m2", }, { - fileId = "138710", - text = "helm_leather_raiddruid_a_01_scf.m2", - value = "helm_leather_raiddruid_a_01_scf.m2", + fileId = "340354", + text = "helm_leather_dungeonleather_c_02_dwm.m2", + value = "helm_leather_dungeonleather_c_02_dwm.m2", }, { - fileId = "138711", - text = "helm_leather_raiddruid_a_01_scm.m2", - value = "helm_leather_raiddruid_a_01_scm.m2", + fileId = "340355", + text = "helm_leather_dungeonleather_c_02_gnf.m2", + value = "helm_leather_dungeonleather_c_02_gnf.m2", }, { - fileId = "138712", - text = "helm_leather_raiddruid_a_01_taf.m2", - value = "helm_leather_raiddruid_a_01_taf.m2", + fileId = "340356", + text = "helm_leather_dungeonleather_c_02_gnm.m2", + value = "helm_leather_dungeonleather_c_02_gnm.m2", }, { - fileId = "138713", - text = "helm_leather_raiddruid_a_01_tam.m2", - value = "helm_leather_raiddruid_a_01_tam.m2", + fileId = "340357", + text = "helm_leather_dungeonleather_c_02_gof.m2", + value = "helm_leather_dungeonleather_c_02_gof.m2", }, { - fileId = "138714", - text = "helm_leather_raiddruid_a_01_trf.m2", - value = "helm_leather_raiddruid_a_01_trf.m2", + fileId = "340358", + text = "helm_leather_dungeonleather_c_02_gom.m2", + value = "helm_leather_dungeonleather_c_02_gom.m2", }, { - fileId = "138715", - text = "helm_leather_raiddruid_a_01_trm.m2", - value = "helm_leather_raiddruid_a_01_trm.m2", + fileId = "340359", + text = "helm_leather_dungeonleather_c_02_huf.m2", + value = "helm_leather_dungeonleather_c_02_huf.m2", }, { - fileId = "138720", - text = "helm_leather_raiddruid_b_01_bef.m2", - value = "helm_leather_raiddruid_b_01_bef.m2", + fileId = "340360", + text = "helm_leather_dungeonleather_c_02_hum.m2", + value = "helm_leather_dungeonleather_c_02_hum.m2", }, { - fileId = "138721", - text = "helm_leather_raiddruid_b_01_bem.m2", - value = "helm_leather_raiddruid_b_01_bem.m2", + fileId = "340361", + text = "helm_leather_dungeonleather_c_02_nif.m2", + value = "helm_leather_dungeonleather_c_02_nif.m2", }, { - fileId = "138722", - text = "helm_leather_raiddruid_b_01_drf.m2", - value = "helm_leather_raiddruid_b_01_drf.m2", + fileId = "340362", + text = "helm_leather_dungeonleather_c_02_nim.m2", + value = "helm_leather_dungeonleather_c_02_nim.m2", }, { - fileId = "138723", - text = "helm_leather_raiddruid_b_01_drm.m2", - value = "helm_leather_raiddruid_b_01_drm.m2", + fileId = "340363", + text = "helm_leather_dungeonleather_c_02_orf.m2", + value = "helm_leather_dungeonleather_c_02_orf.m2", }, { - fileId = "138724", - text = "helm_leather_raiddruid_b_01_dwf.m2", - value = "helm_leather_raiddruid_b_01_dwf.m2", + fileId = "340364", + text = "helm_leather_dungeonleather_c_02_orm.m2", + value = "helm_leather_dungeonleather_c_02_orm.m2", }, { - fileId = "138725", - text = "helm_leather_raiddruid_b_01_dwm.m2", - value = "helm_leather_raiddruid_b_01_dwm.m2", + fileId = "340365", + text = "helm_leather_dungeonleather_c_02_scf.m2", + value = "helm_leather_dungeonleather_c_02_scf.m2", }, { - fileId = "138726", - text = "helm_leather_raiddruid_b_01_gnf.m2", - value = "helm_leather_raiddruid_b_01_gnf.m2", + fileId = "340366", + text = "helm_leather_dungeonleather_c_02_scm.m2", + value = "helm_leather_dungeonleather_c_02_scm.m2", }, { - fileId = "138727", - text = "helm_leather_raiddruid_b_01_gnm.m2", - value = "helm_leather_raiddruid_b_01_gnm.m2", + fileId = "340367", + text = "helm_leather_dungeonleather_c_02_taf.m2", + value = "helm_leather_dungeonleather_c_02_taf.m2", }, { - fileId = "138728", - text = "helm_leather_raiddruid_b_01_gof.m2", - value = "helm_leather_raiddruid_b_01_gof.m2", + fileId = "340368", + text = "helm_leather_dungeonleather_c_02_tam.m2", + value = "helm_leather_dungeonleather_c_02_tam.m2", }, { - fileId = "138729", - text = "helm_leather_raiddruid_b_01_gom.m2", - value = "helm_leather_raiddruid_b_01_gom.m2", + fileId = "340369", + text = "helm_leather_dungeonleather_c_02_trf.m2", + value = "helm_leather_dungeonleather_c_02_trf.m2", }, { - fileId = "138730", - text = "helm_leather_raiddruid_b_01_huf.m2", - value = "helm_leather_raiddruid_b_01_huf.m2", + fileId = "340370", + text = "helm_leather_dungeonleather_c_02_trm.m2", + value = "helm_leather_dungeonleather_c_02_trm.m2", }, { - fileId = "138731", - text = "helm_leather_raiddruid_b_01_hum.m2", - value = "helm_leather_raiddruid_b_01_hum.m2", + fileId = "454119", + text = "helm_leather_dungeonleather_c_02_wof.m2", + value = "helm_leather_dungeonleather_c_02_wof.m2", }, { - fileId = "138732", - text = "helm_leather_raiddruid_b_01_nif.m2", - value = "helm_leather_raiddruid_b_01_nif.m2", + fileId = "430008", + text = "helm_leather_dungeonleather_c_02_wom.m2", + value = "helm_leather_dungeonleather_c_02_wom.m2", }, { - fileId = "138733", - text = "helm_leather_raiddruid_b_01_nim.m2", - value = "helm_leather_raiddruid_b_01_nim.m2", + fileId = "437090", + text = "helm_leather_dungeonleather_c_03_bef.m2", + value = "helm_leather_dungeonleather_c_03_bef.m2", }, { - fileId = "138734", - text = "helm_leather_raiddruid_b_01_orf.m2", - value = "helm_leather_raiddruid_b_01_orf.m2", + fileId = "437091", + text = "helm_leather_dungeonleather_c_03_bem.m2", + value = "helm_leather_dungeonleather_c_03_bem.m2", }, { - fileId = "138735", - text = "helm_leather_raiddruid_b_01_orm.m2", - value = "helm_leather_raiddruid_b_01_orm.m2", + fileId = "437092", + text = "helm_leather_dungeonleather_c_03_drf.m2", + value = "helm_leather_dungeonleather_c_03_drf.m2", }, { - fileId = "138736", - text = "helm_leather_raiddruid_b_01_scf.m2", - value = "helm_leather_raiddruid_b_01_scf.m2", + fileId = "437093", + text = "helm_leather_dungeonleather_c_03_drm.m2", + value = "helm_leather_dungeonleather_c_03_drm.m2", }, { - fileId = "138737", - text = "helm_leather_raiddruid_b_01_scm.m2", - value = "helm_leather_raiddruid_b_01_scm.m2", + fileId = "437094", + text = "helm_leather_dungeonleather_c_03_dwf.m2", + value = "helm_leather_dungeonleather_c_03_dwf.m2", }, { - fileId = "138738", - text = "helm_leather_raiddruid_b_01_taf.m2", - value = "helm_leather_raiddruid_b_01_taf.m2", + fileId = "437095", + text = "helm_leather_dungeonleather_c_03_dwm.m2", + value = "helm_leather_dungeonleather_c_03_dwm.m2", }, { - fileId = "138739", - text = "helm_leather_raiddruid_b_01_tam.m2", - value = "helm_leather_raiddruid_b_01_tam.m2", + fileId = "437096", + text = "helm_leather_dungeonleather_c_03_gnf.m2", + value = "helm_leather_dungeonleather_c_03_gnf.m2", }, { - fileId = "138740", - text = "helm_leather_raiddruid_b_01_trf.m2", - value = "helm_leather_raiddruid_b_01_trf.m2", + fileId = "437097", + text = "helm_leather_dungeonleather_c_03_gnm.m2", + value = "helm_leather_dungeonleather_c_03_gnm.m2", }, { - fileId = "138741", - text = "helm_leather_raiddruid_b_01_trm.m2", - value = "helm_leather_raiddruid_b_01_trm.m2", + fileId = "437098", + text = "helm_leather_dungeonleather_c_03_gof.m2", + value = "helm_leather_dungeonleather_c_03_gof.m2", }, { - fileId = "138746", - text = "helm_leather_raiddruid_c_01_bef.m2", - value = "helm_leather_raiddruid_c_01_bef.m2", + fileId = "437099", + text = "helm_leather_dungeonleather_c_03_gom.m2", + value = "helm_leather_dungeonleather_c_03_gom.m2", }, { - fileId = "138747", - text = "helm_leather_raiddruid_c_01_bem.m2", - value = "helm_leather_raiddruid_c_01_bem.m2", + fileId = "437100", + text = "helm_leather_dungeonleather_c_03_huf.m2", + value = "helm_leather_dungeonleather_c_03_huf.m2", }, { - fileId = "138748", - text = "helm_leather_raiddruid_c_01_drf.m2", - value = "helm_leather_raiddruid_c_01_drf.m2", + fileId = "437101", + text = "helm_leather_dungeonleather_c_03_hum.m2", + value = "helm_leather_dungeonleather_c_03_hum.m2", }, { - fileId = "138749", - text = "helm_leather_raiddruid_c_01_drm.m2", - value = "helm_leather_raiddruid_c_01_drm.m2", + fileId = "437102", + text = "helm_leather_dungeonleather_c_03_nif.m2", + value = "helm_leather_dungeonleather_c_03_nif.m2", }, { - fileId = "138750", - text = "helm_leather_raiddruid_c_01_dwf.m2", - value = "helm_leather_raiddruid_c_01_dwf.m2", + fileId = "437103", + text = "helm_leather_dungeonleather_c_03_nim.m2", + value = "helm_leather_dungeonleather_c_03_nim.m2", }, { - fileId = "138751", - text = "helm_leather_raiddruid_c_01_dwm.m2", - value = "helm_leather_raiddruid_c_01_dwm.m2", + fileId = "437104", + text = "helm_leather_dungeonleather_c_03_orf.m2", + value = "helm_leather_dungeonleather_c_03_orf.m2", }, { - fileId = "138752", - text = "helm_leather_raiddruid_c_01_gnf.m2", - value = "helm_leather_raiddruid_c_01_gnf.m2", + fileId = "437105", + text = "helm_leather_dungeonleather_c_03_orm.m2", + value = "helm_leather_dungeonleather_c_03_orm.m2", }, { - fileId = "138753", - text = "helm_leather_raiddruid_c_01_gnm.m2", - value = "helm_leather_raiddruid_c_01_gnm.m2", + fileId = "437106", + text = "helm_leather_dungeonleather_c_03_scf.m2", + value = "helm_leather_dungeonleather_c_03_scf.m2", }, { - fileId = "138754", - text = "helm_leather_raiddruid_c_01_gof.m2", - value = "helm_leather_raiddruid_c_01_gof.m2", + fileId = "437107", + text = "helm_leather_dungeonleather_c_03_scm.m2", + value = "helm_leather_dungeonleather_c_03_scm.m2", }, { - fileId = "138755", - text = "helm_leather_raiddruid_c_01_gom.m2", - value = "helm_leather_raiddruid_c_01_gom.m2", + fileId = "437108", + text = "helm_leather_dungeonleather_c_03_taf.m2", + value = "helm_leather_dungeonleather_c_03_taf.m2", }, { - fileId = "138756", - text = "helm_leather_raiddruid_c_01_huf.m2", - value = "helm_leather_raiddruid_c_01_huf.m2", + fileId = "437109", + text = "helm_leather_dungeonleather_c_03_tam.m2", + value = "helm_leather_dungeonleather_c_03_tam.m2", }, { - fileId = "138757", - text = "helm_leather_raiddruid_c_01_hum.m2", - value = "helm_leather_raiddruid_c_01_hum.m2", + fileId = "437110", + text = "helm_leather_dungeonleather_c_03_trf.m2", + value = "helm_leather_dungeonleather_c_03_trf.m2", }, { - fileId = "138758", - text = "helm_leather_raiddruid_c_01_nif.m2", - value = "helm_leather_raiddruid_c_01_nif.m2", + fileId = "437111", + text = "helm_leather_dungeonleather_c_03_trm.m2", + value = "helm_leather_dungeonleather_c_03_trm.m2", }, { - fileId = "138759", - text = "helm_leather_raiddruid_c_01_nim.m2", - value = "helm_leather_raiddruid_c_01_nim.m2", + fileId = "467809", + text = "helm_leather_dungeonleather_c_03_wof.m2", + value = "helm_leather_dungeonleather_c_03_wof.m2", }, { - fileId = "138760", - text = "helm_leather_raiddruid_c_01_orf.m2", - value = "helm_leather_raiddruid_c_01_orf.m2", + fileId = "437112", + text = "helm_leather_dungeonleather_c_03_wom.m2", + value = "helm_leather_dungeonleather_c_03_wom.m2", }, { - fileId = "138761", - text = "helm_leather_raiddruid_c_01_orm.m2", - value = "helm_leather_raiddruid_c_01_orm.m2", + fileId = "446919", + text = "helm_leather_dungeonleather_c_04_bef.m2", + value = "helm_leather_dungeonleather_c_04_bef.m2", }, { - fileId = "138762", - text = "helm_leather_raiddruid_c_01_scf.m2", - value = "helm_leather_raiddruid_c_01_scf.m2", + fileId = "446920", + text = "helm_leather_dungeonleather_c_04_bem.m2", + value = "helm_leather_dungeonleather_c_04_bem.m2", }, { - fileId = "138763", - text = "helm_leather_raiddruid_c_01_scm.m2", - value = "helm_leather_raiddruid_c_01_scm.m2", + fileId = "446921", + text = "helm_leather_dungeonleather_c_04_drf.m2", + value = "helm_leather_dungeonleather_c_04_drf.m2", }, { - fileId = "138764", - text = "helm_leather_raiddruid_c_01_taf.m2", - value = "helm_leather_raiddruid_c_01_taf.m2", + fileId = "446922", + text = "helm_leather_dungeonleather_c_04_drm.m2", + value = "helm_leather_dungeonleather_c_04_drm.m2", }, { - fileId = "138765", - text = "helm_leather_raiddruid_c_01_tam.m2", - value = "helm_leather_raiddruid_c_01_tam.m2", + fileId = "446923", + text = "helm_leather_dungeonleather_c_04_dwf.m2", + value = "helm_leather_dungeonleather_c_04_dwf.m2", }, { - fileId = "138766", - text = "helm_leather_raiddruid_c_01_trf.m2", - value = "helm_leather_raiddruid_c_01_trf.m2", + fileId = "446924", + text = "helm_leather_dungeonleather_c_04_dwm.m2", + value = "helm_leather_dungeonleather_c_04_dwm.m2", }, { - fileId = "138767", - text = "helm_leather_raiddruid_c_01_trm.m2", - value = "helm_leather_raiddruid_c_01_trm.m2", + fileId = "446925", + text = "helm_leather_dungeonleather_c_04_gnf.m2", + value = "helm_leather_dungeonleather_c_04_gnf.m2", }, { - fileId = "138769", - text = "helm_leather_raiddruid_d_01_bef.m2", - value = "helm_leather_raiddruid_d_01_bef.m2", + fileId = "446926", + text = "helm_leather_dungeonleather_c_04_gnm.m2", + value = "helm_leather_dungeonleather_c_04_gnm.m2", }, { - fileId = "138770", - text = "helm_leather_raiddruid_d_01_bem.m2", - value = "helm_leather_raiddruid_d_01_bem.m2", + fileId = "446927", + text = "helm_leather_dungeonleather_c_04_gof.m2", + value = "helm_leather_dungeonleather_c_04_gof.m2", }, { - fileId = "138771", - text = "helm_leather_raiddruid_d_01_drf.m2", - value = "helm_leather_raiddruid_d_01_drf.m2", + fileId = "446928", + text = "helm_leather_dungeonleather_c_04_gom.m2", + value = "helm_leather_dungeonleather_c_04_gom.m2", }, { - fileId = "138772", - text = "helm_leather_raiddruid_d_01_drm.m2", - value = "helm_leather_raiddruid_d_01_drm.m2", + fileId = "446929", + text = "helm_leather_dungeonleather_c_04_huf.m2", + value = "helm_leather_dungeonleather_c_04_huf.m2", }, { - fileId = "138773", - text = "helm_leather_raiddruid_d_01_dwf.m2", - value = "helm_leather_raiddruid_d_01_dwf.m2", + fileId = "446930", + text = "helm_leather_dungeonleather_c_04_hum.m2", + value = "helm_leather_dungeonleather_c_04_hum.m2", }, { - fileId = "138774", - text = "helm_leather_raiddruid_d_01_dwm.m2", - value = "helm_leather_raiddruid_d_01_dwm.m2", + fileId = "446931", + text = "helm_leather_dungeonleather_c_04_nif.m2", + value = "helm_leather_dungeonleather_c_04_nif.m2", }, { - fileId = "138775", - text = "helm_leather_raiddruid_d_01_gnf.m2", - value = "helm_leather_raiddruid_d_01_gnf.m2", + fileId = "446932", + text = "helm_leather_dungeonleather_c_04_nim.m2", + value = "helm_leather_dungeonleather_c_04_nim.m2", }, { - fileId = "138776", - text = "helm_leather_raiddruid_d_01_gnm.m2", - value = "helm_leather_raiddruid_d_01_gnm.m2", + fileId = "446933", + text = "helm_leather_dungeonleather_c_04_orf.m2", + value = "helm_leather_dungeonleather_c_04_orf.m2", }, { - fileId = "138777", - text = "helm_leather_raiddruid_d_01_huf.m2", - value = "helm_leather_raiddruid_d_01_huf.m2", + fileId = "446934", + text = "helm_leather_dungeonleather_c_04_orm.m2", + value = "helm_leather_dungeonleather_c_04_orm.m2", }, { - fileId = "138778", - text = "helm_leather_raiddruid_d_01_hum.m2", - value = "helm_leather_raiddruid_d_01_hum.m2", + fileId = "446935", + text = "helm_leather_dungeonleather_c_04_scf.m2", + value = "helm_leather_dungeonleather_c_04_scf.m2", }, { - fileId = "138779", - text = "helm_leather_raiddruid_d_01_nif.m2", - value = "helm_leather_raiddruid_d_01_nif.m2", + fileId = "446936", + text = "helm_leather_dungeonleather_c_04_scm.m2", + value = "helm_leather_dungeonleather_c_04_scm.m2", }, { - fileId = "138780", - text = "helm_leather_raiddruid_d_01_nim.m2", - value = "helm_leather_raiddruid_d_01_nim.m2", + fileId = "446937", + text = "helm_leather_dungeonleather_c_04_taf.m2", + value = "helm_leather_dungeonleather_c_04_taf.m2", }, { - fileId = "138781", - text = "helm_leather_raiddruid_d_01_orf.m2", - value = "helm_leather_raiddruid_d_01_orf.m2", + fileId = "446938", + text = "helm_leather_dungeonleather_c_04_tam.m2", + value = "helm_leather_dungeonleather_c_04_tam.m2", }, { - fileId = "138782", - text = "helm_leather_raiddruid_d_01_orm.m2", - value = "helm_leather_raiddruid_d_01_orm.m2", + fileId = "446939", + text = "helm_leather_dungeonleather_c_04_trf.m2", + value = "helm_leather_dungeonleather_c_04_trf.m2", }, { - fileId = "138783", - text = "helm_leather_raiddruid_d_01_scf.m2", - value = "helm_leather_raiddruid_d_01_scf.m2", + fileId = "446940", + text = "helm_leather_dungeonleather_c_04_trm.m2", + value = "helm_leather_dungeonleather_c_04_trm.m2", }, { - fileId = "138784", - text = "helm_leather_raiddruid_d_01_scm.m2", - value = "helm_leather_raiddruid_d_01_scm.m2", + fileId = "468641", + text = "helm_leather_dungeonleather_c_04_wof.m2", + value = "helm_leather_dungeonleather_c_04_wof.m2", }, { - fileId = "138785", - text = "helm_leather_raiddruid_d_01_taf.m2", - value = "helm_leather_raiddruid_d_01_taf.m2", + fileId = "446941", + text = "helm_leather_dungeonleather_c_04_wom.m2", + value = "helm_leather_dungeonleather_c_04_wom.m2", }, { - fileId = "138786", - text = "helm_leather_raiddruid_d_01_tam.m2", - value = "helm_leather_raiddruid_d_01_tam.m2", + fileId = "537813", + text = "helm_leather_dungeonleather_c_05_bef.m2", + value = "helm_leather_dungeonleather_c_05_bef.m2", }, { - fileId = "138787", - text = "helm_leather_raiddruid_d_01_trf.m2", - value = "helm_leather_raiddruid_d_01_trf.m2", + fileId = "537815", + text = "helm_leather_dungeonleather_c_05_bem.m2", + value = "helm_leather_dungeonleather_c_05_bem.m2", }, { - fileId = "138788", - text = "helm_leather_raiddruid_d_01_trm.m2", - value = "helm_leather_raiddruid_d_01_trm.m2", + fileId = "537817", + text = "helm_leather_dungeonleather_c_05_drf.m2", + value = "helm_leather_dungeonleather_c_05_drf.m2", }, { - fileId = "138791", - text = "helm_leather_raiddruid_e_01_bef.m2", - value = "helm_leather_raiddruid_e_01_bef.m2", + fileId = "537819", + text = "helm_leather_dungeonleather_c_05_drm.m2", + value = "helm_leather_dungeonleather_c_05_drm.m2", }, { - fileId = "138792", - text = "helm_leather_raiddruid_e_01_bem.m2", - value = "helm_leather_raiddruid_e_01_bem.m2", + fileId = "537821", + text = "helm_leather_dungeonleather_c_05_dwf.m2", + value = "helm_leather_dungeonleather_c_05_dwf.m2", }, { - fileId = "138793", - text = "helm_leather_raiddruid_e_01_drf.m2", - value = "helm_leather_raiddruid_e_01_drf.m2", + fileId = "537823", + text = "helm_leather_dungeonleather_c_05_dwm.m2", + value = "helm_leather_dungeonleather_c_05_dwm.m2", }, { - fileId = "138794", - text = "helm_leather_raiddruid_e_01_drm.m2", - value = "helm_leather_raiddruid_e_01_drm.m2", + fileId = "537825", + text = "helm_leather_dungeonleather_c_05_gnf.m2", + value = "helm_leather_dungeonleather_c_05_gnf.m2", }, { - fileId = "138795", - text = "helm_leather_raiddruid_e_01_dwf.m2", - value = "helm_leather_raiddruid_e_01_dwf.m2", + fileId = "537827", + text = "helm_leather_dungeonleather_c_05_gnm.m2", + value = "helm_leather_dungeonleather_c_05_gnm.m2", }, { - fileId = "138796", - text = "helm_leather_raiddruid_e_01_dwm.m2", - value = "helm_leather_raiddruid_e_01_dwm.m2", + fileId = "537829", + text = "helm_leather_dungeonleather_c_05_gof.m2", + value = "helm_leather_dungeonleather_c_05_gof.m2", }, { - fileId = "138797", - text = "helm_leather_raiddruid_e_01_gnf.m2", - value = "helm_leather_raiddruid_e_01_gnf.m2", + fileId = "537831", + text = "helm_leather_dungeonleather_c_05_gom.m2", + value = "helm_leather_dungeonleather_c_05_gom.m2", }, { - fileId = "138798", - text = "helm_leather_raiddruid_e_01_gnm.m2", - value = "helm_leather_raiddruid_e_01_gnm.m2", + fileId = "537833", + text = "helm_leather_dungeonleather_c_05_huf.m2", + value = "helm_leather_dungeonleather_c_05_huf.m2", }, { - fileId = "138799", - text = "helm_leather_raiddruid_e_01_gof.m2", - value = "helm_leather_raiddruid_e_01_gof.m2", + fileId = "537835", + text = "helm_leather_dungeonleather_c_05_hum.m2", + value = "helm_leather_dungeonleather_c_05_hum.m2", }, { - fileId = "138800", - text = "helm_leather_raiddruid_e_01_gom.m2", - value = "helm_leather_raiddruid_e_01_gom.m2", + fileId = "537837", + text = "helm_leather_dungeonleather_c_05_nif.m2", + value = "helm_leather_dungeonleather_c_05_nif.m2", }, { - fileId = "138801", - text = "helm_leather_raiddruid_e_01_huf.m2", - value = "helm_leather_raiddruid_e_01_huf.m2", + fileId = "537839", + text = "helm_leather_dungeonleather_c_05_nim.m2", + value = "helm_leather_dungeonleather_c_05_nim.m2", }, { - fileId = "138802", - text = "helm_leather_raiddruid_e_01_hum.m2", - value = "helm_leather_raiddruid_e_01_hum.m2", + fileId = "537841", + text = "helm_leather_dungeonleather_c_05_orf.m2", + value = "helm_leather_dungeonleather_c_05_orf.m2", }, { - fileId = "138803", - text = "helm_leather_raiddruid_e_01_nif.m2", - value = "helm_leather_raiddruid_e_01_nif.m2", + fileId = "537843", + text = "helm_leather_dungeonleather_c_05_orm.m2", + value = "helm_leather_dungeonleather_c_05_orm.m2", }, { - fileId = "138804", - text = "helm_leather_raiddruid_e_01_nim.m2", - value = "helm_leather_raiddruid_e_01_nim.m2", + fileId = "537845", + text = "helm_leather_dungeonleather_c_05_scf.m2", + value = "helm_leather_dungeonleather_c_05_scf.m2", }, { - fileId = "138805", - text = "helm_leather_raiddruid_e_01_orf.m2", - value = "helm_leather_raiddruid_e_01_orf.m2", + fileId = "537847", + text = "helm_leather_dungeonleather_c_05_scm.m2", + value = "helm_leather_dungeonleather_c_05_scm.m2", }, { - fileId = "138806", - text = "helm_leather_raiddruid_e_01_orm.m2", - value = "helm_leather_raiddruid_e_01_orm.m2", + fileId = "537849", + text = "helm_leather_dungeonleather_c_05_taf.m2", + value = "helm_leather_dungeonleather_c_05_taf.m2", }, { - fileId = "138807", - text = "helm_leather_raiddruid_e_01_scf.m2", - value = "helm_leather_raiddruid_e_01_scf.m2", + fileId = "537851", + text = "helm_leather_dungeonleather_c_05_tam.m2", + value = "helm_leather_dungeonleather_c_05_tam.m2", }, { - fileId = "138808", - text = "helm_leather_raiddruid_e_01_scm.m2", - value = "helm_leather_raiddruid_e_01_scm.m2", + fileId = "537853", + text = "helm_leather_dungeonleather_c_05_trf.m2", + value = "helm_leather_dungeonleather_c_05_trf.m2", }, { - fileId = "138809", - text = "helm_leather_raiddruid_e_01_taf.m2", - value = "helm_leather_raiddruid_e_01_taf.m2", + fileId = "537855", + text = "helm_leather_dungeonleather_c_05_trm.m2", + value = "helm_leather_dungeonleather_c_05_trm.m2", }, { - fileId = "138810", - text = "helm_leather_raiddruid_e_01_tam.m2", - value = "helm_leather_raiddruid_e_01_tam.m2", + fileId = "537857", + text = "helm_leather_dungeonleather_c_05_wof.m2", + value = "helm_leather_dungeonleather_c_05_wof.m2", }, { - fileId = "138811", - text = "helm_leather_raiddruid_e_01_trf.m2", - value = "helm_leather_raiddruid_e_01_trf.m2", + fileId = "537859", + text = "helm_leather_dungeonleather_c_05_wom.m2", + value = "helm_leather_dungeonleather_c_05_wom.m2", }, { - fileId = "138812", - text = "helm_leather_raiddruid_e_01_trm.m2", - value = "helm_leather_raiddruid_e_01_trm.m2", + fileId = "138471", + text = "helm_leather_dungeonrogue_b_01_bef.m2", + value = "helm_leather_dungeonrogue_b_01_bef.m2", }, { - fileId = "138816", - text = "helm_leather_raiddruid_f_01_bef.m2", - value = "helm_leather_raiddruid_f_01_bef.m2", + fileId = "138472", + text = "helm_leather_dungeonrogue_b_01_bem.m2", + value = "helm_leather_dungeonrogue_b_01_bem.m2", }, { - fileId = "138817", - text = "helm_leather_raiddruid_f_01_bem.m2", - value = "helm_leather_raiddruid_f_01_bem.m2", + fileId = "138473", + text = "helm_leather_dungeonrogue_b_01_drf.m2", + value = "helm_leather_dungeonrogue_b_01_drf.m2", }, { - fileId = "138818", - text = "helm_leather_raiddruid_f_01_drf.m2", - value = "helm_leather_raiddruid_f_01_drf.m2", + fileId = "138474", + text = "helm_leather_dungeonrogue_b_01_drm.m2", + value = "helm_leather_dungeonrogue_b_01_drm.m2", }, { - fileId = "138819", - text = "helm_leather_raiddruid_f_01_drm.m2", - value = "helm_leather_raiddruid_f_01_drm.m2", + fileId = "138475", + text = "helm_leather_dungeonrogue_b_01_dwf.m2", + value = "helm_leather_dungeonrogue_b_01_dwf.m2", }, { - fileId = "138820", - text = "helm_leather_raiddruid_f_01_dwf.m2", - value = "helm_leather_raiddruid_f_01_dwf.m2", + fileId = "138476", + text = "helm_leather_dungeonrogue_b_01_dwm.m2", + value = "helm_leather_dungeonrogue_b_01_dwm.m2", }, { - fileId = "138821", - text = "helm_leather_raiddruid_f_01_dwm.m2", - value = "helm_leather_raiddruid_f_01_dwm.m2", + fileId = "138477", + text = "helm_leather_dungeonrogue_b_01_gnf.m2", + value = "helm_leather_dungeonrogue_b_01_gnf.m2", }, { - fileId = "138822", - text = "helm_leather_raiddruid_f_01_gnf.m2", - value = "helm_leather_raiddruid_f_01_gnf.m2", + fileId = "138478", + text = "helm_leather_dungeonrogue_b_01_gnm.m2", + value = "helm_leather_dungeonrogue_b_01_gnm.m2", }, { - fileId = "138823", - text = "helm_leather_raiddruid_f_01_gnm.m2", - value = "helm_leather_raiddruid_f_01_gnm.m2", + fileId = "138479", + text = "helm_leather_dungeonrogue_b_01_gof.m2", + value = "helm_leather_dungeonrogue_b_01_gof.m2", }, { - fileId = "138824", - text = "helm_leather_raiddruid_f_01_gof.m2", - value = "helm_leather_raiddruid_f_01_gof.m2", + fileId = "138480", + text = "helm_leather_dungeonrogue_b_01_gom.m2", + value = "helm_leather_dungeonrogue_b_01_gom.m2", }, { - fileId = "138825", - text = "helm_leather_raiddruid_f_01_gom.m2", - value = "helm_leather_raiddruid_f_01_gom.m2", + fileId = "138481", + text = "helm_leather_dungeonrogue_b_01_huf.m2", + value = "helm_leather_dungeonrogue_b_01_huf.m2", }, { - fileId = "138826", - text = "helm_leather_raiddruid_f_01_huf.m2", - value = "helm_leather_raiddruid_f_01_huf.m2", + fileId = "138482", + text = "helm_leather_dungeonrogue_b_01_hum.m2", + value = "helm_leather_dungeonrogue_b_01_hum.m2", }, { - fileId = "138827", - text = "helm_leather_raiddruid_f_01_hum.m2", - value = "helm_leather_raiddruid_f_01_hum.m2", + fileId = "138483", + text = "helm_leather_dungeonrogue_b_01_nif.m2", + value = "helm_leather_dungeonrogue_b_01_nif.m2", }, { - fileId = "138828", - text = "helm_leather_raiddruid_f_01_nif.m2", - value = "helm_leather_raiddruid_f_01_nif.m2", + fileId = "138484", + text = "helm_leather_dungeonrogue_b_01_nim.m2", + value = "helm_leather_dungeonrogue_b_01_nim.m2", }, { - fileId = "138829", - text = "helm_leather_raiddruid_f_01_nim.m2", - value = "helm_leather_raiddruid_f_01_nim.m2", + fileId = "138485", + text = "helm_leather_dungeonrogue_b_01_orf.m2", + value = "helm_leather_dungeonrogue_b_01_orf.m2", }, { - fileId = "138830", - text = "helm_leather_raiddruid_f_01_orf.m2", - value = "helm_leather_raiddruid_f_01_orf.m2", + fileId = "138486", + text = "helm_leather_dungeonrogue_b_01_orm.m2", + value = "helm_leather_dungeonrogue_b_01_orm.m2", }, { - fileId = "138831", - text = "helm_leather_raiddruid_f_01_orm.m2", - value = "helm_leather_raiddruid_f_01_orm.m2", + fileId = "138487", + text = "helm_leather_dungeonrogue_b_01_scf.m2", + value = "helm_leather_dungeonrogue_b_01_scf.m2", }, { - fileId = "138832", - text = "helm_leather_raiddruid_f_01_scf.m2", - value = "helm_leather_raiddruid_f_01_scf.m2", + fileId = "138488", + text = "helm_leather_dungeonrogue_b_01_scm.m2", + value = "helm_leather_dungeonrogue_b_01_scm.m2", }, { - fileId = "138833", - text = "helm_leather_raiddruid_f_01_scm.m2", - value = "helm_leather_raiddruid_f_01_scm.m2", + fileId = "138489", + text = "helm_leather_dungeonrogue_b_01_taf.m2", + value = "helm_leather_dungeonrogue_b_01_taf.m2", }, { - fileId = "138834", - text = "helm_leather_raiddruid_f_01_taf.m2", - value = "helm_leather_raiddruid_f_01_taf.m2", + fileId = "138490", + text = "helm_leather_dungeonrogue_b_01_tam.m2", + value = "helm_leather_dungeonrogue_b_01_tam.m2", }, { - fileId = "138835", - text = "helm_leather_raiddruid_f_01_tam.m2", - value = "helm_leather_raiddruid_f_01_tam.m2", + fileId = "138491", + text = "helm_leather_dungeonrogue_b_01_trf.m2", + value = "helm_leather_dungeonrogue_b_01_trf.m2", }, { - fileId = "138836", - text = "helm_leather_raiddruid_f_01_trf.m2", - value = "helm_leather_raiddruid_f_01_trf.m2", + fileId = "138492", + text = "helm_leather_dungeonrogue_b_01_trm.m2", + value = "helm_leather_dungeonrogue_b_01_trm.m2", }, { - fileId = "138837", - text = "helm_leather_raiddruid_f_01_trm.m2", - value = "helm_leather_raiddruid_f_01_trm.m2", + fileId = "454120", + text = "helm_leather_dungeonrogue_b_01_wof.m2", + value = "helm_leather_dungeonrogue_b_01_wof.m2", }, { - fileId = "249185", - text = "helm_leather_raiddruid_g_01_bef.m2", - value = "helm_leather_raiddruid_g_01_bef.m2", + fileId = "430009", + text = "helm_leather_dungeonrogue_b_01_wom.m2", + value = "helm_leather_dungeonrogue_b_01_wom.m2", }, { - fileId = "249186", - text = "helm_leather_raiddruid_g_01_bem.m2", - value = "helm_leather_raiddruid_g_01_bem.m2", + fileId = "514344", + text = "helm_leather_firelandsdruid_d_01_bef.m2", + value = "helm_leather_firelandsdruid_d_01_bef.m2", }, { - fileId = "249187", - text = "helm_leather_raiddruid_g_01_drf.m2", - value = "helm_leather_raiddruid_g_01_drf.m2", + fileId = "514346", + text = "helm_leather_firelandsdruid_d_01_bem.m2", + value = "helm_leather_firelandsdruid_d_01_bem.m2", }, { - fileId = "249188", - text = "helm_leather_raiddruid_g_01_drm.m2", - value = "helm_leather_raiddruid_g_01_drm.m2", + fileId = "514348", + text = "helm_leather_firelandsdruid_d_01_drf.m2", + value = "helm_leather_firelandsdruid_d_01_drf.m2", }, { - fileId = "249189", - text = "helm_leather_raiddruid_g_01_dwf.m2", - value = "helm_leather_raiddruid_g_01_dwf.m2", + fileId = "514350", + text = "helm_leather_firelandsdruid_d_01_drm.m2", + value = "helm_leather_firelandsdruid_d_01_drm.m2", }, { - fileId = "249190", - text = "helm_leather_raiddruid_g_01_dwm.m2", - value = "helm_leather_raiddruid_g_01_dwm.m2", + fileId = "514352", + text = "helm_leather_firelandsdruid_d_01_dwf.m2", + value = "helm_leather_firelandsdruid_d_01_dwf.m2", }, { - fileId = "249191", - text = "helm_leather_raiddruid_g_01_gnf.m2", - value = "helm_leather_raiddruid_g_01_gnf.m2", + fileId = "514354", + text = "helm_leather_firelandsdruid_d_01_dwm.m2", + value = "helm_leather_firelandsdruid_d_01_dwm.m2", }, { - fileId = "249192", - text = "helm_leather_raiddruid_g_01_gnm.m2", - value = "helm_leather_raiddruid_g_01_gnm.m2", + fileId = "514356", + text = "helm_leather_firelandsdruid_d_01_gnf.m2", + value = "helm_leather_firelandsdruid_d_01_gnf.m2", }, { - fileId = "249193", - text = "helm_leather_raiddruid_g_01_gof.m2", - value = "helm_leather_raiddruid_g_01_gof.m2", + fileId = "514358", + text = "helm_leather_firelandsdruid_d_01_gnm.m2", + value = "helm_leather_firelandsdruid_d_01_gnm.m2", }, { - fileId = "249194", - text = "helm_leather_raiddruid_g_01_gom.m2", - value = "helm_leather_raiddruid_g_01_gom.m2", + fileId = "514360", + text = "helm_leather_firelandsdruid_d_01_gof.m2", + value = "helm_leather_firelandsdruid_d_01_gof.m2", }, { - fileId = "249195", - text = "helm_leather_raiddruid_g_01_huf.m2", - value = "helm_leather_raiddruid_g_01_huf.m2", + fileId = "514362", + text = "helm_leather_firelandsdruid_d_01_gom.m2", + value = "helm_leather_firelandsdruid_d_01_gom.m2", }, { - fileId = "249196", - text = "helm_leather_raiddruid_g_01_hum.m2", - value = "helm_leather_raiddruid_g_01_hum.m2", + fileId = "514364", + text = "helm_leather_firelandsdruid_d_01_huf.m2", + value = "helm_leather_firelandsdruid_d_01_huf.m2", }, { - fileId = "249197", - text = "helm_leather_raiddruid_g_01_nif.m2", - value = "helm_leather_raiddruid_g_01_nif.m2", + fileId = "514366", + text = "helm_leather_firelandsdruid_d_01_hum.m2", + value = "helm_leather_firelandsdruid_d_01_hum.m2", }, { - fileId = "249198", - text = "helm_leather_raiddruid_g_01_nim.m2", - value = "helm_leather_raiddruid_g_01_nim.m2", + fileId = "514368", + text = "helm_leather_firelandsdruid_d_01_nif.m2", + value = "helm_leather_firelandsdruid_d_01_nif.m2", }, { - fileId = "249199", - text = "helm_leather_raiddruid_g_01_orf.m2", - value = "helm_leather_raiddruid_g_01_orf.m2", + fileId = "514370", + text = "helm_leather_firelandsdruid_d_01_nim.m2", + value = "helm_leather_firelandsdruid_d_01_nim.m2", }, { - fileId = "249200", - text = "helm_leather_raiddruid_g_01_orm.m2", - value = "helm_leather_raiddruid_g_01_orm.m2", + fileId = "514372", + text = "helm_leather_firelandsdruid_d_01_orf.m2", + value = "helm_leather_firelandsdruid_d_01_orf.m2", }, { - fileId = "249201", - text = "helm_leather_raiddruid_g_01_scf.m2", - value = "helm_leather_raiddruid_g_01_scf.m2", + fileId = "514374", + text = "helm_leather_firelandsdruid_d_01_orm.m2", + value = "helm_leather_firelandsdruid_d_01_orm.m2", }, { - fileId = "249202", - text = "helm_leather_raiddruid_g_01_scm.m2", - value = "helm_leather_raiddruid_g_01_scm.m2", + fileId = "514376", + text = "helm_leather_firelandsdruid_d_01_scf.m2", + value = "helm_leather_firelandsdruid_d_01_scf.m2", }, { - fileId = "249203", - text = "helm_leather_raiddruid_g_01_taf.m2", - value = "helm_leather_raiddruid_g_01_taf.m2", + fileId = "514378", + text = "helm_leather_firelandsdruid_d_01_scm.m2", + value = "helm_leather_firelandsdruid_d_01_scm.m2", }, { - fileId = "249204", - text = "helm_leather_raiddruid_g_01_tam.m2", - value = "helm_leather_raiddruid_g_01_tam.m2", + fileId = "514380", + text = "helm_leather_firelandsdruid_d_01_taf.m2", + value = "helm_leather_firelandsdruid_d_01_taf.m2", }, { - fileId = "249205", - text = "helm_leather_raiddruid_g_01_trf.m2", - value = "helm_leather_raiddruid_g_01_trf.m2", + fileId = "514382", + text = "helm_leather_firelandsdruid_d_01_tam.m2", + value = "helm_leather_firelandsdruid_d_01_tam.m2", }, { - fileId = "249206", - text = "helm_leather_raiddruid_g_01_trm.m2", - value = "helm_leather_raiddruid_g_01_trm.m2", + fileId = "514384", + text = "helm_leather_firelandsdruid_d_01_trf.m2", + value = "helm_leather_firelandsdruid_d_01_trf.m2", }, { - fileId = "336795", - text = "helm_leather_raiddruid_h_01_bef.m2", - value = "helm_leather_raiddruid_h_01_bef.m2", + fileId = "514386", + text = "helm_leather_firelandsdruid_d_01_trm.m2", + value = "helm_leather_firelandsdruid_d_01_trm.m2", }, { - fileId = "336796", - text = "helm_leather_raiddruid_h_01_bem.m2", - value = "helm_leather_raiddruid_h_01_bem.m2", + fileId = "514388", + text = "helm_leather_firelandsdruid_d_01_wof.m2", + value = "helm_leather_firelandsdruid_d_01_wof.m2", }, { - fileId = "336797", - text = "helm_leather_raiddruid_h_01_drf.m2", - value = "helm_leather_raiddruid_h_01_drf.m2", + fileId = "514390", + text = "helm_leather_firelandsdruid_d_01_wom.m2", + value = "helm_leather_firelandsdruid_d_01_wom.m2", }, { - fileId = "336798", - text = "helm_leather_raiddruid_h_01_drm.m2", - value = "helm_leather_raiddruid_h_01_drm.m2", + fileId = "138498", + text = "helm_leather_northrend_b_01_bef.m2", + value = "helm_leather_northrend_b_01_bef.m2", }, { - fileId = "336799", - text = "helm_leather_raiddruid_h_01_dwf.m2", - value = "helm_leather_raiddruid_h_01_dwf.m2", + fileId = "138499", + text = "helm_leather_northrend_b_01_bem.m2", + value = "helm_leather_northrend_b_01_bem.m2", }, { - fileId = "336800", - text = "helm_leather_raiddruid_h_01_dwm.m2", - value = "helm_leather_raiddruid_h_01_dwm.m2", + fileId = "138500", + text = "helm_leather_northrend_b_01_drf.m2", + value = "helm_leather_northrend_b_01_drf.m2", }, { - fileId = "336801", - text = "helm_leather_raiddruid_h_01_gnf.m2", - value = "helm_leather_raiddruid_h_01_gnf.m2", + fileId = "138501", + text = "helm_leather_northrend_b_01_drm.m2", + value = "helm_leather_northrend_b_01_drm.m2", }, { - fileId = "336802", - text = "helm_leather_raiddruid_h_01_gnm.m2", - value = "helm_leather_raiddruid_h_01_gnm.m2", - }, + fileId = "138502", + text = "helm_leather_northrend_b_01_dwf.m2", + value = "helm_leather_northrend_b_01_dwf.m2", + }, { - fileId = "336803", - text = "helm_leather_raiddruid_h_01_gof.m2", - value = "helm_leather_raiddruid_h_01_gof.m2", + fileId = "138503", + text = "helm_leather_northrend_b_01_dwm.m2", + value = "helm_leather_northrend_b_01_dwm.m2", }, { - fileId = "336804", - text = "helm_leather_raiddruid_h_01_gom.m2", - value = "helm_leather_raiddruid_h_01_gom.m2", + fileId = "138504", + text = "helm_leather_northrend_b_01_gnf.m2", + value = "helm_leather_northrend_b_01_gnf.m2", }, { - fileId = "336805", - text = "helm_leather_raiddruid_h_01_huf.m2", - value = "helm_leather_raiddruid_h_01_huf.m2", + fileId = "138505", + text = "helm_leather_northrend_b_01_gnm.m2", + value = "helm_leather_northrend_b_01_gnm.m2", }, { - fileId = "336806", - text = "helm_leather_raiddruid_h_01_hum.m2", - value = "helm_leather_raiddruid_h_01_hum.m2", + fileId = "138506", + text = "helm_leather_northrend_b_01_gof.m2", + value = "helm_leather_northrend_b_01_gof.m2", }, { - fileId = "336807", - text = "helm_leather_raiddruid_h_01_nif.m2", - value = "helm_leather_raiddruid_h_01_nif.m2", + fileId = "138507", + text = "helm_leather_northrend_b_01_gom.m2", + value = "helm_leather_northrend_b_01_gom.m2", }, { - fileId = "336808", - text = "helm_leather_raiddruid_h_01_nim.m2", - value = "helm_leather_raiddruid_h_01_nim.m2", + fileId = "138508", + text = "helm_leather_northrend_b_01_huf.m2", + value = "helm_leather_northrend_b_01_huf.m2", }, { - fileId = "336809", - text = "helm_leather_raiddruid_h_01_orf.m2", - value = "helm_leather_raiddruid_h_01_orf.m2", + fileId = "138509", + text = "helm_leather_northrend_b_01_hum.m2", + value = "helm_leather_northrend_b_01_hum.m2", }, { - fileId = "336810", - text = "helm_leather_raiddruid_h_01_orm.m2", - value = "helm_leather_raiddruid_h_01_orm.m2", + fileId = "138510", + text = "helm_leather_northrend_b_01_nif.m2", + value = "helm_leather_northrend_b_01_nif.m2", }, { - fileId = "336811", - text = "helm_leather_raiddruid_h_01_scf.m2", - value = "helm_leather_raiddruid_h_01_scf.m2", + fileId = "138511", + text = "helm_leather_northrend_b_01_nim.m2", + value = "helm_leather_northrend_b_01_nim.m2", }, { - fileId = "336812", - text = "helm_leather_raiddruid_h_01_scm.m2", - value = "helm_leather_raiddruid_h_01_scm.m2", + fileId = "138512", + text = "helm_leather_northrend_b_01_orf.m2", + value = "helm_leather_northrend_b_01_orf.m2", }, { - fileId = "336813", - text = "helm_leather_raiddruid_h_01_taf.m2", - value = "helm_leather_raiddruid_h_01_taf.m2", + fileId = "138513", + text = "helm_leather_northrend_b_01_orm.m2", + value = "helm_leather_northrend_b_01_orm.m2", }, { - fileId = "336814", - text = "helm_leather_raiddruid_h_01_tam.m2", - value = "helm_leather_raiddruid_h_01_tam.m2", + fileId = "138514", + text = "helm_leather_northrend_b_01_scf.m2", + value = "helm_leather_northrend_b_01_scf.m2", }, { - fileId = "336815", - text = "helm_leather_raiddruid_h_01_trf.m2", - value = "helm_leather_raiddruid_h_01_trf.m2", + fileId = "138515", + text = "helm_leather_northrend_b_01_scm.m2", + value = "helm_leather_northrend_b_01_scm.m2", }, { - fileId = "336816", - text = "helm_leather_raiddruid_h_01_trm.m2", - value = "helm_leather_raiddruid_h_01_trm.m2", + fileId = "138516", + text = "helm_leather_northrend_b_01_taf.m2", + value = "helm_leather_northrend_b_01_taf.m2", }, { - fileId = "138842", - text = "helm_leather_raidrogue_a_01_bef.m2", - value = "helm_leather_raidrogue_a_01_bef.m2", + fileId = "138517", + text = "helm_leather_northrend_b_01_tam.m2", + value = "helm_leather_northrend_b_01_tam.m2", }, { - fileId = "138843", - text = "helm_leather_raidrogue_a_01_bem.m2", - value = "helm_leather_raidrogue_a_01_bem.m2", + fileId = "138518", + text = "helm_leather_northrend_b_01_trf.m2", + value = "helm_leather_northrend_b_01_trf.m2", }, { - fileId = "138844", - text = "helm_leather_raidrogue_a_01_drf.m2", - value = "helm_leather_raidrogue_a_01_drf.m2", + fileId = "138519", + text = "helm_leather_northrend_b_01_trm.m2", + value = "helm_leather_northrend_b_01_trm.m2", }, { - fileId = "138845", - text = "helm_leather_raidrogue_a_01_drm.m2", - value = "helm_leather_raidrogue_a_01_drm.m2", + fileId = "454123", + text = "helm_leather_northrend_b_01_wof.m2", + value = "helm_leather_northrend_b_01_wof.m2", }, { - fileId = "138846", - text = "helm_leather_raidrogue_a_01_dwf.m2", - value = "helm_leather_raidrogue_a_01_dwf.m2", + fileId = "430010", + text = "helm_leather_northrend_b_01_wom.m2", + value = "helm_leather_northrend_b_01_wom.m2", }, { - fileId = "138847", - text = "helm_leather_raidrogue_a_01_dwm.m2", - value = "helm_leather_raidrogue_a_01_dwm.m2", + fileId = "138524", + text = "helm_leather_northrend_b_02_bef.m2", + value = "helm_leather_northrend_b_02_bef.m2", }, { - fileId = "138848", - text = "helm_leather_raidrogue_a_01_gnf.m2", - value = "helm_leather_raidrogue_a_01_gnf.m2", + fileId = "138525", + text = "helm_leather_northrend_b_02_bem.m2", + value = "helm_leather_northrend_b_02_bem.m2", }, { - fileId = "138849", - text = "helm_leather_raidrogue_a_01_gnm.m2", - value = "helm_leather_raidrogue_a_01_gnm.m2", + fileId = "138526", + text = "helm_leather_northrend_b_02_drf.m2", + value = "helm_leather_northrend_b_02_drf.m2", }, { - fileId = "138850", - text = "helm_leather_raidrogue_a_01_gof.m2", - value = "helm_leather_raidrogue_a_01_gof.m2", + fileId = "138527", + text = "helm_leather_northrend_b_02_drm.m2", + value = "helm_leather_northrend_b_02_drm.m2", }, { - fileId = "138851", - text = "helm_leather_raidrogue_a_01_gom.m2", - value = "helm_leather_raidrogue_a_01_gom.m2", + fileId = "138528", + text = "helm_leather_northrend_b_02_dwf.m2", + value = "helm_leather_northrend_b_02_dwf.m2", }, { - fileId = "138852", - text = "helm_leather_raidrogue_a_01_huf.m2", - value = "helm_leather_raidrogue_a_01_huf.m2", + fileId = "138529", + text = "helm_leather_northrend_b_02_dwm.m2", + value = "helm_leather_northrend_b_02_dwm.m2", }, { - fileId = "138853", - text = "helm_leather_raidrogue_a_01_hum.m2", - value = "helm_leather_raidrogue_a_01_hum.m2", + fileId = "138530", + text = "helm_leather_northrend_b_02_gnf.m2", + value = "helm_leather_northrend_b_02_gnf.m2", }, { - fileId = "138854", - text = "helm_leather_raidrogue_a_01_nif.m2", - value = "helm_leather_raidrogue_a_01_nif.m2", + fileId = "138531", + text = "helm_leather_northrend_b_02_gnm.m2", + value = "helm_leather_northrend_b_02_gnm.m2", }, { - fileId = "138855", - text = "helm_leather_raidrogue_a_01_nim.m2", - value = "helm_leather_raidrogue_a_01_nim.m2", + fileId = "454124", + text = "helm_leather_northrend_b_02_gof.m2", + value = "helm_leather_northrend_b_02_gof.m2", }, { - fileId = "138856", - text = "helm_leather_raidrogue_a_01_orf.m2", - value = "helm_leather_raidrogue_a_01_orf.m2", + fileId = "454125", + text = "helm_leather_northrend_b_02_gom.m2", + value = "helm_leather_northrend_b_02_gom.m2", }, { - fileId = "138857", - text = "helm_leather_raidrogue_a_01_orm.m2", - value = "helm_leather_raidrogue_a_01_orm.m2", + fileId = "138532", + text = "helm_leather_northrend_b_02_huf.m2", + value = "helm_leather_northrend_b_02_huf.m2", }, { - fileId = "138858", - text = "helm_leather_raidrogue_a_01_scf.m2", - value = "helm_leather_raidrogue_a_01_scf.m2", + fileId = "138533", + text = "helm_leather_northrend_b_02_hum.m2", + value = "helm_leather_northrend_b_02_hum.m2", }, { - fileId = "138859", - text = "helm_leather_raidrogue_a_01_scm.m2", - value = "helm_leather_raidrogue_a_01_scm.m2", + fileId = "138534", + text = "helm_leather_northrend_b_02_nif.m2", + value = "helm_leather_northrend_b_02_nif.m2", }, { - fileId = "138860", - text = "helm_leather_raidrogue_a_01_taf.m2", - value = "helm_leather_raidrogue_a_01_taf.m2", + fileId = "138535", + text = "helm_leather_northrend_b_02_nim.m2", + value = "helm_leather_northrend_b_02_nim.m2", }, { - fileId = "138861", - text = "helm_leather_raidrogue_a_01_tam.m2", - value = "helm_leather_raidrogue_a_01_tam.m2", + fileId = "138536", + text = "helm_leather_northrend_b_02_orf.m2", + value = "helm_leather_northrend_b_02_orf.m2", }, { - fileId = "138862", - text = "helm_leather_raidrogue_a_01_trf.m2", - value = "helm_leather_raidrogue_a_01_trf.m2", + fileId = "138537", + text = "helm_leather_northrend_b_02_orm.m2", + value = "helm_leather_northrend_b_02_orm.m2", }, { - fileId = "138863", - text = "helm_leather_raidrogue_a_01_trm.m2", - value = "helm_leather_raidrogue_a_01_trm.m2", + fileId = "138538", + text = "helm_leather_northrend_b_02_scf.m2", + value = "helm_leather_northrend_b_02_scf.m2", }, { - fileId = "138867", - text = "helm_leather_raidrogue_b_01_bef.m2", - value = "helm_leather_raidrogue_b_01_bef.m2", + fileId = "138539", + text = "helm_leather_northrend_b_02_scm.m2", + value = "helm_leather_northrend_b_02_scm.m2", }, { - fileId = "138868", - text = "helm_leather_raidrogue_b_01_bem.m2", - value = "helm_leather_raidrogue_b_01_bem.m2", + fileId = "138540", + text = "helm_leather_northrend_b_02_taf.m2", + value = "helm_leather_northrend_b_02_taf.m2", }, { - fileId = "138869", - text = "helm_leather_raidrogue_b_01_drf.m2", - value = "helm_leather_raidrogue_b_01_drf.m2", + fileId = "138541", + text = "helm_leather_northrend_b_02_tam.m2", + value = "helm_leather_northrend_b_02_tam.m2", }, { - fileId = "138870", - text = "helm_leather_raidrogue_b_01_drm.m2", - value = "helm_leather_raidrogue_b_01_drm.m2", + fileId = "138542", + text = "helm_leather_northrend_b_02_trf.m2", + value = "helm_leather_northrend_b_02_trf.m2", }, { - fileId = "138871", - text = "helm_leather_raidrogue_b_01_dwf.m2", - value = "helm_leather_raidrogue_b_01_dwf.m2", + fileId = "138543", + text = "helm_leather_northrend_b_02_trm.m2", + value = "helm_leather_northrend_b_02_trm.m2", }, { - fileId = "138872", - text = "helm_leather_raidrogue_b_01_dwm.m2", - value = "helm_leather_raidrogue_b_01_dwm.m2", + fileId = "454126", + text = "helm_leather_northrend_b_02_wof.m2", + value = "helm_leather_northrend_b_02_wof.m2", }, { - fileId = "138873", - text = "helm_leather_raidrogue_b_01_gnf.m2", - value = "helm_leather_raidrogue_b_01_gnf.m2", + fileId = "430011", + text = "helm_leather_northrend_b_02_wom.m2", + value = "helm_leather_northrend_b_02_wom.m2", }, { - fileId = "138874", - text = "helm_leather_raidrogue_b_01_gnm.m2", - value = "helm_leather_raidrogue_b_01_gnm.m2", + fileId = "138545", + text = "helm_leather_northrend_b_03_bef.m2", + value = "helm_leather_northrend_b_03_bef.m2", }, { - fileId = "138875", - text = "helm_leather_raidrogue_b_01_gof.m2", - value = "helm_leather_raidrogue_b_01_gof.m2", + fileId = "138546", + text = "helm_leather_northrend_b_03_bem.m2", + value = "helm_leather_northrend_b_03_bem.m2", }, { - fileId = "138876", - text = "helm_leather_raidrogue_b_01_gom.m2", - value = "helm_leather_raidrogue_b_01_gom.m2", + fileId = "138547", + text = "helm_leather_northrend_b_03_drf.m2", + value = "helm_leather_northrend_b_03_drf.m2", }, { - fileId = "138877", - text = "helm_leather_raidrogue_b_01_huf.m2", - value = "helm_leather_raidrogue_b_01_huf.m2", + fileId = "138548", + text = "helm_leather_northrend_b_03_drm.m2", + value = "helm_leather_northrend_b_03_drm.m2", }, { - fileId = "138878", - text = "helm_leather_raidrogue_b_01_hum.m2", - value = "helm_leather_raidrogue_b_01_hum.m2", + fileId = "138549", + text = "helm_leather_northrend_b_03_dwf.m2", + value = "helm_leather_northrend_b_03_dwf.m2", }, { - fileId = "138879", - text = "helm_leather_raidrogue_b_01_nif.m2", - value = "helm_leather_raidrogue_b_01_nif.m2", + fileId = "138550", + text = "helm_leather_northrend_b_03_dwm.m2", + value = "helm_leather_northrend_b_03_dwm.m2", }, { - fileId = "138880", - text = "helm_leather_raidrogue_b_01_nim.m2", - value = "helm_leather_raidrogue_b_01_nim.m2", + fileId = "138551", + text = "helm_leather_northrend_b_03_gnf.m2", + value = "helm_leather_northrend_b_03_gnf.m2", }, { - fileId = "138881", - text = "helm_leather_raidrogue_b_01_orf.m2", - value = "helm_leather_raidrogue_b_01_orf.m2", + fileId = "138552", + text = "helm_leather_northrend_b_03_gnm.m2", + value = "helm_leather_northrend_b_03_gnm.m2", }, { - fileId = "138882", - text = "helm_leather_raidrogue_b_01_orm.m2", - value = "helm_leather_raidrogue_b_01_orm.m2", + fileId = "454127", + text = "helm_leather_northrend_b_03_gof.m2", + value = "helm_leather_northrend_b_03_gof.m2", }, { - fileId = "138883", - text = "helm_leather_raidrogue_b_01_scf.m2", - value = "helm_leather_raidrogue_b_01_scf.m2", + fileId = "454128", + text = "helm_leather_northrend_b_03_gom.m2", + value = "helm_leather_northrend_b_03_gom.m2", }, { - fileId = "138884", - text = "helm_leather_raidrogue_b_01_scm.m2", - value = "helm_leather_raidrogue_b_01_scm.m2", + fileId = "138553", + text = "helm_leather_northrend_b_03_huf.m2", + value = "helm_leather_northrend_b_03_huf.m2", }, { - fileId = "138885", - text = "helm_leather_raidrogue_b_01_taf.m2", - value = "helm_leather_raidrogue_b_01_taf.m2", + fileId = "138554", + text = "helm_leather_northrend_b_03_hum.m2", + value = "helm_leather_northrend_b_03_hum.m2", }, { - fileId = "138886", - text = "helm_leather_raidrogue_b_01_tam.m2", - value = "helm_leather_raidrogue_b_01_tam.m2", + fileId = "138555", + text = "helm_leather_northrend_b_03_nif.m2", + value = "helm_leather_northrend_b_03_nif.m2", }, { - fileId = "138887", - text = "helm_leather_raidrogue_b_01_trf.m2", - value = "helm_leather_raidrogue_b_01_trf.m2", + fileId = "138556", + text = "helm_leather_northrend_b_03_nim.m2", + value = "helm_leather_northrend_b_03_nim.m2", }, { - fileId = "138888", - text = "helm_leather_raidrogue_b_01_trm.m2", - value = "helm_leather_raidrogue_b_01_trm.m2", + fileId = "138557", + text = "helm_leather_northrend_b_03_orf.m2", + value = "helm_leather_northrend_b_03_orf.m2", }, { - fileId = "138893", - text = "helm_leather_raidrogue_c_01_bef.m2", - value = "helm_leather_raidrogue_c_01_bef.m2", + fileId = "138558", + text = "helm_leather_northrend_b_03_orm.m2", + value = "helm_leather_northrend_b_03_orm.m2", }, { - fileId = "138894", - text = "helm_leather_raidrogue_c_01_bem.m2", - value = "helm_leather_raidrogue_c_01_bem.m2", + fileId = "138559", + text = "helm_leather_northrend_b_03_scf.m2", + value = "helm_leather_northrend_b_03_scf.m2", }, { - fileId = "138895", - text = "helm_leather_raidrogue_c_01_drf.m2", - value = "helm_leather_raidrogue_c_01_drf.m2", + fileId = "138560", + text = "helm_leather_northrend_b_03_scm.m2", + value = "helm_leather_northrend_b_03_scm.m2", }, { - fileId = "138896", - text = "helm_leather_raidrogue_c_01_drm.m2", - value = "helm_leather_raidrogue_c_01_drm.m2", + fileId = "138561", + text = "helm_leather_northrend_b_03_taf.m2", + value = "helm_leather_northrend_b_03_taf.m2", }, { - fileId = "138897", - text = "helm_leather_raidrogue_c_01_dwf.m2", - value = "helm_leather_raidrogue_c_01_dwf.m2", + fileId = "138562", + text = "helm_leather_northrend_b_03_tam.m2", + value = "helm_leather_northrend_b_03_tam.m2", }, { - fileId = "138898", - text = "helm_leather_raidrogue_c_01_dwm.m2", - value = "helm_leather_raidrogue_c_01_dwm.m2", + fileId = "138563", + text = "helm_leather_northrend_b_03_trf.m2", + value = "helm_leather_northrend_b_03_trf.m2", }, { - fileId = "138899", - text = "helm_leather_raidrogue_c_01_gnf.m2", - value = "helm_leather_raidrogue_c_01_gnf.m2", + fileId = "138564", + text = "helm_leather_northrend_b_03_trm.m2", + value = "helm_leather_northrend_b_03_trm.m2", }, { - fileId = "138900", - text = "helm_leather_raidrogue_c_01_gnm.m2", - value = "helm_leather_raidrogue_c_01_gnm.m2", + fileId = "454129", + text = "helm_leather_northrend_b_03_wof.m2", + value = "helm_leather_northrend_b_03_wof.m2", }, { - fileId = "138901", - text = "helm_leather_raidrogue_c_01_gof.m2", - value = "helm_leather_raidrogue_c_01_gof.m2", + fileId = "430012", + text = "helm_leather_northrend_b_03_wom.m2", + value = "helm_leather_northrend_b_03_wom.m2", }, { - fileId = "138902", - text = "helm_leather_raidrogue_c_01_gom.m2", - value = "helm_leather_raidrogue_c_01_gom.m2", + fileId = "138568", + text = "helm_leather_northrend_c_02_bef.m2", + value = "helm_leather_northrend_c_02_bef.m2", }, { - fileId = "138903", - text = "helm_leather_raidrogue_c_01_huf.m2", - value = "helm_leather_raidrogue_c_01_huf.m2", + fileId = "138569", + text = "helm_leather_northrend_c_02_bem.m2", + value = "helm_leather_northrend_c_02_bem.m2", }, { - fileId = "138904", - text = "helm_leather_raidrogue_c_01_hum.m2", - value = "helm_leather_raidrogue_c_01_hum.m2", + fileId = "138570", + text = "helm_leather_northrend_c_02_drf.m2", + value = "helm_leather_northrend_c_02_drf.m2", }, { - fileId = "138905", - text = "helm_leather_raidrogue_c_01_nif.m2", - value = "helm_leather_raidrogue_c_01_nif.m2", + fileId = "138571", + text = "helm_leather_northrend_c_02_drm.m2", + value = "helm_leather_northrend_c_02_drm.m2", }, { - fileId = "138906", - text = "helm_leather_raidrogue_c_01_nim.m2", - value = "helm_leather_raidrogue_c_01_nim.m2", + fileId = "138572", + text = "helm_leather_northrend_c_02_dwf.m2", + value = "helm_leather_northrend_c_02_dwf.m2", }, { - fileId = "138907", - text = "helm_leather_raidrogue_c_01_orf.m2", - value = "helm_leather_raidrogue_c_01_orf.m2", + fileId = "138573", + text = "helm_leather_northrend_c_02_dwm.m2", + value = "helm_leather_northrend_c_02_dwm.m2", }, { - fileId = "138908", - text = "helm_leather_raidrogue_c_01_orm.m2", - value = "helm_leather_raidrogue_c_01_orm.m2", + fileId = "138574", + text = "helm_leather_northrend_c_02_gnf.m2", + value = "helm_leather_northrend_c_02_gnf.m2", }, { - fileId = "138909", - text = "helm_leather_raidrogue_c_01_scf.m2", - value = "helm_leather_raidrogue_c_01_scf.m2", + fileId = "138575", + text = "helm_leather_northrend_c_02_gnm.m2", + value = "helm_leather_northrend_c_02_gnm.m2", }, { - fileId = "138910", - text = "helm_leather_raidrogue_c_01_scm.m2", - value = "helm_leather_raidrogue_c_01_scm.m2", + fileId = "138576", + text = "helm_leather_northrend_c_02_gof.m2", + value = "helm_leather_northrend_c_02_gof.m2", }, { - fileId = "138911", - text = "helm_leather_raidrogue_c_01_taf.m2", - value = "helm_leather_raidrogue_c_01_taf.m2", + fileId = "138577", + text = "helm_leather_northrend_c_02_gom.m2", + value = "helm_leather_northrend_c_02_gom.m2", }, { - fileId = "138912", - text = "helm_leather_raidrogue_c_01_tam.m2", - value = "helm_leather_raidrogue_c_01_tam.m2", + fileId = "138578", + text = "helm_leather_northrend_c_02_huf.m2", + value = "helm_leather_northrend_c_02_huf.m2", }, { - fileId = "138913", - text = "helm_leather_raidrogue_c_01_trf.m2", - value = "helm_leather_raidrogue_c_01_trf.m2", + fileId = "138579", + text = "helm_leather_northrend_c_02_hum.m2", + value = "helm_leather_northrend_c_02_hum.m2", }, { - fileId = "138914", - text = "helm_leather_raidrogue_c_01_trm.m2", - value = "helm_leather_raidrogue_c_01_trm.m2", + fileId = "138580", + text = "helm_leather_northrend_c_02_nif.m2", + value = "helm_leather_northrend_c_02_nif.m2", }, { - fileId = "138918", - text = "helm_leather_raidrogue_d_01_bef.m2", - value = "helm_leather_raidrogue_d_01_bef.m2", + fileId = "138581", + text = "helm_leather_northrend_c_02_nim.m2", + value = "helm_leather_northrend_c_02_nim.m2", }, { - fileId = "138919", - text = "helm_leather_raidrogue_d_01_bem.m2", - value = "helm_leather_raidrogue_d_01_bem.m2", + fileId = "138582", + text = "helm_leather_northrend_c_02_orf.m2", + value = "helm_leather_northrend_c_02_orf.m2", }, { - fileId = "138920", - text = "helm_leather_raidrogue_d_01_drf.m2", - value = "helm_leather_raidrogue_d_01_drf.m2", + fileId = "138583", + text = "helm_leather_northrend_c_02_orm.m2", + value = "helm_leather_northrend_c_02_orm.m2", }, { - fileId = "138921", - text = "helm_leather_raidrogue_d_01_drm.m2", - value = "helm_leather_raidrogue_d_01_drm.m2", + fileId = "138584", + text = "helm_leather_northrend_c_02_scf.m2", + value = "helm_leather_northrend_c_02_scf.m2", }, { - fileId = "138922", - text = "helm_leather_raidrogue_d_01_dwf.m2", - value = "helm_leather_raidrogue_d_01_dwf.m2", + fileId = "138585", + text = "helm_leather_northrend_c_02_scm.m2", + value = "helm_leather_northrend_c_02_scm.m2", }, { - fileId = "138923", - text = "helm_leather_raidrogue_d_01_dwm.m2", - value = "helm_leather_raidrogue_d_01_dwm.m2", + fileId = "138586", + text = "helm_leather_northrend_c_02_taf.m2", + value = "helm_leather_northrend_c_02_taf.m2", }, { - fileId = "138924", - text = "helm_leather_raidrogue_d_01_gnf.m2", - value = "helm_leather_raidrogue_d_01_gnf.m2", + fileId = "138587", + text = "helm_leather_northrend_c_02_tam.m2", + value = "helm_leather_northrend_c_02_tam.m2", }, { - fileId = "138925", - text = "helm_leather_raidrogue_d_01_gnm.m2", - value = "helm_leather_raidrogue_d_01_gnm.m2", + fileId = "138588", + text = "helm_leather_northrend_c_02_trf.m2", + value = "helm_leather_northrend_c_02_trf.m2", }, { - fileId = "138926", - text = "helm_leather_raidrogue_d_01_gof.m2", - value = "helm_leather_raidrogue_d_01_gof.m2", + fileId = "138589", + text = "helm_leather_northrend_c_02_trm.m2", + value = "helm_leather_northrend_c_02_trm.m2", }, { - fileId = "138927", - text = "helm_leather_raidrogue_d_01_gom.m2", - value = "helm_leather_raidrogue_d_01_gom.m2", + fileId = "454130", + text = "helm_leather_northrend_c_02_wof.m2", + value = "helm_leather_northrend_c_02_wof.m2", }, { - fileId = "138928", - text = "helm_leather_raidrogue_d_01_huf.m2", - value = "helm_leather_raidrogue_d_01_huf.m2", + fileId = "430013", + text = "helm_leather_northrend_c_02_wom.m2", + value = "helm_leather_northrend_c_02_wom.m2", }, { - fileId = "138929", - text = "helm_leather_raidrogue_d_01_hum.m2", - value = "helm_leather_raidrogue_d_01_hum.m2", + fileId = "138595", + text = "helm_leather_northrend_d_01_bef.m2", + value = "helm_leather_northrend_d_01_bef.m2", }, { - fileId = "138930", - text = "helm_leather_raidrogue_d_01_nif.m2", - value = "helm_leather_raidrogue_d_01_nif.m2", + fileId = "138596", + text = "helm_leather_northrend_d_01_bem.m2", + value = "helm_leather_northrend_d_01_bem.m2", }, { - fileId = "138931", - text = "helm_leather_raidrogue_d_01_nim.m2", - value = "helm_leather_raidrogue_d_01_nim.m2", + fileId = "138597", + text = "helm_leather_northrend_d_01_drf.m2", + value = "helm_leather_northrend_d_01_drf.m2", }, { - fileId = "138932", - text = "helm_leather_raidrogue_d_01_orf.m2", - value = "helm_leather_raidrogue_d_01_orf.m2", + fileId = "138598", + text = "helm_leather_northrend_d_01_drm.m2", + value = "helm_leather_northrend_d_01_drm.m2", }, { - fileId = "138933", - text = "helm_leather_raidrogue_d_01_orm.m2", - value = "helm_leather_raidrogue_d_01_orm.m2", + fileId = "138599", + text = "helm_leather_northrend_d_01_dwf.m2", + value = "helm_leather_northrend_d_01_dwf.m2", }, { - fileId = "138934", - text = "helm_leather_raidrogue_d_01_scf.m2", - value = "helm_leather_raidrogue_d_01_scf.m2", + fileId = "138600", + text = "helm_leather_northrend_d_01_dwm.m2", + value = "helm_leather_northrend_d_01_dwm.m2", }, { - fileId = "138935", - text = "helm_leather_raidrogue_d_01_scm.m2", - value = "helm_leather_raidrogue_d_01_scm.m2", + fileId = "138601", + text = "helm_leather_northrend_d_01_gnf.m2", + value = "helm_leather_northrend_d_01_gnf.m2", }, { - fileId = "138936", - text = "helm_leather_raidrogue_d_01_taf.m2", - value = "helm_leather_raidrogue_d_01_taf.m2", + fileId = "138602", + text = "helm_leather_northrend_d_01_gnm.m2", + value = "helm_leather_northrend_d_01_gnm.m2", }, { - fileId = "138937", - text = "helm_leather_raidrogue_d_01_tam.m2", - value = "helm_leather_raidrogue_d_01_tam.m2", + fileId = "454131", + text = "helm_leather_northrend_d_01_gof.m2", + value = "helm_leather_northrend_d_01_gof.m2", }, { - fileId = "138938", - text = "helm_leather_raidrogue_d_01_trf.m2", - value = "helm_leather_raidrogue_d_01_trf.m2", + fileId = "454132", + text = "helm_leather_northrend_d_01_gom.m2", + value = "helm_leather_northrend_d_01_gom.m2", }, { - fileId = "138939", - text = "helm_leather_raidrogue_d_01_trm.m2", - value = "helm_leather_raidrogue_d_01_trm.m2", + fileId = "138603", + text = "helm_leather_northrend_d_01_huf.m2", + value = "helm_leather_northrend_d_01_huf.m2", }, { - fileId = "138941", - text = "helm_leather_raidrogue_e_01_bef.m2", - value = "helm_leather_raidrogue_e_01_bef.m2", + fileId = "138604", + text = "helm_leather_northrend_d_01_hum.m2", + value = "helm_leather_northrend_d_01_hum.m2", }, { - fileId = "138942", - text = "helm_leather_raidrogue_e_01_bem.m2", - value = "helm_leather_raidrogue_e_01_bem.m2", + fileId = "138605", + text = "helm_leather_northrend_d_01_nif.m2", + value = "helm_leather_northrend_d_01_nif.m2", }, { - fileId = "138943", - text = "helm_leather_raidrogue_e_01_drf.m2", - value = "helm_leather_raidrogue_e_01_drf.m2", + fileId = "138606", + text = "helm_leather_northrend_d_01_nim.m2", + value = "helm_leather_northrend_d_01_nim.m2", }, { - fileId = "138944", - text = "helm_leather_raidrogue_e_01_drm.m2", - value = "helm_leather_raidrogue_e_01_drm.m2", + fileId = "138607", + text = "helm_leather_northrend_d_01_orf.m2", + value = "helm_leather_northrend_d_01_orf.m2", }, { - fileId = "138945", - text = "helm_leather_raidrogue_e_01_dwf.m2", - value = "helm_leather_raidrogue_e_01_dwf.m2", + fileId = "138608", + text = "helm_leather_northrend_d_01_orm.m2", + value = "helm_leather_northrend_d_01_orm.m2", }, { - fileId = "138946", - text = "helm_leather_raidrogue_e_01_dwm.m2", - value = "helm_leather_raidrogue_e_01_dwm.m2", + fileId = "138609", + text = "helm_leather_northrend_d_01_scf.m2", + value = "helm_leather_northrend_d_01_scf.m2", }, { - fileId = "138947", - text = "helm_leather_raidrogue_e_01_gnf.m2", - value = "helm_leather_raidrogue_e_01_gnf.m2", + fileId = "138610", + text = "helm_leather_northrend_d_01_scm.m2", + value = "helm_leather_northrend_d_01_scm.m2", }, { - fileId = "138948", - text = "helm_leather_raidrogue_e_01_gnm.m2", - value = "helm_leather_raidrogue_e_01_gnm.m2", + fileId = "138611", + text = "helm_leather_northrend_d_01_taf.m2", + value = "helm_leather_northrend_d_01_taf.m2", }, { - fileId = "138949", - text = "helm_leather_raidrogue_e_01_gof.m2", - value = "helm_leather_raidrogue_e_01_gof.m2", + fileId = "138612", + text = "helm_leather_northrend_d_01_tam.m2", + value = "helm_leather_northrend_d_01_tam.m2", }, { - fileId = "138950", - text = "helm_leather_raidrogue_e_01_gom.m2", - value = "helm_leather_raidrogue_e_01_gom.m2", + fileId = "138613", + text = "helm_leather_northrend_d_01_trf.m2", + value = "helm_leather_northrend_d_01_trf.m2", }, { - fileId = "138951", - text = "helm_leather_raidrogue_e_01_huf.m2", - value = "helm_leather_raidrogue_e_01_huf.m2", + fileId = "138614", + text = "helm_leather_northrend_d_01_trm.m2", + value = "helm_leather_northrend_d_01_trm.m2", }, { - fileId = "138952", - text = "helm_leather_raidrogue_e_01_hum.m2", - value = "helm_leather_raidrogue_e_01_hum.m2", + fileId = "454133", + text = "helm_leather_northrend_d_01_wof.m2", + value = "helm_leather_northrend_d_01_wof.m2", }, { - fileId = "138953", - text = "helm_leather_raidrogue_e_01_nif.m2", - value = "helm_leather_raidrogue_e_01_nif.m2", + fileId = "430014", + text = "helm_leather_northrend_d_01_wom.m2", + value = "helm_leather_northrend_d_01_wom.m2", }, { - fileId = "138954", - text = "helm_leather_raidrogue_e_01_nim.m2", - value = "helm_leather_raidrogue_e_01_nim.m2", + fileId = "138618", + text = "helm_leather_pvpalliance_a_01_bef.m2", + value = "helm_leather_pvpalliance_a_01_bef.m2", }, { - fileId = "138955", - text = "helm_leather_raidrogue_e_01_orf.m2", - value = "helm_leather_raidrogue_e_01_orf.m2", + fileId = "138619", + text = "helm_leather_pvpalliance_a_01_bem.m2", + value = "helm_leather_pvpalliance_a_01_bem.m2", }, { - fileId = "138956", - text = "helm_leather_raidrogue_e_01_orm.m2", - value = "helm_leather_raidrogue_e_01_orm.m2", + fileId = "138620", + text = "helm_leather_pvpalliance_a_01_drf.m2", + value = "helm_leather_pvpalliance_a_01_drf.m2", }, { - fileId = "138957", - text = "helm_leather_raidrogue_e_01_scf.m2", - value = "helm_leather_raidrogue_e_01_scf.m2", + fileId = "138621", + text = "helm_leather_pvpalliance_a_01_drm.m2", + value = "helm_leather_pvpalliance_a_01_drm.m2", }, { - fileId = "138958", - text = "helm_leather_raidrogue_e_01_scm.m2", - value = "helm_leather_raidrogue_e_01_scm.m2", + fileId = "138622", + text = "helm_leather_pvpalliance_a_01_dwf.m2", + value = "helm_leather_pvpalliance_a_01_dwf.m2", }, { - fileId = "138959", - text = "helm_leather_raidrogue_e_01_taf.m2", - value = "helm_leather_raidrogue_e_01_taf.m2", + fileId = "138623", + text = "helm_leather_pvpalliance_a_01_dwm.m2", + value = "helm_leather_pvpalliance_a_01_dwm.m2", }, { - fileId = "138960", - text = "helm_leather_raidrogue_e_01_tam.m2", - value = "helm_leather_raidrogue_e_01_tam.m2", + fileId = "138624", + text = "helm_leather_pvpalliance_a_01_gnf.m2", + value = "helm_leather_pvpalliance_a_01_gnf.m2", }, { - fileId = "138961", - text = "helm_leather_raidrogue_e_01_trf.m2", - value = "helm_leather_raidrogue_e_01_trf.m2", + fileId = "138625", + text = "helm_leather_pvpalliance_a_01_gnm.m2", + value = "helm_leather_pvpalliance_a_01_gnm.m2", }, { - fileId = "138962", - text = "helm_leather_raidrogue_e_01_trm.m2", - value = "helm_leather_raidrogue_e_01_trm.m2", + fileId = "138626", + text = "helm_leather_pvpalliance_a_01_gof.m2", + value = "helm_leather_pvpalliance_a_01_gof.m2", }, { - fileId = "138967", - text = "helm_leather_raidrogue_f_01_bef.m2", - value = "helm_leather_raidrogue_f_01_bef.m2", + fileId = "138627", + text = "helm_leather_pvpalliance_a_01_gom.m2", + value = "helm_leather_pvpalliance_a_01_gom.m2", }, { - fileId = "138968", - text = "helm_leather_raidrogue_f_01_bem.m2", - value = "helm_leather_raidrogue_f_01_bem.m2", + fileId = "138628", + text = "helm_leather_pvpalliance_a_01_huf.m2", + value = "helm_leather_pvpalliance_a_01_huf.m2", }, { - fileId = "138969", - text = "helm_leather_raidrogue_f_01_drf.m2", - value = "helm_leather_raidrogue_f_01_drf.m2", + fileId = "138629", + text = "helm_leather_pvpalliance_a_01_hum.m2", + value = "helm_leather_pvpalliance_a_01_hum.m2", }, { - fileId = "138970", - text = "helm_leather_raidrogue_f_01_drm.m2", - value = "helm_leather_raidrogue_f_01_drm.m2", + fileId = "138630", + text = "helm_leather_pvpalliance_a_01_nif.m2", + value = "helm_leather_pvpalliance_a_01_nif.m2", }, { - fileId = "138971", - text = "helm_leather_raidrogue_f_01_dwf.m2", - value = "helm_leather_raidrogue_f_01_dwf.m2", + fileId = "138631", + text = "helm_leather_pvpalliance_a_01_nim.m2", + value = "helm_leather_pvpalliance_a_01_nim.m2", }, { - fileId = "138972", - text = "helm_leather_raidrogue_f_01_dwm.m2", - value = "helm_leather_raidrogue_f_01_dwm.m2", + fileId = "138632", + text = "helm_leather_pvpalliance_a_01_orf.m2", + value = "helm_leather_pvpalliance_a_01_orf.m2", }, { - fileId = "138973", - text = "helm_leather_raidrogue_f_01_gnf.m2", - value = "helm_leather_raidrogue_f_01_gnf.m2", + fileId = "138633", + text = "helm_leather_pvpalliance_a_01_orm.m2", + value = "helm_leather_pvpalliance_a_01_orm.m2", }, { - fileId = "138974", - text = "helm_leather_raidrogue_f_01_gnm.m2", - value = "helm_leather_raidrogue_f_01_gnm.m2", + fileId = "138634", + text = "helm_leather_pvpalliance_a_01_scf.m2", + value = "helm_leather_pvpalliance_a_01_scf.m2", }, { - fileId = "138975", - text = "helm_leather_raidrogue_f_01_gom.m2", - value = "helm_leather_raidrogue_f_01_gom.m2", + fileId = "138635", + text = "helm_leather_pvpalliance_a_01_scm.m2", + value = "helm_leather_pvpalliance_a_01_scm.m2", }, { - fileId = "138976", - text = "helm_leather_raidrogue_f_01_huf.m2", - value = "helm_leather_raidrogue_f_01_huf.m2", + fileId = "138636", + text = "helm_leather_pvpalliance_a_01_taf.m2", + value = "helm_leather_pvpalliance_a_01_taf.m2", }, { - fileId = "138977", - text = "helm_leather_raidrogue_f_01_hum.m2", - value = "helm_leather_raidrogue_f_01_hum.m2", + fileId = "138637", + text = "helm_leather_pvpalliance_a_01_tam.m2", + value = "helm_leather_pvpalliance_a_01_tam.m2", }, { - fileId = "138978", - text = "helm_leather_raidrogue_f_01_nif.m2", - value = "helm_leather_raidrogue_f_01_nif.m2", + fileId = "138638", + text = "helm_leather_pvpalliance_a_01_trf.m2", + value = "helm_leather_pvpalliance_a_01_trf.m2", }, { - fileId = "138979", - text = "helm_leather_raidrogue_f_01_nim.m2", - value = "helm_leather_raidrogue_f_01_nim.m2", + fileId = "138639", + text = "helm_leather_pvpalliance_a_01_trm.m2", + value = "helm_leather_pvpalliance_a_01_trm.m2", }, { - fileId = "138980", - text = "helm_leather_raidrogue_f_01_orf.m2", - value = "helm_leather_raidrogue_f_01_orf.m2", + fileId = "454134", + text = "helm_leather_pvpalliance_a_01_wof.m2", + value = "helm_leather_pvpalliance_a_01_wof.m2", }, { - fileId = "138981", - text = "helm_leather_raidrogue_f_01_orm.m2", - value = "helm_leather_raidrogue_f_01_orm.m2", + fileId = "430015", + text = "helm_leather_pvpalliance_a_01_wom.m2", + value = "helm_leather_pvpalliance_a_01_wom.m2", }, { - fileId = "138982", - text = "helm_leather_raidrogue_f_01_scf.m2", - value = "helm_leather_raidrogue_f_01_scf.m2", + fileId = "138642", + text = "helm_leather_pvpalliance_c_01_bef.m2", + value = "helm_leather_pvpalliance_c_01_bef.m2", }, { - fileId = "138983", - text = "helm_leather_raidrogue_f_01_scm.m2", - value = "helm_leather_raidrogue_f_01_scm.m2", + fileId = "138643", + text = "helm_leather_pvpalliance_c_01_drf.m2", + value = "helm_leather_pvpalliance_c_01_drf.m2", }, { - fileId = "138984", - text = "helm_leather_raidrogue_f_01_taf.m2", - value = "helm_leather_raidrogue_f_01_taf.m2", + fileId = "138644", + text = "helm_leather_pvpalliance_c_01_drm.m2", + value = "helm_leather_pvpalliance_c_01_drm.m2", }, { - fileId = "138985", - text = "helm_leather_raidrogue_f_01_tam.m2", - value = "helm_leather_raidrogue_f_01_tam.m2", + fileId = "138645", + text = "helm_leather_pvpalliance_c_01_gof.m2", + value = "helm_leather_pvpalliance_c_01_gof.m2", }, { - fileId = "138986", - text = "helm_leather_raidrogue_f_01_trf.m2", - value = "helm_leather_raidrogue_f_01_trf.m2", + fileId = "237883", + text = "helm_leather_pvpdruid_b_01_bef.m2", + value = "helm_leather_pvpdruid_b_01_bef.m2", }, { - fileId = "138987", - text = "helm_leather_raidrogue_f_01_trm.m2", - value = "helm_leather_raidrogue_f_01_trm.m2", + fileId = "237884", + text = "helm_leather_pvpdruid_b_01_bem.m2", + value = "helm_leather_pvpdruid_b_01_bem.m2", }, { - fileId = "138991", - text = "helm_leather_raidrogue_g_01_bef.m2", - value = "helm_leather_raidrogue_g_01_bef.m2", + fileId = "237885", + text = "helm_leather_pvpdruid_b_01_drf.m2", + value = "helm_leather_pvpdruid_b_01_drf.m2", }, { - fileId = "138992", - text = "helm_leather_raidrogue_g_01_bem.m2", - value = "helm_leather_raidrogue_g_01_bem.m2", + fileId = "237886", + text = "helm_leather_pvpdruid_b_01_drm.m2", + value = "helm_leather_pvpdruid_b_01_drm.m2", }, { - fileId = "138993", - text = "helm_leather_raidrogue_g_01_drf.m2", - value = "helm_leather_raidrogue_g_01_drf.m2", + fileId = "237887", + text = "helm_leather_pvpdruid_b_01_dwf.m2", + value = "helm_leather_pvpdruid_b_01_dwf.m2", }, { - fileId = "138994", - text = "helm_leather_raidrogue_g_01_drm.m2", - value = "helm_leather_raidrogue_g_01_drm.m2", + fileId = "237888", + text = "helm_leather_pvpdruid_b_01_dwm.m2", + value = "helm_leather_pvpdruid_b_01_dwm.m2", }, { - fileId = "138995", - text = "helm_leather_raidrogue_g_01_dwf.m2", - value = "helm_leather_raidrogue_g_01_dwf.m2", + fileId = "237889", + text = "helm_leather_pvpdruid_b_01_gnf.m2", + value = "helm_leather_pvpdruid_b_01_gnf.m2", }, { - fileId = "138996", - text = "helm_leather_raidrogue_g_01_dwm.m2", - value = "helm_leather_raidrogue_g_01_dwm.m2", + fileId = "237890", + text = "helm_leather_pvpdruid_b_01_gnm.m2", + value = "helm_leather_pvpdruid_b_01_gnm.m2", }, { - fileId = "138997", - text = "helm_leather_raidrogue_g_01_gnf.m2", - value = "helm_leather_raidrogue_g_01_gnf.m2", + fileId = "237891", + text = "helm_leather_pvpdruid_b_01_gof.m2", + value = "helm_leather_pvpdruid_b_01_gof.m2", }, { - fileId = "138998", - text = "helm_leather_raidrogue_g_01_gnm.m2", - value = "helm_leather_raidrogue_g_01_gnm.m2", + fileId = "237892", + text = "helm_leather_pvpdruid_b_01_gom.m2", + value = "helm_leather_pvpdruid_b_01_gom.m2", }, { - fileId = "138999", - text = "helm_leather_raidrogue_g_01_gof.m2", - value = "helm_leather_raidrogue_g_01_gof.m2", + fileId = "237893", + text = "helm_leather_pvpdruid_b_01_huf.m2", + value = "helm_leather_pvpdruid_b_01_huf.m2", }, { - fileId = "139000", - text = "helm_leather_raidrogue_g_01_gom.m2", - value = "helm_leather_raidrogue_g_01_gom.m2", + fileId = "237894", + text = "helm_leather_pvpdruid_b_01_hum.m2", + value = "helm_leather_pvpdruid_b_01_hum.m2", }, { - fileId = "139001", - text = "helm_leather_raidrogue_g_01_huf.m2", - value = "helm_leather_raidrogue_g_01_huf.m2", + fileId = "237895", + text = "helm_leather_pvpdruid_b_01_nif.m2", + value = "helm_leather_pvpdruid_b_01_nif.m2", }, { - fileId = "139002", - text = "helm_leather_raidrogue_g_01_hum.m2", - value = "helm_leather_raidrogue_g_01_hum.m2", + fileId = "237896", + text = "helm_leather_pvpdruid_b_01_nim.m2", + value = "helm_leather_pvpdruid_b_01_nim.m2", }, { - fileId = "139003", - text = "helm_leather_raidrogue_g_01_nif.m2", - value = "helm_leather_raidrogue_g_01_nif.m2", + fileId = "237897", + text = "helm_leather_pvpdruid_b_01_orf.m2", + value = "helm_leather_pvpdruid_b_01_orf.m2", }, { - fileId = "139004", - text = "helm_leather_raidrogue_g_01_nim.m2", - value = "helm_leather_raidrogue_g_01_nim.m2", + fileId = "237898", + text = "helm_leather_pvpdruid_b_01_orm.m2", + value = "helm_leather_pvpdruid_b_01_orm.m2", }, { - fileId = "139005", - text = "helm_leather_raidrogue_g_01_orf.m2", - value = "helm_leather_raidrogue_g_01_orf.m2", + fileId = "237899", + text = "helm_leather_pvpdruid_b_01_scf.m2", + value = "helm_leather_pvpdruid_b_01_scf.m2", }, { - fileId = "139006", - text = "helm_leather_raidrogue_g_01_orm.m2", - value = "helm_leather_raidrogue_g_01_orm.m2", + fileId = "237900", + text = "helm_leather_pvpdruid_b_01_scm.m2", + value = "helm_leather_pvpdruid_b_01_scm.m2", }, { - fileId = "304116", - text = "helm_leather_raidrogue_g_01_scf.m2", - value = "helm_leather_raidrogue_g_01_scf.m2", + fileId = "237901", + text = "helm_leather_pvpdruid_b_01_taf.m2", + value = "helm_leather_pvpdruid_b_01_taf.m2", }, { - fileId = "139007", - text = "helm_leather_raidrogue_g_01_scm.m2", - value = "helm_leather_raidrogue_g_01_scm.m2", + fileId = "237902", + text = "helm_leather_pvpdruid_b_01_tam.m2", + value = "helm_leather_pvpdruid_b_01_tam.m2", }, { - fileId = "139008", - text = "helm_leather_raidrogue_g_01_taf.m2", - value = "helm_leather_raidrogue_g_01_taf.m2", + fileId = "237903", + text = "helm_leather_pvpdruid_b_01_trf.m2", + value = "helm_leather_pvpdruid_b_01_trf.m2", }, { - fileId = "139009", - text = "helm_leather_raidrogue_g_01_tam.m2", - value = "helm_leather_raidrogue_g_01_tam.m2", + fileId = "237904", + text = "helm_leather_pvpdruid_b_01_trm.m2", + value = "helm_leather_pvpdruid_b_01_trm.m2", }, { - fileId = "139010", - text = "helm_leather_raidrogue_g_01_trf.m2", - value = "helm_leather_raidrogue_g_01_trf.m2", + fileId = "454135", + text = "helm_leather_pvpdruid_b_01_wof.m2", + value = "helm_leather_pvpdruid_b_01_wof.m2", }, { - fileId = "139011", - text = "helm_leather_raidrogue_g_01_trm.m2", - value = "helm_leather_raidrogue_g_01_trm.m2", + fileId = "430016", + text = "helm_leather_pvpdruid_b_01_wom.m2", + value = "helm_leather_pvpdruid_b_01_wom.m2", }, { - fileId = "336820", - text = "helm_leather_raidrogue_h_01_bef.m2", - value = "helm_leather_raidrogue_h_01_bef.m2", + fileId = "294403", + text = "helm_leather_pvpdruid_b_02_bef.m2", + value = "helm_leather_pvpdruid_b_02_bef.m2", }, { - fileId = "336821", - text = "helm_leather_raidrogue_h_01_bem.m2", - value = "helm_leather_raidrogue_h_01_bem.m2", + fileId = "294404", + text = "helm_leather_pvpdruid_b_02_bem.m2", + value = "helm_leather_pvpdruid_b_02_bem.m2", }, { - fileId = "336822", - text = "helm_leather_raidrogue_h_01_drf.m2", - value = "helm_leather_raidrogue_h_01_drf.m2", + fileId = "294405", + text = "helm_leather_pvpdruid_b_02_drf.m2", + value = "helm_leather_pvpdruid_b_02_drf.m2", }, { - fileId = "336823", - text = "helm_leather_raidrogue_h_01_drm.m2", - value = "helm_leather_raidrogue_h_01_drm.m2", + fileId = "294406", + text = "helm_leather_pvpdruid_b_02_drm.m2", + value = "helm_leather_pvpdruid_b_02_drm.m2", }, { - fileId = "336824", - text = "helm_leather_raidrogue_h_01_dwf.m2", - value = "helm_leather_raidrogue_h_01_dwf.m2", + fileId = "294407", + text = "helm_leather_pvpdruid_b_02_dwf.m2", + value = "helm_leather_pvpdruid_b_02_dwf.m2", }, { - fileId = "336825", - text = "helm_leather_raidrogue_h_01_dwm.m2", - value = "helm_leather_raidrogue_h_01_dwm.m2", + fileId = "294408", + text = "helm_leather_pvpdruid_b_02_dwm.m2", + value = "helm_leather_pvpdruid_b_02_dwm.m2", }, { - fileId = "336826", - text = "helm_leather_raidrogue_h_01_gnf.m2", - value = "helm_leather_raidrogue_h_01_gnf.m2", + fileId = "294409", + text = "helm_leather_pvpdruid_b_02_gnf.m2", + value = "helm_leather_pvpdruid_b_02_gnf.m2", }, { - fileId = "336827", - text = "helm_leather_raidrogue_h_01_gnm.m2", - value = "helm_leather_raidrogue_h_01_gnm.m2", + fileId = "294410", + text = "helm_leather_pvpdruid_b_02_gnm.m2", + value = "helm_leather_pvpdruid_b_02_gnm.m2", }, { - fileId = "336828", - text = "helm_leather_raidrogue_h_01_gof.m2", - value = "helm_leather_raidrogue_h_01_gof.m2", + fileId = "294411", + text = "helm_leather_pvpdruid_b_02_gof.m2", + value = "helm_leather_pvpdruid_b_02_gof.m2", }, { - fileId = "336829", - text = "helm_leather_raidrogue_h_01_gom.m2", - value = "helm_leather_raidrogue_h_01_gom.m2", + fileId = "294412", + text = "helm_leather_pvpdruid_b_02_gom.m2", + value = "helm_leather_pvpdruid_b_02_gom.m2", }, { - fileId = "336830", - text = "helm_leather_raidrogue_h_01_huf.m2", - value = "helm_leather_raidrogue_h_01_huf.m2", + fileId = "294413", + text = "helm_leather_pvpdruid_b_02_huf.m2", + value = "helm_leather_pvpdruid_b_02_huf.m2", }, { - fileId = "336831", - text = "helm_leather_raidrogue_h_01_hum.m2", - value = "helm_leather_raidrogue_h_01_hum.m2", + fileId = "294414", + text = "helm_leather_pvpdruid_b_02_hum.m2", + value = "helm_leather_pvpdruid_b_02_hum.m2", }, { - fileId = "336832", - text = "helm_leather_raidrogue_h_01_nif.m2", - value = "helm_leather_raidrogue_h_01_nif.m2", + fileId = "294415", + text = "helm_leather_pvpdruid_b_02_nif.m2", + value = "helm_leather_pvpdruid_b_02_nif.m2", }, { - fileId = "336833", - text = "helm_leather_raidrogue_h_01_nim.m2", - value = "helm_leather_raidrogue_h_01_nim.m2", + fileId = "294416", + text = "helm_leather_pvpdruid_b_02_nim.m2", + value = "helm_leather_pvpdruid_b_02_nim.m2", }, { - fileId = "336834", - text = "helm_leather_raidrogue_h_01_orf.m2", - value = "helm_leather_raidrogue_h_01_orf.m2", + fileId = "294417", + text = "helm_leather_pvpdruid_b_02_orf.m2", + value = "helm_leather_pvpdruid_b_02_orf.m2", }, { - fileId = "336835", - text = "helm_leather_raidrogue_h_01_orm.m2", - value = "helm_leather_raidrogue_h_01_orm.m2", + fileId = "294418", + text = "helm_leather_pvpdruid_b_02_orm.m2", + value = "helm_leather_pvpdruid_b_02_orm.m2", }, { - fileId = "336836", - text = "helm_leather_raidrogue_h_01_scf.m2", - value = "helm_leather_raidrogue_h_01_scf.m2", + fileId = "294419", + text = "helm_leather_pvpdruid_b_02_scf.m2", + value = "helm_leather_pvpdruid_b_02_scf.m2", }, { - fileId = "336837", - text = "helm_leather_raidrogue_h_01_scm.m2", - value = "helm_leather_raidrogue_h_01_scm.m2", + fileId = "294420", + text = "helm_leather_pvpdruid_b_02_scm.m2", + value = "helm_leather_pvpdruid_b_02_scm.m2", }, { - fileId = "336838", - text = "helm_leather_raidrogue_h_01_taf.m2", - value = "helm_leather_raidrogue_h_01_taf.m2", + fileId = "294421", + text = "helm_leather_pvpdruid_b_02_taf.m2", + value = "helm_leather_pvpdruid_b_02_taf.m2", }, { - fileId = "336839", - text = "helm_leather_raidrogue_h_01_tam.m2", - value = "helm_leather_raidrogue_h_01_tam.m2", + fileId = "294422", + text = "helm_leather_pvpdruid_b_02_tam.m2", + value = "helm_leather_pvpdruid_b_02_tam.m2", }, { - fileId = "336840", - text = "helm_leather_raidrogue_h_01_trf.m2", - value = "helm_leather_raidrogue_h_01_trf.m2", + fileId = "294423", + text = "helm_leather_pvpdruid_b_02_trf.m2", + value = "helm_leather_pvpdruid_b_02_trf.m2", }, { - fileId = "336841", - text = "helm_leather_raidrogue_h_01_trm.m2", - value = "helm_leather_raidrogue_h_01_trm.m2", + fileId = "294424", + text = "helm_leather_pvpdruid_b_02_trm.m2", + value = "helm_leather_pvpdruid_b_02_trm.m2", }, { - fileId = "139018", - text = "helm_leather_sunwell_d_01_bef.m2", - value = "helm_leather_sunwell_d_01_bef.m2", + fileId = "454136", + text = "helm_leather_pvpdruid_b_02_wof.m2", + value = "helm_leather_pvpdruid_b_02_wof.m2", }, { - fileId = "139019", - text = "helm_leather_sunwell_d_01_bem.m2", - value = "helm_leather_sunwell_d_01_bem.m2", + fileId = "430017", + text = "helm_leather_pvpdruid_b_02_wom.m2", + value = "helm_leather_pvpdruid_b_02_wom.m2", }, { - fileId = "139020", - text = "helm_leather_sunwell_d_01_drf.m2", - value = "helm_leather_sunwell_d_01_drf.m2", + fileId = "304551", + text = "helm_leather_pvpdruid_b_03_bef.m2", + value = "helm_leather_pvpdruid_b_03_bef.m2", }, { - fileId = "139021", - text = "helm_leather_sunwell_d_01_drm.m2", - value = "helm_leather_sunwell_d_01_drm.m2", + fileId = "304552", + text = "helm_leather_pvpdruid_b_03_bem.m2", + value = "helm_leather_pvpdruid_b_03_bem.m2", }, { - fileId = "139022", - text = "helm_leather_sunwell_d_01_dwf.m2", - value = "helm_leather_sunwell_d_01_dwf.m2", + fileId = "304553", + text = "helm_leather_pvpdruid_b_03_drf.m2", + value = "helm_leather_pvpdruid_b_03_drf.m2", }, { - fileId = "139023", - text = "helm_leather_sunwell_d_01_dwm.m2", - value = "helm_leather_sunwell_d_01_dwm.m2", + fileId = "304554", + text = "helm_leather_pvpdruid_b_03_drm.m2", + value = "helm_leather_pvpdruid_b_03_drm.m2", }, { - fileId = "139024", - text = "helm_leather_sunwell_d_01_gnf.m2", - value = "helm_leather_sunwell_d_01_gnf.m2", + fileId = "304555", + text = "helm_leather_pvpdruid_b_03_dwf.m2", + value = "helm_leather_pvpdruid_b_03_dwf.m2", }, { - fileId = "139025", - text = "helm_leather_sunwell_d_01_gnm.m2", - value = "helm_leather_sunwell_d_01_gnm.m2", + fileId = "304556", + text = "helm_leather_pvpdruid_b_03_dwm.m2", + value = "helm_leather_pvpdruid_b_03_dwm.m2", }, { - fileId = "139026", - text = "helm_leather_sunwell_d_01_gof.m2", - value = "helm_leather_sunwell_d_01_gof.m2", + fileId = "304557", + text = "helm_leather_pvpdruid_b_03_gnf.m2", + value = "helm_leather_pvpdruid_b_03_gnf.m2", }, { - fileId = "139027", - text = "helm_leather_sunwell_d_01_gom.m2", - value = "helm_leather_sunwell_d_01_gom.m2", + fileId = "304558", + text = "helm_leather_pvpdruid_b_03_gnm.m2", + value = "helm_leather_pvpdruid_b_03_gnm.m2", }, { - fileId = "139028", - text = "helm_leather_sunwell_d_01_huf.m2", - value = "helm_leather_sunwell_d_01_huf.m2", + fileId = "304559", + text = "helm_leather_pvpdruid_b_03_gof.m2", + value = "helm_leather_pvpdruid_b_03_gof.m2", }, { - fileId = "139029", - text = "helm_leather_sunwell_d_01_hum.m2", - value = "helm_leather_sunwell_d_01_hum.m2", + fileId = "304560", + text = "helm_leather_pvpdruid_b_03_gom.m2", + value = "helm_leather_pvpdruid_b_03_gom.m2", }, { - fileId = "139030", - text = "helm_leather_sunwell_d_01_nif.m2", - value = "helm_leather_sunwell_d_01_nif.m2", + fileId = "304561", + text = "helm_leather_pvpdruid_b_03_huf.m2", + value = "helm_leather_pvpdruid_b_03_huf.m2", }, { - fileId = "139031", - text = "helm_leather_sunwell_d_01_nim.m2", - value = "helm_leather_sunwell_d_01_nim.m2", + fileId = "304562", + text = "helm_leather_pvpdruid_b_03_hum.m2", + value = "helm_leather_pvpdruid_b_03_hum.m2", }, { - fileId = "139032", - text = "helm_leather_sunwell_d_01_orf.m2", - value = "helm_leather_sunwell_d_01_orf.m2", + fileId = "304563", + text = "helm_leather_pvpdruid_b_03_nif.m2", + value = "helm_leather_pvpdruid_b_03_nif.m2", }, { - fileId = "139033", - text = "helm_leather_sunwell_d_01_orm.m2", - value = "helm_leather_sunwell_d_01_orm.m2", + fileId = "304564", + text = "helm_leather_pvpdruid_b_03_nim.m2", + value = "helm_leather_pvpdruid_b_03_nim.m2", }, { - fileId = "139034", - text = "helm_leather_sunwell_d_01_scf.m2", - value = "helm_leather_sunwell_d_01_scf.m2", + fileId = "304565", + text = "helm_leather_pvpdruid_b_03_orf.m2", + value = "helm_leather_pvpdruid_b_03_orf.m2", }, { - fileId = "139035", - text = "helm_leather_sunwell_d_01_scm.m2", - value = "helm_leather_sunwell_d_01_scm.m2", + fileId = "304566", + text = "helm_leather_pvpdruid_b_03_orm.m2", + value = "helm_leather_pvpdruid_b_03_orm.m2", }, { - fileId = "139036", - text = "helm_leather_sunwell_d_01_taf.m2", - value = "helm_leather_sunwell_d_01_taf.m2", + fileId = "304567", + text = "helm_leather_pvpdruid_b_03_scf.m2", + value = "helm_leather_pvpdruid_b_03_scf.m2", }, { - fileId = "139037", - text = "helm_leather_sunwell_d_01_tam.m2", - value = "helm_leather_sunwell_d_01_tam.m2", + fileId = "304568", + text = "helm_leather_pvpdruid_b_03_scm.m2", + value = "helm_leather_pvpdruid_b_03_scm.m2", }, { - fileId = "139038", - text = "helm_leather_sunwell_d_01_trf.m2", - value = "helm_leather_sunwell_d_01_trf.m2", + fileId = "304569", + text = "helm_leather_pvpdruid_b_03_taf.m2", + value = "helm_leather_pvpdruid_b_03_taf.m2", }, { - fileId = "139039", - text = "helm_leather_sunwell_d_01_trm.m2", - value = "helm_leather_sunwell_d_01_trm.m2", + fileId = "304570", + text = "helm_leather_pvpdruid_b_03_tam.m2", + value = "helm_leather_pvpdruid_b_03_tam.m2", }, { - fileId = "237943", - text = "helm_leather_tuskarr_01_tum.m2", - value = "helm_leather_tuskarr_01_tum.m2", + fileId = "304571", + text = "helm_leather_pvpdruid_b_03_trf.m2", + value = "helm_leather_pvpdruid_b_03_trf.m2", }, { - fileId = "237945", - text = "helm_leather_tuskarr_02_tum.m2", - value = "helm_leather_tuskarr_02_tum.m2", + fileId = "304572", + text = "helm_leather_pvpdruid_b_03_trm.m2", + value = "helm_leather_pvpdruid_b_03_trm.m2", }, { - fileId = "237947", - text = "helm_leather_tuskarr_03_tum.m2", - value = "helm_leather_tuskarr_03_tum.m2", + fileId = "454137", + text = "helm_leather_pvpdruid_b_03_wof.m2", + value = "helm_leather_pvpdruid_b_03_wof.m2", }, { - fileId = "237949", - text = "helm_leather_tuskarr_04_tum.m2", - value = "helm_leather_tuskarr_04_tum.m2", + fileId = "430018", + text = "helm_leather_pvpdruid_b_03_wom.m2", + value = "helm_leather_pvpdruid_b_03_wom.m2", }, { - fileId = "139044", - text = "helm_leather_zulaman_d_01_bef.m2", - value = "helm_leather_zulaman_d_01_bef.m2", + fileId = "348109", + text = "helm_leather_pvpdruid_b_04_bef.m2", + value = "helm_leather_pvpdruid_b_04_bef.m2", }, { - fileId = "139045", - text = "helm_leather_zulaman_d_01_bem.m2", - value = "helm_leather_zulaman_d_01_bem.m2", + fileId = "348110", + text = "helm_leather_pvpdruid_b_04_bem.m2", + value = "helm_leather_pvpdruid_b_04_bem.m2", }, { - fileId = "139046", - text = "helm_leather_zulaman_d_01_drf.m2", - value = "helm_leather_zulaman_d_01_drf.m2", + fileId = "348111", + text = "helm_leather_pvpdruid_b_04_drf.m2", + value = "helm_leather_pvpdruid_b_04_drf.m2", }, { - fileId = "139047", - text = "helm_leather_zulaman_d_01_drm.m2", - value = "helm_leather_zulaman_d_01_drm.m2", + fileId = "348112", + text = "helm_leather_pvpdruid_b_04_drm.m2", + value = "helm_leather_pvpdruid_b_04_drm.m2", }, { - fileId = "139048", - text = "helm_leather_zulaman_d_01_dwf.m2", - value = "helm_leather_zulaman_d_01_dwf.m2", + fileId = "348113", + text = "helm_leather_pvpdruid_b_04_dwf.m2", + value = "helm_leather_pvpdruid_b_04_dwf.m2", }, { - fileId = "139049", - text = "helm_leather_zulaman_d_01_dwm.m2", - value = "helm_leather_zulaman_d_01_dwm.m2", + fileId = "348114", + text = "helm_leather_pvpdruid_b_04_dwm.m2", + value = "helm_leather_pvpdruid_b_04_dwm.m2", }, { - fileId = "139050", - text = "helm_leather_zulaman_d_01_gnf.m2", - value = "helm_leather_zulaman_d_01_gnf.m2", + fileId = "348115", + text = "helm_leather_pvpdruid_b_04_gnf.m2", + value = "helm_leather_pvpdruid_b_04_gnf.m2", }, { - fileId = "139051", - text = "helm_leather_zulaman_d_01_gnm.m2", - value = "helm_leather_zulaman_d_01_gnm.m2", + fileId = "348116", + text = "helm_leather_pvpdruid_b_04_gnm.m2", + value = "helm_leather_pvpdruid_b_04_gnm.m2", }, { - fileId = "139052", - text = "helm_leather_zulaman_d_01_huf.m2", - value = "helm_leather_zulaman_d_01_huf.m2", + fileId = "348117", + text = "helm_leather_pvpdruid_b_04_gof.m2", + value = "helm_leather_pvpdruid_b_04_gof.m2", }, { - fileId = "139053", - text = "helm_leather_zulaman_d_01_hum.m2", - value = "helm_leather_zulaman_d_01_hum.m2", + fileId = "348118", + text = "helm_leather_pvpdruid_b_04_gom.m2", + value = "helm_leather_pvpdruid_b_04_gom.m2", }, { - fileId = "139054", - text = "helm_leather_zulaman_d_01_nif.m2", - value = "helm_leather_zulaman_d_01_nif.m2", + fileId = "348119", + text = "helm_leather_pvpdruid_b_04_huf.m2", + value = "helm_leather_pvpdruid_b_04_huf.m2", }, { - fileId = "139055", - text = "helm_leather_zulaman_d_01_nim.m2", - value = "helm_leather_zulaman_d_01_nim.m2", + fileId = "348120", + text = "helm_leather_pvpdruid_b_04_hum.m2", + value = "helm_leather_pvpdruid_b_04_hum.m2", }, { - fileId = "139056", - text = "helm_leather_zulaman_d_01_orf.m2", - value = "helm_leather_zulaman_d_01_orf.m2", + fileId = "348121", + text = "helm_leather_pvpdruid_b_04_nif.m2", + value = "helm_leather_pvpdruid_b_04_nif.m2", }, { - fileId = "139057", - text = "helm_leather_zulaman_d_01_orm.m2", - value = "helm_leather_zulaman_d_01_orm.m2", + fileId = "348122", + text = "helm_leather_pvpdruid_b_04_nim.m2", + value = "helm_leather_pvpdruid_b_04_nim.m2", }, { - fileId = "139058", - text = "helm_leather_zulaman_d_01_scf.m2", - value = "helm_leather_zulaman_d_01_scf.m2", + fileId = "348123", + text = "helm_leather_pvpdruid_b_04_orf.m2", + value = "helm_leather_pvpdruid_b_04_orf.m2", }, { - fileId = "139059", - text = "helm_leather_zulaman_d_01_scm.m2", - value = "helm_leather_zulaman_d_01_scm.m2", + fileId = "348124", + text = "helm_leather_pvpdruid_b_04_orm.m2", + value = "helm_leather_pvpdruid_b_04_orm.m2", }, { - fileId = "139060", - text = "helm_leather_zulaman_d_01_taf.m2", - value = "helm_leather_zulaman_d_01_taf.m2", + fileId = "348125", + text = "helm_leather_pvpdruid_b_04_scf.m2", + value = "helm_leather_pvpdruid_b_04_scf.m2", }, { - fileId = "139061", - text = "helm_leather_zulaman_d_01_tam.m2", - value = "helm_leather_zulaman_d_01_tam.m2", + fileId = "348773", + text = "helm_leather_pvpdruid_b_04_scm.m2", + value = "helm_leather_pvpdruid_b_04_scm.m2", }, { - fileId = "139062", - text = "helm_leather_zulaman_d_01_trf.m2", - value = "helm_leather_zulaman_d_01_trf.m2", + fileId = "348774", + text = "helm_leather_pvpdruid_b_04_taf.m2", + value = "helm_leather_pvpdruid_b_04_taf.m2", }, { - fileId = "139063", - text = "helm_leather_zulaman_d_01_trm.m2", - value = "helm_leather_zulaman_d_01_trm.m2", + fileId = "348775", + text = "helm_leather_pvpdruid_b_04_tam.m2", + value = "helm_leather_pvpdruid_b_04_tam.m2", }, { - fileId = "139067", - text = "helm_leather_zulaman_d_02_bef.m2", - value = "helm_leather_zulaman_d_02_bef.m2", + fileId = "348776", + text = "helm_leather_pvpdruid_b_04_trf.m2", + value = "helm_leather_pvpdruid_b_04_trf.m2", }, { - fileId = "139068", - text = "helm_leather_zulaman_d_02_bem.m2", - value = "helm_leather_zulaman_d_02_bem.m2", + fileId = "348777", + text = "helm_leather_pvpdruid_b_04_trm.m2", + value = "helm_leather_pvpdruid_b_04_trm.m2", }, { - fileId = "139069", - text = "helm_leather_zulaman_d_02_drf.m2", - value = "helm_leather_zulaman_d_02_drf.m2", + fileId = "454138", + text = "helm_leather_pvpdruid_b_04_wof.m2", + value = "helm_leather_pvpdruid_b_04_wof.m2", }, { - fileId = "139070", - text = "helm_leather_zulaman_d_02_drm.m2", - value = "helm_leather_zulaman_d_02_drm.m2", + fileId = "436630", + text = "helm_leather_pvpdruid_b_04_wom.m2", + value = "helm_leather_pvpdruid_b_04_wom.m2", }, { - fileId = "139071", - text = "helm_leather_zulaman_d_02_dwf.m2", - value = "helm_leather_zulaman_d_02_dwf.m2", + fileId = "459053", + text = "helm_leather_pvpdruid_c_01_bef.m2", + value = "helm_leather_pvpdruid_c_01_bef.m2", }, { - fileId = "139072", - text = "helm_leather_zulaman_d_02_dwm.m2", - value = "helm_leather_zulaman_d_02_dwm.m2", + fileId = "459054", + text = "helm_leather_pvpdruid_c_01_bem.m2", + value = "helm_leather_pvpdruid_c_01_bem.m2", }, { - fileId = "139073", - text = "helm_leather_zulaman_d_02_gnf.m2", - value = "helm_leather_zulaman_d_02_gnf.m2", + fileId = "459055", + text = "helm_leather_pvpdruid_c_01_drf.m2", + value = "helm_leather_pvpdruid_c_01_drf.m2", }, { - fileId = "139074", - text = "helm_leather_zulaman_d_02_gnm.m2", - value = "helm_leather_zulaman_d_02_gnm.m2", + fileId = "459056", + text = "helm_leather_pvpdruid_c_01_drm.m2", + value = "helm_leather_pvpdruid_c_01_drm.m2", }, { - fileId = "139075", - text = "helm_leather_zulaman_d_02_gof.m2", - value = "helm_leather_zulaman_d_02_gof.m2", + fileId = "459057", + text = "helm_leather_pvpdruid_c_01_dwf.m2", + value = "helm_leather_pvpdruid_c_01_dwf.m2", }, { - fileId = "139076", - text = "helm_leather_zulaman_d_02_gom.m2", - value = "helm_leather_zulaman_d_02_gom.m2", + fileId = "459058", + text = "helm_leather_pvpdruid_c_01_dwm.m2", + value = "helm_leather_pvpdruid_c_01_dwm.m2", }, { - fileId = "139077", - text = "helm_leather_zulaman_d_02_huf.m2", - value = "helm_leather_zulaman_d_02_huf.m2", + fileId = "459059", + text = "helm_leather_pvpdruid_c_01_gnf.m2", + value = "helm_leather_pvpdruid_c_01_gnf.m2", }, { - fileId = "139078", - text = "helm_leather_zulaman_d_02_hum.m2", - value = "helm_leather_zulaman_d_02_hum.m2", + fileId = "459060", + text = "helm_leather_pvpdruid_c_01_gnm.m2", + value = "helm_leather_pvpdruid_c_01_gnm.m2", }, { - fileId = "139079", - text = "helm_leather_zulaman_d_02_nif.m2", - value = "helm_leather_zulaman_d_02_nif.m2", + fileId = "459061", + text = "helm_leather_pvpdruid_c_01_gof.m2", + value = "helm_leather_pvpdruid_c_01_gof.m2", }, { - fileId = "139080", - text = "helm_leather_zulaman_d_02_nim.m2", - value = "helm_leather_zulaman_d_02_nim.m2", + fileId = "459062", + text = "helm_leather_pvpdruid_c_01_gom.m2", + value = "helm_leather_pvpdruid_c_01_gom.m2", }, { - fileId = "139081", - text = "helm_leather_zulaman_d_02_orf.m2", - value = "helm_leather_zulaman_d_02_orf.m2", + fileId = "459063", + text = "helm_leather_pvpdruid_c_01_huf.m2", + value = "helm_leather_pvpdruid_c_01_huf.m2", }, { - fileId = "139082", - text = "helm_leather_zulaman_d_02_orm.m2", - value = "helm_leather_zulaman_d_02_orm.m2", + fileId = "459064", + text = "helm_leather_pvpdruid_c_01_hum.m2", + value = "helm_leather_pvpdruid_c_01_hum.m2", }, { - fileId = "139083", - text = "helm_leather_zulaman_d_02_scf.m2", - value = "helm_leather_zulaman_d_02_scf.m2", + fileId = "459065", + text = "helm_leather_pvpdruid_c_01_nif.m2", + value = "helm_leather_pvpdruid_c_01_nif.m2", }, { - fileId = "139084", - text = "helm_leather_zulaman_d_02_scm.m2", - value = "helm_leather_zulaman_d_02_scm.m2", + fileId = "459066", + text = "helm_leather_pvpdruid_c_01_nim.m2", + value = "helm_leather_pvpdruid_c_01_nim.m2", }, { - fileId = "139085", - text = "helm_leather_zulaman_d_02_taf.m2", - value = "helm_leather_zulaman_d_02_taf.m2", + fileId = "459067", + text = "helm_leather_pvpdruid_c_01_orf.m2", + value = "helm_leather_pvpdruid_c_01_orf.m2", }, { - fileId = "139086", - text = "helm_leather_zulaman_d_02_tam.m2", - value = "helm_leather_zulaman_d_02_tam.m2", + fileId = "459068", + text = "helm_leather_pvpdruid_c_01_orm.m2", + value = "helm_leather_pvpdruid_c_01_orm.m2", }, { - fileId = "139087", - text = "helm_leather_zulaman_d_02_trf.m2", - value = "helm_leather_zulaman_d_02_trf.m2", + fileId = "459069", + text = "helm_leather_pvpdruid_c_01_scf.m2", + value = "helm_leather_pvpdruid_c_01_scf.m2", }, { - fileId = "139088", - text = "helm_leather_zulaman_d_02_trm.m2", - value = "helm_leather_zulaman_d_02_trm.m2", + fileId = "459070", + text = "helm_leather_pvpdruid_c_01_scm.m2", + value = "helm_leather_pvpdruid_c_01_scm.m2", }, { - fileId = "139093", - text = "helm_magic_b_01_bef.m2", - value = "helm_magic_b_01_bef.m2", + fileId = "459071", + text = "helm_leather_pvpdruid_c_01_taf.m2", + value = "helm_leather_pvpdruid_c_01_taf.m2", }, { - fileId = "139094", - text = "helm_magic_b_01_bem.m2", - value = "helm_magic_b_01_bem.m2", + fileId = "459072", + text = "helm_leather_pvpdruid_c_01_tam.m2", + value = "helm_leather_pvpdruid_c_01_tam.m2", }, { - fileId = "139095", - text = "helm_magic_b_01_drf.m2", - value = "helm_magic_b_01_drf.m2", + fileId = "459073", + text = "helm_leather_pvpdruid_c_01_trf.m2", + value = "helm_leather_pvpdruid_c_01_trf.m2", }, { - fileId = "139096", - text = "helm_magic_b_01_drm.m2", - value = "helm_magic_b_01_drm.m2", + fileId = "459074", + text = "helm_leather_pvpdruid_c_01_trm.m2", + value = "helm_leather_pvpdruid_c_01_trm.m2", }, { - fileId = "139097", - text = "helm_magic_b_01_dwf.m2", - value = "helm_magic_b_01_dwf.m2", + fileId = "459075", + text = "helm_leather_pvpdruid_c_01_wof.m2", + value = "helm_leather_pvpdruid_c_01_wof.m2", }, { - fileId = "139098", - text = "helm_magic_b_01_dwm.m2", - value = "helm_magic_b_01_dwm.m2", + fileId = "459076", + text = "helm_leather_pvpdruid_c_01_wom.m2", + value = "helm_leather_pvpdruid_c_01_wom.m2", }, { - fileId = "139099", - text = "helm_magic_b_01_gnf.m2", - value = "helm_magic_b_01_gnf.m2", + fileId = "469638", + text = "helm_leather_pvpdruid_c_02_bef.m2", + value = "helm_leather_pvpdruid_c_02_bef.m2", }, { - fileId = "139100", - text = "helm_magic_b_01_gnm.m2", - value = "helm_magic_b_01_gnm.m2", + fileId = "469639", + text = "helm_leather_pvpdruid_c_02_bem.m2", + value = "helm_leather_pvpdruid_c_02_bem.m2", }, { - fileId = "139101", - text = "helm_magic_b_01_gof.m2", - value = "helm_magic_b_01_gof.m2", + fileId = "469640", + text = "helm_leather_pvpdruid_c_02_drf.m2", + value = "helm_leather_pvpdruid_c_02_drf.m2", }, { - fileId = "139102", - text = "helm_magic_b_01_gom.m2", - value = "helm_magic_b_01_gom.m2", + fileId = "469641", + text = "helm_leather_pvpdruid_c_02_drm.m2", + value = "helm_leather_pvpdruid_c_02_drm.m2", }, { - fileId = "139103", - text = "helm_magic_b_01_huf.m2", - value = "helm_magic_b_01_huf.m2", + fileId = "469642", + text = "helm_leather_pvpdruid_c_02_dwf.m2", + value = "helm_leather_pvpdruid_c_02_dwf.m2", }, { - fileId = "139104", - text = "helm_magic_b_01_hum.m2", - value = "helm_magic_b_01_hum.m2", + fileId = "469643", + text = "helm_leather_pvpdruid_c_02_dwm.m2", + value = "helm_leather_pvpdruid_c_02_dwm.m2", }, { - fileId = "139105", - text = "helm_magic_b_01_nif.m2", - value = "helm_magic_b_01_nif.m2", + fileId = "469644", + text = "helm_leather_pvpdruid_c_02_gnf.m2", + value = "helm_leather_pvpdruid_c_02_gnf.m2", }, { - fileId = "139106", - text = "helm_magic_b_01_nim.m2", - value = "helm_magic_b_01_nim.m2", + fileId = "469645", + text = "helm_leather_pvpdruid_c_02_gnm.m2", + value = "helm_leather_pvpdruid_c_02_gnm.m2", }, { - fileId = "139107", - text = "helm_magic_b_01_orf.m2", - value = "helm_magic_b_01_orf.m2", + fileId = "469646", + text = "helm_leather_pvpdruid_c_02_gof.m2", + value = "helm_leather_pvpdruid_c_02_gof.m2", }, { - fileId = "139108", - text = "helm_magic_b_01_orm.m2", - value = "helm_magic_b_01_orm.m2", + fileId = "469647", + text = "helm_leather_pvpdruid_c_02_gom.m2", + value = "helm_leather_pvpdruid_c_02_gom.m2", }, { - fileId = "139109", - text = "helm_magic_b_01_scf.m2", - value = "helm_magic_b_01_scf.m2", + fileId = "469648", + text = "helm_leather_pvpdruid_c_02_huf.m2", + value = "helm_leather_pvpdruid_c_02_huf.m2", }, { - fileId = "139110", - text = "helm_magic_b_01_scm.m2", - value = "helm_magic_b_01_scm.m2", + fileId = "469649", + text = "helm_leather_pvpdruid_c_02_hum.m2", + value = "helm_leather_pvpdruid_c_02_hum.m2", }, { - fileId = "139111", - text = "helm_magic_b_01_taf.m2", - value = "helm_magic_b_01_taf.m2", + fileId = "469650", + text = "helm_leather_pvpdruid_c_02_nif.m2", + value = "helm_leather_pvpdruid_c_02_nif.m2", }, { - fileId = "139112", - text = "helm_magic_b_01_tam.m2", - value = "helm_magic_b_01_tam.m2", + fileId = "469651", + text = "helm_leather_pvpdruid_c_02_nim.m2", + value = "helm_leather_pvpdruid_c_02_nim.m2", }, { - fileId = "139113", - text = "helm_magic_b_01_trf.m2", - value = "helm_magic_b_01_trf.m2", + fileId = "469652", + text = "helm_leather_pvpdruid_c_02_orf.m2", + value = "helm_leather_pvpdruid_c_02_orf.m2", }, { - fileId = "139114", - text = "helm_magic_b_01_trm.m2", - value = "helm_magic_b_01_trm.m2", + fileId = "469653", + text = "helm_leather_pvpdruid_c_02_orm.m2", + value = "helm_leather_pvpdruid_c_02_orm.m2", }, { - fileId = "139116", - text = "helm_magic_b_02_bef.m2", - value = "helm_magic_b_02_bef.m2", + fileId = "469654", + text = "helm_leather_pvpdruid_c_02_scf.m2", + value = "helm_leather_pvpdruid_c_02_scf.m2", }, { - fileId = "139117", - text = "helm_magic_b_02_bem.m2", - value = "helm_magic_b_02_bem.m2", + fileId = "469655", + text = "helm_leather_pvpdruid_c_02_scm.m2", + value = "helm_leather_pvpdruid_c_02_scm.m2", }, { - fileId = "139118", - text = "helm_magic_b_02_drf.m2", - value = "helm_magic_b_02_drf.m2", + fileId = "469656", + text = "helm_leather_pvpdruid_c_02_taf.m2", + value = "helm_leather_pvpdruid_c_02_taf.m2", }, { - fileId = "139119", - text = "helm_magic_b_02_drm.m2", - value = "helm_magic_b_02_drm.m2", + fileId = "469657", + text = "helm_leather_pvpdruid_c_02_tam.m2", + value = "helm_leather_pvpdruid_c_02_tam.m2", }, { - fileId = "139120", - text = "helm_magic_b_02_dwf.m2", - value = "helm_magic_b_02_dwf.m2", + fileId = "469658", + text = "helm_leather_pvpdruid_c_02_trf.m2", + value = "helm_leather_pvpdruid_c_02_trf.m2", }, { - fileId = "139121", - text = "helm_magic_b_02_dwm.m2", - value = "helm_magic_b_02_dwm.m2", + fileId = "469659", + text = "helm_leather_pvpdruid_c_02_trm.m2", + value = "helm_leather_pvpdruid_c_02_trm.m2", }, { - fileId = "139122", - text = "helm_magic_b_02_gnf.m2", - value = "helm_magic_b_02_gnf.m2", + fileId = "469660", + text = "helm_leather_pvpdruid_c_02_wof.m2", + value = "helm_leather_pvpdruid_c_02_wof.m2", }, { - fileId = "139123", - text = "helm_magic_b_02_gnm.m2", - value = "helm_magic_b_02_gnm.m2", + fileId = "469661", + text = "helm_leather_pvpdruid_c_02_wom.m2", + value = "helm_leather_pvpdruid_c_02_wom.m2", }, { - fileId = "139124", - text = "helm_magic_b_02_gof.m2", - value = "helm_magic_b_02_gof.m2", + fileId = "536652", + text = "helm_leather_pvpdruid_d_01_bef.m2", + value = "helm_leather_pvpdruid_d_01_bef.m2", }, { - fileId = "139125", - text = "helm_magic_b_02_gom.m2", - value = "helm_magic_b_02_gom.m2", + fileId = "536654", + text = "helm_leather_pvpdruid_d_01_bem.m2", + value = "helm_leather_pvpdruid_d_01_bem.m2", }, { - fileId = "139126", - text = "helm_magic_b_02_huf.m2", - value = "helm_magic_b_02_huf.m2", + fileId = "536656", + text = "helm_leather_pvpdruid_d_01_drf.m2", + value = "helm_leather_pvpdruid_d_01_drf.m2", }, { - fileId = "139127", - text = "helm_magic_b_02_hum.m2", - value = "helm_magic_b_02_hum.m2", + fileId = "536658", + text = "helm_leather_pvpdruid_d_01_drm.m2", + value = "helm_leather_pvpdruid_d_01_drm.m2", }, { - fileId = "139128", - text = "helm_magic_b_02_nif.m2", - value = "helm_magic_b_02_nif.m2", + fileId = "536660", + text = "helm_leather_pvpdruid_d_01_dwf.m2", + value = "helm_leather_pvpdruid_d_01_dwf.m2", }, { - fileId = "139129", - text = "helm_magic_b_02_nim.m2", - value = "helm_magic_b_02_nim.m2", + fileId = "536662", + text = "helm_leather_pvpdruid_d_01_dwm.m2", + value = "helm_leather_pvpdruid_d_01_dwm.m2", }, { - fileId = "139130", - text = "helm_magic_b_02_orf.m2", - value = "helm_magic_b_02_orf.m2", + fileId = "536664", + text = "helm_leather_pvpdruid_d_01_gnf.m2", + value = "helm_leather_pvpdruid_d_01_gnf.m2", }, { - fileId = "139131", - text = "helm_magic_b_02_orm.m2", - value = "helm_magic_b_02_orm.m2", + fileId = "536666", + text = "helm_leather_pvpdruid_d_01_gnm.m2", + value = "helm_leather_pvpdruid_d_01_gnm.m2", }, { - fileId = "139132", - text = "helm_magic_b_02_scf.m2", - value = "helm_magic_b_02_scf.m2", + fileId = "536668", + text = "helm_leather_pvpdruid_d_01_gof.m2", + value = "helm_leather_pvpdruid_d_01_gof.m2", }, { - fileId = "139133", - text = "helm_magic_b_02_scm.m2", - value = "helm_magic_b_02_scm.m2", + fileId = "536670", + text = "helm_leather_pvpdruid_d_01_gom.m2", + value = "helm_leather_pvpdruid_d_01_gom.m2", }, { - fileId = "139134", - text = "helm_magic_b_02_taf.m2", - value = "helm_magic_b_02_taf.m2", + fileId = "536672", + text = "helm_leather_pvpdruid_d_01_huf.m2", + value = "helm_leather_pvpdruid_d_01_huf.m2", }, { - fileId = "139135", - text = "helm_magic_b_02_tam.m2", - value = "helm_magic_b_02_tam.m2", + fileId = "536674", + text = "helm_leather_pvpdruid_d_01_hum.m2", + value = "helm_leather_pvpdruid_d_01_hum.m2", }, { - fileId = "139136", - text = "helm_magic_b_02_trf.m2", - value = "helm_magic_b_02_trf.m2", + fileId = "536676", + text = "helm_leather_pvpdruid_d_01_nif.m2", + value = "helm_leather_pvpdruid_d_01_nif.m2", }, { - fileId = "139137", - text = "helm_magic_b_02_trm.m2", - value = "helm_magic_b_02_trm.m2", + fileId = "536678", + text = "helm_leather_pvpdruid_d_01_nim.m2", + value = "helm_leather_pvpdruid_d_01_nim.m2", }, { - fileId = "139139", - text = "helm_magic_c_01_bef.m2", - value = "helm_magic_c_01_bef.m2", + fileId = "536680", + text = "helm_leather_pvpdruid_d_01_orf.m2", + value = "helm_leather_pvpdruid_d_01_orf.m2", }, { - fileId = "139140", - text = "helm_magic_c_01_bem.m2", - value = "helm_magic_c_01_bem.m2", + fileId = "536682", + text = "helm_leather_pvpdruid_d_01_orm.m2", + value = "helm_leather_pvpdruid_d_01_orm.m2", }, { - fileId = "139141", - text = "helm_magic_c_01_drf.m2", - value = "helm_magic_c_01_drf.m2", + fileId = "536684", + text = "helm_leather_pvpdruid_d_01_scf.m2", + value = "helm_leather_pvpdruid_d_01_scf.m2", }, { - fileId = "139142", - text = "helm_magic_c_01_drm.m2", - value = "helm_magic_c_01_drm.m2", + fileId = "536686", + text = "helm_leather_pvpdruid_d_01_scm.m2", + value = "helm_leather_pvpdruid_d_01_scm.m2", }, { - fileId = "139143", - text = "helm_magic_c_01_dwf.m2", - value = "helm_magic_c_01_dwf.m2", + fileId = "536688", + text = "helm_leather_pvpdruid_d_01_taf.m2", + value = "helm_leather_pvpdruid_d_01_taf.m2", }, { - fileId = "139144", - text = "helm_magic_c_01_dwm.m2", - value = "helm_magic_c_01_dwm.m2", + fileId = "536690", + text = "helm_leather_pvpdruid_d_01_tam.m2", + value = "helm_leather_pvpdruid_d_01_tam.m2", }, { - fileId = "139145", - text = "helm_magic_c_01_gnf.m2", - value = "helm_magic_c_01_gnf.m2", + fileId = "536692", + text = "helm_leather_pvpdruid_d_01_trf.m2", + value = "helm_leather_pvpdruid_d_01_trf.m2", }, { - fileId = "139146", - text = "helm_magic_c_01_gnm.m2", - value = "helm_magic_c_01_gnm.m2", + fileId = "536694", + text = "helm_leather_pvpdruid_d_01_trm.m2", + value = "helm_leather_pvpdruid_d_01_trm.m2", }, { - fileId = "139147", - text = "helm_magic_c_01_gof.m2", - value = "helm_magic_c_01_gof.m2", + fileId = "536696", + text = "helm_leather_pvpdruid_d_01_wof.m2", + value = "helm_leather_pvpdruid_d_01_wof.m2", }, { - fileId = "139148", - text = "helm_magic_c_01_gom.m2", - value = "helm_magic_c_01_gom.m2", + fileId = "536698", + text = "helm_leather_pvpdruid_d_01_wom.m2", + value = "helm_leather_pvpdruid_d_01_wom.m2", }, { - fileId = "139149", - text = "helm_magic_c_01_huf.m2", - value = "helm_magic_c_01_huf.m2", + fileId = "138646", + text = "helm_leather_pvphorde_a_01_bef.m2", + value = "helm_leather_pvphorde_a_01_bef.m2", }, { - fileId = "139150", - text = "helm_magic_c_01_hum.m2", - value = "helm_magic_c_01_hum.m2", + fileId = "138647", + text = "helm_leather_pvphorde_a_01_bem.m2", + value = "helm_leather_pvphorde_a_01_bem.m2", }, { - fileId = "139151", - text = "helm_magic_c_01_nif.m2", - value = "helm_magic_c_01_nif.m2", + fileId = "138648", + text = "helm_leather_pvphorde_a_01_drf.m2", + value = "helm_leather_pvphorde_a_01_drf.m2", }, { - fileId = "139152", - text = "helm_magic_c_01_nim.m2", - value = "helm_magic_c_01_nim.m2", + fileId = "138649", + text = "helm_leather_pvphorde_a_01_drm.m2", + value = "helm_leather_pvphorde_a_01_drm.m2", }, { - fileId = "139153", - text = "helm_magic_c_01_orf.m2", - value = "helm_magic_c_01_orf.m2", + fileId = "138650", + text = "helm_leather_pvphorde_a_01_dwf.m2", + value = "helm_leather_pvphorde_a_01_dwf.m2", }, { - fileId = "139154", - text = "helm_magic_c_01_orm.m2", - value = "helm_magic_c_01_orm.m2", + fileId = "138651", + text = "helm_leather_pvphorde_a_01_dwm.m2", + value = "helm_leather_pvphorde_a_01_dwm.m2", }, { - fileId = "139155", - text = "helm_magic_c_01_scf.m2", - value = "helm_magic_c_01_scf.m2", + fileId = "138652", + text = "helm_leather_pvphorde_a_01_gnf.m2", + value = "helm_leather_pvphorde_a_01_gnf.m2", }, { - fileId = "139156", - text = "helm_magic_c_01_scm.m2", - value = "helm_magic_c_01_scm.m2", + fileId = "138653", + text = "helm_leather_pvphorde_a_01_gnm.m2", + value = "helm_leather_pvphorde_a_01_gnm.m2", }, { - fileId = "139157", - text = "helm_magic_c_01_taf.m2", - value = "helm_magic_c_01_taf.m2", + fileId = "138654", + text = "helm_leather_pvphorde_a_01_gof.m2", + value = "helm_leather_pvphorde_a_01_gof.m2", }, { - fileId = "139158", - text = "helm_magic_c_01_tam.m2", - value = "helm_magic_c_01_tam.m2", + fileId = "138655", + text = "helm_leather_pvphorde_a_01_gom.m2", + value = "helm_leather_pvphorde_a_01_gom.m2", }, { - fileId = "139159", - text = "helm_magic_c_01_trf.m2", - value = "helm_magic_c_01_trf.m2", + fileId = "138656", + text = "helm_leather_pvphorde_a_01_huf.m2", + value = "helm_leather_pvphorde_a_01_huf.m2", }, { - fileId = "139160", - text = "helm_magic_c_01_trm.m2", - value = "helm_magic_c_01_trm.m2", + fileId = "138657", + text = "helm_leather_pvphorde_a_01_hum.m2", + value = "helm_leather_pvphorde_a_01_hum.m2", }, { - fileId = "139163", - text = "helm_mail_a_01_bef.m2", - value = "helm_mail_a_01_bef.m2", + fileId = "138658", + text = "helm_leather_pvphorde_a_01_nif.m2", + value = "helm_leather_pvphorde_a_01_nif.m2", }, { - fileId = "139164", - text = "helm_mail_a_01_bem.m2", - value = "helm_mail_a_01_bem.m2", + fileId = "138659", + text = "helm_leather_pvphorde_a_01_nim.m2", + value = "helm_leather_pvphorde_a_01_nim.m2", }, { - fileId = "139165", - text = "helm_mail_a_01_drf.m2", - value = "helm_mail_a_01_drf.m2", + fileId = "138660", + text = "helm_leather_pvphorde_a_01_orf.m2", + value = "helm_leather_pvphorde_a_01_orf.m2", }, { - fileId = "139166", - text = "helm_mail_a_01_drm.m2", - value = "helm_mail_a_01_drm.m2", + fileId = "138661", + text = "helm_leather_pvphorde_a_01_orm.m2", + value = "helm_leather_pvphorde_a_01_orm.m2", }, { - fileId = "139167", - text = "helm_mail_a_01_dwf.m2", - value = "helm_mail_a_01_dwf.m2", + fileId = "138662", + text = "helm_leather_pvphorde_a_01_scf.m2", + value = "helm_leather_pvphorde_a_01_scf.m2", }, { - fileId = "139168", - text = "helm_mail_a_01_dwm.m2", - value = "helm_mail_a_01_dwm.m2", + fileId = "138663", + text = "helm_leather_pvphorde_a_01_scm.m2", + value = "helm_leather_pvphorde_a_01_scm.m2", }, { - fileId = "139169", - text = "helm_mail_a_01_gnf.m2", - value = "helm_mail_a_01_gnf.m2", + fileId = "138664", + text = "helm_leather_pvphorde_a_01_taf.m2", + value = "helm_leather_pvphorde_a_01_taf.m2", }, { - fileId = "139170", - text = "helm_mail_a_01_gnm.m2", - value = "helm_mail_a_01_gnm.m2", + fileId = "138665", + text = "helm_leather_pvphorde_a_01_tam.m2", + value = "helm_leather_pvphorde_a_01_tam.m2", }, { - fileId = "139171", - text = "helm_mail_a_01_gof.m2", - value = "helm_mail_a_01_gof.m2", + fileId = "138666", + text = "helm_leather_pvphorde_a_01_trf.m2", + value = "helm_leather_pvphorde_a_01_trf.m2", }, { - fileId = "139172", - text = "helm_mail_a_01_gom.m2", - value = "helm_mail_a_01_gom.m2", + fileId = "138667", + text = "helm_leather_pvphorde_a_01_trm.m2", + value = "helm_leather_pvphorde_a_01_trm.m2", }, { - fileId = "139173", - text = "helm_mail_a_01_huf.m2", - value = "helm_mail_a_01_huf.m2", + fileId = "454139", + text = "helm_leather_pvphorde_a_01_wof.m2", + value = "helm_leather_pvphorde_a_01_wof.m2", }, { - fileId = "139174", - text = "helm_mail_a_01_hum.m2", - value = "helm_mail_a_01_hum.m2", + fileId = "436631", + text = "helm_leather_pvphorde_a_01_wom.m2", + value = "helm_leather_pvphorde_a_01_wom.m2", }, { - fileId = "139175", - text = "helm_mail_a_01_nif.m2", - value = "helm_mail_a_01_nif.m2", + fileId = "138670", + text = "helm_leather_pvphorde_c_01_bef.m2", + value = "helm_leather_pvphorde_c_01_bef.m2", }, { - fileId = "139176", - text = "helm_mail_a_01_nim.m2", - value = "helm_mail_a_01_nim.m2", + fileId = "138671", + text = "helm_leather_pvphorde_c_01_bem.m2", + value = "helm_leather_pvphorde_c_01_bem.m2", }, { - fileId = "139177", - text = "helm_mail_a_01_orf.m2", - value = "helm_mail_a_01_orf.m2", + fileId = "138672", + text = "helm_leather_pvphorde_c_01_drf.m2", + value = "helm_leather_pvphorde_c_01_drf.m2", }, { - fileId = "139178", - text = "helm_mail_a_01_orm.m2", - value = "helm_mail_a_01_orm.m2", + fileId = "138673", + text = "helm_leather_pvphorde_c_01_drm.m2", + value = "helm_leather_pvphorde_c_01_drm.m2", }, { - fileId = "139179", - text = "helm_mail_a_01_scf.m2", - value = "helm_mail_a_01_scf.m2", + fileId = "138674", + text = "helm_leather_pvphorde_c_01_dwf.m2", + value = "helm_leather_pvphorde_c_01_dwf.m2", }, { - fileId = "139180", - text = "helm_mail_a_01_scm.m2", - value = "helm_mail_a_01_scm.m2", + fileId = "138675", + text = "helm_leather_pvphorde_c_01_dwm.m2", + value = "helm_leather_pvphorde_c_01_dwm.m2", }, { - fileId = "139181", - text = "helm_mail_a_01_taf.m2", - value = "helm_mail_a_01_taf.m2", + fileId = "138676", + text = "helm_leather_pvphorde_c_01_gnf.m2", + value = "helm_leather_pvphorde_c_01_gnf.m2", }, { - fileId = "139182", - text = "helm_mail_a_01_tam.m2", - value = "helm_mail_a_01_tam.m2", + fileId = "138677", + text = "helm_leather_pvphorde_c_01_gnm.m2", + value = "helm_leather_pvphorde_c_01_gnm.m2", }, { - fileId = "139183", - text = "helm_mail_a_01_trf.m2", - value = "helm_mail_a_01_trf.m2", + fileId = "138678", + text = "helm_leather_pvphorde_c_01_gof.m2", + value = "helm_leather_pvphorde_c_01_gof.m2", }, { - fileId = "139184", - text = "helm_mail_a_01_trm.m2", - value = "helm_mail_a_01_trm.m2", + fileId = "138679", + text = "helm_leather_pvphorde_c_01_gom.m2", + value = "helm_leather_pvphorde_c_01_gom.m2", }, { - fileId = "139191", - text = "helm_mail_a_02_bef.m2", - value = "helm_mail_a_02_bef.m2", + fileId = "138680", + text = "helm_leather_pvphorde_c_01_huf.m2", + value = "helm_leather_pvphorde_c_01_huf.m2", }, { - fileId = "139192", - text = "helm_mail_a_02_bem.m2", - value = "helm_mail_a_02_bem.m2", + fileId = "138681", + text = "helm_leather_pvphorde_c_01_hum.m2", + value = "helm_leather_pvphorde_c_01_hum.m2", }, { - fileId = "139193", - text = "helm_mail_a_02_drf.m2", - value = "helm_mail_a_02_drf.m2", + fileId = "138682", + text = "helm_leather_pvphorde_c_01_nif.m2", + value = "helm_leather_pvphorde_c_01_nif.m2", }, { - fileId = "139194", - text = "helm_mail_a_02_drm.m2", - value = "helm_mail_a_02_drm.m2", + fileId = "138683", + text = "helm_leather_pvphorde_c_01_nim.m2", + value = "helm_leather_pvphorde_c_01_nim.m2", }, { - fileId = "139195", - text = "helm_mail_a_02_dwf.m2", - value = "helm_mail_a_02_dwf.m2", + fileId = "138684", + text = "helm_leather_pvphorde_c_01_orf.m2", + value = "helm_leather_pvphorde_c_01_orf.m2", }, { - fileId = "139196", - text = "helm_mail_a_02_dwm.m2", - value = "helm_mail_a_02_dwm.m2", + fileId = "138685", + text = "helm_leather_pvphorde_c_01_orm.m2", + value = "helm_leather_pvphorde_c_01_orm.m2", }, { - fileId = "139197", - text = "helm_mail_a_02_gnf.m2", - value = "helm_mail_a_02_gnf.m2", + fileId = "138686", + text = "helm_leather_pvphorde_c_01_scf.m2", + value = "helm_leather_pvphorde_c_01_scf.m2", }, { - fileId = "139198", - text = "helm_mail_a_02_gnm.m2", - value = "helm_mail_a_02_gnm.m2", + fileId = "138687", + text = "helm_leather_pvphorde_c_01_scm.m2", + value = "helm_leather_pvphorde_c_01_scm.m2", }, { - fileId = "139199", - text = "helm_mail_a_02_gof.m2", - value = "helm_mail_a_02_gof.m2", + fileId = "138688", + text = "helm_leather_pvphorde_c_01_taf.m2", + value = "helm_leather_pvphorde_c_01_taf.m2", }, { - fileId = "139200", - text = "helm_mail_a_02_gom.m2", - value = "helm_mail_a_02_gom.m2", + fileId = "138689", + text = "helm_leather_pvphorde_c_01_tam.m2", + value = "helm_leather_pvphorde_c_01_tam.m2", }, { - fileId = "139201", - text = "helm_mail_a_02_huf.m2", - value = "helm_mail_a_02_huf.m2", + fileId = "138690", + text = "helm_leather_pvphorde_c_01_trf.m2", + value = "helm_leather_pvphorde_c_01_trf.m2", }, { - fileId = "139202", - text = "helm_mail_a_02_hum.m2", - value = "helm_mail_a_02_hum.m2", + fileId = "138691", + text = "helm_leather_pvphorde_c_01_trm.m2", + value = "helm_leather_pvphorde_c_01_trm.m2", }, { - fileId = "139203", - text = "helm_mail_a_02_nif.m2", - value = "helm_mail_a_02_nif.m2", + fileId = "454140", + text = "helm_leather_pvphorde_c_01_wof.m2", + value = "helm_leather_pvphorde_c_01_wof.m2", }, { - fileId = "139204", - text = "helm_mail_a_02_nim.m2", - value = "helm_mail_a_02_nim.m2", + fileId = "436632", + text = "helm_leather_pvphorde_c_01_wom.m2", + value = "helm_leather_pvphorde_c_01_wom.m2", }, { - fileId = "139205", - text = "helm_mail_a_02_orf.m2", - value = "helm_mail_a_02_orf.m2", + fileId = "237909", + text = "helm_leather_pvprogue_b_01_bef.m2", + value = "helm_leather_pvprogue_b_01_bef.m2", }, { - fileId = "139206", - text = "helm_mail_a_02_orm.m2", - value = "helm_mail_a_02_orm.m2", + fileId = "237910", + text = "helm_leather_pvprogue_b_01_bem.m2", + value = "helm_leather_pvprogue_b_01_bem.m2", }, { - fileId = "139207", - text = "helm_mail_a_02_scf.m2", - value = "helm_mail_a_02_scf.m2", + fileId = "237911", + text = "helm_leather_pvprogue_b_01_drf.m2", + value = "helm_leather_pvprogue_b_01_drf.m2", }, { - fileId = "139208", - text = "helm_mail_a_02_scm.m2", - value = "helm_mail_a_02_scm.m2", + fileId = "237912", + text = "helm_leather_pvprogue_b_01_drm.m2", + value = "helm_leather_pvprogue_b_01_drm.m2", }, { - fileId = "139209", - text = "helm_mail_a_02_taf.m2", - value = "helm_mail_a_02_taf.m2", + fileId = "237913", + text = "helm_leather_pvprogue_b_01_dwf.m2", + value = "helm_leather_pvprogue_b_01_dwf.m2", }, { - fileId = "139210", - text = "helm_mail_a_02_tam.m2", - value = "helm_mail_a_02_tam.m2", + fileId = "237914", + text = "helm_leather_pvprogue_b_01_dwm.m2", + value = "helm_leather_pvprogue_b_01_dwm.m2", }, { - fileId = "139211", - text = "helm_mail_a_02_trf.m2", - value = "helm_mail_a_02_trf.m2", + fileId = "237915", + text = "helm_leather_pvprogue_b_01_gnf.m2", + value = "helm_leather_pvprogue_b_01_gnf.m2", }, { - fileId = "139212", - text = "helm_mail_a_02_trm.m2", - value = "helm_mail_a_02_trm.m2", + fileId = "237916", + text = "helm_leather_pvprogue_b_01_gnm.m2", + value = "helm_leather_pvprogue_b_01_gnm.m2", }, { - fileId = "139217", - text = "helm_mail_ahnqiraj_a_01_bef.m2", - value = "helm_mail_ahnqiraj_a_01_bef.m2", + fileId = "237917", + text = "helm_leather_pvprogue_b_01_gof.m2", + value = "helm_leather_pvprogue_b_01_gof.m2", }, { - fileId = "139218", - text = "helm_mail_ahnqiraj_a_01_bem.m2", - value = "helm_mail_ahnqiraj_a_01_bem.m2", + fileId = "237918", + text = "helm_leather_pvprogue_b_01_gom.m2", + value = "helm_leather_pvprogue_b_01_gom.m2", }, { - fileId = "139219", - text = "helm_mail_ahnqiraj_a_01_drf.m2", - value = "helm_mail_ahnqiraj_a_01_drf.m2", + fileId = "237919", + text = "helm_leather_pvprogue_b_01_huf.m2", + value = "helm_leather_pvprogue_b_01_huf.m2", }, { - fileId = "139220", - text = "helm_mail_ahnqiraj_a_01_drm.m2", - value = "helm_mail_ahnqiraj_a_01_drm.m2", + fileId = "237920", + text = "helm_leather_pvprogue_b_01_hum.m2", + value = "helm_leather_pvprogue_b_01_hum.m2", }, { - fileId = "139221", - text = "helm_mail_ahnqiraj_a_01_dwf.m2", - value = "helm_mail_ahnqiraj_a_01_dwf.m2", + fileId = "237921", + text = "helm_leather_pvprogue_b_01_nif.m2", + value = "helm_leather_pvprogue_b_01_nif.m2", }, { - fileId = "139222", - text = "helm_mail_ahnqiraj_a_01_dwm.m2", - value = "helm_mail_ahnqiraj_a_01_dwm.m2", + fileId = "237922", + text = "helm_leather_pvprogue_b_01_nim.m2", + value = "helm_leather_pvprogue_b_01_nim.m2", }, { - fileId = "139223", - text = "helm_mail_ahnqiraj_a_01_gnf.m2", - value = "helm_mail_ahnqiraj_a_01_gnf.m2", + fileId = "237923", + text = "helm_leather_pvprogue_b_01_orf.m2", + value = "helm_leather_pvprogue_b_01_orf.m2", }, { - fileId = "139224", - text = "helm_mail_ahnqiraj_a_01_gnm.m2", - value = "helm_mail_ahnqiraj_a_01_gnm.m2", + fileId = "237924", + text = "helm_leather_pvprogue_b_01_orm.m2", + value = "helm_leather_pvprogue_b_01_orm.m2", }, { - fileId = "139225", - text = "helm_mail_ahnqiraj_a_01_gof.m2", - value = "helm_mail_ahnqiraj_a_01_gof.m2", + fileId = "237925", + text = "helm_leather_pvprogue_b_01_scf.m2", + value = "helm_leather_pvprogue_b_01_scf.m2", }, { - fileId = "139226", - text = "helm_mail_ahnqiraj_a_01_gom.m2", - value = "helm_mail_ahnqiraj_a_01_gom.m2", + fileId = "237926", + text = "helm_leather_pvprogue_b_01_scm.m2", + value = "helm_leather_pvprogue_b_01_scm.m2", }, { - fileId = "139227", - text = "helm_mail_ahnqiraj_a_01_huf.m2", - value = "helm_mail_ahnqiraj_a_01_huf.m2", + fileId = "237927", + text = "helm_leather_pvprogue_b_01_taf.m2", + value = "helm_leather_pvprogue_b_01_taf.m2", }, { - fileId = "139228", - text = "helm_mail_ahnqiraj_a_01_hum.m2", - value = "helm_mail_ahnqiraj_a_01_hum.m2", + fileId = "237928", + text = "helm_leather_pvprogue_b_01_tam.m2", + value = "helm_leather_pvprogue_b_01_tam.m2", }, { - fileId = "139229", - text = "helm_mail_ahnqiraj_a_01_nif.m2", - value = "helm_mail_ahnqiraj_a_01_nif.m2", + fileId = "237929", + text = "helm_leather_pvprogue_b_01_trf.m2", + value = "helm_leather_pvprogue_b_01_trf.m2", }, { - fileId = "139230", - text = "helm_mail_ahnqiraj_a_01_nim.m2", - value = "helm_mail_ahnqiraj_a_01_nim.m2", + fileId = "237930", + text = "helm_leather_pvprogue_b_01_trm.m2", + value = "helm_leather_pvprogue_b_01_trm.m2", }, { - fileId = "139231", - text = "helm_mail_ahnqiraj_a_01_orf.m2", - value = "helm_mail_ahnqiraj_a_01_orf.m2", + fileId = "454141", + text = "helm_leather_pvprogue_b_01_wof.m2", + value = "helm_leather_pvprogue_b_01_wof.m2", }, { - fileId = "139232", - text = "helm_mail_ahnqiraj_a_01_orm.m2", - value = "helm_mail_ahnqiraj_a_01_orm.m2", + fileId = "436633", + text = "helm_leather_pvprogue_b_01_wom.m2", + value = "helm_leather_pvprogue_b_01_wom.m2", }, { - fileId = "139233", - text = "helm_mail_ahnqiraj_a_01_scf.m2", - value = "helm_mail_ahnqiraj_a_01_scf.m2", + fileId = "254583", + text = "helm_leather_pvprogue_b_02_bef.m2", + value = "helm_leather_pvprogue_b_02_bef.m2", }, { - fileId = "139234", - text = "helm_mail_ahnqiraj_a_01_scm.m2", - value = "helm_mail_ahnqiraj_a_01_scm.m2", + fileId = "254584", + text = "helm_leather_pvprogue_b_02_bem.m2", + value = "helm_leather_pvprogue_b_02_bem.m2", }, { - fileId = "139235", - text = "helm_mail_ahnqiraj_a_01_taf.m2", - value = "helm_mail_ahnqiraj_a_01_taf.m2", + fileId = "254585", + text = "helm_leather_pvprogue_b_02_drf.m2", + value = "helm_leather_pvprogue_b_02_drf.m2", }, { - fileId = "139236", - text = "helm_mail_ahnqiraj_a_01_tam.m2", - value = "helm_mail_ahnqiraj_a_01_tam.m2", + fileId = "254586", + text = "helm_leather_pvprogue_b_02_drm.m2", + value = "helm_leather_pvprogue_b_02_drm.m2", }, { - fileId = "139237", - text = "helm_mail_ahnqiraj_a_01_trf.m2", - value = "helm_mail_ahnqiraj_a_01_trf.m2", + fileId = "254587", + text = "helm_leather_pvprogue_b_02_dwf.m2", + value = "helm_leather_pvprogue_b_02_dwf.m2", }, { - fileId = "139238", - text = "helm_mail_ahnqiraj_a_01_trm.m2", - value = "helm_mail_ahnqiraj_a_01_trm.m2", + fileId = "254588", + text = "helm_leather_pvprogue_b_02_dwm.m2", + value = "helm_leather_pvprogue_b_02_dwm.m2", }, { - fileId = "317580", - text = "helm_mail_argentalliance_d_01_bef.m2", - value = "helm_mail_argentalliance_d_01_bef.m2", + fileId = "254589", + text = "helm_leather_pvprogue_b_02_gnf.m2", + value = "helm_leather_pvprogue_b_02_gnf.m2", }, { - fileId = "317581", - text = "helm_mail_argentalliance_d_01_bem.m2", - value = "helm_mail_argentalliance_d_01_bem.m2", + fileId = "254590", + text = "helm_leather_pvprogue_b_02_gnm.m2", + value = "helm_leather_pvprogue_b_02_gnm.m2", }, { - fileId = "317582", - text = "helm_mail_argentalliance_d_01_drf.m2", - value = "helm_mail_argentalliance_d_01_drf.m2", + fileId = "254591", + text = "helm_leather_pvprogue_b_02_gof.m2", + value = "helm_leather_pvprogue_b_02_gof.m2", }, { - fileId = "317583", - text = "helm_mail_argentalliance_d_01_drm.m2", - value = "helm_mail_argentalliance_d_01_drm.m2", - }, + fileId = "254592", + text = "helm_leather_pvprogue_b_02_gom.m2", + value = "helm_leather_pvprogue_b_02_gom.m2", + }, { - fileId = "317584", - text = "helm_mail_argentalliance_d_01_dwf.m2", - value = "helm_mail_argentalliance_d_01_dwf.m2", + fileId = "254593", + text = "helm_leather_pvprogue_b_02_huf.m2", + value = "helm_leather_pvprogue_b_02_huf.m2", }, { - fileId = "317585", - text = "helm_mail_argentalliance_d_01_dwm.m2", - value = "helm_mail_argentalliance_d_01_dwm.m2", + fileId = "254594", + text = "helm_leather_pvprogue_b_02_hum.m2", + value = "helm_leather_pvprogue_b_02_hum.m2", }, { - fileId = "317586", - text = "helm_mail_argentalliance_d_01_gnf.m2", - value = "helm_mail_argentalliance_d_01_gnf.m2", + fileId = "254595", + text = "helm_leather_pvprogue_b_02_nif.m2", + value = "helm_leather_pvprogue_b_02_nif.m2", }, { - fileId = "317587", - text = "helm_mail_argentalliance_d_01_gnm.m2", - value = "helm_mail_argentalliance_d_01_gnm.m2", + fileId = "254596", + text = "helm_leather_pvprogue_b_02_nim.m2", + value = "helm_leather_pvprogue_b_02_nim.m2", }, { - fileId = "317588", - text = "helm_mail_argentalliance_d_01_gof.m2", - value = "helm_mail_argentalliance_d_01_gof.m2", + fileId = "254597", + text = "helm_leather_pvprogue_b_02_orf.m2", + value = "helm_leather_pvprogue_b_02_orf.m2", }, { - fileId = "317589", - text = "helm_mail_argentalliance_d_01_gom.m2", - value = "helm_mail_argentalliance_d_01_gom.m2", + fileId = "254598", + text = "helm_leather_pvprogue_b_02_orm.m2", + value = "helm_leather_pvprogue_b_02_orm.m2", }, { - fileId = "317590", - text = "helm_mail_argentalliance_d_01_huf.m2", - value = "helm_mail_argentalliance_d_01_huf.m2", + fileId = "254599", + text = "helm_leather_pvprogue_b_02_scf.m2", + value = "helm_leather_pvprogue_b_02_scf.m2", }, { - fileId = "317591", - text = "helm_mail_argentalliance_d_01_hum.m2", - value = "helm_mail_argentalliance_d_01_hum.m2", + fileId = "254600", + text = "helm_leather_pvprogue_b_02_scm.m2", + value = "helm_leather_pvprogue_b_02_scm.m2", }, { - fileId = "317592", - text = "helm_mail_argentalliance_d_01_nif.m2", - value = "helm_mail_argentalliance_d_01_nif.m2", + fileId = "254601", + text = "helm_leather_pvprogue_b_02_taf.m2", + value = "helm_leather_pvprogue_b_02_taf.m2", }, { - fileId = "317593", - text = "helm_mail_argentalliance_d_01_nim.m2", - value = "helm_mail_argentalliance_d_01_nim.m2", + fileId = "254602", + text = "helm_leather_pvprogue_b_02_tam.m2", + value = "helm_leather_pvprogue_b_02_tam.m2", }, { - fileId = "317594", - text = "helm_mail_argentalliance_d_01_orf.m2", - value = "helm_mail_argentalliance_d_01_orf.m2", + fileId = "254603", + text = "helm_leather_pvprogue_b_02_trf.m2", + value = "helm_leather_pvprogue_b_02_trf.m2", }, { - fileId = "317595", - text = "helm_mail_argentalliance_d_01_orm.m2", - value = "helm_mail_argentalliance_d_01_orm.m2", + fileId = "254604", + text = "helm_leather_pvprogue_b_02_trm.m2", + value = "helm_leather_pvprogue_b_02_trm.m2", }, { - fileId = "317596", - text = "helm_mail_argentalliance_d_01_scf.m2", - value = "helm_mail_argentalliance_d_01_scf.m2", + fileId = "454142", + text = "helm_leather_pvprogue_b_02_wof.m2", + value = "helm_leather_pvprogue_b_02_wof.m2", }, { - fileId = "317597", - text = "helm_mail_argentalliance_d_01_scm.m2", - value = "helm_mail_argentalliance_d_01_scm.m2", + fileId = "436634", + text = "helm_leather_pvprogue_b_02_wom.m2", + value = "helm_leather_pvprogue_b_02_wom.m2", }, { - fileId = "317598", - text = "helm_mail_argentalliance_d_01_taf.m2", - value = "helm_mail_argentalliance_d_01_taf.m2", + fileId = "304469", + text = "helm_leather_pvprogue_b_03_bef.m2", + value = "helm_leather_pvprogue_b_03_bef.m2", }, { - fileId = "317599", - text = "helm_mail_argentalliance_d_01_tam.m2", - value = "helm_mail_argentalliance_d_01_tam.m2", + fileId = "304470", + text = "helm_leather_pvprogue_b_03_bem.m2", + value = "helm_leather_pvprogue_b_03_bem.m2", }, { - fileId = "317600", - text = "helm_mail_argentalliance_d_01_trf.m2", - value = "helm_mail_argentalliance_d_01_trf.m2", + fileId = "304471", + text = "helm_leather_pvprogue_b_03_drf.m2", + value = "helm_leather_pvprogue_b_03_drf.m2", }, { - fileId = "317601", - text = "helm_mail_argentalliance_d_01_trm.m2", - value = "helm_mail_argentalliance_d_01_trm.m2", + fileId = "304472", + text = "helm_leather_pvprogue_b_03_drm.m2", + value = "helm_leather_pvprogue_b_03_drm.m2", }, { - fileId = "315282", - text = "helm_mail_argenthorde_d_01_bef.m2", - value = "helm_mail_argenthorde_d_01_bef.m2", + fileId = "304473", + text = "helm_leather_pvprogue_b_03_dwf.m2", + value = "helm_leather_pvprogue_b_03_dwf.m2", }, { - fileId = "315283", - text = "helm_mail_argenthorde_d_01_bem.m2", - value = "helm_mail_argenthorde_d_01_bem.m2", + fileId = "304474", + text = "helm_leather_pvprogue_b_03_dwm.m2", + value = "helm_leather_pvprogue_b_03_dwm.m2", }, { - fileId = "315284", - text = "helm_mail_argenthorde_d_01_drf.m2", - value = "helm_mail_argenthorde_d_01_drf.m2", + fileId = "304475", + text = "helm_leather_pvprogue_b_03_gnf.m2", + value = "helm_leather_pvprogue_b_03_gnf.m2", }, { - fileId = "315285", - text = "helm_mail_argenthorde_d_01_drm.m2", - value = "helm_mail_argenthorde_d_01_drm.m2", + fileId = "304476", + text = "helm_leather_pvprogue_b_03_gnm.m2", + value = "helm_leather_pvprogue_b_03_gnm.m2", }, { - fileId = "315286", - text = "helm_mail_argenthorde_d_01_dwf.m2", - value = "helm_mail_argenthorde_d_01_dwf.m2", + fileId = "304477", + text = "helm_leather_pvprogue_b_03_gof.m2", + value = "helm_leather_pvprogue_b_03_gof.m2", }, { - fileId = "315287", - text = "helm_mail_argenthorde_d_01_dwm.m2", - value = "helm_mail_argenthorde_d_01_dwm.m2", + fileId = "304478", + text = "helm_leather_pvprogue_b_03_gom.m2", + value = "helm_leather_pvprogue_b_03_gom.m2", }, { - fileId = "315288", - text = "helm_mail_argenthorde_d_01_gnf.m2", - value = "helm_mail_argenthorde_d_01_gnf.m2", + fileId = "304479", + text = "helm_leather_pvprogue_b_03_huf.m2", + value = "helm_leather_pvprogue_b_03_huf.m2", }, { - fileId = "315289", - text = "helm_mail_argenthorde_d_01_gnm.m2", - value = "helm_mail_argenthorde_d_01_gnm.m2", + fileId = "304480", + text = "helm_leather_pvprogue_b_03_hum.m2", + value = "helm_leather_pvprogue_b_03_hum.m2", }, { - fileId = "315290", - text = "helm_mail_argenthorde_d_01_gof.m2", - value = "helm_mail_argenthorde_d_01_gof.m2", + fileId = "304481", + text = "helm_leather_pvprogue_b_03_nif.m2", + value = "helm_leather_pvprogue_b_03_nif.m2", }, { - fileId = "315291", - text = "helm_mail_argenthorde_d_01_gom.m2", - value = "helm_mail_argenthorde_d_01_gom.m2", + fileId = "304482", + text = "helm_leather_pvprogue_b_03_nim.m2", + value = "helm_leather_pvprogue_b_03_nim.m2", }, { - fileId = "315292", - text = "helm_mail_argenthorde_d_01_huf.m2", - value = "helm_mail_argenthorde_d_01_huf.m2", + fileId = "304483", + text = "helm_leather_pvprogue_b_03_orf.m2", + value = "helm_leather_pvprogue_b_03_orf.m2", }, { - fileId = "315293", - text = "helm_mail_argenthorde_d_01_hum.m2", - value = "helm_mail_argenthorde_d_01_hum.m2", + fileId = "304484", + text = "helm_leather_pvprogue_b_03_orm.m2", + value = "helm_leather_pvprogue_b_03_orm.m2", }, { - fileId = "315294", - text = "helm_mail_argenthorde_d_01_nif.m2", - value = "helm_mail_argenthorde_d_01_nif.m2", + fileId = "304485", + text = "helm_leather_pvprogue_b_03_scf.m2", + value = "helm_leather_pvprogue_b_03_scf.m2", }, { - fileId = "315295", - text = "helm_mail_argenthorde_d_01_nim.m2", - value = "helm_mail_argenthorde_d_01_nim.m2", + fileId = "304486", + text = "helm_leather_pvprogue_b_03_scm.m2", + value = "helm_leather_pvprogue_b_03_scm.m2", }, { - fileId = "315297", - text = "helm_mail_argenthorde_d_01_orf.m2", - value = "helm_mail_argenthorde_d_01_orf.m2", + fileId = "304487", + text = "helm_leather_pvprogue_b_03_taf.m2", + value = "helm_leather_pvprogue_b_03_taf.m2", }, { - fileId = "315298", - text = "helm_mail_argenthorde_d_01_orm.m2", - value = "helm_mail_argenthorde_d_01_orm.m2", + fileId = "304488", + text = "helm_leather_pvprogue_b_03_tam.m2", + value = "helm_leather_pvprogue_b_03_tam.m2", }, { - fileId = "315299", - text = "helm_mail_argenthorde_d_01_scf.m2", - value = "helm_mail_argenthorde_d_01_scf.m2", + fileId = "304489", + text = "helm_leather_pvprogue_b_03_trf.m2", + value = "helm_leather_pvprogue_b_03_trf.m2", }, { - fileId = "315300", - text = "helm_mail_argenthorde_d_01_scm.m2", - value = "helm_mail_argenthorde_d_01_scm.m2", + fileId = "304490", + text = "helm_leather_pvprogue_b_03_trm.m2", + value = "helm_leather_pvprogue_b_03_trm.m2", }, { - fileId = "315301", - text = "helm_mail_argenthorde_d_01_taf.m2", - value = "helm_mail_argenthorde_d_01_taf.m2", + fileId = "454143", + text = "helm_leather_pvprogue_b_03_wof.m2", + value = "helm_leather_pvprogue_b_03_wof.m2", }, { - fileId = "315302", - text = "helm_mail_argenthorde_d_01_tam.m2", - value = "helm_mail_argenthorde_d_01_tam.m2", + fileId = "436635", + text = "helm_leather_pvprogue_b_03_wom.m2", + value = "helm_leather_pvprogue_b_03_wom.m2", }, { - fileId = "315303", - text = "helm_mail_argenthorde_d_01_trf.m2", - value = "helm_mail_argenthorde_d_01_trf.m2", + fileId = "346054", + text = "helm_leather_pvprogue_b_04_bef.m2", + value = "helm_leather_pvprogue_b_04_bef.m2", }, { - fileId = "315304", - text = "helm_mail_argenthorde_d_01_trm.m2", - value = "helm_mail_argenthorde_d_01_trm.m2", + fileId = "346055", + text = "helm_leather_pvprogue_b_04_bem.m2", + value = "helm_leather_pvprogue_b_04_bem.m2", }, { - fileId = "139243", - text = "helm_mail_b_01_bef.m2", - value = "helm_mail_b_01_bef.m2", + fileId = "346056", + text = "helm_leather_pvprogue_b_04_drf.m2", + value = "helm_leather_pvprogue_b_04_drf.m2", }, { - fileId = "139244", - text = "helm_mail_b_01_bem.m2", - value = "helm_mail_b_01_bem.m2", + fileId = "346057", + text = "helm_leather_pvprogue_b_04_drm.m2", + value = "helm_leather_pvprogue_b_04_drm.m2", }, { - fileId = "139245", - text = "helm_mail_b_01_drf.m2", - value = "helm_mail_b_01_drf.m2", + fileId = "346058", + text = "helm_leather_pvprogue_b_04_dwf.m2", + value = "helm_leather_pvprogue_b_04_dwf.m2", }, { - fileId = "139246", - text = "helm_mail_b_01_drm.m2", - value = "helm_mail_b_01_drm.m2", + fileId = "346059", + text = "helm_leather_pvprogue_b_04_dwm.m2", + value = "helm_leather_pvprogue_b_04_dwm.m2", }, { - fileId = "139247", - text = "helm_mail_b_01_dwf.m2", - value = "helm_mail_b_01_dwf.m2", + fileId = "346060", + text = "helm_leather_pvprogue_b_04_gnf.m2", + value = "helm_leather_pvprogue_b_04_gnf.m2", }, { - fileId = "139248", - text = "helm_mail_b_01_dwm.m2", - value = "helm_mail_b_01_dwm.m2", + fileId = "346061", + text = "helm_leather_pvprogue_b_04_gnm.m2", + value = "helm_leather_pvprogue_b_04_gnm.m2", }, { - fileId = "139249", - text = "helm_mail_b_01_gnf.m2", - value = "helm_mail_b_01_gnf.m2", + fileId = "346062", + text = "helm_leather_pvprogue_b_04_gof.m2", + value = "helm_leather_pvprogue_b_04_gof.m2", }, { - fileId = "139250", - text = "helm_mail_b_01_gnm.m2", - value = "helm_mail_b_01_gnm.m2", + fileId = "346063", + text = "helm_leather_pvprogue_b_04_gom.m2", + value = "helm_leather_pvprogue_b_04_gom.m2", }, { - fileId = "139251", - text = "helm_mail_b_01_gof.m2", - value = "helm_mail_b_01_gof.m2", + fileId = "346064", + text = "helm_leather_pvprogue_b_04_huf.m2", + value = "helm_leather_pvprogue_b_04_huf.m2", }, { - fileId = "139252", - text = "helm_mail_b_01_gom.m2", - value = "helm_mail_b_01_gom.m2", + fileId = "346065", + text = "helm_leather_pvprogue_b_04_hum.m2", + value = "helm_leather_pvprogue_b_04_hum.m2", }, { - fileId = "139253", - text = "helm_mail_b_01_huf.m2", - value = "helm_mail_b_01_huf.m2", + fileId = "346066", + text = "helm_leather_pvprogue_b_04_nif.m2", + value = "helm_leather_pvprogue_b_04_nif.m2", }, { - fileId = "139254", - text = "helm_mail_b_01_hum.m2", - value = "helm_mail_b_01_hum.m2", + fileId = "346067", + text = "helm_leather_pvprogue_b_04_nim.m2", + value = "helm_leather_pvprogue_b_04_nim.m2", }, { - fileId = "139255", - text = "helm_mail_b_01_nif.m2", - value = "helm_mail_b_01_nif.m2", + fileId = "346068", + text = "helm_leather_pvprogue_b_04_orf.m2", + value = "helm_leather_pvprogue_b_04_orf.m2", }, { - fileId = "139256", - text = "helm_mail_b_01_nim.m2", - value = "helm_mail_b_01_nim.m2", + fileId = "346069", + text = "helm_leather_pvprogue_b_04_orm.m2", + value = "helm_leather_pvprogue_b_04_orm.m2", }, { - fileId = "139257", - text = "helm_mail_b_01_orf.m2", - value = "helm_mail_b_01_orf.m2", + fileId = "346070", + text = "helm_leather_pvprogue_b_04_scf.m2", + value = "helm_leather_pvprogue_b_04_scf.m2", }, { - fileId = "139258", - text = "helm_mail_b_01_orm.m2", - value = "helm_mail_b_01_orm.m2", + fileId = "346071", + text = "helm_leather_pvprogue_b_04_scm.m2", + value = "helm_leather_pvprogue_b_04_scm.m2", }, { - fileId = "139259", - text = "helm_mail_b_01_scf.m2", - value = "helm_mail_b_01_scf.m2", + fileId = "346072", + text = "helm_leather_pvprogue_b_04_taf.m2", + value = "helm_leather_pvprogue_b_04_taf.m2", }, { - fileId = "139260", - text = "helm_mail_b_01_scm.m2", - value = "helm_mail_b_01_scm.m2", + fileId = "346073", + text = "helm_leather_pvprogue_b_04_tam.m2", + value = "helm_leather_pvprogue_b_04_tam.m2", }, { - fileId = "139261", - text = "helm_mail_b_01_taf.m2", - value = "helm_mail_b_01_taf.m2", + fileId = "346074", + text = "helm_leather_pvprogue_b_04_trf.m2", + value = "helm_leather_pvprogue_b_04_trf.m2", }, { - fileId = "139262", - text = "helm_mail_b_01_tam.m2", - value = "helm_mail_b_01_tam.m2", + fileId = "346075", + text = "helm_leather_pvprogue_b_04_trm.m2", + value = "helm_leather_pvprogue_b_04_trm.m2", }, { - fileId = "139263", - text = "helm_mail_b_01_trf.m2", - value = "helm_mail_b_01_trf.m2", + fileId = "454144", + text = "helm_leather_pvprogue_b_04_wof.m2", + value = "helm_leather_pvprogue_b_04_wof.m2", }, { - fileId = "139264", - text = "helm_mail_b_01_trm.m2", - value = "helm_mail_b_01_trm.m2", + fileId = "436636", + text = "helm_leather_pvprogue_b_04_wom.m2", + value = "helm_leather_pvprogue_b_04_wom.m2", }, { - fileId = "139265", - text = "helm_mail_c_01_bem.m2", - value = "helm_mail_c_01_bem.m2", + fileId = "368870", + text = "helm_leather_pvprogue_c_01_bef.m2", + value = "helm_leather_pvprogue_c_01_bef.m2", }, { - fileId = "139266", - text = "helm_mail_c_01_drm.m2", - value = "helm_mail_c_01_drm.m2", + fileId = "368871", + text = "helm_leather_pvprogue_c_01_bem.m2", + value = "helm_leather_pvprogue_c_01_bem.m2", }, { - fileId = "139267", - text = "helm_mail_c_01_gof.m2", - value = "helm_mail_c_01_gof.m2", + fileId = "368872", + text = "helm_leather_pvprogue_c_01_drf.m2", + value = "helm_leather_pvprogue_c_01_drf.m2", }, { - fileId = "139268", - text = "helm_mail_c_02_bef.m2", - value = "helm_mail_c_02_bef.m2", + fileId = "368873", + text = "helm_leather_pvprogue_c_01_drm.m2", + value = "helm_leather_pvprogue_c_01_drm.m2", }, { - fileId = "139269", - text = "helm_mail_c_02_bem.m2", - value = "helm_mail_c_02_bem.m2", + fileId = "368874", + text = "helm_leather_pvprogue_c_01_dwf.m2", + value = "helm_leather_pvprogue_c_01_dwf.m2", }, { - fileId = "139270", - text = "helm_mail_c_02_drf.m2", - value = "helm_mail_c_02_drf.m2", + fileId = "368875", + text = "helm_leather_pvprogue_c_01_dwm.m2", + value = "helm_leather_pvprogue_c_01_dwm.m2", }, { - fileId = "139271", - text = "helm_mail_c_02_drm.m2", - value = "helm_mail_c_02_drm.m2", + fileId = "368876", + text = "helm_leather_pvprogue_c_01_gnf.m2", + value = "helm_leather_pvprogue_c_01_gnf.m2", }, { - fileId = "139272", - text = "helm_mail_c_02_dwf.m2", - value = "helm_mail_c_02_dwf.m2", + fileId = "368877", + text = "helm_leather_pvprogue_c_01_gnm.m2", + value = "helm_leather_pvprogue_c_01_gnm.m2", }, { - fileId = "139273", - text = "helm_mail_c_02_dwm.m2", - value = "helm_mail_c_02_dwm.m2", + fileId = "368878", + text = "helm_leather_pvprogue_c_01_gof.m2", + value = "helm_leather_pvprogue_c_01_gof.m2", }, { - fileId = "139274", - text = "helm_mail_c_02_gnf.m2", - value = "helm_mail_c_02_gnf.m2", + fileId = "368879", + text = "helm_leather_pvprogue_c_01_gom.m2", + value = "helm_leather_pvprogue_c_01_gom.m2", }, { - fileId = "139275", - text = "helm_mail_c_02_gnm.m2", - value = "helm_mail_c_02_gnm.m2", + fileId = "368880", + text = "helm_leather_pvprogue_c_01_huf.m2", + value = "helm_leather_pvprogue_c_01_huf.m2", }, { - fileId = "139276", - text = "helm_mail_c_02_gof.m2", - value = "helm_mail_c_02_gof.m2", + fileId = "368881", + text = "helm_leather_pvprogue_c_01_hum.m2", + value = "helm_leather_pvprogue_c_01_hum.m2", }, { - fileId = "139277", - text = "helm_mail_c_02_huf.m2", - value = "helm_mail_c_02_huf.m2", + fileId = "368882", + text = "helm_leather_pvprogue_c_01_nif.m2", + value = "helm_leather_pvprogue_c_01_nif.m2", }, { - fileId = "139278", - text = "helm_mail_c_02_hum.m2", - value = "helm_mail_c_02_hum.m2", + fileId = "368883", + text = "helm_leather_pvprogue_c_01_nim.m2", + value = "helm_leather_pvprogue_c_01_nim.m2", }, { - fileId = "139279", - text = "helm_mail_c_02_nif.m2", - value = "helm_mail_c_02_nif.m2", + fileId = "368884", + text = "helm_leather_pvprogue_c_01_orf.m2", + value = "helm_leather_pvprogue_c_01_orf.m2", }, { - fileId = "139280", - text = "helm_mail_c_02_nim.m2", - value = "helm_mail_c_02_nim.m2", + fileId = "368885", + text = "helm_leather_pvprogue_c_01_orm.m2", + value = "helm_leather_pvprogue_c_01_orm.m2", }, { - fileId = "139281", - text = "helm_mail_c_02_orf.m2", - value = "helm_mail_c_02_orf.m2", + fileId = "368886", + text = "helm_leather_pvprogue_c_01_scf.m2", + value = "helm_leather_pvprogue_c_01_scf.m2", }, { - fileId = "139282", - text = "helm_mail_c_02_orm.m2", - value = "helm_mail_c_02_orm.m2", + fileId = "368887", + text = "helm_leather_pvprogue_c_01_scm.m2", + value = "helm_leather_pvprogue_c_01_scm.m2", }, { - fileId = "139283", - text = "helm_mail_c_02_scf.m2", - value = "helm_mail_c_02_scf.m2", + fileId = "368888", + text = "helm_leather_pvprogue_c_01_taf.m2", + value = "helm_leather_pvprogue_c_01_taf.m2", }, { - fileId = "139284", - text = "helm_mail_c_02_scm.m2", - value = "helm_mail_c_02_scm.m2", + fileId = "368889", + text = "helm_leather_pvprogue_c_01_tam.m2", + value = "helm_leather_pvprogue_c_01_tam.m2", }, { - fileId = "139285", - text = "helm_mail_c_02_taf.m2", - value = "helm_mail_c_02_taf.m2", + fileId = "368890", + text = "helm_leather_pvprogue_c_01_trf.m2", + value = "helm_leather_pvprogue_c_01_trf.m2", }, { - fileId = "139286", - text = "helm_mail_c_02_tam.m2", - value = "helm_mail_c_02_tam.m2", + fileId = "468512", + text = "helm_leather_pvprogue_c_01_trm.m2", + value = "helm_leather_pvprogue_c_01_trm.m2", }, { - fileId = "139287", - text = "helm_mail_c_02_trf.m2", - value = "helm_mail_c_02_trf.m2", + fileId = "454145", + text = "helm_leather_pvprogue_c_01_wof.m2", + value = "helm_leather_pvprogue_c_01_wof.m2", }, { - fileId = "139288", - text = "helm_mail_c_02_trm.m2", - value = "helm_mail_c_02_trm.m2", + fileId = "436637", + text = "helm_leather_pvprogue_c_01_wom.m2", + value = "helm_leather_pvprogue_c_01_wom.m2", }, { - fileId = "139293", - text = "helm_mail_d_01_bef.m2", - value = "helm_mail_d_01_bef.m2", + fileId = "469526", + text = "helm_leather_pvprogue_c_02_bef.m2", + value = "helm_leather_pvprogue_c_02_bef.m2", }, { - fileId = "139294", - text = "helm_mail_d_01_bem.m2", - value = "helm_mail_d_01_bem.m2", + fileId = "469527", + text = "helm_leather_pvprogue_c_02_bem.m2", + value = "helm_leather_pvprogue_c_02_bem.m2", }, { - fileId = "139295", - text = "helm_mail_d_01_drf.m2", - value = "helm_mail_d_01_drf.m2", + fileId = "469528", + text = "helm_leather_pvprogue_c_02_drf.m2", + value = "helm_leather_pvprogue_c_02_drf.m2", }, { - fileId = "139296", - text = "helm_mail_d_01_drm.m2", - value = "helm_mail_d_01_drm.m2", + fileId = "469529", + text = "helm_leather_pvprogue_c_02_drm.m2", + value = "helm_leather_pvprogue_c_02_drm.m2", }, { - fileId = "139297", - text = "helm_mail_d_01_dwf.m2", - value = "helm_mail_d_01_dwf.m2", + fileId = "469530", + text = "helm_leather_pvprogue_c_02_dwf.m2", + value = "helm_leather_pvprogue_c_02_dwf.m2", }, { - fileId = "139298", - text = "helm_mail_d_01_dwm.m2", - value = "helm_mail_d_01_dwm.m2", + fileId = "469531", + text = "helm_leather_pvprogue_c_02_dwm.m2", + value = "helm_leather_pvprogue_c_02_dwm.m2", }, { - fileId = "139299", - text = "helm_mail_d_01_gnf.m2", - value = "helm_mail_d_01_gnf.m2", + fileId = "469532", + text = "helm_leather_pvprogue_c_02_gnf.m2", + value = "helm_leather_pvprogue_c_02_gnf.m2", }, { - fileId = "139300", - text = "helm_mail_d_01_gnm.m2", - value = "helm_mail_d_01_gnm.m2", + fileId = "469533", + text = "helm_leather_pvprogue_c_02_gnm.m2", + value = "helm_leather_pvprogue_c_02_gnm.m2", }, { - fileId = "139301", - text = "helm_mail_d_01_gof.m2", - value = "helm_mail_d_01_gof.m2", + fileId = "469534", + text = "helm_leather_pvprogue_c_02_gof.m2", + value = "helm_leather_pvprogue_c_02_gof.m2", }, { - fileId = "139302", - text = "helm_mail_d_01_gom.m2", - value = "helm_mail_d_01_gom.m2", + fileId = "469535", + text = "helm_leather_pvprogue_c_02_gom.m2", + value = "helm_leather_pvprogue_c_02_gom.m2", }, { - fileId = "139303", - text = "helm_mail_d_01_huf.m2", - value = "helm_mail_d_01_huf.m2", + fileId = "469536", + text = "helm_leather_pvprogue_c_02_huf.m2", + value = "helm_leather_pvprogue_c_02_huf.m2", }, { - fileId = "139304", - text = "helm_mail_d_01_hum.m2", - value = "helm_mail_d_01_hum.m2", + fileId = "469537", + text = "helm_leather_pvprogue_c_02_hum.m2", + value = "helm_leather_pvprogue_c_02_hum.m2", }, { - fileId = "139305", - text = "helm_mail_d_01_nif.m2", - value = "helm_mail_d_01_nif.m2", + fileId = "469538", + text = "helm_leather_pvprogue_c_02_nif.m2", + value = "helm_leather_pvprogue_c_02_nif.m2", }, { - fileId = "139306", - text = "helm_mail_d_01_nim.m2", - value = "helm_mail_d_01_nim.m2", + fileId = "469539", + text = "helm_leather_pvprogue_c_02_nim.m2", + value = "helm_leather_pvprogue_c_02_nim.m2", }, { - fileId = "139307", - text = "helm_mail_d_01_orf.m2", - value = "helm_mail_d_01_orf.m2", + fileId = "469540", + text = "helm_leather_pvprogue_c_02_orf.m2", + value = "helm_leather_pvprogue_c_02_orf.m2", }, { - fileId = "139308", - text = "helm_mail_d_01_orm.m2", - value = "helm_mail_d_01_orm.m2", + fileId = "469541", + text = "helm_leather_pvprogue_c_02_orm.m2", + value = "helm_leather_pvprogue_c_02_orm.m2", }, { - fileId = "139309", - text = "helm_mail_d_01_scf.m2", - value = "helm_mail_d_01_scf.m2", + fileId = "469542", + text = "helm_leather_pvprogue_c_02_scf.m2", + value = "helm_leather_pvprogue_c_02_scf.m2", }, { - fileId = "139310", - text = "helm_mail_d_01_scm.m2", - value = "helm_mail_d_01_scm.m2", + fileId = "469543", + text = "helm_leather_pvprogue_c_02_scm.m2", + value = "helm_leather_pvprogue_c_02_scm.m2", }, { - fileId = "139311", - text = "helm_mail_d_01_taf.m2", - value = "helm_mail_d_01_taf.m2", + fileId = "469544", + text = "helm_leather_pvprogue_c_02_taf.m2", + value = "helm_leather_pvprogue_c_02_taf.m2", }, { - fileId = "139312", - text = "helm_mail_d_01_tam.m2", - value = "helm_mail_d_01_tam.m2", + fileId = "469545", + text = "helm_leather_pvprogue_c_02_tam.m2", + value = "helm_leather_pvprogue_c_02_tam.m2", }, { - fileId = "139313", - text = "helm_mail_d_01_trf.m2", - value = "helm_mail_d_01_trf.m2", + fileId = "469546", + text = "helm_leather_pvprogue_c_02_trf.m2", + value = "helm_leather_pvprogue_c_02_trf.m2", }, { - fileId = "139314", - text = "helm_mail_d_01_trm.m2", - value = "helm_mail_d_01_trm.m2", + fileId = "469547", + text = "helm_leather_pvprogue_c_02_trm.m2", + value = "helm_leather_pvprogue_c_02_trm.m2", }, { - fileId = "139321", - text = "helm_mail_dungeonhunter_a_01_bef.m2", - value = "helm_mail_dungeonhunter_a_01_bef.m2", + fileId = "469548", + text = "helm_leather_pvprogue_c_02_wof.m2", + value = "helm_leather_pvprogue_c_02_wof.m2", }, { - fileId = "139322", - text = "helm_mail_dungeonhunter_a_01_bem.m2", - value = "helm_mail_dungeonhunter_a_01_bem.m2", + fileId = "469549", + text = "helm_leather_pvprogue_c_02_wom.m2", + value = "helm_leather_pvprogue_c_02_wom.m2", }, { - fileId = "139323", - text = "helm_mail_dungeonhunter_a_01_drf.m2", - value = "helm_mail_dungeonhunter_a_01_drf.m2", + fileId = "535836", + text = "helm_leather_pvprogue_d_01_bef.m2", + value = "helm_leather_pvprogue_d_01_bef.m2", }, { - fileId = "139324", - text = "helm_mail_dungeonhunter_a_01_drm.m2", - value = "helm_mail_dungeonhunter_a_01_drm.m2", + fileId = "535838", + text = "helm_leather_pvprogue_d_01_bem.m2", + value = "helm_leather_pvprogue_d_01_bem.m2", }, { - fileId = "139325", - text = "helm_mail_dungeonhunter_a_01_dwf.m2", - value = "helm_mail_dungeonhunter_a_01_dwf.m2", + fileId = "535840", + text = "helm_leather_pvprogue_d_01_drf.m2", + value = "helm_leather_pvprogue_d_01_drf.m2", }, { - fileId = "139326", - text = "helm_mail_dungeonhunter_a_01_dwm.m2", - value = "helm_mail_dungeonhunter_a_01_dwm.m2", + fileId = "535842", + text = "helm_leather_pvprogue_d_01_drm.m2", + value = "helm_leather_pvprogue_d_01_drm.m2", }, { - fileId = "139327", - text = "helm_mail_dungeonhunter_a_01_gnf.m2", - value = "helm_mail_dungeonhunter_a_01_gnf.m2", + fileId = "535844", + text = "helm_leather_pvprogue_d_01_dwf.m2", + value = "helm_leather_pvprogue_d_01_dwf.m2", }, { - fileId = "139328", - text = "helm_mail_dungeonhunter_a_01_gnm.m2", - value = "helm_mail_dungeonhunter_a_01_gnm.m2", + fileId = "535846", + text = "helm_leather_pvprogue_d_01_dwm.m2", + value = "helm_leather_pvprogue_d_01_dwm.m2", }, { - fileId = "139329", - text = "helm_mail_dungeonhunter_a_01_gof.m2", - value = "helm_mail_dungeonhunter_a_01_gof.m2", + fileId = "535848", + text = "helm_leather_pvprogue_d_01_gnf.m2", + value = "helm_leather_pvprogue_d_01_gnf.m2", }, { - fileId = "139330", - text = "helm_mail_dungeonhunter_a_01_huf.m2", - value = "helm_mail_dungeonhunter_a_01_huf.m2", + fileId = "535850", + text = "helm_leather_pvprogue_d_01_gnm.m2", + value = "helm_leather_pvprogue_d_01_gnm.m2", }, { - fileId = "139331", - text = "helm_mail_dungeonhunter_a_01_hum.m2", - value = "helm_mail_dungeonhunter_a_01_hum.m2", + fileId = "535852", + text = "helm_leather_pvprogue_d_01_gof.m2", + value = "helm_leather_pvprogue_d_01_gof.m2", }, { - fileId = "139332", - text = "helm_mail_dungeonhunter_a_01_nif.m2", - value = "helm_mail_dungeonhunter_a_01_nif.m2", + fileId = "535854", + text = "helm_leather_pvprogue_d_01_gom.m2", + value = "helm_leather_pvprogue_d_01_gom.m2", }, { - fileId = "139333", - text = "helm_mail_dungeonhunter_a_01_nim.m2", - value = "helm_mail_dungeonhunter_a_01_nim.m2", + fileId = "535856", + text = "helm_leather_pvprogue_d_01_huf.m2", + value = "helm_leather_pvprogue_d_01_huf.m2", }, { - fileId = "139334", - text = "helm_mail_dungeonhunter_a_01_orf.m2", - value = "helm_mail_dungeonhunter_a_01_orf.m2", + fileId = "535858", + text = "helm_leather_pvprogue_d_01_hum.m2", + value = "helm_leather_pvprogue_d_01_hum.m2", }, { - fileId = "139335", - text = "helm_mail_dungeonhunter_a_01_orm.m2", - value = "helm_mail_dungeonhunter_a_01_orm.m2", + fileId = "535860", + text = "helm_leather_pvprogue_d_01_nif.m2", + value = "helm_leather_pvprogue_d_01_nif.m2", }, { - fileId = "139336", - text = "helm_mail_dungeonhunter_a_01_scf.m2", - value = "helm_mail_dungeonhunter_a_01_scf.m2", + fileId = "535862", + text = "helm_leather_pvprogue_d_01_nim.m2", + value = "helm_leather_pvprogue_d_01_nim.m2", }, { - fileId = "139337", - text = "helm_mail_dungeonhunter_a_01_scm.m2", - value = "helm_mail_dungeonhunter_a_01_scm.m2", + fileId = "535864", + text = "helm_leather_pvprogue_d_01_orf.m2", + value = "helm_leather_pvprogue_d_01_orf.m2", }, { - fileId = "139338", - text = "helm_mail_dungeonhunter_a_01_taf.m2", - value = "helm_mail_dungeonhunter_a_01_taf.m2", + fileId = "535866", + text = "helm_leather_pvprogue_d_01_orm.m2", + value = "helm_leather_pvprogue_d_01_orm.m2", }, { - fileId = "139339", - text = "helm_mail_dungeonhunter_a_01_tam.m2", - value = "helm_mail_dungeonhunter_a_01_tam.m2", + fileId = "535868", + text = "helm_leather_pvprogue_d_01_scf.m2", + value = "helm_leather_pvprogue_d_01_scf.m2", }, { - fileId = "139340", - text = "helm_mail_dungeonhunter_a_01_trf.m2", - value = "helm_mail_dungeonhunter_a_01_trf.m2", + fileId = "535870", + text = "helm_leather_pvprogue_d_01_scm.m2", + value = "helm_leather_pvprogue_d_01_scm.m2", }, { - fileId = "139341", - text = "helm_mail_dungeonhunter_a_01_trm.m2", - value = "helm_mail_dungeonhunter_a_01_trm.m2", + fileId = "535872", + text = "helm_leather_pvprogue_d_01_taf.m2", + value = "helm_leather_pvprogue_d_01_taf.m2", }, { - fileId = "139346", - text = "helm_mail_dungeonhunter_b_02_bef.m2", - value = "helm_mail_dungeonhunter_b_02_bef.m2", + fileId = "535874", + text = "helm_leather_pvprogue_d_01_tam.m2", + value = "helm_leather_pvprogue_d_01_tam.m2", }, { - fileId = "139347", - text = "helm_mail_dungeonhunter_b_02_bem.m2", - value = "helm_mail_dungeonhunter_b_02_bem.m2", + fileId = "535876", + text = "helm_leather_pvprogue_d_01_trf.m2", + value = "helm_leather_pvprogue_d_01_trf.m2", }, { - fileId = "139348", - text = "helm_mail_dungeonhunter_b_02_drf.m2", - value = "helm_mail_dungeonhunter_b_02_drf.m2", + fileId = "535878", + text = "helm_leather_pvprogue_d_01_trm.m2", + value = "helm_leather_pvprogue_d_01_trm.m2", }, { - fileId = "139349", - text = "helm_mail_dungeonhunter_b_02_drm.m2", - value = "helm_mail_dungeonhunter_b_02_drm.m2", + fileId = "535880", + text = "helm_leather_pvprogue_d_01_wof.m2", + value = "helm_leather_pvprogue_d_01_wof.m2", }, { - fileId = "139350", - text = "helm_mail_dungeonhunter_b_02_dwf.m2", - value = "helm_mail_dungeonhunter_b_02_dwf.m2", + fileId = "535882", + text = "helm_leather_pvprogue_d_01_wom.m2", + value = "helm_leather_pvprogue_d_01_wom.m2", }, { - fileId = "139351", - text = "helm_mail_dungeonhunter_b_02_dwm.m2", - value = "helm_mail_dungeonhunter_b_02_dwm.m2", + fileId = "138695", + text = "helm_leather_raiddruid_a_01_bef.m2", + value = "helm_leather_raiddruid_a_01_bef.m2", }, { - fileId = "139352", - text = "helm_mail_dungeonhunter_b_02_gnf.m2", - value = "helm_mail_dungeonhunter_b_02_gnf.m2", + fileId = "138696", + text = "helm_leather_raiddruid_a_01_bem.m2", + value = "helm_leather_raiddruid_a_01_bem.m2", }, { - fileId = "139353", - text = "helm_mail_dungeonhunter_b_02_gnm.m2", - value = "helm_mail_dungeonhunter_b_02_gnm.m2", + fileId = "138697", + text = "helm_leather_raiddruid_a_01_drf.m2", + value = "helm_leather_raiddruid_a_01_drf.m2", }, { - fileId = "139354", - text = "helm_mail_dungeonhunter_b_02_gof.m2", - value = "helm_mail_dungeonhunter_b_02_gof.m2", + fileId = "138698", + text = "helm_leather_raiddruid_a_01_drm.m2", + value = "helm_leather_raiddruid_a_01_drm.m2", }, { - fileId = "139355", - text = "helm_mail_dungeonhunter_b_02_gom.m2", - value = "helm_mail_dungeonhunter_b_02_gom.m2", + fileId = "138699", + text = "helm_leather_raiddruid_a_01_dwf.m2", + value = "helm_leather_raiddruid_a_01_dwf.m2", }, { - fileId = "139356", - text = "helm_mail_dungeonhunter_b_02_huf.m2", - value = "helm_mail_dungeonhunter_b_02_huf.m2", + fileId = "138700", + text = "helm_leather_raiddruid_a_01_dwm.m2", + value = "helm_leather_raiddruid_a_01_dwm.m2", }, { - fileId = "139357", - text = "helm_mail_dungeonhunter_b_02_hum.m2", - value = "helm_mail_dungeonhunter_b_02_hum.m2", + fileId = "138701", + text = "helm_leather_raiddruid_a_01_gnf.m2", + value = "helm_leather_raiddruid_a_01_gnf.m2", }, { - fileId = "139358", - text = "helm_mail_dungeonhunter_b_02_nif.m2", - value = "helm_mail_dungeonhunter_b_02_nif.m2", + fileId = "138702", + text = "helm_leather_raiddruid_a_01_gnm.m2", + value = "helm_leather_raiddruid_a_01_gnm.m2", }, { - fileId = "139359", - text = "helm_mail_dungeonhunter_b_02_nim.m2", - value = "helm_mail_dungeonhunter_b_02_nim.m2", + fileId = "138703", + text = "helm_leather_raiddruid_a_01_gof.m2", + value = "helm_leather_raiddruid_a_01_gof.m2", }, { - fileId = "139360", - text = "helm_mail_dungeonhunter_b_02_orf.m2", - value = "helm_mail_dungeonhunter_b_02_orf.m2", + fileId = "409938", + text = "helm_leather_raiddruid_a_01_gom.m2", + value = "helm_leather_raiddruid_a_01_gom.m2", }, { - fileId = "139361", - text = "helm_mail_dungeonhunter_b_02_orm.m2", - value = "helm_mail_dungeonhunter_b_02_orm.m2", + fileId = "138704", + text = "helm_leather_raiddruid_a_01_huf.m2", + value = "helm_leather_raiddruid_a_01_huf.m2", }, { - fileId = "139362", - text = "helm_mail_dungeonhunter_b_02_scf.m2", - value = "helm_mail_dungeonhunter_b_02_scf.m2", + fileId = "138705", + text = "helm_leather_raiddruid_a_01_hum.m2", + value = "helm_leather_raiddruid_a_01_hum.m2", }, { - fileId = "139363", - text = "helm_mail_dungeonhunter_b_02_scm.m2", - value = "helm_mail_dungeonhunter_b_02_scm.m2", + fileId = "138706", + text = "helm_leather_raiddruid_a_01_nif.m2", + value = "helm_leather_raiddruid_a_01_nif.m2", }, { - fileId = "139364", - text = "helm_mail_dungeonhunter_b_02_taf.m2", - value = "helm_mail_dungeonhunter_b_02_taf.m2", + fileId = "138707", + text = "helm_leather_raiddruid_a_01_nim.m2", + value = "helm_leather_raiddruid_a_01_nim.m2", }, { - fileId = "139365", - text = "helm_mail_dungeonhunter_b_02_tam.m2", - value = "helm_mail_dungeonhunter_b_02_tam.m2", + fileId = "138708", + text = "helm_leather_raiddruid_a_01_orf.m2", + value = "helm_leather_raiddruid_a_01_orf.m2", }, { - fileId = "139366", - text = "helm_mail_dungeonhunter_b_02_trf.m2", - value = "helm_mail_dungeonhunter_b_02_trf.m2", + fileId = "138709", + text = "helm_leather_raiddruid_a_01_orm.m2", + value = "helm_leather_raiddruid_a_01_orm.m2", }, { - fileId = "139367", - text = "helm_mail_dungeonhunter_b_02_trm.m2", - value = "helm_mail_dungeonhunter_b_02_trm.m2", + fileId = "138710", + text = "helm_leather_raiddruid_a_01_scf.m2", + value = "helm_leather_raiddruid_a_01_scf.m2", }, { - fileId = "237950", - text = "helm_mail_dungeonmail_c_01_bef.m2", - value = "helm_mail_dungeonmail_c_01_bef.m2", + fileId = "138711", + text = "helm_leather_raiddruid_a_01_scm.m2", + value = "helm_leather_raiddruid_a_01_scm.m2", }, { - fileId = "237951", - text = "helm_mail_dungeonmail_c_01_bem.m2", - value = "helm_mail_dungeonmail_c_01_bem.m2", + fileId = "138712", + text = "helm_leather_raiddruid_a_01_taf.m2", + value = "helm_leather_raiddruid_a_01_taf.m2", }, { - fileId = "237952", - text = "helm_mail_dungeonmail_c_01_drf.m2", - value = "helm_mail_dungeonmail_c_01_drf.m2", + fileId = "138713", + text = "helm_leather_raiddruid_a_01_tam.m2", + value = "helm_leather_raiddruid_a_01_tam.m2", }, { - fileId = "237953", - text = "helm_mail_dungeonmail_c_01_drm.m2", - value = "helm_mail_dungeonmail_c_01_drm.m2", + fileId = "138714", + text = "helm_leather_raiddruid_a_01_trf.m2", + value = "helm_leather_raiddruid_a_01_trf.m2", }, { - fileId = "237954", - text = "helm_mail_dungeonmail_c_01_dwf.m2", - value = "helm_mail_dungeonmail_c_01_dwf.m2", + fileId = "138715", + text = "helm_leather_raiddruid_a_01_trm.m2", + value = "helm_leather_raiddruid_a_01_trm.m2", }, { - fileId = "237955", - text = "helm_mail_dungeonmail_c_01_dwm.m2", - value = "helm_mail_dungeonmail_c_01_dwm.m2", + fileId = "454146", + text = "helm_leather_raiddruid_a_01_wof.m2", + value = "helm_leather_raiddruid_a_01_wof.m2", }, { - fileId = "237956", - text = "helm_mail_dungeonmail_c_01_gnf.m2", - value = "helm_mail_dungeonmail_c_01_gnf.m2", + fileId = "438763", + text = "helm_leather_raiddruid_a_01_wom.m2", + value = "helm_leather_raiddruid_a_01_wom.m2", }, { - fileId = "237957", - text = "helm_mail_dungeonmail_c_01_gnm.m2", - value = "helm_mail_dungeonmail_c_01_gnm.m2", + fileId = "138720", + text = "helm_leather_raiddruid_b_01_bef.m2", + value = "helm_leather_raiddruid_b_01_bef.m2", }, { - fileId = "237958", - text = "helm_mail_dungeonmail_c_01_gof.m2", - value = "helm_mail_dungeonmail_c_01_gof.m2", + fileId = "138721", + text = "helm_leather_raiddruid_b_01_bem.m2", + value = "helm_leather_raiddruid_b_01_bem.m2", }, { - fileId = "237959", - text = "helm_mail_dungeonmail_c_01_gom.m2", - value = "helm_mail_dungeonmail_c_01_gom.m2", + fileId = "138722", + text = "helm_leather_raiddruid_b_01_drf.m2", + value = "helm_leather_raiddruid_b_01_drf.m2", }, { - fileId = "237960", - text = "helm_mail_dungeonmail_c_01_huf.m2", - value = "helm_mail_dungeonmail_c_01_huf.m2", + fileId = "138723", + text = "helm_leather_raiddruid_b_01_drm.m2", + value = "helm_leather_raiddruid_b_01_drm.m2", }, { - fileId = "237961", - text = "helm_mail_dungeonmail_c_01_hum.m2", - value = "helm_mail_dungeonmail_c_01_hum.m2", + fileId = "138724", + text = "helm_leather_raiddruid_b_01_dwf.m2", + value = "helm_leather_raiddruid_b_01_dwf.m2", }, { - fileId = "237962", - text = "helm_mail_dungeonmail_c_01_nif.m2", - value = "helm_mail_dungeonmail_c_01_nif.m2", + fileId = "138725", + text = "helm_leather_raiddruid_b_01_dwm.m2", + value = "helm_leather_raiddruid_b_01_dwm.m2", }, { - fileId = "237963", - text = "helm_mail_dungeonmail_c_01_nim.m2", - value = "helm_mail_dungeonmail_c_01_nim.m2", + fileId = "138726", + text = "helm_leather_raiddruid_b_01_gnf.m2", + value = "helm_leather_raiddruid_b_01_gnf.m2", }, { - fileId = "237964", - text = "helm_mail_dungeonmail_c_01_orf.m2", - value = "helm_mail_dungeonmail_c_01_orf.m2", + fileId = "138727", + text = "helm_leather_raiddruid_b_01_gnm.m2", + value = "helm_leather_raiddruid_b_01_gnm.m2", }, { - fileId = "237965", - text = "helm_mail_dungeonmail_c_01_orm.m2", - value = "helm_mail_dungeonmail_c_01_orm.m2", + fileId = "138728", + text = "helm_leather_raiddruid_b_01_gof.m2", + value = "helm_leather_raiddruid_b_01_gof.m2", }, { - fileId = "237966", - text = "helm_mail_dungeonmail_c_01_scf.m2", - value = "helm_mail_dungeonmail_c_01_scf.m2", + fileId = "138729", + text = "helm_leather_raiddruid_b_01_gom.m2", + value = "helm_leather_raiddruid_b_01_gom.m2", }, { - fileId = "237967", - text = "helm_mail_dungeonmail_c_01_scm.m2", - value = "helm_mail_dungeonmail_c_01_scm.m2", + fileId = "138730", + text = "helm_leather_raiddruid_b_01_huf.m2", + value = "helm_leather_raiddruid_b_01_huf.m2", }, { - fileId = "237968", - text = "helm_mail_dungeonmail_c_01_taf.m2", - value = "helm_mail_dungeonmail_c_01_taf.m2", + fileId = "138731", + text = "helm_leather_raiddruid_b_01_hum.m2", + value = "helm_leather_raiddruid_b_01_hum.m2", }, { - fileId = "237969", - text = "helm_mail_dungeonmail_c_01_tam.m2", - value = "helm_mail_dungeonmail_c_01_tam.m2", + fileId = "138732", + text = "helm_leather_raiddruid_b_01_nif.m2", + value = "helm_leather_raiddruid_b_01_nif.m2", }, { - fileId = "237970", - text = "helm_mail_dungeonmail_c_01_trf.m2", - value = "helm_mail_dungeonmail_c_01_trf.m2", + fileId = "138733", + text = "helm_leather_raiddruid_b_01_nim.m2", + value = "helm_leather_raiddruid_b_01_nim.m2", }, { - fileId = "237971", - text = "helm_mail_dungeonmail_c_01_trm.m2", - value = "helm_mail_dungeonmail_c_01_trm.m2", + fileId = "138734", + text = "helm_leather_raiddruid_b_01_orf.m2", + value = "helm_leather_raiddruid_b_01_orf.m2", }, { - fileId = "342534", - text = "helm_mail_dungeonmail_c_02_bef.m2", - value = "helm_mail_dungeonmail_c_02_bef.m2", + fileId = "138735", + text = "helm_leather_raiddruid_b_01_orm.m2", + value = "helm_leather_raiddruid_b_01_orm.m2", }, { - fileId = "342535", - text = "helm_mail_dungeonmail_c_02_bem.m2", - value = "helm_mail_dungeonmail_c_02_bem.m2", + fileId = "138736", + text = "helm_leather_raiddruid_b_01_scf.m2", + value = "helm_leather_raiddruid_b_01_scf.m2", }, { - fileId = "342536", - text = "helm_mail_dungeonmail_c_02_drf.m2", - value = "helm_mail_dungeonmail_c_02_drf.m2", + fileId = "138737", + text = "helm_leather_raiddruid_b_01_scm.m2", + value = "helm_leather_raiddruid_b_01_scm.m2", }, { - fileId = "342537", - text = "helm_mail_dungeonmail_c_02_drm.m2", - value = "helm_mail_dungeonmail_c_02_drm.m2", + fileId = "138738", + text = "helm_leather_raiddruid_b_01_taf.m2", + value = "helm_leather_raiddruid_b_01_taf.m2", }, { - fileId = "342538", - text = "helm_mail_dungeonmail_c_02_dwf.m2", - value = "helm_mail_dungeonmail_c_02_dwf.m2", + fileId = "138739", + text = "helm_leather_raiddruid_b_01_tam.m2", + value = "helm_leather_raiddruid_b_01_tam.m2", }, { - fileId = "342539", - text = "helm_mail_dungeonmail_c_02_dwm.m2", - value = "helm_mail_dungeonmail_c_02_dwm.m2", + fileId = "138740", + text = "helm_leather_raiddruid_b_01_trf.m2", + value = "helm_leather_raiddruid_b_01_trf.m2", }, { - fileId = "342540", - text = "helm_mail_dungeonmail_c_02_gnf.m2", - value = "helm_mail_dungeonmail_c_02_gnf.m2", + fileId = "138741", + text = "helm_leather_raiddruid_b_01_trm.m2", + value = "helm_leather_raiddruid_b_01_trm.m2", }, { - fileId = "342541", - text = "helm_mail_dungeonmail_c_02_gnm.m2", - value = "helm_mail_dungeonmail_c_02_gnm.m2", + fileId = "454147", + text = "helm_leather_raiddruid_b_01_wof.m2", + value = "helm_leather_raiddruid_b_01_wof.m2", }, { - fileId = "342542", - text = "helm_mail_dungeonmail_c_02_huf.m2", - value = "helm_mail_dungeonmail_c_02_huf.m2", + fileId = "438764", + text = "helm_leather_raiddruid_b_01_wom.m2", + value = "helm_leather_raiddruid_b_01_wom.m2", }, { - fileId = "342543", - text = "helm_mail_dungeonmail_c_02_hum.m2", - value = "helm_mail_dungeonmail_c_02_hum.m2", + fileId = "138746", + text = "helm_leather_raiddruid_c_01_bef.m2", + value = "helm_leather_raiddruid_c_01_bef.m2", }, { - fileId = "342544", - text = "helm_mail_dungeonmail_c_02_nif.m2", - value = "helm_mail_dungeonmail_c_02_nif.m2", + fileId = "138747", + text = "helm_leather_raiddruid_c_01_bem.m2", + value = "helm_leather_raiddruid_c_01_bem.m2", }, { - fileId = "342545", - text = "helm_mail_dungeonmail_c_02_nim.m2", - value = "helm_mail_dungeonmail_c_02_nim.m2", + fileId = "138748", + text = "helm_leather_raiddruid_c_01_drf.m2", + value = "helm_leather_raiddruid_c_01_drf.m2", }, { - fileId = "342546", - text = "helm_mail_dungeonmail_c_02_orf.m2", - value = "helm_mail_dungeonmail_c_02_orf.m2", + fileId = "138749", + text = "helm_leather_raiddruid_c_01_drm.m2", + value = "helm_leather_raiddruid_c_01_drm.m2", }, { - fileId = "342547", - text = "helm_mail_dungeonmail_c_02_orm.m2", - value = "helm_mail_dungeonmail_c_02_orm.m2", + fileId = "138750", + text = "helm_leather_raiddruid_c_01_dwf.m2", + value = "helm_leather_raiddruid_c_01_dwf.m2", }, { - fileId = "342548", - text = "helm_mail_dungeonmail_c_02_scf.m2", - value = "helm_mail_dungeonmail_c_02_scf.m2", + fileId = "138751", + text = "helm_leather_raiddruid_c_01_dwm.m2", + value = "helm_leather_raiddruid_c_01_dwm.m2", }, { - fileId = "342549", - text = "helm_mail_dungeonmail_c_02_scm.m2", - value = "helm_mail_dungeonmail_c_02_scm.m2", + fileId = "138752", + text = "helm_leather_raiddruid_c_01_gnf.m2", + value = "helm_leather_raiddruid_c_01_gnf.m2", }, { - fileId = "342550", - text = "helm_mail_dungeonmail_c_02_taf.m2", - value = "helm_mail_dungeonmail_c_02_taf.m2", + fileId = "138753", + text = "helm_leather_raiddruid_c_01_gnm.m2", + value = "helm_leather_raiddruid_c_01_gnm.m2", }, { - fileId = "342551", - text = "helm_mail_dungeonmail_c_02_tam.m2", - value = "helm_mail_dungeonmail_c_02_tam.m2", + fileId = "138754", + text = "helm_leather_raiddruid_c_01_gof.m2", + value = "helm_leather_raiddruid_c_01_gof.m2", }, { - fileId = "342552", - text = "helm_mail_dungeonmail_c_02_trf.m2", - value = "helm_mail_dungeonmail_c_02_trf.m2", + fileId = "138755", + text = "helm_leather_raiddruid_c_01_gom.m2", + value = "helm_leather_raiddruid_c_01_gom.m2", }, { - fileId = "342553", - text = "helm_mail_dungeonmail_c_02_trm.m2", - value = "helm_mail_dungeonmail_c_02_trm.m2", + fileId = "138756", + text = "helm_leather_raiddruid_c_01_huf.m2", + value = "helm_leather_raiddruid_c_01_huf.m2", }, { - fileId = "139373", - text = "helm_mail_dungeonshaman_a_01_bef.m2", - value = "helm_mail_dungeonshaman_a_01_bef.m2", + fileId = "138757", + text = "helm_leather_raiddruid_c_01_hum.m2", + value = "helm_leather_raiddruid_c_01_hum.m2", }, { - fileId = "139374", - text = "helm_mail_dungeonshaman_a_01_bem.m2", - value = "helm_mail_dungeonshaman_a_01_bem.m2", + fileId = "138758", + text = "helm_leather_raiddruid_c_01_nif.m2", + value = "helm_leather_raiddruid_c_01_nif.m2", }, { - fileId = "139375", - text = "helm_mail_dungeonshaman_a_01_drf.m2", - value = "helm_mail_dungeonshaman_a_01_drf.m2", + fileId = "138759", + text = "helm_leather_raiddruid_c_01_nim.m2", + value = "helm_leather_raiddruid_c_01_nim.m2", }, { - fileId = "139376", - text = "helm_mail_dungeonshaman_a_01_drm.m2", - value = "helm_mail_dungeonshaman_a_01_drm.m2", + fileId = "138760", + text = "helm_leather_raiddruid_c_01_orf.m2", + value = "helm_leather_raiddruid_c_01_orf.m2", }, { - fileId = "139377", - text = "helm_mail_dungeonshaman_a_01_dwf.m2", - value = "helm_mail_dungeonshaman_a_01_dwf.m2", + fileId = "138761", + text = "helm_leather_raiddruid_c_01_orm.m2", + value = "helm_leather_raiddruid_c_01_orm.m2", }, { - fileId = "139378", - text = "helm_mail_dungeonshaman_a_01_dwm.m2", - value = "helm_mail_dungeonshaman_a_01_dwm.m2", + fileId = "138762", + text = "helm_leather_raiddruid_c_01_scf.m2", + value = "helm_leather_raiddruid_c_01_scf.m2", }, { - fileId = "139379", - text = "helm_mail_dungeonshaman_a_01_gnf.m2", - value = "helm_mail_dungeonshaman_a_01_gnf.m2", + fileId = "138763", + text = "helm_leather_raiddruid_c_01_scm.m2", + value = "helm_leather_raiddruid_c_01_scm.m2", }, { - fileId = "139380", - text = "helm_mail_dungeonshaman_a_01_gnm.m2", - value = "helm_mail_dungeonshaman_a_01_gnm.m2", + fileId = "138764", + text = "helm_leather_raiddruid_c_01_taf.m2", + value = "helm_leather_raiddruid_c_01_taf.m2", }, { - fileId = "139381", - text = "helm_mail_dungeonshaman_a_01_gof.m2", - value = "helm_mail_dungeonshaman_a_01_gof.m2", + fileId = "138765", + text = "helm_leather_raiddruid_c_01_tam.m2", + value = "helm_leather_raiddruid_c_01_tam.m2", }, { - fileId = "139382", - text = "helm_mail_dungeonshaman_a_01_gom.m2", - value = "helm_mail_dungeonshaman_a_01_gom.m2", + fileId = "138766", + text = "helm_leather_raiddruid_c_01_trf.m2", + value = "helm_leather_raiddruid_c_01_trf.m2", }, { - fileId = "139383", - text = "helm_mail_dungeonshaman_a_01_huf.m2", - value = "helm_mail_dungeonshaman_a_01_huf.m2", + fileId = "138767", + text = "helm_leather_raiddruid_c_01_trm.m2", + value = "helm_leather_raiddruid_c_01_trm.m2", }, { - fileId = "139384", - text = "helm_mail_dungeonshaman_a_01_hum.m2", - value = "helm_mail_dungeonshaman_a_01_hum.m2", + fileId = "454148", + text = "helm_leather_raiddruid_c_01_wof.m2", + value = "helm_leather_raiddruid_c_01_wof.m2", }, { - fileId = "139385", - text = "helm_mail_dungeonshaman_a_01_nif.m2", - value = "helm_mail_dungeonshaman_a_01_nif.m2", + fileId = "438765", + text = "helm_leather_raiddruid_c_01_wom.m2", + value = "helm_leather_raiddruid_c_01_wom.m2", }, { - fileId = "139386", - text = "helm_mail_dungeonshaman_a_01_nim.m2", - value = "helm_mail_dungeonshaman_a_01_nim.m2", + fileId = "138769", + text = "helm_leather_raiddruid_d_01_bef.m2", + value = "helm_leather_raiddruid_d_01_bef.m2", }, { - fileId = "139387", - text = "helm_mail_dungeonshaman_a_01_orf.m2", - value = "helm_mail_dungeonshaman_a_01_orf.m2", + fileId = "138770", + text = "helm_leather_raiddruid_d_01_bem.m2", + value = "helm_leather_raiddruid_d_01_bem.m2", }, { - fileId = "139388", - text = "helm_mail_dungeonshaman_a_01_orm.m2", - value = "helm_mail_dungeonshaman_a_01_orm.m2", + fileId = "138771", + text = "helm_leather_raiddruid_d_01_drf.m2", + value = "helm_leather_raiddruid_d_01_drf.m2", }, { - fileId = "139389", - text = "helm_mail_dungeonshaman_a_01_scf.m2", - value = "helm_mail_dungeonshaman_a_01_scf.m2", + fileId = "138772", + text = "helm_leather_raiddruid_d_01_drm.m2", + value = "helm_leather_raiddruid_d_01_drm.m2", }, { - fileId = "139390", - text = "helm_mail_dungeonshaman_a_01_scm.m2", - value = "helm_mail_dungeonshaman_a_01_scm.m2", + fileId = "138773", + text = "helm_leather_raiddruid_d_01_dwf.m2", + value = "helm_leather_raiddruid_d_01_dwf.m2", }, { - fileId = "139391", - text = "helm_mail_dungeonshaman_a_01_taf.m2", - value = "helm_mail_dungeonshaman_a_01_taf.m2", + fileId = "138774", + text = "helm_leather_raiddruid_d_01_dwm.m2", + value = "helm_leather_raiddruid_d_01_dwm.m2", }, { - fileId = "139392", - text = "helm_mail_dungeonshaman_a_01_tam.m2", - value = "helm_mail_dungeonshaman_a_01_tam.m2", - }, - { - fileId = "139393", - text = "helm_mail_dungeonshaman_a_01_trf.m2", - value = "helm_mail_dungeonshaman_a_01_trf.m2", + fileId = "138775", + text = "helm_leather_raiddruid_d_01_gnf.m2", + value = "helm_leather_raiddruid_d_01_gnf.m2", }, { - fileId = "139394", - text = "helm_mail_dungeonshaman_a_01_trm.m2", - value = "helm_mail_dungeonshaman_a_01_trm.m2", + fileId = "138776", + text = "helm_leather_raiddruid_d_01_gnm.m2", + value = "helm_leather_raiddruid_d_01_gnm.m2", }, { - fileId = "139400", - text = "helm_mail_dungeonshaman_b_01_bef.m2", - value = "helm_mail_dungeonshaman_b_01_bef.m2", + fileId = "463020", + text = "helm_leather_raiddruid_d_01_gof.m2", + value = "helm_leather_raiddruid_d_01_gof.m2", }, { - fileId = "139401", - text = "helm_mail_dungeonshaman_b_01_bem.m2", - value = "helm_mail_dungeonshaman_b_01_bem.m2", + fileId = "410217", + text = "helm_leather_raiddruid_d_01_gom.m2", + value = "helm_leather_raiddruid_d_01_gom.m2", }, { - fileId = "139402", - text = "helm_mail_dungeonshaman_b_01_drf.m2", - value = "helm_mail_dungeonshaman_b_01_drf.m2", + fileId = "138777", + text = "helm_leather_raiddruid_d_01_huf.m2", + value = "helm_leather_raiddruid_d_01_huf.m2", }, { - fileId = "139403", - text = "helm_mail_dungeonshaman_b_01_drm.m2", - value = "helm_mail_dungeonshaman_b_01_drm.m2", + fileId = "138778", + text = "helm_leather_raiddruid_d_01_hum.m2", + value = "helm_leather_raiddruid_d_01_hum.m2", }, { - fileId = "139404", - text = "helm_mail_dungeonshaman_b_01_dwf.m2", - value = "helm_mail_dungeonshaman_b_01_dwf.m2", + fileId = "138779", + text = "helm_leather_raiddruid_d_01_nif.m2", + value = "helm_leather_raiddruid_d_01_nif.m2", }, { - fileId = "139405", - text = "helm_mail_dungeonshaman_b_01_dwm.m2", - value = "helm_mail_dungeonshaman_b_01_dwm.m2", + fileId = "138780", + text = "helm_leather_raiddruid_d_01_nim.m2", + value = "helm_leather_raiddruid_d_01_nim.m2", }, { - fileId = "139406", - text = "helm_mail_dungeonshaman_b_01_gnf.m2", - value = "helm_mail_dungeonshaman_b_01_gnf.m2", + fileId = "138781", + text = "helm_leather_raiddruid_d_01_orf.m2", + value = "helm_leather_raiddruid_d_01_orf.m2", }, { - fileId = "139407", - text = "helm_mail_dungeonshaman_b_01_gnm.m2", - value = "helm_mail_dungeonshaman_b_01_gnm.m2", + fileId = "138782", + text = "helm_leather_raiddruid_d_01_orm.m2", + value = "helm_leather_raiddruid_d_01_orm.m2", }, { - fileId = "139408", - text = "helm_mail_dungeonshaman_b_01_gof.m2", - value = "helm_mail_dungeonshaman_b_01_gof.m2", + fileId = "138783", + text = "helm_leather_raiddruid_d_01_scf.m2", + value = "helm_leather_raiddruid_d_01_scf.m2", }, { - fileId = "139409", - text = "helm_mail_dungeonshaman_b_01_gom.m2", - value = "helm_mail_dungeonshaman_b_01_gom.m2", + fileId = "138784", + text = "helm_leather_raiddruid_d_01_scm.m2", + value = "helm_leather_raiddruid_d_01_scm.m2", }, { - fileId = "139410", - text = "helm_mail_dungeonshaman_b_01_huf.m2", - value = "helm_mail_dungeonshaman_b_01_huf.m2", + fileId = "138785", + text = "helm_leather_raiddruid_d_01_taf.m2", + value = "helm_leather_raiddruid_d_01_taf.m2", }, { - fileId = "139411", - text = "helm_mail_dungeonshaman_b_01_hum.m2", - value = "helm_mail_dungeonshaman_b_01_hum.m2", + fileId = "138786", + text = "helm_leather_raiddruid_d_01_tam.m2", + value = "helm_leather_raiddruid_d_01_tam.m2", }, { - fileId = "139412", - text = "helm_mail_dungeonshaman_b_01_nif.m2", - value = "helm_mail_dungeonshaman_b_01_nif.m2", + fileId = "138787", + text = "helm_leather_raiddruid_d_01_trf.m2", + value = "helm_leather_raiddruid_d_01_trf.m2", }, { - fileId = "139413", - text = "helm_mail_dungeonshaman_b_01_nim.m2", - value = "helm_mail_dungeonshaman_b_01_nim.m2", + fileId = "138788", + text = "helm_leather_raiddruid_d_01_trm.m2", + value = "helm_leather_raiddruid_d_01_trm.m2", }, { - fileId = "139414", - text = "helm_mail_dungeonshaman_b_01_orf.m2", - value = "helm_mail_dungeonshaman_b_01_orf.m2", + fileId = "454149", + text = "helm_leather_raiddruid_d_01_wof.m2", + value = "helm_leather_raiddruid_d_01_wof.m2", }, { - fileId = "139415", - text = "helm_mail_dungeonshaman_b_01_orm.m2", - value = "helm_mail_dungeonshaman_b_01_orm.m2", + fileId = "438766", + text = "helm_leather_raiddruid_d_01_wom.m2", + value = "helm_leather_raiddruid_d_01_wom.m2", }, { - fileId = "139416", - text = "helm_mail_dungeonshaman_b_01_scf.m2", - value = "helm_mail_dungeonshaman_b_01_scf.m2", + fileId = "138791", + text = "helm_leather_raiddruid_e_01_bef.m2", + value = "helm_leather_raiddruid_e_01_bef.m2", }, { - fileId = "139417", - text = "helm_mail_dungeonshaman_b_01_scm.m2", - value = "helm_mail_dungeonshaman_b_01_scm.m2", + fileId = "138792", + text = "helm_leather_raiddruid_e_01_bem.m2", + value = "helm_leather_raiddruid_e_01_bem.m2", }, { - fileId = "139418", - text = "helm_mail_dungeonshaman_b_01_taf.m2", - value = "helm_mail_dungeonshaman_b_01_taf.m2", + fileId = "138793", + text = "helm_leather_raiddruid_e_01_drf.m2", + value = "helm_leather_raiddruid_e_01_drf.m2", }, { - fileId = "139419", - text = "helm_mail_dungeonshaman_b_01_tam.m2", - value = "helm_mail_dungeonshaman_b_01_tam.m2", + fileId = "138794", + text = "helm_leather_raiddruid_e_01_drm.m2", + value = "helm_leather_raiddruid_e_01_drm.m2", }, { - fileId = "139420", - text = "helm_mail_dungeonshaman_b_01_trf.m2", - value = "helm_mail_dungeonshaman_b_01_trf.m2", + fileId = "138795", + text = "helm_leather_raiddruid_e_01_dwf.m2", + value = "helm_leather_raiddruid_e_01_dwf.m2", }, { - fileId = "139421", - text = "helm_mail_dungeonshaman_b_01_trm.m2", - value = "helm_mail_dungeonshaman_b_01_trm.m2", + fileId = "138796", + text = "helm_leather_raiddruid_e_01_dwm.m2", + value = "helm_leather_raiddruid_e_01_dwm.m2", }, { - fileId = "139427", - text = "helm_mail_northrend_b_01_bef.m2", - value = "helm_mail_northrend_b_01_bef.m2", + fileId = "138797", + text = "helm_leather_raiddruid_e_01_gnf.m2", + value = "helm_leather_raiddruid_e_01_gnf.m2", }, { - fileId = "139428", - text = "helm_mail_northrend_b_01_bem.m2", - value = "helm_mail_northrend_b_01_bem.m2", + fileId = "138798", + text = "helm_leather_raiddruid_e_01_gnm.m2", + value = "helm_leather_raiddruid_e_01_gnm.m2", }, { - fileId = "139429", - text = "helm_mail_northrend_b_01_drf.m2", - value = "helm_mail_northrend_b_01_drf.m2", + fileId = "138799", + text = "helm_leather_raiddruid_e_01_gof.m2", + value = "helm_leather_raiddruid_e_01_gof.m2", }, { - fileId = "139430", - text = "helm_mail_northrend_b_01_drm.m2", - value = "helm_mail_northrend_b_01_drm.m2", + fileId = "138800", + text = "helm_leather_raiddruid_e_01_gom.m2", + value = "helm_leather_raiddruid_e_01_gom.m2", }, { - fileId = "139431", - text = "helm_mail_northrend_b_01_dwf.m2", - value = "helm_mail_northrend_b_01_dwf.m2", + fileId = "138801", + text = "helm_leather_raiddruid_e_01_huf.m2", + value = "helm_leather_raiddruid_e_01_huf.m2", }, { - fileId = "139432", - text = "helm_mail_northrend_b_01_dwm.m2", - value = "helm_mail_northrend_b_01_dwm.m2", + fileId = "138802", + text = "helm_leather_raiddruid_e_01_hum.m2", + value = "helm_leather_raiddruid_e_01_hum.m2", }, { - fileId = "139433", - text = "helm_mail_northrend_b_01_gnf.m2", - value = "helm_mail_northrend_b_01_gnf.m2", + fileId = "138803", + text = "helm_leather_raiddruid_e_01_nif.m2", + value = "helm_leather_raiddruid_e_01_nif.m2", }, { - fileId = "139434", - text = "helm_mail_northrend_b_01_gnm.m2", - value = "helm_mail_northrend_b_01_gnm.m2", + fileId = "138804", + text = "helm_leather_raiddruid_e_01_nim.m2", + value = "helm_leather_raiddruid_e_01_nim.m2", }, { - fileId = "139435", - text = "helm_mail_northrend_b_01_huf.m2", - value = "helm_mail_northrend_b_01_huf.m2", + fileId = "138805", + text = "helm_leather_raiddruid_e_01_orf.m2", + value = "helm_leather_raiddruid_e_01_orf.m2", }, { - fileId = "139436", - text = "helm_mail_northrend_b_01_hum.m2", - value = "helm_mail_northrend_b_01_hum.m2", + fileId = "138806", + text = "helm_leather_raiddruid_e_01_orm.m2", + value = "helm_leather_raiddruid_e_01_orm.m2", }, { - fileId = "139437", - text = "helm_mail_northrend_b_01_nif.m2", - value = "helm_mail_northrend_b_01_nif.m2", + fileId = "138807", + text = "helm_leather_raiddruid_e_01_scf.m2", + value = "helm_leather_raiddruid_e_01_scf.m2", }, { - fileId = "139438", - text = "helm_mail_northrend_b_01_nim.m2", - value = "helm_mail_northrend_b_01_nim.m2", + fileId = "138808", + text = "helm_leather_raiddruid_e_01_scm.m2", + value = "helm_leather_raiddruid_e_01_scm.m2", }, { - fileId = "139439", - text = "helm_mail_northrend_b_01_orf.m2", - value = "helm_mail_northrend_b_01_orf.m2", + fileId = "138809", + text = "helm_leather_raiddruid_e_01_taf.m2", + value = "helm_leather_raiddruid_e_01_taf.m2", }, { - fileId = "139440", - text = "helm_mail_northrend_b_01_orm.m2", - value = "helm_mail_northrend_b_01_orm.m2", + fileId = "138810", + text = "helm_leather_raiddruid_e_01_tam.m2", + value = "helm_leather_raiddruid_e_01_tam.m2", }, { - fileId = "139441", - text = "helm_mail_northrend_b_01_scf.m2", - value = "helm_mail_northrend_b_01_scf.m2", + fileId = "138811", + text = "helm_leather_raiddruid_e_01_trf.m2", + value = "helm_leather_raiddruid_e_01_trf.m2", }, { - fileId = "139442", - text = "helm_mail_northrend_b_01_scm.m2", - value = "helm_mail_northrend_b_01_scm.m2", + fileId = "138812", + text = "helm_leather_raiddruid_e_01_trm.m2", + value = "helm_leather_raiddruid_e_01_trm.m2", }, { - fileId = "139443", - text = "helm_mail_northrend_b_01_taf.m2", - value = "helm_mail_northrend_b_01_taf.m2", + fileId = "454150", + text = "helm_leather_raiddruid_e_01_wof.m2", + value = "helm_leather_raiddruid_e_01_wof.m2", }, { - fileId = "139444", - text = "helm_mail_northrend_b_01_tam.m2", - value = "helm_mail_northrend_b_01_tam.m2", + fileId = "438767", + text = "helm_leather_raiddruid_e_01_wom.m2", + value = "helm_leather_raiddruid_e_01_wom.m2", }, { - fileId = "139445", - text = "helm_mail_northrend_b_01_trf.m2", - value = "helm_mail_northrend_b_01_trf.m2", + fileId = "138816", + text = "helm_leather_raiddruid_f_01_bef.m2", + value = "helm_leather_raiddruid_f_01_bef.m2", }, { - fileId = "139446", - text = "helm_mail_northrend_b_01_trm.m2", - value = "helm_mail_northrend_b_01_trm.m2", + fileId = "138817", + text = "helm_leather_raiddruid_f_01_bem.m2", + value = "helm_leather_raiddruid_f_01_bem.m2", }, { - fileId = "139452", - text = "helm_mail_northrend_b_02_bef.m2", - value = "helm_mail_northrend_b_02_bef.m2", + fileId = "138818", + text = "helm_leather_raiddruid_f_01_drf.m2", + value = "helm_leather_raiddruid_f_01_drf.m2", }, { - fileId = "139453", - text = "helm_mail_northrend_b_02_bem.m2", - value = "helm_mail_northrend_b_02_bem.m2", + fileId = "138819", + text = "helm_leather_raiddruid_f_01_drm.m2", + value = "helm_leather_raiddruid_f_01_drm.m2", }, { - fileId = "139454", - text = "helm_mail_northrend_b_02_drf.m2", - value = "helm_mail_northrend_b_02_drf.m2", + fileId = "138820", + text = "helm_leather_raiddruid_f_01_dwf.m2", + value = "helm_leather_raiddruid_f_01_dwf.m2", }, { - fileId = "139455", - text = "helm_mail_northrend_b_02_drm.m2", - value = "helm_mail_northrend_b_02_drm.m2", + fileId = "138821", + text = "helm_leather_raiddruid_f_01_dwm.m2", + value = "helm_leather_raiddruid_f_01_dwm.m2", }, { - fileId = "139456", - text = "helm_mail_northrend_b_02_dwf.m2", - value = "helm_mail_northrend_b_02_dwf.m2", + fileId = "138822", + text = "helm_leather_raiddruid_f_01_gnf.m2", + value = "helm_leather_raiddruid_f_01_gnf.m2", }, { - fileId = "139457", - text = "helm_mail_northrend_b_02_dwm.m2", - value = "helm_mail_northrend_b_02_dwm.m2", + fileId = "138823", + text = "helm_leather_raiddruid_f_01_gnm.m2", + value = "helm_leather_raiddruid_f_01_gnm.m2", }, { - fileId = "139458", - text = "helm_mail_northrend_b_02_gnf.m2", - value = "helm_mail_northrend_b_02_gnf.m2", + fileId = "138824", + text = "helm_leather_raiddruid_f_01_gof.m2", + value = "helm_leather_raiddruid_f_01_gof.m2", }, { - fileId = "139459", - text = "helm_mail_northrend_b_02_gnm.m2", - value = "helm_mail_northrend_b_02_gnm.m2", + fileId = "138825", + text = "helm_leather_raiddruid_f_01_gom.m2", + value = "helm_leather_raiddruid_f_01_gom.m2", }, { - fileId = "139460", - text = "helm_mail_northrend_b_02_huf.m2", - value = "helm_mail_northrend_b_02_huf.m2", + fileId = "138826", + text = "helm_leather_raiddruid_f_01_huf.m2", + value = "helm_leather_raiddruid_f_01_huf.m2", }, { - fileId = "139461", - text = "helm_mail_northrend_b_02_hum.m2", - value = "helm_mail_northrend_b_02_hum.m2", + fileId = "138827", + text = "helm_leather_raiddruid_f_01_hum.m2", + value = "helm_leather_raiddruid_f_01_hum.m2", }, { - fileId = "139462", - text = "helm_mail_northrend_b_02_nif.m2", - value = "helm_mail_northrend_b_02_nif.m2", + fileId = "138828", + text = "helm_leather_raiddruid_f_01_nif.m2", + value = "helm_leather_raiddruid_f_01_nif.m2", }, { - fileId = "139463", - text = "helm_mail_northrend_b_02_nim.m2", - value = "helm_mail_northrend_b_02_nim.m2", + fileId = "138829", + text = "helm_leather_raiddruid_f_01_nim.m2", + value = "helm_leather_raiddruid_f_01_nim.m2", }, { - fileId = "139464", - text = "helm_mail_northrend_b_02_orf.m2", - value = "helm_mail_northrend_b_02_orf.m2", + fileId = "138830", + text = "helm_leather_raiddruid_f_01_orf.m2", + value = "helm_leather_raiddruid_f_01_orf.m2", }, { - fileId = "139465", - text = "helm_mail_northrend_b_02_orm.m2", - value = "helm_mail_northrend_b_02_orm.m2", + fileId = "138831", + text = "helm_leather_raiddruid_f_01_orm.m2", + value = "helm_leather_raiddruid_f_01_orm.m2", }, { - fileId = "139466", - text = "helm_mail_northrend_b_02_scf.m2", - value = "helm_mail_northrend_b_02_scf.m2", + fileId = "138832", + text = "helm_leather_raiddruid_f_01_scf.m2", + value = "helm_leather_raiddruid_f_01_scf.m2", }, { - fileId = "139467", - text = "helm_mail_northrend_b_02_scm.m2", - value = "helm_mail_northrend_b_02_scm.m2", + fileId = "138833", + text = "helm_leather_raiddruid_f_01_scm.m2", + value = "helm_leather_raiddruid_f_01_scm.m2", }, { - fileId = "139468", - text = "helm_mail_northrend_b_02_taf.m2", - value = "helm_mail_northrend_b_02_taf.m2", + fileId = "138834", + text = "helm_leather_raiddruid_f_01_taf.m2", + value = "helm_leather_raiddruid_f_01_taf.m2", }, { - fileId = "139469", - text = "helm_mail_northrend_b_02_tam.m2", - value = "helm_mail_northrend_b_02_tam.m2", + fileId = "138835", + text = "helm_leather_raiddruid_f_01_tam.m2", + value = "helm_leather_raiddruid_f_01_tam.m2", }, { - fileId = "139470", - text = "helm_mail_northrend_b_02_trf.m2", - value = "helm_mail_northrend_b_02_trf.m2", + fileId = "138836", + text = "helm_leather_raiddruid_f_01_trf.m2", + value = "helm_leather_raiddruid_f_01_trf.m2", }, { - fileId = "139471", - text = "helm_mail_northrend_b_02_trm.m2", - value = "helm_mail_northrend_b_02_trm.m2", + fileId = "138837", + text = "helm_leather_raiddruid_f_01_trm.m2", + value = "helm_leather_raiddruid_f_01_trm.m2", }, { - fileId = "139478", - text = "helm_mail_northrend_b_03_bef.m2", - value = "helm_mail_northrend_b_03_bef.m2", + fileId = "454151", + text = "helm_leather_raiddruid_f_01_wof.m2", + value = "helm_leather_raiddruid_f_01_wof.m2", }, { - fileId = "139479", - text = "helm_mail_northrend_b_03_bem.m2", - value = "helm_mail_northrend_b_03_bem.m2", + fileId = "438768", + text = "helm_leather_raiddruid_f_01_wom.m2", + value = "helm_leather_raiddruid_f_01_wom.m2", }, { - fileId = "139480", - text = "helm_mail_northrend_b_03_drf.m2", - value = "helm_mail_northrend_b_03_drf.m2", + fileId = "249185", + text = "helm_leather_raiddruid_g_01_bef.m2", + value = "helm_leather_raiddruid_g_01_bef.m2", }, { - fileId = "139481", - text = "helm_mail_northrend_b_03_drm.m2", - value = "helm_mail_northrend_b_03_drm.m2", + fileId = "249186", + text = "helm_leather_raiddruid_g_01_bem.m2", + value = "helm_leather_raiddruid_g_01_bem.m2", }, { - fileId = "139482", - text = "helm_mail_northrend_b_03_dwf.m2", - value = "helm_mail_northrend_b_03_dwf.m2", + fileId = "249187", + text = "helm_leather_raiddruid_g_01_drf.m2", + value = "helm_leather_raiddruid_g_01_drf.m2", }, { - fileId = "139483", - text = "helm_mail_northrend_b_03_dwm.m2", - value = "helm_mail_northrend_b_03_dwm.m2", + fileId = "249188", + text = "helm_leather_raiddruid_g_01_drm.m2", + value = "helm_leather_raiddruid_g_01_drm.m2", }, { - fileId = "139484", - text = "helm_mail_northrend_b_03_gnf.m2", - value = "helm_mail_northrend_b_03_gnf.m2", + fileId = "249189", + text = "helm_leather_raiddruid_g_01_dwf.m2", + value = "helm_leather_raiddruid_g_01_dwf.m2", }, { - fileId = "139485", - text = "helm_mail_northrend_b_03_gnm.m2", - value = "helm_mail_northrend_b_03_gnm.m2", + fileId = "249190", + text = "helm_leather_raiddruid_g_01_dwm.m2", + value = "helm_leather_raiddruid_g_01_dwm.m2", }, { - fileId = "139486", - text = "helm_mail_northrend_b_03_huf.m2", - value = "helm_mail_northrend_b_03_huf.m2", + fileId = "249191", + text = "helm_leather_raiddruid_g_01_gnf.m2", + value = "helm_leather_raiddruid_g_01_gnf.m2", }, { - fileId = "139487", - text = "helm_mail_northrend_b_03_hum.m2", - value = "helm_mail_northrend_b_03_hum.m2", + fileId = "249192", + text = "helm_leather_raiddruid_g_01_gnm.m2", + value = "helm_leather_raiddruid_g_01_gnm.m2", }, { - fileId = "139488", - text = "helm_mail_northrend_b_03_nif.m2", - value = "helm_mail_northrend_b_03_nif.m2", + fileId = "249193", + text = "helm_leather_raiddruid_g_01_gof.m2", + value = "helm_leather_raiddruid_g_01_gof.m2", }, { - fileId = "139489", - text = "helm_mail_northrend_b_03_nim.m2", - value = "helm_mail_northrend_b_03_nim.m2", + fileId = "249194", + text = "helm_leather_raiddruid_g_01_gom.m2", + value = "helm_leather_raiddruid_g_01_gom.m2", }, { - fileId = "139490", - text = "helm_mail_northrend_b_03_orf.m2", - value = "helm_mail_northrend_b_03_orf.m2", + fileId = "249195", + text = "helm_leather_raiddruid_g_01_huf.m2", + value = "helm_leather_raiddruid_g_01_huf.m2", }, { - fileId = "139491", - text = "helm_mail_northrend_b_03_orm.m2", - value = "helm_mail_northrend_b_03_orm.m2", + fileId = "249196", + text = "helm_leather_raiddruid_g_01_hum.m2", + value = "helm_leather_raiddruid_g_01_hum.m2", }, { - fileId = "139492", - text = "helm_mail_northrend_b_03_scf.m2", - value = "helm_mail_northrend_b_03_scf.m2", + fileId = "249197", + text = "helm_leather_raiddruid_g_01_nif.m2", + value = "helm_leather_raiddruid_g_01_nif.m2", }, { - fileId = "139493", - text = "helm_mail_northrend_b_03_scm.m2", - value = "helm_mail_northrend_b_03_scm.m2", + fileId = "249198", + text = "helm_leather_raiddruid_g_01_nim.m2", + value = "helm_leather_raiddruid_g_01_nim.m2", }, { - fileId = "139494", - text = "helm_mail_northrend_b_03_taf.m2", - value = "helm_mail_northrend_b_03_taf.m2", + fileId = "249199", + text = "helm_leather_raiddruid_g_01_orf.m2", + value = "helm_leather_raiddruid_g_01_orf.m2", }, { - fileId = "139495", - text = "helm_mail_northrend_b_03_tam.m2", - value = "helm_mail_northrend_b_03_tam.m2", + fileId = "249200", + text = "helm_leather_raiddruid_g_01_orm.m2", + value = "helm_leather_raiddruid_g_01_orm.m2", }, { - fileId = "139496", - text = "helm_mail_northrend_b_03_trf.m2", - value = "helm_mail_northrend_b_03_trf.m2", + fileId = "249201", + text = "helm_leather_raiddruid_g_01_scf.m2", + value = "helm_leather_raiddruid_g_01_scf.m2", }, { - fileId = "139497", - text = "helm_mail_northrend_b_03_trm.m2", - value = "helm_mail_northrend_b_03_trm.m2", + fileId = "249202", + text = "helm_leather_raiddruid_g_01_scm.m2", + value = "helm_leather_raiddruid_g_01_scm.m2", }, { - fileId = "139502", - text = "helm_mail_northrend_d_01_bef.m2", - value = "helm_mail_northrend_d_01_bef.m2", + fileId = "249203", + text = "helm_leather_raiddruid_g_01_taf.m2", + value = "helm_leather_raiddruid_g_01_taf.m2", }, { - fileId = "139503", - text = "helm_mail_northrend_d_01_bem.m2", - value = "helm_mail_northrend_d_01_bem.m2", + fileId = "249204", + text = "helm_leather_raiddruid_g_01_tam.m2", + value = "helm_leather_raiddruid_g_01_tam.m2", }, { - fileId = "139504", - text = "helm_mail_northrend_d_01_drf.m2", - value = "helm_mail_northrend_d_01_drf.m2", + fileId = "249205", + text = "helm_leather_raiddruid_g_01_trf.m2", + value = "helm_leather_raiddruid_g_01_trf.m2", }, { - fileId = "139505", - text = "helm_mail_northrend_d_01_drm.m2", - value = "helm_mail_northrend_d_01_drm.m2", + fileId = "249206", + text = "helm_leather_raiddruid_g_01_trm.m2", + value = "helm_leather_raiddruid_g_01_trm.m2", }, { - fileId = "139506", - text = "helm_mail_northrend_d_01_dwf.m2", - value = "helm_mail_northrend_d_01_dwf.m2", + fileId = "454152", + text = "helm_leather_raiddruid_g_01_wof.m2", + value = "helm_leather_raiddruid_g_01_wof.m2", }, { - fileId = "139507", - text = "helm_mail_northrend_d_01_dwm.m2", - value = "helm_mail_northrend_d_01_dwm.m2", + fileId = "438769", + text = "helm_leather_raiddruid_g_01_wom.m2", + value = "helm_leather_raiddruid_g_01_wom.m2", }, { - fileId = "139508", - text = "helm_mail_northrend_d_01_gnf.m2", - value = "helm_mail_northrend_d_01_gnf.m2", + fileId = "336795", + text = "helm_leather_raiddruid_h_01_bef.m2", + value = "helm_leather_raiddruid_h_01_bef.m2", }, { - fileId = "139509", - text = "helm_mail_northrend_d_01_gnm.m2", - value = "helm_mail_northrend_d_01_gnm.m2", + fileId = "336796", + text = "helm_leather_raiddruid_h_01_bem.m2", + value = "helm_leather_raiddruid_h_01_bem.m2", }, { - fileId = "139510", - text = "helm_mail_northrend_d_01_huf.m2", - value = "helm_mail_northrend_d_01_huf.m2", + fileId = "336797", + text = "helm_leather_raiddruid_h_01_drf.m2", + value = "helm_leather_raiddruid_h_01_drf.m2", }, { - fileId = "139511", - text = "helm_mail_northrend_d_01_hum.m2", - value = "helm_mail_northrend_d_01_hum.m2", + fileId = "336798", + text = "helm_leather_raiddruid_h_01_drm.m2", + value = "helm_leather_raiddruid_h_01_drm.m2", }, { - fileId = "139512", - text = "helm_mail_northrend_d_01_nif.m2", - value = "helm_mail_northrend_d_01_nif.m2", + fileId = "336799", + text = "helm_leather_raiddruid_h_01_dwf.m2", + value = "helm_leather_raiddruid_h_01_dwf.m2", }, { - fileId = "139513", - text = "helm_mail_northrend_d_01_nim.m2", - value = "helm_mail_northrend_d_01_nim.m2", + fileId = "336800", + text = "helm_leather_raiddruid_h_01_dwm.m2", + value = "helm_leather_raiddruid_h_01_dwm.m2", }, { - fileId = "139514", - text = "helm_mail_northrend_d_01_orf.m2", - value = "helm_mail_northrend_d_01_orf.m2", + fileId = "336801", + text = "helm_leather_raiddruid_h_01_gnf.m2", + value = "helm_leather_raiddruid_h_01_gnf.m2", }, { - fileId = "139515", - text = "helm_mail_northrend_d_01_orm.m2", - value = "helm_mail_northrend_d_01_orm.m2", + fileId = "336802", + text = "helm_leather_raiddruid_h_01_gnm.m2", + value = "helm_leather_raiddruid_h_01_gnm.m2", }, { - fileId = "139516", - text = "helm_mail_northrend_d_01_scf.m2", - value = "helm_mail_northrend_d_01_scf.m2", + fileId = "336803", + text = "helm_leather_raiddruid_h_01_gof.m2", + value = "helm_leather_raiddruid_h_01_gof.m2", }, { - fileId = "139517", - text = "helm_mail_northrend_d_01_scm.m2", - value = "helm_mail_northrend_d_01_scm.m2", + fileId = "336804", + text = "helm_leather_raiddruid_h_01_gom.m2", + value = "helm_leather_raiddruid_h_01_gom.m2", }, { - fileId = "139518", - text = "helm_mail_northrend_d_01_taf.m2", - value = "helm_mail_northrend_d_01_taf.m2", + fileId = "336805", + text = "helm_leather_raiddruid_h_01_huf.m2", + value = "helm_leather_raiddruid_h_01_huf.m2", }, { - fileId = "139519", - text = "helm_mail_northrend_d_01_tam.m2", - value = "helm_mail_northrend_d_01_tam.m2", + fileId = "336806", + text = "helm_leather_raiddruid_h_01_hum.m2", + value = "helm_leather_raiddruid_h_01_hum.m2", }, { - fileId = "139520", - text = "helm_mail_northrend_d_01_trf.m2", - value = "helm_mail_northrend_d_01_trf.m2", + fileId = "336807", + text = "helm_leather_raiddruid_h_01_nif.m2", + value = "helm_leather_raiddruid_h_01_nif.m2", }, { - fileId = "139521", - text = "helm_mail_northrend_d_01_trm.m2", - value = "helm_mail_northrend_d_01_trm.m2", + fileId = "336808", + text = "helm_leather_raiddruid_h_01_nim.m2", + value = "helm_leather_raiddruid_h_01_nim.m2", }, { - fileId = "139526", - text = "helm_mail_pvpalliance_a_01_bef.m2", - value = "helm_mail_pvpalliance_a_01_bef.m2", + fileId = "336809", + text = "helm_leather_raiddruid_h_01_orf.m2", + value = "helm_leather_raiddruid_h_01_orf.m2", }, { - fileId = "139527", - text = "helm_mail_pvpalliance_a_01_bem.m2", - value = "helm_mail_pvpalliance_a_01_bem.m2", + fileId = "336810", + text = "helm_leather_raiddruid_h_01_orm.m2", + value = "helm_leather_raiddruid_h_01_orm.m2", }, { - fileId = "139528", - text = "helm_mail_pvpalliance_a_01_drf.m2", - value = "helm_mail_pvpalliance_a_01_drf.m2", + fileId = "336811", + text = "helm_leather_raiddruid_h_01_scf.m2", + value = "helm_leather_raiddruid_h_01_scf.m2", }, { - fileId = "139529", - text = "helm_mail_pvpalliance_a_01_drm.m2", - value = "helm_mail_pvpalliance_a_01_drm.m2", + fileId = "336812", + text = "helm_leather_raiddruid_h_01_scm.m2", + value = "helm_leather_raiddruid_h_01_scm.m2", }, { - fileId = "139530", - text = "helm_mail_pvpalliance_a_01_dwf.m2", - value = "helm_mail_pvpalliance_a_01_dwf.m2", + fileId = "336813", + text = "helm_leather_raiddruid_h_01_taf.m2", + value = "helm_leather_raiddruid_h_01_taf.m2", }, { - fileId = "139531", - text = "helm_mail_pvpalliance_a_01_dwm.m2", - value = "helm_mail_pvpalliance_a_01_dwm.m2", + fileId = "336814", + text = "helm_leather_raiddruid_h_01_tam.m2", + value = "helm_leather_raiddruid_h_01_tam.m2", }, { - fileId = "139532", - text = "helm_mail_pvpalliance_a_01_gnf.m2", - value = "helm_mail_pvpalliance_a_01_gnf.m2", + fileId = "336815", + text = "helm_leather_raiddruid_h_01_trf.m2", + value = "helm_leather_raiddruid_h_01_trf.m2", }, { - fileId = "139533", - text = "helm_mail_pvpalliance_a_01_gnm.m2", - value = "helm_mail_pvpalliance_a_01_gnm.m2", + fileId = "336816", + text = "helm_leather_raiddruid_h_01_trm.m2", + value = "helm_leather_raiddruid_h_01_trm.m2", }, { - fileId = "139534", - text = "helm_mail_pvpalliance_a_01_gof.m2", - value = "helm_mail_pvpalliance_a_01_gof.m2", + fileId = "454153", + text = "helm_leather_raiddruid_h_01_wof.m2", + value = "helm_leather_raiddruid_h_01_wof.m2", }, { - fileId = "139535", - text = "helm_mail_pvpalliance_a_01_gom.m2", - value = "helm_mail_pvpalliance_a_01_gom.m2", + fileId = "438770", + text = "helm_leather_raiddruid_h_01_wom.m2", + value = "helm_leather_raiddruid_h_01_wom.m2", }, { - fileId = "139536", - text = "helm_mail_pvpalliance_a_01_huf.m2", - value = "helm_mail_pvpalliance_a_01_huf.m2", + fileId = "461157", + text = "helm_leather_raiddruid_i_01_bef.m2", + value = "helm_leather_raiddruid_i_01_bef.m2", }, { - fileId = "139537", - text = "helm_mail_pvpalliance_a_01_hum.m2", - value = "helm_mail_pvpalliance_a_01_hum.m2", + fileId = "461158", + text = "helm_leather_raiddruid_i_01_bem.m2", + value = "helm_leather_raiddruid_i_01_bem.m2", }, { - fileId = "139538", - text = "helm_mail_pvpalliance_a_01_nif.m2", - value = "helm_mail_pvpalliance_a_01_nif.m2", + fileId = "461159", + text = "helm_leather_raiddruid_i_01_drf.m2", + value = "helm_leather_raiddruid_i_01_drf.m2", }, { - fileId = "139539", - text = "helm_mail_pvpalliance_a_01_nim.m2", - value = "helm_mail_pvpalliance_a_01_nim.m2", + fileId = "461160", + text = "helm_leather_raiddruid_i_01_drm.m2", + value = "helm_leather_raiddruid_i_01_drm.m2", }, { - fileId = "139540", - text = "helm_mail_pvpalliance_a_01_orf.m2", - value = "helm_mail_pvpalliance_a_01_orf.m2", + fileId = "461161", + text = "helm_leather_raiddruid_i_01_dwf.m2", + value = "helm_leather_raiddruid_i_01_dwf.m2", }, { - fileId = "139541", - text = "helm_mail_pvpalliance_a_01_orm.m2", - value = "helm_mail_pvpalliance_a_01_orm.m2", + fileId = "461162", + text = "helm_leather_raiddruid_i_01_dwm.m2", + value = "helm_leather_raiddruid_i_01_dwm.m2", }, { - fileId = "139542", - text = "helm_mail_pvpalliance_a_01_scf.m2", - value = "helm_mail_pvpalliance_a_01_scf.m2", + fileId = "461163", + text = "helm_leather_raiddruid_i_01_gnf.m2", + value = "helm_leather_raiddruid_i_01_gnf.m2", }, { - fileId = "139543", - text = "helm_mail_pvpalliance_a_01_scm.m2", - value = "helm_mail_pvpalliance_a_01_scm.m2", + fileId = "461164", + text = "helm_leather_raiddruid_i_01_gnm.m2", + value = "helm_leather_raiddruid_i_01_gnm.m2", }, { - fileId = "139544", - text = "helm_mail_pvpalliance_a_01_taf.m2", - value = "helm_mail_pvpalliance_a_01_taf.m2", + fileId = "461165", + text = "helm_leather_raiddruid_i_01_gof.m2", + value = "helm_leather_raiddruid_i_01_gof.m2", }, { - fileId = "139545", - text = "helm_mail_pvpalliance_a_01_tam.m2", - value = "helm_mail_pvpalliance_a_01_tam.m2", + fileId = "461166", + text = "helm_leather_raiddruid_i_01_gom.m2", + value = "helm_leather_raiddruid_i_01_gom.m2", }, { - fileId = "139546", - text = "helm_mail_pvpalliance_a_01_trf.m2", - value = "helm_mail_pvpalliance_a_01_trf.m2", + fileId = "461167", + text = "helm_leather_raiddruid_i_01_huf.m2", + value = "helm_leather_raiddruid_i_01_huf.m2", }, { - fileId = "139547", - text = "helm_mail_pvpalliance_a_01_trm.m2", - value = "helm_mail_pvpalliance_a_01_trm.m2", + fileId = "461168", + text = "helm_leather_raiddruid_i_01_hum.m2", + value = "helm_leather_raiddruid_i_01_hum.m2", }, { - fileId = "139551", - text = "helm_mail_pvpalliance_c_01_bef.m2", - value = "helm_mail_pvpalliance_c_01_bef.m2", + fileId = "461169", + text = "helm_leather_raiddruid_i_01_nif.m2", + value = "helm_leather_raiddruid_i_01_nif.m2", }, { - fileId = "139552", - text = "helm_mail_pvpalliance_c_01_bem.m2", - value = "helm_mail_pvpalliance_c_01_bem.m2", + fileId = "461170", + text = "helm_leather_raiddruid_i_01_nim.m2", + value = "helm_leather_raiddruid_i_01_nim.m2", }, { - fileId = "139553", - text = "helm_mail_pvpalliance_c_01_drf.m2", - value = "helm_mail_pvpalliance_c_01_drf.m2", + fileId = "461171", + text = "helm_leather_raiddruid_i_01_orf.m2", + value = "helm_leather_raiddruid_i_01_orf.m2", }, { - fileId = "139554", - text = "helm_mail_pvpalliance_c_01_drm.m2", - value = "helm_mail_pvpalliance_c_01_drm.m2", + fileId = "461172", + text = "helm_leather_raiddruid_i_01_orm.m2", + value = "helm_leather_raiddruid_i_01_orm.m2", }, { - fileId = "139555", - text = "helm_mail_pvpalliance_c_01_dwf.m2", - value = "helm_mail_pvpalliance_c_01_dwf.m2", + fileId = "461173", + text = "helm_leather_raiddruid_i_01_scf.m2", + value = "helm_leather_raiddruid_i_01_scf.m2", }, { - fileId = "139556", - text = "helm_mail_pvpalliance_c_01_dwm.m2", - value = "helm_mail_pvpalliance_c_01_dwm.m2", + fileId = "461174", + text = "helm_leather_raiddruid_i_01_scm.m2", + value = "helm_leather_raiddruid_i_01_scm.m2", }, { - fileId = "139557", - text = "helm_mail_pvpalliance_c_01_gnf.m2", - value = "helm_mail_pvpalliance_c_01_gnf.m2", + fileId = "461175", + text = "helm_leather_raiddruid_i_01_taf.m2", + value = "helm_leather_raiddruid_i_01_taf.m2", }, { - fileId = "139558", - text = "helm_mail_pvpalliance_c_01_gnm.m2", - value = "helm_mail_pvpalliance_c_01_gnm.m2", + fileId = "461176", + text = "helm_leather_raiddruid_i_01_tam.m2", + value = "helm_leather_raiddruid_i_01_tam.m2", }, { - fileId = "139559", - text = "helm_mail_pvpalliance_c_01_gof.m2", - value = "helm_mail_pvpalliance_c_01_gof.m2", + fileId = "461177", + text = "helm_leather_raiddruid_i_01_trf.m2", + value = "helm_leather_raiddruid_i_01_trf.m2", }, { - fileId = "139560", - text = "helm_mail_pvpalliance_c_01_gom.m2", - value = "helm_mail_pvpalliance_c_01_gom.m2", + fileId = "461178", + text = "helm_leather_raiddruid_i_01_trm.m2", + value = "helm_leather_raiddruid_i_01_trm.m2", }, { - fileId = "139561", - text = "helm_mail_pvpalliance_c_01_huf.m2", - value = "helm_mail_pvpalliance_c_01_huf.m2", + fileId = "461179", + text = "helm_leather_raiddruid_i_01_wof.m2", + value = "helm_leather_raiddruid_i_01_wof.m2", }, { - fileId = "139562", - text = "helm_mail_pvpalliance_c_01_hum.m2", - value = "helm_mail_pvpalliance_c_01_hum.m2", + fileId = "461180", + text = "helm_leather_raiddruid_i_01_wom.m2", + value = "helm_leather_raiddruid_i_01_wom.m2", }, { - fileId = "139563", - text = "helm_mail_pvpalliance_c_01_nif.m2", - value = "helm_mail_pvpalliance_c_01_nif.m2", + fileId = "524383", + text = "helm_leather_raiddruid_j_01_bef.m2", + value = "helm_leather_raiddruid_j_01_bef.m2", }, { - fileId = "139564", - text = "helm_mail_pvpalliance_c_01_nim.m2", - value = "helm_mail_pvpalliance_c_01_nim.m2", + fileId = "524385", + text = "helm_leather_raiddruid_j_01_bem.m2", + value = "helm_leather_raiddruid_j_01_bem.m2", }, { - fileId = "139565", - text = "helm_mail_pvpalliance_c_01_orf.m2", - value = "helm_mail_pvpalliance_c_01_orf.m2", + fileId = "524387", + text = "helm_leather_raiddruid_j_01_drf.m2", + value = "helm_leather_raiddruid_j_01_drf.m2", }, { - fileId = "139566", - text = "helm_mail_pvpalliance_c_01_orm.m2", - value = "helm_mail_pvpalliance_c_01_orm.m2", + fileId = "524389", + text = "helm_leather_raiddruid_j_01_drm.m2", + value = "helm_leather_raiddruid_j_01_drm.m2", }, { - fileId = "139567", - text = "helm_mail_pvpalliance_c_01_scf.m2", - value = "helm_mail_pvpalliance_c_01_scf.m2", + fileId = "524391", + text = "helm_leather_raiddruid_j_01_dwf.m2", + value = "helm_leather_raiddruid_j_01_dwf.m2", }, { - fileId = "139568", - text = "helm_mail_pvpalliance_c_01_scm.m2", - value = "helm_mail_pvpalliance_c_01_scm.m2", + fileId = "524393", + text = "helm_leather_raiddruid_j_01_dwm.m2", + value = "helm_leather_raiddruid_j_01_dwm.m2", }, { - fileId = "139569", - text = "helm_mail_pvpalliance_c_01_taf.m2", - value = "helm_mail_pvpalliance_c_01_taf.m2", + fileId = "524395", + text = "helm_leather_raiddruid_j_01_gnf.m2", + value = "helm_leather_raiddruid_j_01_gnf.m2", }, { - fileId = "139570", - text = "helm_mail_pvpalliance_c_01_tam.m2", - value = "helm_mail_pvpalliance_c_01_tam.m2", + fileId = "524397", + text = "helm_leather_raiddruid_j_01_gnm.m2", + value = "helm_leather_raiddruid_j_01_gnm.m2", }, { - fileId = "139571", - text = "helm_mail_pvpalliance_c_01_trf.m2", - value = "helm_mail_pvpalliance_c_01_trf.m2", + fileId = "524399", + text = "helm_leather_raiddruid_j_01_gof.m2", + value = "helm_leather_raiddruid_j_01_gof.m2", }, { - fileId = "139572", - text = "helm_mail_pvpalliance_c_01_trm.m2", - value = "helm_mail_pvpalliance_c_01_trm.m2", + fileId = "524401", + text = "helm_leather_raiddruid_j_01_gom.m2", + value = "helm_leather_raiddruid_j_01_gom.m2", }, { - fileId = "139573", - text = "helm_mail_pvphorde_a_01_bef.m2", - value = "helm_mail_pvphorde_a_01_bef.m2", + fileId = "524403", + text = "helm_leather_raiddruid_j_01_huf.m2", + value = "helm_leather_raiddruid_j_01_huf.m2", }, { - fileId = "139574", - text = "helm_mail_pvphorde_a_01_bem.m2", - value = "helm_mail_pvphorde_a_01_bem.m2", + fileId = "524405", + text = "helm_leather_raiddruid_j_01_hum.m2", + value = "helm_leather_raiddruid_j_01_hum.m2", }, { - fileId = "139575", - text = "helm_mail_pvphorde_a_01_drf.m2", - value = "helm_mail_pvphorde_a_01_drf.m2", + fileId = "524407", + text = "helm_leather_raiddruid_j_01_nif.m2", + value = "helm_leather_raiddruid_j_01_nif.m2", }, { - fileId = "139576", - text = "helm_mail_pvphorde_a_01_drm.m2", - value = "helm_mail_pvphorde_a_01_drm.m2", + fileId = "524409", + text = "helm_leather_raiddruid_j_01_nim.m2", + value = "helm_leather_raiddruid_j_01_nim.m2", }, { - fileId = "139577", - text = "helm_mail_pvphorde_a_01_dwf.m2", - value = "helm_mail_pvphorde_a_01_dwf.m2", + fileId = "524411", + text = "helm_leather_raiddruid_j_01_orf.m2", + value = "helm_leather_raiddruid_j_01_orf.m2", }, { - fileId = "139578", - text = "helm_mail_pvphorde_a_01_dwm.m2", - value = "helm_mail_pvphorde_a_01_dwm.m2", + fileId = "524413", + text = "helm_leather_raiddruid_j_01_orm.m2", + value = "helm_leather_raiddruid_j_01_orm.m2", }, { - fileId = "139579", - text = "helm_mail_pvphorde_a_01_gnf.m2", - value = "helm_mail_pvphorde_a_01_gnf.m2", + fileId = "524415", + text = "helm_leather_raiddruid_j_01_scf.m2", + value = "helm_leather_raiddruid_j_01_scf.m2", }, { - fileId = "139580", - text = "helm_mail_pvphorde_a_01_gnm.m2", - value = "helm_mail_pvphorde_a_01_gnm.m2", + fileId = "524417", + text = "helm_leather_raiddruid_j_01_scm.m2", + value = "helm_leather_raiddruid_j_01_scm.m2", }, { - fileId = "139581", - text = "helm_mail_pvphorde_a_01_gof.m2", - value = "helm_mail_pvphorde_a_01_gof.m2", + fileId = "524419", + text = "helm_leather_raiddruid_j_01_taf.m2", + value = "helm_leather_raiddruid_j_01_taf.m2", }, { - fileId = "139582", - text = "helm_mail_pvphorde_a_01_huf.m2", - value = "helm_mail_pvphorde_a_01_huf.m2", + fileId = "524421", + text = "helm_leather_raiddruid_j_01_tam.m2", + value = "helm_leather_raiddruid_j_01_tam.m2", }, { - fileId = "139583", - text = "helm_mail_pvphorde_a_01_hum.m2", - value = "helm_mail_pvphorde_a_01_hum.m2", + fileId = "524423", + text = "helm_leather_raiddruid_j_01_trf.m2", + value = "helm_leather_raiddruid_j_01_trf.m2", }, { - fileId = "139584", - text = "helm_mail_pvphorde_a_01_nif.m2", - value = "helm_mail_pvphorde_a_01_nif.m2", + fileId = "524425", + text = "helm_leather_raiddruid_j_01_trm.m2", + value = "helm_leather_raiddruid_j_01_trm.m2", }, { - fileId = "139585", - text = "helm_mail_pvphorde_a_01_nim.m2", - value = "helm_mail_pvphorde_a_01_nim.m2", + fileId = "524427", + text = "helm_leather_raiddruid_j_01_wof.m2", + value = "helm_leather_raiddruid_j_01_wof.m2", }, { - fileId = "139586", - text = "helm_mail_pvphorde_a_01_orf.m2", - value = "helm_mail_pvphorde_a_01_orf.m2", + fileId = "524429", + text = "helm_leather_raiddruid_j_01_wom.m2", + value = "helm_leather_raiddruid_j_01_wom.m2", }, { - fileId = "139587", - text = "helm_mail_pvphorde_a_01_orm.m2", - value = "helm_mail_pvphorde_a_01_orm.m2", + fileId = "533290", + text = "helm_leather_raiddruid_k_01_bef.m2", + value = "helm_leather_raiddruid_k_01_bef.m2", }, { - fileId = "139588", - text = "helm_mail_pvphorde_a_01_scf.m2", - value = "helm_mail_pvphorde_a_01_scf.m2", + fileId = "533292", + text = "helm_leather_raiddruid_k_01_bem.m2", + value = "helm_leather_raiddruid_k_01_bem.m2", }, { - fileId = "139589", - text = "helm_mail_pvphorde_a_01_scm.m2", - value = "helm_mail_pvphorde_a_01_scm.m2", + fileId = "533294", + text = "helm_leather_raiddruid_k_01_drf.m2", + value = "helm_leather_raiddruid_k_01_drf.m2", }, { - fileId = "139590", - text = "helm_mail_pvphorde_a_01_taf.m2", - value = "helm_mail_pvphorde_a_01_taf.m2", + fileId = "533296", + text = "helm_leather_raiddruid_k_01_drm.m2", + value = "helm_leather_raiddruid_k_01_drm.m2", }, { - fileId = "139591", - text = "helm_mail_pvphorde_a_01_tam.m2", - value = "helm_mail_pvphorde_a_01_tam.m2", + fileId = "533298", + text = "helm_leather_raiddruid_k_01_dwf.m2", + value = "helm_leather_raiddruid_k_01_dwf.m2", }, { - fileId = "139592", - text = "helm_mail_pvphorde_a_01_trf.m2", - value = "helm_mail_pvphorde_a_01_trf.m2", + fileId = "533300", + text = "helm_leather_raiddruid_k_01_dwm.m2", + value = "helm_leather_raiddruid_k_01_dwm.m2", }, { - fileId = "139593", - text = "helm_mail_pvphorde_a_01_trm.m2", - value = "helm_mail_pvphorde_a_01_trm.m2", + fileId = "533306", + text = "helm_leather_raiddruid_k_01_gnf.m2", + value = "helm_leather_raiddruid_k_01_gnf.m2", }, { - fileId = "139596", - text = "helm_mail_pvphorde_c_01_bef.m2", - value = "helm_mail_pvphorde_c_01_bef.m2", + fileId = "533308", + text = "helm_leather_raiddruid_k_01_gnm.m2", + value = "helm_leather_raiddruid_k_01_gnm.m2", }, { - fileId = "139597", - text = "helm_mail_pvphorde_c_01_bem.m2", - value = "helm_mail_pvphorde_c_01_bem.m2", + fileId = "533310", + text = "helm_leather_raiddruid_k_01_gof.m2", + value = "helm_leather_raiddruid_k_01_gof.m2", }, { - fileId = "139598", - text = "helm_mail_pvphorde_c_01_drf.m2", - value = "helm_mail_pvphorde_c_01_drf.m2", + fileId = "533312", + text = "helm_leather_raiddruid_k_01_gom.m2", + value = "helm_leather_raiddruid_k_01_gom.m2", }, { - fileId = "139599", - text = "helm_mail_pvphorde_c_01_drm.m2", - value = "helm_mail_pvphorde_c_01_drm.m2", + fileId = "533302", + text = "helm_leather_raiddruid_k_01_huf.m2", + value = "helm_leather_raiddruid_k_01_huf.m2", }, { - fileId = "139600", - text = "helm_mail_pvphorde_c_01_dwf.m2", - value = "helm_mail_pvphorde_c_01_dwf.m2", + fileId = "533304", + text = "helm_leather_raiddruid_k_01_hum.m2", + value = "helm_leather_raiddruid_k_01_hum.m2", }, { - fileId = "139601", - text = "helm_mail_pvphorde_c_01_dwm.m2", - value = "helm_mail_pvphorde_c_01_dwm.m2", + fileId = "533314", + text = "helm_leather_raiddruid_k_01_nif.m2", + value = "helm_leather_raiddruid_k_01_nif.m2", }, { - fileId = "139602", - text = "helm_mail_pvphorde_c_01_gnf.m2", - value = "helm_mail_pvphorde_c_01_gnf.m2", + fileId = "533316", + text = "helm_leather_raiddruid_k_01_nim.m2", + value = "helm_leather_raiddruid_k_01_nim.m2", }, { - fileId = "139603", - text = "helm_mail_pvphorde_c_01_gnm.m2", - value = "helm_mail_pvphorde_c_01_gnm.m2", + fileId = "533318", + text = "helm_leather_raiddruid_k_01_orf.m2", + value = "helm_leather_raiddruid_k_01_orf.m2", }, { - fileId = "139604", - text = "helm_mail_pvphorde_c_01_gof.m2", - value = "helm_mail_pvphorde_c_01_gof.m2", + fileId = "533320", + text = "helm_leather_raiddruid_k_01_orm.m2", + value = "helm_leather_raiddruid_k_01_orm.m2", }, { - fileId = "139605", - text = "helm_mail_pvphorde_c_01_gom.m2", - value = "helm_mail_pvphorde_c_01_gom.m2", + fileId = "533322", + text = "helm_leather_raiddruid_k_01_scf.m2", + value = "helm_leather_raiddruid_k_01_scf.m2", }, { - fileId = "139606", - text = "helm_mail_pvphorde_c_01_huf.m2", - value = "helm_mail_pvphorde_c_01_huf.m2", + fileId = "533324", + text = "helm_leather_raiddruid_k_01_scm.m2", + value = "helm_leather_raiddruid_k_01_scm.m2", }, { - fileId = "139607", - text = "helm_mail_pvphorde_c_01_hum.m2", - value = "helm_mail_pvphorde_c_01_hum.m2", + fileId = "533326", + text = "helm_leather_raiddruid_k_01_taf.m2", + value = "helm_leather_raiddruid_k_01_taf.m2", }, { - fileId = "139608", - text = "helm_mail_pvphorde_c_01_nif.m2", - value = "helm_mail_pvphorde_c_01_nif.m2", + fileId = "533328", + text = "helm_leather_raiddruid_k_01_tam.m2", + value = "helm_leather_raiddruid_k_01_tam.m2", }, { - fileId = "139609", - text = "helm_mail_pvphorde_c_01_nim.m2", - value = "helm_mail_pvphorde_c_01_nim.m2", + fileId = "533330", + text = "helm_leather_raiddruid_k_01_trf.m2", + value = "helm_leather_raiddruid_k_01_trf.m2", }, { - fileId = "139610", - text = "helm_mail_pvphorde_c_01_orf.m2", - value = "helm_mail_pvphorde_c_01_orf.m2", + fileId = "533332", + text = "helm_leather_raiddruid_k_01_trm.m2", + value = "helm_leather_raiddruid_k_01_trm.m2", }, { - fileId = "139611", - text = "helm_mail_pvphorde_c_01_orm.m2", - value = "helm_mail_pvphorde_c_01_orm.m2", + fileId = "533355", + text = "helm_leather_raiddruid_k_01_wof.m2", + value = "helm_leather_raiddruid_k_01_wof.m2", }, { - fileId = "139612", - text = "helm_mail_pvphorde_c_01_scf.m2", - value = "helm_mail_pvphorde_c_01_scf.m2", + fileId = "533357", + text = "helm_leather_raiddruid_k_01_wom.m2", + value = "helm_leather_raiddruid_k_01_wom.m2", }, { - fileId = "139613", - text = "helm_mail_pvphorde_c_01_scm.m2", - value = "helm_mail_pvphorde_c_01_scm.m2", + fileId = "138842", + text = "helm_leather_raidrogue_a_01_bef.m2", + value = "helm_leather_raidrogue_a_01_bef.m2", }, { - fileId = "139614", - text = "helm_mail_pvphorde_c_01_taf.m2", - value = "helm_mail_pvphorde_c_01_taf.m2", + fileId = "138843", + text = "helm_leather_raidrogue_a_01_bem.m2", + value = "helm_leather_raidrogue_a_01_bem.m2", }, { - fileId = "139615", - text = "helm_mail_pvphorde_c_01_tam.m2", - value = "helm_mail_pvphorde_c_01_tam.m2", + fileId = "138844", + text = "helm_leather_raidrogue_a_01_drf.m2", + value = "helm_leather_raidrogue_a_01_drf.m2", }, { - fileId = "139616", - text = "helm_mail_pvphorde_c_01_trf.m2", - value = "helm_mail_pvphorde_c_01_trf.m2", + fileId = "138845", + text = "helm_leather_raidrogue_a_01_drm.m2", + value = "helm_leather_raidrogue_a_01_drm.m2", }, { - fileId = "139617", - text = "helm_mail_pvphorde_c_01_trm.m2", - value = "helm_mail_pvphorde_c_01_trm.m2", + fileId = "138846", + text = "helm_leather_raidrogue_a_01_dwf.m2", + value = "helm_leather_raidrogue_a_01_dwf.m2", }, { - fileId = "237975", - text = "helm_mail_pvphunter_b_01_bef.m2", - value = "helm_mail_pvphunter_b_01_bef.m2", + fileId = "138847", + text = "helm_leather_raidrogue_a_01_dwm.m2", + value = "helm_leather_raidrogue_a_01_dwm.m2", }, { - fileId = "237976", - text = "helm_mail_pvphunter_b_01_bem.m2", - value = "helm_mail_pvphunter_b_01_bem.m2", + fileId = "138848", + text = "helm_leather_raidrogue_a_01_gnf.m2", + value = "helm_leather_raidrogue_a_01_gnf.m2", }, { - fileId = "237977", - text = "helm_mail_pvphunter_b_01_drf.m2", - value = "helm_mail_pvphunter_b_01_drf.m2", + fileId = "138849", + text = "helm_leather_raidrogue_a_01_gnm.m2", + value = "helm_leather_raidrogue_a_01_gnm.m2", }, { - fileId = "237978", - text = "helm_mail_pvphunter_b_01_drm.m2", - value = "helm_mail_pvphunter_b_01_drm.m2", + fileId = "138850", + text = "helm_leather_raidrogue_a_01_gof.m2", + value = "helm_leather_raidrogue_a_01_gof.m2", }, { - fileId = "237979", - text = "helm_mail_pvphunter_b_01_dwf.m2", - value = "helm_mail_pvphunter_b_01_dwf.m2", + fileId = "138851", + text = "helm_leather_raidrogue_a_01_gom.m2", + value = "helm_leather_raidrogue_a_01_gom.m2", }, { - fileId = "237980", - text = "helm_mail_pvphunter_b_01_dwm.m2", - value = "helm_mail_pvphunter_b_01_dwm.m2", + fileId = "138852", + text = "helm_leather_raidrogue_a_01_huf.m2", + value = "helm_leather_raidrogue_a_01_huf.m2", }, { - fileId = "237981", - text = "helm_mail_pvphunter_b_01_gnf.m2", - value = "helm_mail_pvphunter_b_01_gnf.m2", + fileId = "138853", + text = "helm_leather_raidrogue_a_01_hum.m2", + value = "helm_leather_raidrogue_a_01_hum.m2", }, { - fileId = "237982", - text = "helm_mail_pvphunter_b_01_gnm.m2", - value = "helm_mail_pvphunter_b_01_gnm.m2", + fileId = "138854", + text = "helm_leather_raidrogue_a_01_nif.m2", + value = "helm_leather_raidrogue_a_01_nif.m2", }, { - fileId = "237983", - text = "helm_mail_pvphunter_b_01_gof.m2", - value = "helm_mail_pvphunter_b_01_gof.m2", + fileId = "138855", + text = "helm_leather_raidrogue_a_01_nim.m2", + value = "helm_leather_raidrogue_a_01_nim.m2", }, { - fileId = "237984", - text = "helm_mail_pvphunter_b_01_gom.m2", - value = "helm_mail_pvphunter_b_01_gom.m2", + fileId = "138856", + text = "helm_leather_raidrogue_a_01_orf.m2", + value = "helm_leather_raidrogue_a_01_orf.m2", }, { - fileId = "237985", - text = "helm_mail_pvphunter_b_01_huf.m2", - value = "helm_mail_pvphunter_b_01_huf.m2", + fileId = "138857", + text = "helm_leather_raidrogue_a_01_orm.m2", + value = "helm_leather_raidrogue_a_01_orm.m2", }, { - fileId = "237986", - text = "helm_mail_pvphunter_b_01_hum.m2", - value = "helm_mail_pvphunter_b_01_hum.m2", + fileId = "138858", + text = "helm_leather_raidrogue_a_01_scf.m2", + value = "helm_leather_raidrogue_a_01_scf.m2", }, { - fileId = "237987", - text = "helm_mail_pvphunter_b_01_nif.m2", - value = "helm_mail_pvphunter_b_01_nif.m2", + fileId = "138859", + text = "helm_leather_raidrogue_a_01_scm.m2", + value = "helm_leather_raidrogue_a_01_scm.m2", }, { - fileId = "237988", - text = "helm_mail_pvphunter_b_01_nim.m2", - value = "helm_mail_pvphunter_b_01_nim.m2", + fileId = "138860", + text = "helm_leather_raidrogue_a_01_taf.m2", + value = "helm_leather_raidrogue_a_01_taf.m2", }, { - fileId = "237989", - text = "helm_mail_pvphunter_b_01_orf.m2", - value = "helm_mail_pvphunter_b_01_orf.m2", + fileId = "138861", + text = "helm_leather_raidrogue_a_01_tam.m2", + value = "helm_leather_raidrogue_a_01_tam.m2", }, { - fileId = "237990", - text = "helm_mail_pvphunter_b_01_orm.m2", - value = "helm_mail_pvphunter_b_01_orm.m2", + fileId = "138862", + text = "helm_leather_raidrogue_a_01_trf.m2", + value = "helm_leather_raidrogue_a_01_trf.m2", }, { - fileId = "237991", - text = "helm_mail_pvphunter_b_01_scf.m2", - value = "helm_mail_pvphunter_b_01_scf.m2", + fileId = "138863", + text = "helm_leather_raidrogue_a_01_trm.m2", + value = "helm_leather_raidrogue_a_01_trm.m2", }, { - fileId = "237992", - text = "helm_mail_pvphunter_b_01_scm.m2", - value = "helm_mail_pvphunter_b_01_scm.m2", + fileId = "454154", + text = "helm_leather_raidrogue_a_01_wof.m2", + value = "helm_leather_raidrogue_a_01_wof.m2", }, { - fileId = "237993", - text = "helm_mail_pvphunter_b_01_taf.m2", - value = "helm_mail_pvphunter_b_01_taf.m2", + fileId = "438771", + text = "helm_leather_raidrogue_a_01_wom.m2", + value = "helm_leather_raidrogue_a_01_wom.m2", }, { - fileId = "237994", - text = "helm_mail_pvphunter_b_01_tam.m2", - value = "helm_mail_pvphunter_b_01_tam.m2", + fileId = "138867", + text = "helm_leather_raidrogue_b_01_bef.m2", + value = "helm_leather_raidrogue_b_01_bef.m2", }, { - fileId = "237995", - text = "helm_mail_pvphunter_b_01_trf.m2", - value = "helm_mail_pvphunter_b_01_trf.m2", + fileId = "138868", + text = "helm_leather_raidrogue_b_01_bem.m2", + value = "helm_leather_raidrogue_b_01_bem.m2", }, { - fileId = "237996", - text = "helm_mail_pvphunter_b_01_trm.m2", - value = "helm_mail_pvphunter_b_01_trm.m2", + fileId = "138869", + text = "helm_leather_raidrogue_b_01_drf.m2", + value = "helm_leather_raidrogue_b_01_drf.m2", }, { - fileId = "254120", - text = "helm_mail_pvphunter_b_02_bef.m2", - value = "helm_mail_pvphunter_b_02_bef.m2", + fileId = "138870", + text = "helm_leather_raidrogue_b_01_drm.m2", + value = "helm_leather_raidrogue_b_01_drm.m2", }, { - fileId = "254121", - text = "helm_mail_pvphunter_b_02_bem.m2", - value = "helm_mail_pvphunter_b_02_bem.m2", + fileId = "138871", + text = "helm_leather_raidrogue_b_01_dwf.m2", + value = "helm_leather_raidrogue_b_01_dwf.m2", }, { - fileId = "254122", - text = "helm_mail_pvphunter_b_02_drf.m2", - value = "helm_mail_pvphunter_b_02_drf.m2", + fileId = "138872", + text = "helm_leather_raidrogue_b_01_dwm.m2", + value = "helm_leather_raidrogue_b_01_dwm.m2", }, { - fileId = "254123", - text = "helm_mail_pvphunter_b_02_drm.m2", - value = "helm_mail_pvphunter_b_02_drm.m2", + fileId = "138873", + text = "helm_leather_raidrogue_b_01_gnf.m2", + value = "helm_leather_raidrogue_b_01_gnf.m2", }, { - fileId = "254124", - text = "helm_mail_pvphunter_b_02_dwf.m2", - value = "helm_mail_pvphunter_b_02_dwf.m2", + fileId = "138874", + text = "helm_leather_raidrogue_b_01_gnm.m2", + value = "helm_leather_raidrogue_b_01_gnm.m2", }, { - fileId = "254125", - text = "helm_mail_pvphunter_b_02_dwm.m2", - value = "helm_mail_pvphunter_b_02_dwm.m2", + fileId = "138875", + text = "helm_leather_raidrogue_b_01_gof.m2", + value = "helm_leather_raidrogue_b_01_gof.m2", }, { - fileId = "254126", - text = "helm_mail_pvphunter_b_02_gnf.m2", - value = "helm_mail_pvphunter_b_02_gnf.m2", + fileId = "138876", + text = "helm_leather_raidrogue_b_01_gom.m2", + value = "helm_leather_raidrogue_b_01_gom.m2", }, { - fileId = "254127", - text = "helm_mail_pvphunter_b_02_gnm.m2", - value = "helm_mail_pvphunter_b_02_gnm.m2", + fileId = "138877", + text = "helm_leather_raidrogue_b_01_huf.m2", + value = "helm_leather_raidrogue_b_01_huf.m2", }, { - fileId = "254128", - text = "helm_mail_pvphunter_b_02_gof.m2", - value = "helm_mail_pvphunter_b_02_gof.m2", + fileId = "138878", + text = "helm_leather_raidrogue_b_01_hum.m2", + value = "helm_leather_raidrogue_b_01_hum.m2", }, { - fileId = "254129", - text = "helm_mail_pvphunter_b_02_gom.m2", - value = "helm_mail_pvphunter_b_02_gom.m2", + fileId = "138879", + text = "helm_leather_raidrogue_b_01_nif.m2", + value = "helm_leather_raidrogue_b_01_nif.m2", }, { - fileId = "254130", - text = "helm_mail_pvphunter_b_02_huf.m2", - value = "helm_mail_pvphunter_b_02_huf.m2", + fileId = "138880", + text = "helm_leather_raidrogue_b_01_nim.m2", + value = "helm_leather_raidrogue_b_01_nim.m2", }, { - fileId = "254131", - text = "helm_mail_pvphunter_b_02_hum.m2", - value = "helm_mail_pvphunter_b_02_hum.m2", + fileId = "138881", + text = "helm_leather_raidrogue_b_01_orf.m2", + value = "helm_leather_raidrogue_b_01_orf.m2", }, { - fileId = "254132", - text = "helm_mail_pvphunter_b_02_nif.m2", - value = "helm_mail_pvphunter_b_02_nif.m2", + fileId = "138882", + text = "helm_leather_raidrogue_b_01_orm.m2", + value = "helm_leather_raidrogue_b_01_orm.m2", }, { - fileId = "254133", - text = "helm_mail_pvphunter_b_02_nim.m2", - value = "helm_mail_pvphunter_b_02_nim.m2", + fileId = "138883", + text = "helm_leather_raidrogue_b_01_scf.m2", + value = "helm_leather_raidrogue_b_01_scf.m2", }, { - fileId = "254134", - text = "helm_mail_pvphunter_b_02_orf.m2", - value = "helm_mail_pvphunter_b_02_orf.m2", + fileId = "138884", + text = "helm_leather_raidrogue_b_01_scm.m2", + value = "helm_leather_raidrogue_b_01_scm.m2", }, { - fileId = "254135", - text = "helm_mail_pvphunter_b_02_orm.m2", - value = "helm_mail_pvphunter_b_02_orm.m2", + fileId = "138885", + text = "helm_leather_raidrogue_b_01_taf.m2", + value = "helm_leather_raidrogue_b_01_taf.m2", }, { - fileId = "254136", - text = "helm_mail_pvphunter_b_02_scf.m2", - value = "helm_mail_pvphunter_b_02_scf.m2", + fileId = "138886", + text = "helm_leather_raidrogue_b_01_tam.m2", + value = "helm_leather_raidrogue_b_01_tam.m2", }, { - fileId = "254137", - text = "helm_mail_pvphunter_b_02_scm.m2", - value = "helm_mail_pvphunter_b_02_scm.m2", + fileId = "138887", + text = "helm_leather_raidrogue_b_01_trf.m2", + value = "helm_leather_raidrogue_b_01_trf.m2", }, { - fileId = "254138", - text = "helm_mail_pvphunter_b_02_taf.m2", - value = "helm_mail_pvphunter_b_02_taf.m2", + fileId = "138888", + text = "helm_leather_raidrogue_b_01_trm.m2", + value = "helm_leather_raidrogue_b_01_trm.m2", }, { - fileId = "254139", - text = "helm_mail_pvphunter_b_02_tam.m2", - value = "helm_mail_pvphunter_b_02_tam.m2", + fileId = "454155", + text = "helm_leather_raidrogue_b_01_wof.m2", + value = "helm_leather_raidrogue_b_01_wof.m2", }, { - fileId = "254140", - text = "helm_mail_pvphunter_b_02_trf.m2", - value = "helm_mail_pvphunter_b_02_trf.m2", + fileId = "442277", + text = "helm_leather_raidrogue_b_01_wom.m2", + value = "helm_leather_raidrogue_b_01_wom.m2", }, { - fileId = "254141", - text = "helm_mail_pvphunter_b_02_trm.m2", - value = "helm_mail_pvphunter_b_02_trm.m2", + fileId = "138893", + text = "helm_leather_raidrogue_c_01_bef.m2", + value = "helm_leather_raidrogue_c_01_bef.m2", }, { - fileId = "307178", - text = "helm_mail_pvphunter_b_03_bef.m2", - value = "helm_mail_pvphunter_b_03_bef.m2", + fileId = "138894", + text = "helm_leather_raidrogue_c_01_bem.m2", + value = "helm_leather_raidrogue_c_01_bem.m2", }, { - fileId = "307179", - text = "helm_mail_pvphunter_b_03_bem.m2", - value = "helm_mail_pvphunter_b_03_bem.m2", + fileId = "138895", + text = "helm_leather_raidrogue_c_01_drf.m2", + value = "helm_leather_raidrogue_c_01_drf.m2", }, { - fileId = "307180", - text = "helm_mail_pvphunter_b_03_drf.m2", - value = "helm_mail_pvphunter_b_03_drf.m2", + fileId = "138896", + text = "helm_leather_raidrogue_c_01_drm.m2", + value = "helm_leather_raidrogue_c_01_drm.m2", }, { - fileId = "307181", - text = "helm_mail_pvphunter_b_03_drm.m2", - value = "helm_mail_pvphunter_b_03_drm.m2", + fileId = "138897", + text = "helm_leather_raidrogue_c_01_dwf.m2", + value = "helm_leather_raidrogue_c_01_dwf.m2", }, { - fileId = "307182", - text = "helm_mail_pvphunter_b_03_dwf.m2", - value = "helm_mail_pvphunter_b_03_dwf.m2", + fileId = "138898", + text = "helm_leather_raidrogue_c_01_dwm.m2", + value = "helm_leather_raidrogue_c_01_dwm.m2", }, { - fileId = "307183", - text = "helm_mail_pvphunter_b_03_dwm.m2", - value = "helm_mail_pvphunter_b_03_dwm.m2", + fileId = "138899", + text = "helm_leather_raidrogue_c_01_gnf.m2", + value = "helm_leather_raidrogue_c_01_gnf.m2", }, { - fileId = "307184", - text = "helm_mail_pvphunter_b_03_gnf.m2", - value = "helm_mail_pvphunter_b_03_gnf.m2", + fileId = "138900", + text = "helm_leather_raidrogue_c_01_gnm.m2", + value = "helm_leather_raidrogue_c_01_gnm.m2", }, { - fileId = "307185", - text = "helm_mail_pvphunter_b_03_gnm.m2", - value = "helm_mail_pvphunter_b_03_gnm.m2", + fileId = "138901", + text = "helm_leather_raidrogue_c_01_gof.m2", + value = "helm_leather_raidrogue_c_01_gof.m2", }, { - fileId = "307186", - text = "helm_mail_pvphunter_b_03_gof.m2", - value = "helm_mail_pvphunter_b_03_gof.m2", + fileId = "138902", + text = "helm_leather_raidrogue_c_01_gom.m2", + value = "helm_leather_raidrogue_c_01_gom.m2", }, { - fileId = "307187", - text = "helm_mail_pvphunter_b_03_gom.m2", - value = "helm_mail_pvphunter_b_03_gom.m2", + fileId = "138903", + text = "helm_leather_raidrogue_c_01_huf.m2", + value = "helm_leather_raidrogue_c_01_huf.m2", }, { - fileId = "307188", - text = "helm_mail_pvphunter_b_03_huf.m2", - value = "helm_mail_pvphunter_b_03_huf.m2", + fileId = "138904", + text = "helm_leather_raidrogue_c_01_hum.m2", + value = "helm_leather_raidrogue_c_01_hum.m2", }, { - fileId = "307189", - text = "helm_mail_pvphunter_b_03_hum.m2", - value = "helm_mail_pvphunter_b_03_hum.m2", + fileId = "138905", + text = "helm_leather_raidrogue_c_01_nif.m2", + value = "helm_leather_raidrogue_c_01_nif.m2", }, { - fileId = "307190", - text = "helm_mail_pvphunter_b_03_nif.m2", - value = "helm_mail_pvphunter_b_03_nif.m2", + fileId = "138906", + text = "helm_leather_raidrogue_c_01_nim.m2", + value = "helm_leather_raidrogue_c_01_nim.m2", }, { - fileId = "307191", - text = "helm_mail_pvphunter_b_03_nim.m2", - value = "helm_mail_pvphunter_b_03_nim.m2", + fileId = "138907", + text = "helm_leather_raidrogue_c_01_orf.m2", + value = "helm_leather_raidrogue_c_01_orf.m2", }, { - fileId = "307192", - text = "helm_mail_pvphunter_b_03_orf.m2", - value = "helm_mail_pvphunter_b_03_orf.m2", + fileId = "138908", + text = "helm_leather_raidrogue_c_01_orm.m2", + value = "helm_leather_raidrogue_c_01_orm.m2", }, { - fileId = "307193", - text = "helm_mail_pvphunter_b_03_orm.m2", - value = "helm_mail_pvphunter_b_03_orm.m2", + fileId = "138909", + text = "helm_leather_raidrogue_c_01_scf.m2", + value = "helm_leather_raidrogue_c_01_scf.m2", }, { - fileId = "307194", - text = "helm_mail_pvphunter_b_03_scf.m2", - value = "helm_mail_pvphunter_b_03_scf.m2", + fileId = "138910", + text = "helm_leather_raidrogue_c_01_scm.m2", + value = "helm_leather_raidrogue_c_01_scm.m2", }, { - fileId = "307195", - text = "helm_mail_pvphunter_b_03_scm.m2", - value = "helm_mail_pvphunter_b_03_scm.m2", + fileId = "138911", + text = "helm_leather_raidrogue_c_01_taf.m2", + value = "helm_leather_raidrogue_c_01_taf.m2", }, { - fileId = "307196", - text = "helm_mail_pvphunter_b_03_taf.m2", - value = "helm_mail_pvphunter_b_03_taf.m2", + fileId = "138912", + text = "helm_leather_raidrogue_c_01_tam.m2", + value = "helm_leather_raidrogue_c_01_tam.m2", }, { - fileId = "307197", - text = "helm_mail_pvphunter_b_03_tam.m2", - value = "helm_mail_pvphunter_b_03_tam.m2", + fileId = "138913", + text = "helm_leather_raidrogue_c_01_trf.m2", + value = "helm_leather_raidrogue_c_01_trf.m2", }, { - fileId = "307198", - text = "helm_mail_pvphunter_b_03_trf.m2", - value = "helm_mail_pvphunter_b_03_trf.m2", + fileId = "138914", + text = "helm_leather_raidrogue_c_01_trm.m2", + value = "helm_leather_raidrogue_c_01_trm.m2", }, { - fileId = "307199", - text = "helm_mail_pvphunter_b_03_trm.m2", - value = "helm_mail_pvphunter_b_03_trm.m2", + fileId = "454487", + text = "helm_leather_raidrogue_c_01_wof.m2", + value = "helm_leather_raidrogue_c_01_wof.m2", }, { - fileId = "344183", - text = "helm_mail_pvphunter_b_04_bef.m2", - value = "helm_mail_pvphunter_b_04_bef.m2", + fileId = "442278", + text = "helm_leather_raidrogue_c_01_wom.m2", + value = "helm_leather_raidrogue_c_01_wom.m2", }, { - fileId = "344184", - text = "helm_mail_pvphunter_b_04_bem.m2", - value = "helm_mail_pvphunter_b_04_bem.m2", + fileId = "138918", + text = "helm_leather_raidrogue_d_01_bef.m2", + value = "helm_leather_raidrogue_d_01_bef.m2", }, { - fileId = "344185", - text = "helm_mail_pvphunter_b_04_drf.m2", - value = "helm_mail_pvphunter_b_04_drf.m2", + fileId = "138919", + text = "helm_leather_raidrogue_d_01_bem.m2", + value = "helm_leather_raidrogue_d_01_bem.m2", }, { - fileId = "344186", - text = "helm_mail_pvphunter_b_04_drm.m2", - value = "helm_mail_pvphunter_b_04_drm.m2", + fileId = "138920", + text = "helm_leather_raidrogue_d_01_drf.m2", + value = "helm_leather_raidrogue_d_01_drf.m2", }, { - fileId = "344187", - text = "helm_mail_pvphunter_b_04_dwf.m2", - value = "helm_mail_pvphunter_b_04_dwf.m2", + fileId = "138921", + text = "helm_leather_raidrogue_d_01_drm.m2", + value = "helm_leather_raidrogue_d_01_drm.m2", }, { - fileId = "344188", - text = "helm_mail_pvphunter_b_04_dwm.m2", - value = "helm_mail_pvphunter_b_04_dwm.m2", + fileId = "138922", + text = "helm_leather_raidrogue_d_01_dwf.m2", + value = "helm_leather_raidrogue_d_01_dwf.m2", }, { - fileId = "344189", - text = "helm_mail_pvphunter_b_04_gnf.m2", - value = "helm_mail_pvphunter_b_04_gnf.m2", + fileId = "138923", + text = "helm_leather_raidrogue_d_01_dwm.m2", + value = "helm_leather_raidrogue_d_01_dwm.m2", }, { - fileId = "344190", - text = "helm_mail_pvphunter_b_04_gnm.m2", - value = "helm_mail_pvphunter_b_04_gnm.m2", + fileId = "138924", + text = "helm_leather_raidrogue_d_01_gnf.m2", + value = "helm_leather_raidrogue_d_01_gnf.m2", }, { - fileId = "344191", - text = "helm_mail_pvphunter_b_04_gof.m2", - value = "helm_mail_pvphunter_b_04_gof.m2", + fileId = "138925", + text = "helm_leather_raidrogue_d_01_gnm.m2", + value = "helm_leather_raidrogue_d_01_gnm.m2", }, { - fileId = "344192", - text = "helm_mail_pvphunter_b_04_gom.m2", - value = "helm_mail_pvphunter_b_04_gom.m2", + fileId = "138926", + text = "helm_leather_raidrogue_d_01_gof.m2", + value = "helm_leather_raidrogue_d_01_gof.m2", }, { - fileId = "344193", - text = "helm_mail_pvphunter_b_04_huf.m2", - value = "helm_mail_pvphunter_b_04_huf.m2", + fileId = "138927", + text = "helm_leather_raidrogue_d_01_gom.m2", + value = "helm_leather_raidrogue_d_01_gom.m2", }, { - fileId = "344194", - text = "helm_mail_pvphunter_b_04_hum.m2", - value = "helm_mail_pvphunter_b_04_hum.m2", + fileId = "138928", + text = "helm_leather_raidrogue_d_01_huf.m2", + value = "helm_leather_raidrogue_d_01_huf.m2", }, { - fileId = "344195", - text = "helm_mail_pvphunter_b_04_nif.m2", - value = "helm_mail_pvphunter_b_04_nif.m2", + fileId = "138929", + text = "helm_leather_raidrogue_d_01_hum.m2", + value = "helm_leather_raidrogue_d_01_hum.m2", }, { - fileId = "344196", - text = "helm_mail_pvphunter_b_04_nim.m2", - value = "helm_mail_pvphunter_b_04_nim.m2", + fileId = "138930", + text = "helm_leather_raidrogue_d_01_nif.m2", + value = "helm_leather_raidrogue_d_01_nif.m2", }, { - fileId = "344197", - text = "helm_mail_pvphunter_b_04_orf.m2", - value = "helm_mail_pvphunter_b_04_orf.m2", + fileId = "138931", + text = "helm_leather_raidrogue_d_01_nim.m2", + value = "helm_leather_raidrogue_d_01_nim.m2", }, { - fileId = "344198", - text = "helm_mail_pvphunter_b_04_orm.m2", - value = "helm_mail_pvphunter_b_04_orm.m2", + fileId = "138932", + text = "helm_leather_raidrogue_d_01_orf.m2", + value = "helm_leather_raidrogue_d_01_orf.m2", }, { - fileId = "344199", - text = "helm_mail_pvphunter_b_04_scf.m2", - value = "helm_mail_pvphunter_b_04_scf.m2", + fileId = "138933", + text = "helm_leather_raidrogue_d_01_orm.m2", + value = "helm_leather_raidrogue_d_01_orm.m2", }, { - fileId = "344200", - text = "helm_mail_pvphunter_b_04_scm.m2", - value = "helm_mail_pvphunter_b_04_scm.m2", + fileId = "138934", + text = "helm_leather_raidrogue_d_01_scf.m2", + value = "helm_leather_raidrogue_d_01_scf.m2", }, { - fileId = "344201", - text = "helm_mail_pvphunter_b_04_taf.m2", - value = "helm_mail_pvphunter_b_04_taf.m2", + fileId = "138935", + text = "helm_leather_raidrogue_d_01_scm.m2", + value = "helm_leather_raidrogue_d_01_scm.m2", }, { - fileId = "344202", - text = "helm_mail_pvphunter_b_04_tam.m2", - value = "helm_mail_pvphunter_b_04_tam.m2", + fileId = "138936", + text = "helm_leather_raidrogue_d_01_taf.m2", + value = "helm_leather_raidrogue_d_01_taf.m2", }, { - fileId = "344203", - text = "helm_mail_pvphunter_b_04_trf.m2", - value = "helm_mail_pvphunter_b_04_trf.m2", + fileId = "138937", + text = "helm_leather_raidrogue_d_01_tam.m2", + value = "helm_leather_raidrogue_d_01_tam.m2", }, { - fileId = "344204", - text = "helm_mail_pvphunter_b_04_trm.m2", - value = "helm_mail_pvphunter_b_04_trm.m2", + fileId = "138938", + text = "helm_leather_raidrogue_d_01_trf.m2", + value = "helm_leather_raidrogue_d_01_trf.m2", }, { - fileId = "238000", - text = "helm_mail_pvpshaman_b_01_bef.m2", - value = "helm_mail_pvpshaman_b_01_bef.m2", + fileId = "138939", + text = "helm_leather_raidrogue_d_01_trm.m2", + value = "helm_leather_raidrogue_d_01_trm.m2", }, { - fileId = "238001", - text = "helm_mail_pvpshaman_b_01_bem.m2", - value = "helm_mail_pvpshaman_b_01_bem.m2", + fileId = "454488", + text = "helm_leather_raidrogue_d_01_wof.m2", + value = "helm_leather_raidrogue_d_01_wof.m2", }, { - fileId = "238002", - text = "helm_mail_pvpshaman_b_01_drf.m2", - value = "helm_mail_pvpshaman_b_01_drf.m2", + fileId = "442279", + text = "helm_leather_raidrogue_d_01_wom.m2", + value = "helm_leather_raidrogue_d_01_wom.m2", }, { - fileId = "238003", - text = "helm_mail_pvpshaman_b_01_drm.m2", - value = "helm_mail_pvpshaman_b_01_drm.m2", + fileId = "138941", + text = "helm_leather_raidrogue_e_01_bef.m2", + value = "helm_leather_raidrogue_e_01_bef.m2", }, { - fileId = "238004", - text = "helm_mail_pvpshaman_b_01_dwf.m2", - value = "helm_mail_pvpshaman_b_01_dwf.m2", + fileId = "138942", + text = "helm_leather_raidrogue_e_01_bem.m2", + value = "helm_leather_raidrogue_e_01_bem.m2", }, { - fileId = "238005", - text = "helm_mail_pvpshaman_b_01_dwm.m2", - value = "helm_mail_pvpshaman_b_01_dwm.m2", + fileId = "138943", + text = "helm_leather_raidrogue_e_01_drf.m2", + value = "helm_leather_raidrogue_e_01_drf.m2", }, { - fileId = "238006", - text = "helm_mail_pvpshaman_b_01_gnf.m2", - value = "helm_mail_pvpshaman_b_01_gnf.m2", + fileId = "138944", + text = "helm_leather_raidrogue_e_01_drm.m2", + value = "helm_leather_raidrogue_e_01_drm.m2", }, { - fileId = "238007", - text = "helm_mail_pvpshaman_b_01_gnm.m2", - value = "helm_mail_pvpshaman_b_01_gnm.m2", + fileId = "138945", + text = "helm_leather_raidrogue_e_01_dwf.m2", + value = "helm_leather_raidrogue_e_01_dwf.m2", }, { - fileId = "238008", - text = "helm_mail_pvpshaman_b_01_gof.m2", - value = "helm_mail_pvpshaman_b_01_gof.m2", + fileId = "138946", + text = "helm_leather_raidrogue_e_01_dwm.m2", + value = "helm_leather_raidrogue_e_01_dwm.m2", }, { - fileId = "238009", - text = "helm_mail_pvpshaman_b_01_gom.m2", - value = "helm_mail_pvpshaman_b_01_gom.m2", + fileId = "138947", + text = "helm_leather_raidrogue_e_01_gnf.m2", + value = "helm_leather_raidrogue_e_01_gnf.m2", }, { - fileId = "238010", - text = "helm_mail_pvpshaman_b_01_huf.m2", - value = "helm_mail_pvpshaman_b_01_huf.m2", + fileId = "138948", + text = "helm_leather_raidrogue_e_01_gnm.m2", + value = "helm_leather_raidrogue_e_01_gnm.m2", }, { - fileId = "238011", - text = "helm_mail_pvpshaman_b_01_hum.m2", - value = "helm_mail_pvpshaman_b_01_hum.m2", + fileId = "138949", + text = "helm_leather_raidrogue_e_01_gof.m2", + value = "helm_leather_raidrogue_e_01_gof.m2", }, { - fileId = "238012", - text = "helm_mail_pvpshaman_b_01_nif.m2", - value = "helm_mail_pvpshaman_b_01_nif.m2", + fileId = "138950", + text = "helm_leather_raidrogue_e_01_gom.m2", + value = "helm_leather_raidrogue_e_01_gom.m2", }, { - fileId = "238013", - text = "helm_mail_pvpshaman_b_01_nim.m2", - value = "helm_mail_pvpshaman_b_01_nim.m2", + fileId = "138951", + text = "helm_leather_raidrogue_e_01_huf.m2", + value = "helm_leather_raidrogue_e_01_huf.m2", }, { - fileId = "238014", - text = "helm_mail_pvpshaman_b_01_orf.m2", - value = "helm_mail_pvpshaman_b_01_orf.m2", + fileId = "138952", + text = "helm_leather_raidrogue_e_01_hum.m2", + value = "helm_leather_raidrogue_e_01_hum.m2", }, { - fileId = "238015", - text = "helm_mail_pvpshaman_b_01_orm.m2", - value = "helm_mail_pvpshaman_b_01_orm.m2", + fileId = "138953", + text = "helm_leather_raidrogue_e_01_nif.m2", + value = "helm_leather_raidrogue_e_01_nif.m2", }, { - fileId = "238016", - text = "helm_mail_pvpshaman_b_01_scf.m2", - value = "helm_mail_pvpshaman_b_01_scf.m2", + fileId = "138954", + text = "helm_leather_raidrogue_e_01_nim.m2", + value = "helm_leather_raidrogue_e_01_nim.m2", }, { - fileId = "238017", - text = "helm_mail_pvpshaman_b_01_scm.m2", - value = "helm_mail_pvpshaman_b_01_scm.m2", + fileId = "138955", + text = "helm_leather_raidrogue_e_01_orf.m2", + value = "helm_leather_raidrogue_e_01_orf.m2", }, { - fileId = "238018", - text = "helm_mail_pvpshaman_b_01_taf.m2", - value = "helm_mail_pvpshaman_b_01_taf.m2", + fileId = "138956", + text = "helm_leather_raidrogue_e_01_orm.m2", + value = "helm_leather_raidrogue_e_01_orm.m2", }, { - fileId = "238019", - text = "helm_mail_pvpshaman_b_01_tam.m2", - value = "helm_mail_pvpshaman_b_01_tam.m2", + fileId = "138957", + text = "helm_leather_raidrogue_e_01_scf.m2", + value = "helm_leather_raidrogue_e_01_scf.m2", }, { - fileId = "238020", - text = "helm_mail_pvpshaman_b_01_trf.m2", - value = "helm_mail_pvpshaman_b_01_trf.m2", + fileId = "138958", + text = "helm_leather_raidrogue_e_01_scm.m2", + value = "helm_leather_raidrogue_e_01_scm.m2", }, { - fileId = "238021", - text = "helm_mail_pvpshaman_b_01_trm.m2", - value = "helm_mail_pvpshaman_b_01_trm.m2", + fileId = "138959", + text = "helm_leather_raidrogue_e_01_taf.m2", + value = "helm_leather_raidrogue_e_01_taf.m2", }, { - fileId = "255211", - text = "helm_mail_pvpshaman_b_02_bef.m2", - value = "helm_mail_pvpshaman_b_02_bef.m2", - }, + fileId = "138960", + text = "helm_leather_raidrogue_e_01_tam.m2", + value = "helm_leather_raidrogue_e_01_tam.m2", + }, { - fileId = "255212", - text = "helm_mail_pvpshaman_b_02_bem.m2", - value = "helm_mail_pvpshaman_b_02_bem.m2", + fileId = "138961", + text = "helm_leather_raidrogue_e_01_trf.m2", + value = "helm_leather_raidrogue_e_01_trf.m2", }, { - fileId = "255213", - text = "helm_mail_pvpshaman_b_02_drf.m2", - value = "helm_mail_pvpshaman_b_02_drf.m2", + fileId = "138962", + text = "helm_leather_raidrogue_e_01_trm.m2", + value = "helm_leather_raidrogue_e_01_trm.m2", }, { - fileId = "255214", - text = "helm_mail_pvpshaman_b_02_drm.m2", - value = "helm_mail_pvpshaman_b_02_drm.m2", + fileId = "454489", + text = "helm_leather_raidrogue_e_01_wof.m2", + value = "helm_leather_raidrogue_e_01_wof.m2", }, { - fileId = "255215", - text = "helm_mail_pvpshaman_b_02_dwf.m2", - value = "helm_mail_pvpshaman_b_02_dwf.m2", + fileId = "442280", + text = "helm_leather_raidrogue_e_01_wom.m2", + value = "helm_leather_raidrogue_e_01_wom.m2", }, { - fileId = "255216", - text = "helm_mail_pvpshaman_b_02_dwm.m2", - value = "helm_mail_pvpshaman_b_02_dwm.m2", + fileId = "138967", + text = "helm_leather_raidrogue_f_01_bef.m2", + value = "helm_leather_raidrogue_f_01_bef.m2", }, { - fileId = "255217", - text = "helm_mail_pvpshaman_b_02_gnf.m2", - value = "helm_mail_pvpshaman_b_02_gnf.m2", + fileId = "138968", + text = "helm_leather_raidrogue_f_01_bem.m2", + value = "helm_leather_raidrogue_f_01_bem.m2", }, { - fileId = "255218", - text = "helm_mail_pvpshaman_b_02_gnm.m2", - value = "helm_mail_pvpshaman_b_02_gnm.m2", + fileId = "138969", + text = "helm_leather_raidrogue_f_01_drf.m2", + value = "helm_leather_raidrogue_f_01_drf.m2", }, { - fileId = "255219", - text = "helm_mail_pvpshaman_b_02_gof.m2", - value = "helm_mail_pvpshaman_b_02_gof.m2", + fileId = "138970", + text = "helm_leather_raidrogue_f_01_drm.m2", + value = "helm_leather_raidrogue_f_01_drm.m2", }, { - fileId = "255220", - text = "helm_mail_pvpshaman_b_02_gom.m2", - value = "helm_mail_pvpshaman_b_02_gom.m2", + fileId = "138971", + text = "helm_leather_raidrogue_f_01_dwf.m2", + value = "helm_leather_raidrogue_f_01_dwf.m2", }, { - fileId = "255221", - text = "helm_mail_pvpshaman_b_02_huf.m2", - value = "helm_mail_pvpshaman_b_02_huf.m2", + fileId = "138972", + text = "helm_leather_raidrogue_f_01_dwm.m2", + value = "helm_leather_raidrogue_f_01_dwm.m2", }, { - fileId = "255222", - text = "helm_mail_pvpshaman_b_02_hum.m2", - value = "helm_mail_pvpshaman_b_02_hum.m2", + fileId = "138973", + text = "helm_leather_raidrogue_f_01_gnf.m2", + value = "helm_leather_raidrogue_f_01_gnf.m2", }, { - fileId = "255223", - text = "helm_mail_pvpshaman_b_02_nif.m2", - value = "helm_mail_pvpshaman_b_02_nif.m2", + fileId = "138974", + text = "helm_leather_raidrogue_f_01_gnm.m2", + value = "helm_leather_raidrogue_f_01_gnm.m2", }, { - fileId = "255224", - text = "helm_mail_pvpshaman_b_02_nim.m2", - value = "helm_mail_pvpshaman_b_02_nim.m2", + fileId = "419336", + text = "helm_leather_raidrogue_f_01_gof.m2", + value = "helm_leather_raidrogue_f_01_gof.m2", }, { - fileId = "255225", - text = "helm_mail_pvpshaman_b_02_orf.m2", - value = "helm_mail_pvpshaman_b_02_orf.m2", + fileId = "138975", + text = "helm_leather_raidrogue_f_01_gom.m2", + value = "helm_leather_raidrogue_f_01_gom.m2", }, { - fileId = "255226", - text = "helm_mail_pvpshaman_b_02_orm.m2", - value = "helm_mail_pvpshaman_b_02_orm.m2", + fileId = "138976", + text = "helm_leather_raidrogue_f_01_huf.m2", + value = "helm_leather_raidrogue_f_01_huf.m2", }, { - fileId = "255227", - text = "helm_mail_pvpshaman_b_02_scf.m2", - value = "helm_mail_pvpshaman_b_02_scf.m2", + fileId = "138977", + text = "helm_leather_raidrogue_f_01_hum.m2", + value = "helm_leather_raidrogue_f_01_hum.m2", }, { - fileId = "255228", - text = "helm_mail_pvpshaman_b_02_scm.m2", - value = "helm_mail_pvpshaman_b_02_scm.m2", + fileId = "138978", + text = "helm_leather_raidrogue_f_01_nif.m2", + value = "helm_leather_raidrogue_f_01_nif.m2", }, { - fileId = "255229", - text = "helm_mail_pvpshaman_b_02_taf.m2", - value = "helm_mail_pvpshaman_b_02_taf.m2", + fileId = "138979", + text = "helm_leather_raidrogue_f_01_nim.m2", + value = "helm_leather_raidrogue_f_01_nim.m2", }, { - fileId = "255230", - text = "helm_mail_pvpshaman_b_02_tam.m2", - value = "helm_mail_pvpshaman_b_02_tam.m2", + fileId = "138980", + text = "helm_leather_raidrogue_f_01_orf.m2", + value = "helm_leather_raidrogue_f_01_orf.m2", }, { - fileId = "255231", - text = "helm_mail_pvpshaman_b_02_trf.m2", - value = "helm_mail_pvpshaman_b_02_trf.m2", + fileId = "138981", + text = "helm_leather_raidrogue_f_01_orm.m2", + value = "helm_leather_raidrogue_f_01_orm.m2", }, { - fileId = "255232", - text = "helm_mail_pvpshaman_b_02_trm.m2", - value = "helm_mail_pvpshaman_b_02_trm.m2", + fileId = "138982", + text = "helm_leather_raidrogue_f_01_scf.m2", + value = "helm_leather_raidrogue_f_01_scf.m2", }, { - fileId = "306711", - text = "helm_mail_pvpshaman_b_03_bef.m2", - value = "helm_mail_pvpshaman_b_03_bef.m2", + fileId = "138983", + text = "helm_leather_raidrogue_f_01_scm.m2", + value = "helm_leather_raidrogue_f_01_scm.m2", }, { - fileId = "306712", - text = "helm_mail_pvpshaman_b_03_bem.m2", - value = "helm_mail_pvpshaman_b_03_bem.m2", + fileId = "138984", + text = "helm_leather_raidrogue_f_01_taf.m2", + value = "helm_leather_raidrogue_f_01_taf.m2", }, { - fileId = "306713", - text = "helm_mail_pvpshaman_b_03_drf.m2", - value = "helm_mail_pvpshaman_b_03_drf.m2", + fileId = "138985", + text = "helm_leather_raidrogue_f_01_tam.m2", + value = "helm_leather_raidrogue_f_01_tam.m2", }, { - fileId = "306714", - text = "helm_mail_pvpshaman_b_03_drm.m2", - value = "helm_mail_pvpshaman_b_03_drm.m2", + fileId = "138986", + text = "helm_leather_raidrogue_f_01_trf.m2", + value = "helm_leather_raidrogue_f_01_trf.m2", }, { - fileId = "306715", - text = "helm_mail_pvpshaman_b_03_dwf.m2", - value = "helm_mail_pvpshaman_b_03_dwf.m2", + fileId = "138987", + text = "helm_leather_raidrogue_f_01_trm.m2", + value = "helm_leather_raidrogue_f_01_trm.m2", }, { - fileId = "306716", - text = "helm_mail_pvpshaman_b_03_dwm.m2", - value = "helm_mail_pvpshaman_b_03_dwm.m2", + fileId = "454490", + text = "helm_leather_raidrogue_f_01_wof.m2", + value = "helm_leather_raidrogue_f_01_wof.m2", }, { - fileId = "306717", - text = "helm_mail_pvpshaman_b_03_gnf.m2", - value = "helm_mail_pvpshaman_b_03_gnf.m2", + fileId = "442281", + text = "helm_leather_raidrogue_f_01_wom.m2", + value = "helm_leather_raidrogue_f_01_wom.m2", }, { - fileId = "306718", - text = "helm_mail_pvpshaman_b_03_gnm.m2", - value = "helm_mail_pvpshaman_b_03_gnm.m2", + fileId = "138991", + text = "helm_leather_raidrogue_g_01_bef.m2", + value = "helm_leather_raidrogue_g_01_bef.m2", }, { - fileId = "306719", - text = "helm_mail_pvpshaman_b_03_gof.m2", - value = "helm_mail_pvpshaman_b_03_gof.m2", + fileId = "138992", + text = "helm_leather_raidrogue_g_01_bem.m2", + value = "helm_leather_raidrogue_g_01_bem.m2", }, { - fileId = "306720", - text = "helm_mail_pvpshaman_b_03_gom.m2", - value = "helm_mail_pvpshaman_b_03_gom.m2", + fileId = "138993", + text = "helm_leather_raidrogue_g_01_drf.m2", + value = "helm_leather_raidrogue_g_01_drf.m2", }, { - fileId = "306721", - text = "helm_mail_pvpshaman_b_03_huf.m2", - value = "helm_mail_pvpshaman_b_03_huf.m2", + fileId = "138994", + text = "helm_leather_raidrogue_g_01_drm.m2", + value = "helm_leather_raidrogue_g_01_drm.m2", }, { - fileId = "306722", - text = "helm_mail_pvpshaman_b_03_hum.m2", - value = "helm_mail_pvpshaman_b_03_hum.m2", + fileId = "138995", + text = "helm_leather_raidrogue_g_01_dwf.m2", + value = "helm_leather_raidrogue_g_01_dwf.m2", }, { - fileId = "306723", - text = "helm_mail_pvpshaman_b_03_nif.m2", - value = "helm_mail_pvpshaman_b_03_nif.m2", + fileId = "138996", + text = "helm_leather_raidrogue_g_01_dwm.m2", + value = "helm_leather_raidrogue_g_01_dwm.m2", }, { - fileId = "306724", - text = "helm_mail_pvpshaman_b_03_nim.m2", - value = "helm_mail_pvpshaman_b_03_nim.m2", + fileId = "138997", + text = "helm_leather_raidrogue_g_01_gnf.m2", + value = "helm_leather_raidrogue_g_01_gnf.m2", }, { - fileId = "306725", - text = "helm_mail_pvpshaman_b_03_orf.m2", - value = "helm_mail_pvpshaman_b_03_orf.m2", + fileId = "138998", + text = "helm_leather_raidrogue_g_01_gnm.m2", + value = "helm_leather_raidrogue_g_01_gnm.m2", }, { - fileId = "306726", - text = "helm_mail_pvpshaman_b_03_orm.m2", - value = "helm_mail_pvpshaman_b_03_orm.m2", + fileId = "138999", + text = "helm_leather_raidrogue_g_01_gof.m2", + value = "helm_leather_raidrogue_g_01_gof.m2", }, { - fileId = "306727", - text = "helm_mail_pvpshaman_b_03_scf.m2", - value = "helm_mail_pvpshaman_b_03_scf.m2", + fileId = "139000", + text = "helm_leather_raidrogue_g_01_gom.m2", + value = "helm_leather_raidrogue_g_01_gom.m2", }, { - fileId = "306728", - text = "helm_mail_pvpshaman_b_03_scm.m2", - value = "helm_mail_pvpshaman_b_03_scm.m2", + fileId = "139001", + text = "helm_leather_raidrogue_g_01_huf.m2", + value = "helm_leather_raidrogue_g_01_huf.m2", }, { - fileId = "306729", - text = "helm_mail_pvpshaman_b_03_taf.m2", - value = "helm_mail_pvpshaman_b_03_taf.m2", + fileId = "139002", + text = "helm_leather_raidrogue_g_01_hum.m2", + value = "helm_leather_raidrogue_g_01_hum.m2", }, { - fileId = "306730", - text = "helm_mail_pvpshaman_b_03_tam.m2", - value = "helm_mail_pvpshaman_b_03_tam.m2", + fileId = "139003", + text = "helm_leather_raidrogue_g_01_nif.m2", + value = "helm_leather_raidrogue_g_01_nif.m2", }, { - fileId = "306731", - text = "helm_mail_pvpshaman_b_03_trf.m2", - value = "helm_mail_pvpshaman_b_03_trf.m2", + fileId = "139004", + text = "helm_leather_raidrogue_g_01_nim.m2", + value = "helm_leather_raidrogue_g_01_nim.m2", }, { - fileId = "306732", - text = "helm_mail_pvpshaman_b_03_trm.m2", - value = "helm_mail_pvpshaman_b_03_trm.m2", + fileId = "139005", + text = "helm_leather_raidrogue_g_01_orf.m2", + value = "helm_leather_raidrogue_g_01_orf.m2", }, { - fileId = "349962", - text = "helm_mail_pvpshaman_b_04_bef.m2", - value = "helm_mail_pvpshaman_b_04_bef.m2", + fileId = "139006", + text = "helm_leather_raidrogue_g_01_orm.m2", + value = "helm_leather_raidrogue_g_01_orm.m2", }, { - fileId = "349963", - text = "helm_mail_pvpshaman_b_04_bem.m2", - value = "helm_mail_pvpshaman_b_04_bem.m2", + fileId = "304116", + text = "helm_leather_raidrogue_g_01_scf.m2", + value = "helm_leather_raidrogue_g_01_scf.m2", }, { - fileId = "349964", - text = "helm_mail_pvpshaman_b_04_drf.m2", - value = "helm_mail_pvpshaman_b_04_drf.m2", + fileId = "139007", + text = "helm_leather_raidrogue_g_01_scm.m2", + value = "helm_leather_raidrogue_g_01_scm.m2", }, { - fileId = "349965", - text = "helm_mail_pvpshaman_b_04_drm.m2", - value = "helm_mail_pvpshaman_b_04_drm.m2", + fileId = "139008", + text = "helm_leather_raidrogue_g_01_taf.m2", + value = "helm_leather_raidrogue_g_01_taf.m2", }, { - fileId = "349966", - text = "helm_mail_pvpshaman_b_04_dwf.m2", - value = "helm_mail_pvpshaman_b_04_dwf.m2", + fileId = "139009", + text = "helm_leather_raidrogue_g_01_tam.m2", + value = "helm_leather_raidrogue_g_01_tam.m2", }, { - fileId = "349967", - text = "helm_mail_pvpshaman_b_04_dwm.m2", - value = "helm_mail_pvpshaman_b_04_dwm.m2", + fileId = "139010", + text = "helm_leather_raidrogue_g_01_trf.m2", + value = "helm_leather_raidrogue_g_01_trf.m2", }, { - fileId = "349968", - text = "helm_mail_pvpshaman_b_04_gnf.m2", - value = "helm_mail_pvpshaman_b_04_gnf.m2", + fileId = "139011", + text = "helm_leather_raidrogue_g_01_trm.m2", + value = "helm_leather_raidrogue_g_01_trm.m2", }, { - fileId = "349969", - text = "helm_mail_pvpshaman_b_04_gnm.m2", - value = "helm_mail_pvpshaman_b_04_gnm.m2", + fileId = "454491", + text = "helm_leather_raidrogue_g_01_wof.m2", + value = "helm_leather_raidrogue_g_01_wof.m2", }, { - fileId = "349970", - text = "helm_mail_pvpshaman_b_04_gof.m2", - value = "helm_mail_pvpshaman_b_04_gof.m2", + fileId = "422624", + text = "helm_leather_raidrogue_g_01_wom.m2", + value = "helm_leather_raidrogue_g_01_wom.m2", }, { - fileId = "349971", - text = "helm_mail_pvpshaman_b_04_gom.m2", - value = "helm_mail_pvpshaman_b_04_gom.m2", + fileId = "336820", + text = "helm_leather_raidrogue_h_01_bef.m2", + value = "helm_leather_raidrogue_h_01_bef.m2", }, { - fileId = "349972", - text = "helm_mail_pvpshaman_b_04_huf.m2", - value = "helm_mail_pvpshaman_b_04_huf.m2", + fileId = "336821", + text = "helm_leather_raidrogue_h_01_bem.m2", + value = "helm_leather_raidrogue_h_01_bem.m2", }, { - fileId = "349973", - text = "helm_mail_pvpshaman_b_04_hum.m2", - value = "helm_mail_pvpshaman_b_04_hum.m2", + fileId = "336822", + text = "helm_leather_raidrogue_h_01_drf.m2", + value = "helm_leather_raidrogue_h_01_drf.m2", }, { - fileId = "349974", - text = "helm_mail_pvpshaman_b_04_nif.m2", - value = "helm_mail_pvpshaman_b_04_nif.m2", + fileId = "336823", + text = "helm_leather_raidrogue_h_01_drm.m2", + value = "helm_leather_raidrogue_h_01_drm.m2", }, { - fileId = "349975", - text = "helm_mail_pvpshaman_b_04_nim.m2", - value = "helm_mail_pvpshaman_b_04_nim.m2", + fileId = "336824", + text = "helm_leather_raidrogue_h_01_dwf.m2", + value = "helm_leather_raidrogue_h_01_dwf.m2", }, { - fileId = "349976", - text = "helm_mail_pvpshaman_b_04_orf.m2", - value = "helm_mail_pvpshaman_b_04_orf.m2", + fileId = "336825", + text = "helm_leather_raidrogue_h_01_dwm.m2", + value = "helm_leather_raidrogue_h_01_dwm.m2", }, { - fileId = "349977", - text = "helm_mail_pvpshaman_b_04_orm.m2", - value = "helm_mail_pvpshaman_b_04_orm.m2", + fileId = "336826", + text = "helm_leather_raidrogue_h_01_gnf.m2", + value = "helm_leather_raidrogue_h_01_gnf.m2", }, { - fileId = "349978", - text = "helm_mail_pvpshaman_b_04_scf.m2", - value = "helm_mail_pvpshaman_b_04_scf.m2", + fileId = "336827", + text = "helm_leather_raidrogue_h_01_gnm.m2", + value = "helm_leather_raidrogue_h_01_gnm.m2", }, { - fileId = "349979", - text = "helm_mail_pvpshaman_b_04_scm.m2", - value = "helm_mail_pvpshaman_b_04_scm.m2", + fileId = "336828", + text = "helm_leather_raidrogue_h_01_gof.m2", + value = "helm_leather_raidrogue_h_01_gof.m2", }, { - fileId = "349980", - text = "helm_mail_pvpshaman_b_04_taf.m2", - value = "helm_mail_pvpshaman_b_04_taf.m2", + fileId = "336829", + text = "helm_leather_raidrogue_h_01_gom.m2", + value = "helm_leather_raidrogue_h_01_gom.m2", }, { - fileId = "349981", - text = "helm_mail_pvpshaman_b_04_tam.m2", - value = "helm_mail_pvpshaman_b_04_tam.m2", + fileId = "336830", + text = "helm_leather_raidrogue_h_01_huf.m2", + value = "helm_leather_raidrogue_h_01_huf.m2", }, { - fileId = "349982", - text = "helm_mail_pvpshaman_b_04_trf.m2", - value = "helm_mail_pvpshaman_b_04_trf.m2", + fileId = "336831", + text = "helm_leather_raidrogue_h_01_hum.m2", + value = "helm_leather_raidrogue_h_01_hum.m2", }, { - fileId = "349983", - text = "helm_mail_pvpshaman_b_04_trm.m2", - value = "helm_mail_pvpshaman_b_04_trm.m2", + fileId = "336832", + text = "helm_leather_raidrogue_h_01_nif.m2", + value = "helm_leather_raidrogue_h_01_nif.m2", }, { - fileId = "139621", - text = "helm_mail_raidhunter_a_01_bef.m2", - value = "helm_mail_raidhunter_a_01_bef.m2", + fileId = "336833", + text = "helm_leather_raidrogue_h_01_nim.m2", + value = "helm_leather_raidrogue_h_01_nim.m2", }, { - fileId = "139622", - text = "helm_mail_raidhunter_a_01_bem.m2", - value = "helm_mail_raidhunter_a_01_bem.m2", + fileId = "336834", + text = "helm_leather_raidrogue_h_01_orf.m2", + value = "helm_leather_raidrogue_h_01_orf.m2", }, { - fileId = "139623", - text = "helm_mail_raidhunter_a_01_drf.m2", - value = "helm_mail_raidhunter_a_01_drf.m2", + fileId = "336835", + text = "helm_leather_raidrogue_h_01_orm.m2", + value = "helm_leather_raidrogue_h_01_orm.m2", }, { - fileId = "139624", - text = "helm_mail_raidhunter_a_01_drm.m2", - value = "helm_mail_raidhunter_a_01_drm.m2", + fileId = "336836", + text = "helm_leather_raidrogue_h_01_scf.m2", + value = "helm_leather_raidrogue_h_01_scf.m2", }, { - fileId = "139625", - text = "helm_mail_raidhunter_a_01_dwf.m2", - value = "helm_mail_raidhunter_a_01_dwf.m2", + fileId = "336837", + text = "helm_leather_raidrogue_h_01_scm.m2", + value = "helm_leather_raidrogue_h_01_scm.m2", }, { - fileId = "139626", - text = "helm_mail_raidhunter_a_01_dwm.m2", - value = "helm_mail_raidhunter_a_01_dwm.m2", + fileId = "336838", + text = "helm_leather_raidrogue_h_01_taf.m2", + value = "helm_leather_raidrogue_h_01_taf.m2", }, { - fileId = "139627", - text = "helm_mail_raidhunter_a_01_gnf.m2", - value = "helm_mail_raidhunter_a_01_gnf.m2", + fileId = "336839", + text = "helm_leather_raidrogue_h_01_tam.m2", + value = "helm_leather_raidrogue_h_01_tam.m2", }, { - fileId = "139628", - text = "helm_mail_raidhunter_a_01_gnm.m2", - value = "helm_mail_raidhunter_a_01_gnm.m2", + fileId = "336840", + text = "helm_leather_raidrogue_h_01_trf.m2", + value = "helm_leather_raidrogue_h_01_trf.m2", }, { - fileId = "139629", - text = "helm_mail_raidhunter_a_01_huf.m2", - value = "helm_mail_raidhunter_a_01_huf.m2", + fileId = "336841", + text = "helm_leather_raidrogue_h_01_trm.m2", + value = "helm_leather_raidrogue_h_01_trm.m2", }, { - fileId = "139630", - text = "helm_mail_raidhunter_a_01_hum.m2", - value = "helm_mail_raidhunter_a_01_hum.m2", + fileId = "454774", + text = "helm_leather_raidrogue_h_01_wof.m2", + value = "helm_leather_raidrogue_h_01_wof.m2", }, { - fileId = "139631", - text = "helm_mail_raidhunter_a_01_nif.m2", - value = "helm_mail_raidhunter_a_01_nif.m2", + fileId = "454775", + text = "helm_leather_raidrogue_h_01_wom.m2", + value = "helm_leather_raidrogue_h_01_wom.m2", }, { - fileId = "139632", - text = "helm_mail_raidhunter_a_01_nim.m2", - value = "helm_mail_raidhunter_a_01_nim.m2", + fileId = "461615", + text = "helm_leather_raidrogue_i_01_bef.m2", + value = "helm_leather_raidrogue_i_01_bef.m2", }, { - fileId = "139633", - text = "helm_mail_raidhunter_a_01_orf.m2", - value = "helm_mail_raidhunter_a_01_orf.m2", + fileId = "461616", + text = "helm_leather_raidrogue_i_01_bem.m2", + value = "helm_leather_raidrogue_i_01_bem.m2", }, { - fileId = "139634", - text = "helm_mail_raidhunter_a_01_orm.m2", - value = "helm_mail_raidhunter_a_01_orm.m2", + fileId = "461617", + text = "helm_leather_raidrogue_i_01_drf.m2", + value = "helm_leather_raidrogue_i_01_drf.m2", }, { - fileId = "139635", - text = "helm_mail_raidhunter_a_01_scf.m2", - value = "helm_mail_raidhunter_a_01_scf.m2", + fileId = "461618", + text = "helm_leather_raidrogue_i_01_drm.m2", + value = "helm_leather_raidrogue_i_01_drm.m2", }, { - fileId = "139636", - text = "helm_mail_raidhunter_a_01_scm.m2", - value = "helm_mail_raidhunter_a_01_scm.m2", + fileId = "461619", + text = "helm_leather_raidrogue_i_01_dwf.m2", + value = "helm_leather_raidrogue_i_01_dwf.m2", }, { - fileId = "139637", - text = "helm_mail_raidhunter_a_01_taf.m2", - value = "helm_mail_raidhunter_a_01_taf.m2", + fileId = "461620", + text = "helm_leather_raidrogue_i_01_dwm.m2", + value = "helm_leather_raidrogue_i_01_dwm.m2", }, { - fileId = "139638", - text = "helm_mail_raidhunter_a_01_tam.m2", - value = "helm_mail_raidhunter_a_01_tam.m2", + fileId = "461621", + text = "helm_leather_raidrogue_i_01_gnf.m2", + value = "helm_leather_raidrogue_i_01_gnf.m2", }, { - fileId = "139639", - text = "helm_mail_raidhunter_a_01_trf.m2", - value = "helm_mail_raidhunter_a_01_trf.m2", + fileId = "461622", + text = "helm_leather_raidrogue_i_01_gnm.m2", + value = "helm_leather_raidrogue_i_01_gnm.m2", }, { - fileId = "139640", - text = "helm_mail_raidhunter_a_01_trm.m2", - value = "helm_mail_raidhunter_a_01_trm.m2", + fileId = "461623", + text = "helm_leather_raidrogue_i_01_gof.m2", + value = "helm_leather_raidrogue_i_01_gof.m2", }, { - fileId = "139645", - text = "helm_mail_raidhunter_b_01_bef.m2", - value = "helm_mail_raidhunter_b_01_bef.m2", + fileId = "461624", + text = "helm_leather_raidrogue_i_01_gom.m2", + value = "helm_leather_raidrogue_i_01_gom.m2", }, { - fileId = "139646", - text = "helm_mail_raidhunter_b_01_bem.m2", - value = "helm_mail_raidhunter_b_01_bem.m2", + fileId = "461625", + text = "helm_leather_raidrogue_i_01_huf.m2", + value = "helm_leather_raidrogue_i_01_huf.m2", }, { - fileId = "139647", - text = "helm_mail_raidhunter_b_01_drf.m2", - value = "helm_mail_raidhunter_b_01_drf.m2", + fileId = "461626", + text = "helm_leather_raidrogue_i_01_hum.m2", + value = "helm_leather_raidrogue_i_01_hum.m2", }, { - fileId = "139648", - text = "helm_mail_raidhunter_b_01_drm.m2", - value = "helm_mail_raidhunter_b_01_drm.m2", + fileId = "461627", + text = "helm_leather_raidrogue_i_01_nif.m2", + value = "helm_leather_raidrogue_i_01_nif.m2", }, { - fileId = "139649", - text = "helm_mail_raidhunter_b_01_dwf.m2", - value = "helm_mail_raidhunter_b_01_dwf.m2", + fileId = "461628", + text = "helm_leather_raidrogue_i_01_nim.m2", + value = "helm_leather_raidrogue_i_01_nim.m2", }, { - fileId = "139650", - text = "helm_mail_raidhunter_b_01_dwm.m2", - value = "helm_mail_raidhunter_b_01_dwm.m2", + fileId = "461629", + text = "helm_leather_raidrogue_i_01_orf.m2", + value = "helm_leather_raidrogue_i_01_orf.m2", }, { - fileId = "139651", - text = "helm_mail_raidhunter_b_01_gnf.m2", - value = "helm_mail_raidhunter_b_01_gnf.m2", + fileId = "461630", + text = "helm_leather_raidrogue_i_01_orm.m2", + value = "helm_leather_raidrogue_i_01_orm.m2", }, { - fileId = "139652", - text = "helm_mail_raidhunter_b_01_gnm.m2", - value = "helm_mail_raidhunter_b_01_gnm.m2", + fileId = "461631", + text = "helm_leather_raidrogue_i_01_scf.m2", + value = "helm_leather_raidrogue_i_01_scf.m2", }, { - fileId = "139653", - text = "helm_mail_raidhunter_b_01_gof.m2", - value = "helm_mail_raidhunter_b_01_gof.m2", + fileId = "461632", + text = "helm_leather_raidrogue_i_01_scm.m2", + value = "helm_leather_raidrogue_i_01_scm.m2", }, { - fileId = "139654", - text = "helm_mail_raidhunter_b_01_gom.m2", - value = "helm_mail_raidhunter_b_01_gom.m2", + fileId = "461633", + text = "helm_leather_raidrogue_i_01_taf.m2", + value = "helm_leather_raidrogue_i_01_taf.m2", }, { - fileId = "139655", - text = "helm_mail_raidhunter_b_01_huf.m2", - value = "helm_mail_raidhunter_b_01_huf.m2", + fileId = "461634", + text = "helm_leather_raidrogue_i_01_tam.m2", + value = "helm_leather_raidrogue_i_01_tam.m2", }, { - fileId = "139656", - text = "helm_mail_raidhunter_b_01_hum.m2", - value = "helm_mail_raidhunter_b_01_hum.m2", + fileId = "461635", + text = "helm_leather_raidrogue_i_01_trf.m2", + value = "helm_leather_raidrogue_i_01_trf.m2", }, { - fileId = "139657", - text = "helm_mail_raidhunter_b_01_nif.m2", - value = "helm_mail_raidhunter_b_01_nif.m2", + fileId = "461636", + text = "helm_leather_raidrogue_i_01_trm.m2", + value = "helm_leather_raidrogue_i_01_trm.m2", }, { - fileId = "139658", - text = "helm_mail_raidhunter_b_01_nim.m2", - value = "helm_mail_raidhunter_b_01_nim.m2", + fileId = "461637", + text = "helm_leather_raidrogue_i_01_wof.m2", + value = "helm_leather_raidrogue_i_01_wof.m2", }, { - fileId = "139659", - text = "helm_mail_raidhunter_b_01_orf.m2", - value = "helm_mail_raidhunter_b_01_orf.m2", + fileId = "461638", + text = "helm_leather_raidrogue_i_01_wom.m2", + value = "helm_leather_raidrogue_i_01_wom.m2", }, { - fileId = "139660", - text = "helm_mail_raidhunter_b_01_orm.m2", - value = "helm_mail_raidhunter_b_01_orm.m2", + fileId = "517024", + text = "helm_leather_raidrogue_j_01_bef.m2", + value = "helm_leather_raidrogue_j_01_bef.m2", }, { - fileId = "139661", - text = "helm_mail_raidhunter_b_01_scf.m2", - value = "helm_mail_raidhunter_b_01_scf.m2", + fileId = "517026", + text = "helm_leather_raidrogue_j_01_bem.m2", + value = "helm_leather_raidrogue_j_01_bem.m2", }, { - fileId = "139662", - text = "helm_mail_raidhunter_b_01_scm.m2", - value = "helm_mail_raidhunter_b_01_scm.m2", + fileId = "517028", + text = "helm_leather_raidrogue_j_01_drf.m2", + value = "helm_leather_raidrogue_j_01_drf.m2", }, { - fileId = "139663", - text = "helm_mail_raidhunter_b_01_taf.m2", - value = "helm_mail_raidhunter_b_01_taf.m2", + fileId = "517030", + text = "helm_leather_raidrogue_j_01_drm.m2", + value = "helm_leather_raidrogue_j_01_drm.m2", }, { - fileId = "139664", - text = "helm_mail_raidhunter_b_01_tam.m2", - value = "helm_mail_raidhunter_b_01_tam.m2", + fileId = "517032", + text = "helm_leather_raidrogue_j_01_dwf.m2", + value = "helm_leather_raidrogue_j_01_dwf.m2", }, { - fileId = "139665", - text = "helm_mail_raidhunter_b_01_trf.m2", - value = "helm_mail_raidhunter_b_01_trf.m2", + fileId = "517034", + text = "helm_leather_raidrogue_j_01_dwm.m2", + value = "helm_leather_raidrogue_j_01_dwm.m2", }, { - fileId = "139666", - text = "helm_mail_raidhunter_b_01_trm.m2", - value = "helm_mail_raidhunter_b_01_trm.m2", + fileId = "517036", + text = "helm_leather_raidrogue_j_01_gnf.m2", + value = "helm_leather_raidrogue_j_01_gnf.m2", }, { - fileId = "139672", - text = "helm_mail_raidhunter_c_01_bef.m2", - value = "helm_mail_raidhunter_c_01_bef.m2", + fileId = "517038", + text = "helm_leather_raidrogue_j_01_gnm.m2", + value = "helm_leather_raidrogue_j_01_gnm.m2", }, { - fileId = "139673", - text = "helm_mail_raidhunter_c_01_bem.m2", - value = "helm_mail_raidhunter_c_01_bem.m2", + fileId = "517040", + text = "helm_leather_raidrogue_j_01_gof.m2", + value = "helm_leather_raidrogue_j_01_gof.m2", }, { - fileId = "139674", - text = "helm_mail_raidhunter_c_01_drf.m2", - value = "helm_mail_raidhunter_c_01_drf.m2", + fileId = "517042", + text = "helm_leather_raidrogue_j_01_gom.m2", + value = "helm_leather_raidrogue_j_01_gom.m2", }, { - fileId = "139675", - text = "helm_mail_raidhunter_c_01_drm.m2", - value = "helm_mail_raidhunter_c_01_drm.m2", + fileId = "517044", + text = "helm_leather_raidrogue_j_01_huf.m2", + value = "helm_leather_raidrogue_j_01_huf.m2", }, { - fileId = "139676", - text = "helm_mail_raidhunter_c_01_dwf.m2", - value = "helm_mail_raidhunter_c_01_dwf.m2", + fileId = "517046", + text = "helm_leather_raidrogue_j_01_hum.m2", + value = "helm_leather_raidrogue_j_01_hum.m2", }, { - fileId = "139677", - text = "helm_mail_raidhunter_c_01_dwm.m2", - value = "helm_mail_raidhunter_c_01_dwm.m2", + fileId = "517048", + text = "helm_leather_raidrogue_j_01_nif.m2", + value = "helm_leather_raidrogue_j_01_nif.m2", }, { - fileId = "139678", - text = "helm_mail_raidhunter_c_01_gnf.m2", - value = "helm_mail_raidhunter_c_01_gnf.m2", + fileId = "517050", + text = "helm_leather_raidrogue_j_01_nim.m2", + value = "helm_leather_raidrogue_j_01_nim.m2", }, { - fileId = "139679", - text = "helm_mail_raidhunter_c_01_gnm.m2", - value = "helm_mail_raidhunter_c_01_gnm.m2", + fileId = "517052", + text = "helm_leather_raidrogue_j_01_orf.m2", + value = "helm_leather_raidrogue_j_01_orf.m2", }, { - fileId = "139680", - text = "helm_mail_raidhunter_c_01_gof.m2", - value = "helm_mail_raidhunter_c_01_gof.m2", + fileId = "517054", + text = "helm_leather_raidrogue_j_01_orm.m2", + value = "helm_leather_raidrogue_j_01_orm.m2", }, { - fileId = "139681", - text = "helm_mail_raidhunter_c_01_gom.m2", - value = "helm_mail_raidhunter_c_01_gom.m2", + fileId = "517056", + text = "helm_leather_raidrogue_j_01_scf.m2", + value = "helm_leather_raidrogue_j_01_scf.m2", }, { - fileId = "139682", - text = "helm_mail_raidhunter_c_01_huf.m2", - value = "helm_mail_raidhunter_c_01_huf.m2", + fileId = "517058", + text = "helm_leather_raidrogue_j_01_scm.m2", + value = "helm_leather_raidrogue_j_01_scm.m2", }, { - fileId = "139683", - text = "helm_mail_raidhunter_c_01_hum.m2", - value = "helm_mail_raidhunter_c_01_hum.m2", + fileId = "517060", + text = "helm_leather_raidrogue_j_01_taf.m2", + value = "helm_leather_raidrogue_j_01_taf.m2", }, { - fileId = "139684", - text = "helm_mail_raidhunter_c_01_nif.m2", - value = "helm_mail_raidhunter_c_01_nif.m2", + fileId = "517062", + text = "helm_leather_raidrogue_j_01_tam.m2", + value = "helm_leather_raidrogue_j_01_tam.m2", }, { - fileId = "139685", - text = "helm_mail_raidhunter_c_01_nim.m2", - value = "helm_mail_raidhunter_c_01_nim.m2", + fileId = "517064", + text = "helm_leather_raidrogue_j_01_trf.m2", + value = "helm_leather_raidrogue_j_01_trf.m2", }, { - fileId = "139686", - text = "helm_mail_raidhunter_c_01_orf.m2", - value = "helm_mail_raidhunter_c_01_orf.m2", + fileId = "517066", + text = "helm_leather_raidrogue_j_01_trm.m2", + value = "helm_leather_raidrogue_j_01_trm.m2", }, { - fileId = "139687", - text = "helm_mail_raidhunter_c_01_orm.m2", - value = "helm_mail_raidhunter_c_01_orm.m2", + fileId = "517068", + text = "helm_leather_raidrogue_j_01_wof.m2", + value = "helm_leather_raidrogue_j_01_wof.m2", }, { - fileId = "139688", - text = "helm_mail_raidhunter_c_01_scf.m2", - value = "helm_mail_raidhunter_c_01_scf.m2", + fileId = "517070", + text = "helm_leather_raidrogue_j_01_wom.m2", + value = "helm_leather_raidrogue_j_01_wom.m2", }, { - fileId = "139689", - text = "helm_mail_raidhunter_c_01_scm.m2", - value = "helm_mail_raidhunter_c_01_scm.m2", + fileId = "534280", + text = "helm_leather_raidrogue_k_01_bef.m2", + value = "helm_leather_raidrogue_k_01_bef.m2", }, { - fileId = "139690", - text = "helm_mail_raidhunter_c_01_taf.m2", - value = "helm_mail_raidhunter_c_01_taf.m2", + fileId = "534282", + text = "helm_leather_raidrogue_k_01_bem.m2", + value = "helm_leather_raidrogue_k_01_bem.m2", }, { - fileId = "139691", - text = "helm_mail_raidhunter_c_01_tam.m2", - value = "helm_mail_raidhunter_c_01_tam.m2", + fileId = "534284", + text = "helm_leather_raidrogue_k_01_drf.m2", + value = "helm_leather_raidrogue_k_01_drf.m2", }, { - fileId = "139692", - text = "helm_mail_raidhunter_c_01_trf.m2", - value = "helm_mail_raidhunter_c_01_trf.m2", + fileId = "534286", + text = "helm_leather_raidrogue_k_01_drm.m2", + value = "helm_leather_raidrogue_k_01_drm.m2", }, { - fileId = "139693", - text = "helm_mail_raidhunter_c_01_trm.m2", - value = "helm_mail_raidhunter_c_01_trm.m2", + fileId = "534288", + text = "helm_leather_raidrogue_k_01_dwf.m2", + value = "helm_leather_raidrogue_k_01_dwf.m2", }, { - fileId = "139696", - text = "helm_mail_raidhunter_d_01_bef.m2", - value = "helm_mail_raidhunter_d_01_bef.m2", + fileId = "534290", + text = "helm_leather_raidrogue_k_01_dwm.m2", + value = "helm_leather_raidrogue_k_01_dwm.m2", }, { - fileId = "139697", - text = "helm_mail_raidhunter_d_01_bem.m2", - value = "helm_mail_raidhunter_d_01_bem.m2", + fileId = "534292", + text = "helm_leather_raidrogue_k_01_gnf.m2", + value = "helm_leather_raidrogue_k_01_gnf.m2", }, { - fileId = "139698", - text = "helm_mail_raidhunter_d_01_drf.m2", - value = "helm_mail_raidhunter_d_01_drf.m2", + fileId = "534294", + text = "helm_leather_raidrogue_k_01_gnm.m2", + value = "helm_leather_raidrogue_k_01_gnm.m2", }, { - fileId = "139699", - text = "helm_mail_raidhunter_d_01_drm.m2", - value = "helm_mail_raidhunter_d_01_drm.m2", + fileId = "534296", + text = "helm_leather_raidrogue_k_01_gof.m2", + value = "helm_leather_raidrogue_k_01_gof.m2", }, { - fileId = "139700", - text = "helm_mail_raidhunter_d_01_dwf.m2", - value = "helm_mail_raidhunter_d_01_dwf.m2", + fileId = "534298", + text = "helm_leather_raidrogue_k_01_gom.m2", + value = "helm_leather_raidrogue_k_01_gom.m2", }, { - fileId = "139701", - text = "helm_mail_raidhunter_d_01_dwm.m2", - value = "helm_mail_raidhunter_d_01_dwm.m2", + fileId = "534300", + text = "helm_leather_raidrogue_k_01_huf.m2", + value = "helm_leather_raidrogue_k_01_huf.m2", }, { - fileId = "139702", - text = "helm_mail_raidhunter_d_01_gnf.m2", - value = "helm_mail_raidhunter_d_01_gnf.m2", + fileId = "534302", + text = "helm_leather_raidrogue_k_01_hum.m2", + value = "helm_leather_raidrogue_k_01_hum.m2", }, { - fileId = "139703", - text = "helm_mail_raidhunter_d_01_gnm.m2", - value = "helm_mail_raidhunter_d_01_gnm.m2", + fileId = "534304", + text = "helm_leather_raidrogue_k_01_nif.m2", + value = "helm_leather_raidrogue_k_01_nif.m2", }, { - fileId = "139704", - text = "helm_mail_raidhunter_d_01_gom.m2", - value = "helm_mail_raidhunter_d_01_gom.m2", + fileId = "534306", + text = "helm_leather_raidrogue_k_01_nim.m2", + value = "helm_leather_raidrogue_k_01_nim.m2", }, { - fileId = "139705", - text = "helm_mail_raidhunter_d_01_huf.m2", - value = "helm_mail_raidhunter_d_01_huf.m2", + fileId = "534308", + text = "helm_leather_raidrogue_k_01_orf.m2", + value = "helm_leather_raidrogue_k_01_orf.m2", }, { - fileId = "139706", - text = "helm_mail_raidhunter_d_01_hum.m2", - value = "helm_mail_raidhunter_d_01_hum.m2", + fileId = "534310", + text = "helm_leather_raidrogue_k_01_orm.m2", + value = "helm_leather_raidrogue_k_01_orm.m2", }, { - fileId = "139707", - text = "helm_mail_raidhunter_d_01_nif.m2", - value = "helm_mail_raidhunter_d_01_nif.m2", + fileId = "534312", + text = "helm_leather_raidrogue_k_01_scf.m2", + value = "helm_leather_raidrogue_k_01_scf.m2", }, { - fileId = "139708", - text = "helm_mail_raidhunter_d_01_nim.m2", - value = "helm_mail_raidhunter_d_01_nim.m2", + fileId = "534314", + text = "helm_leather_raidrogue_k_01_scm.m2", + value = "helm_leather_raidrogue_k_01_scm.m2", }, { - fileId = "139709", - text = "helm_mail_raidhunter_d_01_orf.m2", - value = "helm_mail_raidhunter_d_01_orf.m2", + fileId = "534316", + text = "helm_leather_raidrogue_k_01_taf.m2", + value = "helm_leather_raidrogue_k_01_taf.m2", }, { - fileId = "139710", - text = "helm_mail_raidhunter_d_01_orm.m2", - value = "helm_mail_raidhunter_d_01_orm.m2", + fileId = "534318", + text = "helm_leather_raidrogue_k_01_tam.m2", + value = "helm_leather_raidrogue_k_01_tam.m2", }, { - fileId = "139711", - text = "helm_mail_raidhunter_d_01_scf.m2", - value = "helm_mail_raidhunter_d_01_scf.m2", + fileId = "534320", + text = "helm_leather_raidrogue_k_01_trf.m2", + value = "helm_leather_raidrogue_k_01_trf.m2", }, { - fileId = "139712", - text = "helm_mail_raidhunter_d_01_scm.m2", - value = "helm_mail_raidhunter_d_01_scm.m2", + fileId = "534322", + text = "helm_leather_raidrogue_k_01_trm.m2", + value = "helm_leather_raidrogue_k_01_trm.m2", }, { - fileId = "139713", - text = "helm_mail_raidhunter_d_01_taf.m2", - value = "helm_mail_raidhunter_d_01_taf.m2", + fileId = "534324", + text = "helm_leather_raidrogue_k_01_wof.m2", + value = "helm_leather_raidrogue_k_01_wof.m2", }, { - fileId = "139714", - text = "helm_mail_raidhunter_d_01_tam.m2", - value = "helm_mail_raidhunter_d_01_tam.m2", + fileId = "534326", + text = "helm_leather_raidrogue_k_01_wom.m2", + value = "helm_leather_raidrogue_k_01_wom.m2", }, { - fileId = "139715", - text = "helm_mail_raidhunter_d_01_trf.m2", - value = "helm_mail_raidhunter_d_01_trf.m2", + fileId = "139018", + text = "helm_leather_sunwell_d_01_bef.m2", + value = "helm_leather_sunwell_d_01_bef.m2", }, { - fileId = "139716", - text = "helm_mail_raidhunter_d_01_trm.m2", - value = "helm_mail_raidhunter_d_01_trm.m2", + fileId = "139019", + text = "helm_leather_sunwell_d_01_bem.m2", + value = "helm_leather_sunwell_d_01_bem.m2", }, { - fileId = "139719", - text = "helm_mail_raidhunter_e_01_bef.m2", - value = "helm_mail_raidhunter_e_01_bef.m2", + fileId = "139020", + text = "helm_leather_sunwell_d_01_drf.m2", + value = "helm_leather_sunwell_d_01_drf.m2", }, { - fileId = "139720", - text = "helm_mail_raidhunter_e_01_bem.m2", - value = "helm_mail_raidhunter_e_01_bem.m2", + fileId = "139021", + text = "helm_leather_sunwell_d_01_drm.m2", + value = "helm_leather_sunwell_d_01_drm.m2", }, { - fileId = "139721", - text = "helm_mail_raidhunter_e_01_drf.m2", - value = "helm_mail_raidhunter_e_01_drf.m2", + fileId = "139022", + text = "helm_leather_sunwell_d_01_dwf.m2", + value = "helm_leather_sunwell_d_01_dwf.m2", }, { - fileId = "139722", - text = "helm_mail_raidhunter_e_01_drm.m2", - value = "helm_mail_raidhunter_e_01_drm.m2", + fileId = "139023", + text = "helm_leather_sunwell_d_01_dwm.m2", + value = "helm_leather_sunwell_d_01_dwm.m2", }, { - fileId = "139723", - text = "helm_mail_raidhunter_e_01_dwf.m2", - value = "helm_mail_raidhunter_e_01_dwf.m2", + fileId = "139024", + text = "helm_leather_sunwell_d_01_gnf.m2", + value = "helm_leather_sunwell_d_01_gnf.m2", }, { - fileId = "139724", - text = "helm_mail_raidhunter_e_01_dwm.m2", - value = "helm_mail_raidhunter_e_01_dwm.m2", + fileId = "139025", + text = "helm_leather_sunwell_d_01_gnm.m2", + value = "helm_leather_sunwell_d_01_gnm.m2", }, { - fileId = "139725", - text = "helm_mail_raidhunter_e_01_gnf.m2", - value = "helm_mail_raidhunter_e_01_gnf.m2", + fileId = "139026", + text = "helm_leather_sunwell_d_01_gof.m2", + value = "helm_leather_sunwell_d_01_gof.m2", }, { - fileId = "139726", - text = "helm_mail_raidhunter_e_01_gnm.m2", - value = "helm_mail_raidhunter_e_01_gnm.m2", + fileId = "139027", + text = "helm_leather_sunwell_d_01_gom.m2", + value = "helm_leather_sunwell_d_01_gom.m2", }, { - fileId = "139727", - text = "helm_mail_raidhunter_e_01_gof.m2", - value = "helm_mail_raidhunter_e_01_gof.m2", + fileId = "139028", + text = "helm_leather_sunwell_d_01_huf.m2", + value = "helm_leather_sunwell_d_01_huf.m2", }, { - fileId = "139728", - text = "helm_mail_raidhunter_e_01_gom.m2", - value = "helm_mail_raidhunter_e_01_gom.m2", + fileId = "139029", + text = "helm_leather_sunwell_d_01_hum.m2", + value = "helm_leather_sunwell_d_01_hum.m2", }, { - fileId = "139729", - text = "helm_mail_raidhunter_e_01_huf.m2", - value = "helm_mail_raidhunter_e_01_huf.m2", + fileId = "139030", + text = "helm_leather_sunwell_d_01_nif.m2", + value = "helm_leather_sunwell_d_01_nif.m2", }, { - fileId = "139730", - text = "helm_mail_raidhunter_e_01_hum.m2", - value = "helm_mail_raidhunter_e_01_hum.m2", + fileId = "139031", + text = "helm_leather_sunwell_d_01_nim.m2", + value = "helm_leather_sunwell_d_01_nim.m2", }, { - fileId = "139731", - text = "helm_mail_raidhunter_e_01_nif.m2", - value = "helm_mail_raidhunter_e_01_nif.m2", + fileId = "139032", + text = "helm_leather_sunwell_d_01_orf.m2", + value = "helm_leather_sunwell_d_01_orf.m2", }, { - fileId = "139732", - text = "helm_mail_raidhunter_e_01_nim.m2", - value = "helm_mail_raidhunter_e_01_nim.m2", + fileId = "139033", + text = "helm_leather_sunwell_d_01_orm.m2", + value = "helm_leather_sunwell_d_01_orm.m2", }, { - fileId = "139733", - text = "helm_mail_raidhunter_e_01_orf.m2", - value = "helm_mail_raidhunter_e_01_orf.m2", + fileId = "139034", + text = "helm_leather_sunwell_d_01_scf.m2", + value = "helm_leather_sunwell_d_01_scf.m2", }, { - fileId = "139734", - text = "helm_mail_raidhunter_e_01_orm.m2", - value = "helm_mail_raidhunter_e_01_orm.m2", + fileId = "139035", + text = "helm_leather_sunwell_d_01_scm.m2", + value = "helm_leather_sunwell_d_01_scm.m2", }, { - fileId = "139735", - text = "helm_mail_raidhunter_e_01_scf.m2", - value = "helm_mail_raidhunter_e_01_scf.m2", + fileId = "139036", + text = "helm_leather_sunwell_d_01_taf.m2", + value = "helm_leather_sunwell_d_01_taf.m2", }, { - fileId = "139736", - text = "helm_mail_raidhunter_e_01_scm.m2", - value = "helm_mail_raidhunter_e_01_scm.m2", + fileId = "139037", + text = "helm_leather_sunwell_d_01_tam.m2", + value = "helm_leather_sunwell_d_01_tam.m2", }, { - fileId = "139737", - text = "helm_mail_raidhunter_e_01_taf.m2", - value = "helm_mail_raidhunter_e_01_taf.m2", + fileId = "139038", + text = "helm_leather_sunwell_d_01_trf.m2", + value = "helm_leather_sunwell_d_01_trf.m2", }, { - fileId = "139738", - text = "helm_mail_raidhunter_e_01_tam.m2", - value = "helm_mail_raidhunter_e_01_tam.m2", + fileId = "139039", + text = "helm_leather_sunwell_d_01_trm.m2", + value = "helm_leather_sunwell_d_01_trm.m2", }, { - fileId = "139739", - text = "helm_mail_raidhunter_e_01_trf.m2", - value = "helm_mail_raidhunter_e_01_trf.m2", + fileId = "454492", + text = "helm_leather_sunwell_d_01_wof.m2", + value = "helm_leather_sunwell_d_01_wof.m2", }, { - fileId = "139740", - text = "helm_mail_raidhunter_e_01_trm.m2", - value = "helm_mail_raidhunter_e_01_trm.m2", + fileId = "430019", + text = "helm_leather_sunwell_d_01_wom.m2", + value = "helm_leather_sunwell_d_01_wom.m2", }, { - fileId = "139743", - text = "helm_mail_raidhunter_f_01_bef.m2", - value = "helm_mail_raidhunter_f_01_bef.m2", + fileId = "237943", + text = "helm_leather_tuskarr_01_tum.m2", + value = "helm_leather_tuskarr_01_tum.m2", }, { - fileId = "139744", - text = "helm_mail_raidhunter_f_01_bem.m2", - value = "helm_mail_raidhunter_f_01_bem.m2", + fileId = "237945", + text = "helm_leather_tuskarr_02_tum.m2", + value = "helm_leather_tuskarr_02_tum.m2", }, { - fileId = "139745", - text = "helm_mail_raidhunter_f_01_drf.m2", - value = "helm_mail_raidhunter_f_01_drf.m2", + fileId = "237947", + text = "helm_leather_tuskarr_03_tum.m2", + value = "helm_leather_tuskarr_03_tum.m2", }, { - fileId = "139746", - text = "helm_mail_raidhunter_f_01_drm.m2", - value = "helm_mail_raidhunter_f_01_drm.m2", + fileId = "237949", + text = "helm_leather_tuskarr_04_tum.m2", + value = "helm_leather_tuskarr_04_tum.m2", }, { - fileId = "139747", - text = "helm_mail_raidhunter_f_01_dwf.m2", - value = "helm_mail_raidhunter_f_01_dwf.m2", + fileId = "139044", + text = "helm_leather_zulaman_d_01_bef.m2", + value = "helm_leather_zulaman_d_01_bef.m2", }, { - fileId = "139748", - text = "helm_mail_raidhunter_f_01_dwm.m2", - value = "helm_mail_raidhunter_f_01_dwm.m2", + fileId = "139045", + text = "helm_leather_zulaman_d_01_bem.m2", + value = "helm_leather_zulaman_d_01_bem.m2", }, { - fileId = "139749", - text = "helm_mail_raidhunter_f_01_gnf.m2", - value = "helm_mail_raidhunter_f_01_gnf.m2", + fileId = "139046", + text = "helm_leather_zulaman_d_01_drf.m2", + value = "helm_leather_zulaman_d_01_drf.m2", }, { - fileId = "139750", - text = "helm_mail_raidhunter_f_01_gnm.m2", - value = "helm_mail_raidhunter_f_01_gnm.m2", + fileId = "139047", + text = "helm_leather_zulaman_d_01_drm.m2", + value = "helm_leather_zulaman_d_01_drm.m2", }, { - fileId = "139751", - text = "helm_mail_raidhunter_f_01_gof.m2", - value = "helm_mail_raidhunter_f_01_gof.m2", + fileId = "139048", + text = "helm_leather_zulaman_d_01_dwf.m2", + value = "helm_leather_zulaman_d_01_dwf.m2", }, { - fileId = "139752", - text = "helm_mail_raidhunter_f_01_gom.m2", - value = "helm_mail_raidhunter_f_01_gom.m2", + fileId = "139049", + text = "helm_leather_zulaman_d_01_dwm.m2", + value = "helm_leather_zulaman_d_01_dwm.m2", }, { - fileId = "139753", - text = "helm_mail_raidhunter_f_01_huf.m2", - value = "helm_mail_raidhunter_f_01_huf.m2", + fileId = "139050", + text = "helm_leather_zulaman_d_01_gnf.m2", + value = "helm_leather_zulaman_d_01_gnf.m2", }, { - fileId = "139754", - text = "helm_mail_raidhunter_f_01_hum.m2", - value = "helm_mail_raidhunter_f_01_hum.m2", + fileId = "139051", + text = "helm_leather_zulaman_d_01_gnm.m2", + value = "helm_leather_zulaman_d_01_gnm.m2", }, { - fileId = "139755", - text = "helm_mail_raidhunter_f_01_nif.m2", - value = "helm_mail_raidhunter_f_01_nif.m2", + fileId = "463021", + text = "helm_leather_zulaman_d_01_gof.m2", + value = "helm_leather_zulaman_d_01_gof.m2", }, { - fileId = "139756", - text = "helm_mail_raidhunter_f_01_nim.m2", - value = "helm_mail_raidhunter_f_01_nim.m2", + fileId = "463022", + text = "helm_leather_zulaman_d_01_gom.m2", + value = "helm_leather_zulaman_d_01_gom.m2", }, { - fileId = "139757", - text = "helm_mail_raidhunter_f_01_orf.m2", - value = "helm_mail_raidhunter_f_01_orf.m2", + fileId = "139052", + text = "helm_leather_zulaman_d_01_huf.m2", + value = "helm_leather_zulaman_d_01_huf.m2", }, { - fileId = "139758", - text = "helm_mail_raidhunter_f_01_orm.m2", - value = "helm_mail_raidhunter_f_01_orm.m2", + fileId = "139053", + text = "helm_leather_zulaman_d_01_hum.m2", + value = "helm_leather_zulaman_d_01_hum.m2", }, { - fileId = "139759", - text = "helm_mail_raidhunter_f_01_scf.m2", - value = "helm_mail_raidhunter_f_01_scf.m2", + fileId = "139054", + text = "helm_leather_zulaman_d_01_nif.m2", + value = "helm_leather_zulaman_d_01_nif.m2", }, { - fileId = "139760", - text = "helm_mail_raidhunter_f_01_scm.m2", - value = "helm_mail_raidhunter_f_01_scm.m2", + fileId = "139055", + text = "helm_leather_zulaman_d_01_nim.m2", + value = "helm_leather_zulaman_d_01_nim.m2", }, { - fileId = "139761", - text = "helm_mail_raidhunter_f_01_taf.m2", - value = "helm_mail_raidhunter_f_01_taf.m2", + fileId = "139056", + text = "helm_leather_zulaman_d_01_orf.m2", + value = "helm_leather_zulaman_d_01_orf.m2", }, { - fileId = "139762", - text = "helm_mail_raidhunter_f_01_tam.m2", - value = "helm_mail_raidhunter_f_01_tam.m2", + fileId = "139057", + text = "helm_leather_zulaman_d_01_orm.m2", + value = "helm_leather_zulaman_d_01_orm.m2", }, { - fileId = "139763", - text = "helm_mail_raidhunter_f_01_trf.m2", - value = "helm_mail_raidhunter_f_01_trf.m2", + fileId = "139058", + text = "helm_leather_zulaman_d_01_scf.m2", + value = "helm_leather_zulaman_d_01_scf.m2", }, { - fileId = "139764", - text = "helm_mail_raidhunter_f_01_trm.m2", - value = "helm_mail_raidhunter_f_01_trm.m2", + fileId = "139059", + text = "helm_leather_zulaman_d_01_scm.m2", + value = "helm_leather_zulaman_d_01_scm.m2", }, { - fileId = "139770", - text = "helm_mail_raidhunter_g_01_bef.m2", - value = "helm_mail_raidhunter_g_01_bef.m2", + fileId = "139060", + text = "helm_leather_zulaman_d_01_taf.m2", + value = "helm_leather_zulaman_d_01_taf.m2", }, { - fileId = "139771", - text = "helm_mail_raidhunter_g_01_bem.m2", - value = "helm_mail_raidhunter_g_01_bem.m2", + fileId = "139061", + text = "helm_leather_zulaman_d_01_tam.m2", + value = "helm_leather_zulaman_d_01_tam.m2", }, { - fileId = "139772", - text = "helm_mail_raidhunter_g_01_drf.m2", - value = "helm_mail_raidhunter_g_01_drf.m2", + fileId = "139062", + text = "helm_leather_zulaman_d_01_trf.m2", + value = "helm_leather_zulaman_d_01_trf.m2", }, { - fileId = "139773", - text = "helm_mail_raidhunter_g_01_drm.m2", - value = "helm_mail_raidhunter_g_01_drm.m2", + fileId = "139063", + text = "helm_leather_zulaman_d_01_trm.m2", + value = "helm_leather_zulaman_d_01_trm.m2", }, { - fileId = "139774", - text = "helm_mail_raidhunter_g_01_dwf.m2", - value = "helm_mail_raidhunter_g_01_dwf.m2", + fileId = "404135", + text = "helm_leather_zulaman_d_01_wof.m2", + value = "helm_leather_zulaman_d_01_wof.m2", }, { - fileId = "139775", - text = "helm_mail_raidhunter_g_01_dwm.m2", - value = "helm_mail_raidhunter_g_01_dwm.m2", + fileId = "404136", + text = "helm_leather_zulaman_d_01_wom.m2", + value = "helm_leather_zulaman_d_01_wom.m2", }, { - fileId = "139776", - text = "helm_mail_raidhunter_g_01_gnf.m2", - value = "helm_mail_raidhunter_g_01_gnf.m2", + fileId = "139067", + text = "helm_leather_zulaman_d_02_bef.m2", + value = "helm_leather_zulaman_d_02_bef.m2", }, { - fileId = "139777", - text = "helm_mail_raidhunter_g_01_gnm.m2", - value = "helm_mail_raidhunter_g_01_gnm.m2", + fileId = "139068", + text = "helm_leather_zulaman_d_02_bem.m2", + value = "helm_leather_zulaman_d_02_bem.m2", }, { - fileId = "139778", - text = "helm_mail_raidhunter_g_01_gof.m2", - value = "helm_mail_raidhunter_g_01_gof.m2", + fileId = "139069", + text = "helm_leather_zulaman_d_02_drf.m2", + value = "helm_leather_zulaman_d_02_drf.m2", }, { - fileId = "139779", - text = "helm_mail_raidhunter_g_01_gom.m2", - value = "helm_mail_raidhunter_g_01_gom.m2", + fileId = "139070", + text = "helm_leather_zulaman_d_02_drm.m2", + value = "helm_leather_zulaman_d_02_drm.m2", }, { - fileId = "139780", - text = "helm_mail_raidhunter_g_01_huf.m2", - value = "helm_mail_raidhunter_g_01_huf.m2", + fileId = "139071", + text = "helm_leather_zulaman_d_02_dwf.m2", + value = "helm_leather_zulaman_d_02_dwf.m2", }, { - fileId = "139781", - text = "helm_mail_raidhunter_g_01_hum.m2", - value = "helm_mail_raidhunter_g_01_hum.m2", + fileId = "139072", + text = "helm_leather_zulaman_d_02_dwm.m2", + value = "helm_leather_zulaman_d_02_dwm.m2", }, { - fileId = "139782", - text = "helm_mail_raidhunter_g_01_nif.m2", - value = "helm_mail_raidhunter_g_01_nif.m2", + fileId = "139073", + text = "helm_leather_zulaman_d_02_gnf.m2", + value = "helm_leather_zulaman_d_02_gnf.m2", }, { - fileId = "139783", - text = "helm_mail_raidhunter_g_01_nim.m2", - value = "helm_mail_raidhunter_g_01_nim.m2", + fileId = "139074", + text = "helm_leather_zulaman_d_02_gnm.m2", + value = "helm_leather_zulaman_d_02_gnm.m2", }, { - fileId = "139784", - text = "helm_mail_raidhunter_g_01_orf.m2", - value = "helm_mail_raidhunter_g_01_orf.m2", + fileId = "139075", + text = "helm_leather_zulaman_d_02_gof.m2", + value = "helm_leather_zulaman_d_02_gof.m2", }, { - fileId = "139785", - text = "helm_mail_raidhunter_g_01_orm.m2", - value = "helm_mail_raidhunter_g_01_orm.m2", + fileId = "139076", + text = "helm_leather_zulaman_d_02_gom.m2", + value = "helm_leather_zulaman_d_02_gom.m2", }, { - fileId = "139786", - text = "helm_mail_raidhunter_g_01_scf.m2", - value = "helm_mail_raidhunter_g_01_scf.m2", + fileId = "139077", + text = "helm_leather_zulaman_d_02_huf.m2", + value = "helm_leather_zulaman_d_02_huf.m2", }, { - fileId = "139787", - text = "helm_mail_raidhunter_g_01_scm.m2", - value = "helm_mail_raidhunter_g_01_scm.m2", + fileId = "139078", + text = "helm_leather_zulaman_d_02_hum.m2", + value = "helm_leather_zulaman_d_02_hum.m2", }, { - fileId = "139788", - text = "helm_mail_raidhunter_g_01_taf.m2", - value = "helm_mail_raidhunter_g_01_taf.m2", + fileId = "139079", + text = "helm_leather_zulaman_d_02_nif.m2", + value = "helm_leather_zulaman_d_02_nif.m2", }, { - fileId = "139789", - text = "helm_mail_raidhunter_g_01_tam.m2", - value = "helm_mail_raidhunter_g_01_tam.m2", - }, - { - fileId = "139790", - text = "helm_mail_raidhunter_g_01_trf.m2", - value = "helm_mail_raidhunter_g_01_trf.m2", + fileId = "139080", + text = "helm_leather_zulaman_d_02_nim.m2", + value = "helm_leather_zulaman_d_02_nim.m2", }, { - fileId = "139791", - text = "helm_mail_raidhunter_g_01_trm.m2", - value = "helm_mail_raidhunter_g_01_trm.m2", + fileId = "139081", + text = "helm_leather_zulaman_d_02_orf.m2", + value = "helm_leather_zulaman_d_02_orf.m2", }, { - fileId = "337168", - text = "helm_mail_raidhunter_h_01_bef.m2", - value = "helm_mail_raidhunter_h_01_bef.m2", + fileId = "139082", + text = "helm_leather_zulaman_d_02_orm.m2", + value = "helm_leather_zulaman_d_02_orm.m2", }, { - fileId = "337169", - text = "helm_mail_raidhunter_h_01_bem.m2", - value = "helm_mail_raidhunter_h_01_bem.m2", + fileId = "139083", + text = "helm_leather_zulaman_d_02_scf.m2", + value = "helm_leather_zulaman_d_02_scf.m2", }, { - fileId = "337170", - text = "helm_mail_raidhunter_h_01_drf.m2", - value = "helm_mail_raidhunter_h_01_drf.m2", + fileId = "139084", + text = "helm_leather_zulaman_d_02_scm.m2", + value = "helm_leather_zulaman_d_02_scm.m2", }, { - fileId = "337171", - text = "helm_mail_raidhunter_h_01_drm.m2", - value = "helm_mail_raidhunter_h_01_drm.m2", + fileId = "139085", + text = "helm_leather_zulaman_d_02_taf.m2", + value = "helm_leather_zulaman_d_02_taf.m2", }, { - fileId = "337172", - text = "helm_mail_raidhunter_h_01_dwf.m2", - value = "helm_mail_raidhunter_h_01_dwf.m2", + fileId = "139086", + text = "helm_leather_zulaman_d_02_tam.m2", + value = "helm_leather_zulaman_d_02_tam.m2", }, { - fileId = "337173", - text = "helm_mail_raidhunter_h_01_dwm.m2", - value = "helm_mail_raidhunter_h_01_dwm.m2", + fileId = "139087", + text = "helm_leather_zulaman_d_02_trf.m2", + value = "helm_leather_zulaman_d_02_trf.m2", }, { - fileId = "337174", - text = "helm_mail_raidhunter_h_01_gnf.m2", - value = "helm_mail_raidhunter_h_01_gnf.m2", + fileId = "139088", + text = "helm_leather_zulaman_d_02_trm.m2", + value = "helm_leather_zulaman_d_02_trm.m2", }, { - fileId = "337175", - text = "helm_mail_raidhunter_h_01_gnm.m2", - value = "helm_mail_raidhunter_h_01_gnm.m2", + fileId = "404137", + text = "helm_leather_zulaman_d_02_wof.m2", + value = "helm_leather_zulaman_d_02_wof.m2", }, { - fileId = "337176", - text = "helm_mail_raidhunter_h_01_gof.m2", - value = "helm_mail_raidhunter_h_01_gof.m2", + fileId = "404138", + text = "helm_leather_zulaman_d_02_wom.m2", + value = "helm_leather_zulaman_d_02_wom.m2", }, { - fileId = "337177", - text = "helm_mail_raidhunter_h_01_gom.m2", - value = "helm_mail_raidhunter_h_01_gom.m2", + fileId = "139093", + text = "helm_magic_b_01_bef.m2", + value = "helm_magic_b_01_bef.m2", }, { - fileId = "337178", - text = "helm_mail_raidhunter_h_01_huf.m2", - value = "helm_mail_raidhunter_h_01_huf.m2", + fileId = "139094", + text = "helm_magic_b_01_bem.m2", + value = "helm_magic_b_01_bem.m2", }, { - fileId = "337179", - text = "helm_mail_raidhunter_h_01_hum.m2", - value = "helm_mail_raidhunter_h_01_hum.m2", + fileId = "139095", + text = "helm_magic_b_01_drf.m2", + value = "helm_magic_b_01_drf.m2", }, { - fileId = "337180", - text = "helm_mail_raidhunter_h_01_nif.m2", - value = "helm_mail_raidhunter_h_01_nif.m2", + fileId = "139096", + text = "helm_magic_b_01_drm.m2", + value = "helm_magic_b_01_drm.m2", }, { - fileId = "337181", - text = "helm_mail_raidhunter_h_01_nim.m2", - value = "helm_mail_raidhunter_h_01_nim.m2", + fileId = "139097", + text = "helm_magic_b_01_dwf.m2", + value = "helm_magic_b_01_dwf.m2", }, { - fileId = "337182", - text = "helm_mail_raidhunter_h_01_orf.m2", - value = "helm_mail_raidhunter_h_01_orf.m2", + fileId = "139098", + text = "helm_magic_b_01_dwm.m2", + value = "helm_magic_b_01_dwm.m2", }, { - fileId = "337183", - text = "helm_mail_raidhunter_h_01_orm.m2", - value = "helm_mail_raidhunter_h_01_orm.m2", + fileId = "139099", + text = "helm_magic_b_01_gnf.m2", + value = "helm_magic_b_01_gnf.m2", }, { - fileId = "337184", - text = "helm_mail_raidhunter_h_01_scf.m2", - value = "helm_mail_raidhunter_h_01_scf.m2", + fileId = "139100", + text = "helm_magic_b_01_gnm.m2", + value = "helm_magic_b_01_gnm.m2", }, { - fileId = "337185", - text = "helm_mail_raidhunter_h_01_scm.m2", - value = "helm_mail_raidhunter_h_01_scm.m2", + fileId = "139101", + text = "helm_magic_b_01_gof.m2", + value = "helm_magic_b_01_gof.m2", }, { - fileId = "337186", - text = "helm_mail_raidhunter_h_01_taf.m2", - value = "helm_mail_raidhunter_h_01_taf.m2", + fileId = "139102", + text = "helm_magic_b_01_gom.m2", + value = "helm_magic_b_01_gom.m2", }, { - fileId = "337187", - text = "helm_mail_raidhunter_h_01_tam.m2", - value = "helm_mail_raidhunter_h_01_tam.m2", + fileId = "139103", + text = "helm_magic_b_01_huf.m2", + value = "helm_magic_b_01_huf.m2", }, { - fileId = "337188", - text = "helm_mail_raidhunter_h_01_trf.m2", - value = "helm_mail_raidhunter_h_01_trf.m2", + fileId = "139104", + text = "helm_magic_b_01_hum.m2", + value = "helm_magic_b_01_hum.m2", }, { - fileId = "337189", - text = "helm_mail_raidhunter_h_01_trm.m2", - value = "helm_mail_raidhunter_h_01_trm.m2", + fileId = "139105", + text = "helm_magic_b_01_nif.m2", + value = "helm_magic_b_01_nif.m2", }, { - fileId = "139796", - text = "helm_mail_raidshaman_a_01_bef.m2", - value = "helm_mail_raidshaman_a_01_bef.m2", + fileId = "139106", + text = "helm_magic_b_01_nim.m2", + value = "helm_magic_b_01_nim.m2", }, { - fileId = "139797", - text = "helm_mail_raidshaman_a_01_bem.m2", - value = "helm_mail_raidshaman_a_01_bem.m2", + fileId = "139107", + text = "helm_magic_b_01_orf.m2", + value = "helm_magic_b_01_orf.m2", }, { - fileId = "139798", - text = "helm_mail_raidshaman_a_01_drf.m2", - value = "helm_mail_raidshaman_a_01_drf.m2", + fileId = "139108", + text = "helm_magic_b_01_orm.m2", + value = "helm_magic_b_01_orm.m2", }, { - fileId = "139799", - text = "helm_mail_raidshaman_a_01_drm.m2", - value = "helm_mail_raidshaman_a_01_drm.m2", + fileId = "139109", + text = "helm_magic_b_01_scf.m2", + value = "helm_magic_b_01_scf.m2", }, { - fileId = "139800", - text = "helm_mail_raidshaman_a_01_dwf.m2", - value = "helm_mail_raidshaman_a_01_dwf.m2", + fileId = "139110", + text = "helm_magic_b_01_scm.m2", + value = "helm_magic_b_01_scm.m2", }, { - fileId = "139801", - text = "helm_mail_raidshaman_a_01_dwm.m2", - value = "helm_mail_raidshaman_a_01_dwm.m2", + fileId = "139111", + text = "helm_magic_b_01_taf.m2", + value = "helm_magic_b_01_taf.m2", }, { - fileId = "139802", - text = "helm_mail_raidshaman_a_01_gnf.m2", - value = "helm_mail_raidshaman_a_01_gnf.m2", + fileId = "139112", + text = "helm_magic_b_01_tam.m2", + value = "helm_magic_b_01_tam.m2", }, { - fileId = "139803", - text = "helm_mail_raidshaman_a_01_gnm.m2", - value = "helm_mail_raidshaman_a_01_gnm.m2", + fileId = "139113", + text = "helm_magic_b_01_trf.m2", + value = "helm_magic_b_01_trf.m2", }, { - fileId = "139804", - text = "helm_mail_raidshaman_a_01_gof.m2", - value = "helm_mail_raidshaman_a_01_gof.m2", + fileId = "139114", + text = "helm_magic_b_01_trm.m2", + value = "helm_magic_b_01_trm.m2", }, { - fileId = "139805", - text = "helm_mail_raidshaman_a_01_gom.m2", - value = "helm_mail_raidshaman_a_01_gom.m2", + fileId = "404139", + text = "helm_magic_b_01_wof.m2", + value = "helm_magic_b_01_wof.m2", }, { - fileId = "139806", - text = "helm_mail_raidshaman_a_01_huf.m2", - value = "helm_mail_raidshaman_a_01_huf.m2", + fileId = "404140", + text = "helm_magic_b_01_wom.m2", + value = "helm_magic_b_01_wom.m2", }, { - fileId = "139807", - text = "helm_mail_raidshaman_a_01_hum.m2", - value = "helm_mail_raidshaman_a_01_hum.m2", + fileId = "139116", + text = "helm_magic_b_02_bef.m2", + value = "helm_magic_b_02_bef.m2", }, { - fileId = "139808", - text = "helm_mail_raidshaman_a_01_nif.m2", - value = "helm_mail_raidshaman_a_01_nif.m2", + fileId = "139117", + text = "helm_magic_b_02_bem.m2", + value = "helm_magic_b_02_bem.m2", }, { - fileId = "139809", - text = "helm_mail_raidshaman_a_01_nim.m2", - value = "helm_mail_raidshaman_a_01_nim.m2", + fileId = "139118", + text = "helm_magic_b_02_drf.m2", + value = "helm_magic_b_02_drf.m2", }, { - fileId = "139810", - text = "helm_mail_raidshaman_a_01_orf.m2", - value = "helm_mail_raidshaman_a_01_orf.m2", + fileId = "139119", + text = "helm_magic_b_02_drm.m2", + value = "helm_magic_b_02_drm.m2", }, { - fileId = "139811", - text = "helm_mail_raidshaman_a_01_orm.m2", - value = "helm_mail_raidshaman_a_01_orm.m2", + fileId = "139120", + text = "helm_magic_b_02_dwf.m2", + value = "helm_magic_b_02_dwf.m2", }, { - fileId = "139812", - text = "helm_mail_raidshaman_a_01_scf.m2", - value = "helm_mail_raidshaman_a_01_scf.m2", + fileId = "139121", + text = "helm_magic_b_02_dwm.m2", + value = "helm_magic_b_02_dwm.m2", }, { - fileId = "139813", - text = "helm_mail_raidshaman_a_01_scm.m2", - value = "helm_mail_raidshaman_a_01_scm.m2", + fileId = "139122", + text = "helm_magic_b_02_gnf.m2", + value = "helm_magic_b_02_gnf.m2", }, { - fileId = "139814", - text = "helm_mail_raidshaman_a_01_taf.m2", - value = "helm_mail_raidshaman_a_01_taf.m2", + fileId = "139123", + text = "helm_magic_b_02_gnm.m2", + value = "helm_magic_b_02_gnm.m2", }, { - fileId = "139815", - text = "helm_mail_raidshaman_a_01_tam.m2", - value = "helm_mail_raidshaman_a_01_tam.m2", + fileId = "139124", + text = "helm_magic_b_02_gof.m2", + value = "helm_magic_b_02_gof.m2", }, { - fileId = "139816", - text = "helm_mail_raidshaman_a_01_trf.m2", - value = "helm_mail_raidshaman_a_01_trf.m2", + fileId = "139125", + text = "helm_magic_b_02_gom.m2", + value = "helm_magic_b_02_gom.m2", }, { - fileId = "139817", - text = "helm_mail_raidshaman_a_01_trm.m2", - value = "helm_mail_raidshaman_a_01_trm.m2", + fileId = "139126", + text = "helm_magic_b_02_huf.m2", + value = "helm_magic_b_02_huf.m2", }, { - fileId = "139824", - text = "helm_mail_raidshaman_b_01_bef.m2", - value = "helm_mail_raidshaman_b_01_bef.m2", + fileId = "139127", + text = "helm_magic_b_02_hum.m2", + value = "helm_magic_b_02_hum.m2", }, { - fileId = "139825", - text = "helm_mail_raidshaman_b_01_bem.m2", - value = "helm_mail_raidshaman_b_01_bem.m2", + fileId = "139128", + text = "helm_magic_b_02_nif.m2", + value = "helm_magic_b_02_nif.m2", }, { - fileId = "139826", - text = "helm_mail_raidshaman_b_01_drf.m2", - value = "helm_mail_raidshaman_b_01_drf.m2", + fileId = "139129", + text = "helm_magic_b_02_nim.m2", + value = "helm_magic_b_02_nim.m2", }, { - fileId = "139827", - text = "helm_mail_raidshaman_b_01_drm.m2", - value = "helm_mail_raidshaman_b_01_drm.m2", + fileId = "139130", + text = "helm_magic_b_02_orf.m2", + value = "helm_magic_b_02_orf.m2", }, { - fileId = "139828", - text = "helm_mail_raidshaman_b_01_dwf.m2", - value = "helm_mail_raidshaman_b_01_dwf.m2", + fileId = "139131", + text = "helm_magic_b_02_orm.m2", + value = "helm_magic_b_02_orm.m2", }, { - fileId = "139829", - text = "helm_mail_raidshaman_b_01_dwm.m2", - value = "helm_mail_raidshaman_b_01_dwm.m2", + fileId = "139132", + text = "helm_magic_b_02_scf.m2", + value = "helm_magic_b_02_scf.m2", }, { - fileId = "139830", - text = "helm_mail_raidshaman_b_01_gnf.m2", - value = "helm_mail_raidshaman_b_01_gnf.m2", + fileId = "139133", + text = "helm_magic_b_02_scm.m2", + value = "helm_magic_b_02_scm.m2", }, { - fileId = "139831", - text = "helm_mail_raidshaman_b_01_gnm.m2", - value = "helm_mail_raidshaman_b_01_gnm.m2", + fileId = "139134", + text = "helm_magic_b_02_taf.m2", + value = "helm_magic_b_02_taf.m2", }, { - fileId = "139832", - text = "helm_mail_raidshaman_b_01_gof.m2", - value = "helm_mail_raidshaman_b_01_gof.m2", + fileId = "139135", + text = "helm_magic_b_02_tam.m2", + value = "helm_magic_b_02_tam.m2", }, { - fileId = "139833", - text = "helm_mail_raidshaman_b_01_gom.m2", - value = "helm_mail_raidshaman_b_01_gom.m2", + fileId = "139136", + text = "helm_magic_b_02_trf.m2", + value = "helm_magic_b_02_trf.m2", }, { - fileId = "139834", - text = "helm_mail_raidshaman_b_01_huf.m2", - value = "helm_mail_raidshaman_b_01_huf.m2", + fileId = "139137", + text = "helm_magic_b_02_trm.m2", + value = "helm_magic_b_02_trm.m2", }, { - fileId = "139835", - text = "helm_mail_raidshaman_b_01_hum.m2", - value = "helm_mail_raidshaman_b_01_hum.m2", + fileId = "404141", + text = "helm_magic_b_02_wof.m2", + value = "helm_magic_b_02_wof.m2", }, { - fileId = "139836", - text = "helm_mail_raidshaman_b_01_nif.m2", - value = "helm_mail_raidshaman_b_01_nif.m2", + fileId = "404142", + text = "helm_magic_b_02_wom.m2", + value = "helm_magic_b_02_wom.m2", }, { - fileId = "139837", - text = "helm_mail_raidshaman_b_01_nim.m2", - value = "helm_mail_raidshaman_b_01_nim.m2", + fileId = "139139", + text = "helm_magic_c_01_bef.m2", + value = "helm_magic_c_01_bef.m2", }, { - fileId = "139838", - text = "helm_mail_raidshaman_b_01_orf.m2", - value = "helm_mail_raidshaman_b_01_orf.m2", + fileId = "139140", + text = "helm_magic_c_01_bem.m2", + value = "helm_magic_c_01_bem.m2", }, { - fileId = "139839", - text = "helm_mail_raidshaman_b_01_orm.m2", - value = "helm_mail_raidshaman_b_01_orm.m2", + fileId = "139141", + text = "helm_magic_c_01_drf.m2", + value = "helm_magic_c_01_drf.m2", }, { - fileId = "139840", - text = "helm_mail_raidshaman_b_01_scf.m2", - value = "helm_mail_raidshaman_b_01_scf.m2", + fileId = "139142", + text = "helm_magic_c_01_drm.m2", + value = "helm_magic_c_01_drm.m2", }, { - fileId = "139841", - text = "helm_mail_raidshaman_b_01_scm.m2", - value = "helm_mail_raidshaman_b_01_scm.m2", + fileId = "139143", + text = "helm_magic_c_01_dwf.m2", + value = "helm_magic_c_01_dwf.m2", }, { - fileId = "139842", - text = "helm_mail_raidshaman_b_01_taf.m2", - value = "helm_mail_raidshaman_b_01_taf.m2", + fileId = "139144", + text = "helm_magic_c_01_dwm.m2", + value = "helm_magic_c_01_dwm.m2", }, { - fileId = "139843", - text = "helm_mail_raidshaman_b_01_tam.m2", - value = "helm_mail_raidshaman_b_01_tam.m2", + fileId = "139145", + text = "helm_magic_c_01_gnf.m2", + value = "helm_magic_c_01_gnf.m2", }, { - fileId = "139844", - text = "helm_mail_raidshaman_b_01_trf.m2", - value = "helm_mail_raidshaman_b_01_trf.m2", + fileId = "139146", + text = "helm_magic_c_01_gnm.m2", + value = "helm_magic_c_01_gnm.m2", }, { - fileId = "139845", - text = "helm_mail_raidshaman_b_01_trm.m2", - value = "helm_mail_raidshaman_b_01_trm.m2", + fileId = "139147", + text = "helm_magic_c_01_gof.m2", + value = "helm_magic_c_01_gof.m2", }, { - fileId = "139851", - text = "helm_mail_raidshaman_d_01_bef.m2", - value = "helm_mail_raidshaman_d_01_bef.m2", + fileId = "139148", + text = "helm_magic_c_01_gom.m2", + value = "helm_magic_c_01_gom.m2", }, { - fileId = "139852", - text = "helm_mail_raidshaman_d_01_bem.m2", - value = "helm_mail_raidshaman_d_01_bem.m2", + fileId = "139149", + text = "helm_magic_c_01_huf.m2", + value = "helm_magic_c_01_huf.m2", }, { - fileId = "139853", - text = "helm_mail_raidshaman_d_01_drf.m2", - value = "helm_mail_raidshaman_d_01_drf.m2", + fileId = "139150", + text = "helm_magic_c_01_hum.m2", + value = "helm_magic_c_01_hum.m2", }, { - fileId = "139854", - text = "helm_mail_raidshaman_d_01_drm.m2", - value = "helm_mail_raidshaman_d_01_drm.m2", + fileId = "139151", + text = "helm_magic_c_01_nif.m2", + value = "helm_magic_c_01_nif.m2", }, { - fileId = "139855", - text = "helm_mail_raidshaman_d_01_dwf.m2", - value = "helm_mail_raidshaman_d_01_dwf.m2", + fileId = "139152", + text = "helm_magic_c_01_nim.m2", + value = "helm_magic_c_01_nim.m2", }, { - fileId = "139856", - text = "helm_mail_raidshaman_d_01_dwm.m2", - value = "helm_mail_raidshaman_d_01_dwm.m2", + fileId = "139153", + text = "helm_magic_c_01_orf.m2", + value = "helm_magic_c_01_orf.m2", }, { - fileId = "139857", - text = "helm_mail_raidshaman_d_01_gnf.m2", - value = "helm_mail_raidshaman_d_01_gnf.m2", + fileId = "139154", + text = "helm_magic_c_01_orm.m2", + value = "helm_magic_c_01_orm.m2", }, { - fileId = "139858", - text = "helm_mail_raidshaman_d_01_gnm.m2", - value = "helm_mail_raidshaman_d_01_gnm.m2", + fileId = "139155", + text = "helm_magic_c_01_scf.m2", + value = "helm_magic_c_01_scf.m2", }, { - fileId = "139859", - text = "helm_mail_raidshaman_d_01_gof.m2", - value = "helm_mail_raidshaman_d_01_gof.m2", + fileId = "139156", + text = "helm_magic_c_01_scm.m2", + value = "helm_magic_c_01_scm.m2", }, { - fileId = "139860", - text = "helm_mail_raidshaman_d_01_gom.m2", - value = "helm_mail_raidshaman_d_01_gom.m2", + fileId = "139157", + text = "helm_magic_c_01_taf.m2", + value = "helm_magic_c_01_taf.m2", }, { - fileId = "139862", - text = "helm_mail_raidshaman_d_01_huf.m2", - value = "helm_mail_raidshaman_d_01_huf.m2", + fileId = "139158", + text = "helm_magic_c_01_tam.m2", + value = "helm_magic_c_01_tam.m2", }, { - fileId = "139863", - text = "helm_mail_raidshaman_d_01_hum.m2", - value = "helm_mail_raidshaman_d_01_hum.m2", + fileId = "139159", + text = "helm_magic_c_01_trf.m2", + value = "helm_magic_c_01_trf.m2", }, { - fileId = "139864", - text = "helm_mail_raidshaman_d_01_nif.m2", - value = "helm_mail_raidshaman_d_01_nif.m2", + fileId = "139160", + text = "helm_magic_c_01_trm.m2", + value = "helm_magic_c_01_trm.m2", }, { - fileId = "139865", - text = "helm_mail_raidshaman_d_01_nim.m2", - value = "helm_mail_raidshaman_d_01_nim.m2", + fileId = "404143", + text = "helm_magic_c_01_wof.m2", + value = "helm_magic_c_01_wof.m2", }, { - fileId = "139866", - text = "helm_mail_raidshaman_d_01_orf.m2", - value = "helm_mail_raidshaman_d_01_orf.m2", + fileId = "404144", + text = "helm_magic_c_01_wom.m2", + value = "helm_magic_c_01_wom.m2", }, { - fileId = "139867", - text = "helm_mail_raidshaman_d_01_orm.m2", - value = "helm_mail_raidshaman_d_01_orm.m2", + fileId = "139163", + text = "helm_mail_a_01_bef.m2", + value = "helm_mail_a_01_bef.m2", }, { - fileId = "139868", - text = "helm_mail_raidshaman_d_01_scf.m2", - value = "helm_mail_raidshaman_d_01_scf.m2", + fileId = "139164", + text = "helm_mail_a_01_bem.m2", + value = "helm_mail_a_01_bem.m2", }, { - fileId = "139869", - text = "helm_mail_raidshaman_d_01_scm.m2", - value = "helm_mail_raidshaman_d_01_scm.m2", + fileId = "139165", + text = "helm_mail_a_01_drf.m2", + value = "helm_mail_a_01_drf.m2", }, { - fileId = "139870", - text = "helm_mail_raidshaman_d_01_taf.m2", - value = "helm_mail_raidshaman_d_01_taf.m2", + fileId = "139166", + text = "helm_mail_a_01_drm.m2", + value = "helm_mail_a_01_drm.m2", }, { - fileId = "139871", - text = "helm_mail_raidshaman_d_01_tam.m2", - value = "helm_mail_raidshaman_d_01_tam.m2", + fileId = "139167", + text = "helm_mail_a_01_dwf.m2", + value = "helm_mail_a_01_dwf.m2", }, { - fileId = "139872", - text = "helm_mail_raidshaman_d_01_trf.m2", - value = "helm_mail_raidshaman_d_01_trf.m2", + fileId = "139168", + text = "helm_mail_a_01_dwm.m2", + value = "helm_mail_a_01_dwm.m2", }, { - fileId = "139873", - text = "helm_mail_raidshaman_d_01_trm.m2", - value = "helm_mail_raidshaman_d_01_trm.m2", + fileId = "139169", + text = "helm_mail_a_01_gnf.m2", + value = "helm_mail_a_01_gnf.m2", }, { - fileId = "139876", - text = "helm_mail_raidshaman_e_01_bef.m2", - value = "helm_mail_raidshaman_e_01_bef.m2", + fileId = "139170", + text = "helm_mail_a_01_gnm.m2", + value = "helm_mail_a_01_gnm.m2", }, { - fileId = "139877", - text = "helm_mail_raidshaman_e_01_bem.m2", - value = "helm_mail_raidshaman_e_01_bem.m2", + fileId = "139171", + text = "helm_mail_a_01_gof.m2", + value = "helm_mail_a_01_gof.m2", }, { - fileId = "139878", - text = "helm_mail_raidshaman_e_01_drf.m2", - value = "helm_mail_raidshaman_e_01_drf.m2", + fileId = "139172", + text = "helm_mail_a_01_gom.m2", + value = "helm_mail_a_01_gom.m2", }, { - fileId = "139879", - text = "helm_mail_raidshaman_e_01_drm.m2", - value = "helm_mail_raidshaman_e_01_drm.m2", + fileId = "139173", + text = "helm_mail_a_01_huf.m2", + value = "helm_mail_a_01_huf.m2", }, { - fileId = "139880", - text = "helm_mail_raidshaman_e_01_dwf.m2", - value = "helm_mail_raidshaman_e_01_dwf.m2", + fileId = "139174", + text = "helm_mail_a_01_hum.m2", + value = "helm_mail_a_01_hum.m2", }, { - fileId = "139881", - text = "helm_mail_raidshaman_e_01_dwm.m2", - value = "helm_mail_raidshaman_e_01_dwm.m2", + fileId = "139175", + text = "helm_mail_a_01_nif.m2", + value = "helm_mail_a_01_nif.m2", }, { - fileId = "139882", - text = "helm_mail_raidshaman_e_01_gnf.m2", - value = "helm_mail_raidshaman_e_01_gnf.m2", + fileId = "139176", + text = "helm_mail_a_01_nim.m2", + value = "helm_mail_a_01_nim.m2", }, { - fileId = "139883", - text = "helm_mail_raidshaman_e_01_gnm.m2", - value = "helm_mail_raidshaman_e_01_gnm.m2", + fileId = "139177", + text = "helm_mail_a_01_orf.m2", + value = "helm_mail_a_01_orf.m2", }, { - fileId = "139884", - text = "helm_mail_raidshaman_e_01_gof.m2", - value = "helm_mail_raidshaman_e_01_gof.m2", + fileId = "139178", + text = "helm_mail_a_01_orm.m2", + value = "helm_mail_a_01_orm.m2", }, { - fileId = "139885", - text = "helm_mail_raidshaman_e_01_gom.m2", - value = "helm_mail_raidshaman_e_01_gom.m2", + fileId = "139179", + text = "helm_mail_a_01_scf.m2", + value = "helm_mail_a_01_scf.m2", }, { - fileId = "139886", - text = "helm_mail_raidshaman_e_01_huf.m2", - value = "helm_mail_raidshaman_e_01_huf.m2", + fileId = "139180", + text = "helm_mail_a_01_scm.m2", + value = "helm_mail_a_01_scm.m2", }, { - fileId = "139887", - text = "helm_mail_raidshaman_e_01_hum.m2", - value = "helm_mail_raidshaman_e_01_hum.m2", + fileId = "139181", + text = "helm_mail_a_01_taf.m2", + value = "helm_mail_a_01_taf.m2", }, { - fileId = "139888", - text = "helm_mail_raidshaman_e_01_nif.m2", - value = "helm_mail_raidshaman_e_01_nif.m2", + fileId = "139182", + text = "helm_mail_a_01_tam.m2", + value = "helm_mail_a_01_tam.m2", }, { - fileId = "139889", - text = "helm_mail_raidshaman_e_01_nim.m2", - value = "helm_mail_raidshaman_e_01_nim.m2", + fileId = "139183", + text = "helm_mail_a_01_trf.m2", + value = "helm_mail_a_01_trf.m2", }, { - fileId = "139890", - text = "helm_mail_raidshaman_e_01_orf.m2", - value = "helm_mail_raidshaman_e_01_orf.m2", + fileId = "139184", + text = "helm_mail_a_01_trm.m2", + value = "helm_mail_a_01_trm.m2", }, { - fileId = "139891", - text = "helm_mail_raidshaman_e_01_orm.m2", - value = "helm_mail_raidshaman_e_01_orm.m2", + fileId = "404151", + text = "helm_mail_a_01_wof.m2", + value = "helm_mail_a_01_wof.m2", }, { - fileId = "139892", - text = "helm_mail_raidshaman_e_01_scf.m2", - value = "helm_mail_raidshaman_e_01_scf.m2", + fileId = "404152", + text = "helm_mail_a_01_wom.m2", + value = "helm_mail_a_01_wom.m2", }, { - fileId = "139893", - text = "helm_mail_raidshaman_e_01_scm.m2", - value = "helm_mail_raidshaman_e_01_scm.m2", + fileId = "139191", + text = "helm_mail_a_02_bef.m2", + value = "helm_mail_a_02_bef.m2", }, { - fileId = "139894", - text = "helm_mail_raidshaman_e_01_taf.m2", - value = "helm_mail_raidshaman_e_01_taf.m2", + fileId = "139192", + text = "helm_mail_a_02_bem.m2", + value = "helm_mail_a_02_bem.m2", }, { - fileId = "139895", - text = "helm_mail_raidshaman_e_01_tam.m2", - value = "helm_mail_raidshaman_e_01_tam.m2", + fileId = "139193", + text = "helm_mail_a_02_drf.m2", + value = "helm_mail_a_02_drf.m2", }, { - fileId = "139896", - text = "helm_mail_raidshaman_e_01_trf.m2", - value = "helm_mail_raidshaman_e_01_trf.m2", + fileId = "139194", + text = "helm_mail_a_02_drm.m2", + value = "helm_mail_a_02_drm.m2", }, { - fileId = "139897", - text = "helm_mail_raidshaman_e_01_trm.m2", - value = "helm_mail_raidshaman_e_01_trm.m2", + fileId = "139195", + text = "helm_mail_a_02_dwf.m2", + value = "helm_mail_a_02_dwf.m2", }, { - fileId = "139900", - text = "helm_mail_raidshaman_f_01_bef.m2", - value = "helm_mail_raidshaman_f_01_bef.m2", + fileId = "139196", + text = "helm_mail_a_02_dwm.m2", + value = "helm_mail_a_02_dwm.m2", }, { - fileId = "139901", - text = "helm_mail_raidshaman_f_01_bem.m2", - value = "helm_mail_raidshaman_f_01_bem.m2", + fileId = "139197", + text = "helm_mail_a_02_gnf.m2", + value = "helm_mail_a_02_gnf.m2", }, { - fileId = "139902", - text = "helm_mail_raidshaman_f_01_drf.m2", - value = "helm_mail_raidshaman_f_01_drf.m2", + fileId = "139198", + text = "helm_mail_a_02_gnm.m2", + value = "helm_mail_a_02_gnm.m2", }, { - fileId = "139903", - text = "helm_mail_raidshaman_f_01_drm.m2", - value = "helm_mail_raidshaman_f_01_drm.m2", + fileId = "139199", + text = "helm_mail_a_02_gof.m2", + value = "helm_mail_a_02_gof.m2", }, { - fileId = "139904", - text = "helm_mail_raidshaman_f_01_dwf.m2", - value = "helm_mail_raidshaman_f_01_dwf.m2", + fileId = "139200", + text = "helm_mail_a_02_gom.m2", + value = "helm_mail_a_02_gom.m2", }, { - fileId = "139905", - text = "helm_mail_raidshaman_f_01_dwm.m2", - value = "helm_mail_raidshaman_f_01_dwm.m2", + fileId = "139201", + text = "helm_mail_a_02_huf.m2", + value = "helm_mail_a_02_huf.m2", }, { - fileId = "139906", - text = "helm_mail_raidshaman_f_01_gnf.m2", - value = "helm_mail_raidshaman_f_01_gnf.m2", + fileId = "139202", + text = "helm_mail_a_02_hum.m2", + value = "helm_mail_a_02_hum.m2", }, { - fileId = "139907", - text = "helm_mail_raidshaman_f_01_gnm.m2", - value = "helm_mail_raidshaman_f_01_gnm.m2", + fileId = "139203", + text = "helm_mail_a_02_nif.m2", + value = "helm_mail_a_02_nif.m2", }, { - fileId = "139908", - text = "helm_mail_raidshaman_f_01_gof.m2", - value = "helm_mail_raidshaman_f_01_gof.m2", + fileId = "139204", + text = "helm_mail_a_02_nim.m2", + value = "helm_mail_a_02_nim.m2", }, { - fileId = "139909", - text = "helm_mail_raidshaman_f_01_gom.m2", - value = "helm_mail_raidshaman_f_01_gom.m2", + fileId = "139205", + text = "helm_mail_a_02_orf.m2", + value = "helm_mail_a_02_orf.m2", }, { - fileId = "139910", - text = "helm_mail_raidshaman_f_01_huf.m2", - value = "helm_mail_raidshaman_f_01_huf.m2", + fileId = "139206", + text = "helm_mail_a_02_orm.m2", + value = "helm_mail_a_02_orm.m2", }, { - fileId = "139911", - text = "helm_mail_raidshaman_f_01_hum.m2", - value = "helm_mail_raidshaman_f_01_hum.m2", + fileId = "139207", + text = "helm_mail_a_02_scf.m2", + value = "helm_mail_a_02_scf.m2", }, { - fileId = "139912", - text = "helm_mail_raidshaman_f_01_nif.m2", - value = "helm_mail_raidshaman_f_01_nif.m2", + fileId = "139208", + text = "helm_mail_a_02_scm.m2", + value = "helm_mail_a_02_scm.m2", }, { - fileId = "139913", - text = "helm_mail_raidshaman_f_01_nim.m2", - value = "helm_mail_raidshaman_f_01_nim.m2", + fileId = "139209", + text = "helm_mail_a_02_taf.m2", + value = "helm_mail_a_02_taf.m2", }, { - fileId = "139914", - text = "helm_mail_raidshaman_f_01_orf.m2", - value = "helm_mail_raidshaman_f_01_orf.m2", + fileId = "139210", + text = "helm_mail_a_02_tam.m2", + value = "helm_mail_a_02_tam.m2", }, { - fileId = "139915", - text = "helm_mail_raidshaman_f_01_orm.m2", - value = "helm_mail_raidshaman_f_01_orm.m2", + fileId = "139211", + text = "helm_mail_a_02_trf.m2", + value = "helm_mail_a_02_trf.m2", }, { - fileId = "139916", - text = "helm_mail_raidshaman_f_01_scf.m2", - value = "helm_mail_raidshaman_f_01_scf.m2", + fileId = "139212", + text = "helm_mail_a_02_trm.m2", + value = "helm_mail_a_02_trm.m2", }, { - fileId = "139917", - text = "helm_mail_raidshaman_f_01_scm.m2", - value = "helm_mail_raidshaman_f_01_scm.m2", + fileId = "404153", + text = "helm_mail_a_02_wof.m2", + value = "helm_mail_a_02_wof.m2", }, { - fileId = "139918", - text = "helm_mail_raidshaman_f_01_taf.m2", - value = "helm_mail_raidshaman_f_01_taf.m2", + fileId = "404154", + text = "helm_mail_a_02_wom.m2", + value = "helm_mail_a_02_wom.m2", }, { - fileId = "139919", - text = "helm_mail_raidshaman_f_01_tam.m2", - value = "helm_mail_raidshaman_f_01_tam.m2", + fileId = "139217", + text = "helm_mail_ahnqiraj_a_01_bef.m2", + value = "helm_mail_ahnqiraj_a_01_bef.m2", }, { - fileId = "139920", - text = "helm_mail_raidshaman_f_01_trf.m2", - value = "helm_mail_raidshaman_f_01_trf.m2", + fileId = "139218", + text = "helm_mail_ahnqiraj_a_01_bem.m2", + value = "helm_mail_ahnqiraj_a_01_bem.m2", }, { - fileId = "139921", - text = "helm_mail_raidshaman_f_01_trm.m2", - value = "helm_mail_raidshaman_f_01_trm.m2", + fileId = "139219", + text = "helm_mail_ahnqiraj_a_01_drf.m2", + value = "helm_mail_ahnqiraj_a_01_drf.m2", }, { - fileId = "249211", - text = "helm_mail_raidshaman_g_01_bef.m2", - value = "helm_mail_raidshaman_g_01_bef.m2", + fileId = "139220", + text = "helm_mail_ahnqiraj_a_01_drm.m2", + value = "helm_mail_ahnqiraj_a_01_drm.m2", }, { - fileId = "249212", - text = "helm_mail_raidshaman_g_01_bem.m2", - value = "helm_mail_raidshaman_g_01_bem.m2", + fileId = "139221", + text = "helm_mail_ahnqiraj_a_01_dwf.m2", + value = "helm_mail_ahnqiraj_a_01_dwf.m2", }, { - fileId = "249213", - text = "helm_mail_raidshaman_g_01_drf.m2", - value = "helm_mail_raidshaman_g_01_drf.m2", + fileId = "139222", + text = "helm_mail_ahnqiraj_a_01_dwm.m2", + value = "helm_mail_ahnqiraj_a_01_dwm.m2", }, { - fileId = "249214", - text = "helm_mail_raidshaman_g_01_drm.m2", - value = "helm_mail_raidshaman_g_01_drm.m2", + fileId = "139223", + text = "helm_mail_ahnqiraj_a_01_gnf.m2", + value = "helm_mail_ahnqiraj_a_01_gnf.m2", }, { - fileId = "249215", - text = "helm_mail_raidshaman_g_01_dwf.m2", - value = "helm_mail_raidshaman_g_01_dwf.m2", + fileId = "139224", + text = "helm_mail_ahnqiraj_a_01_gnm.m2", + value = "helm_mail_ahnqiraj_a_01_gnm.m2", }, { - fileId = "249216", - text = "helm_mail_raidshaman_g_01_dwm.m2", - value = "helm_mail_raidshaman_g_01_dwm.m2", + fileId = "139225", + text = "helm_mail_ahnqiraj_a_01_gof.m2", + value = "helm_mail_ahnqiraj_a_01_gof.m2", }, { - fileId = "249217", - text = "helm_mail_raidshaman_g_01_gnf.m2", - value = "helm_mail_raidshaman_g_01_gnf.m2", + fileId = "139226", + text = "helm_mail_ahnqiraj_a_01_gom.m2", + value = "helm_mail_ahnqiraj_a_01_gom.m2", }, { - fileId = "249218", - text = "helm_mail_raidshaman_g_01_gnm.m2", - value = "helm_mail_raidshaman_g_01_gnm.m2", + fileId = "139227", + text = "helm_mail_ahnqiraj_a_01_huf.m2", + value = "helm_mail_ahnqiraj_a_01_huf.m2", }, { - fileId = "249219", - text = "helm_mail_raidshaman_g_01_gof.m2", - value = "helm_mail_raidshaman_g_01_gof.m2", + fileId = "139228", + text = "helm_mail_ahnqiraj_a_01_hum.m2", + value = "helm_mail_ahnqiraj_a_01_hum.m2", }, { - fileId = "249220", - text = "helm_mail_raidshaman_g_01_gom.m2", - value = "helm_mail_raidshaman_g_01_gom.m2", + fileId = "139229", + text = "helm_mail_ahnqiraj_a_01_nif.m2", + value = "helm_mail_ahnqiraj_a_01_nif.m2", }, { - fileId = "249221", - text = "helm_mail_raidshaman_g_01_huf.m2", - value = "helm_mail_raidshaman_g_01_huf.m2", + fileId = "139230", + text = "helm_mail_ahnqiraj_a_01_nim.m2", + value = "helm_mail_ahnqiraj_a_01_nim.m2", }, { - fileId = "249222", - text = "helm_mail_raidshaman_g_01_hum.m2", - value = "helm_mail_raidshaman_g_01_hum.m2", + fileId = "139231", + text = "helm_mail_ahnqiraj_a_01_orf.m2", + value = "helm_mail_ahnqiraj_a_01_orf.m2", }, { - fileId = "249223", - text = "helm_mail_raidshaman_g_01_nif.m2", - value = "helm_mail_raidshaman_g_01_nif.m2", + fileId = "139232", + text = "helm_mail_ahnqiraj_a_01_orm.m2", + value = "helm_mail_ahnqiraj_a_01_orm.m2", }, { - fileId = "249224", - text = "helm_mail_raidshaman_g_01_nim.m2", - value = "helm_mail_raidshaman_g_01_nim.m2", + fileId = "139233", + text = "helm_mail_ahnqiraj_a_01_scf.m2", + value = "helm_mail_ahnqiraj_a_01_scf.m2", }, { - fileId = "249225", - text = "helm_mail_raidshaman_g_01_orf.m2", - value = "helm_mail_raidshaman_g_01_orf.m2", + fileId = "139234", + text = "helm_mail_ahnqiraj_a_01_scm.m2", + value = "helm_mail_ahnqiraj_a_01_scm.m2", }, { - fileId = "249226", - text = "helm_mail_raidshaman_g_01_orm.m2", - value = "helm_mail_raidshaman_g_01_orm.m2", + fileId = "139235", + text = "helm_mail_ahnqiraj_a_01_taf.m2", + value = "helm_mail_ahnqiraj_a_01_taf.m2", }, { - fileId = "249227", - text = "helm_mail_raidshaman_g_01_scf.m2", - value = "helm_mail_raidshaman_g_01_scf.m2", + fileId = "139236", + text = "helm_mail_ahnqiraj_a_01_tam.m2", + value = "helm_mail_ahnqiraj_a_01_tam.m2", }, { - fileId = "249228", - text = "helm_mail_raidshaman_g_01_scm.m2", - value = "helm_mail_raidshaman_g_01_scm.m2", + fileId = "139237", + text = "helm_mail_ahnqiraj_a_01_trf.m2", + value = "helm_mail_ahnqiraj_a_01_trf.m2", }, { - fileId = "249229", - text = "helm_mail_raidshaman_g_01_taf.m2", - value = "helm_mail_raidshaman_g_01_taf.m2", + fileId = "139238", + text = "helm_mail_ahnqiraj_a_01_trm.m2", + value = "helm_mail_ahnqiraj_a_01_trm.m2", }, { - fileId = "249230", - text = "helm_mail_raidshaman_g_01_tam.m2", - value = "helm_mail_raidshaman_g_01_tam.m2", + fileId = "404145", + text = "helm_mail_ahnqiraj_a_01_wof.m2", + value = "helm_mail_ahnqiraj_a_01_wof.m2", }, { - fileId = "249231", - text = "helm_mail_raidshaman_g_01_trf.m2", - value = "helm_mail_raidshaman_g_01_trf.m2", + fileId = "404146", + text = "helm_mail_ahnqiraj_a_01_wom.m2", + value = "helm_mail_ahnqiraj_a_01_wom.m2", }, { - fileId = "249232", - text = "helm_mail_raidshaman_g_01_trm.m2", - value = "helm_mail_raidshaman_g_01_trm.m2", + fileId = "317580", + text = "helm_mail_argentalliance_d_01_bef.m2", + value = "helm_mail_argentalliance_d_01_bef.m2", }, { - fileId = "349421", - text = "helm_mail_raidshaman_h_01_bef.m2", - value = "helm_mail_raidshaman_h_01_bef.m2", + fileId = "317581", + text = "helm_mail_argentalliance_d_01_bem.m2", + value = "helm_mail_argentalliance_d_01_bem.m2", }, { - fileId = "349422", - text = "helm_mail_raidshaman_h_01_bem.m2", - value = "helm_mail_raidshaman_h_01_bem.m2", + fileId = "317582", + text = "helm_mail_argentalliance_d_01_drf.m2", + value = "helm_mail_argentalliance_d_01_drf.m2", }, { - fileId = "349423", - text = "helm_mail_raidshaman_h_01_drf.m2", - value = "helm_mail_raidshaman_h_01_drf.m2", + fileId = "317583", + text = "helm_mail_argentalliance_d_01_drm.m2", + value = "helm_mail_argentalliance_d_01_drm.m2", }, { - fileId = "349424", - text = "helm_mail_raidshaman_h_01_drm.m2", - value = "helm_mail_raidshaman_h_01_drm.m2", + fileId = "317584", + text = "helm_mail_argentalliance_d_01_dwf.m2", + value = "helm_mail_argentalliance_d_01_dwf.m2", }, { - fileId = "349425", - text = "helm_mail_raidshaman_h_01_dwf.m2", - value = "helm_mail_raidshaman_h_01_dwf.m2", + fileId = "317585", + text = "helm_mail_argentalliance_d_01_dwm.m2", + value = "helm_mail_argentalliance_d_01_dwm.m2", }, { - fileId = "349426", - text = "helm_mail_raidshaman_h_01_dwm.m2", - value = "helm_mail_raidshaman_h_01_dwm.m2", + fileId = "317586", + text = "helm_mail_argentalliance_d_01_gnf.m2", + value = "helm_mail_argentalliance_d_01_gnf.m2", }, { - fileId = "349427", - text = "helm_mail_raidshaman_h_01_gnf.m2", - value = "helm_mail_raidshaman_h_01_gnf.m2", + fileId = "317587", + text = "helm_mail_argentalliance_d_01_gnm.m2", + value = "helm_mail_argentalliance_d_01_gnm.m2", }, { - fileId = "349428", - text = "helm_mail_raidshaman_h_01_gnm.m2", - value = "helm_mail_raidshaman_h_01_gnm.m2", + fileId = "317588", + text = "helm_mail_argentalliance_d_01_gof.m2", + value = "helm_mail_argentalliance_d_01_gof.m2", }, { - fileId = "349429", - text = "helm_mail_raidshaman_h_01_gof.m2", - value = "helm_mail_raidshaman_h_01_gof.m2", + fileId = "317589", + text = "helm_mail_argentalliance_d_01_gom.m2", + value = "helm_mail_argentalliance_d_01_gom.m2", }, { - fileId = "349430", - text = "helm_mail_raidshaman_h_01_gom.m2", - value = "helm_mail_raidshaman_h_01_gom.m2", + fileId = "317590", + text = "helm_mail_argentalliance_d_01_huf.m2", + value = "helm_mail_argentalliance_d_01_huf.m2", }, { - fileId = "349431", - text = "helm_mail_raidshaman_h_01_huf.m2", - value = "helm_mail_raidshaman_h_01_huf.m2", + fileId = "317591", + text = "helm_mail_argentalliance_d_01_hum.m2", + value = "helm_mail_argentalliance_d_01_hum.m2", }, { - fileId = "349432", - text = "helm_mail_raidshaman_h_01_hum.m2", - value = "helm_mail_raidshaman_h_01_hum.m2", + fileId = "317592", + text = "helm_mail_argentalliance_d_01_nif.m2", + value = "helm_mail_argentalliance_d_01_nif.m2", }, { - fileId = "349433", - text = "helm_mail_raidshaman_h_01_nif.m2", - value = "helm_mail_raidshaman_h_01_nif.m2", + fileId = "317593", + text = "helm_mail_argentalliance_d_01_nim.m2", + value = "helm_mail_argentalliance_d_01_nim.m2", }, { - fileId = "349434", - text = "helm_mail_raidshaman_h_01_nim.m2", - value = "helm_mail_raidshaman_h_01_nim.m2", + fileId = "317594", + text = "helm_mail_argentalliance_d_01_orf.m2", + value = "helm_mail_argentalliance_d_01_orf.m2", }, { - fileId = "349435", - text = "helm_mail_raidshaman_h_01_orf.m2", - value = "helm_mail_raidshaman_h_01_orf.m2", + fileId = "317595", + text = "helm_mail_argentalliance_d_01_orm.m2", + value = "helm_mail_argentalliance_d_01_orm.m2", }, { - fileId = "349436", - text = "helm_mail_raidshaman_h_01_orm.m2", - value = "helm_mail_raidshaman_h_01_orm.m2", + fileId = "317596", + text = "helm_mail_argentalliance_d_01_scf.m2", + value = "helm_mail_argentalliance_d_01_scf.m2", }, { - fileId = "349437", - text = "helm_mail_raidshaman_h_01_scf.m2", - value = "helm_mail_raidshaman_h_01_scf.m2", + fileId = "317597", + text = "helm_mail_argentalliance_d_01_scm.m2", + value = "helm_mail_argentalliance_d_01_scm.m2", }, { - fileId = "349438", - text = "helm_mail_raidshaman_h_01_scm.m2", - value = "helm_mail_raidshaman_h_01_scm.m2", + fileId = "317598", + text = "helm_mail_argentalliance_d_01_taf.m2", + value = "helm_mail_argentalliance_d_01_taf.m2", }, { - fileId = "349439", - text = "helm_mail_raidshaman_h_01_taf.m2", - value = "helm_mail_raidshaman_h_01_taf.m2", + fileId = "317599", + text = "helm_mail_argentalliance_d_01_tam.m2", + value = "helm_mail_argentalliance_d_01_tam.m2", }, { - fileId = "349440", - text = "helm_mail_raidshaman_h_01_tam.m2", - value = "helm_mail_raidshaman_h_01_tam.m2", + fileId = "317600", + text = "helm_mail_argentalliance_d_01_trf.m2", + value = "helm_mail_argentalliance_d_01_trf.m2", }, { - fileId = "349441", - text = "helm_mail_raidshaman_h_01_trf.m2", - value = "helm_mail_raidshaman_h_01_trf.m2", + fileId = "317601", + text = "helm_mail_argentalliance_d_01_trm.m2", + value = "helm_mail_argentalliance_d_01_trm.m2", }, { - fileId = "349442", - text = "helm_mail_raidshaman_h_01_trm.m2", - value = "helm_mail_raidshaman_h_01_trm.m2", + fileId = "404147", + text = "helm_mail_argentalliance_d_01_wof.m2", + value = "helm_mail_argentalliance_d_01_wof.m2", }, { - fileId = "353015", - text = "helm_mail_raidshaman_h_02_bef.m2", - value = "helm_mail_raidshaman_h_02_bef.m2", + fileId = "404148", + text = "helm_mail_argentalliance_d_01_wom.m2", + value = "helm_mail_argentalliance_d_01_wom.m2", }, { - fileId = "353016", - text = "helm_mail_raidshaman_h_02_bem.m2", - value = "helm_mail_raidshaman_h_02_bem.m2", + fileId = "315282", + text = "helm_mail_argenthorde_d_01_bef.m2", + value = "helm_mail_argenthorde_d_01_bef.m2", }, { - fileId = "353017", - text = "helm_mail_raidshaman_h_02_drf.m2", - value = "helm_mail_raidshaman_h_02_drf.m2", + fileId = "315283", + text = "helm_mail_argenthorde_d_01_bem.m2", + value = "helm_mail_argenthorde_d_01_bem.m2", }, { - fileId = "353018", - text = "helm_mail_raidshaman_h_02_drm.m2", - value = "helm_mail_raidshaman_h_02_drm.m2", + fileId = "315284", + text = "helm_mail_argenthorde_d_01_drf.m2", + value = "helm_mail_argenthorde_d_01_drf.m2", }, { - fileId = "353019", - text = "helm_mail_raidshaman_h_02_dwf.m2", - value = "helm_mail_raidshaman_h_02_dwf.m2", + fileId = "315285", + text = "helm_mail_argenthorde_d_01_drm.m2", + value = "helm_mail_argenthorde_d_01_drm.m2", }, { - fileId = "353020", - text = "helm_mail_raidshaman_h_02_dwm.m2", - value = "helm_mail_raidshaman_h_02_dwm.m2", + fileId = "315286", + text = "helm_mail_argenthorde_d_01_dwf.m2", + value = "helm_mail_argenthorde_d_01_dwf.m2", }, { - fileId = "353021", - text = "helm_mail_raidshaman_h_02_gnf.m2", - value = "helm_mail_raidshaman_h_02_gnf.m2", + fileId = "315287", + text = "helm_mail_argenthorde_d_01_dwm.m2", + value = "helm_mail_argenthorde_d_01_dwm.m2", }, { - fileId = "353022", - text = "helm_mail_raidshaman_h_02_gnm.m2", - value = "helm_mail_raidshaman_h_02_gnm.m2", + fileId = "315288", + text = "helm_mail_argenthorde_d_01_gnf.m2", + value = "helm_mail_argenthorde_d_01_gnf.m2", }, { - fileId = "353023", - text = "helm_mail_raidshaman_h_02_gof.m2", - value = "helm_mail_raidshaman_h_02_gof.m2", + fileId = "315289", + text = "helm_mail_argenthorde_d_01_gnm.m2", + value = "helm_mail_argenthorde_d_01_gnm.m2", }, { - fileId = "353024", - text = "helm_mail_raidshaman_h_02_gom.m2", - value = "helm_mail_raidshaman_h_02_gom.m2", + fileId = "315290", + text = "helm_mail_argenthorde_d_01_gof.m2", + value = "helm_mail_argenthorde_d_01_gof.m2", }, { - fileId = "353025", - text = "helm_mail_raidshaman_h_02_huf.m2", - value = "helm_mail_raidshaman_h_02_huf.m2", + fileId = "315291", + text = "helm_mail_argenthorde_d_01_gom.m2", + value = "helm_mail_argenthorde_d_01_gom.m2", }, { - fileId = "353026", - text = "helm_mail_raidshaman_h_02_hum.m2", - value = "helm_mail_raidshaman_h_02_hum.m2", + fileId = "315292", + text = "helm_mail_argenthorde_d_01_huf.m2", + value = "helm_mail_argenthorde_d_01_huf.m2", }, { - fileId = "353027", - text = "helm_mail_raidshaman_h_02_nif.m2", - value = "helm_mail_raidshaman_h_02_nif.m2", + fileId = "315293", + text = "helm_mail_argenthorde_d_01_hum.m2", + value = "helm_mail_argenthorde_d_01_hum.m2", }, { - fileId = "353028", - text = "helm_mail_raidshaman_h_02_nim.m2", - value = "helm_mail_raidshaman_h_02_nim.m2", + fileId = "315294", + text = "helm_mail_argenthorde_d_01_nif.m2", + value = "helm_mail_argenthorde_d_01_nif.m2", }, { - fileId = "353029", - text = "helm_mail_raidshaman_h_02_orf.m2", - value = "helm_mail_raidshaman_h_02_orf.m2", + fileId = "315295", + text = "helm_mail_argenthorde_d_01_nim.m2", + value = "helm_mail_argenthorde_d_01_nim.m2", }, { - fileId = "354938", - text = "helm_mail_raidshaman_h_02_orm.m2", - value = "helm_mail_raidshaman_h_02_orm.m2", + fileId = "315297", + text = "helm_mail_argenthorde_d_01_orf.m2", + value = "helm_mail_argenthorde_d_01_orf.m2", }, { - fileId = "353030", - text = "helm_mail_raidshaman_h_02_scf.m2", - value = "helm_mail_raidshaman_h_02_scf.m2", + fileId = "315298", + text = "helm_mail_argenthorde_d_01_orm.m2", + value = "helm_mail_argenthorde_d_01_orm.m2", }, { - fileId = "353031", - text = "helm_mail_raidshaman_h_02_scm.m2", - value = "helm_mail_raidshaman_h_02_scm.m2", + fileId = "315299", + text = "helm_mail_argenthorde_d_01_scf.m2", + value = "helm_mail_argenthorde_d_01_scf.m2", }, { - fileId = "353032", - text = "helm_mail_raidshaman_h_02_taf.m2", - value = "helm_mail_raidshaman_h_02_taf.m2", + fileId = "315300", + text = "helm_mail_argenthorde_d_01_scm.m2", + value = "helm_mail_argenthorde_d_01_scm.m2", }, { - fileId = "353033", - text = "helm_mail_raidshaman_h_02_tam.m2", - value = "helm_mail_raidshaman_h_02_tam.m2", + fileId = "315301", + text = "helm_mail_argenthorde_d_01_taf.m2", + value = "helm_mail_argenthorde_d_01_taf.m2", }, { - fileId = "353034", - text = "helm_mail_raidshaman_h_02_trf.m2", - value = "helm_mail_raidshaman_h_02_trf.m2", + fileId = "315302", + text = "helm_mail_argenthorde_d_01_tam.m2", + value = "helm_mail_argenthorde_d_01_tam.m2", }, { - fileId = "353035", - text = "helm_mail_raidshaman_h_02_trm.m2", - value = "helm_mail_raidshaman_h_02_trm.m2", + fileId = "315303", + text = "helm_mail_argenthorde_d_01_trf.m2", + value = "helm_mail_argenthorde_d_01_trf.m2", }, { - fileId = "139926", - text = "helm_mail_sunwell_d_01_bef.m2", - value = "helm_mail_sunwell_d_01_bef.m2", + fileId = "315304", + text = "helm_mail_argenthorde_d_01_trm.m2", + value = "helm_mail_argenthorde_d_01_trm.m2", }, { - fileId = "139927", - text = "helm_mail_sunwell_d_01_bem.m2", - value = "helm_mail_sunwell_d_01_bem.m2", + fileId = "404149", + text = "helm_mail_argenthorde_d_01_wof.m2", + value = "helm_mail_argenthorde_d_01_wof.m2", }, { - fileId = "139928", - text = "helm_mail_sunwell_d_01_drf.m2", - value = "helm_mail_sunwell_d_01_drf.m2", + fileId = "404150", + text = "helm_mail_argenthorde_d_01_wom.m2", + value = "helm_mail_argenthorde_d_01_wom.m2", }, { - fileId = "139929", - text = "helm_mail_sunwell_d_01_drm.m2", - value = "helm_mail_sunwell_d_01_drm.m2", + fileId = "139243", + text = "helm_mail_b_01_bef.m2", + value = "helm_mail_b_01_bef.m2", }, { - fileId = "139930", - text = "helm_mail_sunwell_d_01_dwf.m2", - value = "helm_mail_sunwell_d_01_dwf.m2", + fileId = "139244", + text = "helm_mail_b_01_bem.m2", + value = "helm_mail_b_01_bem.m2", }, { - fileId = "139931", - text = "helm_mail_sunwell_d_01_dwm.m2", - value = "helm_mail_sunwell_d_01_dwm.m2", + fileId = "139245", + text = "helm_mail_b_01_drf.m2", + value = "helm_mail_b_01_drf.m2", }, { - fileId = "139932", - text = "helm_mail_sunwell_d_01_gnf.m2", - value = "helm_mail_sunwell_d_01_gnf.m2", + fileId = "139246", + text = "helm_mail_b_01_drm.m2", + value = "helm_mail_b_01_drm.m2", }, { - fileId = "139933", - text = "helm_mail_sunwell_d_01_gnm.m2", - value = "helm_mail_sunwell_d_01_gnm.m2", + fileId = "139247", + text = "helm_mail_b_01_dwf.m2", + value = "helm_mail_b_01_dwf.m2", }, { - fileId = "139934", - text = "helm_mail_sunwell_d_01_gof.m2", - value = "helm_mail_sunwell_d_01_gof.m2", + fileId = "139248", + text = "helm_mail_b_01_dwm.m2", + value = "helm_mail_b_01_dwm.m2", }, { - fileId = "139935", - text = "helm_mail_sunwell_d_01_gom.m2", - value = "helm_mail_sunwell_d_01_gom.m2", + fileId = "139249", + text = "helm_mail_b_01_gnf.m2", + value = "helm_mail_b_01_gnf.m2", }, { - fileId = "139936", - text = "helm_mail_sunwell_d_01_huf.m2", - value = "helm_mail_sunwell_d_01_huf.m2", + fileId = "139250", + text = "helm_mail_b_01_gnm.m2", + value = "helm_mail_b_01_gnm.m2", }, { - fileId = "139937", - text = "helm_mail_sunwell_d_01_hum.m2", - value = "helm_mail_sunwell_d_01_hum.m2", + fileId = "139251", + text = "helm_mail_b_01_gof.m2", + value = "helm_mail_b_01_gof.m2", }, { - fileId = "139938", - text = "helm_mail_sunwell_d_01_nif.m2", - value = "helm_mail_sunwell_d_01_nif.m2", + fileId = "139252", + text = "helm_mail_b_01_gom.m2", + value = "helm_mail_b_01_gom.m2", }, { - fileId = "139939", - text = "helm_mail_sunwell_d_01_nim.m2", - value = "helm_mail_sunwell_d_01_nim.m2", + fileId = "139253", + text = "helm_mail_b_01_huf.m2", + value = "helm_mail_b_01_huf.m2", }, { - fileId = "139940", - text = "helm_mail_sunwell_d_01_orf.m2", - value = "helm_mail_sunwell_d_01_orf.m2", + fileId = "139254", + text = "helm_mail_b_01_hum.m2", + value = "helm_mail_b_01_hum.m2", }, { - fileId = "139941", - text = "helm_mail_sunwell_d_01_orm.m2", - value = "helm_mail_sunwell_d_01_orm.m2", + fileId = "139255", + text = "helm_mail_b_01_nif.m2", + value = "helm_mail_b_01_nif.m2", }, { - fileId = "139942", - text = "helm_mail_sunwell_d_01_scf.m2", - value = "helm_mail_sunwell_d_01_scf.m2", + fileId = "139256", + text = "helm_mail_b_01_nim.m2", + value = "helm_mail_b_01_nim.m2", }, { - fileId = "139943", - text = "helm_mail_sunwell_d_01_scm.m2", - value = "helm_mail_sunwell_d_01_scm.m2", + fileId = "139257", + text = "helm_mail_b_01_orf.m2", + value = "helm_mail_b_01_orf.m2", }, { - fileId = "139944", - text = "helm_mail_sunwell_d_01_taf.m2", - value = "helm_mail_sunwell_d_01_taf.m2", + fileId = "139258", + text = "helm_mail_b_01_orm.m2", + value = "helm_mail_b_01_orm.m2", }, { - fileId = "139945", - text = "helm_mail_sunwell_d_01_tam.m2", - value = "helm_mail_sunwell_d_01_tam.m2", + fileId = "139259", + text = "helm_mail_b_01_scf.m2", + value = "helm_mail_b_01_scf.m2", }, { - fileId = "139946", - text = "helm_mail_sunwell_d_01_trf.m2", - value = "helm_mail_sunwell_d_01_trf.m2", + fileId = "139260", + text = "helm_mail_b_01_scm.m2", + value = "helm_mail_b_01_scm.m2", }, { - fileId = "139947", - text = "helm_mail_sunwell_d_01_trm.m2", - value = "helm_mail_sunwell_d_01_trm.m2", + fileId = "139261", + text = "helm_mail_b_01_taf.m2", + value = "helm_mail_b_01_taf.m2", }, { - fileId = "238031", - text = "helm_mail_vrykul_01_nsm.m2", - value = "helm_mail_vrykul_01_nsm.m2", + fileId = "139262", + text = "helm_mail_b_01_tam.m2", + value = "helm_mail_b_01_tam.m2", }, { - fileId = "238032", - text = "helm_mail_vrykul_01_vrm.m2", - value = "helm_mail_vrykul_01_vrm.m2", + fileId = "139263", + text = "helm_mail_b_01_trf.m2", + value = "helm_mail_b_01_trf.m2", }, { - fileId = "139953", - text = "helm_mail_zulaman_d_01_bef.m2", - value = "helm_mail_zulaman_d_01_bef.m2", + fileId = "139264", + text = "helm_mail_b_01_trm.m2", + value = "helm_mail_b_01_trm.m2", }, { - fileId = "139954", - text = "helm_mail_zulaman_d_01_bem.m2", - value = "helm_mail_zulaman_d_01_bem.m2", + fileId = "404155", + text = "helm_mail_b_01_wof.m2", + value = "helm_mail_b_01_wof.m2", }, { - fileId = "139955", - text = "helm_mail_zulaman_d_01_drf.m2", - value = "helm_mail_zulaman_d_01_drf.m2", + fileId = "404156", + text = "helm_mail_b_01_wom.m2", + value = "helm_mail_b_01_wom.m2", }, { - fileId = "139956", - text = "helm_mail_zulaman_d_01_drm.m2", - value = "helm_mail_zulaman_d_01_drm.m2", + fileId = "139265", + text = "helm_mail_c_01_bem.m2", + value = "helm_mail_c_01_bem.m2", }, { - fileId = "139957", - text = "helm_mail_zulaman_d_01_dwf.m2", - value = "helm_mail_zulaman_d_01_dwf.m2", + fileId = "139266", + text = "helm_mail_c_01_drm.m2", + value = "helm_mail_c_01_drm.m2", }, { - fileId = "139958", - text = "helm_mail_zulaman_d_01_dwm.m2", - value = "helm_mail_zulaman_d_01_dwm.m2", + fileId = "139267", + text = "helm_mail_c_01_gof.m2", + value = "helm_mail_c_01_gof.m2", }, { - fileId = "139959", - text = "helm_mail_zulaman_d_01_gnf.m2", - value = "helm_mail_zulaman_d_01_gnf.m2", + fileId = "139268", + text = "helm_mail_c_02_bef.m2", + value = "helm_mail_c_02_bef.m2", }, { - fileId = "139960", - text = "helm_mail_zulaman_d_01_gnm.m2", - value = "helm_mail_zulaman_d_01_gnm.m2", + fileId = "139269", + text = "helm_mail_c_02_bem.m2", + value = "helm_mail_c_02_bem.m2", }, { - fileId = "139961", - text = "helm_mail_zulaman_d_01_huf.m2", - value = "helm_mail_zulaman_d_01_huf.m2", + fileId = "139270", + text = "helm_mail_c_02_drf.m2", + value = "helm_mail_c_02_drf.m2", }, { - fileId = "139962", - text = "helm_mail_zulaman_d_01_hum.m2", - value = "helm_mail_zulaman_d_01_hum.m2", + fileId = "139271", + text = "helm_mail_c_02_drm.m2", + value = "helm_mail_c_02_drm.m2", }, { - fileId = "139963", - text = "helm_mail_zulaman_d_01_nif.m2", - value = "helm_mail_zulaman_d_01_nif.m2", + fileId = "139272", + text = "helm_mail_c_02_dwf.m2", + value = "helm_mail_c_02_dwf.m2", }, { - fileId = "139964", - text = "helm_mail_zulaman_d_01_nim.m2", - value = "helm_mail_zulaman_d_01_nim.m2", + fileId = "139273", + text = "helm_mail_c_02_dwm.m2", + value = "helm_mail_c_02_dwm.m2", }, { - fileId = "139965", - text = "helm_mail_zulaman_d_01_orf.m2", - value = "helm_mail_zulaman_d_01_orf.m2", + fileId = "139274", + text = "helm_mail_c_02_gnf.m2", + value = "helm_mail_c_02_gnf.m2", }, { - fileId = "139966", - text = "helm_mail_zulaman_d_01_orm.m2", - value = "helm_mail_zulaman_d_01_orm.m2", + fileId = "139275", + text = "helm_mail_c_02_gnm.m2", + value = "helm_mail_c_02_gnm.m2", }, { - fileId = "139967", - text = "helm_mail_zulaman_d_01_scf.m2", - value = "helm_mail_zulaman_d_01_scf.m2", + fileId = "139276", + text = "helm_mail_c_02_gof.m2", + value = "helm_mail_c_02_gof.m2", }, { - fileId = "139968", - text = "helm_mail_zulaman_d_01_scm.m2", - value = "helm_mail_zulaman_d_01_scm.m2", + fileId = "463023", + text = "helm_mail_c_02_gom.m2", + value = "helm_mail_c_02_gom.m2", }, { - fileId = "139969", - text = "helm_mail_zulaman_d_01_taf.m2", - value = "helm_mail_zulaman_d_01_taf.m2", + fileId = "139277", + text = "helm_mail_c_02_huf.m2", + value = "helm_mail_c_02_huf.m2", }, { - fileId = "139970", - text = "helm_mail_zulaman_d_01_tam.m2", - value = "helm_mail_zulaman_d_01_tam.m2", + fileId = "139278", + text = "helm_mail_c_02_hum.m2", + value = "helm_mail_c_02_hum.m2", }, { - fileId = "139971", - text = "helm_mail_zulaman_d_01_trf.m2", - value = "helm_mail_zulaman_d_01_trf.m2", + fileId = "139279", + text = "helm_mail_c_02_nif.m2", + value = "helm_mail_c_02_nif.m2", }, { - fileId = "139972", - text = "helm_mail_zulaman_d_01_trm.m2", - value = "helm_mail_zulaman_d_01_trm.m2", + fileId = "139280", + text = "helm_mail_c_02_nim.m2", + value = "helm_mail_c_02_nim.m2", }, { - fileId = "139978", - text = "helm_mail_zulaman_d_02_bef.m2", - value = "helm_mail_zulaman_d_02_bef.m2", + fileId = "139281", + text = "helm_mail_c_02_orf.m2", + value = "helm_mail_c_02_orf.m2", }, { - fileId = "139979", - text = "helm_mail_zulaman_d_02_bem.m2", - value = "helm_mail_zulaman_d_02_bem.m2", + fileId = "139282", + text = "helm_mail_c_02_orm.m2", + value = "helm_mail_c_02_orm.m2", }, { - fileId = "139980", - text = "helm_mail_zulaman_d_02_drf.m2", - value = "helm_mail_zulaman_d_02_drf.m2", + fileId = "139283", + text = "helm_mail_c_02_scf.m2", + value = "helm_mail_c_02_scf.m2", }, { - fileId = "139981", - text = "helm_mail_zulaman_d_02_drm.m2", - value = "helm_mail_zulaman_d_02_drm.m2", + fileId = "139284", + text = "helm_mail_c_02_scm.m2", + value = "helm_mail_c_02_scm.m2", }, { - fileId = "139982", - text = "helm_mail_zulaman_d_02_dwf.m2", - value = "helm_mail_zulaman_d_02_dwf.m2", + fileId = "139285", + text = "helm_mail_c_02_taf.m2", + value = "helm_mail_c_02_taf.m2", }, { - fileId = "139983", - text = "helm_mail_zulaman_d_02_dwm.m2", - value = "helm_mail_zulaman_d_02_dwm.m2", + fileId = "139286", + text = "helm_mail_c_02_tam.m2", + value = "helm_mail_c_02_tam.m2", }, { - fileId = "139984", - text = "helm_mail_zulaman_d_02_gnf.m2", - value = "helm_mail_zulaman_d_02_gnf.m2", + fileId = "139287", + text = "helm_mail_c_02_trf.m2", + value = "helm_mail_c_02_trf.m2", }, { - fileId = "139985", - text = "helm_mail_zulaman_d_02_gnm.m2", - value = "helm_mail_zulaman_d_02_gnm.m2", + fileId = "139288", + text = "helm_mail_c_02_trm.m2", + value = "helm_mail_c_02_trm.m2", }, { - fileId = "139986", - text = "helm_mail_zulaman_d_02_huf.m2", - value = "helm_mail_zulaman_d_02_huf.m2", + fileId = "404165", + text = "helm_mail_c_02_wof.m2", + value = "helm_mail_c_02_wof.m2", }, { - fileId = "139987", - text = "helm_mail_zulaman_d_02_hum.m2", - value = "helm_mail_zulaman_d_02_hum.m2", + fileId = "404166", + text = "helm_mail_c_02_wom.m2", + value = "helm_mail_c_02_wom.m2", }, { - fileId = "139988", - text = "helm_mail_zulaman_d_02_nif.m2", - value = "helm_mail_zulaman_d_02_nif.m2", + fileId = "423935", + text = "helm_mail_cataclysm_b_01_bef.m2", + value = "helm_mail_cataclysm_b_01_bef.m2", }, { - fileId = "139989", - text = "helm_mail_zulaman_d_02_nim.m2", - value = "helm_mail_zulaman_d_02_nim.m2", + fileId = "423936", + text = "helm_mail_cataclysm_b_01_bem.m2", + value = "helm_mail_cataclysm_b_01_bem.m2", }, { - fileId = "139990", - text = "helm_mail_zulaman_d_02_orf.m2", - value = "helm_mail_zulaman_d_02_orf.m2", + fileId = "423937", + text = "helm_mail_cataclysm_b_01_drf.m2", + value = "helm_mail_cataclysm_b_01_drf.m2", }, { - fileId = "139991", - text = "helm_mail_zulaman_d_02_orm.m2", - value = "helm_mail_zulaman_d_02_orm.m2", + fileId = "423938", + text = "helm_mail_cataclysm_b_01_drm.m2", + value = "helm_mail_cataclysm_b_01_drm.m2", }, { - fileId = "139992", - text = "helm_mail_zulaman_d_02_scf.m2", - value = "helm_mail_zulaman_d_02_scf.m2", + fileId = "423939", + text = "helm_mail_cataclysm_b_01_dwf.m2", + value = "helm_mail_cataclysm_b_01_dwf.m2", }, { - fileId = "139993", - text = "helm_mail_zulaman_d_02_scm.m2", - value = "helm_mail_zulaman_d_02_scm.m2", + fileId = "423940", + text = "helm_mail_cataclysm_b_01_dwm.m2", + value = "helm_mail_cataclysm_b_01_dwm.m2", }, { - fileId = "139994", - text = "helm_mail_zulaman_d_02_taf.m2", - value = "helm_mail_zulaman_d_02_taf.m2", + fileId = "423941", + text = "helm_mail_cataclysm_b_01_gnf.m2", + value = "helm_mail_cataclysm_b_01_gnf.m2", }, { - fileId = "139995", - text = "helm_mail_zulaman_d_02_tam.m2", - value = "helm_mail_zulaman_d_02_tam.m2", + fileId = "423942", + text = "helm_mail_cataclysm_b_01_gnm.m2", + value = "helm_mail_cataclysm_b_01_gnm.m2", }, { - fileId = "139996", - text = "helm_mail_zulaman_d_02_trf.m2", - value = "helm_mail_zulaman_d_02_trf.m2", + fileId = "423943", + text = "helm_mail_cataclysm_b_01_gof.m2", + value = "helm_mail_cataclysm_b_01_gof.m2", }, { - fileId = "139997", - text = "helm_mail_zulaman_d_02_trm.m2", - value = "helm_mail_zulaman_d_02_trm.m2", + fileId = "423944", + text = "helm_mail_cataclysm_b_01_gom.m2", + value = "helm_mail_cataclysm_b_01_gom.m2", }, { - fileId = "140002", - text = "helm_mask_a_01troll_bef.m2", - value = "helm_mask_a_01troll_bef.m2", + fileId = "423945", + text = "helm_mail_cataclysm_b_01_huf.m2", + value = "helm_mail_cataclysm_b_01_huf.m2", }, { - fileId = "140003", - text = "helm_mask_a_01troll_bem.m2", - value = "helm_mask_a_01troll_bem.m2", + fileId = "423946", + text = "helm_mail_cataclysm_b_01_hum.m2", + value = "helm_mail_cataclysm_b_01_hum.m2", }, { - fileId = "140004", - text = "helm_mask_a_01troll_drf.m2", - value = "helm_mask_a_01troll_drf.m2", + fileId = "423947", + text = "helm_mail_cataclysm_b_01_nif.m2", + value = "helm_mail_cataclysm_b_01_nif.m2", }, { - fileId = "140005", - text = "helm_mask_a_01troll_drm.m2", - value = "helm_mask_a_01troll_drm.m2", + fileId = "423948", + text = "helm_mail_cataclysm_b_01_nim.m2", + value = "helm_mail_cataclysm_b_01_nim.m2", }, { - fileId = "140006", - text = "helm_mask_a_01troll_dwf.m2", - value = "helm_mask_a_01troll_dwf.m2", + fileId = "423949", + text = "helm_mail_cataclysm_b_01_orf.m2", + value = "helm_mail_cataclysm_b_01_orf.m2", }, { - fileId = "140007", - text = "helm_mask_a_01troll_dwm.m2", - value = "helm_mask_a_01troll_dwm.m2", + fileId = "423950", + text = "helm_mail_cataclysm_b_01_orm.m2", + value = "helm_mail_cataclysm_b_01_orm.m2", }, { - fileId = "238035", - text = "helm_mask_a_01troll_ftm.m2", - value = "helm_mask_a_01troll_ftm.m2", + fileId = "423951", + text = "helm_mail_cataclysm_b_01_scf.m2", + value = "helm_mail_cataclysm_b_01_scf.m2", }, { - fileId = "140008", - text = "helm_mask_a_01troll_gnf.m2", - value = "helm_mask_a_01troll_gnf.m2", + fileId = "423952", + text = "helm_mail_cataclysm_b_01_scm.m2", + value = "helm_mail_cataclysm_b_01_scm.m2", }, { - fileId = "140009", - text = "helm_mask_a_01troll_gnm.m2", - value = "helm_mask_a_01troll_gnm.m2", + fileId = "423953", + text = "helm_mail_cataclysm_b_01_taf.m2", + value = "helm_mail_cataclysm_b_01_taf.m2", }, { - fileId = "140010", - text = "helm_mask_a_01troll_gof.m2", - value = "helm_mask_a_01troll_gof.m2", + fileId = "423954", + text = "helm_mail_cataclysm_b_01_tam.m2", + value = "helm_mail_cataclysm_b_01_tam.m2", }, { - fileId = "140011", - text = "helm_mask_a_01troll_gom.m2", - value = "helm_mask_a_01troll_gom.m2", + fileId = "423955", + text = "helm_mail_cataclysm_b_01_trf.m2", + value = "helm_mail_cataclysm_b_01_trf.m2", }, { - fileId = "140012", - text = "helm_mask_a_01troll_huf.m2", - value = "helm_mask_a_01troll_huf.m2", + fileId = "423956", + text = "helm_mail_cataclysm_b_01_trm.m2", + value = "helm_mail_cataclysm_b_01_trm.m2", }, { - fileId = "140013", - text = "helm_mask_a_01troll_hum.m2", - value = "helm_mask_a_01troll_hum.m2", + fileId = "462568", + text = "helm_mail_cataclysm_b_01_wof.m2", + value = "helm_mail_cataclysm_b_01_wof.m2", }, { - fileId = "238036", - text = "helm_mask_a_01troll_itm.m2", - value = "helm_mask_a_01troll_itm.m2", + fileId = "423957", + text = "helm_mail_cataclysm_b_01_wom.m2", + value = "helm_mail_cataclysm_b_01_wom.m2", }, { - fileId = "140014", - text = "helm_mask_a_01troll_nif.m2", - value = "helm_mask_a_01troll_nif.m2", + fileId = "428224", + text = "helm_mail_cataclysm_b_02_bef.m2", + value = "helm_mail_cataclysm_b_02_bef.m2", }, { - fileId = "140015", - text = "helm_mask_a_01troll_nim.m2", - value = "helm_mask_a_01troll_nim.m2", + fileId = "428225", + text = "helm_mail_cataclysm_b_02_bem.m2", + value = "helm_mail_cataclysm_b_02_bem.m2", }, { - fileId = "140016", - text = "helm_mask_a_01troll_orf.m2", - value = "helm_mask_a_01troll_orf.m2", + fileId = "428226", + text = "helm_mail_cataclysm_b_02_drf.m2", + value = "helm_mail_cataclysm_b_02_drf.m2", }, { - fileId = "140017", - text = "helm_mask_a_01troll_orm.m2", - value = "helm_mask_a_01troll_orm.m2", + fileId = "428227", + text = "helm_mail_cataclysm_b_02_drm.m2", + value = "helm_mail_cataclysm_b_02_drm.m2", }, { - fileId = "140018", - text = "helm_mask_a_01troll_scf.m2", - value = "helm_mask_a_01troll_scf.m2", + fileId = "428228", + text = "helm_mail_cataclysm_b_02_dwf.m2", + value = "helm_mail_cataclysm_b_02_dwf.m2", }, { - fileId = "140019", - text = "helm_mask_a_01troll_scm.m2", - value = "helm_mask_a_01troll_scm.m2", + fileId = "428229", + text = "helm_mail_cataclysm_b_02_dwm.m2", + value = "helm_mail_cataclysm_b_02_dwm.m2", }, { - fileId = "140020", - text = "helm_mask_a_01troll_taf.m2", - value = "helm_mask_a_01troll_taf.m2", + fileId = "428230", + text = "helm_mail_cataclysm_b_02_gnf.m2", + value = "helm_mail_cataclysm_b_02_gnf.m2", }, { - fileId = "140021", - text = "helm_mask_a_01troll_tam.m2", - value = "helm_mask_a_01troll_tam.m2", + fileId = "428231", + text = "helm_mail_cataclysm_b_02_gnm.m2", + value = "helm_mail_cataclysm_b_02_gnm.m2", }, { - fileId = "140022", - text = "helm_mask_a_01troll_trf.m2", - value = "helm_mask_a_01troll_trf.m2", + fileId = "428232", + text = "helm_mail_cataclysm_b_02_gof.m2", + value = "helm_mail_cataclysm_b_02_gof.m2", }, { - fileId = "140023", - text = "helm_mask_a_01troll_trm.m2", - value = "helm_mask_a_01troll_trm.m2", + fileId = "428233", + text = "helm_mail_cataclysm_b_02_gom.m2", + value = "helm_mail_cataclysm_b_02_gom.m2", }, { - fileId = "140024", - text = "helm_mask_b_01mirror_bef.m2", - value = "helm_mask_b_01mirror_bef.m2", + fileId = "428234", + text = "helm_mail_cataclysm_b_02_huf.m2", + value = "helm_mail_cataclysm_b_02_huf.m2", }, { - fileId = "140025", - text = "helm_mask_b_01mirror_bem.m2", - value = "helm_mask_b_01mirror_bem.m2", + fileId = "428235", + text = "helm_mail_cataclysm_b_02_hum.m2", + value = "helm_mail_cataclysm_b_02_hum.m2", }, { - fileId = "140026", - text = "helm_mask_b_01mirror_drf.m2", - value = "helm_mask_b_01mirror_drf.m2", + fileId = "428236", + text = "helm_mail_cataclysm_b_02_nif.m2", + value = "helm_mail_cataclysm_b_02_nif.m2", }, { - fileId = "140027", - text = "helm_mask_b_01mirror_drm.m2", - value = "helm_mask_b_01mirror_drm.m2", + fileId = "428237", + text = "helm_mail_cataclysm_b_02_nim.m2", + value = "helm_mail_cataclysm_b_02_nim.m2", }, { - fileId = "140028", - text = "helm_mask_b_01mirror_gof.m2", - value = "helm_mask_b_01mirror_gof.m2", + fileId = "428238", + text = "helm_mail_cataclysm_b_02_orf.m2", + value = "helm_mail_cataclysm_b_02_orf.m2", }, { - fileId = "140029", - text = "helm_mask_b_01mirror_gom.m2", - value = "helm_mask_b_01mirror_gom.m2", + fileId = "428239", + text = "helm_mail_cataclysm_b_02_orm.m2", + value = "helm_mail_cataclysm_b_02_orm.m2", }, { - fileId = "140031", - text = "helm_mask_halloween_bef.m2", - value = "helm_mask_halloween_bef.m2", + fileId = "428240", + text = "helm_mail_cataclysm_b_02_scf.m2", + value = "helm_mail_cataclysm_b_02_scf.m2", }, { - fileId = "140032", - text = "helm_mask_halloween_bem.m2", - value = "helm_mask_halloween_bem.m2", + fileId = "428241", + text = "helm_mail_cataclysm_b_02_scm.m2", + value = "helm_mail_cataclysm_b_02_scm.m2", }, { - fileId = "140036", - text = "helm_mask_halloween_drf.m2", - value = "helm_mask_halloween_drf.m2", + fileId = "428242", + text = "helm_mail_cataclysm_b_02_taf.m2", + value = "helm_mail_cataclysm_b_02_taf.m2", }, { - fileId = "140038", - text = "helm_mask_halloween_drm.m2", - value = "helm_mask_halloween_drm.m2", + fileId = "428243", + text = "helm_mail_cataclysm_b_02_tam.m2", + value = "helm_mail_cataclysm_b_02_tam.m2", }, { - fileId = "140040", - text = "helm_mask_halloween_dwf.m2", - value = "helm_mask_halloween_dwf.m2", + fileId = "428244", + text = "helm_mail_cataclysm_b_02_trf.m2", + value = "helm_mail_cataclysm_b_02_trf.m2", }, { - fileId = "140042", - text = "helm_mask_halloween_dwm.m2", - value = "helm_mask_halloween_dwm.m2", + fileId = "428245", + text = "helm_mail_cataclysm_b_02_trm.m2", + value = "helm_mail_cataclysm_b_02_trm.m2", }, { - fileId = "140044", - text = "helm_mask_halloween_gnf.m2", - value = "helm_mask_halloween_gnf.m2", + fileId = "468062", + text = "helm_mail_cataclysm_b_02_wof.m2", + value = "helm_mail_cataclysm_b_02_wof.m2", }, { - fileId = "140046", - text = "helm_mask_halloween_gnm.m2", - value = "helm_mask_halloween_gnm.m2", + fileId = "428246", + text = "helm_mail_cataclysm_b_02_wom.m2", + value = "helm_mail_cataclysm_b_02_wom.m2", }, { - fileId = "140047", - text = "helm_mask_halloween_gof.m2", - value = "helm_mask_halloween_gof.m2", + fileId = "356667", + text = "helm_mail_common_b_01_bef.m2", + value = "helm_mail_common_b_01_bef.m2", }, { - fileId = "140048", - text = "helm_mask_halloween_gom.m2", - value = "helm_mask_halloween_gom.m2", + fileId = "356668", + text = "helm_mail_common_b_01_bem.m2", + value = "helm_mail_common_b_01_bem.m2", }, { - fileId = "140050", - text = "helm_mask_halloween_huf.m2", - value = "helm_mask_halloween_huf.m2", + fileId = "356669", + text = "helm_mail_common_b_01_drf.m2", + value = "helm_mail_common_b_01_drf.m2", }, { - fileId = "140052", - text = "helm_mask_halloween_hum.m2", - value = "helm_mask_halloween_hum.m2", + fileId = "356670", + text = "helm_mail_common_b_01_drm.m2", + value = "helm_mail_common_b_01_drm.m2", }, { - fileId = "140054", - text = "helm_mask_halloween_nif.m2", - value = "helm_mask_halloween_nif.m2", + fileId = "356671", + text = "helm_mail_common_b_01_dwf.m2", + value = "helm_mail_common_b_01_dwf.m2", }, { - fileId = "140056", - text = "helm_mask_halloween_nim.m2", - value = "helm_mask_halloween_nim.m2", + fileId = "356672", + text = "helm_mail_common_b_01_dwm.m2", + value = "helm_mail_common_b_01_dwm.m2", }, { - fileId = "140058", - text = "helm_mask_halloween_orf.m2", - value = "helm_mask_halloween_orf.m2", + fileId = "356673", + text = "helm_mail_common_b_01_gnf.m2", + value = "helm_mail_common_b_01_gnf.m2", }, { - fileId = "140060", - text = "helm_mask_halloween_orm.m2", - value = "helm_mask_halloween_orm.m2", + fileId = "356674", + text = "helm_mail_common_b_01_gnm.m2", + value = "helm_mail_common_b_01_gnm.m2", }, { - fileId = "140062", - text = "helm_mask_halloween_scf.m2", - value = "helm_mask_halloween_scf.m2", + fileId = "356675", + text = "helm_mail_common_b_01_gof.m2", + value = "helm_mail_common_b_01_gof.m2", }, { - fileId = "140064", - text = "helm_mask_halloween_scm.m2", - value = "helm_mask_halloween_scm.m2", + fileId = "356676", + text = "helm_mail_common_b_01_gom.m2", + value = "helm_mail_common_b_01_gom.m2", }, { - fileId = "140066", - text = "helm_mask_halloween_taf.m2", - value = "helm_mask_halloween_taf.m2", + fileId = "356677", + text = "helm_mail_common_b_01_huf.m2", + value = "helm_mail_common_b_01_huf.m2", }, { - fileId = "140068", - text = "helm_mask_halloween_tam.m2", - value = "helm_mask_halloween_tam.m2", + fileId = "356678", + text = "helm_mail_common_b_01_hum.m2", + value = "helm_mail_common_b_01_hum.m2", }, { - fileId = "140070", - text = "helm_mask_halloween_trf.m2", - value = "helm_mask_halloween_trf.m2", + fileId = "356679", + text = "helm_mail_common_b_01_nif.m2", + value = "helm_mail_common_b_01_nif.m2", }, { - fileId = "140072", - text = "helm_mask_halloween_trm.m2", - value = "helm_mask_halloween_trm.m2", + fileId = "356680", + text = "helm_mail_common_b_01_nim.m2", + value = "helm_mail_common_b_01_nim.m2", }, { - fileId = "325859", - text = "helm_mask_ne_a_01_bef.m2", - value = "helm_mask_ne_a_01_bef.m2", + fileId = "356681", + text = "helm_mail_common_b_01_orf.m2", + value = "helm_mail_common_b_01_orf.m2", }, { - fileId = "325860", - text = "helm_mask_ne_a_01_bem.m2", - value = "helm_mask_ne_a_01_bem.m2", + fileId = "356682", + text = "helm_mail_common_b_01_orm.m2", + value = "helm_mail_common_b_01_orm.m2", }, { - fileId = "325861", - text = "helm_mask_ne_a_01_drf.m2", - value = "helm_mask_ne_a_01_drf.m2", + fileId = "356683", + text = "helm_mail_common_b_01_scf.m2", + value = "helm_mail_common_b_01_scf.m2", }, { - fileId = "325862", - text = "helm_mask_ne_a_01_drm.m2", - value = "helm_mask_ne_a_01_drm.m2", + fileId = "356684", + text = "helm_mail_common_b_01_scm.m2", + value = "helm_mail_common_b_01_scm.m2", }, { - fileId = "325863", - text = "helm_mask_ne_a_01_dwf.m2", - value = "helm_mask_ne_a_01_dwf.m2", + fileId = "356685", + text = "helm_mail_common_b_01_taf.m2", + value = "helm_mail_common_b_01_taf.m2", }, { - fileId = "325864", - text = "helm_mask_ne_a_01_dwm.m2", - value = "helm_mask_ne_a_01_dwm.m2", + fileId = "356686", + text = "helm_mail_common_b_01_tam.m2", + value = "helm_mail_common_b_01_tam.m2", }, { - fileId = "325865", - text = "helm_mask_ne_a_01_gnf.m2", - value = "helm_mask_ne_a_01_gnf.m2", + fileId = "356687", + text = "helm_mail_common_b_01_trf.m2", + value = "helm_mail_common_b_01_trf.m2", }, { - fileId = "325866", - text = "helm_mask_ne_a_01_gnm.m2", - value = "helm_mask_ne_a_01_gnm.m2", + fileId = "356688", + text = "helm_mail_common_b_01_trm.m2", + value = "helm_mail_common_b_01_trm.m2", }, { - fileId = "325867", - text = "helm_mask_ne_a_01_huf.m2", - value = "helm_mask_ne_a_01_huf.m2", + fileId = "404157", + text = "helm_mail_common_b_01_wof.m2", + value = "helm_mail_common_b_01_wof.m2", }, { - fileId = "325868", - text = "helm_mask_ne_a_01_hum.m2", - value = "helm_mask_ne_a_01_hum.m2", + fileId = "404158", + text = "helm_mail_common_b_01_wom.m2", + value = "helm_mail_common_b_01_wom.m2", }, { - fileId = "325869", - text = "helm_mask_ne_a_01_nif.m2", - value = "helm_mask_ne_a_01_nif.m2", + fileId = "360009", + text = "helm_mail_common_b_02_bef.m2", + value = "helm_mail_common_b_02_bef.m2", }, { - fileId = "325870", - text = "helm_mask_ne_a_01_nim.m2", - value = "helm_mask_ne_a_01_nim.m2", + fileId = "360010", + text = "helm_mail_common_b_02_bem.m2", + value = "helm_mail_common_b_02_bem.m2", }, { - fileId = "325871", - text = "helm_mask_ne_a_01_orf.m2", - value = "helm_mask_ne_a_01_orf.m2", + fileId = "360011", + text = "helm_mail_common_b_02_drf.m2", + value = "helm_mail_common_b_02_drf.m2", }, { - fileId = "325872", - text = "helm_mask_ne_a_01_orm.m2", - value = "helm_mask_ne_a_01_orm.m2", + fileId = "360012", + text = "helm_mail_common_b_02_drm.m2", + value = "helm_mail_common_b_02_drm.m2", }, { - fileId = "325873", - text = "helm_mask_ne_a_01_scf.m2", - value = "helm_mask_ne_a_01_scf.m2", + fileId = "360013", + text = "helm_mail_common_b_02_dwf.m2", + value = "helm_mail_common_b_02_dwf.m2", }, { - fileId = "325874", - text = "helm_mask_ne_a_01_scm.m2", - value = "helm_mask_ne_a_01_scm.m2", + fileId = "360014", + text = "helm_mail_common_b_02_dwm.m2", + value = "helm_mail_common_b_02_dwm.m2", }, { - fileId = "325875", - text = "helm_mask_ne_a_01_taf.m2", - value = "helm_mask_ne_a_01_taf.m2", + fileId = "360015", + text = "helm_mail_common_b_02_gnf.m2", + value = "helm_mail_common_b_02_gnf.m2", }, { - fileId = "325876", - text = "helm_mask_ne_a_01_tam.m2", - value = "helm_mask_ne_a_01_tam.m2", + fileId = "360016", + text = "helm_mail_common_b_02_gnm.m2", + value = "helm_mail_common_b_02_gnm.m2", }, { - fileId = "325877", - text = "helm_mask_ne_a_01_trf.m2", - value = "helm_mask_ne_a_01_trf.m2", + fileId = "360017", + text = "helm_mail_common_b_02_gof.m2", + value = "helm_mail_common_b_02_gof.m2", }, { - fileId = "325878", - text = "helm_mask_ne_a_01_trm.m2", - value = "helm_mask_ne_a_01_trm.m2", + fileId = "360018", + text = "helm_mail_common_b_02_gom.m2", + value = "helm_mail_common_b_02_gom.m2", }, { - fileId = "140074", - text = "helm_mask_plague_bef.m2", - value = "helm_mask_plague_bef.m2", + fileId = "360019", + text = "helm_mail_common_b_02_huf.m2", + value = "helm_mail_common_b_02_huf.m2", }, { - fileId = "140075", - text = "helm_mask_plague_bem.m2", - value = "helm_mask_plague_bem.m2", + fileId = "360020", + text = "helm_mail_common_b_02_hum.m2", + value = "helm_mail_common_b_02_hum.m2", }, { - fileId = "140076", - text = "helm_mask_plague_drf.m2", - value = "helm_mask_plague_drf.m2", + fileId = "360021", + text = "helm_mail_common_b_02_nif.m2", + value = "helm_mail_common_b_02_nif.m2", }, { - fileId = "140077", - text = "helm_mask_plague_drm.m2", - value = "helm_mask_plague_drm.m2", + fileId = "360022", + text = "helm_mail_common_b_02_nim.m2", + value = "helm_mail_common_b_02_nim.m2", }, { - fileId = "140078", - text = "helm_mask_plague_dwf.m2", - value = "helm_mask_plague_dwf.m2", + fileId = "360023", + text = "helm_mail_common_b_02_orf.m2", + value = "helm_mail_common_b_02_orf.m2", }, { - fileId = "140079", - text = "helm_mask_plague_dwm.m2", - value = "helm_mask_plague_dwm.m2", + fileId = "360024", + text = "helm_mail_common_b_02_orm.m2", + value = "helm_mail_common_b_02_orm.m2", }, { - fileId = "140080", - text = "helm_mask_plague_gnf.m2", - value = "helm_mask_plague_gnf.m2", + fileId = "360025", + text = "helm_mail_common_b_02_scf.m2", + value = "helm_mail_common_b_02_scf.m2", }, { - fileId = "140081", - text = "helm_mask_plague_gnm.m2", - value = "helm_mask_plague_gnm.m2", + fileId = "360026", + text = "helm_mail_common_b_02_scm.m2", + value = "helm_mail_common_b_02_scm.m2", }, { - fileId = "140082", - text = "helm_mask_plague_gof.m2", - value = "helm_mask_plague_gof.m2", + fileId = "360027", + text = "helm_mail_common_b_02_taf.m2", + value = "helm_mail_common_b_02_taf.m2", }, { - fileId = "140083", - text = "helm_mask_plague_gom.m2", - value = "helm_mask_plague_gom.m2", + fileId = "360028", + text = "helm_mail_common_b_02_tam.m2", + value = "helm_mail_common_b_02_tam.m2", }, { - fileId = "140084", - text = "helm_mask_plague_huf.m2", - value = "helm_mask_plague_huf.m2", + fileId = "360029", + text = "helm_mail_common_b_02_trf.m2", + value = "helm_mail_common_b_02_trf.m2", }, { - fileId = "140085", - text = "helm_mask_plague_hum.m2", - value = "helm_mask_plague_hum.m2", + fileId = "360030", + text = "helm_mail_common_b_02_trm.m2", + value = "helm_mail_common_b_02_trm.m2", }, { - fileId = "140086", - text = "helm_mask_plague_nif.m2", - value = "helm_mask_plague_nif.m2", + fileId = "404159", + text = "helm_mail_common_b_02_wof.m2", + value = "helm_mail_common_b_02_wof.m2", }, { - fileId = "140087", - text = "helm_mask_plague_nim.m2", - value = "helm_mask_plague_nim.m2", + fileId = "404160", + text = "helm_mail_common_b_02_wom.m2", + value = "helm_mail_common_b_02_wom.m2", }, { - fileId = "140088", - text = "helm_mask_plague_orf.m2", - value = "helm_mask_plague_orf.m2", + fileId = "364359", + text = "helm_mail_common_b_03_bef.m2", + value = "helm_mail_common_b_03_bef.m2", }, { - fileId = "140089", - text = "helm_mask_plague_orm.m2", - value = "helm_mask_plague_orm.m2", + fileId = "364360", + text = "helm_mail_common_b_03_bem.m2", + value = "helm_mail_common_b_03_bem.m2", }, { - fileId = "140090", - text = "helm_mask_plague_scf.m2", - value = "helm_mask_plague_scf.m2", + fileId = "364363", + text = "helm_mail_common_b_03_drf.m2", + value = "helm_mail_common_b_03_drf.m2", }, { - fileId = "140091", - text = "helm_mask_plague_scm.m2", - value = "helm_mask_plague_scm.m2", + fileId = "364364", + text = "helm_mail_common_b_03_drm.m2", + value = "helm_mail_common_b_03_drm.m2", }, { - fileId = "140092", - text = "helm_mask_plague_taf.m2", - value = "helm_mask_plague_taf.m2", + fileId = "364365", + text = "helm_mail_common_b_03_dwf.m2", + value = "helm_mail_common_b_03_dwf.m2", }, { - fileId = "140093", - text = "helm_mask_plague_tam.m2", - value = "helm_mask_plague_tam.m2", + fileId = "364366", + text = "helm_mail_common_b_03_dwm.m2", + value = "helm_mail_common_b_03_dwm.m2", }, { - fileId = "140094", - text = "helm_mask_plague_trf.m2", - value = "helm_mask_plague_trf.m2", + fileId = "364367", + text = "helm_mail_common_b_03_gnf.m2", + value = "helm_mail_common_b_03_gnf.m2", }, { - fileId = "140095", - text = "helm_mask_plague_trm.m2", - value = "helm_mask_plague_trm.m2", + fileId = "364368", + text = "helm_mail_common_b_03_gnm.m2", + value = "helm_mail_common_b_03_gnm.m2", }, { - fileId = "140097", - text = "helm_mask_pumpkin_bef.m2", - value = "helm_mask_pumpkin_bef.m2", + fileId = "364369", + text = "helm_mail_common_b_03_gof.m2", + value = "helm_mail_common_b_03_gof.m2", }, { - fileId = "140098", - text = "helm_mask_pumpkin_bem.m2", - value = "helm_mask_pumpkin_bem.m2", + fileId = "364370", + text = "helm_mail_common_b_03_gom.m2", + value = "helm_mail_common_b_03_gom.m2", }, { - fileId = "140099", - text = "helm_mask_pumpkin_drf.m2", - value = "helm_mask_pumpkin_drf.m2", + fileId = "364372", + text = "helm_mail_common_b_03_huf.m2", + value = "helm_mail_common_b_03_huf.m2", }, { - fileId = "140100", - text = "helm_mask_pumpkin_drm.m2", - value = "helm_mask_pumpkin_drm.m2", + fileId = "364373", + text = "helm_mail_common_b_03_hum.m2", + value = "helm_mail_common_b_03_hum.m2", }, { - fileId = "140101", - text = "helm_mask_pumpkin_dwf.m2", - value = "helm_mask_pumpkin_dwf.m2", + fileId = "364374", + text = "helm_mail_common_b_03_nif.m2", + value = "helm_mail_common_b_03_nif.m2", }, { - fileId = "140102", - text = "helm_mask_pumpkin_dwm.m2", - value = "helm_mask_pumpkin_dwm.m2", + fileId = "364375", + text = "helm_mail_common_b_03_nim.m2", + value = "helm_mail_common_b_03_nim.m2", }, { - fileId = "140103", - text = "helm_mask_pumpkin_gnf.m2", - value = "helm_mask_pumpkin_gnf.m2", + fileId = "364376", + text = "helm_mail_common_b_03_orf.m2", + value = "helm_mail_common_b_03_orf.m2", }, { - fileId = "140104", - text = "helm_mask_pumpkin_gnm.m2", - value = "helm_mask_pumpkin_gnm.m2", + fileId = "364377", + text = "helm_mail_common_b_03_orm.m2", + value = "helm_mail_common_b_03_orm.m2", }, { - fileId = "140105", - text = "helm_mask_pumpkin_gof.m2", - value = "helm_mask_pumpkin_gof.m2", + fileId = "364379", + text = "helm_mail_common_b_03_scf.m2", + value = "helm_mail_common_b_03_scf.m2", }, { - fileId = "140106", - text = "helm_mask_pumpkin_gom.m2", - value = "helm_mask_pumpkin_gom.m2", + fileId = "364380", + text = "helm_mail_common_b_03_scm.m2", + value = "helm_mail_common_b_03_scm.m2", }, { - fileId = "140107", - text = "helm_mask_pumpkin_huf.m2", - value = "helm_mask_pumpkin_huf.m2", + fileId = "364381", + text = "helm_mail_common_b_03_taf.m2", + value = "helm_mail_common_b_03_taf.m2", }, { - fileId = "140108", - text = "helm_mask_pumpkin_hum.m2", - value = "helm_mask_pumpkin_hum.m2", + fileId = "364382", + text = "helm_mail_common_b_03_tam.m2", + value = "helm_mail_common_b_03_tam.m2", }, { - fileId = "140109", - text = "helm_mask_pumpkin_nif.m2", - value = "helm_mask_pumpkin_nif.m2", + fileId = "364383", + text = "helm_mail_common_b_03_trf.m2", + value = "helm_mail_common_b_03_trf.m2", }, { - fileId = "140110", - text = "helm_mask_pumpkin_nim.m2", - value = "helm_mask_pumpkin_nim.m2", + fileId = "364384", + text = "helm_mail_common_b_03_trm.m2", + value = "helm_mail_common_b_03_trm.m2", }, { - fileId = "140111", - text = "helm_mask_pumpkin_orf.m2", - value = "helm_mask_pumpkin_orf.m2", + fileId = "404161", + text = "helm_mail_common_b_03_wof.m2", + value = "helm_mail_common_b_03_wof.m2", }, { - fileId = "140112", - text = "helm_mask_pumpkin_orm.m2", - value = "helm_mask_pumpkin_orm.m2", + fileId = "404162", + text = "helm_mail_common_b_03_wom.m2", + value = "helm_mail_common_b_03_wom.m2", }, { - fileId = "140113", - text = "helm_mask_pumpkin_scf.m2", - value = "helm_mask_pumpkin_scf.m2", + fileId = "366257", + text = "helm_mail_common_c_01_bef.m2", + value = "helm_mail_common_c_01_bef.m2", }, { - fileId = "140114", - text = "helm_mask_pumpkin_scm.m2", - value = "helm_mask_pumpkin_scm.m2", + fileId = "366258", + text = "helm_mail_common_c_01_bem.m2", + value = "helm_mail_common_c_01_bem.m2", }, { - fileId = "140115", - text = "helm_mask_pumpkin_taf.m2", - value = "helm_mask_pumpkin_taf.m2", + fileId = "366259", + text = "helm_mail_common_c_01_drf.m2", + value = "helm_mail_common_c_01_drf.m2", }, { - fileId = "140116", - text = "helm_mask_pumpkin_tam.m2", - value = "helm_mask_pumpkin_tam.m2", + fileId = "366260", + text = "helm_mail_common_c_01_drm.m2", + value = "helm_mail_common_c_01_drm.m2", }, { - fileId = "140117", - text = "helm_mask_pumpkin_trf.m2", - value = "helm_mask_pumpkin_trf.m2", + fileId = "366261", + text = "helm_mail_common_c_01_dwf.m2", + value = "helm_mail_common_c_01_dwf.m2", }, { - fileId = "140118", - text = "helm_mask_pumpkin_trm.m2", - value = "helm_mask_pumpkin_trm.m2", + fileId = "366262", + text = "helm_mail_common_c_01_dwm.m2", + value = "helm_mail_common_c_01_dwm.m2", }, { - fileId = "140119", - text = "helm_mask_zulgurub_d_01_bef.m2", - value = "helm_mask_zulgurub_d_01_bef.m2", + fileId = "366263", + text = "helm_mail_common_c_01_gnf.m2", + value = "helm_mail_common_c_01_gnf.m2", }, { - fileId = "140120", - text = "helm_mask_zulgurub_d_01_bem.m2", - value = "helm_mask_zulgurub_d_01_bem.m2", + fileId = "366264", + text = "helm_mail_common_c_01_gnm.m2", + value = "helm_mail_common_c_01_gnm.m2", }, { - fileId = "140121", - text = "helm_mask_zulgurub_d_01_drf.m2", - value = "helm_mask_zulgurub_d_01_drf.m2", + fileId = "366265", + text = "helm_mail_common_c_01_gof.m2", + value = "helm_mail_common_c_01_gof.m2", }, { - fileId = "140122", - text = "helm_mask_zulgurub_d_01_drm.m2", - value = "helm_mask_zulgurub_d_01_drm.m2", + fileId = "366266", + text = "helm_mail_common_c_01_gom.m2", + value = "helm_mail_common_c_01_gom.m2", }, { - fileId = "140123", - text = "helm_mask_zulgurub_d_01_dwf.m2", - value = "helm_mask_zulgurub_d_01_dwf.m2", + fileId = "366267", + text = "helm_mail_common_c_01_huf.m2", + value = "helm_mail_common_c_01_huf.m2", }, { - fileId = "140124", - text = "helm_mask_zulgurub_d_01_dwm.m2", - value = "helm_mask_zulgurub_d_01_dwm.m2", + fileId = "366268", + text = "helm_mail_common_c_01_hum.m2", + value = "helm_mail_common_c_01_hum.m2", }, { - fileId = "140125", - text = "helm_mask_zulgurub_d_01_gnf.m2", - value = "helm_mask_zulgurub_d_01_gnf.m2", + fileId = "366269", + text = "helm_mail_common_c_01_nif.m2", + value = "helm_mail_common_c_01_nif.m2", }, { - fileId = "140126", - text = "helm_mask_zulgurub_d_01_gnm.m2", - value = "helm_mask_zulgurub_d_01_gnm.m2", + fileId = "366270", + text = "helm_mail_common_c_01_nim.m2", + value = "helm_mail_common_c_01_nim.m2", }, { - fileId = "140127", - text = "helm_mask_zulgurub_d_01_gof.m2", - value = "helm_mask_zulgurub_d_01_gof.m2", + fileId = "366271", + text = "helm_mail_common_c_01_orf.m2", + value = "helm_mail_common_c_01_orf.m2", }, { - fileId = "140128", - text = "helm_mask_zulgurub_d_01_gom.m2", - value = "helm_mask_zulgurub_d_01_gom.m2", + fileId = "366272", + text = "helm_mail_common_c_01_orm.m2", + value = "helm_mail_common_c_01_orm.m2", }, { - fileId = "140129", - text = "helm_mask_zulgurub_d_01_huf.m2", - value = "helm_mask_zulgurub_d_01_huf.m2", + fileId = "366273", + text = "helm_mail_common_c_01_scf.m2", + value = "helm_mail_common_c_01_scf.m2", }, { - fileId = "140130", - text = "helm_mask_zulgurub_d_01_hum.m2", - value = "helm_mask_zulgurub_d_01_hum.m2", + fileId = "366274", + text = "helm_mail_common_c_01_scm.m2", + value = "helm_mail_common_c_01_scm.m2", }, { - fileId = "140131", - text = "helm_mask_zulgurub_d_01_nif.m2", - value = "helm_mask_zulgurub_d_01_nif.m2", + fileId = "366275", + text = "helm_mail_common_c_01_taf.m2", + value = "helm_mail_common_c_01_taf.m2", }, { - fileId = "140132", - text = "helm_mask_zulgurub_d_01_nim.m2", - value = "helm_mask_zulgurub_d_01_nim.m2", + fileId = "366276", + text = "helm_mail_common_c_01_tam.m2", + value = "helm_mail_common_c_01_tam.m2", }, { - fileId = "140133", - text = "helm_mask_zulgurub_d_01_orf.m2", - value = "helm_mask_zulgurub_d_01_orf.m2", + fileId = "366277", + text = "helm_mail_common_c_01_trf.m2", + value = "helm_mail_common_c_01_trf.m2", }, { - fileId = "140134", - text = "helm_mask_zulgurub_d_01_orm.m2", - value = "helm_mask_zulgurub_d_01_orm.m2", + fileId = "366278", + text = "helm_mail_common_c_01_trm.m2", + value = "helm_mail_common_c_01_trm.m2", }, { - fileId = "140135", - text = "helm_mask_zulgurub_d_01_scf.m2", - value = "helm_mask_zulgurub_d_01_scf.m2", + fileId = "404163", + text = "helm_mail_common_c_01_wof.m2", + value = "helm_mail_common_c_01_wof.m2", }, { - fileId = "140136", - text = "helm_mask_zulgurub_d_01_scm.m2", - value = "helm_mask_zulgurub_d_01_scm.m2", + fileId = "404164", + text = "helm_mail_common_c_01_wom.m2", + value = "helm_mail_common_c_01_wom.m2", }, { - fileId = "140137", - text = "helm_mask_zulgurub_d_01_taf.m2", - value = "helm_mask_zulgurub_d_01_taf.m2", + fileId = "139293", + text = "helm_mail_d_01_bef.m2", + value = "helm_mail_d_01_bef.m2", }, { - fileId = "140138", - text = "helm_mask_zulgurub_d_01_tam.m2", - value = "helm_mask_zulgurub_d_01_tam.m2", + fileId = "139294", + text = "helm_mail_d_01_bem.m2", + value = "helm_mail_d_01_bem.m2", }, { - fileId = "140139", - text = "helm_mask_zulgurub_d_01_trf.m2", - value = "helm_mask_zulgurub_d_01_trf.m2", + fileId = "139295", + text = "helm_mail_d_01_drf.m2", + value = "helm_mail_d_01_drf.m2", }, { - fileId = "140140", - text = "helm_mask_zulgurub_d_01_trm.m2", - value = "helm_mask_zulgurub_d_01_trm.m2", + fileId = "139296", + text = "helm_mail_d_01_drm.m2", + value = "helm_mail_d_01_drm.m2", }, { - fileId = "252088", - text = "helm_misc_bunnyears_a_01_bef.m2", - value = "helm_misc_bunnyears_a_01_bef.m2", + fileId = "139297", + text = "helm_mail_d_01_dwf.m2", + value = "helm_mail_d_01_dwf.m2", }, { - fileId = "252089", - text = "helm_misc_bunnyears_a_01_bem.m2", - value = "helm_misc_bunnyears_a_01_bem.m2", + fileId = "139298", + text = "helm_mail_d_01_dwm.m2", + value = "helm_mail_d_01_dwm.m2", }, { - fileId = "252090", - text = "helm_misc_bunnyears_a_01_drf.m2", - value = "helm_misc_bunnyears_a_01_drf.m2", + fileId = "139299", + text = "helm_mail_d_01_gnf.m2", + value = "helm_mail_d_01_gnf.m2", }, { - fileId = "252091", - text = "helm_misc_bunnyears_a_01_drm.m2", - value = "helm_misc_bunnyears_a_01_drm.m2", + fileId = "139300", + text = "helm_mail_d_01_gnm.m2", + value = "helm_mail_d_01_gnm.m2", }, { - fileId = "252092", - text = "helm_misc_bunnyears_a_01_dwf.m2", - value = "helm_misc_bunnyears_a_01_dwf.m2", + fileId = "139301", + text = "helm_mail_d_01_gof.m2", + value = "helm_mail_d_01_gof.m2", }, { - fileId = "252093", - text = "helm_misc_bunnyears_a_01_dwm.m2", - value = "helm_misc_bunnyears_a_01_dwm.m2", + fileId = "139302", + text = "helm_mail_d_01_gom.m2", + value = "helm_mail_d_01_gom.m2", }, { - fileId = "252094", - text = "helm_misc_bunnyears_a_01_gnf.m2", - value = "helm_misc_bunnyears_a_01_gnf.m2", + fileId = "139303", + text = "helm_mail_d_01_huf.m2", + value = "helm_mail_d_01_huf.m2", }, { - fileId = "252095", - text = "helm_misc_bunnyears_a_01_gnm.m2", - value = "helm_misc_bunnyears_a_01_gnm.m2", + fileId = "139304", + text = "helm_mail_d_01_hum.m2", + value = "helm_mail_d_01_hum.m2", }, { - fileId = "252096", - text = "helm_misc_bunnyears_a_01_gof.m2", - value = "helm_misc_bunnyears_a_01_gof.m2", + fileId = "139305", + text = "helm_mail_d_01_nif.m2", + value = "helm_mail_d_01_nif.m2", }, { - fileId = "252097", - text = "helm_misc_bunnyears_a_01_gom.m2", - value = "helm_misc_bunnyears_a_01_gom.m2", + fileId = "139306", + text = "helm_mail_d_01_nim.m2", + value = "helm_mail_d_01_nim.m2", }, { - fileId = "252098", - text = "helm_misc_bunnyears_a_01_huf.m2", - value = "helm_misc_bunnyears_a_01_huf.m2", + fileId = "139307", + text = "helm_mail_d_01_orf.m2", + value = "helm_mail_d_01_orf.m2", }, { - fileId = "252099", - text = "helm_misc_bunnyears_a_01_hum.m2", - value = "helm_misc_bunnyears_a_01_hum.m2", + fileId = "139308", + text = "helm_mail_d_01_orm.m2", + value = "helm_mail_d_01_orm.m2", }, { - fileId = "252100", - text = "helm_misc_bunnyears_a_01_nif.m2", - value = "helm_misc_bunnyears_a_01_nif.m2", + fileId = "139309", + text = "helm_mail_d_01_scf.m2", + value = "helm_mail_d_01_scf.m2", }, { - fileId = "252101", - text = "helm_misc_bunnyears_a_01_nim.m2", - value = "helm_misc_bunnyears_a_01_nim.m2", + fileId = "139310", + text = "helm_mail_d_01_scm.m2", + value = "helm_mail_d_01_scm.m2", }, { - fileId = "252102", - text = "helm_misc_bunnyears_a_01_orf.m2", - value = "helm_misc_bunnyears_a_01_orf.m2", + fileId = "139311", + text = "helm_mail_d_01_taf.m2", + value = "helm_mail_d_01_taf.m2", }, { - fileId = "252103", - text = "helm_misc_bunnyears_a_01_orm.m2", - value = "helm_misc_bunnyears_a_01_orm.m2", + fileId = "139312", + text = "helm_mail_d_01_tam.m2", + value = "helm_mail_d_01_tam.m2", }, { - fileId = "252104", - text = "helm_misc_bunnyears_a_01_scf.m2", - value = "helm_misc_bunnyears_a_01_scf.m2", + fileId = "139313", + text = "helm_mail_d_01_trf.m2", + value = "helm_mail_d_01_trf.m2", }, { - fileId = "252105", - text = "helm_misc_bunnyears_a_01_scm.m2", - value = "helm_misc_bunnyears_a_01_scm.m2", + fileId = "139314", + text = "helm_mail_d_01_trm.m2", + value = "helm_mail_d_01_trm.m2", }, { - fileId = "252106", - text = "helm_misc_bunnyears_a_01_taf.m2", - value = "helm_misc_bunnyears_a_01_taf.m2", + fileId = "404171", + text = "helm_mail_d_01_wof.m2", + value = "helm_mail_d_01_wof.m2", }, { - fileId = "252107", - text = "helm_misc_bunnyears_a_01_tam.m2", - value = "helm_misc_bunnyears_a_01_tam.m2", + fileId = "404172", + text = "helm_mail_d_01_wom.m2", + value = "helm_mail_d_01_wom.m2", }, { - fileId = "252108", - text = "helm_misc_bunnyears_a_01_trf.m2", - value = "helm_misc_bunnyears_a_01_trf.m2", + fileId = "139321", + text = "helm_mail_dungeonhunter_a_01_bef.m2", + value = "helm_mail_dungeonhunter_a_01_bef.m2", }, { - fileId = "252109", - text = "helm_misc_bunnyears_a_01_trm.m2", - value = "helm_misc_bunnyears_a_01_trm.m2", + fileId = "139322", + text = "helm_mail_dungeonhunter_a_01_bem.m2", + value = "helm_mail_dungeonhunter_a_01_bem.m2", }, { - fileId = "238037", - text = "helm_misc_bunnyears_black_a_01_bef.m2", - value = "helm_misc_bunnyears_black_a_01_bef.m2", + fileId = "139323", + text = "helm_mail_dungeonhunter_a_01_drf.m2", + value = "helm_mail_dungeonhunter_a_01_drf.m2", }, { - fileId = "238038", - text = "helm_misc_bunnyears_black_a_01_bem.m2", - value = "helm_misc_bunnyears_black_a_01_bem.m2", + fileId = "139324", + text = "helm_mail_dungeonhunter_a_01_drm.m2", + value = "helm_mail_dungeonhunter_a_01_drm.m2", }, { - fileId = "238039", - text = "helm_misc_bunnyears_black_a_01_drf.m2", - value = "helm_misc_bunnyears_black_a_01_drf.m2", + fileId = "139325", + text = "helm_mail_dungeonhunter_a_01_dwf.m2", + value = "helm_mail_dungeonhunter_a_01_dwf.m2", }, { - fileId = "238040", - text = "helm_misc_bunnyears_black_a_01_drm.m2", - value = "helm_misc_bunnyears_black_a_01_drm.m2", + fileId = "139326", + text = "helm_mail_dungeonhunter_a_01_dwm.m2", + value = "helm_mail_dungeonhunter_a_01_dwm.m2", }, { - fileId = "238041", - text = "helm_misc_bunnyears_black_a_01_dwf.m2", - value = "helm_misc_bunnyears_black_a_01_dwf.m2", + fileId = "139327", + text = "helm_mail_dungeonhunter_a_01_gnf.m2", + value = "helm_mail_dungeonhunter_a_01_gnf.m2", }, { - fileId = "238042", - text = "helm_misc_bunnyears_black_a_01_dwm.m2", - value = "helm_misc_bunnyears_black_a_01_dwm.m2", + fileId = "139328", + text = "helm_mail_dungeonhunter_a_01_gnm.m2", + value = "helm_mail_dungeonhunter_a_01_gnm.m2", }, { - fileId = "238043", - text = "helm_misc_bunnyears_black_a_01_gnf.m2", - value = "helm_misc_bunnyears_black_a_01_gnf.m2", + fileId = "139329", + text = "helm_mail_dungeonhunter_a_01_gof.m2", + value = "helm_mail_dungeonhunter_a_01_gof.m2", }, { - fileId = "238044", - text = "helm_misc_bunnyears_black_a_01_gnm.m2", - value = "helm_misc_bunnyears_black_a_01_gnm.m2", + fileId = "463024", + text = "helm_mail_dungeonhunter_a_01_gom.m2", + value = "helm_mail_dungeonhunter_a_01_gom.m2", }, { - fileId = "238045", - text = "helm_misc_bunnyears_black_a_01_gof.m2", - value = "helm_misc_bunnyears_black_a_01_gof.m2", + fileId = "139330", + text = "helm_mail_dungeonhunter_a_01_huf.m2", + value = "helm_mail_dungeonhunter_a_01_huf.m2", }, { - fileId = "238046", - text = "helm_misc_bunnyears_black_a_01_gom.m2", - value = "helm_misc_bunnyears_black_a_01_gom.m2", + fileId = "139331", + text = "helm_mail_dungeonhunter_a_01_hum.m2", + value = "helm_mail_dungeonhunter_a_01_hum.m2", }, { - fileId = "238047", - text = "helm_misc_bunnyears_black_a_01_huf.m2", - value = "helm_misc_bunnyears_black_a_01_huf.m2", + fileId = "139332", + text = "helm_mail_dungeonhunter_a_01_nif.m2", + value = "helm_mail_dungeonhunter_a_01_nif.m2", }, { - fileId = "238048", - text = "helm_misc_bunnyears_black_a_01_hum.m2", - value = "helm_misc_bunnyears_black_a_01_hum.m2", + fileId = "139333", + text = "helm_mail_dungeonhunter_a_01_nim.m2", + value = "helm_mail_dungeonhunter_a_01_nim.m2", }, { - fileId = "238049", - text = "helm_misc_bunnyears_black_a_01_nif.m2", - value = "helm_misc_bunnyears_black_a_01_nif.m2", + fileId = "139334", + text = "helm_mail_dungeonhunter_a_01_orf.m2", + value = "helm_mail_dungeonhunter_a_01_orf.m2", }, { - fileId = "238050", - text = "helm_misc_bunnyears_black_a_01_nim.m2", - value = "helm_misc_bunnyears_black_a_01_nim.m2", + fileId = "139335", + text = "helm_mail_dungeonhunter_a_01_orm.m2", + value = "helm_mail_dungeonhunter_a_01_orm.m2", }, { - fileId = "238051", - text = "helm_misc_bunnyears_black_a_01_orf.m2", - value = "helm_misc_bunnyears_black_a_01_orf.m2", + fileId = "139336", + text = "helm_mail_dungeonhunter_a_01_scf.m2", + value = "helm_mail_dungeonhunter_a_01_scf.m2", }, { - fileId = "238052", - text = "helm_misc_bunnyears_black_a_01_orm.m2", - value = "helm_misc_bunnyears_black_a_01_orm.m2", + fileId = "139337", + text = "helm_mail_dungeonhunter_a_01_scm.m2", + value = "helm_mail_dungeonhunter_a_01_scm.m2", }, { - fileId = "238053", - text = "helm_misc_bunnyears_black_a_01_scf.m2", - value = "helm_misc_bunnyears_black_a_01_scf.m2", + fileId = "139338", + text = "helm_mail_dungeonhunter_a_01_taf.m2", + value = "helm_mail_dungeonhunter_a_01_taf.m2", }, { - fileId = "238054", - text = "helm_misc_bunnyears_black_a_01_scm.m2", - value = "helm_misc_bunnyears_black_a_01_scm.m2", + fileId = "139339", + text = "helm_mail_dungeonhunter_a_01_tam.m2", + value = "helm_mail_dungeonhunter_a_01_tam.m2", }, { - fileId = "238055", - text = "helm_misc_bunnyears_black_a_01_taf.m2", - value = "helm_misc_bunnyears_black_a_01_taf.m2", + fileId = "139340", + text = "helm_mail_dungeonhunter_a_01_trf.m2", + value = "helm_mail_dungeonhunter_a_01_trf.m2", }, { - fileId = "238056", - text = "helm_misc_bunnyears_black_a_01_tam.m2", - value = "helm_misc_bunnyears_black_a_01_tam.m2", + fileId = "139341", + text = "helm_mail_dungeonhunter_a_01_trm.m2", + value = "helm_mail_dungeonhunter_a_01_trm.m2", }, { - fileId = "238057", - text = "helm_misc_bunnyears_black_a_01_trf.m2", - value = "helm_misc_bunnyears_black_a_01_trf.m2", + fileId = "404167", + text = "helm_mail_dungeonhunter_a_01_wof.m2", + value = "helm_mail_dungeonhunter_a_01_wof.m2", }, { - fileId = "238058", - text = "helm_misc_bunnyears_black_a_01_trm.m2", - value = "helm_misc_bunnyears_black_a_01_trm.m2", + fileId = "404168", + text = "helm_mail_dungeonhunter_a_01_wom.m2", + value = "helm_mail_dungeonhunter_a_01_wom.m2", }, { - fileId = "329807", - text = "helm_misc_rose_a_01_bef.m2", - value = "helm_misc_rose_a_01_bef.m2", + fileId = "139346", + text = "helm_mail_dungeonhunter_b_02_bef.m2", + value = "helm_mail_dungeonhunter_b_02_bef.m2", }, { - fileId = "329808", - text = "helm_misc_rose_a_01_bem.m2", - value = "helm_misc_rose_a_01_bem.m2", + fileId = "139347", + text = "helm_mail_dungeonhunter_b_02_bem.m2", + value = "helm_mail_dungeonhunter_b_02_bem.m2", }, { - fileId = "329809", - text = "helm_misc_rose_a_01_drf.m2", - value = "helm_misc_rose_a_01_drf.m2", + fileId = "139348", + text = "helm_mail_dungeonhunter_b_02_drf.m2", + value = "helm_mail_dungeonhunter_b_02_drf.m2", }, { - fileId = "329810", - text = "helm_misc_rose_a_01_drm.m2", - value = "helm_misc_rose_a_01_drm.m2", + fileId = "139349", + text = "helm_mail_dungeonhunter_b_02_drm.m2", + value = "helm_mail_dungeonhunter_b_02_drm.m2", }, { - fileId = "329811", - text = "helm_misc_rose_a_01_dwf.m2", - value = "helm_misc_rose_a_01_dwf.m2", + fileId = "139350", + text = "helm_mail_dungeonhunter_b_02_dwf.m2", + value = "helm_mail_dungeonhunter_b_02_dwf.m2", }, { - fileId = "329812", - text = "helm_misc_rose_a_01_dwm.m2", - value = "helm_misc_rose_a_01_dwm.m2", + fileId = "139351", + text = "helm_mail_dungeonhunter_b_02_dwm.m2", + value = "helm_mail_dungeonhunter_b_02_dwm.m2", }, { - fileId = "329813", - text = "helm_misc_rose_a_01_gnf.m2", - value = "helm_misc_rose_a_01_gnf.m2", + fileId = "139352", + text = "helm_mail_dungeonhunter_b_02_gnf.m2", + value = "helm_mail_dungeonhunter_b_02_gnf.m2", }, { - fileId = "329814", - text = "helm_misc_rose_a_01_gnm.m2", - value = "helm_misc_rose_a_01_gnm.m2", + fileId = "139353", + text = "helm_mail_dungeonhunter_b_02_gnm.m2", + value = "helm_mail_dungeonhunter_b_02_gnm.m2", }, { - fileId = "329815", - text = "helm_misc_rose_a_01_gof.m2", - value = "helm_misc_rose_a_01_gof.m2", + fileId = "139354", + text = "helm_mail_dungeonhunter_b_02_gof.m2", + value = "helm_mail_dungeonhunter_b_02_gof.m2", }, { - fileId = "329816", - text = "helm_misc_rose_a_01_gom.m2", - value = "helm_misc_rose_a_01_gom.m2", + fileId = "139355", + text = "helm_mail_dungeonhunter_b_02_gom.m2", + value = "helm_mail_dungeonhunter_b_02_gom.m2", }, { - fileId = "329817", - text = "helm_misc_rose_a_01_huf.m2", - value = "helm_misc_rose_a_01_huf.m2", + fileId = "139356", + text = "helm_mail_dungeonhunter_b_02_huf.m2", + value = "helm_mail_dungeonhunter_b_02_huf.m2", }, { - fileId = "329818", - text = "helm_misc_rose_a_01_hum.m2", - value = "helm_misc_rose_a_01_hum.m2", + fileId = "139357", + text = "helm_mail_dungeonhunter_b_02_hum.m2", + value = "helm_mail_dungeonhunter_b_02_hum.m2", }, { - fileId = "329819", - text = "helm_misc_rose_a_01_nif.m2", - value = "helm_misc_rose_a_01_nif.m2", + fileId = "139358", + text = "helm_mail_dungeonhunter_b_02_nif.m2", + value = "helm_mail_dungeonhunter_b_02_nif.m2", }, { - fileId = "329820", - text = "helm_misc_rose_a_01_nim.m2", - value = "helm_misc_rose_a_01_nim.m2", + fileId = "139359", + text = "helm_mail_dungeonhunter_b_02_nim.m2", + value = "helm_mail_dungeonhunter_b_02_nim.m2", }, { - fileId = "329821", - text = "helm_misc_rose_a_01_orf.m2", - value = "helm_misc_rose_a_01_orf.m2", + fileId = "139360", + text = "helm_mail_dungeonhunter_b_02_orf.m2", + value = "helm_mail_dungeonhunter_b_02_orf.m2", }, { - fileId = "329822", - text = "helm_misc_rose_a_01_orm.m2", - value = "helm_misc_rose_a_01_orm.m2", + fileId = "139361", + text = "helm_mail_dungeonhunter_b_02_orm.m2", + value = "helm_mail_dungeonhunter_b_02_orm.m2", }, { - fileId = "329823", - text = "helm_misc_rose_a_01_scf.m2", - value = "helm_misc_rose_a_01_scf.m2", + fileId = "139362", + text = "helm_mail_dungeonhunter_b_02_scf.m2", + value = "helm_mail_dungeonhunter_b_02_scf.m2", }, { - fileId = "329824", - text = "helm_misc_rose_a_01_scm.m2", - value = "helm_misc_rose_a_01_scm.m2", + fileId = "139363", + text = "helm_mail_dungeonhunter_b_02_scm.m2", + value = "helm_mail_dungeonhunter_b_02_scm.m2", }, { - fileId = "329825", - text = "helm_misc_rose_a_01_taf.m2", - value = "helm_misc_rose_a_01_taf.m2", + fileId = "139364", + text = "helm_mail_dungeonhunter_b_02_taf.m2", + value = "helm_mail_dungeonhunter_b_02_taf.m2", }, { - fileId = "329826", - text = "helm_misc_rose_a_01_tam.m2", - value = "helm_misc_rose_a_01_tam.m2", + fileId = "139365", + text = "helm_mail_dungeonhunter_b_02_tam.m2", + value = "helm_mail_dungeonhunter_b_02_tam.m2", }, { - fileId = "329827", - text = "helm_misc_rose_a_01_trf.m2", - value = "helm_misc_rose_a_01_trf.m2", + fileId = "139366", + text = "helm_mail_dungeonhunter_b_02_trf.m2", + value = "helm_mail_dungeonhunter_b_02_trf.m2", }, { - fileId = "329828", - text = "helm_misc_rose_a_01_trm.m2", - value = "helm_misc_rose_a_01_trm.m2", + fileId = "139367", + text = "helm_mail_dungeonhunter_b_02_trm.m2", + value = "helm_mail_dungeonhunter_b_02_trm.m2", }, { - fileId = "140142", - text = "helm_monocle_a_01_bef.m2", - value = "helm_monocle_a_01_bef.m2", + fileId = "404169", + text = "helm_mail_dungeonhunter_b_02_wof.m2", + value = "helm_mail_dungeonhunter_b_02_wof.m2", }, { - fileId = "140143", - text = "helm_monocle_a_01_bem.m2", - value = "helm_monocle_a_01_bem.m2", + fileId = "404170", + text = "helm_mail_dungeonhunter_b_02_wom.m2", + value = "helm_mail_dungeonhunter_b_02_wom.m2", }, { - fileId = "140144", - text = "helm_monocle_a_01_drf.m2", - value = "helm_monocle_a_01_drf.m2", + fileId = "237950", + text = "helm_mail_dungeonmail_c_01_bef.m2", + value = "helm_mail_dungeonmail_c_01_bef.m2", }, { - fileId = "140145", - text = "helm_monocle_a_01_drm.m2", - value = "helm_monocle_a_01_drm.m2", + fileId = "237951", + text = "helm_mail_dungeonmail_c_01_bem.m2", + value = "helm_mail_dungeonmail_c_01_bem.m2", }, { - fileId = "140146", - text = "helm_monocle_a_01_dwf.m2", - value = "helm_monocle_a_01_dwf.m2", + fileId = "237952", + text = "helm_mail_dungeonmail_c_01_drf.m2", + value = "helm_mail_dungeonmail_c_01_drf.m2", }, { - fileId = "140147", - text = "helm_monocle_a_01_dwm.m2", - value = "helm_monocle_a_01_dwm.m2", + fileId = "237953", + text = "helm_mail_dungeonmail_c_01_drm.m2", + value = "helm_mail_dungeonmail_c_01_drm.m2", }, { - fileId = "140148", - text = "helm_monocle_a_01_gnf.m2", - value = "helm_monocle_a_01_gnf.m2", + fileId = "237954", + text = "helm_mail_dungeonmail_c_01_dwf.m2", + value = "helm_mail_dungeonmail_c_01_dwf.m2", }, { - fileId = "140149", - text = "helm_monocle_a_01_gnm.m2", - value = "helm_monocle_a_01_gnm.m2", + fileId = "237955", + text = "helm_mail_dungeonmail_c_01_dwm.m2", + value = "helm_mail_dungeonmail_c_01_dwm.m2", }, { - fileId = "140150", - text = "helm_monocle_a_01_gof.m2", - value = "helm_monocle_a_01_gof.m2", + fileId = "237956", + text = "helm_mail_dungeonmail_c_01_gnf.m2", + value = "helm_mail_dungeonmail_c_01_gnf.m2", }, { - fileId = "140151", - text = "helm_monocle_a_01_gom.m2", - value = "helm_monocle_a_01_gom.m2", + fileId = "237957", + text = "helm_mail_dungeonmail_c_01_gnm.m2", + value = "helm_mail_dungeonmail_c_01_gnm.m2", }, { - fileId = "140152", - text = "helm_monocle_a_01_huf.m2", - value = "helm_monocle_a_01_huf.m2", + fileId = "237958", + text = "helm_mail_dungeonmail_c_01_gof.m2", + value = "helm_mail_dungeonmail_c_01_gof.m2", }, { - fileId = "140153", - text = "helm_monocle_a_01_hum.m2", - value = "helm_monocle_a_01_hum.m2", + fileId = "237959", + text = "helm_mail_dungeonmail_c_01_gom.m2", + value = "helm_mail_dungeonmail_c_01_gom.m2", }, { - fileId = "140154", - text = "helm_monocle_a_01_nif.m2", - value = "helm_monocle_a_01_nif.m2", + fileId = "237960", + text = "helm_mail_dungeonmail_c_01_huf.m2", + value = "helm_mail_dungeonmail_c_01_huf.m2", }, { - fileId = "140155", - text = "helm_monocle_a_01_nim.m2", - value = "helm_monocle_a_01_nim.m2", + fileId = "237961", + text = "helm_mail_dungeonmail_c_01_hum.m2", + value = "helm_mail_dungeonmail_c_01_hum.m2", }, { - fileId = "140156", - text = "helm_monocle_a_01_orf.m2", - value = "helm_monocle_a_01_orf.m2", + fileId = "237962", + text = "helm_mail_dungeonmail_c_01_nif.m2", + value = "helm_mail_dungeonmail_c_01_nif.m2", }, { - fileId = "140157", - text = "helm_monocle_a_01_orm.m2", - value = "helm_monocle_a_01_orm.m2", + fileId = "237963", + text = "helm_mail_dungeonmail_c_01_nim.m2", + value = "helm_mail_dungeonmail_c_01_nim.m2", }, { - fileId = "140158", - text = "helm_monocle_a_01_scf.m2", - value = "helm_monocle_a_01_scf.m2", + fileId = "237964", + text = "helm_mail_dungeonmail_c_01_orf.m2", + value = "helm_mail_dungeonmail_c_01_orf.m2", }, { - fileId = "140159", - text = "helm_monocle_a_01_scm.m2", - value = "helm_monocle_a_01_scm.m2", + fileId = "237965", + text = "helm_mail_dungeonmail_c_01_orm.m2", + value = "helm_mail_dungeonmail_c_01_orm.m2", }, { - fileId = "140160", - text = "helm_monocle_a_01_taf.m2", - value = "helm_monocle_a_01_taf.m2", + fileId = "237966", + text = "helm_mail_dungeonmail_c_01_scf.m2", + value = "helm_mail_dungeonmail_c_01_scf.m2", }, { - fileId = "140161", - text = "helm_monocle_a_01_tam.m2", - value = "helm_monocle_a_01_tam.m2", + fileId = "237967", + text = "helm_mail_dungeonmail_c_01_scm.m2", + value = "helm_mail_dungeonmail_c_01_scm.m2", }, { - fileId = "140162", - text = "helm_monocle_a_01_trf.m2", - value = "helm_monocle_a_01_trf.m2", + fileId = "237968", + text = "helm_mail_dungeonmail_c_01_taf.m2", + value = "helm_mail_dungeonmail_c_01_taf.m2", }, { - fileId = "140163", - text = "helm_monocle_a_01_trm.m2", - value = "helm_monocle_a_01_trm.m2", + fileId = "237969", + text = "helm_mail_dungeonmail_c_01_tam.m2", + value = "helm_mail_dungeonmail_c_01_tam.m2", }, { - fileId = "140167", - text = "helm_monocle_b_01_bef.m2", - value = "helm_monocle_b_01_bef.m2", + fileId = "237970", + text = "helm_mail_dungeonmail_c_01_trf.m2", + value = "helm_mail_dungeonmail_c_01_trf.m2", }, { - fileId = "140168", - text = "helm_monocle_b_01_bem.m2", - value = "helm_monocle_b_01_bem.m2", + fileId = "237971", + text = "helm_mail_dungeonmail_c_01_trm.m2", + value = "helm_mail_dungeonmail_c_01_trm.m2", }, { - fileId = "140169", - text = "helm_monocle_b_01_drf.m2", - value = "helm_monocle_b_01_drf.m2", + fileId = "450938", + text = "helm_mail_dungeonmail_c_01_wof.m2", + value = "helm_mail_dungeonmail_c_01_wof.m2", }, { - fileId = "140170", - text = "helm_monocle_b_01_drm.m2", - value = "helm_monocle_b_01_drm.m2", + fileId = "431588", + text = "helm_mail_dungeonmail_c_01_wom.m2", + value = "helm_mail_dungeonmail_c_01_wom.m2", }, { - fileId = "140171", - text = "helm_monocle_b_01_dwf.m2", - value = "helm_monocle_b_01_dwf.m2", + fileId = "342534", + text = "helm_mail_dungeonmail_c_02_bef.m2", + value = "helm_mail_dungeonmail_c_02_bef.m2", }, { - fileId = "140172", - text = "helm_monocle_b_01_dwm.m2", - value = "helm_monocle_b_01_dwm.m2", + fileId = "342535", + text = "helm_mail_dungeonmail_c_02_bem.m2", + value = "helm_mail_dungeonmail_c_02_bem.m2", }, { - fileId = "140173", - text = "helm_monocle_b_01_gnf.m2", - value = "helm_monocle_b_01_gnf.m2", + fileId = "342536", + text = "helm_mail_dungeonmail_c_02_drf.m2", + value = "helm_mail_dungeonmail_c_02_drf.m2", }, { - fileId = "140174", - text = "helm_monocle_b_01_gnm.m2", - value = "helm_monocle_b_01_gnm.m2", + fileId = "342537", + text = "helm_mail_dungeonmail_c_02_drm.m2", + value = "helm_mail_dungeonmail_c_02_drm.m2", }, { - fileId = "140175", - text = "helm_monocle_b_01_gof.m2", - value = "helm_monocle_b_01_gof.m2", + fileId = "342538", + text = "helm_mail_dungeonmail_c_02_dwf.m2", + value = "helm_mail_dungeonmail_c_02_dwf.m2", }, { - fileId = "140176", - text = "helm_monocle_b_01_gom.m2", - value = "helm_monocle_b_01_gom.m2", + fileId = "342539", + text = "helm_mail_dungeonmail_c_02_dwm.m2", + value = "helm_mail_dungeonmail_c_02_dwm.m2", }, { - fileId = "140177", - text = "helm_monocle_b_01_huf.m2", - value = "helm_monocle_b_01_huf.m2", + fileId = "342540", + text = "helm_mail_dungeonmail_c_02_gnf.m2", + value = "helm_mail_dungeonmail_c_02_gnf.m2", }, { - fileId = "140178", - text = "helm_monocle_b_01_hum.m2", - value = "helm_monocle_b_01_hum.m2", + fileId = "342541", + text = "helm_mail_dungeonmail_c_02_gnm.m2", + value = "helm_mail_dungeonmail_c_02_gnm.m2", }, { - fileId = "140179", - text = "helm_monocle_b_01_nif.m2", - value = "helm_monocle_b_01_nif.m2", + fileId = "463025", + text = "helm_mail_dungeonmail_c_02_gof.m2", + value = "helm_mail_dungeonmail_c_02_gof.m2", }, { - fileId = "140180", - text = "helm_monocle_b_01_nim.m2", - value = "helm_monocle_b_01_nim.m2", + fileId = "463239", + text = "helm_mail_dungeonmail_c_02_gom.m2", + value = "helm_mail_dungeonmail_c_02_gom.m2", }, { - fileId = "140181", - text = "helm_monocle_b_01_orf.m2", - value = "helm_monocle_b_01_orf.m2", + fileId = "342542", + text = "helm_mail_dungeonmail_c_02_huf.m2", + value = "helm_mail_dungeonmail_c_02_huf.m2", }, { - fileId = "140182", - text = "helm_monocle_b_01_orm.m2", - value = "helm_monocle_b_01_orm.m2", + fileId = "342543", + text = "helm_mail_dungeonmail_c_02_hum.m2", + value = "helm_mail_dungeonmail_c_02_hum.m2", }, { - fileId = "140183", - text = "helm_monocle_b_01_scf.m2", - value = "helm_monocle_b_01_scf.m2", + fileId = "342544", + text = "helm_mail_dungeonmail_c_02_nif.m2", + value = "helm_mail_dungeonmail_c_02_nif.m2", }, { - fileId = "140184", - text = "helm_monocle_b_01_scm.m2", - value = "helm_monocle_b_01_scm.m2", + fileId = "342545", + text = "helm_mail_dungeonmail_c_02_nim.m2", + value = "helm_mail_dungeonmail_c_02_nim.m2", }, { - fileId = "140185", - text = "helm_monocle_b_01_taf.m2", - value = "helm_monocle_b_01_taf.m2", + fileId = "342546", + text = "helm_mail_dungeonmail_c_02_orf.m2", + value = "helm_mail_dungeonmail_c_02_orf.m2", }, { - fileId = "140186", - text = "helm_monocle_b_01_tam.m2", - value = "helm_monocle_b_01_tam.m2", + fileId = "342547", + text = "helm_mail_dungeonmail_c_02_orm.m2", + value = "helm_mail_dungeonmail_c_02_orm.m2", }, { - fileId = "140187", - text = "helm_monocle_b_01_trf.m2", - value = "helm_monocle_b_01_trf.m2", + fileId = "342548", + text = "helm_mail_dungeonmail_c_02_scf.m2", + value = "helm_mail_dungeonmail_c_02_scf.m2", }, { - fileId = "140188", - text = "helm_monocle_b_01_trm.m2", - value = "helm_monocle_b_01_trm.m2", + fileId = "342549", + text = "helm_mail_dungeonmail_c_02_scm.m2", + value = "helm_mail_dungeonmail_c_02_scm.m2", }, { - fileId = "140189", - text = "helm_monocle_b_02engi_bef.m2", - value = "helm_monocle_b_02engi_bef.m2", + fileId = "342550", + text = "helm_mail_dungeonmail_c_02_taf.m2", + value = "helm_mail_dungeonmail_c_02_taf.m2", }, { - fileId = "140190", - text = "helm_monocle_b_02engi_bem.m2", - value = "helm_monocle_b_02engi_bem.m2", + fileId = "342551", + text = "helm_mail_dungeonmail_c_02_tam.m2", + value = "helm_mail_dungeonmail_c_02_tam.m2", }, { - fileId = "140191", - text = "helm_monocle_b_02engi_drf.m2", - value = "helm_monocle_b_02engi_drf.m2", + fileId = "342552", + text = "helm_mail_dungeonmail_c_02_trf.m2", + value = "helm_mail_dungeonmail_c_02_trf.m2", }, { - fileId = "140192", - text = "helm_monocle_b_02engi_drm.m2", - value = "helm_monocle_b_02engi_drm.m2", + fileId = "342553", + text = "helm_mail_dungeonmail_c_02_trm.m2", + value = "helm_mail_dungeonmail_c_02_trm.m2", }, { - fileId = "140193", - text = "helm_monocle_b_02engi_dwf.m2", - value = "helm_monocle_b_02engi_dwf.m2", + fileId = "431591", + text = "helm_mail_dungeonmail_c_02_wof.m2", + value = "helm_mail_dungeonmail_c_02_wof.m2", }, { - fileId = "140194", - text = "helm_monocle_b_02engi_dwm.m2", - value = "helm_monocle_b_02engi_dwm.m2", + fileId = "431593", + text = "helm_mail_dungeonmail_c_02_wom.m2", + value = "helm_mail_dungeonmail_c_02_wom.m2", }, { - fileId = "140195", - text = "helm_monocle_b_02engi_gnf.m2", - value = "helm_monocle_b_02engi_gnf.m2", + fileId = "430980", + text = "helm_mail_dungeonmail_c_03_bef.m2", + value = "helm_mail_dungeonmail_c_03_bef.m2", }, { - fileId = "140196", - text = "helm_monocle_b_02engi_gnm.m2", - value = "helm_monocle_b_02engi_gnm.m2", + fileId = "430981", + text = "helm_mail_dungeonmail_c_03_bem.m2", + value = "helm_mail_dungeonmail_c_03_bem.m2", }, { - fileId = "140197", - text = "helm_monocle_b_02engi_gof.m2", - value = "helm_monocle_b_02engi_gof.m2", + fileId = "430982", + text = "helm_mail_dungeonmail_c_03_drf.m2", + value = "helm_mail_dungeonmail_c_03_drf.m2", }, { - fileId = "140198", - text = "helm_monocle_b_02engi_gom.m2", - value = "helm_monocle_b_02engi_gom.m2", + fileId = "430983", + text = "helm_mail_dungeonmail_c_03_drm.m2", + value = "helm_mail_dungeonmail_c_03_drm.m2", }, { - fileId = "140199", - text = "helm_monocle_b_02engi_huf.m2", - value = "helm_monocle_b_02engi_huf.m2", + fileId = "430984", + text = "helm_mail_dungeonmail_c_03_dwf.m2", + value = "helm_mail_dungeonmail_c_03_dwf.m2", }, { - fileId = "140200", - text = "helm_monocle_b_02engi_hum.m2", - value = "helm_monocle_b_02engi_hum.m2", + fileId = "430985", + text = "helm_mail_dungeonmail_c_03_dwm.m2", + value = "helm_mail_dungeonmail_c_03_dwm.m2", }, { - fileId = "140201", - text = "helm_monocle_b_02engi_nif.m2", - value = "helm_monocle_b_02engi_nif.m2", + fileId = "430986", + text = "helm_mail_dungeonmail_c_03_gnf.m2", + value = "helm_mail_dungeonmail_c_03_gnf.m2", }, { - fileId = "140202", - text = "helm_monocle_b_02engi_nim.m2", - value = "helm_monocle_b_02engi_nim.m2", + fileId = "430987", + text = "helm_mail_dungeonmail_c_03_gnm.m2", + value = "helm_mail_dungeonmail_c_03_gnm.m2", }, { - fileId = "140203", - text = "helm_monocle_b_02engi_orf.m2", - value = "helm_monocle_b_02engi_orf.m2", + fileId = "430988", + text = "helm_mail_dungeonmail_c_03_gof.m2", + value = "helm_mail_dungeonmail_c_03_gof.m2", }, { - fileId = "140204", - text = "helm_monocle_b_02engi_orm.m2", - value = "helm_monocle_b_02engi_orm.m2", + fileId = "430989", + text = "helm_mail_dungeonmail_c_03_gom.m2", + value = "helm_mail_dungeonmail_c_03_gom.m2", }, { - fileId = "140205", - text = "helm_monocle_b_02engi_scf.m2", - value = "helm_monocle_b_02engi_scf.m2", + fileId = "430990", + text = "helm_mail_dungeonmail_c_03_huf.m2", + value = "helm_mail_dungeonmail_c_03_huf.m2", }, { - fileId = "140206", - text = "helm_monocle_b_02engi_scm.m2", - value = "helm_monocle_b_02engi_scm.m2", + fileId = "430991", + text = "helm_mail_dungeonmail_c_03_hum.m2", + value = "helm_mail_dungeonmail_c_03_hum.m2", }, { - fileId = "140207", - text = "helm_monocle_b_02engi_taf.m2", - value = "helm_monocle_b_02engi_taf.m2", + fileId = "430992", + text = "helm_mail_dungeonmail_c_03_nif.m2", + value = "helm_mail_dungeonmail_c_03_nif.m2", }, { - fileId = "140208", - text = "helm_monocle_b_02engi_tam.m2", - value = "helm_monocle_b_02engi_tam.m2", + fileId = "430993", + text = "helm_mail_dungeonmail_c_03_nim.m2", + value = "helm_mail_dungeonmail_c_03_nim.m2", }, { - fileId = "140209", - text = "helm_monocle_b_02engi_trf.m2", - value = "helm_monocle_b_02engi_trf.m2", + fileId = "430994", + text = "helm_mail_dungeonmail_c_03_orf.m2", + value = "helm_mail_dungeonmail_c_03_orf.m2", }, { - fileId = "140210", - text = "helm_monocle_b_02engi_trm.m2", - value = "helm_monocle_b_02engi_trm.m2", + fileId = "430995", + text = "helm_mail_dungeonmail_c_03_orm.m2", + value = "helm_mail_dungeonmail_c_03_orm.m2", }, { - fileId = "140211", - text = "helm_monocle_c_01_bef.m2", - value = "helm_monocle_c_01_bef.m2", + fileId = "430996", + text = "helm_mail_dungeonmail_c_03_scf.m2", + value = "helm_mail_dungeonmail_c_03_scf.m2", }, { - fileId = "140212", - text = "helm_monocle_c_01_bem.m2", - value = "helm_monocle_c_01_bem.m2", + fileId = "430997", + text = "helm_mail_dungeonmail_c_03_scm.m2", + value = "helm_mail_dungeonmail_c_03_scm.m2", }, { - fileId = "140213", - text = "helm_monocle_c_01_drf.m2", - value = "helm_monocle_c_01_drf.m2", + fileId = "430998", + text = "helm_mail_dungeonmail_c_03_taf.m2", + value = "helm_mail_dungeonmail_c_03_taf.m2", }, { - fileId = "140214", - text = "helm_monocle_c_01_drm.m2", - value = "helm_monocle_c_01_drm.m2", + fileId = "430999", + text = "helm_mail_dungeonmail_c_03_tam.m2", + value = "helm_mail_dungeonmail_c_03_tam.m2", }, { - fileId = "140215", - text = "helm_monocle_c_01_dwf.m2", - value = "helm_monocle_c_01_dwf.m2", + fileId = "431000", + text = "helm_mail_dungeonmail_c_03_trf.m2", + value = "helm_mail_dungeonmail_c_03_trf.m2", }, { - fileId = "140216", - text = "helm_monocle_c_01_dwm.m2", - value = "helm_monocle_c_01_dwm.m2", + fileId = "431001", + text = "helm_mail_dungeonmail_c_03_trm.m2", + value = "helm_mail_dungeonmail_c_03_trm.m2", }, { - fileId = "140217", - text = "helm_monocle_c_01_gnf.m2", - value = "helm_monocle_c_01_gnf.m2", + fileId = "431595", + text = "helm_mail_dungeonmail_c_03_wof.m2", + value = "helm_mail_dungeonmail_c_03_wof.m2", }, { - fileId = "140218", - text = "helm_monocle_c_01_gnm.m2", - value = "helm_monocle_c_01_gnm.m2", + fileId = "431002", + text = "helm_mail_dungeonmail_c_03_wom.m2", + value = "helm_mail_dungeonmail_c_03_wom.m2", }, { - fileId = "140219", - text = "helm_monocle_c_01_gof.m2", - value = "helm_monocle_c_01_gof.m2", + fileId = "458333", + text = "helm_mail_dungeonmail_c_04_bef.m2", + value = "helm_mail_dungeonmail_c_04_bef.m2", }, { - fileId = "140220", - text = "helm_monocle_c_01_gom.m2", - value = "helm_monocle_c_01_gom.m2", + fileId = "458334", + text = "helm_mail_dungeonmail_c_04_bem.m2", + value = "helm_mail_dungeonmail_c_04_bem.m2", }, { - fileId = "140221", - text = "helm_monocle_c_01_huf.m2", - value = "helm_monocle_c_01_huf.m2", + fileId = "458335", + text = "helm_mail_dungeonmail_c_04_drf.m2", + value = "helm_mail_dungeonmail_c_04_drf.m2", }, { - fileId = "140222", - text = "helm_monocle_c_01_hum.m2", - value = "helm_monocle_c_01_hum.m2", + fileId = "458336", + text = "helm_mail_dungeonmail_c_04_drm.m2", + value = "helm_mail_dungeonmail_c_04_drm.m2", }, { - fileId = "140223", - text = "helm_monocle_c_01_nif.m2", - value = "helm_monocle_c_01_nif.m2", + fileId = "458337", + text = "helm_mail_dungeonmail_c_04_dwf.m2", + value = "helm_mail_dungeonmail_c_04_dwf.m2", }, { - fileId = "140224", - text = "helm_monocle_c_01_nim.m2", - value = "helm_monocle_c_01_nim.m2", + fileId = "458338", + text = "helm_mail_dungeonmail_c_04_dwm.m2", + value = "helm_mail_dungeonmail_c_04_dwm.m2", }, { - fileId = "140225", - text = "helm_monocle_c_01_orf.m2", - value = "helm_monocle_c_01_orf.m2", + fileId = "458339", + text = "helm_mail_dungeonmail_c_04_gnf.m2", + value = "helm_mail_dungeonmail_c_04_gnf.m2", }, { - fileId = "140226", - text = "helm_monocle_c_01_orm.m2", - value = "helm_monocle_c_01_orm.m2", + fileId = "458340", + text = "helm_mail_dungeonmail_c_04_gnm.m2", + value = "helm_mail_dungeonmail_c_04_gnm.m2", }, { - fileId = "140227", - text = "helm_monocle_c_01_scf.m2", - value = "helm_monocle_c_01_scf.m2", + fileId = "458341", + text = "helm_mail_dungeonmail_c_04_gof.m2", + value = "helm_mail_dungeonmail_c_04_gof.m2", }, { - fileId = "140228", - text = "helm_monocle_c_01_scm.m2", - value = "helm_monocle_c_01_scm.m2", + fileId = "458342", + text = "helm_mail_dungeonmail_c_04_gom.m2", + value = "helm_mail_dungeonmail_c_04_gom.m2", }, { - fileId = "140229", - text = "helm_monocle_c_01_taf.m2", - value = "helm_monocle_c_01_taf.m2", + fileId = "458343", + text = "helm_mail_dungeonmail_c_04_huf.m2", + value = "helm_mail_dungeonmail_c_04_huf.m2", }, { - fileId = "140230", - text = "helm_monocle_c_01_tam.m2", - value = "helm_monocle_c_01_tam.m2", + fileId = "458344", + text = "helm_mail_dungeonmail_c_04_hum.m2", + value = "helm_mail_dungeonmail_c_04_hum.m2", }, { - fileId = "140231", - text = "helm_monocle_c_01_trf.m2", - value = "helm_monocle_c_01_trf.m2", + fileId = "458345", + text = "helm_mail_dungeonmail_c_04_nif.m2", + value = "helm_mail_dungeonmail_c_04_nif.m2", }, { - fileId = "140232", - text = "helm_monocle_c_01_trm.m2", - value = "helm_monocle_c_01_trm.m2", + fileId = "458346", + text = "helm_mail_dungeonmail_c_04_nim.m2", + value = "helm_mail_dungeonmail_c_04_nim.m2", }, { - fileId = "140235", - text = "helm_plate_a_01crusader_bef.m2", - value = "helm_plate_a_01crusader_bef.m2", + fileId = "458347", + text = "helm_mail_dungeonmail_c_04_orf.m2", + value = "helm_mail_dungeonmail_c_04_orf.m2", }, { - fileId = "140236", - text = "helm_plate_a_01crusader_bem.m2", - value = "helm_plate_a_01crusader_bem.m2", + fileId = "458348", + text = "helm_mail_dungeonmail_c_04_orm.m2", + value = "helm_mail_dungeonmail_c_04_orm.m2", }, { - fileId = "140237", - text = "helm_plate_a_01crusader_drf.m2", - value = "helm_plate_a_01crusader_drf.m2", + fileId = "458349", + text = "helm_mail_dungeonmail_c_04_scf.m2", + value = "helm_mail_dungeonmail_c_04_scf.m2", }, { - fileId = "140238", - text = "helm_plate_a_01crusader_drm.m2", - value = "helm_plate_a_01crusader_drm.m2", + fileId = "458350", + text = "helm_mail_dungeonmail_c_04_scm.m2", + value = "helm_mail_dungeonmail_c_04_scm.m2", }, { - fileId = "140239", - text = "helm_plate_a_01crusader_dwf.m2", - value = "helm_plate_a_01crusader_dwf.m2", + fileId = "458351", + text = "helm_mail_dungeonmail_c_04_taf.m2", + value = "helm_mail_dungeonmail_c_04_taf.m2", }, { - fileId = "140240", - text = "helm_plate_a_01crusader_dwm.m2", - value = "helm_plate_a_01crusader_dwm.m2", + fileId = "458352", + text = "helm_mail_dungeonmail_c_04_tam.m2", + value = "helm_mail_dungeonmail_c_04_tam.m2", }, { - fileId = "140241", - text = "helm_plate_a_01crusader_gnf.m2", - value = "helm_plate_a_01crusader_gnf.m2", + fileId = "458353", + text = "helm_mail_dungeonmail_c_04_trf.m2", + value = "helm_mail_dungeonmail_c_04_trf.m2", }, { - fileId = "140242", - text = "helm_plate_a_01crusader_gnm.m2", - value = "helm_plate_a_01crusader_gnm.m2", + fileId = "458354", + text = "helm_mail_dungeonmail_c_04_trm.m2", + value = "helm_mail_dungeonmail_c_04_trm.m2", }, { - fileId = "140243", - text = "helm_plate_a_01crusader_gof.m2", - value = "helm_plate_a_01crusader_gof.m2", + fileId = "458355", + text = "helm_mail_dungeonmail_c_04_wof.m2", + value = "helm_mail_dungeonmail_c_04_wof.m2", }, { - fileId = "140244", - text = "helm_plate_a_01crusader_gom.m2", - value = "helm_plate_a_01crusader_gom.m2", + fileId = "458356", + text = "helm_mail_dungeonmail_c_04_wom.m2", + value = "helm_mail_dungeonmail_c_04_wom.m2", }, { - fileId = "140245", - text = "helm_plate_a_01crusader_huf.m2", - value = "helm_plate_a_01crusader_huf.m2", + fileId = "571869", + text = "helm_mail_dungeonmail_c_05_bef.m2", + value = "helm_mail_dungeonmail_c_05_bef.m2", }, { - fileId = "140246", - text = "helm_plate_a_01crusader_hum.m2", - value = "helm_plate_a_01crusader_hum.m2", + fileId = "537546", + text = "helm_mail_dungeonmail_c_05_bem.m2", + value = "helm_mail_dungeonmail_c_05_bem.m2", }, { - fileId = "140247", - text = "helm_plate_a_01crusader_nif.m2", - value = "helm_plate_a_01crusader_nif.m2", + fileId = "537548", + text = "helm_mail_dungeonmail_c_05_drf.m2", + value = "helm_mail_dungeonmail_c_05_drf.m2", }, { - fileId = "140248", - text = "helm_plate_a_01crusader_nim.m2", - value = "helm_plate_a_01crusader_nim.m2", + fileId = "537550", + text = "helm_mail_dungeonmail_c_05_drm.m2", + value = "helm_mail_dungeonmail_c_05_drm.m2", }, { - fileId = "140249", - text = "helm_plate_a_01crusader_orf.m2", - value = "helm_plate_a_01crusader_orf.m2", + fileId = "537552", + text = "helm_mail_dungeonmail_c_05_dwf.m2", + value = "helm_mail_dungeonmail_c_05_dwf.m2", }, { - fileId = "140250", - text = "helm_plate_a_01crusader_orm.m2", - value = "helm_plate_a_01crusader_orm.m2", + fileId = "537554", + text = "helm_mail_dungeonmail_c_05_dwm.m2", + value = "helm_mail_dungeonmail_c_05_dwm.m2", }, { - fileId = "140251", - text = "helm_plate_a_01crusader_scf.m2", - value = "helm_plate_a_01crusader_scf.m2", + fileId = "537556", + text = "helm_mail_dungeonmail_c_05_gnf.m2", + value = "helm_mail_dungeonmail_c_05_gnf.m2", }, { - fileId = "140252", - text = "helm_plate_a_01crusader_scm.m2", - value = "helm_plate_a_01crusader_scm.m2", + fileId = "537558", + text = "helm_mail_dungeonmail_c_05_gnm.m2", + value = "helm_mail_dungeonmail_c_05_gnm.m2", }, { - fileId = "140253", - text = "helm_plate_a_01crusader_taf.m2", - value = "helm_plate_a_01crusader_taf.m2", + fileId = "537560", + text = "helm_mail_dungeonmail_c_05_gof.m2", + value = "helm_mail_dungeonmail_c_05_gof.m2", }, { - fileId = "140254", - text = "helm_plate_a_01crusader_tam.m2", - value = "helm_plate_a_01crusader_tam.m2", + fileId = "537562", + text = "helm_mail_dungeonmail_c_05_gom.m2", + value = "helm_mail_dungeonmail_c_05_gom.m2", }, { - fileId = "140255", - text = "helm_plate_a_01crusader_trf.m2", - value = "helm_plate_a_01crusader_trf.m2", + fileId = "537564", + text = "helm_mail_dungeonmail_c_05_huf.m2", + value = "helm_mail_dungeonmail_c_05_huf.m2", }, { - fileId = "140256", - text = "helm_plate_a_01crusader_trm.m2", - value = "helm_plate_a_01crusader_trm.m2", + fileId = "537566", + text = "helm_mail_dungeonmail_c_05_hum.m2", + value = "helm_mail_dungeonmail_c_05_hum.m2", }, { - fileId = "140263", - text = "helm_plate_a_02ironforgeguard_bef.m2", - value = "helm_plate_a_02ironforgeguard_bef.m2", + fileId = "537568", + text = "helm_mail_dungeonmail_c_05_nif.m2", + value = "helm_mail_dungeonmail_c_05_nif.m2", }, { - fileId = "140264", - text = "helm_plate_a_02ironforgeguard_bem.m2", - value = "helm_plate_a_02ironforgeguard_bem.m2", + fileId = "537570", + text = "helm_mail_dungeonmail_c_05_nim.m2", + value = "helm_mail_dungeonmail_c_05_nim.m2", }, { - fileId = "140265", - text = "helm_plate_a_02ironforgeguard_drf.m2", - value = "helm_plate_a_02ironforgeguard_drf.m2", + fileId = "537572", + text = "helm_mail_dungeonmail_c_05_orf.m2", + value = "helm_mail_dungeonmail_c_05_orf.m2", }, { - fileId = "140266", - text = "helm_plate_a_02ironforgeguard_drm.m2", - value = "helm_plate_a_02ironforgeguard_drm.m2", + fileId = "537574", + text = "helm_mail_dungeonmail_c_05_orm.m2", + value = "helm_mail_dungeonmail_c_05_orm.m2", }, { - fileId = "140267", - text = "helm_plate_a_02ironforgeguard_dwf.m2", - value = "helm_plate_a_02ironforgeguard_dwf.m2", + fileId = "537576", + text = "helm_mail_dungeonmail_c_05_scf.m2", + value = "helm_mail_dungeonmail_c_05_scf.m2", }, { - fileId = "140268", - text = "helm_plate_a_02ironforgeguard_dwm.m2", - value = "helm_plate_a_02ironforgeguard_dwm.m2", + fileId = "537578", + text = "helm_mail_dungeonmail_c_05_scm.m2", + value = "helm_mail_dungeonmail_c_05_scm.m2", }, { - fileId = "140269", - text = "helm_plate_a_02ironforgeguard_gnf.m2", - value = "helm_plate_a_02ironforgeguard_gnf.m2", + fileId = "537580", + text = "helm_mail_dungeonmail_c_05_taf.m2", + value = "helm_mail_dungeonmail_c_05_taf.m2", }, { - fileId = "140270", - text = "helm_plate_a_02ironforgeguard_gnm.m2", - value = "helm_plate_a_02ironforgeguard_gnm.m2", + fileId = "537582", + text = "helm_mail_dungeonmail_c_05_tam.m2", + value = "helm_mail_dungeonmail_c_05_tam.m2", }, { - fileId = "140271", - text = "helm_plate_a_02ironforgeguard_gof.m2", - value = "helm_plate_a_02ironforgeguard_gof.m2", + fileId = "537584", + text = "helm_mail_dungeonmail_c_05_trf.m2", + value = "helm_mail_dungeonmail_c_05_trf.m2", }, { - fileId = "140272", - text = "helm_plate_a_02ironforgeguard_huf.m2", - value = "helm_plate_a_02ironforgeguard_huf.m2", + fileId = "537586", + text = "helm_mail_dungeonmail_c_05_trm.m2", + value = "helm_mail_dungeonmail_c_05_trm.m2", }, { - fileId = "140273", - text = "helm_plate_a_02ironforgeguard_hum.m2", - value = "helm_plate_a_02ironforgeguard_hum.m2", + fileId = "537588", + text = "helm_mail_dungeonmail_c_05_wof.m2", + value = "helm_mail_dungeonmail_c_05_wof.m2", }, { - fileId = "140274", - text = "helm_plate_a_02ironforgeguard_nif.m2", - value = "helm_plate_a_02ironforgeguard_nif.m2", + fileId = "537590", + text = "helm_mail_dungeonmail_c_05_wom.m2", + value = "helm_mail_dungeonmail_c_05_wom.m2", }, { - fileId = "140275", - text = "helm_plate_a_02ironforgeguard_nim.m2", - value = "helm_plate_a_02ironforgeguard_nim.m2", + fileId = "139373", + text = "helm_mail_dungeonshaman_a_01_bef.m2", + value = "helm_mail_dungeonshaman_a_01_bef.m2", }, { - fileId = "140276", - text = "helm_plate_a_02ironforgeguard_orf.m2", - value = "helm_plate_a_02ironforgeguard_orf.m2", + fileId = "139374", + text = "helm_mail_dungeonshaman_a_01_bem.m2", + value = "helm_mail_dungeonshaman_a_01_bem.m2", }, { - fileId = "140277", - text = "helm_plate_a_02ironforgeguard_orm.m2", - value = "helm_plate_a_02ironforgeguard_orm.m2", + fileId = "139375", + text = "helm_mail_dungeonshaman_a_01_drf.m2", + value = "helm_mail_dungeonshaman_a_01_drf.m2", }, { - fileId = "140278", - text = "helm_plate_a_02ironforgeguard_scf.m2", - value = "helm_plate_a_02ironforgeguard_scf.m2", + fileId = "139376", + text = "helm_mail_dungeonshaman_a_01_drm.m2", + value = "helm_mail_dungeonshaman_a_01_drm.m2", }, { - fileId = "140279", - text = "helm_plate_a_02ironforgeguard_scm.m2", - value = "helm_plate_a_02ironforgeguard_scm.m2", + fileId = "139377", + text = "helm_mail_dungeonshaman_a_01_dwf.m2", + value = "helm_mail_dungeonshaman_a_01_dwf.m2", }, { - fileId = "140280", - text = "helm_plate_a_02ironforgeguard_taf.m2", - value = "helm_plate_a_02ironforgeguard_taf.m2", + fileId = "139378", + text = "helm_mail_dungeonshaman_a_01_dwm.m2", + value = "helm_mail_dungeonshaman_a_01_dwm.m2", }, { - fileId = "140281", - text = "helm_plate_a_02ironforgeguard_tam.m2", - value = "helm_plate_a_02ironforgeguard_tam.m2", + fileId = "139379", + text = "helm_mail_dungeonshaman_a_01_gnf.m2", + value = "helm_mail_dungeonshaman_a_01_gnf.m2", }, { - fileId = "140282", - text = "helm_plate_a_02ironforgeguard_trf.m2", - value = "helm_plate_a_02ironforgeguard_trf.m2", + fileId = "139380", + text = "helm_mail_dungeonshaman_a_01_gnm.m2", + value = "helm_mail_dungeonshaman_a_01_gnm.m2", }, { - fileId = "140283", - text = "helm_plate_a_02ironforgeguard_trm.m2", - value = "helm_plate_a_02ironforgeguard_trm.m2", + fileId = "139381", + text = "helm_mail_dungeonshaman_a_01_gof.m2", + value = "helm_mail_dungeonshaman_a_01_gof.m2", }, { - fileId = "140285", - text = "helm_plate_ahnqiraj_a_01_bef.m2", - value = "helm_plate_ahnqiraj_a_01_bef.m2", + fileId = "139382", + text = "helm_mail_dungeonshaman_a_01_gom.m2", + value = "helm_mail_dungeonshaman_a_01_gom.m2", }, { - fileId = "140286", - text = "helm_plate_ahnqiraj_a_01_bem.m2", - value = "helm_plate_ahnqiraj_a_01_bem.m2", + fileId = "139383", + text = "helm_mail_dungeonshaman_a_01_huf.m2", + value = "helm_mail_dungeonshaman_a_01_huf.m2", }, { - fileId = "140287", - text = "helm_plate_ahnqiraj_a_01_drf.m2", - value = "helm_plate_ahnqiraj_a_01_drf.m2", + fileId = "139384", + text = "helm_mail_dungeonshaman_a_01_hum.m2", + value = "helm_mail_dungeonshaman_a_01_hum.m2", }, { - fileId = "140288", - text = "helm_plate_ahnqiraj_a_01_drm.m2", - value = "helm_plate_ahnqiraj_a_01_drm.m2", + fileId = "139385", + text = "helm_mail_dungeonshaman_a_01_nif.m2", + value = "helm_mail_dungeonshaman_a_01_nif.m2", }, { - fileId = "140289", - text = "helm_plate_ahnqiraj_a_01_dwf.m2", - value = "helm_plate_ahnqiraj_a_01_dwf.m2", + fileId = "139386", + text = "helm_mail_dungeonshaman_a_01_nim.m2", + value = "helm_mail_dungeonshaman_a_01_nim.m2", }, { - fileId = "140290", - text = "helm_plate_ahnqiraj_a_01_dwm.m2", - value = "helm_plate_ahnqiraj_a_01_dwm.m2", + fileId = "139387", + text = "helm_mail_dungeonshaman_a_01_orf.m2", + value = "helm_mail_dungeonshaman_a_01_orf.m2", }, { - fileId = "140291", - text = "helm_plate_ahnqiraj_a_01_gnf.m2", - value = "helm_plate_ahnqiraj_a_01_gnf.m2", + fileId = "139388", + text = "helm_mail_dungeonshaman_a_01_orm.m2", + value = "helm_mail_dungeonshaman_a_01_orm.m2", }, { - fileId = "140292", - text = "helm_plate_ahnqiraj_a_01_gnm.m2", - value = "helm_plate_ahnqiraj_a_01_gnm.m2", + fileId = "139389", + text = "helm_mail_dungeonshaman_a_01_scf.m2", + value = "helm_mail_dungeonshaman_a_01_scf.m2", }, { - fileId = "140293", - text = "helm_plate_ahnqiraj_a_01_gof.m2", - value = "helm_plate_ahnqiraj_a_01_gof.m2", + fileId = "139390", + text = "helm_mail_dungeonshaman_a_01_scm.m2", + value = "helm_mail_dungeonshaman_a_01_scm.m2", }, { - fileId = "140294", - text = "helm_plate_ahnqiraj_a_01_gom.m2", - value = "helm_plate_ahnqiraj_a_01_gom.m2", + fileId = "139391", + text = "helm_mail_dungeonshaman_a_01_taf.m2", + value = "helm_mail_dungeonshaman_a_01_taf.m2", }, { - fileId = "140295", - text = "helm_plate_ahnqiraj_a_01_huf.m2", - value = "helm_plate_ahnqiraj_a_01_huf.m2", + fileId = "139392", + text = "helm_mail_dungeonshaman_a_01_tam.m2", + value = "helm_mail_dungeonshaman_a_01_tam.m2", }, { - fileId = "140296", - text = "helm_plate_ahnqiraj_a_01_hum.m2", - value = "helm_plate_ahnqiraj_a_01_hum.m2", + fileId = "139393", + text = "helm_mail_dungeonshaman_a_01_trf.m2", + value = "helm_mail_dungeonshaman_a_01_trf.m2", }, { - fileId = "140297", - text = "helm_plate_ahnqiraj_a_01_nif.m2", - value = "helm_plate_ahnqiraj_a_01_nif.m2", + fileId = "139394", + text = "helm_mail_dungeonshaman_a_01_trm.m2", + value = "helm_mail_dungeonshaman_a_01_trm.m2", }, { - fileId = "140298", - text = "helm_plate_ahnqiraj_a_01_nim.m2", - value = "helm_plate_ahnqiraj_a_01_nim.m2", + fileId = "450939", + text = "helm_mail_dungeonshaman_a_01_wof.m2", + value = "helm_mail_dungeonshaman_a_01_wof.m2", }, { - fileId = "140299", - text = "helm_plate_ahnqiraj_a_01_orf.m2", - value = "helm_plate_ahnqiraj_a_01_orf.m2", + fileId = "431597", + text = "helm_mail_dungeonshaman_a_01_wom.m2", + value = "helm_mail_dungeonshaman_a_01_wom.m2", }, { - fileId = "140300", - text = "helm_plate_ahnqiraj_a_01_orm.m2", - value = "helm_plate_ahnqiraj_a_01_orm.m2", + fileId = "139400", + text = "helm_mail_dungeonshaman_b_01_bef.m2", + value = "helm_mail_dungeonshaman_b_01_bef.m2", }, { - fileId = "140301", - text = "helm_plate_ahnqiraj_a_01_scf.m2", - value = "helm_plate_ahnqiraj_a_01_scf.m2", + fileId = "139401", + text = "helm_mail_dungeonshaman_b_01_bem.m2", + value = "helm_mail_dungeonshaman_b_01_bem.m2", }, { - fileId = "140302", - text = "helm_plate_ahnqiraj_a_01_scm.m2", - value = "helm_plate_ahnqiraj_a_01_scm.m2", + fileId = "139402", + text = "helm_mail_dungeonshaman_b_01_drf.m2", + value = "helm_mail_dungeonshaman_b_01_drf.m2", }, { - fileId = "140303", - text = "helm_plate_ahnqiraj_a_01_taf.m2", - value = "helm_plate_ahnqiraj_a_01_taf.m2", + fileId = "139403", + text = "helm_mail_dungeonshaman_b_01_drm.m2", + value = "helm_mail_dungeonshaman_b_01_drm.m2", }, { - fileId = "140304", - text = "helm_plate_ahnqiraj_a_01_tam.m2", - value = "helm_plate_ahnqiraj_a_01_tam.m2", + fileId = "139404", + text = "helm_mail_dungeonshaman_b_01_dwf.m2", + value = "helm_mail_dungeonshaman_b_01_dwf.m2", }, { - fileId = "140305", - text = "helm_plate_ahnqiraj_a_01_trf.m2", - value = "helm_plate_ahnqiraj_a_01_trf.m2", + fileId = "139405", + text = "helm_mail_dungeonshaman_b_01_dwm.m2", + value = "helm_mail_dungeonshaman_b_01_dwm.m2", }, { - fileId = "140306", - text = "helm_plate_ahnqiraj_a_01_trm.m2", - value = "helm_plate_ahnqiraj_a_01_trm.m2", + fileId = "139406", + text = "helm_mail_dungeonshaman_b_01_gnf.m2", + value = "helm_mail_dungeonshaman_b_01_gnf.m2", }, { - fileId = "311722", - text = "helm_plate_argentalliance_d_01_bef.m2", - value = "helm_plate_argentalliance_d_01_bef.m2", + fileId = "139407", + text = "helm_mail_dungeonshaman_b_01_gnm.m2", + value = "helm_mail_dungeonshaman_b_01_gnm.m2", }, { - fileId = "311723", - text = "helm_plate_argentalliance_d_01_bem.m2", - value = "helm_plate_argentalliance_d_01_bem.m2", + fileId = "139408", + text = "helm_mail_dungeonshaman_b_01_gof.m2", + value = "helm_mail_dungeonshaman_b_01_gof.m2", }, { - fileId = "311724", - text = "helm_plate_argentalliance_d_01_drf.m2", - value = "helm_plate_argentalliance_d_01_drf.m2", + fileId = "139409", + text = "helm_mail_dungeonshaman_b_01_gom.m2", + value = "helm_mail_dungeonshaman_b_01_gom.m2", }, { - fileId = "311725", - text = "helm_plate_argentalliance_d_01_drm.m2", - value = "helm_plate_argentalliance_d_01_drm.m2", + fileId = "139410", + text = "helm_mail_dungeonshaman_b_01_huf.m2", + value = "helm_mail_dungeonshaman_b_01_huf.m2", }, { - fileId = "311726", - text = "helm_plate_argentalliance_d_01_dwf.m2", - value = "helm_plate_argentalliance_d_01_dwf.m2", + fileId = "139411", + text = "helm_mail_dungeonshaman_b_01_hum.m2", + value = "helm_mail_dungeonshaman_b_01_hum.m2", }, { - fileId = "311727", - text = "helm_plate_argentalliance_d_01_dwm.m2", - value = "helm_plate_argentalliance_d_01_dwm.m2", + fileId = "139412", + text = "helm_mail_dungeonshaman_b_01_nif.m2", + value = "helm_mail_dungeonshaman_b_01_nif.m2", }, { - fileId = "311728", - text = "helm_plate_argentalliance_d_01_gnf.m2", - value = "helm_plate_argentalliance_d_01_gnf.m2", + fileId = "139413", + text = "helm_mail_dungeonshaman_b_01_nim.m2", + value = "helm_mail_dungeonshaman_b_01_nim.m2", }, { - fileId = "311729", - text = "helm_plate_argentalliance_d_01_gnm.m2", - value = "helm_plate_argentalliance_d_01_gnm.m2", + fileId = "139414", + text = "helm_mail_dungeonshaman_b_01_orf.m2", + value = "helm_mail_dungeonshaman_b_01_orf.m2", }, { - fileId = "311730", - text = "helm_plate_argentalliance_d_01_gof.m2", - value = "helm_plate_argentalliance_d_01_gof.m2", + fileId = "139415", + text = "helm_mail_dungeonshaman_b_01_orm.m2", + value = "helm_mail_dungeonshaman_b_01_orm.m2", }, { - fileId = "311731", - text = "helm_plate_argentalliance_d_01_gom.m2", - value = "helm_plate_argentalliance_d_01_gom.m2", + fileId = "139416", + text = "helm_mail_dungeonshaman_b_01_scf.m2", + value = "helm_mail_dungeonshaman_b_01_scf.m2", }, { - fileId = "311732", - text = "helm_plate_argentalliance_d_01_huf.m2", - value = "helm_plate_argentalliance_d_01_huf.m2", + fileId = "139417", + text = "helm_mail_dungeonshaman_b_01_scm.m2", + value = "helm_mail_dungeonshaman_b_01_scm.m2", }, { - fileId = "311733", - text = "helm_plate_argentalliance_d_01_hum.m2", - value = "helm_plate_argentalliance_d_01_hum.m2", + fileId = "139418", + text = "helm_mail_dungeonshaman_b_01_taf.m2", + value = "helm_mail_dungeonshaman_b_01_taf.m2", }, { - fileId = "311734", - text = "helm_plate_argentalliance_d_01_nif.m2", - value = "helm_plate_argentalliance_d_01_nif.m2", + fileId = "139419", + text = "helm_mail_dungeonshaman_b_01_tam.m2", + value = "helm_mail_dungeonshaman_b_01_tam.m2", }, { - fileId = "311735", - text = "helm_plate_argentalliance_d_01_nim.m2", - value = "helm_plate_argentalliance_d_01_nim.m2", + fileId = "139420", + text = "helm_mail_dungeonshaman_b_01_trf.m2", + value = "helm_mail_dungeonshaman_b_01_trf.m2", }, { - fileId = "311736", - text = "helm_plate_argentalliance_d_01_orf.m2", - value = "helm_plate_argentalliance_d_01_orf.m2", + fileId = "139421", + text = "helm_mail_dungeonshaman_b_01_trm.m2", + value = "helm_mail_dungeonshaman_b_01_trm.m2", }, { - fileId = "311737", - text = "helm_plate_argentalliance_d_01_orm.m2", - value = "helm_plate_argentalliance_d_01_orm.m2", + fileId = "431601", + text = "helm_mail_dungeonshaman_b_01_wof.m2", + value = "helm_mail_dungeonshaman_b_01_wof.m2", }, { - fileId = "311738", - text = "helm_plate_argentalliance_d_01_scf.m2", - value = "helm_plate_argentalliance_d_01_scf.m2", + fileId = "431604", + text = "helm_mail_dungeonshaman_b_01_wom.m2", + value = "helm_mail_dungeonshaman_b_01_wom.m2", }, { - fileId = "311739", - text = "helm_plate_argentalliance_d_01_scm.m2", - value = "helm_plate_argentalliance_d_01_scm.m2", + fileId = "139427", + text = "helm_mail_northrend_b_01_bef.m2", + value = "helm_mail_northrend_b_01_bef.m2", }, { - fileId = "311748", - text = "helm_plate_argentalliance_d_01_taf.m2", - value = "helm_plate_argentalliance_d_01_taf.m2", - }, - { - fileId = "311749", - text = "helm_plate_argentalliance_d_01_tam.m2", - value = "helm_plate_argentalliance_d_01_tam.m2", + fileId = "139428", + text = "helm_mail_northrend_b_01_bem.m2", + value = "helm_mail_northrend_b_01_bem.m2", }, { - fileId = "311750", - text = "helm_plate_argentalliance_d_01_trf.m2", - value = "helm_plate_argentalliance_d_01_trf.m2", + fileId = "139429", + text = "helm_mail_northrend_b_01_drf.m2", + value = "helm_mail_northrend_b_01_drf.m2", }, { - fileId = "311751", - text = "helm_plate_argentalliance_d_01_trm.m2", - value = "helm_plate_argentalliance_d_01_trm.m2", + fileId = "139430", + text = "helm_mail_northrend_b_01_drm.m2", + value = "helm_mail_northrend_b_01_drm.m2", }, { - fileId = "315669", - text = "helm_plate_argenthorde_d_01_bef.m2", - value = "helm_plate_argenthorde_d_01_bef.m2", + fileId = "139431", + text = "helm_mail_northrend_b_01_dwf.m2", + value = "helm_mail_northrend_b_01_dwf.m2", }, { - fileId = "315670", - text = "helm_plate_argenthorde_d_01_bem.m2", - value = "helm_plate_argenthorde_d_01_bem.m2", + fileId = "139432", + text = "helm_mail_northrend_b_01_dwm.m2", + value = "helm_mail_northrend_b_01_dwm.m2", }, { - fileId = "315671", - text = "helm_plate_argenthorde_d_01_drf.m2", - value = "helm_plate_argenthorde_d_01_drf.m2", + fileId = "139433", + text = "helm_mail_northrend_b_01_gnf.m2", + value = "helm_mail_northrend_b_01_gnf.m2", }, { - fileId = "315672", - text = "helm_plate_argenthorde_d_01_drm.m2", - value = "helm_plate_argenthorde_d_01_drm.m2", + fileId = "139434", + text = "helm_mail_northrend_b_01_gnm.m2", + value = "helm_mail_northrend_b_01_gnm.m2", }, { - fileId = "315673", - text = "helm_plate_argenthorde_d_01_dwf.m2", - value = "helm_plate_argenthorde_d_01_dwf.m2", + fileId = "463026", + text = "helm_mail_northrend_b_01_gof.m2", + value = "helm_mail_northrend_b_01_gof.m2", }, { - fileId = "315674", - text = "helm_plate_argenthorde_d_01_dwm.m2", - value = "helm_plate_argenthorde_d_01_dwm.m2", + fileId = "463027", + text = "helm_mail_northrend_b_01_gom.m2", + value = "helm_mail_northrend_b_01_gom.m2", }, { - fileId = "315675", - text = "helm_plate_argenthorde_d_01_gnf.m2", - value = "helm_plate_argenthorde_d_01_gnf.m2", + fileId = "139435", + text = "helm_mail_northrend_b_01_huf.m2", + value = "helm_mail_northrend_b_01_huf.m2", }, { - fileId = "315676", - text = "helm_plate_argenthorde_d_01_gnm.m2", - value = "helm_plate_argenthorde_d_01_gnm.m2", + fileId = "139436", + text = "helm_mail_northrend_b_01_hum.m2", + value = "helm_mail_northrend_b_01_hum.m2", }, { - fileId = "315677", - text = "helm_plate_argenthorde_d_01_gof.m2", - value = "helm_plate_argenthorde_d_01_gof.m2", + fileId = "139437", + text = "helm_mail_northrend_b_01_nif.m2", + value = "helm_mail_northrend_b_01_nif.m2", }, { - fileId = "315678", - text = "helm_plate_argenthorde_d_01_gom.m2", - value = "helm_plate_argenthorde_d_01_gom.m2", + fileId = "139438", + text = "helm_mail_northrend_b_01_nim.m2", + value = "helm_mail_northrend_b_01_nim.m2", }, { - fileId = "315679", - text = "helm_plate_argenthorde_d_01_huf.m2", - value = "helm_plate_argenthorde_d_01_huf.m2", + fileId = "139439", + text = "helm_mail_northrend_b_01_orf.m2", + value = "helm_mail_northrend_b_01_orf.m2", }, { - fileId = "315680", - text = "helm_plate_argenthorde_d_01_hum.m2", - value = "helm_plate_argenthorde_d_01_hum.m2", + fileId = "139440", + text = "helm_mail_northrend_b_01_orm.m2", + value = "helm_mail_northrend_b_01_orm.m2", }, { - fileId = "315681", - text = "helm_plate_argenthorde_d_01_nif.m2", - value = "helm_plate_argenthorde_d_01_nif.m2", + fileId = "139441", + text = "helm_mail_northrend_b_01_scf.m2", + value = "helm_mail_northrend_b_01_scf.m2", }, { - fileId = "315682", - text = "helm_plate_argenthorde_d_01_nim.m2", - value = "helm_plate_argenthorde_d_01_nim.m2", + fileId = "139442", + text = "helm_mail_northrend_b_01_scm.m2", + value = "helm_mail_northrend_b_01_scm.m2", }, { - fileId = "315683", - text = "helm_plate_argenthorde_d_01_orf.m2", - value = "helm_plate_argenthorde_d_01_orf.m2", + fileId = "139443", + text = "helm_mail_northrend_b_01_taf.m2", + value = "helm_mail_northrend_b_01_taf.m2", }, { - fileId = "315684", - text = "helm_plate_argenthorde_d_01_orm.m2", - value = "helm_plate_argenthorde_d_01_orm.m2", + fileId = "139444", + text = "helm_mail_northrend_b_01_tam.m2", + value = "helm_mail_northrend_b_01_tam.m2", }, { - fileId = "315685", - text = "helm_plate_argenthorde_d_01_scf.m2", - value = "helm_plate_argenthorde_d_01_scf.m2", + fileId = "139445", + text = "helm_mail_northrend_b_01_trf.m2", + value = "helm_mail_northrend_b_01_trf.m2", }, { - fileId = "315686", - text = "helm_plate_argenthorde_d_01_scm.m2", - value = "helm_plate_argenthorde_d_01_scm.m2", + fileId = "139446", + text = "helm_mail_northrend_b_01_trm.m2", + value = "helm_mail_northrend_b_01_trm.m2", }, { - fileId = "315687", - text = "helm_plate_argenthorde_d_01_taf.m2", - value = "helm_plate_argenthorde_d_01_taf.m2", + fileId = "431606", + text = "helm_mail_northrend_b_01_wof.m2", + value = "helm_mail_northrend_b_01_wof.m2", }, { - fileId = "315688", - text = "helm_plate_argenthorde_d_01_tam.m2", - value = "helm_plate_argenthorde_d_01_tam.m2", + fileId = "431608", + text = "helm_mail_northrend_b_01_wom.m2", + value = "helm_mail_northrend_b_01_wom.m2", }, { - fileId = "315689", - text = "helm_plate_argenthorde_d_01_trf.m2", - value = "helm_plate_argenthorde_d_01_trf.m2", + fileId = "139452", + text = "helm_mail_northrend_b_02_bef.m2", + value = "helm_mail_northrend_b_02_bef.m2", }, { - fileId = "315690", - text = "helm_plate_argenthorde_d_01_trm.m2", - value = "helm_plate_argenthorde_d_01_trm.m2", + fileId = "139453", + text = "helm_mail_northrend_b_02_bem.m2", + value = "helm_mail_northrend_b_02_bem.m2", }, { - fileId = "140315", - text = "helm_plate_b_01stormwind_bef.m2", - value = "helm_plate_b_01stormwind_bef.m2", + fileId = "139454", + text = "helm_mail_northrend_b_02_drf.m2", + value = "helm_mail_northrend_b_02_drf.m2", }, { - fileId = "140316", - text = "helm_plate_b_01stormwind_bem.m2", - value = "helm_plate_b_01stormwind_bem.m2", + fileId = "139455", + text = "helm_mail_northrend_b_02_drm.m2", + value = "helm_mail_northrend_b_02_drm.m2", }, { - fileId = "140317", - text = "helm_plate_b_01stormwind_drf.m2", - value = "helm_plate_b_01stormwind_drf.m2", + fileId = "139456", + text = "helm_mail_northrend_b_02_dwf.m2", + value = "helm_mail_northrend_b_02_dwf.m2", }, { - fileId = "140318", - text = "helm_plate_b_01stormwind_drm.m2", - value = "helm_plate_b_01stormwind_drm.m2", + fileId = "139457", + text = "helm_mail_northrend_b_02_dwm.m2", + value = "helm_mail_northrend_b_02_dwm.m2", }, { - fileId = "140319", - text = "helm_plate_b_01stormwind_dwf.m2", - value = "helm_plate_b_01stormwind_dwf.m2", + fileId = "139458", + text = "helm_mail_northrend_b_02_gnf.m2", + value = "helm_mail_northrend_b_02_gnf.m2", }, { - fileId = "140320", - text = "helm_plate_b_01stormwind_dwm.m2", - value = "helm_plate_b_01stormwind_dwm.m2", + fileId = "139459", + text = "helm_mail_northrend_b_02_gnm.m2", + value = "helm_mail_northrend_b_02_gnm.m2", }, { - fileId = "140321", - text = "helm_plate_b_01stormwind_gnf.m2", - value = "helm_plate_b_01stormwind_gnf.m2", + fileId = "463028", + text = "helm_mail_northrend_b_02_gof.m2", + value = "helm_mail_northrend_b_02_gof.m2", }, { - fileId = "140322", - text = "helm_plate_b_01stormwind_gnm.m2", - value = "helm_plate_b_01stormwind_gnm.m2", + fileId = "463029", + text = "helm_mail_northrend_b_02_gom.m2", + value = "helm_mail_northrend_b_02_gom.m2", }, { - fileId = "140323", - text = "helm_plate_b_01stormwind_gof.m2", - value = "helm_plate_b_01stormwind_gof.m2", + fileId = "139460", + text = "helm_mail_northrend_b_02_huf.m2", + value = "helm_mail_northrend_b_02_huf.m2", }, { - fileId = "140324", - text = "helm_plate_b_01stormwind_gom.m2", - value = "helm_plate_b_01stormwind_gom.m2", + fileId = "139461", + text = "helm_mail_northrend_b_02_hum.m2", + value = "helm_mail_northrend_b_02_hum.m2", }, { - fileId = "140325", - text = "helm_plate_b_01stormwind_huf.m2", - value = "helm_plate_b_01stormwind_huf.m2", + fileId = "139462", + text = "helm_mail_northrend_b_02_nif.m2", + value = "helm_mail_northrend_b_02_nif.m2", }, { - fileId = "140326", - text = "helm_plate_b_01stormwind_hum.m2", - value = "helm_plate_b_01stormwind_hum.m2", + fileId = "139463", + text = "helm_mail_northrend_b_02_nim.m2", + value = "helm_mail_northrend_b_02_nim.m2", }, { - fileId = "140327", - text = "helm_plate_b_01stormwind_nif.m2", - value = "helm_plate_b_01stormwind_nif.m2", + fileId = "139464", + text = "helm_mail_northrend_b_02_orf.m2", + value = "helm_mail_northrend_b_02_orf.m2", }, { - fileId = "140328", - text = "helm_plate_b_01stormwind_nim.m2", - value = "helm_plate_b_01stormwind_nim.m2", + fileId = "139465", + text = "helm_mail_northrend_b_02_orm.m2", + value = "helm_mail_northrend_b_02_orm.m2", }, { - fileId = "140329", - text = "helm_plate_b_01stormwind_orf.m2", - value = "helm_plate_b_01stormwind_orf.m2", + fileId = "139466", + text = "helm_mail_northrend_b_02_scf.m2", + value = "helm_mail_northrend_b_02_scf.m2", }, { - fileId = "140330", - text = "helm_plate_b_01stormwind_orm.m2", - value = "helm_plate_b_01stormwind_orm.m2", + fileId = "139467", + text = "helm_mail_northrend_b_02_scm.m2", + value = "helm_mail_northrend_b_02_scm.m2", }, { - fileId = "140331", - text = "helm_plate_b_01stormwind_scf.m2", - value = "helm_plate_b_01stormwind_scf.m2", + fileId = "139468", + text = "helm_mail_northrend_b_02_taf.m2", + value = "helm_mail_northrend_b_02_taf.m2", }, { - fileId = "140332", - text = "helm_plate_b_01stormwind_scm.m2", - value = "helm_plate_b_01stormwind_scm.m2", + fileId = "139469", + text = "helm_mail_northrend_b_02_tam.m2", + value = "helm_mail_northrend_b_02_tam.m2", }, { - fileId = "140333", - text = "helm_plate_b_01stormwind_taf.m2", - value = "helm_plate_b_01stormwind_taf.m2", + fileId = "139470", + text = "helm_mail_northrend_b_02_trf.m2", + value = "helm_mail_northrend_b_02_trf.m2", }, { - fileId = "140334", - text = "helm_plate_b_01stormwind_tam.m2", - value = "helm_plate_b_01stormwind_tam.m2", + fileId = "139471", + text = "helm_mail_northrend_b_02_trm.m2", + value = "helm_mail_northrend_b_02_trm.m2", }, { - fileId = "140335", - text = "helm_plate_b_01stormwind_trf.m2", - value = "helm_plate_b_01stormwind_trf.m2", + fileId = "404454", + text = "helm_mail_northrend_b_02_wof.m2", + value = "helm_mail_northrend_b_02_wof.m2", }, { - fileId = "140336", - text = "helm_plate_b_01stormwind_trm.m2", - value = "helm_plate_b_01stormwind_trm.m2", + fileId = "404455", + text = "helm_mail_northrend_b_02_wom.m2", + value = "helm_mail_northrend_b_02_wom.m2", }, { - fileId = "140340", - text = "helm_plate_b_03sentinel_bef.m2", - value = "helm_plate_b_03sentinel_bef.m2", + fileId = "139478", + text = "helm_mail_northrend_b_03_bef.m2", + value = "helm_mail_northrend_b_03_bef.m2", }, { - fileId = "140341", - text = "helm_plate_b_03sentinel_bem.m2", - value = "helm_plate_b_03sentinel_bem.m2", + fileId = "139479", + text = "helm_mail_northrend_b_03_bem.m2", + value = "helm_mail_northrend_b_03_bem.m2", }, { - fileId = "140342", - text = "helm_plate_b_03sentinel_drf.m2", - value = "helm_plate_b_03sentinel_drf.m2", + fileId = "139480", + text = "helm_mail_northrend_b_03_drf.m2", + value = "helm_mail_northrend_b_03_drf.m2", }, { - fileId = "140343", - text = "helm_plate_b_03sentinel_drm.m2", - value = "helm_plate_b_03sentinel_drm.m2", + fileId = "139481", + text = "helm_mail_northrend_b_03_drm.m2", + value = "helm_mail_northrend_b_03_drm.m2", }, { - fileId = "140344", - text = "helm_plate_b_03sentinel_dwf.m2", - value = "helm_plate_b_03sentinel_dwf.m2", + fileId = "139482", + text = "helm_mail_northrend_b_03_dwf.m2", + value = "helm_mail_northrend_b_03_dwf.m2", }, { - fileId = "140345", - text = "helm_plate_b_03sentinel_dwm.m2", - value = "helm_plate_b_03sentinel_dwm.m2", + fileId = "139483", + text = "helm_mail_northrend_b_03_dwm.m2", + value = "helm_mail_northrend_b_03_dwm.m2", }, { - fileId = "140346", - text = "helm_plate_b_03sentinel_gnf.m2", - value = "helm_plate_b_03sentinel_gnf.m2", + fileId = "139484", + text = "helm_mail_northrend_b_03_gnf.m2", + value = "helm_mail_northrend_b_03_gnf.m2", }, { - fileId = "140347", - text = "helm_plate_b_03sentinel_gnm.m2", - value = "helm_plate_b_03sentinel_gnm.m2", + fileId = "139485", + text = "helm_mail_northrend_b_03_gnm.m2", + value = "helm_mail_northrend_b_03_gnm.m2", }, { - fileId = "140348", - text = "helm_plate_b_03sentinel_gof.m2", - value = "helm_plate_b_03sentinel_gof.m2", + fileId = "463030", + text = "helm_mail_northrend_b_03_gof.m2", + value = "helm_mail_northrend_b_03_gof.m2", }, { - fileId = "140349", - text = "helm_plate_b_03sentinel_gom.m2", - value = "helm_plate_b_03sentinel_gom.m2", + fileId = "463031", + text = "helm_mail_northrend_b_03_gom.m2", + value = "helm_mail_northrend_b_03_gom.m2", }, { - fileId = "140350", - text = "helm_plate_b_03sentinel_huf.m2", - value = "helm_plate_b_03sentinel_huf.m2", + fileId = "139486", + text = "helm_mail_northrend_b_03_huf.m2", + value = "helm_mail_northrend_b_03_huf.m2", }, { - fileId = "140351", - text = "helm_plate_b_03sentinel_hum.m2", - value = "helm_plate_b_03sentinel_hum.m2", + fileId = "139487", + text = "helm_mail_northrend_b_03_hum.m2", + value = "helm_mail_northrend_b_03_hum.m2", }, { - fileId = "140352", - text = "helm_plate_b_03sentinel_nif.m2", - value = "helm_plate_b_03sentinel_nif.m2", + fileId = "139488", + text = "helm_mail_northrend_b_03_nif.m2", + value = "helm_mail_northrend_b_03_nif.m2", }, { - fileId = "140353", - text = "helm_plate_b_03sentinel_nim.m2", - value = "helm_plate_b_03sentinel_nim.m2", + fileId = "139489", + text = "helm_mail_northrend_b_03_nim.m2", + value = "helm_mail_northrend_b_03_nim.m2", }, { - fileId = "140354", - text = "helm_plate_b_03sentinel_orf.m2", - value = "helm_plate_b_03sentinel_orf.m2", + fileId = "139490", + text = "helm_mail_northrend_b_03_orf.m2", + value = "helm_mail_northrend_b_03_orf.m2", }, { - fileId = "140355", - text = "helm_plate_b_03sentinel_orm.m2", - value = "helm_plate_b_03sentinel_orm.m2", + fileId = "139491", + text = "helm_mail_northrend_b_03_orm.m2", + value = "helm_mail_northrend_b_03_orm.m2", }, { - fileId = "140356", - text = "helm_plate_b_03sentinel_scf.m2", - value = "helm_plate_b_03sentinel_scf.m2", + fileId = "139492", + text = "helm_mail_northrend_b_03_scf.m2", + value = "helm_mail_northrend_b_03_scf.m2", }, { - fileId = "140357", - text = "helm_plate_b_03sentinel_scm.m2", - value = "helm_plate_b_03sentinel_scm.m2", + fileId = "139493", + text = "helm_mail_northrend_b_03_scm.m2", + value = "helm_mail_northrend_b_03_scm.m2", }, { - fileId = "140358", - text = "helm_plate_b_03sentinel_taf.m2", - value = "helm_plate_b_03sentinel_taf.m2", + fileId = "139494", + text = "helm_mail_northrend_b_03_taf.m2", + value = "helm_mail_northrend_b_03_taf.m2", }, { - fileId = "140359", - text = "helm_plate_b_03sentinel_tam.m2", - value = "helm_plate_b_03sentinel_tam.m2", + fileId = "139495", + text = "helm_mail_northrend_b_03_tam.m2", + value = "helm_mail_northrend_b_03_tam.m2", }, { - fileId = "140360", - text = "helm_plate_b_03sentinel_trf.m2", - value = "helm_plate_b_03sentinel_trf.m2", + fileId = "139496", + text = "helm_mail_northrend_b_03_trf.m2", + value = "helm_mail_northrend_b_03_trf.m2", }, { - fileId = "140361", - text = "helm_plate_b_03sentinel_trm.m2", - value = "helm_plate_b_03sentinel_trm.m2", + fileId = "139497", + text = "helm_mail_northrend_b_03_trm.m2", + value = "helm_mail_northrend_b_03_trm.m2", }, { - fileId = "140362", - text = "helm_plate_b_04_bef.m2", - value = "helm_plate_b_04_bef.m2", + fileId = "404456", + text = "helm_mail_northrend_b_03_wof.m2", + value = "helm_mail_northrend_b_03_wof.m2", }, { - fileId = "140363", - text = "helm_plate_b_04_bem.m2", - value = "helm_plate_b_04_bem.m2", + fileId = "404457", + text = "helm_mail_northrend_b_03_wom.m2", + value = "helm_mail_northrend_b_03_wom.m2", }, { - fileId = "140364", - text = "helm_plate_b_04_drf.m2", - value = "helm_plate_b_04_drf.m2", + fileId = "139502", + text = "helm_mail_northrend_d_01_bef.m2", + value = "helm_mail_northrend_d_01_bef.m2", }, { - fileId = "140365", - text = "helm_plate_b_04_drm.m2", - value = "helm_plate_b_04_drm.m2", + fileId = "139503", + text = "helm_mail_northrend_d_01_bem.m2", + value = "helm_mail_northrend_d_01_bem.m2", }, { - fileId = "140366", - text = "helm_plate_b_04_dwf.m2", - value = "helm_plate_b_04_dwf.m2", + fileId = "139504", + text = "helm_mail_northrend_d_01_drf.m2", + value = "helm_mail_northrend_d_01_drf.m2", }, { - fileId = "140367", - text = "helm_plate_b_04_dwm.m2", - value = "helm_plate_b_04_dwm.m2", + fileId = "139505", + text = "helm_mail_northrend_d_01_drm.m2", + value = "helm_mail_northrend_d_01_drm.m2", }, { - fileId = "140368", - text = "helm_plate_b_04_gnf.m2", - value = "helm_plate_b_04_gnf.m2", + fileId = "139506", + text = "helm_mail_northrend_d_01_dwf.m2", + value = "helm_mail_northrend_d_01_dwf.m2", }, { - fileId = "140369", - text = "helm_plate_b_04_gnm.m2", - value = "helm_plate_b_04_gnm.m2", + fileId = "139507", + text = "helm_mail_northrend_d_01_dwm.m2", + value = "helm_mail_northrend_d_01_dwm.m2", }, { - fileId = "140370", - text = "helm_plate_b_04_gof.m2", - value = "helm_plate_b_04_gof.m2", + fileId = "139508", + text = "helm_mail_northrend_d_01_gnf.m2", + value = "helm_mail_northrend_d_01_gnf.m2", }, { - fileId = "140371", - text = "helm_plate_b_04_gom.m2", - value = "helm_plate_b_04_gom.m2", + fileId = "139509", + text = "helm_mail_northrend_d_01_gnm.m2", + value = "helm_mail_northrend_d_01_gnm.m2", }, { - fileId = "140372", - text = "helm_plate_b_04_huf.m2", - value = "helm_plate_b_04_huf.m2", + fileId = "463032", + text = "helm_mail_northrend_d_01_gof.m2", + value = "helm_mail_northrend_d_01_gof.m2", }, { - fileId = "140373", - text = "helm_plate_b_04_hum.m2", - value = "helm_plate_b_04_hum.m2", + fileId = "463033", + text = "helm_mail_northrend_d_01_gom.m2", + value = "helm_mail_northrend_d_01_gom.m2", }, { - fileId = "140374", - text = "helm_plate_b_04_nif.m2", - value = "helm_plate_b_04_nif.m2", + fileId = "139510", + text = "helm_mail_northrend_d_01_huf.m2", + value = "helm_mail_northrend_d_01_huf.m2", }, { - fileId = "140375", - text = "helm_plate_b_04_nim.m2", - value = "helm_plate_b_04_nim.m2", + fileId = "139511", + text = "helm_mail_northrend_d_01_hum.m2", + value = "helm_mail_northrend_d_01_hum.m2", }, { - fileId = "140376", - text = "helm_plate_b_04_orf.m2", - value = "helm_plate_b_04_orf.m2", + fileId = "139512", + text = "helm_mail_northrend_d_01_nif.m2", + value = "helm_mail_northrend_d_01_nif.m2", }, { - fileId = "140377", - text = "helm_plate_b_04_orm.m2", - value = "helm_plate_b_04_orm.m2", + fileId = "139513", + text = "helm_mail_northrend_d_01_nim.m2", + value = "helm_mail_northrend_d_01_nim.m2", }, { - fileId = "140378", - text = "helm_plate_b_04_scf.m2", - value = "helm_plate_b_04_scf.m2", + fileId = "139514", + text = "helm_mail_northrend_d_01_orf.m2", + value = "helm_mail_northrend_d_01_orf.m2", }, { - fileId = "140379", - text = "helm_plate_b_04_scm.m2", - value = "helm_plate_b_04_scm.m2", + fileId = "139515", + text = "helm_mail_northrend_d_01_orm.m2", + value = "helm_mail_northrend_d_01_orm.m2", }, { - fileId = "140380", - text = "helm_plate_b_04_taf.m2", - value = "helm_plate_b_04_taf.m2", + fileId = "139516", + text = "helm_mail_northrend_d_01_scf.m2", + value = "helm_mail_northrend_d_01_scf.m2", }, { - fileId = "140381", - text = "helm_plate_b_04_tam.m2", - value = "helm_plate_b_04_tam.m2", + fileId = "139517", + text = "helm_mail_northrend_d_01_scm.m2", + value = "helm_mail_northrend_d_01_scm.m2", }, { - fileId = "140382", - text = "helm_plate_b_04_trf.m2", - value = "helm_plate_b_04_trf.m2", + fileId = "139518", + text = "helm_mail_northrend_d_01_taf.m2", + value = "helm_mail_northrend_d_01_taf.m2", }, { - fileId = "140383", - text = "helm_plate_b_04_trm.m2", - value = "helm_plate_b_04_trm.m2", + fileId = "139519", + text = "helm_mail_northrend_d_01_tam.m2", + value = "helm_mail_northrend_d_01_tam.m2", }, { - fileId = "140387", - text = "helm_plate_bloodknight_d_02_bef.m2", - value = "helm_plate_bloodknight_d_02_bef.m2", + fileId = "139520", + text = "helm_mail_northrend_d_01_trf.m2", + value = "helm_mail_northrend_d_01_trf.m2", }, { - fileId = "140388", - text = "helm_plate_bloodknight_d_02_bem.m2", - value = "helm_plate_bloodknight_d_02_bem.m2", + fileId = "139521", + text = "helm_mail_northrend_d_01_trm.m2", + value = "helm_mail_northrend_d_01_trm.m2", }, { - fileId = "140389", - text = "helm_plate_bloodknight_d_02_drf.m2", - value = "helm_plate_bloodknight_d_02_drf.m2", + fileId = "454493", + text = "helm_mail_northrend_d_01_wof.m2", + value = "helm_mail_northrend_d_01_wof.m2", }, { - fileId = "140390", - text = "helm_plate_bloodknight_d_02_drm.m2", - value = "helm_plate_bloodknight_d_02_drm.m2", + fileId = "430020", + text = "helm_mail_northrend_d_01_wom.m2", + value = "helm_mail_northrend_d_01_wom.m2", }, { - fileId = "140391", - text = "helm_plate_bloodknight_d_02_dwf.m2", - value = "helm_plate_bloodknight_d_02_dwf.m2", + fileId = "139526", + text = "helm_mail_pvpalliance_a_01_bef.m2", + value = "helm_mail_pvpalliance_a_01_bef.m2", }, { - fileId = "140392", - text = "helm_plate_bloodknight_d_02_dwm.m2", - value = "helm_plate_bloodknight_d_02_dwm.m2", + fileId = "139527", + text = "helm_mail_pvpalliance_a_01_bem.m2", + value = "helm_mail_pvpalliance_a_01_bem.m2", }, { - fileId = "140393", - text = "helm_plate_bloodknight_d_02_gnf.m2", - value = "helm_plate_bloodknight_d_02_gnf.m2", + fileId = "139528", + text = "helm_mail_pvpalliance_a_01_drf.m2", + value = "helm_mail_pvpalliance_a_01_drf.m2", }, { - fileId = "140394", - text = "helm_plate_bloodknight_d_02_gnm.m2", - value = "helm_plate_bloodknight_d_02_gnm.m2", + fileId = "139529", + text = "helm_mail_pvpalliance_a_01_drm.m2", + value = "helm_mail_pvpalliance_a_01_drm.m2", }, { - fileId = "140395", - text = "helm_plate_bloodknight_d_02_gof.m2", - value = "helm_plate_bloodknight_d_02_gof.m2", + fileId = "139530", + text = "helm_mail_pvpalliance_a_01_dwf.m2", + value = "helm_mail_pvpalliance_a_01_dwf.m2", }, { - fileId = "140396", - text = "helm_plate_bloodknight_d_02_gom.m2", - value = "helm_plate_bloodknight_d_02_gom.m2", + fileId = "139531", + text = "helm_mail_pvpalliance_a_01_dwm.m2", + value = "helm_mail_pvpalliance_a_01_dwm.m2", }, { - fileId = "140397", - text = "helm_plate_bloodknight_d_02_huf.m2", - value = "helm_plate_bloodknight_d_02_huf.m2", + fileId = "139532", + text = "helm_mail_pvpalliance_a_01_gnf.m2", + value = "helm_mail_pvpalliance_a_01_gnf.m2", }, { - fileId = "140398", - text = "helm_plate_bloodknight_d_02_hum.m2", - value = "helm_plate_bloodknight_d_02_hum.m2", + fileId = "139533", + text = "helm_mail_pvpalliance_a_01_gnm.m2", + value = "helm_mail_pvpalliance_a_01_gnm.m2", }, { - fileId = "140399", - text = "helm_plate_bloodknight_d_02_nif.m2", - value = "helm_plate_bloodknight_d_02_nif.m2", + fileId = "139534", + text = "helm_mail_pvpalliance_a_01_gof.m2", + value = "helm_mail_pvpalliance_a_01_gof.m2", }, { - fileId = "140400", - text = "helm_plate_bloodknight_d_02_nim.m2", - value = "helm_plate_bloodknight_d_02_nim.m2", + fileId = "139535", + text = "helm_mail_pvpalliance_a_01_gom.m2", + value = "helm_mail_pvpalliance_a_01_gom.m2", }, { - fileId = "140401", - text = "helm_plate_bloodknight_d_02_orf.m2", - value = "helm_plate_bloodknight_d_02_orf.m2", + fileId = "139536", + text = "helm_mail_pvpalliance_a_01_huf.m2", + value = "helm_mail_pvpalliance_a_01_huf.m2", }, { - fileId = "140402", - text = "helm_plate_bloodknight_d_02_orm.m2", - value = "helm_plate_bloodknight_d_02_orm.m2", + fileId = "139537", + text = "helm_mail_pvpalliance_a_01_hum.m2", + value = "helm_mail_pvpalliance_a_01_hum.m2", }, { - fileId = "140403", - text = "helm_plate_bloodknight_d_02_scf.m2", - value = "helm_plate_bloodknight_d_02_scf.m2", + fileId = "139538", + text = "helm_mail_pvpalliance_a_01_nif.m2", + value = "helm_mail_pvpalliance_a_01_nif.m2", }, { - fileId = "140404", - text = "helm_plate_bloodknight_d_02_scm.m2", - value = "helm_plate_bloodknight_d_02_scm.m2", + fileId = "139539", + text = "helm_mail_pvpalliance_a_01_nim.m2", + value = "helm_mail_pvpalliance_a_01_nim.m2", }, { - fileId = "140405", - text = "helm_plate_bloodknight_d_02_taf.m2", - value = "helm_plate_bloodknight_d_02_taf.m2", + fileId = "139540", + text = "helm_mail_pvpalliance_a_01_orf.m2", + value = "helm_mail_pvpalliance_a_01_orf.m2", }, { - fileId = "140406", - text = "helm_plate_bloodknight_d_02_tam.m2", - value = "helm_plate_bloodknight_d_02_tam.m2", + fileId = "139541", + text = "helm_mail_pvpalliance_a_01_orm.m2", + value = "helm_mail_pvpalliance_a_01_orm.m2", }, { - fileId = "140407", - text = "helm_plate_bloodknight_d_02_trf.m2", - value = "helm_plate_bloodknight_d_02_trf.m2", + fileId = "139542", + text = "helm_mail_pvpalliance_a_01_scf.m2", + value = "helm_mail_pvpalliance_a_01_scf.m2", }, { - fileId = "140408", - text = "helm_plate_bloodknight_d_02_trm.m2", - value = "helm_plate_bloodknight_d_02_trm.m2", + fileId = "139543", + text = "helm_mail_pvpalliance_a_01_scm.m2", + value = "helm_mail_pvpalliance_a_01_scm.m2", }, { - fileId = "140409", - text = "helm_plate_d_01_bef.m2", - value = "helm_plate_d_01_bef.m2", + fileId = "139544", + text = "helm_mail_pvpalliance_a_01_taf.m2", + value = "helm_mail_pvpalliance_a_01_taf.m2", }, { - fileId = "140410", - text = "helm_plate_d_01_bem.m2", - value = "helm_plate_d_01_bem.m2", + fileId = "139545", + text = "helm_mail_pvpalliance_a_01_tam.m2", + value = "helm_mail_pvpalliance_a_01_tam.m2", }, { - fileId = "140411", - text = "helm_plate_d_01_drf.m2", - value = "helm_plate_d_01_drf.m2", + fileId = "139546", + text = "helm_mail_pvpalliance_a_01_trf.m2", + value = "helm_mail_pvpalliance_a_01_trf.m2", }, { - fileId = "140412", - text = "helm_plate_d_01_drm.m2", - value = "helm_plate_d_01_drm.m2", + fileId = "139547", + text = "helm_mail_pvpalliance_a_01_trm.m2", + value = "helm_mail_pvpalliance_a_01_trm.m2", }, { - fileId = "140413", - text = "helm_plate_d_01_dwf.m2", - value = "helm_plate_d_01_dwf.m2", + fileId = "454494", + text = "helm_mail_pvpalliance_a_01_wof.m2", + value = "helm_mail_pvpalliance_a_01_wof.m2", }, { - fileId = "140414", - text = "helm_plate_d_01_dwm.m2", - value = "helm_plate_d_01_dwm.m2", + fileId = "430021", + text = "helm_mail_pvpalliance_a_01_wom.m2", + value = "helm_mail_pvpalliance_a_01_wom.m2", }, { - fileId = "140415", - text = "helm_plate_d_01_gnf.m2", - value = "helm_plate_d_01_gnf.m2", + fileId = "139551", + text = "helm_mail_pvpalliance_c_01_bef.m2", + value = "helm_mail_pvpalliance_c_01_bef.m2", }, { - fileId = "140416", - text = "helm_plate_d_01_gnm.m2", - value = "helm_plate_d_01_gnm.m2", + fileId = "139552", + text = "helm_mail_pvpalliance_c_01_bem.m2", + value = "helm_mail_pvpalliance_c_01_bem.m2", }, { - fileId = "140417", - text = "helm_plate_d_01_gof.m2", - value = "helm_plate_d_01_gof.m2", + fileId = "139553", + text = "helm_mail_pvpalliance_c_01_drf.m2", + value = "helm_mail_pvpalliance_c_01_drf.m2", }, { - fileId = "140418", - text = "helm_plate_d_01_gom.m2", - value = "helm_plate_d_01_gom.m2", + fileId = "139554", + text = "helm_mail_pvpalliance_c_01_drm.m2", + value = "helm_mail_pvpalliance_c_01_drm.m2", }, { - fileId = "140419", - text = "helm_plate_d_01_huf.m2", - value = "helm_plate_d_01_huf.m2", + fileId = "139555", + text = "helm_mail_pvpalliance_c_01_dwf.m2", + value = "helm_mail_pvpalliance_c_01_dwf.m2", }, { - fileId = "140420", - text = "helm_plate_d_01_hum.m2", - value = "helm_plate_d_01_hum.m2", + fileId = "139556", + text = "helm_mail_pvpalliance_c_01_dwm.m2", + value = "helm_mail_pvpalliance_c_01_dwm.m2", }, { - fileId = "140421", - text = "helm_plate_d_01_nif.m2", - value = "helm_plate_d_01_nif.m2", + fileId = "139557", + text = "helm_mail_pvpalliance_c_01_gnf.m2", + value = "helm_mail_pvpalliance_c_01_gnf.m2", }, { - fileId = "140422", - text = "helm_plate_d_01_nim.m2", - value = "helm_plate_d_01_nim.m2", + fileId = "139558", + text = "helm_mail_pvpalliance_c_01_gnm.m2", + value = "helm_mail_pvpalliance_c_01_gnm.m2", }, { - fileId = "140423", - text = "helm_plate_d_01_orf.m2", - value = "helm_plate_d_01_orf.m2", + fileId = "139559", + text = "helm_mail_pvpalliance_c_01_gof.m2", + value = "helm_mail_pvpalliance_c_01_gof.m2", }, { - fileId = "140424", - text = "helm_plate_d_01_orm.m2", - value = "helm_plate_d_01_orm.m2", + fileId = "139560", + text = "helm_mail_pvpalliance_c_01_gom.m2", + value = "helm_mail_pvpalliance_c_01_gom.m2", }, { - fileId = "140425", - text = "helm_plate_d_01_scf.m2", - value = "helm_plate_d_01_scf.m2", + fileId = "139561", + text = "helm_mail_pvpalliance_c_01_huf.m2", + value = "helm_mail_pvpalliance_c_01_huf.m2", }, { - fileId = "140426", - text = "helm_plate_d_01_scm.m2", - value = "helm_plate_d_01_scm.m2", + fileId = "139562", + text = "helm_mail_pvpalliance_c_01_hum.m2", + value = "helm_mail_pvpalliance_c_01_hum.m2", }, { - fileId = "140427", - text = "helm_plate_d_01_taf.m2", - value = "helm_plate_d_01_taf.m2", + fileId = "139563", + text = "helm_mail_pvpalliance_c_01_nif.m2", + value = "helm_mail_pvpalliance_c_01_nif.m2", }, { - fileId = "140428", - text = "helm_plate_d_01_tam.m2", - value = "helm_plate_d_01_tam.m2", + fileId = "139564", + text = "helm_mail_pvpalliance_c_01_nim.m2", + value = "helm_mail_pvpalliance_c_01_nim.m2", }, { - fileId = "140429", - text = "helm_plate_d_01_trf.m2", - value = "helm_plate_d_01_trf.m2", + fileId = "139565", + text = "helm_mail_pvpalliance_c_01_orf.m2", + value = "helm_mail_pvpalliance_c_01_orf.m2", }, { - fileId = "140430", - text = "helm_plate_d_01_trm.m2", - value = "helm_plate_d_01_trm.m2", + fileId = "139566", + text = "helm_mail_pvpalliance_c_01_orm.m2", + value = "helm_mail_pvpalliance_c_01_orm.m2", }, { - fileId = "140432", - text = "helm_plate_d_02_bef.m2", - value = "helm_plate_d_02_bef.m2", + fileId = "139567", + text = "helm_mail_pvpalliance_c_01_scf.m2", + value = "helm_mail_pvpalliance_c_01_scf.m2", }, { - fileId = "140433", - text = "helm_plate_d_02_bem.m2", - value = "helm_plate_d_02_bem.m2", + fileId = "139568", + text = "helm_mail_pvpalliance_c_01_scm.m2", + value = "helm_mail_pvpalliance_c_01_scm.m2", }, { - fileId = "140434", - text = "helm_plate_d_02_drf.m2", - value = "helm_plate_d_02_drf.m2", + fileId = "139569", + text = "helm_mail_pvpalliance_c_01_taf.m2", + value = "helm_mail_pvpalliance_c_01_taf.m2", }, { - fileId = "140435", - text = "helm_plate_d_02_drm.m2", - value = "helm_plate_d_02_drm.m2", + fileId = "139570", + text = "helm_mail_pvpalliance_c_01_tam.m2", + value = "helm_mail_pvpalliance_c_01_tam.m2", }, { - fileId = "140436", - text = "helm_plate_d_02_dwf.m2", - value = "helm_plate_d_02_dwf.m2", + fileId = "139571", + text = "helm_mail_pvpalliance_c_01_trf.m2", + value = "helm_mail_pvpalliance_c_01_trf.m2", }, { - fileId = "140437", - text = "helm_plate_d_02_dwm.m2", - value = "helm_plate_d_02_dwm.m2", + fileId = "139572", + text = "helm_mail_pvpalliance_c_01_trm.m2", + value = "helm_mail_pvpalliance_c_01_trm.m2", }, { - fileId = "140438", - text = "helm_plate_d_02_gnf.m2", - value = "helm_plate_d_02_gnf.m2", + fileId = "454156", + text = "helm_mail_pvpalliance_c_01_wof.m2", + value = "helm_mail_pvpalliance_c_01_wof.m2", }, { - fileId = "140439", - text = "helm_plate_d_02_gnm.m2", - value = "helm_plate_d_02_gnm.m2", + fileId = "430022", + text = "helm_mail_pvpalliance_c_01_wom.m2", + value = "helm_mail_pvpalliance_c_01_wom.m2", }, { - fileId = "140440", - text = "helm_plate_d_02_gof.m2", - value = "helm_plate_d_02_gof.m2", + fileId = "139573", + text = "helm_mail_pvphorde_a_01_bef.m2", + value = "helm_mail_pvphorde_a_01_bef.m2", }, { - fileId = "140441", - text = "helm_plate_d_02_gom.m2", - value = "helm_plate_d_02_gom.m2", + fileId = "139574", + text = "helm_mail_pvphorde_a_01_bem.m2", + value = "helm_mail_pvphorde_a_01_bem.m2", }, { - fileId = "140442", - text = "helm_plate_d_02_huf.m2", - value = "helm_plate_d_02_huf.m2", + fileId = "139575", + text = "helm_mail_pvphorde_a_01_drf.m2", + value = "helm_mail_pvphorde_a_01_drf.m2", }, { - fileId = "140443", - text = "helm_plate_d_02_hum.m2", - value = "helm_plate_d_02_hum.m2", + fileId = "139576", + text = "helm_mail_pvphorde_a_01_drm.m2", + value = "helm_mail_pvphorde_a_01_drm.m2", }, { - fileId = "140444", - text = "helm_plate_d_02_nif.m2", - value = "helm_plate_d_02_nif.m2", + fileId = "139577", + text = "helm_mail_pvphorde_a_01_dwf.m2", + value = "helm_mail_pvphorde_a_01_dwf.m2", }, { - fileId = "140445", - text = "helm_plate_d_02_nim.m2", - value = "helm_plate_d_02_nim.m2", + fileId = "139578", + text = "helm_mail_pvphorde_a_01_dwm.m2", + value = "helm_mail_pvphorde_a_01_dwm.m2", }, { - fileId = "140446", - text = "helm_plate_d_02_orf.m2", - value = "helm_plate_d_02_orf.m2", + fileId = "139579", + text = "helm_mail_pvphorde_a_01_gnf.m2", + value = "helm_mail_pvphorde_a_01_gnf.m2", }, { - fileId = "140447", - text = "helm_plate_d_02_orm.m2", - value = "helm_plate_d_02_orm.m2", + fileId = "139580", + text = "helm_mail_pvphorde_a_01_gnm.m2", + value = "helm_mail_pvphorde_a_01_gnm.m2", }, { - fileId = "140448", - text = "helm_plate_d_02_scf.m2", - value = "helm_plate_d_02_scf.m2", + fileId = "139581", + text = "helm_mail_pvphorde_a_01_gof.m2", + value = "helm_mail_pvphorde_a_01_gof.m2", }, { - fileId = "140449", - text = "helm_plate_d_02_scm.m2", - value = "helm_plate_d_02_scm.m2", + fileId = "404458", + text = "helm_mail_pvphorde_a_01_gom.m2", + value = "helm_mail_pvphorde_a_01_gom.m2", }, { - fileId = "140450", - text = "helm_plate_d_02_taf.m2", - value = "helm_plate_d_02_taf.m2", + fileId = "139582", + text = "helm_mail_pvphorde_a_01_huf.m2", + value = "helm_mail_pvphorde_a_01_huf.m2", }, { - fileId = "140451", - text = "helm_plate_d_02_tam.m2", - value = "helm_plate_d_02_tam.m2", + fileId = "139583", + text = "helm_mail_pvphorde_a_01_hum.m2", + value = "helm_mail_pvphorde_a_01_hum.m2", }, { - fileId = "140452", - text = "helm_plate_d_02_trf.m2", - value = "helm_plate_d_02_trf.m2", + fileId = "139584", + text = "helm_mail_pvphorde_a_01_nif.m2", + value = "helm_mail_pvphorde_a_01_nif.m2", }, { - fileId = "140453", - text = "helm_plate_d_02_trm.m2", - value = "helm_plate_d_02_trm.m2", + fileId = "139585", + text = "helm_mail_pvphorde_a_01_nim.m2", + value = "helm_mail_pvphorde_a_01_nim.m2", }, { - fileId = "140456", - text = "helm_plate_d_03_bef.m2", - value = "helm_plate_d_03_bef.m2", + fileId = "139586", + text = "helm_mail_pvphorde_a_01_orf.m2", + value = "helm_mail_pvphorde_a_01_orf.m2", }, { - fileId = "140457", - text = "helm_plate_d_03_bem.m2", - value = "helm_plate_d_03_bem.m2", + fileId = "139587", + text = "helm_mail_pvphorde_a_01_orm.m2", + value = "helm_mail_pvphorde_a_01_orm.m2", }, { - fileId = "140458", - text = "helm_plate_d_03_drf.m2", - value = "helm_plate_d_03_drf.m2", + fileId = "139588", + text = "helm_mail_pvphorde_a_01_scf.m2", + value = "helm_mail_pvphorde_a_01_scf.m2", }, { - fileId = "140459", - text = "helm_plate_d_03_drm.m2", - value = "helm_plate_d_03_drm.m2", + fileId = "139589", + text = "helm_mail_pvphorde_a_01_scm.m2", + value = "helm_mail_pvphorde_a_01_scm.m2", }, { - fileId = "140460", - text = "helm_plate_d_03_dwf.m2", - value = "helm_plate_d_03_dwf.m2", + fileId = "139590", + text = "helm_mail_pvphorde_a_01_taf.m2", + value = "helm_mail_pvphorde_a_01_taf.m2", }, { - fileId = "140461", - text = "helm_plate_d_03_dwm.m2", - value = "helm_plate_d_03_dwm.m2", + fileId = "139591", + text = "helm_mail_pvphorde_a_01_tam.m2", + value = "helm_mail_pvphorde_a_01_tam.m2", }, { - fileId = "140462", - text = "helm_plate_d_03_gnf.m2", - value = "helm_plate_d_03_gnf.m2", + fileId = "139592", + text = "helm_mail_pvphorde_a_01_trf.m2", + value = "helm_mail_pvphorde_a_01_trf.m2", }, { - fileId = "140463", - text = "helm_plate_d_03_gnm.m2", - value = "helm_plate_d_03_gnm.m2", + fileId = "139593", + text = "helm_mail_pvphorde_a_01_trm.m2", + value = "helm_mail_pvphorde_a_01_trm.m2", }, { - fileId = "140464", - text = "helm_plate_d_03_gof.m2", - value = "helm_plate_d_03_gof.m2", + fileId = "454157", + text = "helm_mail_pvphorde_a_01_wof.m2", + value = "helm_mail_pvphorde_a_01_wof.m2", }, { - fileId = "140465", - text = "helm_plate_d_03_gom.m2", - value = "helm_plate_d_03_gom.m2", + fileId = "430023", + text = "helm_mail_pvphorde_a_01_wom.m2", + value = "helm_mail_pvphorde_a_01_wom.m2", }, { - fileId = "140466", - text = "helm_plate_d_03_huf.m2", - value = "helm_plate_d_03_huf.m2", + fileId = "139596", + text = "helm_mail_pvphorde_c_01_bef.m2", + value = "helm_mail_pvphorde_c_01_bef.m2", }, { - fileId = "140467", - text = "helm_plate_d_03_hum.m2", - value = "helm_plate_d_03_hum.m2", + fileId = "139597", + text = "helm_mail_pvphorde_c_01_bem.m2", + value = "helm_mail_pvphorde_c_01_bem.m2", }, { - fileId = "140468", - text = "helm_plate_d_03_nif.m2", - value = "helm_plate_d_03_nif.m2", + fileId = "139598", + text = "helm_mail_pvphorde_c_01_drf.m2", + value = "helm_mail_pvphorde_c_01_drf.m2", }, { - fileId = "140469", - text = "helm_plate_d_03_nim.m2", - value = "helm_plate_d_03_nim.m2", + fileId = "139599", + text = "helm_mail_pvphorde_c_01_drm.m2", + value = "helm_mail_pvphorde_c_01_drm.m2", }, { - fileId = "140470", - text = "helm_plate_d_03_orf.m2", - value = "helm_plate_d_03_orf.m2", + fileId = "139600", + text = "helm_mail_pvphorde_c_01_dwf.m2", + value = "helm_mail_pvphorde_c_01_dwf.m2", }, { - fileId = "140471", - text = "helm_plate_d_03_orm.m2", - value = "helm_plate_d_03_orm.m2", + fileId = "139601", + text = "helm_mail_pvphorde_c_01_dwm.m2", + value = "helm_mail_pvphorde_c_01_dwm.m2", }, { - fileId = "140472", - text = "helm_plate_d_03_scf.m2", - value = "helm_plate_d_03_scf.m2", + fileId = "139602", + text = "helm_mail_pvphorde_c_01_gnf.m2", + value = "helm_mail_pvphorde_c_01_gnf.m2", }, { - fileId = "140473", - text = "helm_plate_d_03_scm.m2", - value = "helm_plate_d_03_scm.m2", + fileId = "139603", + text = "helm_mail_pvphorde_c_01_gnm.m2", + value = "helm_mail_pvphorde_c_01_gnm.m2", }, { - fileId = "140474", - text = "helm_plate_d_03_taf.m2", - value = "helm_plate_d_03_taf.m2", + fileId = "139604", + text = "helm_mail_pvphorde_c_01_gof.m2", + value = "helm_mail_pvphorde_c_01_gof.m2", }, { - fileId = "140475", - text = "helm_plate_d_03_tam.m2", - value = "helm_plate_d_03_tam.m2", + fileId = "139605", + text = "helm_mail_pvphorde_c_01_gom.m2", + value = "helm_mail_pvphorde_c_01_gom.m2", }, { - fileId = "140476", - text = "helm_plate_d_03_trf.m2", - value = "helm_plate_d_03_trf.m2", + fileId = "139606", + text = "helm_mail_pvphorde_c_01_huf.m2", + value = "helm_mail_pvphorde_c_01_huf.m2", }, { - fileId = "140477", - text = "helm_plate_d_03_trm.m2", - value = "helm_plate_d_03_trm.m2", + fileId = "139607", + text = "helm_mail_pvphorde_c_01_hum.m2", + value = "helm_mail_pvphorde_c_01_hum.m2", }, { - fileId = "140493", - text = "helm_plate_d_04_bef.m2", - value = "helm_plate_d_04_bef.m2", + fileId = "139608", + text = "helm_mail_pvphorde_c_01_nif.m2", + value = "helm_mail_pvphorde_c_01_nif.m2", }, { - fileId = "140494", - text = "helm_plate_d_04_bem.m2", - value = "helm_plate_d_04_bem.m2", + fileId = "139609", + text = "helm_mail_pvphorde_c_01_nim.m2", + value = "helm_mail_pvphorde_c_01_nim.m2", }, { - fileId = "140495", - text = "helm_plate_d_04_drf.m2", - value = "helm_plate_d_04_drf.m2", + fileId = "139610", + text = "helm_mail_pvphorde_c_01_orf.m2", + value = "helm_mail_pvphorde_c_01_orf.m2", }, { - fileId = "140496", - text = "helm_plate_d_04_drm.m2", - value = "helm_plate_d_04_drm.m2", + fileId = "139611", + text = "helm_mail_pvphorde_c_01_orm.m2", + value = "helm_mail_pvphorde_c_01_orm.m2", }, { - fileId = "140497", - text = "helm_plate_d_04_dwf.m2", - value = "helm_plate_d_04_dwf.m2", + fileId = "139612", + text = "helm_mail_pvphorde_c_01_scf.m2", + value = "helm_mail_pvphorde_c_01_scf.m2", }, { - fileId = "140498", - text = "helm_plate_d_04_dwm.m2", - value = "helm_plate_d_04_dwm.m2", + fileId = "139613", + text = "helm_mail_pvphorde_c_01_scm.m2", + value = "helm_mail_pvphorde_c_01_scm.m2", }, { - fileId = "140499", - text = "helm_plate_d_04_gnf.m2", - value = "helm_plate_d_04_gnf.m2", + fileId = "139614", + text = "helm_mail_pvphorde_c_01_taf.m2", + value = "helm_mail_pvphorde_c_01_taf.m2", }, { - fileId = "140500", - text = "helm_plate_d_04_gnm.m2", - value = "helm_plate_d_04_gnm.m2", + fileId = "139615", + text = "helm_mail_pvphorde_c_01_tam.m2", + value = "helm_mail_pvphorde_c_01_tam.m2", }, { - fileId = "140501", - text = "helm_plate_d_04_gof.m2", - value = "helm_plate_d_04_gof.m2", + fileId = "139616", + text = "helm_mail_pvphorde_c_01_trf.m2", + value = "helm_mail_pvphorde_c_01_trf.m2", }, { - fileId = "140502", - text = "helm_plate_d_04_gom.m2", - value = "helm_plate_d_04_gom.m2", + fileId = "139617", + text = "helm_mail_pvphorde_c_01_trm.m2", + value = "helm_mail_pvphorde_c_01_trm.m2", }, { - fileId = "140503", - text = "helm_plate_d_04_huf.m2", - value = "helm_plate_d_04_huf.m2", + fileId = "454158", + text = "helm_mail_pvphorde_c_01_wof.m2", + value = "helm_mail_pvphorde_c_01_wof.m2", }, { - fileId = "140504", - text = "helm_plate_d_04_hum.m2", - value = "helm_plate_d_04_hum.m2", + fileId = "430024", + text = "helm_mail_pvphorde_c_01_wom.m2", + value = "helm_mail_pvphorde_c_01_wom.m2", }, { - fileId = "140505", - text = "helm_plate_d_04_nif.m2", - value = "helm_plate_d_04_nif.m2", + fileId = "237975", + text = "helm_mail_pvphunter_b_01_bef.m2", + value = "helm_mail_pvphunter_b_01_bef.m2", }, { - fileId = "140506", - text = "helm_plate_d_04_nim.m2", - value = "helm_plate_d_04_nim.m2", + fileId = "237976", + text = "helm_mail_pvphunter_b_01_bem.m2", + value = "helm_mail_pvphunter_b_01_bem.m2", }, { - fileId = "140507", - text = "helm_plate_d_04_orf.m2", - value = "helm_plate_d_04_orf.m2", + fileId = "237977", + text = "helm_mail_pvphunter_b_01_drf.m2", + value = "helm_mail_pvphunter_b_01_drf.m2", }, { - fileId = "140508", - text = "helm_plate_d_04_orm.m2", - value = "helm_plate_d_04_orm.m2", + fileId = "237978", + text = "helm_mail_pvphunter_b_01_drm.m2", + value = "helm_mail_pvphunter_b_01_drm.m2", }, { - fileId = "140509", - text = "helm_plate_d_04_scf.m2", - value = "helm_plate_d_04_scf.m2", + fileId = "237979", + text = "helm_mail_pvphunter_b_01_dwf.m2", + value = "helm_mail_pvphunter_b_01_dwf.m2", }, { - fileId = "140510", - text = "helm_plate_d_04_scm.m2", - value = "helm_plate_d_04_scm.m2", + fileId = "237980", + text = "helm_mail_pvphunter_b_01_dwm.m2", + value = "helm_mail_pvphunter_b_01_dwm.m2", }, { - fileId = "140511", - text = "helm_plate_d_04_taf.m2", - value = "helm_plate_d_04_taf.m2", + fileId = "237981", + text = "helm_mail_pvphunter_b_01_gnf.m2", + value = "helm_mail_pvphunter_b_01_gnf.m2", }, { - fileId = "140512", - text = "helm_plate_d_04_tam.m2", - value = "helm_plate_d_04_tam.m2", + fileId = "237982", + text = "helm_mail_pvphunter_b_01_gnm.m2", + value = "helm_mail_pvphunter_b_01_gnm.m2", }, { - fileId = "140513", - text = "helm_plate_d_04_trf.m2", - value = "helm_plate_d_04_trf.m2", + fileId = "237983", + text = "helm_mail_pvphunter_b_01_gof.m2", + value = "helm_mail_pvphunter_b_01_gof.m2", }, { - fileId = "140514", - text = "helm_plate_d_04_trm.m2", - value = "helm_plate_d_04_trm.m2", + fileId = "237984", + text = "helm_mail_pvphunter_b_01_gom.m2", + value = "helm_mail_pvphunter_b_01_gom.m2", }, { - fileId = "238060", - text = "helm_plate_deathknight_b_01_bef.m2", - value = "helm_plate_deathknight_b_01_bef.m2", + fileId = "237985", + text = "helm_mail_pvphunter_b_01_huf.m2", + value = "helm_mail_pvphunter_b_01_huf.m2", }, { - fileId = "238061", - text = "helm_plate_deathknight_b_01_bem.m2", - value = "helm_plate_deathknight_b_01_bem.m2", + fileId = "237986", + text = "helm_mail_pvphunter_b_01_hum.m2", + value = "helm_mail_pvphunter_b_01_hum.m2", }, { - fileId = "238062", - text = "helm_plate_deathknight_b_01_drf.m2", - value = "helm_plate_deathknight_b_01_drf.m2", + fileId = "237987", + text = "helm_mail_pvphunter_b_01_nif.m2", + value = "helm_mail_pvphunter_b_01_nif.m2", }, { - fileId = "238063", - text = "helm_plate_deathknight_b_01_drm.m2", - value = "helm_plate_deathknight_b_01_drm.m2", + fileId = "237988", + text = "helm_mail_pvphunter_b_01_nim.m2", + value = "helm_mail_pvphunter_b_01_nim.m2", }, { - fileId = "238064", - text = "helm_plate_deathknight_b_01_dwf.m2", - value = "helm_plate_deathknight_b_01_dwf.m2", + fileId = "237989", + text = "helm_mail_pvphunter_b_01_orf.m2", + value = "helm_mail_pvphunter_b_01_orf.m2", }, { - fileId = "238065", - text = "helm_plate_deathknight_b_01_dwm.m2", - value = "helm_plate_deathknight_b_01_dwm.m2", + fileId = "237990", + text = "helm_mail_pvphunter_b_01_orm.m2", + value = "helm_mail_pvphunter_b_01_orm.m2", }, { - fileId = "238066", - text = "helm_plate_deathknight_b_01_gnf.m2", - value = "helm_plate_deathknight_b_01_gnf.m2", + fileId = "237991", + text = "helm_mail_pvphunter_b_01_scf.m2", + value = "helm_mail_pvphunter_b_01_scf.m2", }, { - fileId = "238067", - text = "helm_plate_deathknight_b_01_gnm.m2", - value = "helm_plate_deathknight_b_01_gnm.m2", + fileId = "237992", + text = "helm_mail_pvphunter_b_01_scm.m2", + value = "helm_mail_pvphunter_b_01_scm.m2", }, { - fileId = "238068", - text = "helm_plate_deathknight_b_01_gof.m2", - value = "helm_plate_deathknight_b_01_gof.m2", + fileId = "237993", + text = "helm_mail_pvphunter_b_01_taf.m2", + value = "helm_mail_pvphunter_b_01_taf.m2", }, { - fileId = "238069", - text = "helm_plate_deathknight_b_01_gom.m2", - value = "helm_plate_deathknight_b_01_gom.m2", + fileId = "237994", + text = "helm_mail_pvphunter_b_01_tam.m2", + value = "helm_mail_pvphunter_b_01_tam.m2", }, { - fileId = "238070", - text = "helm_plate_deathknight_b_01_huf.m2", - value = "helm_plate_deathknight_b_01_huf.m2", + fileId = "237995", + text = "helm_mail_pvphunter_b_01_trf.m2", + value = "helm_mail_pvphunter_b_01_trf.m2", }, { - fileId = "238071", - text = "helm_plate_deathknight_b_01_hum.m2", - value = "helm_plate_deathknight_b_01_hum.m2", + fileId = "237996", + text = "helm_mail_pvphunter_b_01_trm.m2", + value = "helm_mail_pvphunter_b_01_trm.m2", }, { - fileId = "238072", - text = "helm_plate_deathknight_b_01_nif.m2", - value = "helm_plate_deathknight_b_01_nif.m2", + fileId = "454159", + text = "helm_mail_pvphunter_b_01_wof.m2", + value = "helm_mail_pvphunter_b_01_wof.m2", }, { - fileId = "238073", - text = "helm_plate_deathknight_b_01_nim.m2", - value = "helm_plate_deathknight_b_01_nim.m2", + fileId = "430025", + text = "helm_mail_pvphunter_b_01_wom.m2", + value = "helm_mail_pvphunter_b_01_wom.m2", }, { - fileId = "238074", - text = "helm_plate_deathknight_b_01_orf.m2", - value = "helm_plate_deathknight_b_01_orf.m2", + fileId = "254120", + text = "helm_mail_pvphunter_b_02_bef.m2", + value = "helm_mail_pvphunter_b_02_bef.m2", }, { - fileId = "238075", - text = "helm_plate_deathknight_b_01_orm.m2", - value = "helm_plate_deathknight_b_01_orm.m2", + fileId = "254121", + text = "helm_mail_pvphunter_b_02_bem.m2", + value = "helm_mail_pvphunter_b_02_bem.m2", }, { - fileId = "238076", - text = "helm_plate_deathknight_b_01_scf.m2", - value = "helm_plate_deathknight_b_01_scf.m2", + fileId = "254122", + text = "helm_mail_pvphunter_b_02_drf.m2", + value = "helm_mail_pvphunter_b_02_drf.m2", }, { - fileId = "238077", - text = "helm_plate_deathknight_b_01_scm.m2", - value = "helm_plate_deathknight_b_01_scm.m2", + fileId = "254123", + text = "helm_mail_pvphunter_b_02_drm.m2", + value = "helm_mail_pvphunter_b_02_drm.m2", }, { - fileId = "238078", - text = "helm_plate_deathknight_b_01_taf.m2", - value = "helm_plate_deathknight_b_01_taf.m2", + fileId = "254124", + text = "helm_mail_pvphunter_b_02_dwf.m2", + value = "helm_mail_pvphunter_b_02_dwf.m2", }, { - fileId = "238079", - text = "helm_plate_deathknight_b_01_tam.m2", - value = "helm_plate_deathknight_b_01_tam.m2", + fileId = "254125", + text = "helm_mail_pvphunter_b_02_dwm.m2", + value = "helm_mail_pvphunter_b_02_dwm.m2", }, { - fileId = "238080", - text = "helm_plate_deathknight_b_01_trf.m2", - value = "helm_plate_deathknight_b_01_trf.m2", + fileId = "254126", + text = "helm_mail_pvphunter_b_02_gnf.m2", + value = "helm_mail_pvphunter_b_02_gnf.m2", }, { - fileId = "238081", - text = "helm_plate_deathknight_b_01_trm.m2", - value = "helm_plate_deathknight_b_01_trm.m2", + fileId = "254127", + text = "helm_mail_pvphunter_b_02_gnm.m2", + value = "helm_mail_pvphunter_b_02_gnm.m2", }, { - fileId = "140535", - text = "helm_plate_dungeonpaladin_a_01_bef.m2", - value = "helm_plate_dungeonpaladin_a_01_bef.m2", + fileId = "254128", + text = "helm_mail_pvphunter_b_02_gof.m2", + value = "helm_mail_pvphunter_b_02_gof.m2", }, { - fileId = "140536", - text = "helm_plate_dungeonpaladin_a_01_bem.m2", - value = "helm_plate_dungeonpaladin_a_01_bem.m2", + fileId = "254129", + text = "helm_mail_pvphunter_b_02_gom.m2", + value = "helm_mail_pvphunter_b_02_gom.m2", }, { - fileId = "140537", - text = "helm_plate_dungeonpaladin_a_01_drf.m2", - value = "helm_plate_dungeonpaladin_a_01_drf.m2", + fileId = "254130", + text = "helm_mail_pvphunter_b_02_huf.m2", + value = "helm_mail_pvphunter_b_02_huf.m2", }, { - fileId = "140538", - text = "helm_plate_dungeonpaladin_a_01_drm.m2", - value = "helm_plate_dungeonpaladin_a_01_drm.m2", + fileId = "254131", + text = "helm_mail_pvphunter_b_02_hum.m2", + value = "helm_mail_pvphunter_b_02_hum.m2", }, { - fileId = "140539", - text = "helm_plate_dungeonpaladin_a_01_dwf.m2", - value = "helm_plate_dungeonpaladin_a_01_dwf.m2", + fileId = "254132", + text = "helm_mail_pvphunter_b_02_nif.m2", + value = "helm_mail_pvphunter_b_02_nif.m2", }, { - fileId = "140540", - text = "helm_plate_dungeonpaladin_a_01_dwm.m2", - value = "helm_plate_dungeonpaladin_a_01_dwm.m2", + fileId = "254133", + text = "helm_mail_pvphunter_b_02_nim.m2", + value = "helm_mail_pvphunter_b_02_nim.m2", }, { - fileId = "140541", - text = "helm_plate_dungeonpaladin_a_01_gnf.m2", - value = "helm_plate_dungeonpaladin_a_01_gnf.m2", + fileId = "254134", + text = "helm_mail_pvphunter_b_02_orf.m2", + value = "helm_mail_pvphunter_b_02_orf.m2", }, { - fileId = "140542", - text = "helm_plate_dungeonpaladin_a_01_gnm.m2", - value = "helm_plate_dungeonpaladin_a_01_gnm.m2", + fileId = "254135", + text = "helm_mail_pvphunter_b_02_orm.m2", + value = "helm_mail_pvphunter_b_02_orm.m2", }, { - fileId = "140543", - text = "helm_plate_dungeonpaladin_a_01_gof.m2", - value = "helm_plate_dungeonpaladin_a_01_gof.m2", + fileId = "254136", + text = "helm_mail_pvphunter_b_02_scf.m2", + value = "helm_mail_pvphunter_b_02_scf.m2", }, { - fileId = "140544", - text = "helm_plate_dungeonpaladin_a_01_gom.m2", - value = "helm_plate_dungeonpaladin_a_01_gom.m2", + fileId = "254137", + text = "helm_mail_pvphunter_b_02_scm.m2", + value = "helm_mail_pvphunter_b_02_scm.m2", }, { - fileId = "140545", - text = "helm_plate_dungeonpaladin_a_01_huf.m2", - value = "helm_plate_dungeonpaladin_a_01_huf.m2", + fileId = "254138", + text = "helm_mail_pvphunter_b_02_taf.m2", + value = "helm_mail_pvphunter_b_02_taf.m2", }, { - fileId = "140546", - text = "helm_plate_dungeonpaladin_a_01_hum.m2", - value = "helm_plate_dungeonpaladin_a_01_hum.m2", + fileId = "254139", + text = "helm_mail_pvphunter_b_02_tam.m2", + value = "helm_mail_pvphunter_b_02_tam.m2", }, { - fileId = "140547", - text = "helm_plate_dungeonpaladin_a_01_nif.m2", - value = "helm_plate_dungeonpaladin_a_01_nif.m2", + fileId = "254140", + text = "helm_mail_pvphunter_b_02_trf.m2", + value = "helm_mail_pvphunter_b_02_trf.m2", }, { - fileId = "140548", - text = "helm_plate_dungeonpaladin_a_01_nim.m2", - value = "helm_plate_dungeonpaladin_a_01_nim.m2", + fileId = "254141", + text = "helm_mail_pvphunter_b_02_trm.m2", + value = "helm_mail_pvphunter_b_02_trm.m2", }, { - fileId = "140549", - text = "helm_plate_dungeonpaladin_a_01_orf.m2", - value = "helm_plate_dungeonpaladin_a_01_orf.m2", + fileId = "454160", + text = "helm_mail_pvphunter_b_02_wof.m2", + value = "helm_mail_pvphunter_b_02_wof.m2", }, { - fileId = "140550", - text = "helm_plate_dungeonpaladin_a_01_orm.m2", - value = "helm_plate_dungeonpaladin_a_01_orm.m2", + fileId = "430026", + text = "helm_mail_pvphunter_b_02_wom.m2", + value = "helm_mail_pvphunter_b_02_wom.m2", }, { - fileId = "140551", - text = "helm_plate_dungeonpaladin_a_01_scf.m2", - value = "helm_plate_dungeonpaladin_a_01_scf.m2", + fileId = "307178", + text = "helm_mail_pvphunter_b_03_bef.m2", + value = "helm_mail_pvphunter_b_03_bef.m2", }, { - fileId = "140552", - text = "helm_plate_dungeonpaladin_a_01_scm.m2", - value = "helm_plate_dungeonpaladin_a_01_scm.m2", + fileId = "307179", + text = "helm_mail_pvphunter_b_03_bem.m2", + value = "helm_mail_pvphunter_b_03_bem.m2", }, { - fileId = "140553", - text = "helm_plate_dungeonpaladin_a_01_taf.m2", - value = "helm_plate_dungeonpaladin_a_01_taf.m2", + fileId = "307180", + text = "helm_mail_pvphunter_b_03_drf.m2", + value = "helm_mail_pvphunter_b_03_drf.m2", }, { - fileId = "140554", - text = "helm_plate_dungeonpaladin_a_01_tam.m2", - value = "helm_plate_dungeonpaladin_a_01_tam.m2", + fileId = "307181", + text = "helm_mail_pvphunter_b_03_drm.m2", + value = "helm_mail_pvphunter_b_03_drm.m2", }, { - fileId = "140555", - text = "helm_plate_dungeonpaladin_a_01_trf.m2", - value = "helm_plate_dungeonpaladin_a_01_trf.m2", + fileId = "307182", + text = "helm_mail_pvphunter_b_03_dwf.m2", + value = "helm_mail_pvphunter_b_03_dwf.m2", }, { - fileId = "140556", - text = "helm_plate_dungeonpaladin_a_01_trm.m2", - value = "helm_plate_dungeonpaladin_a_01_trm.m2", + fileId = "307183", + text = "helm_mail_pvphunter_b_03_dwm.m2", + value = "helm_mail_pvphunter_b_03_dwm.m2", }, { - fileId = "140560", - text = "helm_plate_dungeonpaladin_b_01_bef.m2", - value = "helm_plate_dungeonpaladin_b_01_bef.m2", + fileId = "307184", + text = "helm_mail_pvphunter_b_03_gnf.m2", + value = "helm_mail_pvphunter_b_03_gnf.m2", }, { - fileId = "140561", - text = "helm_plate_dungeonpaladin_b_01_bem.m2", - value = "helm_plate_dungeonpaladin_b_01_bem.m2", + fileId = "307185", + text = "helm_mail_pvphunter_b_03_gnm.m2", + value = "helm_mail_pvphunter_b_03_gnm.m2", }, { - fileId = "140562", - text = "helm_plate_dungeonpaladin_b_01_drf.m2", - value = "helm_plate_dungeonpaladin_b_01_drf.m2", + fileId = "307186", + text = "helm_mail_pvphunter_b_03_gof.m2", + value = "helm_mail_pvphunter_b_03_gof.m2", }, { - fileId = "140563", - text = "helm_plate_dungeonpaladin_b_01_drm.m2", - value = "helm_plate_dungeonpaladin_b_01_drm.m2", + fileId = "307187", + text = "helm_mail_pvphunter_b_03_gom.m2", + value = "helm_mail_pvphunter_b_03_gom.m2", }, { - fileId = "140564", - text = "helm_plate_dungeonpaladin_b_01_dwf.m2", - value = "helm_plate_dungeonpaladin_b_01_dwf.m2", + fileId = "307188", + text = "helm_mail_pvphunter_b_03_huf.m2", + value = "helm_mail_pvphunter_b_03_huf.m2", }, { - fileId = "140565", - text = "helm_plate_dungeonpaladin_b_01_dwm.m2", - value = "helm_plate_dungeonpaladin_b_01_dwm.m2", + fileId = "307189", + text = "helm_mail_pvphunter_b_03_hum.m2", + value = "helm_mail_pvphunter_b_03_hum.m2", }, { - fileId = "140566", - text = "helm_plate_dungeonpaladin_b_01_gnf.m2", - value = "helm_plate_dungeonpaladin_b_01_gnf.m2", + fileId = "307190", + text = "helm_mail_pvphunter_b_03_nif.m2", + value = "helm_mail_pvphunter_b_03_nif.m2", }, { - fileId = "140567", - text = "helm_plate_dungeonpaladin_b_01_gnm.m2", - value = "helm_plate_dungeonpaladin_b_01_gnm.m2", + fileId = "307191", + text = "helm_mail_pvphunter_b_03_nim.m2", + value = "helm_mail_pvphunter_b_03_nim.m2", }, { - fileId = "140568", - text = "helm_plate_dungeonpaladin_b_01_gof.m2", - value = "helm_plate_dungeonpaladin_b_01_gof.m2", + fileId = "307192", + text = "helm_mail_pvphunter_b_03_orf.m2", + value = "helm_mail_pvphunter_b_03_orf.m2", }, { - fileId = "140569", - text = "helm_plate_dungeonpaladin_b_01_gom.m2", - value = "helm_plate_dungeonpaladin_b_01_gom.m2", + fileId = "307193", + text = "helm_mail_pvphunter_b_03_orm.m2", + value = "helm_mail_pvphunter_b_03_orm.m2", }, { - fileId = "140570", - text = "helm_plate_dungeonpaladin_b_01_huf.m2", - value = "helm_plate_dungeonpaladin_b_01_huf.m2", + fileId = "307194", + text = "helm_mail_pvphunter_b_03_scf.m2", + value = "helm_mail_pvphunter_b_03_scf.m2", }, { - fileId = "140571", - text = "helm_plate_dungeonpaladin_b_01_hum.m2", - value = "helm_plate_dungeonpaladin_b_01_hum.m2", + fileId = "307195", + text = "helm_mail_pvphunter_b_03_scm.m2", + value = "helm_mail_pvphunter_b_03_scm.m2", }, { - fileId = "140572", - text = "helm_plate_dungeonpaladin_b_01_nif.m2", - value = "helm_plate_dungeonpaladin_b_01_nif.m2", + fileId = "307196", + text = "helm_mail_pvphunter_b_03_taf.m2", + value = "helm_mail_pvphunter_b_03_taf.m2", }, { - fileId = "140573", - text = "helm_plate_dungeonpaladin_b_01_nim.m2", - value = "helm_plate_dungeonpaladin_b_01_nim.m2", + fileId = "307197", + text = "helm_mail_pvphunter_b_03_tam.m2", + value = "helm_mail_pvphunter_b_03_tam.m2", }, { - fileId = "140574", - text = "helm_plate_dungeonpaladin_b_01_orf.m2", - value = "helm_plate_dungeonpaladin_b_01_orf.m2", + fileId = "307198", + text = "helm_mail_pvphunter_b_03_trf.m2", + value = "helm_mail_pvphunter_b_03_trf.m2", }, { - fileId = "140575", - text = "helm_plate_dungeonpaladin_b_01_orm.m2", - value = "helm_plate_dungeonpaladin_b_01_orm.m2", + fileId = "307199", + text = "helm_mail_pvphunter_b_03_trm.m2", + value = "helm_mail_pvphunter_b_03_trm.m2", }, { - fileId = "140576", - text = "helm_plate_dungeonpaladin_b_01_scf.m2", - value = "helm_plate_dungeonpaladin_b_01_scf.m2", + fileId = "454161", + text = "helm_mail_pvphunter_b_03_wof.m2", + value = "helm_mail_pvphunter_b_03_wof.m2", }, { - fileId = "140577", - text = "helm_plate_dungeonpaladin_b_01_scm.m2", - value = "helm_plate_dungeonpaladin_b_01_scm.m2", + fileId = "430027", + text = "helm_mail_pvphunter_b_03_wom.m2", + value = "helm_mail_pvphunter_b_03_wom.m2", }, { - fileId = "140578", - text = "helm_plate_dungeonpaladin_b_01_taf.m2", - value = "helm_plate_dungeonpaladin_b_01_taf.m2", + fileId = "344183", + text = "helm_mail_pvphunter_b_04_bef.m2", + value = "helm_mail_pvphunter_b_04_bef.m2", }, { - fileId = "140579", - text = "helm_plate_dungeonpaladin_b_01_tam.m2", - value = "helm_plate_dungeonpaladin_b_01_tam.m2", + fileId = "344184", + text = "helm_mail_pvphunter_b_04_bem.m2", + value = "helm_mail_pvphunter_b_04_bem.m2", }, { - fileId = "140580", - text = "helm_plate_dungeonpaladin_b_01_trf.m2", - value = "helm_plate_dungeonpaladin_b_01_trf.m2", + fileId = "344185", + text = "helm_mail_pvphunter_b_04_drf.m2", + value = "helm_mail_pvphunter_b_04_drf.m2", }, { - fileId = "140581", - text = "helm_plate_dungeonpaladin_b_01_trm.m2", - value = "helm_plate_dungeonpaladin_b_01_trm.m2", + fileId = "344186", + text = "helm_mail_pvphunter_b_04_drm.m2", + value = "helm_mail_pvphunter_b_04_drm.m2", }, { - fileId = "140587", - text = "helm_plate_dungeonplate_c_01_bef.m2", - value = "helm_plate_dungeonplate_c_01_bef.m2", + fileId = "344187", + text = "helm_mail_pvphunter_b_04_dwf.m2", + value = "helm_mail_pvphunter_b_04_dwf.m2", }, { - fileId = "140588", - text = "helm_plate_dungeonplate_c_01_bem.m2", - value = "helm_plate_dungeonplate_c_01_bem.m2", + fileId = "344188", + text = "helm_mail_pvphunter_b_04_dwm.m2", + value = "helm_mail_pvphunter_b_04_dwm.m2", }, { - fileId = "140589", - text = "helm_plate_dungeonplate_c_01_drf.m2", - value = "helm_plate_dungeonplate_c_01_drf.m2", + fileId = "344189", + text = "helm_mail_pvphunter_b_04_gnf.m2", + value = "helm_mail_pvphunter_b_04_gnf.m2", }, { - fileId = "140590", - text = "helm_plate_dungeonplate_c_01_drm.m2", - value = "helm_plate_dungeonplate_c_01_drm.m2", + fileId = "344190", + text = "helm_mail_pvphunter_b_04_gnm.m2", + value = "helm_mail_pvphunter_b_04_gnm.m2", }, { - fileId = "140591", - text = "helm_plate_dungeonplate_c_01_dwf.m2", - value = "helm_plate_dungeonplate_c_01_dwf.m2", + fileId = "344191", + text = "helm_mail_pvphunter_b_04_gof.m2", + value = "helm_mail_pvphunter_b_04_gof.m2", }, { - fileId = "140592", - text = "helm_plate_dungeonplate_c_01_dwm.m2", - value = "helm_plate_dungeonplate_c_01_dwm.m2", + fileId = "344192", + text = "helm_mail_pvphunter_b_04_gom.m2", + value = "helm_mail_pvphunter_b_04_gom.m2", }, { - fileId = "140593", - text = "helm_plate_dungeonplate_c_01_gnf.m2", - value = "helm_plate_dungeonplate_c_01_gnf.m2", + fileId = "344193", + text = "helm_mail_pvphunter_b_04_huf.m2", + value = "helm_mail_pvphunter_b_04_huf.m2", }, { - fileId = "140594", - text = "helm_plate_dungeonplate_c_01_gnm.m2", - value = "helm_plate_dungeonplate_c_01_gnm.m2", + fileId = "344194", + text = "helm_mail_pvphunter_b_04_hum.m2", + value = "helm_mail_pvphunter_b_04_hum.m2", }, { - fileId = "140595", - text = "helm_plate_dungeonplate_c_01_gof.m2", - value = "helm_plate_dungeonplate_c_01_gof.m2", + fileId = "344195", + text = "helm_mail_pvphunter_b_04_nif.m2", + value = "helm_mail_pvphunter_b_04_nif.m2", }, { - fileId = "140596", - text = "helm_plate_dungeonplate_c_01_gom.m2", - value = "helm_plate_dungeonplate_c_01_gom.m2", + fileId = "344196", + text = "helm_mail_pvphunter_b_04_nim.m2", + value = "helm_mail_pvphunter_b_04_nim.m2", }, { - fileId = "140597", - text = "helm_plate_dungeonplate_c_01_huf.m2", - value = "helm_plate_dungeonplate_c_01_huf.m2", + fileId = "344197", + text = "helm_mail_pvphunter_b_04_orf.m2", + value = "helm_mail_pvphunter_b_04_orf.m2", }, { - fileId = "140598", - text = "helm_plate_dungeonplate_c_01_hum.m2", - value = "helm_plate_dungeonplate_c_01_hum.m2", + fileId = "344198", + text = "helm_mail_pvphunter_b_04_orm.m2", + value = "helm_mail_pvphunter_b_04_orm.m2", }, { - fileId = "140599", - text = "helm_plate_dungeonplate_c_01_nif.m2", - value = "helm_plate_dungeonplate_c_01_nif.m2", + fileId = "344199", + text = "helm_mail_pvphunter_b_04_scf.m2", + value = "helm_mail_pvphunter_b_04_scf.m2", }, { - fileId = "140600", - text = "helm_plate_dungeonplate_c_01_nim.m2", - value = "helm_plate_dungeonplate_c_01_nim.m2", + fileId = "344200", + text = "helm_mail_pvphunter_b_04_scm.m2", + value = "helm_mail_pvphunter_b_04_scm.m2", }, { - fileId = "140601", - text = "helm_plate_dungeonplate_c_01_orf.m2", - value = "helm_plate_dungeonplate_c_01_orf.m2", + fileId = "344201", + text = "helm_mail_pvphunter_b_04_taf.m2", + value = "helm_mail_pvphunter_b_04_taf.m2", }, { - fileId = "140602", - text = "helm_plate_dungeonplate_c_01_orm.m2", - value = "helm_plate_dungeonplate_c_01_orm.m2", + fileId = "344202", + text = "helm_mail_pvphunter_b_04_tam.m2", + value = "helm_mail_pvphunter_b_04_tam.m2", }, { - fileId = "140603", - text = "helm_plate_dungeonplate_c_01_scf.m2", - value = "helm_plate_dungeonplate_c_01_scf.m2", + fileId = "344203", + text = "helm_mail_pvphunter_b_04_trf.m2", + value = "helm_mail_pvphunter_b_04_trf.m2", }, { - fileId = "140604", - text = "helm_plate_dungeonplate_c_01_scm.m2", - value = "helm_plate_dungeonplate_c_01_scm.m2", + fileId = "344204", + text = "helm_mail_pvphunter_b_04_trm.m2", + value = "helm_mail_pvphunter_b_04_trm.m2", }, { - fileId = "140605", - text = "helm_plate_dungeonplate_c_01_taf.m2", - value = "helm_plate_dungeonplate_c_01_taf.m2", + fileId = "454162", + text = "helm_mail_pvphunter_b_04_wof.m2", + value = "helm_mail_pvphunter_b_04_wof.m2", }, { - fileId = "140606", - text = "helm_plate_dungeonplate_c_01_tam.m2", - value = "helm_plate_dungeonplate_c_01_tam.m2", + fileId = "430028", + text = "helm_mail_pvphunter_b_04_wom.m2", + value = "helm_mail_pvphunter_b_04_wom.m2", }, { - fileId = "140607", - text = "helm_plate_dungeonplate_c_01_trf.m2", - value = "helm_plate_dungeonplate_c_01_trf.m2", + fileId = "463034", + text = "helm_mail_pvphunter_c_01_bef.m2", + value = "helm_mail_pvphunter_c_01_bef.m2", }, { - fileId = "140608", - text = "helm_plate_dungeonplate_c_01_trm.m2", - value = "helm_plate_dungeonplate_c_01_trm.m2", + fileId = "463035", + text = "helm_mail_pvphunter_c_01_bem.m2", + value = "helm_mail_pvphunter_c_01_bem.m2", }, { - fileId = "343346", - text = "helm_plate_dungeonplate_c_02_bef.m2", - value = "helm_plate_dungeonplate_c_02_bef.m2", + fileId = "463038", + text = "helm_mail_pvphunter_c_01_drf.m2", + value = "helm_mail_pvphunter_c_01_drf.m2", }, { - fileId = "343347", - text = "helm_plate_dungeonplate_c_02_bem.m2", - value = "helm_plate_dungeonplate_c_02_bem.m2", + fileId = "463039", + text = "helm_mail_pvphunter_c_01_drm.m2", + value = "helm_mail_pvphunter_c_01_drm.m2", }, { - fileId = "343348", - text = "helm_plate_dungeonplate_c_02_drf.m2", - value = "helm_plate_dungeonplate_c_02_drf.m2", + fileId = "463240", + text = "helm_mail_pvphunter_c_01_dwf.m2", + value = "helm_mail_pvphunter_c_01_dwf.m2", }, { - fileId = "343349", - text = "helm_plate_dungeonplate_c_02_drm.m2", - value = "helm_plate_dungeonplate_c_02_drm.m2", + fileId = "463040", + text = "helm_mail_pvphunter_c_01_dwm.m2", + value = "helm_mail_pvphunter_c_01_dwm.m2", }, { - fileId = "343350", - text = "helm_plate_dungeonplate_c_02_dwf.m2", - value = "helm_plate_dungeonplate_c_02_dwf.m2", + fileId = "463041", + text = "helm_mail_pvphunter_c_01_gnf.m2", + value = "helm_mail_pvphunter_c_01_gnf.m2", }, { - fileId = "343351", - text = "helm_plate_dungeonplate_c_02_dwm.m2", - value = "helm_plate_dungeonplate_c_02_dwm.m2", + fileId = "463241", + text = "helm_mail_pvphunter_c_01_gnm.m2", + value = "helm_mail_pvphunter_c_01_gnm.m2", }, { - fileId = "343352", - text = "helm_plate_dungeonplate_c_02_gnf.m2", - value = "helm_plate_dungeonplate_c_02_gnf.m2", + fileId = "463042", + text = "helm_mail_pvphunter_c_01_gof.m2", + value = "helm_mail_pvphunter_c_01_gof.m2", }, { - fileId = "343353", - text = "helm_plate_dungeonplate_c_02_gnm.m2", - value = "helm_plate_dungeonplate_c_02_gnm.m2", + fileId = "463043", + text = "helm_mail_pvphunter_c_01_gom.m2", + value = "helm_mail_pvphunter_c_01_gom.m2", }, { - fileId = "343354", - text = "helm_plate_dungeonplate_c_02_gof.m2", - value = "helm_plate_dungeonplate_c_02_gof.m2", + fileId = "463045", + text = "helm_mail_pvphunter_c_01_huf.m2", + value = "helm_mail_pvphunter_c_01_huf.m2", }, { - fileId = "343355", - text = "helm_plate_dungeonplate_c_02_gom.m2", - value = "helm_plate_dungeonplate_c_02_gom.m2", + fileId = "462665", + text = "helm_mail_pvphunter_c_01_hum.m2", + value = "helm_mail_pvphunter_c_01_hum.m2", }, { - fileId = "343356", - text = "helm_plate_dungeonplate_c_02_huf.m2", - value = "helm_plate_dungeonplate_c_02_huf.m2", + fileId = "463046", + text = "helm_mail_pvphunter_c_01_nif.m2", + value = "helm_mail_pvphunter_c_01_nif.m2", }, { - fileId = "343357", - text = "helm_plate_dungeonplate_c_02_hum.m2", - value = "helm_plate_dungeonplate_c_02_hum.m2", + fileId = "463047", + text = "helm_mail_pvphunter_c_01_nim.m2", + value = "helm_mail_pvphunter_c_01_nim.m2", }, { - fileId = "343358", - text = "helm_plate_dungeonplate_c_02_nif.m2", - value = "helm_plate_dungeonplate_c_02_nif.m2", + fileId = "463048", + text = "helm_mail_pvphunter_c_01_orf.m2", + value = "helm_mail_pvphunter_c_01_orf.m2", }, { - fileId = "343359", - text = "helm_plate_dungeonplate_c_02_nim.m2", - value = "helm_plate_dungeonplate_c_02_nim.m2", + fileId = "463049", + text = "helm_mail_pvphunter_c_01_orm.m2", + value = "helm_mail_pvphunter_c_01_orm.m2", }, { - fileId = "343360", - text = "helm_plate_dungeonplate_c_02_orf.m2", - value = "helm_plate_dungeonplate_c_02_orf.m2", + fileId = "463051", + text = "helm_mail_pvphunter_c_01_scf.m2", + value = "helm_mail_pvphunter_c_01_scf.m2", }, { - fileId = "343361", - text = "helm_plate_dungeonplate_c_02_orm.m2", - value = "helm_plate_dungeonplate_c_02_orm.m2", + fileId = "463052", + text = "helm_mail_pvphunter_c_01_scm.m2", + value = "helm_mail_pvphunter_c_01_scm.m2", }, { - fileId = "343362", - text = "helm_plate_dungeonplate_c_02_scf.m2", - value = "helm_plate_dungeonplate_c_02_scf.m2", + fileId = "463053", + text = "helm_mail_pvphunter_c_01_taf.m2", + value = "helm_mail_pvphunter_c_01_taf.m2", }, { - fileId = "343363", - text = "helm_plate_dungeonplate_c_02_scm.m2", - value = "helm_plate_dungeonplate_c_02_scm.m2", + fileId = "463054", + text = "helm_mail_pvphunter_c_01_tam.m2", + value = "helm_mail_pvphunter_c_01_tam.m2", }, { - fileId = "343364", - text = "helm_plate_dungeonplate_c_02_taf.m2", - value = "helm_plate_dungeonplate_c_02_taf.m2", + fileId = "463055", + text = "helm_mail_pvphunter_c_01_trf.m2", + value = "helm_mail_pvphunter_c_01_trf.m2", }, { - fileId = "343643", - text = "helm_plate_dungeonplate_c_02_tam.m2", - value = "helm_plate_dungeonplate_c_02_tam.m2", + fileId = "463056", + text = "helm_mail_pvphunter_c_01_trm.m2", + value = "helm_mail_pvphunter_c_01_trm.m2", }, { - fileId = "343644", - text = "helm_plate_dungeonplate_c_02_trf.m2", - value = "helm_plate_dungeonplate_c_02_trf.m2", + fileId = "463057", + text = "helm_mail_pvphunter_c_01_wof.m2", + value = "helm_mail_pvphunter_c_01_wof.m2", }, { - fileId = "343645", - text = "helm_plate_dungeonplate_c_02_trm.m2", - value = "helm_plate_dungeonplate_c_02_trm.m2", + fileId = "463058", + text = "helm_mail_pvphunter_c_01_wom.m2", + value = "helm_mail_pvphunter_c_01_wom.m2", }, { - fileId = "140612", - text = "helm_plate_dungeonwarrior_a_01_bef.m2", - value = "helm_plate_dungeonwarrior_a_01_bef.m2", + fileId = "469034", + text = "helm_mail_pvphunter_c_02_bef.m2", + value = "helm_mail_pvphunter_c_02_bef.m2", }, { - fileId = "140613", - text = "helm_plate_dungeonwarrior_a_01_bem.m2", - value = "helm_plate_dungeonwarrior_a_01_bem.m2", + fileId = "469035", + text = "helm_mail_pvphunter_c_02_bem.m2", + value = "helm_mail_pvphunter_c_02_bem.m2", }, { - fileId = "140614", - text = "helm_plate_dungeonwarrior_a_01_drf.m2", - value = "helm_plate_dungeonwarrior_a_01_drf.m2", + fileId = "469036", + text = "helm_mail_pvphunter_c_02_drf.m2", + value = "helm_mail_pvphunter_c_02_drf.m2", }, { - fileId = "140615", - text = "helm_plate_dungeonwarrior_a_01_drm.m2", - value = "helm_plate_dungeonwarrior_a_01_drm.m2", + fileId = "469037", + text = "helm_mail_pvphunter_c_02_drm.m2", + value = "helm_mail_pvphunter_c_02_drm.m2", }, { - fileId = "140616", - text = "helm_plate_dungeonwarrior_a_01_dwf.m2", - value = "helm_plate_dungeonwarrior_a_01_dwf.m2", + fileId = "469038", + text = "helm_mail_pvphunter_c_02_dwf.m2", + value = "helm_mail_pvphunter_c_02_dwf.m2", }, { - fileId = "140617", - text = "helm_plate_dungeonwarrior_a_01_dwm.m2", - value = "helm_plate_dungeonwarrior_a_01_dwm.m2", + fileId = "469039", + text = "helm_mail_pvphunter_c_02_dwm.m2", + value = "helm_mail_pvphunter_c_02_dwm.m2", }, { - fileId = "140618", - text = "helm_plate_dungeonwarrior_a_01_gnf.m2", - value = "helm_plate_dungeonwarrior_a_01_gnf.m2", + fileId = "469040", + text = "helm_mail_pvphunter_c_02_gnf.m2", + value = "helm_mail_pvphunter_c_02_gnf.m2", }, { - fileId = "140619", - text = "helm_plate_dungeonwarrior_a_01_gnm.m2", - value = "helm_plate_dungeonwarrior_a_01_gnm.m2", + fileId = "469041", + text = "helm_mail_pvphunter_c_02_gnm.m2", + value = "helm_mail_pvphunter_c_02_gnm.m2", }, { - fileId = "140620", - text = "helm_plate_dungeonwarrior_a_01_gof.m2", - value = "helm_plate_dungeonwarrior_a_01_gof.m2", + fileId = "469042", + text = "helm_mail_pvphunter_c_02_gof.m2", + value = "helm_mail_pvphunter_c_02_gof.m2", }, { - fileId = "140621", - text = "helm_plate_dungeonwarrior_a_01_gom.m2", - value = "helm_plate_dungeonwarrior_a_01_gom.m2", + fileId = "469043", + text = "helm_mail_pvphunter_c_02_gom.m2", + value = "helm_mail_pvphunter_c_02_gom.m2", }, { - fileId = "140622", - text = "helm_plate_dungeonwarrior_a_01_huf.m2", - value = "helm_plate_dungeonwarrior_a_01_huf.m2", + fileId = "469044", + text = "helm_mail_pvphunter_c_02_huf.m2", + value = "helm_mail_pvphunter_c_02_huf.m2", }, { - fileId = "140623", - text = "helm_plate_dungeonwarrior_a_01_hum.m2", - value = "helm_plate_dungeonwarrior_a_01_hum.m2", + fileId = "469045", + text = "helm_mail_pvphunter_c_02_hum.m2", + value = "helm_mail_pvphunter_c_02_hum.m2", }, { - fileId = "140624", - text = "helm_plate_dungeonwarrior_a_01_nif.m2", - value = "helm_plate_dungeonwarrior_a_01_nif.m2", + fileId = "469046", + text = "helm_mail_pvphunter_c_02_nif.m2", + value = "helm_mail_pvphunter_c_02_nif.m2", }, { - fileId = "140625", - text = "helm_plate_dungeonwarrior_a_01_nim.m2", - value = "helm_plate_dungeonwarrior_a_01_nim.m2", + fileId = "469047", + text = "helm_mail_pvphunter_c_02_nim.m2", + value = "helm_mail_pvphunter_c_02_nim.m2", }, { - fileId = "140626", - text = "helm_plate_dungeonwarrior_a_01_orf.m2", - value = "helm_plate_dungeonwarrior_a_01_orf.m2", + fileId = "469048", + text = "helm_mail_pvphunter_c_02_orf.m2", + value = "helm_mail_pvphunter_c_02_orf.m2", }, { - fileId = "140627", - text = "helm_plate_dungeonwarrior_a_01_orm.m2", - value = "helm_plate_dungeonwarrior_a_01_orm.m2", + fileId = "469049", + text = "helm_mail_pvphunter_c_02_orm.m2", + value = "helm_mail_pvphunter_c_02_orm.m2", }, { - fileId = "140628", - text = "helm_plate_dungeonwarrior_a_01_scf.m2", - value = "helm_plate_dungeonwarrior_a_01_scf.m2", + fileId = "469050", + text = "helm_mail_pvphunter_c_02_scf.m2", + value = "helm_mail_pvphunter_c_02_scf.m2", }, { - fileId = "140629", - text = "helm_plate_dungeonwarrior_a_01_scm.m2", - value = "helm_plate_dungeonwarrior_a_01_scm.m2", + fileId = "469051", + text = "helm_mail_pvphunter_c_02_scm.m2", + value = "helm_mail_pvphunter_c_02_scm.m2", }, { - fileId = "140630", - text = "helm_plate_dungeonwarrior_a_01_taf.m2", - value = "helm_plate_dungeonwarrior_a_01_taf.m2", + fileId = "469052", + text = "helm_mail_pvphunter_c_02_taf.m2", + value = "helm_mail_pvphunter_c_02_taf.m2", }, { - fileId = "140631", - text = "helm_plate_dungeonwarrior_a_01_tam.m2", - value = "helm_plate_dungeonwarrior_a_01_tam.m2", + fileId = "469053", + text = "helm_mail_pvphunter_c_02_tam.m2", + value = "helm_mail_pvphunter_c_02_tam.m2", }, { - fileId = "140632", - text = "helm_plate_dungeonwarrior_a_01_trf.m2", - value = "helm_plate_dungeonwarrior_a_01_trf.m2", + fileId = "469054", + text = "helm_mail_pvphunter_c_02_trf.m2", + value = "helm_mail_pvphunter_c_02_trf.m2", }, { - fileId = "140633", - text = "helm_plate_dungeonwarrior_a_01_trm.m2", - value = "helm_plate_dungeonwarrior_a_01_trm.m2", + fileId = "469055", + text = "helm_mail_pvphunter_c_02_trm.m2", + value = "helm_mail_pvphunter_c_02_trm.m2", }, { - fileId = "140639", - text = "helm_plate_dungeonwarrior_b_01_bef.m2", - value = "helm_plate_dungeonwarrior_b_01_bef.m2", + fileId = "469056", + text = "helm_mail_pvphunter_c_02_wof.m2", + value = "helm_mail_pvphunter_c_02_wof.m2", }, { - fileId = "140640", - text = "helm_plate_dungeonwarrior_b_01_bem.m2", - value = "helm_plate_dungeonwarrior_b_01_bem.m2", + fileId = "469057", + text = "helm_mail_pvphunter_c_02_wom.m2", + value = "helm_mail_pvphunter_c_02_wom.m2", }, { - fileId = "140641", - text = "helm_plate_dungeonwarrior_b_01_drf.m2", - value = "helm_plate_dungeonwarrior_b_01_drf.m2", + fileId = "531788", + text = "helm_mail_pvphunter_d_01_bef.m2", + value = "helm_mail_pvphunter_d_01_bef.m2", }, { - fileId = "140642", - text = "helm_plate_dungeonwarrior_b_01_drm.m2", - value = "helm_plate_dungeonwarrior_b_01_drm.m2", + fileId = "531790", + text = "helm_mail_pvphunter_d_01_bem.m2", + value = "helm_mail_pvphunter_d_01_bem.m2", }, { - fileId = "140643", - text = "helm_plate_dungeonwarrior_b_01_dwf.m2", - value = "helm_plate_dungeonwarrior_b_01_dwf.m2", + fileId = "531792", + text = "helm_mail_pvphunter_d_01_drf.m2", + value = "helm_mail_pvphunter_d_01_drf.m2", }, { - fileId = "140644", - text = "helm_plate_dungeonwarrior_b_01_dwm.m2", - value = "helm_plate_dungeonwarrior_b_01_dwm.m2", + fileId = "531794", + text = "helm_mail_pvphunter_d_01_drm.m2", + value = "helm_mail_pvphunter_d_01_drm.m2", }, { - fileId = "140645", - text = "helm_plate_dungeonwarrior_b_01_gnf.m2", - value = "helm_plate_dungeonwarrior_b_01_gnf.m2", + fileId = "531796", + text = "helm_mail_pvphunter_d_01_dwf.m2", + value = "helm_mail_pvphunter_d_01_dwf.m2", }, { - fileId = "140646", - text = "helm_plate_dungeonwarrior_b_01_gnm.m2", - value = "helm_plate_dungeonwarrior_b_01_gnm.m2", + fileId = "531798", + text = "helm_mail_pvphunter_d_01_dwm.m2", + value = "helm_mail_pvphunter_d_01_dwm.m2", }, { - fileId = "140647", - text = "helm_plate_dungeonwarrior_b_01_gof.m2", - value = "helm_plate_dungeonwarrior_b_01_gof.m2", + fileId = "531800", + text = "helm_mail_pvphunter_d_01_gnf.m2", + value = "helm_mail_pvphunter_d_01_gnf.m2", }, { - fileId = "140648", - text = "helm_plate_dungeonwarrior_b_01_gom.m2", - value = "helm_plate_dungeonwarrior_b_01_gom.m2", + fileId = "531802", + text = "helm_mail_pvphunter_d_01_gnm.m2", + value = "helm_mail_pvphunter_d_01_gnm.m2", }, { - fileId = "140649", - text = "helm_plate_dungeonwarrior_b_01_huf.m2", - value = "helm_plate_dungeonwarrior_b_01_huf.m2", + fileId = "531804", + text = "helm_mail_pvphunter_d_01_gof.m2", + value = "helm_mail_pvphunter_d_01_gof.m2", }, { - fileId = "140650", - text = "helm_plate_dungeonwarrior_b_01_hum.m2", - value = "helm_plate_dungeonwarrior_b_01_hum.m2", + fileId = "531806", + text = "helm_mail_pvphunter_d_01_gom.m2", + value = "helm_mail_pvphunter_d_01_gom.m2", }, { - fileId = "140651", - text = "helm_plate_dungeonwarrior_b_01_nif.m2", - value = "helm_plate_dungeonwarrior_b_01_nif.m2", + fileId = "531808", + text = "helm_mail_pvphunter_d_01_huf.m2", + value = "helm_mail_pvphunter_d_01_huf.m2", }, { - fileId = "140652", - text = "helm_plate_dungeonwarrior_b_01_nim.m2", - value = "helm_plate_dungeonwarrior_b_01_nim.m2", + fileId = "531810", + text = "helm_mail_pvphunter_d_01_hum.m2", + value = "helm_mail_pvphunter_d_01_hum.m2", }, { - fileId = "140653", - text = "helm_plate_dungeonwarrior_b_01_orf.m2", - value = "helm_plate_dungeonwarrior_b_01_orf.m2", + fileId = "531812", + text = "helm_mail_pvphunter_d_01_nif.m2", + value = "helm_mail_pvphunter_d_01_nif.m2", }, { - fileId = "140654", - text = "helm_plate_dungeonwarrior_b_01_orm.m2", - value = "helm_plate_dungeonwarrior_b_01_orm.m2", + fileId = "531814", + text = "helm_mail_pvphunter_d_01_nim.m2", + value = "helm_mail_pvphunter_d_01_nim.m2", }, { - fileId = "140655", - text = "helm_plate_dungeonwarrior_b_01_scf.m2", - value = "helm_plate_dungeonwarrior_b_01_scf.m2", + fileId = "531816", + text = "helm_mail_pvphunter_d_01_orf.m2", + value = "helm_mail_pvphunter_d_01_orf.m2", }, { - fileId = "140656", - text = "helm_plate_dungeonwarrior_b_01_scm.m2", - value = "helm_plate_dungeonwarrior_b_01_scm.m2", + fileId = "531818", + text = "helm_mail_pvphunter_d_01_orm.m2", + value = "helm_mail_pvphunter_d_01_orm.m2", }, { - fileId = "140657", - text = "helm_plate_dungeonwarrior_b_01_taf.m2", - value = "helm_plate_dungeonwarrior_b_01_taf.m2", + fileId = "531820", + text = "helm_mail_pvphunter_d_01_scf.m2", + value = "helm_mail_pvphunter_d_01_scf.m2", }, { - fileId = "140658", - text = "helm_plate_dungeonwarrior_b_01_tam.m2", - value = "helm_plate_dungeonwarrior_b_01_tam.m2", + fileId = "531822", + text = "helm_mail_pvphunter_d_01_scm.m2", + value = "helm_mail_pvphunter_d_01_scm.m2", }, { - fileId = "140659", - text = "helm_plate_dungeonwarrior_b_01_trf.m2", - value = "helm_plate_dungeonwarrior_b_01_trf.m2", + fileId = "531824", + text = "helm_mail_pvphunter_d_01_taf.m2", + value = "helm_mail_pvphunter_d_01_taf.m2", }, { - fileId = "140660", - text = "helm_plate_dungeonwarrior_b_01_trm.m2", - value = "helm_plate_dungeonwarrior_b_01_trm.m2", + fileId = "531826", + text = "helm_mail_pvphunter_d_01_tam.m2", + value = "helm_mail_pvphunter_d_01_tam.m2", }, { - fileId = "140666", - text = "helm_plate_headless_d_01_bef.m2", - value = "helm_plate_headless_d_01_bef.m2", + fileId = "531828", + text = "helm_mail_pvphunter_d_01_trf.m2", + value = "helm_mail_pvphunter_d_01_trf.m2", }, { - fileId = "140667", - text = "helm_plate_headless_d_01_bem.m2", - value = "helm_plate_headless_d_01_bem.m2", + fileId = "531830", + text = "helm_mail_pvphunter_d_01_trm.m2", + value = "helm_mail_pvphunter_d_01_trm.m2", }, { - fileId = "140668", - text = "helm_plate_headless_d_01_drf.m2", - value = "helm_plate_headless_d_01_drf.m2", + fileId = "531832", + text = "helm_mail_pvphunter_d_01_wof.m2", + value = "helm_mail_pvphunter_d_01_wof.m2", }, { - fileId = "140669", - text = "helm_plate_headless_d_01_drm.m2", - value = "helm_plate_headless_d_01_drm.m2", + fileId = "531834", + text = "helm_mail_pvphunter_d_01_wom.m2", + value = "helm_mail_pvphunter_d_01_wom.m2", }, { - fileId = "140670", - text = "helm_plate_headless_d_01_dwf.m2", - value = "helm_plate_headless_d_01_dwf.m2", + fileId = "238000", + text = "helm_mail_pvpshaman_b_01_bef.m2", + value = "helm_mail_pvpshaman_b_01_bef.m2", }, { - fileId = "140671", - text = "helm_plate_headless_d_01_dwm.m2", - value = "helm_plate_headless_d_01_dwm.m2", + fileId = "238001", + text = "helm_mail_pvpshaman_b_01_bem.m2", + value = "helm_mail_pvpshaman_b_01_bem.m2", }, { - fileId = "140672", - text = "helm_plate_headless_d_01_gnf.m2", - value = "helm_plate_headless_d_01_gnf.m2", + fileId = "238002", + text = "helm_mail_pvpshaman_b_01_drf.m2", + value = "helm_mail_pvpshaman_b_01_drf.m2", }, { - fileId = "140673", - text = "helm_plate_headless_d_01_gnm.m2", - value = "helm_plate_headless_d_01_gnm.m2", + fileId = "238003", + text = "helm_mail_pvpshaman_b_01_drm.m2", + value = "helm_mail_pvpshaman_b_01_drm.m2", }, { - fileId = "140674", - text = "helm_plate_headless_d_01_gof.m2", - value = "helm_plate_headless_d_01_gof.m2", + fileId = "238004", + text = "helm_mail_pvpshaman_b_01_dwf.m2", + value = "helm_mail_pvpshaman_b_01_dwf.m2", }, { - fileId = "140675", - text = "helm_plate_headless_d_01_gom.m2", - value = "helm_plate_headless_d_01_gom.m2", + fileId = "238005", + text = "helm_mail_pvpshaman_b_01_dwm.m2", + value = "helm_mail_pvpshaman_b_01_dwm.m2", }, { - fileId = "140676", - text = "helm_plate_headless_d_01_huf.m2", - value = "helm_plate_headless_d_01_huf.m2", + fileId = "238006", + text = "helm_mail_pvpshaman_b_01_gnf.m2", + value = "helm_mail_pvpshaman_b_01_gnf.m2", }, { - fileId = "140677", - text = "helm_plate_headless_d_01_hum.m2", - value = "helm_plate_headless_d_01_hum.m2", + fileId = "238007", + text = "helm_mail_pvpshaman_b_01_gnm.m2", + value = "helm_mail_pvpshaman_b_01_gnm.m2", }, { - fileId = "140678", - text = "helm_plate_headless_d_01_nif.m2", - value = "helm_plate_headless_d_01_nif.m2", + fileId = "238008", + text = "helm_mail_pvpshaman_b_01_gof.m2", + value = "helm_mail_pvpshaman_b_01_gof.m2", }, { - fileId = "140679", - text = "helm_plate_headless_d_01_nim.m2", - value = "helm_plate_headless_d_01_nim.m2", + fileId = "238009", + text = "helm_mail_pvpshaman_b_01_gom.m2", + value = "helm_mail_pvpshaman_b_01_gom.m2", }, { - fileId = "140680", - text = "helm_plate_headless_d_01_orf.m2", - value = "helm_plate_headless_d_01_orf.m2", + fileId = "238010", + text = "helm_mail_pvpshaman_b_01_huf.m2", + value = "helm_mail_pvpshaman_b_01_huf.m2", }, { - fileId = "140681", - text = "helm_plate_headless_d_01_orm.m2", - value = "helm_plate_headless_d_01_orm.m2", + fileId = "238011", + text = "helm_mail_pvpshaman_b_01_hum.m2", + value = "helm_mail_pvpshaman_b_01_hum.m2", }, { - fileId = "140682", - text = "helm_plate_headless_d_01_scf.m2", - value = "helm_plate_headless_d_01_scf.m2", + fileId = "238012", + text = "helm_mail_pvpshaman_b_01_nif.m2", + value = "helm_mail_pvpshaman_b_01_nif.m2", }, { - fileId = "140683", - text = "helm_plate_headless_d_01_scm.m2", - value = "helm_plate_headless_d_01_scm.m2", + fileId = "238013", + text = "helm_mail_pvpshaman_b_01_nim.m2", + value = "helm_mail_pvpshaman_b_01_nim.m2", }, { - fileId = "140684", - text = "helm_plate_headless_d_01_taf.m2", - value = "helm_plate_headless_d_01_taf.m2", + fileId = "238014", + text = "helm_mail_pvpshaman_b_01_orf.m2", + value = "helm_mail_pvpshaman_b_01_orf.m2", }, { - fileId = "140685", - text = "helm_plate_headless_d_01_tam.m2", - value = "helm_plate_headless_d_01_tam.m2", + fileId = "238015", + text = "helm_mail_pvpshaman_b_01_orm.m2", + value = "helm_mail_pvpshaman_b_01_orm.m2", }, { - fileId = "140686", - text = "helm_plate_headless_d_01_trf.m2", - value = "helm_plate_headless_d_01_trf.m2", + fileId = "238016", + text = "helm_mail_pvpshaman_b_01_scf.m2", + value = "helm_mail_pvpshaman_b_01_scf.m2", }, { - fileId = "140687", - text = "helm_plate_headless_d_01_trm.m2", - value = "helm_plate_headless_d_01_trm.m2", + fileId = "238017", + text = "helm_mail_pvpshaman_b_01_scm.m2", + value = "helm_mail_pvpshaman_b_01_scm.m2", }, { - fileId = "140689", - text = "helm_plate_northrend_b_01_bef.m2", - value = "helm_plate_northrend_b_01_bef.m2", + fileId = "238018", + text = "helm_mail_pvpshaman_b_01_taf.m2", + value = "helm_mail_pvpshaman_b_01_taf.m2", }, { - fileId = "140690", - text = "helm_plate_northrend_b_01_bem.m2", - value = "helm_plate_northrend_b_01_bem.m2", + fileId = "238019", + text = "helm_mail_pvpshaman_b_01_tam.m2", + value = "helm_mail_pvpshaman_b_01_tam.m2", }, { - fileId = "140691", - text = "helm_plate_northrend_b_01_drf.m2", - value = "helm_plate_northrend_b_01_drf.m2", + fileId = "238020", + text = "helm_mail_pvpshaman_b_01_trf.m2", + value = "helm_mail_pvpshaman_b_01_trf.m2", }, { - fileId = "140692", - text = "helm_plate_northrend_b_01_drm.m2", - value = "helm_plate_northrend_b_01_drm.m2", + fileId = "238021", + text = "helm_mail_pvpshaman_b_01_trm.m2", + value = "helm_mail_pvpshaman_b_01_trm.m2", }, { - fileId = "140693", - text = "helm_plate_northrend_b_01_dwf.m2", - value = "helm_plate_northrend_b_01_dwf.m2", + fileId = "454163", + text = "helm_mail_pvpshaman_b_01_wof.m2", + value = "helm_mail_pvpshaman_b_01_wof.m2", }, { - fileId = "140694", - text = "helm_plate_northrend_b_01_dwm.m2", - value = "helm_plate_northrend_b_01_dwm.m2", + fileId = "430029", + text = "helm_mail_pvpshaman_b_01_wom.m2", + value = "helm_mail_pvpshaman_b_01_wom.m2", }, { - fileId = "140695", - text = "helm_plate_northrend_b_01_gnf.m2", - value = "helm_plate_northrend_b_01_gnf.m2", + fileId = "255211", + text = "helm_mail_pvpshaman_b_02_bef.m2", + value = "helm_mail_pvpshaman_b_02_bef.m2", }, { - fileId = "140696", - text = "helm_plate_northrend_b_01_gnm.m2", - value = "helm_plate_northrend_b_01_gnm.m2", + fileId = "255212", + text = "helm_mail_pvpshaman_b_02_bem.m2", + value = "helm_mail_pvpshaman_b_02_bem.m2", }, { - fileId = "140697", - text = "helm_plate_northrend_b_01_huf.m2", - value = "helm_plate_northrend_b_01_huf.m2", + fileId = "255213", + text = "helm_mail_pvpshaman_b_02_drf.m2", + value = "helm_mail_pvpshaman_b_02_drf.m2", }, { - fileId = "140698", - text = "helm_plate_northrend_b_01_hum.m2", - value = "helm_plate_northrend_b_01_hum.m2", + fileId = "255214", + text = "helm_mail_pvpshaman_b_02_drm.m2", + value = "helm_mail_pvpshaman_b_02_drm.m2", }, { - fileId = "140699", - text = "helm_plate_northrend_b_01_nif.m2", - value = "helm_plate_northrend_b_01_nif.m2", + fileId = "255215", + text = "helm_mail_pvpshaman_b_02_dwf.m2", + value = "helm_mail_pvpshaman_b_02_dwf.m2", }, { - fileId = "140700", - text = "helm_plate_northrend_b_01_nim.m2", - value = "helm_plate_northrend_b_01_nim.m2", + fileId = "255216", + text = "helm_mail_pvpshaman_b_02_dwm.m2", + value = "helm_mail_pvpshaman_b_02_dwm.m2", }, { - fileId = "140701", - text = "helm_plate_northrend_b_01_orf.m2", - value = "helm_plate_northrend_b_01_orf.m2", + fileId = "255217", + text = "helm_mail_pvpshaman_b_02_gnf.m2", + value = "helm_mail_pvpshaman_b_02_gnf.m2", }, { - fileId = "140702", - text = "helm_plate_northrend_b_01_orm.m2", - value = "helm_plate_northrend_b_01_orm.m2", + fileId = "255218", + text = "helm_mail_pvpshaman_b_02_gnm.m2", + value = "helm_mail_pvpshaman_b_02_gnm.m2", }, { - fileId = "140703", - text = "helm_plate_northrend_b_01_scf.m2", - value = "helm_plate_northrend_b_01_scf.m2", + fileId = "255219", + text = "helm_mail_pvpshaman_b_02_gof.m2", + value = "helm_mail_pvpshaman_b_02_gof.m2", }, { - fileId = "140704", - text = "helm_plate_northrend_b_01_scm.m2", - value = "helm_plate_northrend_b_01_scm.m2", + fileId = "255220", + text = "helm_mail_pvpshaman_b_02_gom.m2", + value = "helm_mail_pvpshaman_b_02_gom.m2", }, { - fileId = "140705", - text = "helm_plate_northrend_b_01_taf.m2", - value = "helm_plate_northrend_b_01_taf.m2", + fileId = "255221", + text = "helm_mail_pvpshaman_b_02_huf.m2", + value = "helm_mail_pvpshaman_b_02_huf.m2", }, { - fileId = "140706", - text = "helm_plate_northrend_b_01_tam.m2", - value = "helm_plate_northrend_b_01_tam.m2", - }, + fileId = "255222", + text = "helm_mail_pvpshaman_b_02_hum.m2", + value = "helm_mail_pvpshaman_b_02_hum.m2", + }, { - fileId = "140707", - text = "helm_plate_northrend_b_01_trf.m2", - value = "helm_plate_northrend_b_01_trf.m2", + fileId = "255223", + text = "helm_mail_pvpshaman_b_02_nif.m2", + value = "helm_mail_pvpshaman_b_02_nif.m2", }, { - fileId = "140708", - text = "helm_plate_northrend_b_01_trm.m2", - value = "helm_plate_northrend_b_01_trm.m2", + fileId = "255224", + text = "helm_mail_pvpshaman_b_02_nim.m2", + value = "helm_mail_pvpshaman_b_02_nim.m2", }, { - fileId = "140713", - text = "helm_plate_northrend_b_02_bef.m2", - value = "helm_plate_northrend_b_02_bef.m2", + fileId = "255225", + text = "helm_mail_pvpshaman_b_02_orf.m2", + value = "helm_mail_pvpshaman_b_02_orf.m2", }, { - fileId = "140714", - text = "helm_plate_northrend_b_02_bem.m2", - value = "helm_plate_northrend_b_02_bem.m2", + fileId = "255226", + text = "helm_mail_pvpshaman_b_02_orm.m2", + value = "helm_mail_pvpshaman_b_02_orm.m2", }, { - fileId = "140715", - text = "helm_plate_northrend_b_02_drf.m2", - value = "helm_plate_northrend_b_02_drf.m2", + fileId = "255227", + text = "helm_mail_pvpshaman_b_02_scf.m2", + value = "helm_mail_pvpshaman_b_02_scf.m2", }, { - fileId = "140716", - text = "helm_plate_northrend_b_02_drm.m2", - value = "helm_plate_northrend_b_02_drm.m2", + fileId = "255228", + text = "helm_mail_pvpshaman_b_02_scm.m2", + value = "helm_mail_pvpshaman_b_02_scm.m2", }, { - fileId = "140717", - text = "helm_plate_northrend_b_02_dwf.m2", - value = "helm_plate_northrend_b_02_dwf.m2", + fileId = "255229", + text = "helm_mail_pvpshaman_b_02_taf.m2", + value = "helm_mail_pvpshaman_b_02_taf.m2", }, { - fileId = "140718", - text = "helm_plate_northrend_b_02_dwm.m2", - value = "helm_plate_northrend_b_02_dwm.m2", + fileId = "255230", + text = "helm_mail_pvpshaman_b_02_tam.m2", + value = "helm_mail_pvpshaman_b_02_tam.m2", }, { - fileId = "140719", - text = "helm_plate_northrend_b_02_gnf.m2", - value = "helm_plate_northrend_b_02_gnf.m2", + fileId = "255231", + text = "helm_mail_pvpshaman_b_02_trf.m2", + value = "helm_mail_pvpshaman_b_02_trf.m2", }, { - fileId = "140720", - text = "helm_plate_northrend_b_02_gnm.m2", - value = "helm_plate_northrend_b_02_gnm.m2", + fileId = "255232", + text = "helm_mail_pvpshaman_b_02_trm.m2", + value = "helm_mail_pvpshaman_b_02_trm.m2", }, { - fileId = "140721", - text = "helm_plate_northrend_b_02_gof.m2", - value = "helm_plate_northrend_b_02_gof.m2", + fileId = "454164", + text = "helm_mail_pvpshaman_b_02_wof.m2", + value = "helm_mail_pvpshaman_b_02_wof.m2", }, { - fileId = "140722", - text = "helm_plate_northrend_b_02_gom.m2", - value = "helm_plate_northrend_b_02_gom.m2", + fileId = "430030", + text = "helm_mail_pvpshaman_b_02_wom.m2", + value = "helm_mail_pvpshaman_b_02_wom.m2", }, { - fileId = "140723", - text = "helm_plate_northrend_b_02_huf.m2", - value = "helm_plate_northrend_b_02_huf.m2", + fileId = "306711", + text = "helm_mail_pvpshaman_b_03_bef.m2", + value = "helm_mail_pvpshaman_b_03_bef.m2", }, { - fileId = "140724", - text = "helm_plate_northrend_b_02_hum.m2", - value = "helm_plate_northrend_b_02_hum.m2", + fileId = "306712", + text = "helm_mail_pvpshaman_b_03_bem.m2", + value = "helm_mail_pvpshaman_b_03_bem.m2", }, { - fileId = "140725", - text = "helm_plate_northrend_b_02_nif.m2", - value = "helm_plate_northrend_b_02_nif.m2", + fileId = "306713", + text = "helm_mail_pvpshaman_b_03_drf.m2", + value = "helm_mail_pvpshaman_b_03_drf.m2", }, { - fileId = "140726", - text = "helm_plate_northrend_b_02_nim.m2", - value = "helm_plate_northrend_b_02_nim.m2", + fileId = "306714", + text = "helm_mail_pvpshaman_b_03_drm.m2", + value = "helm_mail_pvpshaman_b_03_drm.m2", }, { - fileId = "140727", - text = "helm_plate_northrend_b_02_orf.m2", - value = "helm_plate_northrend_b_02_orf.m2", + fileId = "306715", + text = "helm_mail_pvpshaman_b_03_dwf.m2", + value = "helm_mail_pvpshaman_b_03_dwf.m2", }, { - fileId = "140728", - text = "helm_plate_northrend_b_02_orm.m2", - value = "helm_plate_northrend_b_02_orm.m2", + fileId = "306716", + text = "helm_mail_pvpshaman_b_03_dwm.m2", + value = "helm_mail_pvpshaman_b_03_dwm.m2", }, { - fileId = "140729", - text = "helm_plate_northrend_b_02_scf.m2", - value = "helm_plate_northrend_b_02_scf.m2", + fileId = "306717", + text = "helm_mail_pvpshaman_b_03_gnf.m2", + value = "helm_mail_pvpshaman_b_03_gnf.m2", }, { - fileId = "140730", - text = "helm_plate_northrend_b_02_scm.m2", - value = "helm_plate_northrend_b_02_scm.m2", + fileId = "306718", + text = "helm_mail_pvpshaman_b_03_gnm.m2", + value = "helm_mail_pvpshaman_b_03_gnm.m2", }, { - fileId = "140731", - text = "helm_plate_northrend_b_02_taf.m2", - value = "helm_plate_northrend_b_02_taf.m2", + fileId = "306719", + text = "helm_mail_pvpshaman_b_03_gof.m2", + value = "helm_mail_pvpshaman_b_03_gof.m2", }, { - fileId = "140732", - text = "helm_plate_northrend_b_02_tam.m2", - value = "helm_plate_northrend_b_02_tam.m2", + fileId = "306720", + text = "helm_mail_pvpshaman_b_03_gom.m2", + value = "helm_mail_pvpshaman_b_03_gom.m2", }, { - fileId = "140733", - text = "helm_plate_northrend_b_02_trf.m2", - value = "helm_plate_northrend_b_02_trf.m2", + fileId = "306721", + text = "helm_mail_pvpshaman_b_03_huf.m2", + value = "helm_mail_pvpshaman_b_03_huf.m2", }, { - fileId = "140734", - text = "helm_plate_northrend_b_02_trm.m2", - value = "helm_plate_northrend_b_02_trm.m2", + fileId = "306722", + text = "helm_mail_pvpshaman_b_03_hum.m2", + value = "helm_mail_pvpshaman_b_03_hum.m2", }, { - fileId = "140740", - text = "helm_plate_northrend_b_03_bef.m2", - value = "helm_plate_northrend_b_03_bef.m2", + fileId = "306723", + text = "helm_mail_pvpshaman_b_03_nif.m2", + value = "helm_mail_pvpshaman_b_03_nif.m2", }, { - fileId = "140741", - text = "helm_plate_northrend_b_03_bem.m2", - value = "helm_plate_northrend_b_03_bem.m2", + fileId = "306724", + text = "helm_mail_pvpshaman_b_03_nim.m2", + value = "helm_mail_pvpshaman_b_03_nim.m2", }, { - fileId = "140742", - text = "helm_plate_northrend_b_03_drf.m2", - value = "helm_plate_northrend_b_03_drf.m2", + fileId = "306725", + text = "helm_mail_pvpshaman_b_03_orf.m2", + value = "helm_mail_pvpshaman_b_03_orf.m2", }, { - fileId = "140743", - text = "helm_plate_northrend_b_03_drm.m2", - value = "helm_plate_northrend_b_03_drm.m2", + fileId = "306726", + text = "helm_mail_pvpshaman_b_03_orm.m2", + value = "helm_mail_pvpshaman_b_03_orm.m2", }, { - fileId = "140744", - text = "helm_plate_northrend_b_03_dwf.m2", - value = "helm_plate_northrend_b_03_dwf.m2", + fileId = "306727", + text = "helm_mail_pvpshaman_b_03_scf.m2", + value = "helm_mail_pvpshaman_b_03_scf.m2", }, { - fileId = "140745", - text = "helm_plate_northrend_b_03_dwm.m2", - value = "helm_plate_northrend_b_03_dwm.m2", + fileId = "306728", + text = "helm_mail_pvpshaman_b_03_scm.m2", + value = "helm_mail_pvpshaman_b_03_scm.m2", }, { - fileId = "140746", - text = "helm_plate_northrend_b_03_gnf.m2", - value = "helm_plate_northrend_b_03_gnf.m2", + fileId = "306729", + text = "helm_mail_pvpshaman_b_03_taf.m2", + value = "helm_mail_pvpshaman_b_03_taf.m2", }, { - fileId = "140747", - text = "helm_plate_northrend_b_03_gnm.m2", - value = "helm_plate_northrend_b_03_gnm.m2", + fileId = "306730", + text = "helm_mail_pvpshaman_b_03_tam.m2", + value = "helm_mail_pvpshaman_b_03_tam.m2", }, { - fileId = "140748", - text = "helm_plate_northrend_b_03_huf.m2", - value = "helm_plate_northrend_b_03_huf.m2", + fileId = "306731", + text = "helm_mail_pvpshaman_b_03_trf.m2", + value = "helm_mail_pvpshaman_b_03_trf.m2", }, { - fileId = "140749", - text = "helm_plate_northrend_b_03_hum.m2", - value = "helm_plate_northrend_b_03_hum.m2", + fileId = "306732", + text = "helm_mail_pvpshaman_b_03_trm.m2", + value = "helm_mail_pvpshaman_b_03_trm.m2", }, { - fileId = "140750", - text = "helm_plate_northrend_b_03_nif.m2", - value = "helm_plate_northrend_b_03_nif.m2", + fileId = "454165", + text = "helm_mail_pvpshaman_b_03_wof.m2", + value = "helm_mail_pvpshaman_b_03_wof.m2", }, { - fileId = "140751", - text = "helm_plate_northrend_b_03_nim.m2", - value = "helm_plate_northrend_b_03_nim.m2", + fileId = "430031", + text = "helm_mail_pvpshaman_b_03_wom.m2", + value = "helm_mail_pvpshaman_b_03_wom.m2", }, { - fileId = "140752", - text = "helm_plate_northrend_b_03_orf.m2", - value = "helm_plate_northrend_b_03_orf.m2", + fileId = "349962", + text = "helm_mail_pvpshaman_b_04_bef.m2", + value = "helm_mail_pvpshaman_b_04_bef.m2", }, { - fileId = "140753", - text = "helm_plate_northrend_b_03_orm.m2", - value = "helm_plate_northrend_b_03_orm.m2", + fileId = "349963", + text = "helm_mail_pvpshaman_b_04_bem.m2", + value = "helm_mail_pvpshaman_b_04_bem.m2", }, { - fileId = "140754", - text = "helm_plate_northrend_b_03_scf.m2", - value = "helm_plate_northrend_b_03_scf.m2", + fileId = "349964", + text = "helm_mail_pvpshaman_b_04_drf.m2", + value = "helm_mail_pvpshaman_b_04_drf.m2", }, { - fileId = "140755", - text = "helm_plate_northrend_b_03_scm.m2", - value = "helm_plate_northrend_b_03_scm.m2", + fileId = "349965", + text = "helm_mail_pvpshaman_b_04_drm.m2", + value = "helm_mail_pvpshaman_b_04_drm.m2", }, { - fileId = "140756", - text = "helm_plate_northrend_b_03_taf.m2", - value = "helm_plate_northrend_b_03_taf.m2", + fileId = "349966", + text = "helm_mail_pvpshaman_b_04_dwf.m2", + value = "helm_mail_pvpshaman_b_04_dwf.m2", }, { - fileId = "140757", - text = "helm_plate_northrend_b_03_tam.m2", - value = "helm_plate_northrend_b_03_tam.m2", + fileId = "349967", + text = "helm_mail_pvpshaman_b_04_dwm.m2", + value = "helm_mail_pvpshaman_b_04_dwm.m2", }, { - fileId = "140758", - text = "helm_plate_northrend_b_03_trf.m2", - value = "helm_plate_northrend_b_03_trf.m2", + fileId = "349968", + text = "helm_mail_pvpshaman_b_04_gnf.m2", + value = "helm_mail_pvpshaman_b_04_gnf.m2", }, { - fileId = "140759", - text = "helm_plate_northrend_b_03_trm.m2", - value = "helm_plate_northrend_b_03_trm.m2", + fileId = "349969", + text = "helm_mail_pvpshaman_b_04_gnm.m2", + value = "helm_mail_pvpshaman_b_04_gnm.m2", }, { - fileId = "140764", - text = "helm_plate_northrend_c_01_bef.m2", - value = "helm_plate_northrend_c_01_bef.m2", + fileId = "349970", + text = "helm_mail_pvpshaman_b_04_gof.m2", + value = "helm_mail_pvpshaman_b_04_gof.m2", }, { - fileId = "140765", - text = "helm_plate_northrend_c_01_bem.m2", - value = "helm_plate_northrend_c_01_bem.m2", + fileId = "349971", + text = "helm_mail_pvpshaman_b_04_gom.m2", + value = "helm_mail_pvpshaman_b_04_gom.m2", }, { - fileId = "140766", - text = "helm_plate_northrend_c_01_drf.m2", - value = "helm_plate_northrend_c_01_drf.m2", + fileId = "349972", + text = "helm_mail_pvpshaman_b_04_huf.m2", + value = "helm_mail_pvpshaman_b_04_huf.m2", }, { - fileId = "140767", - text = "helm_plate_northrend_c_01_drm.m2", - value = "helm_plate_northrend_c_01_drm.m2", + fileId = "349973", + text = "helm_mail_pvpshaman_b_04_hum.m2", + value = "helm_mail_pvpshaman_b_04_hum.m2", }, { - fileId = "140768", - text = "helm_plate_northrend_c_01_dwf.m2", - value = "helm_plate_northrend_c_01_dwf.m2", + fileId = "349974", + text = "helm_mail_pvpshaman_b_04_nif.m2", + value = "helm_mail_pvpshaman_b_04_nif.m2", }, { - fileId = "140769", - text = "helm_plate_northrend_c_01_dwm.m2", - value = "helm_plate_northrend_c_01_dwm.m2", + fileId = "349975", + text = "helm_mail_pvpshaman_b_04_nim.m2", + value = "helm_mail_pvpshaman_b_04_nim.m2", }, { - fileId = "140770", - text = "helm_plate_northrend_c_01_gnf.m2", - value = "helm_plate_northrend_c_01_gnf.m2", + fileId = "349976", + text = "helm_mail_pvpshaman_b_04_orf.m2", + value = "helm_mail_pvpshaman_b_04_orf.m2", }, { - fileId = "140771", - text = "helm_plate_northrend_c_01_gnm.m2", - value = "helm_plate_northrend_c_01_gnm.m2", + fileId = "349977", + text = "helm_mail_pvpshaman_b_04_orm.m2", + value = "helm_mail_pvpshaman_b_04_orm.m2", }, { - fileId = "140772", - text = "helm_plate_northrend_c_01_gof.m2", - value = "helm_plate_northrend_c_01_gof.m2", + fileId = "349978", + text = "helm_mail_pvpshaman_b_04_scf.m2", + value = "helm_mail_pvpshaman_b_04_scf.m2", }, { - fileId = "140773", - text = "helm_plate_northrend_c_01_gom.m2", - value = "helm_plate_northrend_c_01_gom.m2", + fileId = "349979", + text = "helm_mail_pvpshaman_b_04_scm.m2", + value = "helm_mail_pvpshaman_b_04_scm.m2", }, { - fileId = "140774", - text = "helm_plate_northrend_c_01_huf.m2", - value = "helm_plate_northrend_c_01_huf.m2", + fileId = "349980", + text = "helm_mail_pvpshaman_b_04_taf.m2", + value = "helm_mail_pvpshaman_b_04_taf.m2", }, { - fileId = "140775", - text = "helm_plate_northrend_c_01_hum.m2", - value = "helm_plate_northrend_c_01_hum.m2", + fileId = "349981", + text = "helm_mail_pvpshaman_b_04_tam.m2", + value = "helm_mail_pvpshaman_b_04_tam.m2", }, { - fileId = "140776", - text = "helm_plate_northrend_c_01_nif.m2", - value = "helm_plate_northrend_c_01_nif.m2", + fileId = "349982", + text = "helm_mail_pvpshaman_b_04_trf.m2", + value = "helm_mail_pvpshaman_b_04_trf.m2", }, { - fileId = "140777", - text = "helm_plate_northrend_c_01_nim.m2", - value = "helm_plate_northrend_c_01_nim.m2", + fileId = "349983", + text = "helm_mail_pvpshaman_b_04_trm.m2", + value = "helm_mail_pvpshaman_b_04_trm.m2", }, { - fileId = "140778", - text = "helm_plate_northrend_c_01_orf.m2", - value = "helm_plate_northrend_c_01_orf.m2", + fileId = "454166", + text = "helm_mail_pvpshaman_b_04_wof.m2", + value = "helm_mail_pvpshaman_b_04_wof.m2", }, { - fileId = "140779", - text = "helm_plate_northrend_c_01_orm.m2", - value = "helm_plate_northrend_c_01_orm.m2", + fileId = "430032", + text = "helm_mail_pvpshaman_b_04_wom.m2", + value = "helm_mail_pvpshaman_b_04_wom.m2", }, { - fileId = "140780", - text = "helm_plate_northrend_c_01_scf.m2", - value = "helm_plate_northrend_c_01_scf.m2", + fileId = "464200", + text = "helm_mail_pvpshaman_c_01_bef.m2", + value = "helm_mail_pvpshaman_c_01_bef.m2", }, { - fileId = "140781", - text = "helm_plate_northrend_c_01_scm.m2", - value = "helm_plate_northrend_c_01_scm.m2", + fileId = "464201", + text = "helm_mail_pvpshaman_c_01_bem.m2", + value = "helm_mail_pvpshaman_c_01_bem.m2", }, { - fileId = "140782", - text = "helm_plate_northrend_c_01_taf.m2", - value = "helm_plate_northrend_c_01_taf.m2", + fileId = "464202", + text = "helm_mail_pvpshaman_c_01_drf.m2", + value = "helm_mail_pvpshaman_c_01_drf.m2", }, { - fileId = "140783", - text = "helm_plate_northrend_c_01_tam.m2", - value = "helm_plate_northrend_c_01_tam.m2", + fileId = "464203", + text = "helm_mail_pvpshaman_c_01_drm.m2", + value = "helm_mail_pvpshaman_c_01_drm.m2", }, { - fileId = "140784", - text = "helm_plate_northrend_c_01_trf.m2", - value = "helm_plate_northrend_c_01_trf.m2", + fileId = "464204", + text = "helm_mail_pvpshaman_c_01_dwf.m2", + value = "helm_mail_pvpshaman_c_01_dwf.m2", }, { - fileId = "140785", - text = "helm_plate_northrend_c_01_trm.m2", - value = "helm_plate_northrend_c_01_trm.m2", + fileId = "464205", + text = "helm_mail_pvpshaman_c_01_dwm.m2", + value = "helm_mail_pvpshaman_c_01_dwm.m2", }, { - fileId = "140790", - text = "helm_plate_northrend_d_01_bef.m2", - value = "helm_plate_northrend_d_01_bef.m2", + fileId = "464206", + text = "helm_mail_pvpshaman_c_01_gnf.m2", + value = "helm_mail_pvpshaman_c_01_gnf.m2", }, { - fileId = "140791", - text = "helm_plate_northrend_d_01_bem.m2", - value = "helm_plate_northrend_d_01_bem.m2", + fileId = "464207", + text = "helm_mail_pvpshaman_c_01_gnm.m2", + value = "helm_mail_pvpshaman_c_01_gnm.m2", }, { - fileId = "140792", - text = "helm_plate_northrend_d_01_drf.m2", - value = "helm_plate_northrend_d_01_drf.m2", + fileId = "464208", + text = "helm_mail_pvpshaman_c_01_gof.m2", + value = "helm_mail_pvpshaman_c_01_gof.m2", }, { - fileId = "140793", - text = "helm_plate_northrend_d_01_drm.m2", - value = "helm_plate_northrend_d_01_drm.m2", + fileId = "464209", + text = "helm_mail_pvpshaman_c_01_gom.m2", + value = "helm_mail_pvpshaman_c_01_gom.m2", }, { - fileId = "140794", - text = "helm_plate_northrend_d_01_dwf.m2", - value = "helm_plate_northrend_d_01_dwf.m2", + fileId = "464210", + text = "helm_mail_pvpshaman_c_01_huf.m2", + value = "helm_mail_pvpshaman_c_01_huf.m2", }, { - fileId = "140795", - text = "helm_plate_northrend_d_01_dwm.m2", - value = "helm_plate_northrend_d_01_dwm.m2", + fileId = "464211", + text = "helm_mail_pvpshaman_c_01_hum.m2", + value = "helm_mail_pvpshaman_c_01_hum.m2", }, { - fileId = "140796", - text = "helm_plate_northrend_d_01_gnf.m2", - value = "helm_plate_northrend_d_01_gnf.m2", + fileId = "464212", + text = "helm_mail_pvpshaman_c_01_nif.m2", + value = "helm_mail_pvpshaman_c_01_nif.m2", }, { - fileId = "140797", - text = "helm_plate_northrend_d_01_gnm.m2", - value = "helm_plate_northrend_d_01_gnm.m2", + fileId = "464213", + text = "helm_mail_pvpshaman_c_01_nim.m2", + value = "helm_mail_pvpshaman_c_01_nim.m2", }, { - fileId = "140798", - text = "helm_plate_northrend_d_01_huf.m2", - value = "helm_plate_northrend_d_01_huf.m2", + fileId = "464214", + text = "helm_mail_pvpshaman_c_01_orf.m2", + value = "helm_mail_pvpshaman_c_01_orf.m2", }, { - fileId = "140799", - text = "helm_plate_northrend_d_01_hum.m2", - value = "helm_plate_northrend_d_01_hum.m2", + fileId = "464215", + text = "helm_mail_pvpshaman_c_01_orm.m2", + value = "helm_mail_pvpshaman_c_01_orm.m2", }, { - fileId = "140800", - text = "helm_plate_northrend_d_01_nif.m2", - value = "helm_plate_northrend_d_01_nif.m2", + fileId = "464216", + text = "helm_mail_pvpshaman_c_01_scf.m2", + value = "helm_mail_pvpshaman_c_01_scf.m2", }, { - fileId = "140801", - text = "helm_plate_northrend_d_01_nim.m2", - value = "helm_plate_northrend_d_01_nim.m2", + fileId = "464217", + text = "helm_mail_pvpshaman_c_01_scm.m2", + value = "helm_mail_pvpshaman_c_01_scm.m2", }, { - fileId = "140802", - text = "helm_plate_northrend_d_01_orf.m2", - value = "helm_plate_northrend_d_01_orf.m2", + fileId = "464218", + text = "helm_mail_pvpshaman_c_01_taf.m2", + value = "helm_mail_pvpshaman_c_01_taf.m2", }, { - fileId = "140803", - text = "helm_plate_northrend_d_01_orm.m2", - value = "helm_plate_northrend_d_01_orm.m2", + fileId = "464219", + text = "helm_mail_pvpshaman_c_01_tam.m2", + value = "helm_mail_pvpshaman_c_01_tam.m2", }, { - fileId = "140804", - text = "helm_plate_northrend_d_01_scf.m2", - value = "helm_plate_northrend_d_01_scf.m2", + fileId = "464220", + text = "helm_mail_pvpshaman_c_01_trf.m2", + value = "helm_mail_pvpshaman_c_01_trf.m2", }, { - fileId = "140805", - text = "helm_plate_northrend_d_01_scm.m2", - value = "helm_plate_northrend_d_01_scm.m2", + fileId = "464221", + text = "helm_mail_pvpshaman_c_01_trm.m2", + value = "helm_mail_pvpshaman_c_01_trm.m2", }, { - fileId = "140806", - text = "helm_plate_northrend_d_01_taf.m2", - value = "helm_plate_northrend_d_01_taf.m2", + fileId = "464222", + text = "helm_mail_pvpshaman_c_01_wof.m2", + value = "helm_mail_pvpshaman_c_01_wof.m2", }, { - fileId = "140807", - text = "helm_plate_northrend_d_01_tam.m2", - value = "helm_plate_northrend_d_01_tam.m2", + fileId = "464223", + text = "helm_mail_pvpshaman_c_01_wom.m2", + value = "helm_mail_pvpshaman_c_01_wom.m2", }, { - fileId = "140808", - text = "helm_plate_northrend_d_01_trf.m2", - value = "helm_plate_northrend_d_01_trf.m2", + fileId = "469061", + text = "helm_mail_pvpshaman_c_02_bef.m2", + value = "helm_mail_pvpshaman_c_02_bef.m2", }, { - fileId = "140809", - text = "helm_plate_northrend_d_01_trm.m2", - value = "helm_plate_northrend_d_01_trm.m2", + fileId = "469062", + text = "helm_mail_pvpshaman_c_02_bem.m2", + value = "helm_mail_pvpshaman_c_02_bem.m2", }, { - fileId = "140814", - text = "helm_plate_pvpalliance_a_01_bef.m2", - value = "helm_plate_pvpalliance_a_01_bef.m2", + fileId = "469063", + text = "helm_mail_pvpshaman_c_02_drf.m2", + value = "helm_mail_pvpshaman_c_02_drf.m2", }, { - fileId = "140815", - text = "helm_plate_pvpalliance_a_01_bem.m2", - value = "helm_plate_pvpalliance_a_01_bem.m2", + fileId = "469064", + text = "helm_mail_pvpshaman_c_02_drm.m2", + value = "helm_mail_pvpshaman_c_02_drm.m2", }, { - fileId = "140816", - text = "helm_plate_pvpalliance_a_01_drf.m2", - value = "helm_plate_pvpalliance_a_01_drf.m2", + fileId = "469065", + text = "helm_mail_pvpshaman_c_02_dwf.m2", + value = "helm_mail_pvpshaman_c_02_dwf.m2", }, { - fileId = "140817", - text = "helm_plate_pvpalliance_a_01_drm.m2", - value = "helm_plate_pvpalliance_a_01_drm.m2", + fileId = "469066", + text = "helm_mail_pvpshaman_c_02_dwm.m2", + value = "helm_mail_pvpshaman_c_02_dwm.m2", }, { - fileId = "140818", - text = "helm_plate_pvpalliance_a_01_dwf.m2", - value = "helm_plate_pvpalliance_a_01_dwf.m2", + fileId = "469067", + text = "helm_mail_pvpshaman_c_02_gnf.m2", + value = "helm_mail_pvpshaman_c_02_gnf.m2", }, { - fileId = "140819", - text = "helm_plate_pvpalliance_a_01_dwm.m2", - value = "helm_plate_pvpalliance_a_01_dwm.m2", + fileId = "469068", + text = "helm_mail_pvpshaman_c_02_gnm.m2", + value = "helm_mail_pvpshaman_c_02_gnm.m2", }, { - fileId = "140820", - text = "helm_plate_pvpalliance_a_01_gnf.m2", - value = "helm_plate_pvpalliance_a_01_gnf.m2", + fileId = "469069", + text = "helm_mail_pvpshaman_c_02_gof.m2", + value = "helm_mail_pvpshaman_c_02_gof.m2", }, { - fileId = "140821", - text = "helm_plate_pvpalliance_a_01_gnm.m2", - value = "helm_plate_pvpalliance_a_01_gnm.m2", + fileId = "469070", + text = "helm_mail_pvpshaman_c_02_gom.m2", + value = "helm_mail_pvpshaman_c_02_gom.m2", }, { - fileId = "140822", - text = "helm_plate_pvpalliance_a_01_gof.m2", - value = "helm_plate_pvpalliance_a_01_gof.m2", + fileId = "469071", + text = "helm_mail_pvpshaman_c_02_huf.m2", + value = "helm_mail_pvpshaman_c_02_huf.m2", }, { - fileId = "140823", - text = "helm_plate_pvpalliance_a_01_gom.m2", - value = "helm_plate_pvpalliance_a_01_gom.m2", + fileId = "469072", + text = "helm_mail_pvpshaman_c_02_hum.m2", + value = "helm_mail_pvpshaman_c_02_hum.m2", }, { - fileId = "140824", - text = "helm_plate_pvpalliance_a_01_huf.m2", - value = "helm_plate_pvpalliance_a_01_huf.m2", + fileId = "469073", + text = "helm_mail_pvpshaman_c_02_nif.m2", + value = "helm_mail_pvpshaman_c_02_nif.m2", }, { - fileId = "140825", - text = "helm_plate_pvpalliance_a_01_hum.m2", - value = "helm_plate_pvpalliance_a_01_hum.m2", + fileId = "469074", + text = "helm_mail_pvpshaman_c_02_nim.m2", + value = "helm_mail_pvpshaman_c_02_nim.m2", }, { - fileId = "140826", - text = "helm_plate_pvpalliance_a_01_nif.m2", - value = "helm_plate_pvpalliance_a_01_nif.m2", + fileId = "469075", + text = "helm_mail_pvpshaman_c_02_orf.m2", + value = "helm_mail_pvpshaman_c_02_orf.m2", }, { - fileId = "140827", - text = "helm_plate_pvpalliance_a_01_nim.m2", - value = "helm_plate_pvpalliance_a_01_nim.m2", + fileId = "469076", + text = "helm_mail_pvpshaman_c_02_orm.m2", + value = "helm_mail_pvpshaman_c_02_orm.m2", }, { - fileId = "140828", - text = "helm_plate_pvpalliance_a_01_orf.m2", - value = "helm_plate_pvpalliance_a_01_orf.m2", + fileId = "469077", + text = "helm_mail_pvpshaman_c_02_scf.m2", + value = "helm_mail_pvpshaman_c_02_scf.m2", }, { - fileId = "140829", - text = "helm_plate_pvpalliance_a_01_orm.m2", - value = "helm_plate_pvpalliance_a_01_orm.m2", + fileId = "469078", + text = "helm_mail_pvpshaman_c_02_scm.m2", + value = "helm_mail_pvpshaman_c_02_scm.m2", }, { - fileId = "140830", - text = "helm_plate_pvpalliance_a_01_scf.m2", - value = "helm_plate_pvpalliance_a_01_scf.m2", + fileId = "469079", + text = "helm_mail_pvpshaman_c_02_taf.m2", + value = "helm_mail_pvpshaman_c_02_taf.m2", }, { - fileId = "140831", - text = "helm_plate_pvpalliance_a_01_scm.m2", - value = "helm_plate_pvpalliance_a_01_scm.m2", + fileId = "469080", + text = "helm_mail_pvpshaman_c_02_tam.m2", + value = "helm_mail_pvpshaman_c_02_tam.m2", }, { - fileId = "140832", - text = "helm_plate_pvpalliance_a_01_taf.m2", - value = "helm_plate_pvpalliance_a_01_taf.m2", + fileId = "469081", + text = "helm_mail_pvpshaman_c_02_trf.m2", + value = "helm_mail_pvpshaman_c_02_trf.m2", }, { - fileId = "140833", - text = "helm_plate_pvpalliance_a_01_tam.m2", - value = "helm_plate_pvpalliance_a_01_tam.m2", + fileId = "469082", + text = "helm_mail_pvpshaman_c_02_trm.m2", + value = "helm_mail_pvpshaman_c_02_trm.m2", }, { - fileId = "140834", - text = "helm_plate_pvpalliance_a_01_trf.m2", - value = "helm_plate_pvpalliance_a_01_trf.m2", + fileId = "469083", + text = "helm_mail_pvpshaman_c_02_wof.m2", + value = "helm_mail_pvpshaman_c_02_wof.m2", }, { - fileId = "140835", - text = "helm_plate_pvpalliance_a_01_trm.m2", - value = "helm_plate_pvpalliance_a_01_trm.m2", + fileId = "469084", + text = "helm_mail_pvpshaman_c_02_wom.m2", + value = "helm_mail_pvpshaman_c_02_wom.m2", }, { - fileId = "140839", - text = "helm_plate_pvpalliance_c_01_gom.m2", - value = "helm_plate_pvpalliance_c_01_gom.m2", + fileId = "532511", + text = "helm_mail_pvpshaman_d_01_bef.m2", + value = "helm_mail_pvpshaman_d_01_bef.m2", }, { - fileId = "238086", - text = "helm_plate_pvpdeathknight_b_01_bef.m2", - value = "helm_plate_pvpdeathknight_b_01_bef.m2", + fileId = "532513", + text = "helm_mail_pvpshaman_d_01_bem.m2", + value = "helm_mail_pvpshaman_d_01_bem.m2", }, { - fileId = "238087", - text = "helm_plate_pvpdeathknight_b_01_bem.m2", - value = "helm_plate_pvpdeathknight_b_01_bem.m2", + fileId = "532515", + text = "helm_mail_pvpshaman_d_01_drf.m2", + value = "helm_mail_pvpshaman_d_01_drf.m2", }, { - fileId = "238088", - text = "helm_plate_pvpdeathknight_b_01_drf.m2", - value = "helm_plate_pvpdeathknight_b_01_drf.m2", + fileId = "532517", + text = "helm_mail_pvpshaman_d_01_drm.m2", + value = "helm_mail_pvpshaman_d_01_drm.m2", }, { - fileId = "238089", - text = "helm_plate_pvpdeathknight_b_01_drm.m2", - value = "helm_plate_pvpdeathknight_b_01_drm.m2", + fileId = "532519", + text = "helm_mail_pvpshaman_d_01_dwf.m2", + value = "helm_mail_pvpshaman_d_01_dwf.m2", }, { - fileId = "238090", - text = "helm_plate_pvpdeathknight_b_01_dwf.m2", - value = "helm_plate_pvpdeathknight_b_01_dwf.m2", + fileId = "532521", + text = "helm_mail_pvpshaman_d_01_dwm.m2", + value = "helm_mail_pvpshaman_d_01_dwm.m2", }, { - fileId = "238091", - text = "helm_plate_pvpdeathknight_b_01_dwm.m2", - value = "helm_plate_pvpdeathknight_b_01_dwm.m2", + fileId = "532523", + text = "helm_mail_pvpshaman_d_01_gnf.m2", + value = "helm_mail_pvpshaman_d_01_gnf.m2", }, { - fileId = "238092", - text = "helm_plate_pvpdeathknight_b_01_gnf.m2", - value = "helm_plate_pvpdeathknight_b_01_gnf.m2", + fileId = "532537", + text = "helm_mail_pvpshaman_d_01_gnm.m2", + value = "helm_mail_pvpshaman_d_01_gnm.m2", }, { - fileId = "238093", - text = "helm_plate_pvpdeathknight_b_01_gnm.m2", - value = "helm_plate_pvpdeathknight_b_01_gnm.m2", + fileId = "532541", + text = "helm_mail_pvpshaman_d_01_gof.m2", + value = "helm_mail_pvpshaman_d_01_gof.m2", }, { - fileId = "238094", - text = "helm_plate_pvpdeathknight_b_01_gof.m2", - value = "helm_plate_pvpdeathknight_b_01_gof.m2", + fileId = "532539", + text = "helm_mail_pvpshaman_d_01_gom.m2", + value = "helm_mail_pvpshaman_d_01_gom.m2", }, { - fileId = "238095", - text = "helm_plate_pvpdeathknight_b_01_gom.m2", - value = "helm_plate_pvpdeathknight_b_01_gom.m2", + fileId = "532525", + text = "helm_mail_pvpshaman_d_01_huf.m2", + value = "helm_mail_pvpshaman_d_01_huf.m2", }, { - fileId = "238096", - text = "helm_plate_pvpdeathknight_b_01_huf.m2", - value = "helm_plate_pvpdeathknight_b_01_huf.m2", + fileId = "532527", + text = "helm_mail_pvpshaman_d_01_hum.m2", + value = "helm_mail_pvpshaman_d_01_hum.m2", }, { - fileId = "238097", - text = "helm_plate_pvpdeathknight_b_01_hum.m2", - value = "helm_plate_pvpdeathknight_b_01_hum.m2", + fileId = "532543", + text = "helm_mail_pvpshaman_d_01_nif.m2", + value = "helm_mail_pvpshaman_d_01_nif.m2", }, { - fileId = "238098", - text = "helm_plate_pvpdeathknight_b_01_nif.m2", - value = "helm_plate_pvpdeathknight_b_01_nif.m2", + fileId = "532545", + text = "helm_mail_pvpshaman_d_01_nim.m2", + value = "helm_mail_pvpshaman_d_01_nim.m2", }, { - fileId = "238099", - text = "helm_plate_pvpdeathknight_b_01_nim.m2", - value = "helm_plate_pvpdeathknight_b_01_nim.m2", + fileId = "532991", + text = "helm_mail_pvpshaman_d_01_orf.m2", + value = "helm_mail_pvpshaman_d_01_orf.m2", }, { - fileId = "238100", - text = "helm_plate_pvpdeathknight_b_01_orf.m2", - value = "helm_plate_pvpdeathknight_b_01_orf.m2", + fileId = "532573", + text = "helm_mail_pvpshaman_d_01_orm.m2", + value = "helm_mail_pvpshaman_d_01_orm.m2", }, { - fileId = "238101", - text = "helm_plate_pvpdeathknight_b_01_orm.m2", - value = "helm_plate_pvpdeathknight_b_01_orm.m2", + fileId = "532575", + text = "helm_mail_pvpshaman_d_01_scf.m2", + value = "helm_mail_pvpshaman_d_01_scf.m2", }, { - fileId = "238102", - text = "helm_plate_pvpdeathknight_b_01_scf.m2", - value = "helm_plate_pvpdeathknight_b_01_scf.m2", + fileId = "532577", + text = "helm_mail_pvpshaman_d_01_scm.m2", + value = "helm_mail_pvpshaman_d_01_scm.m2", }, { - fileId = "238103", - text = "helm_plate_pvpdeathknight_b_01_scm.m2", - value = "helm_plate_pvpdeathknight_b_01_scm.m2", + fileId = "532579", + text = "helm_mail_pvpshaman_d_01_taf.m2", + value = "helm_mail_pvpshaman_d_01_taf.m2", }, { - fileId = "238104", - text = "helm_plate_pvpdeathknight_b_01_taf.m2", - value = "helm_plate_pvpdeathknight_b_01_taf.m2", + fileId = "532581", + text = "helm_mail_pvpshaman_d_01_tam.m2", + value = "helm_mail_pvpshaman_d_01_tam.m2", }, { - fileId = "238105", - text = "helm_plate_pvpdeathknight_b_01_tam.m2", - value = "helm_plate_pvpdeathknight_b_01_tam.m2", + fileId = "532583", + text = "helm_mail_pvpshaman_d_01_trf.m2", + value = "helm_mail_pvpshaman_d_01_trf.m2", }, { - fileId = "238106", - text = "helm_plate_pvpdeathknight_b_01_trf.m2", - value = "helm_plate_pvpdeathknight_b_01_trf.m2", + fileId = "532585", + text = "helm_mail_pvpshaman_d_01_trm.m2", + value = "helm_mail_pvpshaman_d_01_trm.m2", }, { - fileId = "238107", - text = "helm_plate_pvpdeathknight_b_01_trm.m2", - value = "helm_plate_pvpdeathknight_b_01_trm.m2", + fileId = "532587", + text = "helm_mail_pvpshaman_d_01_wof.m2", + value = "helm_mail_pvpshaman_d_01_wof.m2", }, { - fileId = "255237", - text = "helm_plate_pvpdeathknight_b_02_bef.m2", - value = "helm_plate_pvpdeathknight_b_02_bef.m2", + fileId = "532589", + text = "helm_mail_pvpshaman_d_01_wom.m2", + value = "helm_mail_pvpshaman_d_01_wom.m2", }, { - fileId = "255242", - text = "helm_plate_pvpdeathknight_b_02_bem.m2", - value = "helm_plate_pvpdeathknight_b_02_bem.m2", + fileId = "139621", + text = "helm_mail_raidhunter_a_01_bef.m2", + value = "helm_mail_raidhunter_a_01_bef.m2", }, { - fileId = "255243", - text = "helm_plate_pvpdeathknight_b_02_drf.m2", - value = "helm_plate_pvpdeathknight_b_02_drf.m2", + fileId = "139622", + text = "helm_mail_raidhunter_a_01_bem.m2", + value = "helm_mail_raidhunter_a_01_bem.m2", }, { - fileId = "255244", - text = "helm_plate_pvpdeathknight_b_02_drm.m2", - value = "helm_plate_pvpdeathknight_b_02_drm.m2", + fileId = "139623", + text = "helm_mail_raidhunter_a_01_drf.m2", + value = "helm_mail_raidhunter_a_01_drf.m2", }, { - fileId = "255245", - text = "helm_plate_pvpdeathknight_b_02_dwf.m2", - value = "helm_plate_pvpdeathknight_b_02_dwf.m2", + fileId = "139624", + text = "helm_mail_raidhunter_a_01_drm.m2", + value = "helm_mail_raidhunter_a_01_drm.m2", }, { - fileId = "255246", - text = "helm_plate_pvpdeathknight_b_02_dwm.m2", - value = "helm_plate_pvpdeathknight_b_02_dwm.m2", + fileId = "139625", + text = "helm_mail_raidhunter_a_01_dwf.m2", + value = "helm_mail_raidhunter_a_01_dwf.m2", }, { - fileId = "255247", - text = "helm_plate_pvpdeathknight_b_02_gnf.m2", - value = "helm_plate_pvpdeathknight_b_02_gnf.m2", + fileId = "139626", + text = "helm_mail_raidhunter_a_01_dwm.m2", + value = "helm_mail_raidhunter_a_01_dwm.m2", }, { - fileId = "255248", - text = "helm_plate_pvpdeathknight_b_02_gnm.m2", - value = "helm_plate_pvpdeathknight_b_02_gnm.m2", + fileId = "139627", + text = "helm_mail_raidhunter_a_01_gnf.m2", + value = "helm_mail_raidhunter_a_01_gnf.m2", }, { - fileId = "255249", - text = "helm_plate_pvpdeathknight_b_02_gof.m2", - value = "helm_plate_pvpdeathknight_b_02_gof.m2", + fileId = "139628", + text = "helm_mail_raidhunter_a_01_gnm.m2", + value = "helm_mail_raidhunter_a_01_gnm.m2", }, { - fileId = "255250", - text = "helm_plate_pvpdeathknight_b_02_gom.m2", - value = "helm_plate_pvpdeathknight_b_02_gom.m2", + fileId = "405448", + text = "helm_mail_raidhunter_a_01_gof.m2", + value = "helm_mail_raidhunter_a_01_gof.m2", }, { - fileId = "255251", - text = "helm_plate_pvpdeathknight_b_02_huf.m2", - value = "helm_plate_pvpdeathknight_b_02_huf.m2", + fileId = "405449", + text = "helm_mail_raidhunter_a_01_gom.m2", + value = "helm_mail_raidhunter_a_01_gom.m2", }, { - fileId = "254903", - text = "helm_plate_pvpdeathknight_b_02_hum.m2", - value = "helm_plate_pvpdeathknight_b_02_hum.m2", + fileId = "139629", + text = "helm_mail_raidhunter_a_01_huf.m2", + value = "helm_mail_raidhunter_a_01_huf.m2", }, { - fileId = "255252", - text = "helm_plate_pvpdeathknight_b_02_nif.m2", - value = "helm_plate_pvpdeathknight_b_02_nif.m2", + fileId = "139630", + text = "helm_mail_raidhunter_a_01_hum.m2", + value = "helm_mail_raidhunter_a_01_hum.m2", }, { - fileId = "255253", - text = "helm_plate_pvpdeathknight_b_02_nim.m2", - value = "helm_plate_pvpdeathknight_b_02_nim.m2", + fileId = "139631", + text = "helm_mail_raidhunter_a_01_nif.m2", + value = "helm_mail_raidhunter_a_01_nif.m2", }, { - fileId = "255254", - text = "helm_plate_pvpdeathknight_b_02_orf.m2", - value = "helm_plate_pvpdeathknight_b_02_orf.m2", + fileId = "139632", + text = "helm_mail_raidhunter_a_01_nim.m2", + value = "helm_mail_raidhunter_a_01_nim.m2", }, { - fileId = "255255", - text = "helm_plate_pvpdeathknight_b_02_orm.m2", - value = "helm_plate_pvpdeathknight_b_02_orm.m2", + fileId = "139633", + text = "helm_mail_raidhunter_a_01_orf.m2", + value = "helm_mail_raidhunter_a_01_orf.m2", }, { - fileId = "255256", - text = "helm_plate_pvpdeathknight_b_02_scf.m2", - value = "helm_plate_pvpdeathknight_b_02_scf.m2", + fileId = "139634", + text = "helm_mail_raidhunter_a_01_orm.m2", + value = "helm_mail_raidhunter_a_01_orm.m2", }, { - fileId = "255257", - text = "helm_plate_pvpdeathknight_b_02_scm.m2", - value = "helm_plate_pvpdeathknight_b_02_scm.m2", + fileId = "139635", + text = "helm_mail_raidhunter_a_01_scf.m2", + value = "helm_mail_raidhunter_a_01_scf.m2", }, { - fileId = "255258", - text = "helm_plate_pvpdeathknight_b_02_taf.m2", - value = "helm_plate_pvpdeathknight_b_02_taf.m2", + fileId = "139636", + text = "helm_mail_raidhunter_a_01_scm.m2", + value = "helm_mail_raidhunter_a_01_scm.m2", }, { - fileId = "255259", - text = "helm_plate_pvpdeathknight_b_02_tam.m2", - value = "helm_plate_pvpdeathknight_b_02_tam.m2", + fileId = "139637", + text = "helm_mail_raidhunter_a_01_taf.m2", + value = "helm_mail_raidhunter_a_01_taf.m2", }, { - fileId = "255260", - text = "helm_plate_pvpdeathknight_b_02_trf.m2", - value = "helm_plate_pvpdeathknight_b_02_trf.m2", + fileId = "139638", + text = "helm_mail_raidhunter_a_01_tam.m2", + value = "helm_mail_raidhunter_a_01_tam.m2", }, { - fileId = "255261", - text = "helm_plate_pvpdeathknight_b_02_trm.m2", - value = "helm_plate_pvpdeathknight_b_02_trm.m2", + fileId = "139639", + text = "helm_mail_raidhunter_a_01_trf.m2", + value = "helm_mail_raidhunter_a_01_trf.m2", }, { - fileId = "304713", - text = "helm_plate_pvpdeathknight_b_03_bef.m2", - value = "helm_plate_pvpdeathknight_b_03_bef.m2", + fileId = "139640", + text = "helm_mail_raidhunter_a_01_trm.m2", + value = "helm_mail_raidhunter_a_01_trm.m2", }, { - fileId = "304714", - text = "helm_plate_pvpdeathknight_b_03_bem.m2", - value = "helm_plate_pvpdeathknight_b_03_bem.m2", + fileId = "454167", + text = "helm_mail_raidhunter_a_01_wof.m2", + value = "helm_mail_raidhunter_a_01_wof.m2", }, { - fileId = "304715", - text = "helm_plate_pvpdeathknight_b_03_drf.m2", - value = "helm_plate_pvpdeathknight_b_03_drf.m2", + fileId = "430033", + text = "helm_mail_raidhunter_a_01_wom.m2", + value = "helm_mail_raidhunter_a_01_wom.m2", }, { - fileId = "304716", - text = "helm_plate_pvpdeathknight_b_03_drm.m2", - value = "helm_plate_pvpdeathknight_b_03_drm.m2", + fileId = "139645", + text = "helm_mail_raidhunter_b_01_bef.m2", + value = "helm_mail_raidhunter_b_01_bef.m2", }, { - fileId = "304717", - text = "helm_plate_pvpdeathknight_b_03_dwf.m2", - value = "helm_plate_pvpdeathknight_b_03_dwf.m2", + fileId = "139646", + text = "helm_mail_raidhunter_b_01_bem.m2", + value = "helm_mail_raidhunter_b_01_bem.m2", }, { - fileId = "304718", - text = "helm_plate_pvpdeathknight_b_03_dwm.m2", - value = "helm_plate_pvpdeathknight_b_03_dwm.m2", + fileId = "139647", + text = "helm_mail_raidhunter_b_01_drf.m2", + value = "helm_mail_raidhunter_b_01_drf.m2", }, { - fileId = "304719", - text = "helm_plate_pvpdeathknight_b_03_gnf.m2", - value = "helm_plate_pvpdeathknight_b_03_gnf.m2", + fileId = "139648", + text = "helm_mail_raidhunter_b_01_drm.m2", + value = "helm_mail_raidhunter_b_01_drm.m2", }, { - fileId = "304720", - text = "helm_plate_pvpdeathknight_b_03_gnm.m2", - value = "helm_plate_pvpdeathknight_b_03_gnm.m2", + fileId = "139649", + text = "helm_mail_raidhunter_b_01_dwf.m2", + value = "helm_mail_raidhunter_b_01_dwf.m2", }, { - fileId = "304721", - text = "helm_plate_pvpdeathknight_b_03_gof.m2", - value = "helm_plate_pvpdeathknight_b_03_gof.m2", + fileId = "139650", + text = "helm_mail_raidhunter_b_01_dwm.m2", + value = "helm_mail_raidhunter_b_01_dwm.m2", }, { - fileId = "304722", - text = "helm_plate_pvpdeathknight_b_03_gom.m2", - value = "helm_plate_pvpdeathknight_b_03_gom.m2", + fileId = "139651", + text = "helm_mail_raidhunter_b_01_gnf.m2", + value = "helm_mail_raidhunter_b_01_gnf.m2", }, { - fileId = "304723", - text = "helm_plate_pvpdeathknight_b_03_huf.m2", - value = "helm_plate_pvpdeathknight_b_03_huf.m2", + fileId = "139652", + text = "helm_mail_raidhunter_b_01_gnm.m2", + value = "helm_mail_raidhunter_b_01_gnm.m2", }, { - fileId = "304724", - text = "helm_plate_pvpdeathknight_b_03_hum.m2", - value = "helm_plate_pvpdeathknight_b_03_hum.m2", + fileId = "139653", + text = "helm_mail_raidhunter_b_01_gof.m2", + value = "helm_mail_raidhunter_b_01_gof.m2", }, { - fileId = "304725", - text = "helm_plate_pvpdeathknight_b_03_nif.m2", - value = "helm_plate_pvpdeathknight_b_03_nif.m2", + fileId = "139654", + text = "helm_mail_raidhunter_b_01_gom.m2", + value = "helm_mail_raidhunter_b_01_gom.m2", }, { - fileId = "304726", - text = "helm_plate_pvpdeathknight_b_03_nim.m2", - value = "helm_plate_pvpdeathknight_b_03_nim.m2", + fileId = "139655", + text = "helm_mail_raidhunter_b_01_huf.m2", + value = "helm_mail_raidhunter_b_01_huf.m2", }, { - fileId = "304727", - text = "helm_plate_pvpdeathknight_b_03_orf.m2", - value = "helm_plate_pvpdeathknight_b_03_orf.m2", + fileId = "139656", + text = "helm_mail_raidhunter_b_01_hum.m2", + value = "helm_mail_raidhunter_b_01_hum.m2", }, { - fileId = "304728", - text = "helm_plate_pvpdeathknight_b_03_orm.m2", - value = "helm_plate_pvpdeathknight_b_03_orm.m2", + fileId = "139657", + text = "helm_mail_raidhunter_b_01_nif.m2", + value = "helm_mail_raidhunter_b_01_nif.m2", }, { - fileId = "304729", - text = "helm_plate_pvpdeathknight_b_03_scf.m2", - value = "helm_plate_pvpdeathknight_b_03_scf.m2", + fileId = "139658", + text = "helm_mail_raidhunter_b_01_nim.m2", + value = "helm_mail_raidhunter_b_01_nim.m2", }, { - fileId = "304730", - text = "helm_plate_pvpdeathknight_b_03_scm.m2", - value = "helm_plate_pvpdeathknight_b_03_scm.m2", + fileId = "139659", + text = "helm_mail_raidhunter_b_01_orf.m2", + value = "helm_mail_raidhunter_b_01_orf.m2", }, { - fileId = "304731", - text = "helm_plate_pvpdeathknight_b_03_taf.m2", - value = "helm_plate_pvpdeathknight_b_03_taf.m2", + fileId = "139660", + text = "helm_mail_raidhunter_b_01_orm.m2", + value = "helm_mail_raidhunter_b_01_orm.m2", }, { - fileId = "304732", - text = "helm_plate_pvpdeathknight_b_03_tam.m2", - value = "helm_plate_pvpdeathknight_b_03_tam.m2", + fileId = "139661", + text = "helm_mail_raidhunter_b_01_scf.m2", + value = "helm_mail_raidhunter_b_01_scf.m2", }, { - fileId = "304733", - text = "helm_plate_pvpdeathknight_b_03_trf.m2", - value = "helm_plate_pvpdeathknight_b_03_trf.m2", + fileId = "139662", + text = "helm_mail_raidhunter_b_01_scm.m2", + value = "helm_mail_raidhunter_b_01_scm.m2", }, { - fileId = "304734", - text = "helm_plate_pvpdeathknight_b_03_trm.m2", - value = "helm_plate_pvpdeathknight_b_03_trm.m2", + fileId = "139663", + text = "helm_mail_raidhunter_b_01_taf.m2", + value = "helm_mail_raidhunter_b_01_taf.m2", }, { - fileId = "343817", - text = "helm_plate_pvpdeathknight_b_04_bef.m2", - value = "helm_plate_pvpdeathknight_b_04_bef.m2", + fileId = "139664", + text = "helm_mail_raidhunter_b_01_tam.m2", + value = "helm_mail_raidhunter_b_01_tam.m2", }, { - fileId = "343818", - text = "helm_plate_pvpdeathknight_b_04_bem.m2", - value = "helm_plate_pvpdeathknight_b_04_bem.m2", + fileId = "139665", + text = "helm_mail_raidhunter_b_01_trf.m2", + value = "helm_mail_raidhunter_b_01_trf.m2", }, { - fileId = "343819", - text = "helm_plate_pvpdeathknight_b_04_drf.m2", - value = "helm_plate_pvpdeathknight_b_04_drf.m2", + fileId = "139666", + text = "helm_mail_raidhunter_b_01_trm.m2", + value = "helm_mail_raidhunter_b_01_trm.m2", }, { - fileId = "343820", - text = "helm_plate_pvpdeathknight_b_04_drm.m2", - value = "helm_plate_pvpdeathknight_b_04_drm.m2", + fileId = "454168", + text = "helm_mail_raidhunter_b_01_wof.m2", + value = "helm_mail_raidhunter_b_01_wof.m2", }, { - fileId = "343821", - text = "helm_plate_pvpdeathknight_b_04_dwf.m2", - value = "helm_plate_pvpdeathknight_b_04_dwf.m2", + fileId = "430034", + text = "helm_mail_raidhunter_b_01_wom.m2", + value = "helm_mail_raidhunter_b_01_wom.m2", }, { - fileId = "343822", - text = "helm_plate_pvpdeathknight_b_04_dwm.m2", - value = "helm_plate_pvpdeathknight_b_04_dwm.m2", + fileId = "139672", + text = "helm_mail_raidhunter_c_01_bef.m2", + value = "helm_mail_raidhunter_c_01_bef.m2", }, { - fileId = "343823", - text = "helm_plate_pvpdeathknight_b_04_gnf.m2", - value = "helm_plate_pvpdeathknight_b_04_gnf.m2", + fileId = "139673", + text = "helm_mail_raidhunter_c_01_bem.m2", + value = "helm_mail_raidhunter_c_01_bem.m2", }, { - fileId = "343824", - text = "helm_plate_pvpdeathknight_b_04_gnm.m2", - value = "helm_plate_pvpdeathknight_b_04_gnm.m2", + fileId = "139674", + text = "helm_mail_raidhunter_c_01_drf.m2", + value = "helm_mail_raidhunter_c_01_drf.m2", }, { - fileId = "343825", - text = "helm_plate_pvpdeathknight_b_04_gof.m2", - value = "helm_plate_pvpdeathknight_b_04_gof.m2", + fileId = "139675", + text = "helm_mail_raidhunter_c_01_drm.m2", + value = "helm_mail_raidhunter_c_01_drm.m2", }, { - fileId = "343826", - text = "helm_plate_pvpdeathknight_b_04_gom.m2", - value = "helm_plate_pvpdeathknight_b_04_gom.m2", + fileId = "139676", + text = "helm_mail_raidhunter_c_01_dwf.m2", + value = "helm_mail_raidhunter_c_01_dwf.m2", }, { - fileId = "343827", - text = "helm_plate_pvpdeathknight_b_04_huf.m2", - value = "helm_plate_pvpdeathknight_b_04_huf.m2", + fileId = "139677", + text = "helm_mail_raidhunter_c_01_dwm.m2", + value = "helm_mail_raidhunter_c_01_dwm.m2", }, { - fileId = "343828", - text = "helm_plate_pvpdeathknight_b_04_hum.m2", - value = "helm_plate_pvpdeathknight_b_04_hum.m2", + fileId = "139678", + text = "helm_mail_raidhunter_c_01_gnf.m2", + value = "helm_mail_raidhunter_c_01_gnf.m2", }, { - fileId = "343829", - text = "helm_plate_pvpdeathknight_b_04_nif.m2", - value = "helm_plate_pvpdeathknight_b_04_nif.m2", + fileId = "139679", + text = "helm_mail_raidhunter_c_01_gnm.m2", + value = "helm_mail_raidhunter_c_01_gnm.m2", }, { - fileId = "343830", - text = "helm_plate_pvpdeathknight_b_04_nim.m2", - value = "helm_plate_pvpdeathknight_b_04_nim.m2", + fileId = "139680", + text = "helm_mail_raidhunter_c_01_gof.m2", + value = "helm_mail_raidhunter_c_01_gof.m2", }, { - fileId = "343831", - text = "helm_plate_pvpdeathknight_b_04_orf.m2", - value = "helm_plate_pvpdeathknight_b_04_orf.m2", + fileId = "139681", + text = "helm_mail_raidhunter_c_01_gom.m2", + value = "helm_mail_raidhunter_c_01_gom.m2", }, { - fileId = "343832", - text = "helm_plate_pvpdeathknight_b_04_orm.m2", - value = "helm_plate_pvpdeathknight_b_04_orm.m2", + fileId = "139682", + text = "helm_mail_raidhunter_c_01_huf.m2", + value = "helm_mail_raidhunter_c_01_huf.m2", }, { - fileId = "343833", - text = "helm_plate_pvpdeathknight_b_04_scf.m2", - value = "helm_plate_pvpdeathknight_b_04_scf.m2", + fileId = "139683", + text = "helm_mail_raidhunter_c_01_hum.m2", + value = "helm_mail_raidhunter_c_01_hum.m2", }, { - fileId = "343834", - text = "helm_plate_pvpdeathknight_b_04_scm.m2", - value = "helm_plate_pvpdeathknight_b_04_scm.m2", + fileId = "139684", + text = "helm_mail_raidhunter_c_01_nif.m2", + value = "helm_mail_raidhunter_c_01_nif.m2", }, { - fileId = "343835", - text = "helm_plate_pvpdeathknight_b_04_taf.m2", - value = "helm_plate_pvpdeathknight_b_04_taf.m2", + fileId = "139685", + text = "helm_mail_raidhunter_c_01_nim.m2", + value = "helm_mail_raidhunter_c_01_nim.m2", }, { - fileId = "343836", - text = "helm_plate_pvpdeathknight_b_04_tam.m2", - value = "helm_plate_pvpdeathknight_b_04_tam.m2", + fileId = "139686", + text = "helm_mail_raidhunter_c_01_orf.m2", + value = "helm_mail_raidhunter_c_01_orf.m2", }, { - fileId = "343837", - text = "helm_plate_pvpdeathknight_b_04_trf.m2", - value = "helm_plate_pvpdeathknight_b_04_trf.m2", + fileId = "139687", + text = "helm_mail_raidhunter_c_01_orm.m2", + value = "helm_mail_raidhunter_c_01_orm.m2", }, { - fileId = "343838", - text = "helm_plate_pvpdeathknight_b_04_trm.m2", - value = "helm_plate_pvpdeathknight_b_04_trm.m2", + fileId = "139688", + text = "helm_mail_raidhunter_c_01_scf.m2", + value = "helm_mail_raidhunter_c_01_scf.m2", }, { - fileId = "140840", - text = "helm_plate_pvphorde_a_01_bef.m2", - value = "helm_plate_pvphorde_a_01_bef.m2", + fileId = "139689", + text = "helm_mail_raidhunter_c_01_scm.m2", + value = "helm_mail_raidhunter_c_01_scm.m2", }, { - fileId = "140841", - text = "helm_plate_pvphorde_a_01_bem.m2", - value = "helm_plate_pvphorde_a_01_bem.m2", + fileId = "139690", + text = "helm_mail_raidhunter_c_01_taf.m2", + value = "helm_mail_raidhunter_c_01_taf.m2", }, { - fileId = "140842", - text = "helm_plate_pvphorde_a_01_drf.m2", - value = "helm_plate_pvphorde_a_01_drf.m2", + fileId = "139691", + text = "helm_mail_raidhunter_c_01_tam.m2", + value = "helm_mail_raidhunter_c_01_tam.m2", }, { - fileId = "140843", - text = "helm_plate_pvphorde_a_01_drm.m2", - value = "helm_plate_pvphorde_a_01_drm.m2", + fileId = "139692", + text = "helm_mail_raidhunter_c_01_trf.m2", + value = "helm_mail_raidhunter_c_01_trf.m2", }, { - fileId = "140844", - text = "helm_plate_pvphorde_a_01_dwf.m2", - value = "helm_plate_pvphorde_a_01_dwf.m2", + fileId = "139693", + text = "helm_mail_raidhunter_c_01_trm.m2", + value = "helm_mail_raidhunter_c_01_trm.m2", }, { - fileId = "140845", - text = "helm_plate_pvphorde_a_01_dwm.m2", - value = "helm_plate_pvphorde_a_01_dwm.m2", + fileId = "454169", + text = "helm_mail_raidhunter_c_01_wof.m2", + value = "helm_mail_raidhunter_c_01_wof.m2", }, { - fileId = "140846", - text = "helm_plate_pvphorde_a_01_gnf.m2", - value = "helm_plate_pvphorde_a_01_gnf.m2", + fileId = "430035", + text = "helm_mail_raidhunter_c_01_wom.m2", + value = "helm_mail_raidhunter_c_01_wom.m2", }, { - fileId = "140847", - text = "helm_plate_pvphorde_a_01_gnm.m2", - value = "helm_plate_pvphorde_a_01_gnm.m2", + fileId = "139696", + text = "helm_mail_raidhunter_d_01_bef.m2", + value = "helm_mail_raidhunter_d_01_bef.m2", }, { - fileId = "140848", - text = "helm_plate_pvphorde_a_01_gof.m2", - value = "helm_plate_pvphorde_a_01_gof.m2", + fileId = "139697", + text = "helm_mail_raidhunter_d_01_bem.m2", + value = "helm_mail_raidhunter_d_01_bem.m2", }, { - fileId = "140849", - text = "helm_plate_pvphorde_a_01_huf.m2", - value = "helm_plate_pvphorde_a_01_huf.m2", + fileId = "139698", + text = "helm_mail_raidhunter_d_01_drf.m2", + value = "helm_mail_raidhunter_d_01_drf.m2", }, { - fileId = "140850", - text = "helm_plate_pvphorde_a_01_hum.m2", - value = "helm_plate_pvphorde_a_01_hum.m2", + fileId = "139699", + text = "helm_mail_raidhunter_d_01_drm.m2", + value = "helm_mail_raidhunter_d_01_drm.m2", }, { - fileId = "140851", - text = "helm_plate_pvphorde_a_01_nif.m2", - value = "helm_plate_pvphorde_a_01_nif.m2", + fileId = "139700", + text = "helm_mail_raidhunter_d_01_dwf.m2", + value = "helm_mail_raidhunter_d_01_dwf.m2", }, { - fileId = "140852", - text = "helm_plate_pvphorde_a_01_nim.m2", - value = "helm_plate_pvphorde_a_01_nim.m2", + fileId = "139701", + text = "helm_mail_raidhunter_d_01_dwm.m2", + value = "helm_mail_raidhunter_d_01_dwm.m2", }, { - fileId = "140853", - text = "helm_plate_pvphorde_a_01_orf.m2", - value = "helm_plate_pvphorde_a_01_orf.m2", + fileId = "139702", + text = "helm_mail_raidhunter_d_01_gnf.m2", + value = "helm_mail_raidhunter_d_01_gnf.m2", }, { - fileId = "140854", - text = "helm_plate_pvphorde_a_01_orm.m2", - value = "helm_plate_pvphorde_a_01_orm.m2", + fileId = "139703", + text = "helm_mail_raidhunter_d_01_gnm.m2", + value = "helm_mail_raidhunter_d_01_gnm.m2", }, { - fileId = "140855", - text = "helm_plate_pvphorde_a_01_scf.m2", - value = "helm_plate_pvphorde_a_01_scf.m2", + fileId = "405683", + text = "helm_mail_raidhunter_d_01_gof.m2", + value = "helm_mail_raidhunter_d_01_gof.m2", }, { - fileId = "140856", - text = "helm_plate_pvphorde_a_01_scm.m2", - value = "helm_plate_pvphorde_a_01_scm.m2", - }, - { - fileId = "140857", - text = "helm_plate_pvphorde_a_01_taf.m2", - value = "helm_plate_pvphorde_a_01_taf.m2", + fileId = "139704", + text = "helm_mail_raidhunter_d_01_gom.m2", + value = "helm_mail_raidhunter_d_01_gom.m2", }, { - fileId = "140858", - text = "helm_plate_pvphorde_a_01_tam.m2", - value = "helm_plate_pvphorde_a_01_tam.m2", + fileId = "139705", + text = "helm_mail_raidhunter_d_01_huf.m2", + value = "helm_mail_raidhunter_d_01_huf.m2", }, { - fileId = "140859", - text = "helm_plate_pvphorde_a_01_trf.m2", - value = "helm_plate_pvphorde_a_01_trf.m2", + fileId = "139706", + text = "helm_mail_raidhunter_d_01_hum.m2", + value = "helm_mail_raidhunter_d_01_hum.m2", }, { - fileId = "140860", - text = "helm_plate_pvphorde_a_01_trm.m2", - value = "helm_plate_pvphorde_a_01_trm.m2", + fileId = "139707", + text = "helm_mail_raidhunter_d_01_nif.m2", + value = "helm_mail_raidhunter_d_01_nif.m2", }, { - fileId = "140862", - text = "helm_plate_pvphorde_b_01_bem.m2", - value = "helm_plate_pvphorde_b_01_bem.m2", + fileId = "139708", + text = "helm_mail_raidhunter_d_01_nim.m2", + value = "helm_mail_raidhunter_d_01_nim.m2", }, { - fileId = "238113", - text = "helm_plate_pvppaladin_b_01_bef.m2", - value = "helm_plate_pvppaladin_b_01_bef.m2", + fileId = "139709", + text = "helm_mail_raidhunter_d_01_orf.m2", + value = "helm_mail_raidhunter_d_01_orf.m2", }, { - fileId = "238114", - text = "helm_plate_pvppaladin_b_01_bem.m2", - value = "helm_plate_pvppaladin_b_01_bem.m2", + fileId = "139710", + text = "helm_mail_raidhunter_d_01_orm.m2", + value = "helm_mail_raidhunter_d_01_orm.m2", }, { - fileId = "238115", - text = "helm_plate_pvppaladin_b_01_drf.m2", - value = "helm_plate_pvppaladin_b_01_drf.m2", + fileId = "139711", + text = "helm_mail_raidhunter_d_01_scf.m2", + value = "helm_mail_raidhunter_d_01_scf.m2", }, { - fileId = "238116", - text = "helm_plate_pvppaladin_b_01_drm.m2", - value = "helm_plate_pvppaladin_b_01_drm.m2", + fileId = "139712", + text = "helm_mail_raidhunter_d_01_scm.m2", + value = "helm_mail_raidhunter_d_01_scm.m2", }, { - fileId = "238117", - text = "helm_plate_pvppaladin_b_01_dwf.m2", - value = "helm_plate_pvppaladin_b_01_dwf.m2", + fileId = "139713", + text = "helm_mail_raidhunter_d_01_taf.m2", + value = "helm_mail_raidhunter_d_01_taf.m2", }, { - fileId = "238118", - text = "helm_plate_pvppaladin_b_01_dwm.m2", - value = "helm_plate_pvppaladin_b_01_dwm.m2", + fileId = "139714", + text = "helm_mail_raidhunter_d_01_tam.m2", + value = "helm_mail_raidhunter_d_01_tam.m2", }, { - fileId = "238119", - text = "helm_plate_pvppaladin_b_01_gnf.m2", - value = "helm_plate_pvppaladin_b_01_gnf.m2", + fileId = "139715", + text = "helm_mail_raidhunter_d_01_trf.m2", + value = "helm_mail_raidhunter_d_01_trf.m2", }, { - fileId = "238120", - text = "helm_plate_pvppaladin_b_01_gnm.m2", - value = "helm_plate_pvppaladin_b_01_gnm.m2", + fileId = "139716", + text = "helm_mail_raidhunter_d_01_trm.m2", + value = "helm_mail_raidhunter_d_01_trm.m2", }, { - fileId = "238121", - text = "helm_plate_pvppaladin_b_01_gof.m2", - value = "helm_plate_pvppaladin_b_01_gof.m2", + fileId = "454170", + text = "helm_mail_raidhunter_d_01_wof.m2", + value = "helm_mail_raidhunter_d_01_wof.m2", }, { - fileId = "238122", - text = "helm_plate_pvppaladin_b_01_gom.m2", - value = "helm_plate_pvppaladin_b_01_gom.m2", + fileId = "430036", + text = "helm_mail_raidhunter_d_01_wom.m2", + value = "helm_mail_raidhunter_d_01_wom.m2", }, { - fileId = "238123", - text = "helm_plate_pvppaladin_b_01_huf.m2", - value = "helm_plate_pvppaladin_b_01_huf.m2", + fileId = "139719", + text = "helm_mail_raidhunter_e_01_bef.m2", + value = "helm_mail_raidhunter_e_01_bef.m2", }, { - fileId = "238124", - text = "helm_plate_pvppaladin_b_01_hum.m2", - value = "helm_plate_pvppaladin_b_01_hum.m2", + fileId = "139720", + text = "helm_mail_raidhunter_e_01_bem.m2", + value = "helm_mail_raidhunter_e_01_bem.m2", }, { - fileId = "238125", - text = "helm_plate_pvppaladin_b_01_nif.m2", - value = "helm_plate_pvppaladin_b_01_nif.m2", + fileId = "139721", + text = "helm_mail_raidhunter_e_01_drf.m2", + value = "helm_mail_raidhunter_e_01_drf.m2", }, { - fileId = "238126", - text = "helm_plate_pvppaladin_b_01_nim.m2", - value = "helm_plate_pvppaladin_b_01_nim.m2", + fileId = "139722", + text = "helm_mail_raidhunter_e_01_drm.m2", + value = "helm_mail_raidhunter_e_01_drm.m2", }, { - fileId = "238127", - text = "helm_plate_pvppaladin_b_01_orf.m2", - value = "helm_plate_pvppaladin_b_01_orf.m2", + fileId = "139723", + text = "helm_mail_raidhunter_e_01_dwf.m2", + value = "helm_mail_raidhunter_e_01_dwf.m2", }, { - fileId = "238128", - text = "helm_plate_pvppaladin_b_01_orm.m2", - value = "helm_plate_pvppaladin_b_01_orm.m2", + fileId = "139724", + text = "helm_mail_raidhunter_e_01_dwm.m2", + value = "helm_mail_raidhunter_e_01_dwm.m2", }, { - fileId = "238129", - text = "helm_plate_pvppaladin_b_01_scf.m2", - value = "helm_plate_pvppaladin_b_01_scf.m2", + fileId = "139725", + text = "helm_mail_raidhunter_e_01_gnf.m2", + value = "helm_mail_raidhunter_e_01_gnf.m2", }, { - fileId = "238130", - text = "helm_plate_pvppaladin_b_01_scm.m2", - value = "helm_plate_pvppaladin_b_01_scm.m2", + fileId = "139726", + text = "helm_mail_raidhunter_e_01_gnm.m2", + value = "helm_mail_raidhunter_e_01_gnm.m2", }, { - fileId = "238131", - text = "helm_plate_pvppaladin_b_01_taf.m2", - value = "helm_plate_pvppaladin_b_01_taf.m2", + fileId = "139727", + text = "helm_mail_raidhunter_e_01_gof.m2", + value = "helm_mail_raidhunter_e_01_gof.m2", }, { - fileId = "238132", - text = "helm_plate_pvppaladin_b_01_tam.m2", - value = "helm_plate_pvppaladin_b_01_tam.m2", + fileId = "139728", + text = "helm_mail_raidhunter_e_01_gom.m2", + value = "helm_mail_raidhunter_e_01_gom.m2", }, { - fileId = "238133", - text = "helm_plate_pvppaladin_b_01_trf.m2", - value = "helm_plate_pvppaladin_b_01_trf.m2", + fileId = "139729", + text = "helm_mail_raidhunter_e_01_huf.m2", + value = "helm_mail_raidhunter_e_01_huf.m2", }, { - fileId = "238134", - text = "helm_plate_pvppaladin_b_01_trm.m2", - value = "helm_plate_pvppaladin_b_01_trm.m2", + fileId = "139730", + text = "helm_mail_raidhunter_e_01_hum.m2", + value = "helm_mail_raidhunter_e_01_hum.m2", }, { - fileId = "254723", - text = "helm_plate_pvppaladin_b_02_bef.m2", - value = "helm_plate_pvppaladin_b_02_bef.m2", + fileId = "139731", + text = "helm_mail_raidhunter_e_01_nif.m2", + value = "helm_mail_raidhunter_e_01_nif.m2", }, { - fileId = "254724", - text = "helm_plate_pvppaladin_b_02_bem.m2", - value = "helm_plate_pvppaladin_b_02_bem.m2", + fileId = "139732", + text = "helm_mail_raidhunter_e_01_nim.m2", + value = "helm_mail_raidhunter_e_01_nim.m2", }, { - fileId = "254725", - text = "helm_plate_pvppaladin_b_02_drf.m2", - value = "helm_plate_pvppaladin_b_02_drf.m2", + fileId = "139733", + text = "helm_mail_raidhunter_e_01_orf.m2", + value = "helm_mail_raidhunter_e_01_orf.m2", }, { - fileId = "254726", - text = "helm_plate_pvppaladin_b_02_drm.m2", - value = "helm_plate_pvppaladin_b_02_drm.m2", + fileId = "139734", + text = "helm_mail_raidhunter_e_01_orm.m2", + value = "helm_mail_raidhunter_e_01_orm.m2", }, { - fileId = "254744", - text = "helm_plate_pvppaladin_b_02_dwf.m2", - value = "helm_plate_pvppaladin_b_02_dwf.m2", + fileId = "139735", + text = "helm_mail_raidhunter_e_01_scf.m2", + value = "helm_mail_raidhunter_e_01_scf.m2", }, { - fileId = "254727", - text = "helm_plate_pvppaladin_b_02_dwm.m2", - value = "helm_plate_pvppaladin_b_02_dwm.m2", + fileId = "139736", + text = "helm_mail_raidhunter_e_01_scm.m2", + value = "helm_mail_raidhunter_e_01_scm.m2", }, { - fileId = "254745", - text = "helm_plate_pvppaladin_b_02_gnf.m2", - value = "helm_plate_pvppaladin_b_02_gnf.m2", + fileId = "139737", + text = "helm_mail_raidhunter_e_01_taf.m2", + value = "helm_mail_raidhunter_e_01_taf.m2", }, { - fileId = "254746", - text = "helm_plate_pvppaladin_b_02_gnm.m2", - value = "helm_plate_pvppaladin_b_02_gnm.m2", + fileId = "139738", + text = "helm_mail_raidhunter_e_01_tam.m2", + value = "helm_mail_raidhunter_e_01_tam.m2", }, { - fileId = "254747", - text = "helm_plate_pvppaladin_b_02_gof.m2", - value = "helm_plate_pvppaladin_b_02_gof.m2", + fileId = "139739", + text = "helm_mail_raidhunter_e_01_trf.m2", + value = "helm_mail_raidhunter_e_01_trf.m2", }, { - fileId = "254748", - text = "helm_plate_pvppaladin_b_02_gom.m2", - value = "helm_plate_pvppaladin_b_02_gom.m2", + fileId = "139740", + text = "helm_mail_raidhunter_e_01_trm.m2", + value = "helm_mail_raidhunter_e_01_trm.m2", }, { - fileId = "254728", - text = "helm_plate_pvppaladin_b_02_huf.m2", - value = "helm_plate_pvppaladin_b_02_huf.m2", + fileId = "454171", + text = "helm_mail_raidhunter_e_01_wof.m2", + value = "helm_mail_raidhunter_e_01_wof.m2", }, { - fileId = "254729", - text = "helm_plate_pvppaladin_b_02_hum.m2", - value = "helm_plate_pvppaladin_b_02_hum.m2", + fileId = "430037", + text = "helm_mail_raidhunter_e_01_wom.m2", + value = "helm_mail_raidhunter_e_01_wom.m2", }, { - fileId = "254749", - text = "helm_plate_pvppaladin_b_02_nif.m2", - value = "helm_plate_pvppaladin_b_02_nif.m2", + fileId = "139743", + text = "helm_mail_raidhunter_f_01_bef.m2", + value = "helm_mail_raidhunter_f_01_bef.m2", }, { - fileId = "254750", - text = "helm_plate_pvppaladin_b_02_nim.m2", - value = "helm_plate_pvppaladin_b_02_nim.m2", + fileId = "139744", + text = "helm_mail_raidhunter_f_01_bem.m2", + value = "helm_mail_raidhunter_f_01_bem.m2", }, { - fileId = "254751", - text = "helm_plate_pvppaladin_b_02_orf.m2", - value = "helm_plate_pvppaladin_b_02_orf.m2", + fileId = "139745", + text = "helm_mail_raidhunter_f_01_drf.m2", + value = "helm_mail_raidhunter_f_01_drf.m2", }, { - fileId = "254752", - text = "helm_plate_pvppaladin_b_02_orm.m2", - value = "helm_plate_pvppaladin_b_02_orm.m2", + fileId = "139746", + text = "helm_mail_raidhunter_f_01_drm.m2", + value = "helm_mail_raidhunter_f_01_drm.m2", }, { - fileId = "254753", - text = "helm_plate_pvppaladin_b_02_scf.m2", - value = "helm_plate_pvppaladin_b_02_scf.m2", + fileId = "139747", + text = "helm_mail_raidhunter_f_01_dwf.m2", + value = "helm_mail_raidhunter_f_01_dwf.m2", }, { - fileId = "254754", - text = "helm_plate_pvppaladin_b_02_scm.m2", - value = "helm_plate_pvppaladin_b_02_scm.m2", + fileId = "139748", + text = "helm_mail_raidhunter_f_01_dwm.m2", + value = "helm_mail_raidhunter_f_01_dwm.m2", }, { - fileId = "254755", - text = "helm_plate_pvppaladin_b_02_taf.m2", - value = "helm_plate_pvppaladin_b_02_taf.m2", + fileId = "139749", + text = "helm_mail_raidhunter_f_01_gnf.m2", + value = "helm_mail_raidhunter_f_01_gnf.m2", }, { - fileId = "254756", - text = "helm_plate_pvppaladin_b_02_tam.m2", - value = "helm_plate_pvppaladin_b_02_tam.m2", + fileId = "139750", + text = "helm_mail_raidhunter_f_01_gnm.m2", + value = "helm_mail_raidhunter_f_01_gnm.m2", }, { - fileId = "254757", - text = "helm_plate_pvppaladin_b_02_trf.m2", - value = "helm_plate_pvppaladin_b_02_trf.m2", + fileId = "139751", + text = "helm_mail_raidhunter_f_01_gof.m2", + value = "helm_mail_raidhunter_f_01_gof.m2", }, { - fileId = "254758", - text = "helm_plate_pvppaladin_b_02_trm.m2", - value = "helm_plate_pvppaladin_b_02_trm.m2", + fileId = "139752", + text = "helm_mail_raidhunter_f_01_gom.m2", + value = "helm_mail_raidhunter_f_01_gom.m2", }, { - fileId = "304848", - text = "helm_plate_pvppaladin_b_03_bef.m2", - value = "helm_plate_pvppaladin_b_03_bef.m2", + fileId = "139753", + text = "helm_mail_raidhunter_f_01_huf.m2", + value = "helm_mail_raidhunter_f_01_huf.m2", }, { - fileId = "304849", - text = "helm_plate_pvppaladin_b_03_bem.m2", - value = "helm_plate_pvppaladin_b_03_bem.m2", + fileId = "139754", + text = "helm_mail_raidhunter_f_01_hum.m2", + value = "helm_mail_raidhunter_f_01_hum.m2", }, { - fileId = "304850", - text = "helm_plate_pvppaladin_b_03_drf.m2", - value = "helm_plate_pvppaladin_b_03_drf.m2", + fileId = "139755", + text = "helm_mail_raidhunter_f_01_nif.m2", + value = "helm_mail_raidhunter_f_01_nif.m2", }, { - fileId = "304851", - text = "helm_plate_pvppaladin_b_03_drm.m2", - value = "helm_plate_pvppaladin_b_03_drm.m2", + fileId = "139756", + text = "helm_mail_raidhunter_f_01_nim.m2", + value = "helm_mail_raidhunter_f_01_nim.m2", }, { - fileId = "304852", - text = "helm_plate_pvppaladin_b_03_dwf.m2", - value = "helm_plate_pvppaladin_b_03_dwf.m2", + fileId = "139757", + text = "helm_mail_raidhunter_f_01_orf.m2", + value = "helm_mail_raidhunter_f_01_orf.m2", }, { - fileId = "304853", - text = "helm_plate_pvppaladin_b_03_dwm.m2", - value = "helm_plate_pvppaladin_b_03_dwm.m2", + fileId = "139758", + text = "helm_mail_raidhunter_f_01_orm.m2", + value = "helm_mail_raidhunter_f_01_orm.m2", }, { - fileId = "304854", - text = "helm_plate_pvppaladin_b_03_gnf.m2", - value = "helm_plate_pvppaladin_b_03_gnf.m2", + fileId = "139759", + text = "helm_mail_raidhunter_f_01_scf.m2", + value = "helm_mail_raidhunter_f_01_scf.m2", }, { - fileId = "304858", - text = "helm_plate_pvppaladin_b_03_gnm.m2", - value = "helm_plate_pvppaladin_b_03_gnm.m2", + fileId = "139760", + text = "helm_mail_raidhunter_f_01_scm.m2", + value = "helm_mail_raidhunter_f_01_scm.m2", }, { - fileId = "304859", - text = "helm_plate_pvppaladin_b_03_gof.m2", - value = "helm_plate_pvppaladin_b_03_gof.m2", + fileId = "139761", + text = "helm_mail_raidhunter_f_01_taf.m2", + value = "helm_mail_raidhunter_f_01_taf.m2", }, { - fileId = "304860", - text = "helm_plate_pvppaladin_b_03_gom.m2", - value = "helm_plate_pvppaladin_b_03_gom.m2", + fileId = "139762", + text = "helm_mail_raidhunter_f_01_tam.m2", + value = "helm_mail_raidhunter_f_01_tam.m2", }, { - fileId = "304861", - text = "helm_plate_pvppaladin_b_03_huf.m2", - value = "helm_plate_pvppaladin_b_03_huf.m2", + fileId = "139763", + text = "helm_mail_raidhunter_f_01_trf.m2", + value = "helm_mail_raidhunter_f_01_trf.m2", }, { - fileId = "304862", - text = "helm_plate_pvppaladin_b_03_hum.m2", - value = "helm_plate_pvppaladin_b_03_hum.m2", + fileId = "139764", + text = "helm_mail_raidhunter_f_01_trm.m2", + value = "helm_mail_raidhunter_f_01_trm.m2", }, { - fileId = "304863", - text = "helm_plate_pvppaladin_b_03_nif.m2", - value = "helm_plate_pvppaladin_b_03_nif.m2", + fileId = "454172", + text = "helm_mail_raidhunter_f_01_wof.m2", + value = "helm_mail_raidhunter_f_01_wof.m2", }, { - fileId = "304864", - text = "helm_plate_pvppaladin_b_03_nim.m2", - value = "helm_plate_pvppaladin_b_03_nim.m2", + fileId = "430038", + text = "helm_mail_raidhunter_f_01_wom.m2", + value = "helm_mail_raidhunter_f_01_wom.m2", }, { - fileId = "304865", - text = "helm_plate_pvppaladin_b_03_orf.m2", - value = "helm_plate_pvppaladin_b_03_orf.m2", + fileId = "139770", + text = "helm_mail_raidhunter_g_01_bef.m2", + value = "helm_mail_raidhunter_g_01_bef.m2", }, { - fileId = "304866", - text = "helm_plate_pvppaladin_b_03_orm.m2", - value = "helm_plate_pvppaladin_b_03_orm.m2", + fileId = "139771", + text = "helm_mail_raidhunter_g_01_bem.m2", + value = "helm_mail_raidhunter_g_01_bem.m2", }, { - fileId = "304867", - text = "helm_plate_pvppaladin_b_03_scf.m2", - value = "helm_plate_pvppaladin_b_03_scf.m2", + fileId = "139772", + text = "helm_mail_raidhunter_g_01_drf.m2", + value = "helm_mail_raidhunter_g_01_drf.m2", }, { - fileId = "304868", - text = "helm_plate_pvppaladin_b_03_scm.m2", - value = "helm_plate_pvppaladin_b_03_scm.m2", + fileId = "139773", + text = "helm_mail_raidhunter_g_01_drm.m2", + value = "helm_mail_raidhunter_g_01_drm.m2", }, { - fileId = "304869", - text = "helm_plate_pvppaladin_b_03_taf.m2", - value = "helm_plate_pvppaladin_b_03_taf.m2", + fileId = "139774", + text = "helm_mail_raidhunter_g_01_dwf.m2", + value = "helm_mail_raidhunter_g_01_dwf.m2", }, { - fileId = "304870", - text = "helm_plate_pvppaladin_b_03_tam.m2", - value = "helm_plate_pvppaladin_b_03_tam.m2", + fileId = "139775", + text = "helm_mail_raidhunter_g_01_dwm.m2", + value = "helm_mail_raidhunter_g_01_dwm.m2", }, { - fileId = "304871", - text = "helm_plate_pvppaladin_b_03_trf.m2", - value = "helm_plate_pvppaladin_b_03_trf.m2", + fileId = "139776", + text = "helm_mail_raidhunter_g_01_gnf.m2", + value = "helm_mail_raidhunter_g_01_gnf.m2", }, { - fileId = "304882", - text = "helm_plate_pvppaladin_b_03_trm.m2", - value = "helm_plate_pvppaladin_b_03_trm.m2", + fileId = "139777", + text = "helm_mail_raidhunter_g_01_gnm.m2", + value = "helm_mail_raidhunter_g_01_gnm.m2", }, { - fileId = "346952", - text = "helm_plate_pvppaladin_b_04_bef.m2", - value = "helm_plate_pvppaladin_b_04_bef.m2", + fileId = "139778", + text = "helm_mail_raidhunter_g_01_gof.m2", + value = "helm_mail_raidhunter_g_01_gof.m2", }, { - fileId = "346953", - text = "helm_plate_pvppaladin_b_04_bem.m2", - value = "helm_plate_pvppaladin_b_04_bem.m2", + fileId = "139779", + text = "helm_mail_raidhunter_g_01_gom.m2", + value = "helm_mail_raidhunter_g_01_gom.m2", }, { - fileId = "346954", - text = "helm_plate_pvppaladin_b_04_drf.m2", - value = "helm_plate_pvppaladin_b_04_drf.m2", + fileId = "139780", + text = "helm_mail_raidhunter_g_01_huf.m2", + value = "helm_mail_raidhunter_g_01_huf.m2", }, { - fileId = "346955", - text = "helm_plate_pvppaladin_b_04_drm.m2", - value = "helm_plate_pvppaladin_b_04_drm.m2", + fileId = "139781", + text = "helm_mail_raidhunter_g_01_hum.m2", + value = "helm_mail_raidhunter_g_01_hum.m2", }, { - fileId = "346956", - text = "helm_plate_pvppaladin_b_04_dwf.m2", - value = "helm_plate_pvppaladin_b_04_dwf.m2", + fileId = "139782", + text = "helm_mail_raidhunter_g_01_nif.m2", + value = "helm_mail_raidhunter_g_01_nif.m2", }, { - fileId = "346957", - text = "helm_plate_pvppaladin_b_04_dwm.m2", - value = "helm_plate_pvppaladin_b_04_dwm.m2", + fileId = "139783", + text = "helm_mail_raidhunter_g_01_nim.m2", + value = "helm_mail_raidhunter_g_01_nim.m2", }, { - fileId = "346958", - text = "helm_plate_pvppaladin_b_04_gnf.m2", - value = "helm_plate_pvppaladin_b_04_gnf.m2", + fileId = "139784", + text = "helm_mail_raidhunter_g_01_orf.m2", + value = "helm_mail_raidhunter_g_01_orf.m2", }, { - fileId = "346959", - text = "helm_plate_pvppaladin_b_04_gnm.m2", - value = "helm_plate_pvppaladin_b_04_gnm.m2", + fileId = "139785", + text = "helm_mail_raidhunter_g_01_orm.m2", + value = "helm_mail_raidhunter_g_01_orm.m2", }, { - fileId = "346960", - text = "helm_plate_pvppaladin_b_04_gof.m2", - value = "helm_plate_pvppaladin_b_04_gof.m2", + fileId = "139786", + text = "helm_mail_raidhunter_g_01_scf.m2", + value = "helm_mail_raidhunter_g_01_scf.m2", }, { - fileId = "346961", - text = "helm_plate_pvppaladin_b_04_gom.m2", - value = "helm_plate_pvppaladin_b_04_gom.m2", + fileId = "139787", + text = "helm_mail_raidhunter_g_01_scm.m2", + value = "helm_mail_raidhunter_g_01_scm.m2", }, { - fileId = "346962", - text = "helm_plate_pvppaladin_b_04_huf.m2", - value = "helm_plate_pvppaladin_b_04_huf.m2", + fileId = "139788", + text = "helm_mail_raidhunter_g_01_taf.m2", + value = "helm_mail_raidhunter_g_01_taf.m2", }, { - fileId = "346963", - text = "helm_plate_pvppaladin_b_04_hum.m2", - value = "helm_plate_pvppaladin_b_04_hum.m2", + fileId = "139789", + text = "helm_mail_raidhunter_g_01_tam.m2", + value = "helm_mail_raidhunter_g_01_tam.m2", }, { - fileId = "346964", - text = "helm_plate_pvppaladin_b_04_nif.m2", - value = "helm_plate_pvppaladin_b_04_nif.m2", + fileId = "139790", + text = "helm_mail_raidhunter_g_01_trf.m2", + value = "helm_mail_raidhunter_g_01_trf.m2", }, { - fileId = "346965", - text = "helm_plate_pvppaladin_b_04_nim.m2", - value = "helm_plate_pvppaladin_b_04_nim.m2", + fileId = "139791", + text = "helm_mail_raidhunter_g_01_trm.m2", + value = "helm_mail_raidhunter_g_01_trm.m2", }, { - fileId = "346966", - text = "helm_plate_pvppaladin_b_04_orf.m2", - value = "helm_plate_pvppaladin_b_04_orf.m2", + fileId = "454173", + text = "helm_mail_raidhunter_g_01_wof.m2", + value = "helm_mail_raidhunter_g_01_wof.m2", }, { - fileId = "346967", - text = "helm_plate_pvppaladin_b_04_orm.m2", - value = "helm_plate_pvppaladin_b_04_orm.m2", + fileId = "430039", + text = "helm_mail_raidhunter_g_01_wom.m2", + value = "helm_mail_raidhunter_g_01_wom.m2", }, { - fileId = "346968", - text = "helm_plate_pvppaladin_b_04_scf.m2", - value = "helm_plate_pvppaladin_b_04_scf.m2", + fileId = "337168", + text = "helm_mail_raidhunter_h_01_bef.m2", + value = "helm_mail_raidhunter_h_01_bef.m2", }, { - fileId = "346969", - text = "helm_plate_pvppaladin_b_04_scm.m2", - value = "helm_plate_pvppaladin_b_04_scm.m2", + fileId = "337169", + text = "helm_mail_raidhunter_h_01_bem.m2", + value = "helm_mail_raidhunter_h_01_bem.m2", }, { - fileId = "346970", - text = "helm_plate_pvppaladin_b_04_taf.m2", - value = "helm_plate_pvppaladin_b_04_taf.m2", + fileId = "337170", + text = "helm_mail_raidhunter_h_01_drf.m2", + value = "helm_mail_raidhunter_h_01_drf.m2", }, { - fileId = "346971", - text = "helm_plate_pvppaladin_b_04_tam.m2", - value = "helm_plate_pvppaladin_b_04_tam.m2", + fileId = "337171", + text = "helm_mail_raidhunter_h_01_drm.m2", + value = "helm_mail_raidhunter_h_01_drm.m2", }, { - fileId = "346972", - text = "helm_plate_pvppaladin_b_04_trf.m2", - value = "helm_plate_pvppaladin_b_04_trf.m2", + fileId = "337172", + text = "helm_mail_raidhunter_h_01_dwf.m2", + value = "helm_mail_raidhunter_h_01_dwf.m2", }, { - fileId = "346973", - text = "helm_plate_pvppaladin_b_04_trm.m2", - value = "helm_plate_pvppaladin_b_04_trm.m2", + fileId = "337173", + text = "helm_mail_raidhunter_h_01_dwm.m2", + value = "helm_mail_raidhunter_h_01_dwm.m2", }, { - fileId = "238139", - text = "helm_plate_pvpwarrior_b_01_bef.m2", - value = "helm_plate_pvpwarrior_b_01_bef.m2", + fileId = "337174", + text = "helm_mail_raidhunter_h_01_gnf.m2", + value = "helm_mail_raidhunter_h_01_gnf.m2", }, { - fileId = "238140", - text = "helm_plate_pvpwarrior_b_01_bem.m2", - value = "helm_plate_pvpwarrior_b_01_bem.m2", + fileId = "337175", + text = "helm_mail_raidhunter_h_01_gnm.m2", + value = "helm_mail_raidhunter_h_01_gnm.m2", }, { - fileId = "238141", - text = "helm_plate_pvpwarrior_b_01_drf.m2", - value = "helm_plate_pvpwarrior_b_01_drf.m2", + fileId = "337176", + text = "helm_mail_raidhunter_h_01_gof.m2", + value = "helm_mail_raidhunter_h_01_gof.m2", }, { - fileId = "238142", - text = "helm_plate_pvpwarrior_b_01_drm.m2", - value = "helm_plate_pvpwarrior_b_01_drm.m2", + fileId = "337177", + text = "helm_mail_raidhunter_h_01_gom.m2", + value = "helm_mail_raidhunter_h_01_gom.m2", }, { - fileId = "238143", - text = "helm_plate_pvpwarrior_b_01_dwf.m2", - value = "helm_plate_pvpwarrior_b_01_dwf.m2", + fileId = "337178", + text = "helm_mail_raidhunter_h_01_huf.m2", + value = "helm_mail_raidhunter_h_01_huf.m2", }, { - fileId = "238144", - text = "helm_plate_pvpwarrior_b_01_dwm.m2", - value = "helm_plate_pvpwarrior_b_01_dwm.m2", + fileId = "337179", + text = "helm_mail_raidhunter_h_01_hum.m2", + value = "helm_mail_raidhunter_h_01_hum.m2", }, { - fileId = "238145", - text = "helm_plate_pvpwarrior_b_01_gnf.m2", - value = "helm_plate_pvpwarrior_b_01_gnf.m2", + fileId = "337180", + text = "helm_mail_raidhunter_h_01_nif.m2", + value = "helm_mail_raidhunter_h_01_nif.m2", }, { - fileId = "238146", - text = "helm_plate_pvpwarrior_b_01_gnm.m2", - value = "helm_plate_pvpwarrior_b_01_gnm.m2", + fileId = "337181", + text = "helm_mail_raidhunter_h_01_nim.m2", + value = "helm_mail_raidhunter_h_01_nim.m2", }, { - fileId = "238147", - text = "helm_plate_pvpwarrior_b_01_gof.m2", - value = "helm_plate_pvpwarrior_b_01_gof.m2", + fileId = "337182", + text = "helm_mail_raidhunter_h_01_orf.m2", + value = "helm_mail_raidhunter_h_01_orf.m2", }, { - fileId = "238148", - text = "helm_plate_pvpwarrior_b_01_gom.m2", - value = "helm_plate_pvpwarrior_b_01_gom.m2", + fileId = "337183", + text = "helm_mail_raidhunter_h_01_orm.m2", + value = "helm_mail_raidhunter_h_01_orm.m2", }, { - fileId = "238149", - text = "helm_plate_pvpwarrior_b_01_huf.m2", - value = "helm_plate_pvpwarrior_b_01_huf.m2", + fileId = "337184", + text = "helm_mail_raidhunter_h_01_scf.m2", + value = "helm_mail_raidhunter_h_01_scf.m2", }, { - fileId = "238150", - text = "helm_plate_pvpwarrior_b_01_hum.m2", - value = "helm_plate_pvpwarrior_b_01_hum.m2", + fileId = "337185", + text = "helm_mail_raidhunter_h_01_scm.m2", + value = "helm_mail_raidhunter_h_01_scm.m2", }, { - fileId = "238151", - text = "helm_plate_pvpwarrior_b_01_nif.m2", - value = "helm_plate_pvpwarrior_b_01_nif.m2", + fileId = "337186", + text = "helm_mail_raidhunter_h_01_taf.m2", + value = "helm_mail_raidhunter_h_01_taf.m2", }, { - fileId = "238152", - text = "helm_plate_pvpwarrior_b_01_nim.m2", - value = "helm_plate_pvpwarrior_b_01_nim.m2", + fileId = "337187", + text = "helm_mail_raidhunter_h_01_tam.m2", + value = "helm_mail_raidhunter_h_01_tam.m2", }, { - fileId = "238153", - text = "helm_plate_pvpwarrior_b_01_orf.m2", - value = "helm_plate_pvpwarrior_b_01_orf.m2", + fileId = "337188", + text = "helm_mail_raidhunter_h_01_trf.m2", + value = "helm_mail_raidhunter_h_01_trf.m2", }, { - fileId = "238154", - text = "helm_plate_pvpwarrior_b_01_orm.m2", - value = "helm_plate_pvpwarrior_b_01_orm.m2", + fileId = "337189", + text = "helm_mail_raidhunter_h_01_trm.m2", + value = "helm_mail_raidhunter_h_01_trm.m2", }, { - fileId = "238155", - text = "helm_plate_pvpwarrior_b_01_scf.m2", - value = "helm_plate_pvpwarrior_b_01_scf.m2", + fileId = "454174", + text = "helm_mail_raidhunter_h_01_wof.m2", + value = "helm_mail_raidhunter_h_01_wof.m2", }, { - fileId = "238156", - text = "helm_plate_pvpwarrior_b_01_scm.m2", - value = "helm_plate_pvpwarrior_b_01_scm.m2", + fileId = "430040", + text = "helm_mail_raidhunter_h_01_wom.m2", + value = "helm_mail_raidhunter_h_01_wom.m2", }, { - fileId = "238157", - text = "helm_plate_pvpwarrior_b_01_taf.m2", - value = "helm_plate_pvpwarrior_b_01_taf.m2", + fileId = "466290", + text = "helm_mail_raidhunter_i_01_bef.m2", + value = "helm_mail_raidhunter_i_01_bef.m2", }, { - fileId = "238158", - text = "helm_plate_pvpwarrior_b_01_tam.m2", - value = "helm_plate_pvpwarrior_b_01_tam.m2", + fileId = "466291", + text = "helm_mail_raidhunter_i_01_bem.m2", + value = "helm_mail_raidhunter_i_01_bem.m2", }, { - fileId = "238159", - text = "helm_plate_pvpwarrior_b_01_trf.m2", - value = "helm_plate_pvpwarrior_b_01_trf.m2", + fileId = "466292", + text = "helm_mail_raidhunter_i_01_drf.m2", + value = "helm_mail_raidhunter_i_01_drf.m2", }, { - fileId = "238160", - text = "helm_plate_pvpwarrior_b_01_trm.m2", - value = "helm_plate_pvpwarrior_b_01_trm.m2", + fileId = "466293", + text = "helm_mail_raidhunter_i_01_drm.m2", + value = "helm_mail_raidhunter_i_01_drm.m2", }, { - fileId = "254383", - text = "helm_plate_pvpwarrior_b_02_bef.m2", - value = "helm_plate_pvpwarrior_b_02_bef.m2", + fileId = "466294", + text = "helm_mail_raidhunter_i_01_dwf.m2", + value = "helm_mail_raidhunter_i_01_dwf.m2", }, { - fileId = "254384", - text = "helm_plate_pvpwarrior_b_02_bem.m2", - value = "helm_plate_pvpwarrior_b_02_bem.m2", + fileId = "466295", + text = "helm_mail_raidhunter_i_01_dwm.m2", + value = "helm_mail_raidhunter_i_01_dwm.m2", }, { - fileId = "254385", - text = "helm_plate_pvpwarrior_b_02_drf.m2", - value = "helm_plate_pvpwarrior_b_02_drf.m2", + fileId = "466296", + text = "helm_mail_raidhunter_i_01_gnf.m2", + value = "helm_mail_raidhunter_i_01_gnf.m2", }, { - fileId = "254386", - text = "helm_plate_pvpwarrior_b_02_drm.m2", - value = "helm_plate_pvpwarrior_b_02_drm.m2", + fileId = "466297", + text = "helm_mail_raidhunter_i_01_gnm.m2", + value = "helm_mail_raidhunter_i_01_gnm.m2", }, { - fileId = "254387", - text = "helm_plate_pvpwarrior_b_02_dwf.m2", - value = "helm_plate_pvpwarrior_b_02_dwf.m2", + fileId = "466298", + text = "helm_mail_raidhunter_i_01_gof.m2", + value = "helm_mail_raidhunter_i_01_gof.m2", }, { - fileId = "254388", - text = "helm_plate_pvpwarrior_b_02_dwm.m2", - value = "helm_plate_pvpwarrior_b_02_dwm.m2", + fileId = "466299", + text = "helm_mail_raidhunter_i_01_gom.m2", + value = "helm_mail_raidhunter_i_01_gom.m2", }, { - fileId = "254389", - text = "helm_plate_pvpwarrior_b_02_gnf.m2", - value = "helm_plate_pvpwarrior_b_02_gnf.m2", + fileId = "466301", + text = "helm_mail_raidhunter_i_01_huf.m2", + value = "helm_mail_raidhunter_i_01_huf.m2", }, { - fileId = "254390", - text = "helm_plate_pvpwarrior_b_02_gnm.m2", - value = "helm_plate_pvpwarrior_b_02_gnm.m2", + fileId = "466302", + text = "helm_mail_raidhunter_i_01_hum.m2", + value = "helm_mail_raidhunter_i_01_hum.m2", }, { - fileId = "254391", - text = "helm_plate_pvpwarrior_b_02_gof.m2", - value = "helm_plate_pvpwarrior_b_02_gof.m2", + fileId = "466303", + text = "helm_mail_raidhunter_i_01_nif.m2", + value = "helm_mail_raidhunter_i_01_nif.m2", }, { - fileId = "254392", - text = "helm_plate_pvpwarrior_b_02_gom.m2", - value = "helm_plate_pvpwarrior_b_02_gom.m2", + fileId = "466304", + text = "helm_mail_raidhunter_i_01_nim.m2", + value = "helm_mail_raidhunter_i_01_nim.m2", }, { - fileId = "254393", - text = "helm_plate_pvpwarrior_b_02_huf.m2", - value = "helm_plate_pvpwarrior_b_02_huf.m2", + fileId = "466305", + text = "helm_mail_raidhunter_i_01_orf.m2", + value = "helm_mail_raidhunter_i_01_orf.m2", }, { - fileId = "254394", - text = "helm_plate_pvpwarrior_b_02_hum.m2", - value = "helm_plate_pvpwarrior_b_02_hum.m2", + fileId = "466306", + text = "helm_mail_raidhunter_i_01_orm.m2", + value = "helm_mail_raidhunter_i_01_orm.m2", }, { - fileId = "254395", - text = "helm_plate_pvpwarrior_b_02_nif.m2", - value = "helm_plate_pvpwarrior_b_02_nif.m2", + fileId = "466308", + text = "helm_mail_raidhunter_i_01_scf.m2", + value = "helm_mail_raidhunter_i_01_scf.m2", }, { - fileId = "254396", - text = "helm_plate_pvpwarrior_b_02_nim.m2", - value = "helm_plate_pvpwarrior_b_02_nim.m2", + fileId = "466309", + text = "helm_mail_raidhunter_i_01_scm.m2", + value = "helm_mail_raidhunter_i_01_scm.m2", }, { - fileId = "254397", - text = "helm_plate_pvpwarrior_b_02_orf.m2", - value = "helm_plate_pvpwarrior_b_02_orf.m2", + fileId = "466310", + text = "helm_mail_raidhunter_i_01_taf.m2", + value = "helm_mail_raidhunter_i_01_taf.m2", }, { - fileId = "254398", - text = "helm_plate_pvpwarrior_b_02_orm.m2", - value = "helm_plate_pvpwarrior_b_02_orm.m2", + fileId = "466311", + text = "helm_mail_raidhunter_i_01_tam.m2", + value = "helm_mail_raidhunter_i_01_tam.m2", }, { - fileId = "254399", - text = "helm_plate_pvpwarrior_b_02_scf.m2", - value = "helm_plate_pvpwarrior_b_02_scf.m2", + fileId = "466312", + text = "helm_mail_raidhunter_i_01_trf.m2", + value = "helm_mail_raidhunter_i_01_trf.m2", }, { - fileId = "254400", - text = "helm_plate_pvpwarrior_b_02_scm.m2", - value = "helm_plate_pvpwarrior_b_02_scm.m2", + fileId = "466314", + text = "helm_mail_raidhunter_i_01_trm.m2", + value = "helm_mail_raidhunter_i_01_trm.m2", }, { - fileId = "254401", - text = "helm_plate_pvpwarrior_b_02_taf.m2", - value = "helm_plate_pvpwarrior_b_02_taf.m2", + fileId = "466315", + text = "helm_mail_raidhunter_i_01_wof.m2", + value = "helm_mail_raidhunter_i_01_wof.m2", }, { - fileId = "254402", - text = "helm_plate_pvpwarrior_b_02_tam.m2", - value = "helm_plate_pvpwarrior_b_02_tam.m2", + fileId = "466316", + text = "helm_mail_raidhunter_i_01_wom.m2", + value = "helm_mail_raidhunter_i_01_wom.m2", }, { - fileId = "304452", - text = "helm_plate_pvpwarrior_b_02_trf.m2", - value = "helm_plate_pvpwarrior_b_02_trf.m2", + fileId = "519107", + text = "helm_mail_raidhunter_j_01_bef.m2", + value = "helm_mail_raidhunter_j_01_bef.m2", }, { - fileId = "254403", - text = "helm_plate_pvpwarrior_b_02_trm.m2", - value = "helm_plate_pvpwarrior_b_02_trm.m2", + fileId = "519110", + text = "helm_mail_raidhunter_j_01_bem.m2", + value = "helm_mail_raidhunter_j_01_bem.m2", }, { - fileId = "304428", - text = "helm_plate_pvpwarrior_b_03_bef.m2", - value = "helm_plate_pvpwarrior_b_03_bef.m2", + fileId = "519112", + text = "helm_mail_raidhunter_j_01_drf.m2", + value = "helm_mail_raidhunter_j_01_drf.m2", }, { - fileId = "304429", - text = "helm_plate_pvpwarrior_b_03_bem.m2", - value = "helm_plate_pvpwarrior_b_03_bem.m2", + fileId = "519114", + text = "helm_mail_raidhunter_j_01_drm.m2", + value = "helm_mail_raidhunter_j_01_drm.m2", }, { - fileId = "304430", - text = "helm_plate_pvpwarrior_b_03_drf.m2", - value = "helm_plate_pvpwarrior_b_03_drf.m2", + fileId = "519116", + text = "helm_mail_raidhunter_j_01_dwf.m2", + value = "helm_mail_raidhunter_j_01_dwf.m2", }, { - fileId = "304431", - text = "helm_plate_pvpwarrior_b_03_drm.m2", - value = "helm_plate_pvpwarrior_b_03_drm.m2", + fileId = "519118", + text = "helm_mail_raidhunter_j_01_dwm.m2", + value = "helm_mail_raidhunter_j_01_dwm.m2", }, { - fileId = "304432", - text = "helm_plate_pvpwarrior_b_03_dwf.m2", - value = "helm_plate_pvpwarrior_b_03_dwf.m2", + fileId = "519120", + text = "helm_mail_raidhunter_j_01_gnf.m2", + value = "helm_mail_raidhunter_j_01_gnf.m2", }, { - fileId = "304433", - text = "helm_plate_pvpwarrior_b_03_dwm.m2", - value = "helm_plate_pvpwarrior_b_03_dwm.m2", + fileId = "519122", + text = "helm_mail_raidhunter_j_01_gnm.m2", + value = "helm_mail_raidhunter_j_01_gnm.m2", }, { - fileId = "304434", - text = "helm_plate_pvpwarrior_b_03_gnf.m2", - value = "helm_plate_pvpwarrior_b_03_gnf.m2", + fileId = "519124", + text = "helm_mail_raidhunter_j_01_gof.m2", + value = "helm_mail_raidhunter_j_01_gof.m2", }, { - fileId = "304435", - text = "helm_plate_pvpwarrior_b_03_gnm.m2", - value = "helm_plate_pvpwarrior_b_03_gnm.m2", + fileId = "519126", + text = "helm_mail_raidhunter_j_01_gom.m2", + value = "helm_mail_raidhunter_j_01_gom.m2", }, { - fileId = "304436", - text = "helm_plate_pvpwarrior_b_03_gof.m2", - value = "helm_plate_pvpwarrior_b_03_gof.m2", + fileId = "519146", + text = "helm_mail_raidhunter_j_01_huf.m2", + value = "helm_mail_raidhunter_j_01_huf.m2", }, { - fileId = "304437", - text = "helm_plate_pvpwarrior_b_03_gom.m2", - value = "helm_plate_pvpwarrior_b_03_gom.m2", + fileId = "519148", + text = "helm_mail_raidhunter_j_01_hum.m2", + value = "helm_mail_raidhunter_j_01_hum.m2", }, { - fileId = "304438", - text = "helm_plate_pvpwarrior_b_03_huf.m2", - value = "helm_plate_pvpwarrior_b_03_huf.m2", + fileId = "519150", + text = "helm_mail_raidhunter_j_01_nif.m2", + value = "helm_mail_raidhunter_j_01_nif.m2", }, { - fileId = "304439", - text = "helm_plate_pvpwarrior_b_03_hum.m2", - value = "helm_plate_pvpwarrior_b_03_hum.m2", + fileId = "519152", + text = "helm_mail_raidhunter_j_01_nim.m2", + value = "helm_mail_raidhunter_j_01_nim.m2", }, { - fileId = "304440", - text = "helm_plate_pvpwarrior_b_03_nif.m2", - value = "helm_plate_pvpwarrior_b_03_nif.m2", + fileId = "519154", + text = "helm_mail_raidhunter_j_01_orf.m2", + value = "helm_mail_raidhunter_j_01_orf.m2", }, { - fileId = "304441", - text = "helm_plate_pvpwarrior_b_03_nim.m2", - value = "helm_plate_pvpwarrior_b_03_nim.m2", + fileId = "519156", + text = "helm_mail_raidhunter_j_01_orm.m2", + value = "helm_mail_raidhunter_j_01_orm.m2", }, { - fileId = "304442", - text = "helm_plate_pvpwarrior_b_03_orf.m2", - value = "helm_plate_pvpwarrior_b_03_orf.m2", + fileId = "519159", + text = "helm_mail_raidhunter_j_01_scf.m2", + value = "helm_mail_raidhunter_j_01_scf.m2", }, { - fileId = "304443", - text = "helm_plate_pvpwarrior_b_03_orm.m2", - value = "helm_plate_pvpwarrior_b_03_orm.m2", + fileId = "519161", + text = "helm_mail_raidhunter_j_01_scm.m2", + value = "helm_mail_raidhunter_j_01_scm.m2", }, { - fileId = "304444", - text = "helm_plate_pvpwarrior_b_03_scf.m2", - value = "helm_plate_pvpwarrior_b_03_scf.m2", + fileId = "519163", + text = "helm_mail_raidhunter_j_01_taf.m2", + value = "helm_mail_raidhunter_j_01_taf.m2", }, { - fileId = "304445", - text = "helm_plate_pvpwarrior_b_03_scm.m2", - value = "helm_plate_pvpwarrior_b_03_scm.m2", + fileId = "519165", + text = "helm_mail_raidhunter_j_01_tam.m2", + value = "helm_mail_raidhunter_j_01_tam.m2", }, { - fileId = "304446", - text = "helm_plate_pvpwarrior_b_03_taf.m2", - value = "helm_plate_pvpwarrior_b_03_taf.m2", + fileId = "519167", + text = "helm_mail_raidhunter_j_01_trf.m2", + value = "helm_mail_raidhunter_j_01_trf.m2", }, { - fileId = "304447", - text = "helm_plate_pvpwarrior_b_03_tam.m2", - value = "helm_plate_pvpwarrior_b_03_tam.m2", + fileId = "519169", + text = "helm_mail_raidhunter_j_01_trm.m2", + value = "helm_mail_raidhunter_j_01_trm.m2", }, { - fileId = "304448", - text = "helm_plate_pvpwarrior_b_03_trf.m2", - value = "helm_plate_pvpwarrior_b_03_trf.m2", + fileId = "519171", + text = "helm_mail_raidhunter_j_01_wof.m2", + value = "helm_mail_raidhunter_j_01_wof.m2", }, { - fileId = "304449", - text = "helm_plate_pvpwarrior_b_03_trm.m2", - value = "helm_plate_pvpwarrior_b_03_trm.m2", + fileId = "519173", + text = "helm_mail_raidhunter_j_01_wom.m2", + value = "helm_mail_raidhunter_j_01_wom.m2", }, { - fileId = "345707", - text = "helm_plate_pvpwarrior_b_04_bef.m2", - value = "helm_plate_pvpwarrior_b_04_bef.m2", + fileId = "535617", + text = "helm_mail_raidhunter_k_01_bef.m2", + value = "helm_mail_raidhunter_k_01_bef.m2", }, { - fileId = "345708", - text = "helm_plate_pvpwarrior_b_04_bem.m2", - value = "helm_plate_pvpwarrior_b_04_bem.m2", + fileId = "535619", + text = "helm_mail_raidhunter_k_01_bem.m2", + value = "helm_mail_raidhunter_k_01_bem.m2", }, { - fileId = "345709", - text = "helm_plate_pvpwarrior_b_04_drf.m2", - value = "helm_plate_pvpwarrior_b_04_drf.m2", + fileId = "535621", + text = "helm_mail_raidhunter_k_01_drf.m2", + value = "helm_mail_raidhunter_k_01_drf.m2", }, { - fileId = "345710", - text = "helm_plate_pvpwarrior_b_04_drm.m2", - value = "helm_plate_pvpwarrior_b_04_drm.m2", + fileId = "535623", + text = "helm_mail_raidhunter_k_01_drm.m2", + value = "helm_mail_raidhunter_k_01_drm.m2", }, { - fileId = "345711", - text = "helm_plate_pvpwarrior_b_04_dwf.m2", - value = "helm_plate_pvpwarrior_b_04_dwf.m2", + fileId = "535625", + text = "helm_mail_raidhunter_k_01_dwf.m2", + value = "helm_mail_raidhunter_k_01_dwf.m2", }, { - fileId = "345712", - text = "helm_plate_pvpwarrior_b_04_dwm.m2", - value = "helm_plate_pvpwarrior_b_04_dwm.m2", + fileId = "535627", + text = "helm_mail_raidhunter_k_01_dwm.m2", + value = "helm_mail_raidhunter_k_01_dwm.m2", }, { - fileId = "345713", - text = "helm_plate_pvpwarrior_b_04_gnf.m2", - value = "helm_plate_pvpwarrior_b_04_gnf.m2", + fileId = "535629", + text = "helm_mail_raidhunter_k_01_gnf.m2", + value = "helm_mail_raidhunter_k_01_gnf.m2", }, { - fileId = "345714", - text = "helm_plate_pvpwarrior_b_04_gnm.m2", - value = "helm_plate_pvpwarrior_b_04_gnm.m2", + fileId = "535631", + text = "helm_mail_raidhunter_k_01_gnm.m2", + value = "helm_mail_raidhunter_k_01_gnm.m2", }, { - fileId = "345715", - text = "helm_plate_pvpwarrior_b_04_gof.m2", - value = "helm_plate_pvpwarrior_b_04_gof.m2", + fileId = "535633", + text = "helm_mail_raidhunter_k_01_gof.m2", + value = "helm_mail_raidhunter_k_01_gof.m2", }, { - fileId = "345716", - text = "helm_plate_pvpwarrior_b_04_gom.m2", - value = "helm_plate_pvpwarrior_b_04_gom.m2", + fileId = "535635", + text = "helm_mail_raidhunter_k_01_gom.m2", + value = "helm_mail_raidhunter_k_01_gom.m2", }, { - fileId = "345717", - text = "helm_plate_pvpwarrior_b_04_huf.m2", - value = "helm_plate_pvpwarrior_b_04_huf.m2", + fileId = "535637", + text = "helm_mail_raidhunter_k_01_huf.m2", + value = "helm_mail_raidhunter_k_01_huf.m2", }, { - fileId = "345718", - text = "helm_plate_pvpwarrior_b_04_hum.m2", - value = "helm_plate_pvpwarrior_b_04_hum.m2", + fileId = "535639", + text = "helm_mail_raidhunter_k_01_hum.m2", + value = "helm_mail_raidhunter_k_01_hum.m2", }, { - fileId = "345719", - text = "helm_plate_pvpwarrior_b_04_nif.m2", - value = "helm_plate_pvpwarrior_b_04_nif.m2", + fileId = "535641", + text = "helm_mail_raidhunter_k_01_nif.m2", + value = "helm_mail_raidhunter_k_01_nif.m2", }, { - fileId = "345720", - text = "helm_plate_pvpwarrior_b_04_nim.m2", - value = "helm_plate_pvpwarrior_b_04_nim.m2", + fileId = "535643", + text = "helm_mail_raidhunter_k_01_nim.m2", + value = "helm_mail_raidhunter_k_01_nim.m2", }, { - fileId = "345721", - text = "helm_plate_pvpwarrior_b_04_orf.m2", - value = "helm_plate_pvpwarrior_b_04_orf.m2", + fileId = "535645", + text = "helm_mail_raidhunter_k_01_orf.m2", + value = "helm_mail_raidhunter_k_01_orf.m2", }, { - fileId = "345722", - text = "helm_plate_pvpwarrior_b_04_orm.m2", - value = "helm_plate_pvpwarrior_b_04_orm.m2", + fileId = "535647", + text = "helm_mail_raidhunter_k_01_orm.m2", + value = "helm_mail_raidhunter_k_01_orm.m2", }, { - fileId = "345723", - text = "helm_plate_pvpwarrior_b_04_scf.m2", - value = "helm_plate_pvpwarrior_b_04_scf.m2", + fileId = "535649", + text = "helm_mail_raidhunter_k_01_scf.m2", + value = "helm_mail_raidhunter_k_01_scf.m2", }, { - fileId = "345724", - text = "helm_plate_pvpwarrior_b_04_scm.m2", - value = "helm_plate_pvpwarrior_b_04_scm.m2", + fileId = "535651", + text = "helm_mail_raidhunter_k_01_scm.m2", + value = "helm_mail_raidhunter_k_01_scm.m2", }, { - fileId = "345725", - text = "helm_plate_pvpwarrior_b_04_taf.m2", - value = "helm_plate_pvpwarrior_b_04_taf.m2", + fileId = "535653", + text = "helm_mail_raidhunter_k_01_taf.m2", + value = "helm_mail_raidhunter_k_01_taf.m2", }, { - fileId = "345726", - text = "helm_plate_pvpwarrior_b_04_tam.m2", - value = "helm_plate_pvpwarrior_b_04_tam.m2", + fileId = "535655", + text = "helm_mail_raidhunter_k_01_tam.m2", + value = "helm_mail_raidhunter_k_01_tam.m2", }, { - fileId = "345727", - text = "helm_plate_pvpwarrior_b_04_trf.m2", - value = "helm_plate_pvpwarrior_b_04_trf.m2", + fileId = "535657", + text = "helm_mail_raidhunter_k_01_trf.m2", + value = "helm_mail_raidhunter_k_01_trf.m2", }, { - fileId = "345728", - text = "helm_plate_pvpwarrior_b_04_trm.m2", - value = "helm_plate_pvpwarrior_b_04_trm.m2", + fileId = "535659", + text = "helm_mail_raidhunter_k_01_trm.m2", + value = "helm_mail_raidhunter_k_01_trm.m2", }, { - fileId = "325880", - text = "helm_plate_raiddeathknight_b_01_bef.m2", - value = "helm_plate_raiddeathknight_b_01_bef.m2", + fileId = "535661", + text = "helm_mail_raidhunter_k_01_wof.m2", + value = "helm_mail_raidhunter_k_01_wof.m2", }, { - fileId = "325881", - text = "helm_plate_raiddeathknight_b_01_bem.m2", - value = "helm_plate_raiddeathknight_b_01_bem.m2", + fileId = "535663", + text = "helm_mail_raidhunter_k_01_wom.m2", + value = "helm_mail_raidhunter_k_01_wom.m2", }, { - fileId = "325882", - text = "helm_plate_raiddeathknight_b_01_drf.m2", - value = "helm_plate_raiddeathknight_b_01_drf.m2", + fileId = "139796", + text = "helm_mail_raidshaman_a_01_bef.m2", + value = "helm_mail_raidshaman_a_01_bef.m2", }, { - fileId = "325883", - text = "helm_plate_raiddeathknight_b_01_drm.m2", - value = "helm_plate_raiddeathknight_b_01_drm.m2", + fileId = "139797", + text = "helm_mail_raidshaman_a_01_bem.m2", + value = "helm_mail_raidshaman_a_01_bem.m2", }, { - fileId = "325884", - text = "helm_plate_raiddeathknight_b_01_dwf.m2", - value = "helm_plate_raiddeathknight_b_01_dwf.m2", + fileId = "139798", + text = "helm_mail_raidshaman_a_01_drf.m2", + value = "helm_mail_raidshaman_a_01_drf.m2", }, { - fileId = "325885", - text = "helm_plate_raiddeathknight_b_01_dwm.m2", - value = "helm_plate_raiddeathknight_b_01_dwm.m2", + fileId = "139799", + text = "helm_mail_raidshaman_a_01_drm.m2", + value = "helm_mail_raidshaman_a_01_drm.m2", }, { - fileId = "325886", - text = "helm_plate_raiddeathknight_b_01_gnf.m2", - value = "helm_plate_raiddeathknight_b_01_gnf.m2", + fileId = "139800", + text = "helm_mail_raidshaman_a_01_dwf.m2", + value = "helm_mail_raidshaman_a_01_dwf.m2", }, { - fileId = "325887", - text = "helm_plate_raiddeathknight_b_01_gnm.m2", - value = "helm_plate_raiddeathknight_b_01_gnm.m2", + fileId = "139801", + text = "helm_mail_raidshaman_a_01_dwm.m2", + value = "helm_mail_raidshaman_a_01_dwm.m2", }, { - fileId = "325996", - text = "helm_plate_raiddeathknight_b_01_gof.m2", - value = "helm_plate_raiddeathknight_b_01_gof.m2", + fileId = "139802", + text = "helm_mail_raidshaman_a_01_gnf.m2", + value = "helm_mail_raidshaman_a_01_gnf.m2", }, { - fileId = "325997", - text = "helm_plate_raiddeathknight_b_01_gom.m2", - value = "helm_plate_raiddeathknight_b_01_gom.m2", + fileId = "139803", + text = "helm_mail_raidshaman_a_01_gnm.m2", + value = "helm_mail_raidshaman_a_01_gnm.m2", }, { - fileId = "325888", - text = "helm_plate_raiddeathknight_b_01_huf.m2", - value = "helm_plate_raiddeathknight_b_01_huf.m2", + fileId = "139804", + text = "helm_mail_raidshaman_a_01_gof.m2", + value = "helm_mail_raidshaman_a_01_gof.m2", }, { - fileId = "325889", - text = "helm_plate_raiddeathknight_b_01_hum.m2", - value = "helm_plate_raiddeathknight_b_01_hum.m2", + fileId = "139805", + text = "helm_mail_raidshaman_a_01_gom.m2", + value = "helm_mail_raidshaman_a_01_gom.m2", }, { - fileId = "325890", - text = "helm_plate_raiddeathknight_b_01_nif.m2", - value = "helm_plate_raiddeathknight_b_01_nif.m2", + fileId = "139806", + text = "helm_mail_raidshaman_a_01_huf.m2", + value = "helm_mail_raidshaman_a_01_huf.m2", }, { - fileId = "325891", - text = "helm_plate_raiddeathknight_b_01_nim.m2", - value = "helm_plate_raiddeathknight_b_01_nim.m2", + fileId = "139807", + text = "helm_mail_raidshaman_a_01_hum.m2", + value = "helm_mail_raidshaman_a_01_hum.m2", }, { - fileId = "325892", - text = "helm_plate_raiddeathknight_b_01_orf.m2", - value = "helm_plate_raiddeathknight_b_01_orf.m2", + fileId = "139808", + text = "helm_mail_raidshaman_a_01_nif.m2", + value = "helm_mail_raidshaman_a_01_nif.m2", }, { - fileId = "325893", - text = "helm_plate_raiddeathknight_b_01_orm.m2", - value = "helm_plate_raiddeathknight_b_01_orm.m2", + fileId = "139809", + text = "helm_mail_raidshaman_a_01_nim.m2", + value = "helm_mail_raidshaman_a_01_nim.m2", }, { - fileId = "325894", - text = "helm_plate_raiddeathknight_b_01_scf.m2", - value = "helm_plate_raiddeathknight_b_01_scf.m2", + fileId = "139810", + text = "helm_mail_raidshaman_a_01_orf.m2", + value = "helm_mail_raidshaman_a_01_orf.m2", }, { - fileId = "325895", - text = "helm_plate_raiddeathknight_b_01_scm.m2", - value = "helm_plate_raiddeathknight_b_01_scm.m2", + fileId = "139811", + text = "helm_mail_raidshaman_a_01_orm.m2", + value = "helm_mail_raidshaman_a_01_orm.m2", }, { - fileId = "325896", - text = "helm_plate_raiddeathknight_b_01_taf.m2", - value = "helm_plate_raiddeathknight_b_01_taf.m2", + fileId = "139812", + text = "helm_mail_raidshaman_a_01_scf.m2", + value = "helm_mail_raidshaman_a_01_scf.m2", }, { - fileId = "325897", - text = "helm_plate_raiddeathknight_b_01_tam.m2", - value = "helm_plate_raiddeathknight_b_01_tam.m2", + fileId = "139813", + text = "helm_mail_raidshaman_a_01_scm.m2", + value = "helm_mail_raidshaman_a_01_scm.m2", }, { - fileId = "325898", - text = "helm_plate_raiddeathknight_b_01_trf.m2", - value = "helm_plate_raiddeathknight_b_01_trf.m2", + fileId = "139814", + text = "helm_mail_raidshaman_a_01_taf.m2", + value = "helm_mail_raidshaman_a_01_taf.m2", }, { - fileId = "325899", - text = "helm_plate_raiddeathknight_b_01_trm.m2", - value = "helm_plate_raiddeathknight_b_01_trm.m2", + fileId = "139815", + text = "helm_mail_raidshaman_a_01_tam.m2", + value = "helm_mail_raidshaman_a_01_tam.m2", }, { - fileId = "238169", - text = "helm_plate_raiddeathknight_c_02_bef.m2", - value = "helm_plate_raiddeathknight_c_02_bef.m2", + fileId = "139816", + text = "helm_mail_raidshaman_a_01_trf.m2", + value = "helm_mail_raidshaman_a_01_trf.m2", }, { - fileId = "238170", - text = "helm_plate_raiddeathknight_c_02_bem.m2", - value = "helm_plate_raiddeathknight_c_02_bem.m2", + fileId = "139817", + text = "helm_mail_raidshaman_a_01_trm.m2", + value = "helm_mail_raidshaman_a_01_trm.m2", }, { - fileId = "238171", - text = "helm_plate_raiddeathknight_c_02_drf.m2", - value = "helm_plate_raiddeathknight_c_02_drf.m2", + fileId = "454175", + text = "helm_mail_raidshaman_a_01_wof.m2", + value = "helm_mail_raidshaman_a_01_wof.m2", }, { - fileId = "238172", - text = "helm_plate_raiddeathknight_c_02_drm.m2", - value = "helm_plate_raiddeathknight_c_02_drm.m2", + fileId = "430041", + text = "helm_mail_raidshaman_a_01_wom.m2", + value = "helm_mail_raidshaman_a_01_wom.m2", }, { - fileId = "238173", - text = "helm_plate_raiddeathknight_c_02_dwf.m2", - value = "helm_plate_raiddeathknight_c_02_dwf.m2", + fileId = "139824", + text = "helm_mail_raidshaman_b_01_bef.m2", + value = "helm_mail_raidshaman_b_01_bef.m2", }, { - fileId = "238174", - text = "helm_plate_raiddeathknight_c_02_dwm.m2", - value = "helm_plate_raiddeathknight_c_02_dwm.m2", + fileId = "139825", + text = "helm_mail_raidshaman_b_01_bem.m2", + value = "helm_mail_raidshaman_b_01_bem.m2", }, { - fileId = "238175", - text = "helm_plate_raiddeathknight_c_02_gnf.m2", - value = "helm_plate_raiddeathknight_c_02_gnf.m2", + fileId = "139826", + text = "helm_mail_raidshaman_b_01_drf.m2", + value = "helm_mail_raidshaman_b_01_drf.m2", }, { - fileId = "238176", - text = "helm_plate_raiddeathknight_c_02_gnm.m2", - value = "helm_plate_raiddeathknight_c_02_gnm.m2", + fileId = "139827", + text = "helm_mail_raidshaman_b_01_drm.m2", + value = "helm_mail_raidshaman_b_01_drm.m2", }, { - fileId = "238177", - text = "helm_plate_raiddeathknight_c_02_gof.m2", - value = "helm_plate_raiddeathknight_c_02_gof.m2", + fileId = "139828", + text = "helm_mail_raidshaman_b_01_dwf.m2", + value = "helm_mail_raidshaman_b_01_dwf.m2", }, { - fileId = "238178", - text = "helm_plate_raiddeathknight_c_02_gom.m2", - value = "helm_plate_raiddeathknight_c_02_gom.m2", + fileId = "139829", + text = "helm_mail_raidshaman_b_01_dwm.m2", + value = "helm_mail_raidshaman_b_01_dwm.m2", }, { - fileId = "238179", - text = "helm_plate_raiddeathknight_c_02_huf.m2", - value = "helm_plate_raiddeathknight_c_02_huf.m2", + fileId = "139830", + text = "helm_mail_raidshaman_b_01_gnf.m2", + value = "helm_mail_raidshaman_b_01_gnf.m2", }, { - fileId = "238180", - text = "helm_plate_raiddeathknight_c_02_hum.m2", - value = "helm_plate_raiddeathknight_c_02_hum.m2", + fileId = "139831", + text = "helm_mail_raidshaman_b_01_gnm.m2", + value = "helm_mail_raidshaman_b_01_gnm.m2", }, { - fileId = "238181", - text = "helm_plate_raiddeathknight_c_02_nif.m2", - value = "helm_plate_raiddeathknight_c_02_nif.m2", + fileId = "139832", + text = "helm_mail_raidshaman_b_01_gof.m2", + value = "helm_mail_raidshaman_b_01_gof.m2", }, { - fileId = "238182", - text = "helm_plate_raiddeathknight_c_02_nim.m2", - value = "helm_plate_raiddeathknight_c_02_nim.m2", + fileId = "139833", + text = "helm_mail_raidshaman_b_01_gom.m2", + value = "helm_mail_raidshaman_b_01_gom.m2", }, { - fileId = "238183", - text = "helm_plate_raiddeathknight_c_02_orf.m2", - value = "helm_plate_raiddeathknight_c_02_orf.m2", + fileId = "139834", + text = "helm_mail_raidshaman_b_01_huf.m2", + value = "helm_mail_raidshaman_b_01_huf.m2", }, { - fileId = "238184", - text = "helm_plate_raiddeathknight_c_02_orm.m2", - value = "helm_plate_raiddeathknight_c_02_orm.m2", + fileId = "139835", + text = "helm_mail_raidshaman_b_01_hum.m2", + value = "helm_mail_raidshaman_b_01_hum.m2", }, { - fileId = "238185", - text = "helm_plate_raiddeathknight_c_02_scf.m2", - value = "helm_plate_raiddeathknight_c_02_scf.m2", + fileId = "139836", + text = "helm_mail_raidshaman_b_01_nif.m2", + value = "helm_mail_raidshaman_b_01_nif.m2", }, { - fileId = "238186", - text = "helm_plate_raiddeathknight_c_02_scm.m2", - value = "helm_plate_raiddeathknight_c_02_scm.m2", + fileId = "139837", + text = "helm_mail_raidshaman_b_01_nim.m2", + value = "helm_mail_raidshaman_b_01_nim.m2", }, { - fileId = "238187", - text = "helm_plate_raiddeathknight_c_02_taf.m2", - value = "helm_plate_raiddeathknight_c_02_taf.m2", + fileId = "139838", + text = "helm_mail_raidshaman_b_01_orf.m2", + value = "helm_mail_raidshaman_b_01_orf.m2", }, { - fileId = "238188", - text = "helm_plate_raiddeathknight_c_02_tam.m2", - value = "helm_plate_raiddeathknight_c_02_tam.m2", + fileId = "139839", + text = "helm_mail_raidshaman_b_01_orm.m2", + value = "helm_mail_raidshaman_b_01_orm.m2", }, { - fileId = "238189", - text = "helm_plate_raiddeathknight_c_02_trf.m2", - value = "helm_plate_raiddeathknight_c_02_trf.m2", + fileId = "139840", + text = "helm_mail_raidshaman_b_01_scf.m2", + value = "helm_mail_raidshaman_b_01_scf.m2", }, { - fileId = "238190", - text = "helm_plate_raiddeathknight_c_02_trm.m2", - value = "helm_plate_raiddeathknight_c_02_trm.m2", + fileId = "139841", + text = "helm_mail_raidshaman_b_01_scm.m2", + value = "helm_mail_raidshaman_b_01_scm.m2", }, { - fileId = "140867", - text = "helm_plate_raiddeathknight_g_01_bef.m2", - value = "helm_plate_raiddeathknight_g_01_bef.m2", + fileId = "139842", + text = "helm_mail_raidshaman_b_01_taf.m2", + value = "helm_mail_raidshaman_b_01_taf.m2", }, { - fileId = "140868", - text = "helm_plate_raiddeathknight_g_01_bem.m2", - value = "helm_plate_raiddeathknight_g_01_bem.m2", + fileId = "139843", + text = "helm_mail_raidshaman_b_01_tam.m2", + value = "helm_mail_raidshaman_b_01_tam.m2", }, { - fileId = "140869", - text = "helm_plate_raiddeathknight_g_01_drf.m2", - value = "helm_plate_raiddeathknight_g_01_drf.m2", + fileId = "139844", + text = "helm_mail_raidshaman_b_01_trf.m2", + value = "helm_mail_raidshaman_b_01_trf.m2", }, { - fileId = "140870", - text = "helm_plate_raiddeathknight_g_01_drm.m2", - value = "helm_plate_raiddeathknight_g_01_drm.m2", + fileId = "139845", + text = "helm_mail_raidshaman_b_01_trm.m2", + value = "helm_mail_raidshaman_b_01_trm.m2", }, { - fileId = "140871", - text = "helm_plate_raiddeathknight_g_01_dwf.m2", - value = "helm_plate_raiddeathknight_g_01_dwf.m2", + fileId = "454176", + text = "helm_mail_raidshaman_b_01_wof.m2", + value = "helm_mail_raidshaman_b_01_wof.m2", }, { - fileId = "140872", - text = "helm_plate_raiddeathknight_g_01_dwm.m2", - value = "helm_plate_raiddeathknight_g_01_dwm.m2", + fileId = "463059", + text = "helm_mail_raidshaman_b_01_wom.m2", + value = "helm_mail_raidshaman_b_01_wom.m2", }, { - fileId = "140873", - text = "helm_plate_raiddeathknight_g_01_gnf.m2", - value = "helm_plate_raiddeathknight_g_01_gnf.m2", + fileId = "139851", + text = "helm_mail_raidshaman_d_01_bef.m2", + value = "helm_mail_raidshaman_d_01_bef.m2", }, { - fileId = "140874", - text = "helm_plate_raiddeathknight_g_01_gnm.m2", - value = "helm_plate_raiddeathknight_g_01_gnm.m2", + fileId = "139852", + text = "helm_mail_raidshaman_d_01_bem.m2", + value = "helm_mail_raidshaman_d_01_bem.m2", }, { - fileId = "140875", - text = "helm_plate_raiddeathknight_g_01_gof.m2", - value = "helm_plate_raiddeathknight_g_01_gof.m2", + fileId = "139853", + text = "helm_mail_raidshaman_d_01_drf.m2", + value = "helm_mail_raidshaman_d_01_drf.m2", }, { - fileId = "140876", - text = "helm_plate_raiddeathknight_g_01_gom.m2", - value = "helm_plate_raiddeathknight_g_01_gom.m2", + fileId = "139854", + text = "helm_mail_raidshaman_d_01_drm.m2", + value = "helm_mail_raidshaman_d_01_drm.m2", }, { - fileId = "140877", - text = "helm_plate_raiddeathknight_g_01_huf.m2", - value = "helm_plate_raiddeathknight_g_01_huf.m2", + fileId = "139855", + text = "helm_mail_raidshaman_d_01_dwf.m2", + value = "helm_mail_raidshaman_d_01_dwf.m2", }, { - fileId = "140878", - text = "helm_plate_raiddeathknight_g_01_hum.m2", - value = "helm_plate_raiddeathknight_g_01_hum.m2", + fileId = "139856", + text = "helm_mail_raidshaman_d_01_dwm.m2", + value = "helm_mail_raidshaman_d_01_dwm.m2", }, { - fileId = "140879", - text = "helm_plate_raiddeathknight_g_01_nif.m2", - value = "helm_plate_raiddeathknight_g_01_nif.m2", + fileId = "139857", + text = "helm_mail_raidshaman_d_01_gnf.m2", + value = "helm_mail_raidshaman_d_01_gnf.m2", }, { - fileId = "140880", - text = "helm_plate_raiddeathknight_g_01_nim.m2", - value = "helm_plate_raiddeathknight_g_01_nim.m2", + fileId = "139858", + text = "helm_mail_raidshaman_d_01_gnm.m2", + value = "helm_mail_raidshaman_d_01_gnm.m2", }, { - fileId = "140881", - text = "helm_plate_raiddeathknight_g_01_orf.m2", - value = "helm_plate_raiddeathknight_g_01_orf.m2", + fileId = "139859", + text = "helm_mail_raidshaman_d_01_gof.m2", + value = "helm_mail_raidshaman_d_01_gof.m2", }, { - fileId = "140882", - text = "helm_plate_raiddeathknight_g_01_orm.m2", - value = "helm_plate_raiddeathknight_g_01_orm.m2", + fileId = "139860", + text = "helm_mail_raidshaman_d_01_gom.m2", + value = "helm_mail_raidshaman_d_01_gom.m2", }, { - fileId = "140884", - text = "helm_plate_raiddeathknight_g_01_scf.m2", - value = "helm_plate_raiddeathknight_g_01_scf.m2", + fileId = "139862", + text = "helm_mail_raidshaman_d_01_huf.m2", + value = "helm_mail_raidshaman_d_01_huf.m2", }, { - fileId = "140885", - text = "helm_plate_raiddeathknight_g_01_scm.m2", - value = "helm_plate_raiddeathknight_g_01_scm.m2", + fileId = "139863", + text = "helm_mail_raidshaman_d_01_hum.m2", + value = "helm_mail_raidshaman_d_01_hum.m2", }, { - fileId = "140886", - text = "helm_plate_raiddeathknight_g_01_taf.m2", - value = "helm_plate_raiddeathknight_g_01_taf.m2", + fileId = "139864", + text = "helm_mail_raidshaman_d_01_nif.m2", + value = "helm_mail_raidshaman_d_01_nif.m2", }, { - fileId = "140887", - text = "helm_plate_raiddeathknight_g_01_tam.m2", - value = "helm_plate_raiddeathknight_g_01_tam.m2", + fileId = "139865", + text = "helm_mail_raidshaman_d_01_nim.m2", + value = "helm_mail_raidshaman_d_01_nim.m2", }, { - fileId = "140888", - text = "helm_plate_raiddeathknight_g_01_trf.m2", - value = "helm_plate_raiddeathknight_g_01_trf.m2", + fileId = "139866", + text = "helm_mail_raidshaman_d_01_orf.m2", + value = "helm_mail_raidshaman_d_01_orf.m2", }, { - fileId = "140889", - text = "helm_plate_raiddeathknight_g_01_trm.m2", - value = "helm_plate_raiddeathknight_g_01_trm.m2", + fileId = "139867", + text = "helm_mail_raidshaman_d_01_orm.m2", + value = "helm_mail_raidshaman_d_01_orm.m2", }, { - fileId = "337982", - text = "helm_plate_raiddeathknight_h_01_bef.m2", - value = "helm_plate_raiddeathknight_h_01_bef.m2", + fileId = "139868", + text = "helm_mail_raidshaman_d_01_scf.m2", + value = "helm_mail_raidshaman_d_01_scf.m2", }, { - fileId = "337983", - text = "helm_plate_raiddeathknight_h_01_bem.m2", - value = "helm_plate_raiddeathknight_h_01_bem.m2", + fileId = "139869", + text = "helm_mail_raidshaman_d_01_scm.m2", + value = "helm_mail_raidshaman_d_01_scm.m2", }, { - fileId = "337984", - text = "helm_plate_raiddeathknight_h_01_drf.m2", - value = "helm_plate_raiddeathknight_h_01_drf.m2", + fileId = "139870", + text = "helm_mail_raidshaman_d_01_taf.m2", + value = "helm_mail_raidshaman_d_01_taf.m2", }, { - fileId = "337985", - text = "helm_plate_raiddeathknight_h_01_drm.m2", - value = "helm_plate_raiddeathknight_h_01_drm.m2", + fileId = "139871", + text = "helm_mail_raidshaman_d_01_tam.m2", + value = "helm_mail_raidshaman_d_01_tam.m2", }, { - fileId = "337986", - text = "helm_plate_raiddeathknight_h_01_dwf.m2", - value = "helm_plate_raiddeathknight_h_01_dwf.m2", + fileId = "139872", + text = "helm_mail_raidshaman_d_01_trf.m2", + value = "helm_mail_raidshaman_d_01_trf.m2", }, { - fileId = "337987", - text = "helm_plate_raiddeathknight_h_01_dwm.m2", - value = "helm_plate_raiddeathknight_h_01_dwm.m2", + fileId = "139873", + text = "helm_mail_raidshaman_d_01_trm.m2", + value = "helm_mail_raidshaman_d_01_trm.m2", }, { - fileId = "337988", - text = "helm_plate_raiddeathknight_h_01_gnf.m2", - value = "helm_plate_raiddeathknight_h_01_gnf.m2", + fileId = "454177", + text = "helm_mail_raidshaman_d_01_wof.m2", + value = "helm_mail_raidshaman_d_01_wof.m2", }, { - fileId = "337989", - text = "helm_plate_raiddeathknight_h_01_gnm.m2", - value = "helm_plate_raiddeathknight_h_01_gnm.m2", + fileId = "430042", + text = "helm_mail_raidshaman_d_01_wom.m2", + value = "helm_mail_raidshaman_d_01_wom.m2", }, { - fileId = "337990", - text = "helm_plate_raiddeathknight_h_01_gof.m2", - value = "helm_plate_raiddeathknight_h_01_gof.m2", + fileId = "139876", + text = "helm_mail_raidshaman_e_01_bef.m2", + value = "helm_mail_raidshaman_e_01_bef.m2", }, { - fileId = "337991", - text = "helm_plate_raiddeathknight_h_01_gom.m2", - value = "helm_plate_raiddeathknight_h_01_gom.m2", + fileId = "139877", + text = "helm_mail_raidshaman_e_01_bem.m2", + value = "helm_mail_raidshaman_e_01_bem.m2", }, { - fileId = "337992", - text = "helm_plate_raiddeathknight_h_01_huf.m2", - value = "helm_plate_raiddeathknight_h_01_huf.m2", + fileId = "139878", + text = "helm_mail_raidshaman_e_01_drf.m2", + value = "helm_mail_raidshaman_e_01_drf.m2", }, { - fileId = "337993", - text = "helm_plate_raiddeathknight_h_01_hum.m2", - value = "helm_plate_raiddeathknight_h_01_hum.m2", + fileId = "139879", + text = "helm_mail_raidshaman_e_01_drm.m2", + value = "helm_mail_raidshaman_e_01_drm.m2", }, { - fileId = "337994", - text = "helm_plate_raiddeathknight_h_01_nif.m2", - value = "helm_plate_raiddeathknight_h_01_nif.m2", + fileId = "139880", + text = "helm_mail_raidshaman_e_01_dwf.m2", + value = "helm_mail_raidshaman_e_01_dwf.m2", }, { - fileId = "337995", - text = "helm_plate_raiddeathknight_h_01_nim.m2", - value = "helm_plate_raiddeathknight_h_01_nim.m2", + fileId = "139881", + text = "helm_mail_raidshaman_e_01_dwm.m2", + value = "helm_mail_raidshaman_e_01_dwm.m2", }, { - fileId = "337996", - text = "helm_plate_raiddeathknight_h_01_orf.m2", - value = "helm_plate_raiddeathknight_h_01_orf.m2", + fileId = "139882", + text = "helm_mail_raidshaman_e_01_gnf.m2", + value = "helm_mail_raidshaman_e_01_gnf.m2", }, { - fileId = "337997", - text = "helm_plate_raiddeathknight_h_01_orm.m2", - value = "helm_plate_raiddeathknight_h_01_orm.m2", + fileId = "139883", + text = "helm_mail_raidshaman_e_01_gnm.m2", + value = "helm_mail_raidshaman_e_01_gnm.m2", }, { - fileId = "337998", - text = "helm_plate_raiddeathknight_h_01_scf.m2", - value = "helm_plate_raiddeathknight_h_01_scf.m2", + fileId = "139884", + text = "helm_mail_raidshaman_e_01_gof.m2", + value = "helm_mail_raidshaman_e_01_gof.m2", }, { - fileId = "337999", - text = "helm_plate_raiddeathknight_h_01_scm.m2", - value = "helm_plate_raiddeathknight_h_01_scm.m2", + fileId = "139885", + text = "helm_mail_raidshaman_e_01_gom.m2", + value = "helm_mail_raidshaman_e_01_gom.m2", }, { - fileId = "338000", - text = "helm_plate_raiddeathknight_h_01_taf.m2", - value = "helm_plate_raiddeathknight_h_01_taf.m2", + fileId = "139886", + text = "helm_mail_raidshaman_e_01_huf.m2", + value = "helm_mail_raidshaman_e_01_huf.m2", }, { - fileId = "338001", - text = "helm_plate_raiddeathknight_h_01_tam.m2", - value = "helm_plate_raiddeathknight_h_01_tam.m2", + fileId = "139887", + text = "helm_mail_raidshaman_e_01_hum.m2", + value = "helm_mail_raidshaman_e_01_hum.m2", }, { - fileId = "351197", - text = "helm_plate_raiddeathknight_h_01_trf.m2", - value = "helm_plate_raiddeathknight_h_01_trf.m2", + fileId = "139888", + text = "helm_mail_raidshaman_e_01_nif.m2", + value = "helm_mail_raidshaman_e_01_nif.m2", }, { - fileId = "338002", - text = "helm_plate_raiddeathknight_h_01_trm.m2", - value = "helm_plate_raiddeathknight_h_01_trm.m2", + fileId = "139889", + text = "helm_mail_raidshaman_e_01_nim.m2", + value = "helm_mail_raidshaman_e_01_nim.m2", }, { - fileId = "140893", - text = "helm_plate_raidpaladin_a_01_bef.m2", - value = "helm_plate_raidpaladin_a_01_bef.m2", + fileId = "139890", + text = "helm_mail_raidshaman_e_01_orf.m2", + value = "helm_mail_raidshaman_e_01_orf.m2", }, { - fileId = "140894", - text = "helm_plate_raidpaladin_a_01_bem.m2", - value = "helm_plate_raidpaladin_a_01_bem.m2", + fileId = "139891", + text = "helm_mail_raidshaman_e_01_orm.m2", + value = "helm_mail_raidshaman_e_01_orm.m2", }, { - fileId = "140895", - text = "helm_plate_raidpaladin_a_01_drf.m2", - value = "helm_plate_raidpaladin_a_01_drf.m2", + fileId = "139892", + text = "helm_mail_raidshaman_e_01_scf.m2", + value = "helm_mail_raidshaman_e_01_scf.m2", }, { - fileId = "140896", - text = "helm_plate_raidpaladin_a_01_drm.m2", - value = "helm_plate_raidpaladin_a_01_drm.m2", + fileId = "139893", + text = "helm_mail_raidshaman_e_01_scm.m2", + value = "helm_mail_raidshaman_e_01_scm.m2", }, { - fileId = "140897", - text = "helm_plate_raidpaladin_a_01_dwf.m2", - value = "helm_plate_raidpaladin_a_01_dwf.m2", + fileId = "139894", + text = "helm_mail_raidshaman_e_01_taf.m2", + value = "helm_mail_raidshaman_e_01_taf.m2", }, { - fileId = "140898", - text = "helm_plate_raidpaladin_a_01_dwm.m2", - value = "helm_plate_raidpaladin_a_01_dwm.m2", + fileId = "139895", + text = "helm_mail_raidshaman_e_01_tam.m2", + value = "helm_mail_raidshaman_e_01_tam.m2", }, { - fileId = "140899", - text = "helm_plate_raidpaladin_a_01_gnf.m2", - value = "helm_plate_raidpaladin_a_01_gnf.m2", + fileId = "139896", + text = "helm_mail_raidshaman_e_01_trf.m2", + value = "helm_mail_raidshaman_e_01_trf.m2", }, { - fileId = "140900", - text = "helm_plate_raidpaladin_a_01_gnm.m2", - value = "helm_plate_raidpaladin_a_01_gnm.m2", + fileId = "139897", + text = "helm_mail_raidshaman_e_01_trm.m2", + value = "helm_mail_raidshaman_e_01_trm.m2", }, { - fileId = "140901", - text = "helm_plate_raidpaladin_a_01_gof.m2", - value = "helm_plate_raidpaladin_a_01_gof.m2", + fileId = "454178", + text = "helm_mail_raidshaman_e_01_wof.m2", + value = "helm_mail_raidshaman_e_01_wof.m2", }, { - fileId = "140902", - text = "helm_plate_raidpaladin_a_01_huf.m2", - value = "helm_plate_raidpaladin_a_01_huf.m2", + fileId = "430043", + text = "helm_mail_raidshaman_e_01_wom.m2", + value = "helm_mail_raidshaman_e_01_wom.m2", }, { - fileId = "140903", - text = "helm_plate_raidpaladin_a_01_hum.m2", - value = "helm_plate_raidpaladin_a_01_hum.m2", + fileId = "139900", + text = "helm_mail_raidshaman_f_01_bef.m2", + value = "helm_mail_raidshaman_f_01_bef.m2", }, { - fileId = "140904", - text = "helm_plate_raidpaladin_a_01_nif.m2", - value = "helm_plate_raidpaladin_a_01_nif.m2", + fileId = "139901", + text = "helm_mail_raidshaman_f_01_bem.m2", + value = "helm_mail_raidshaman_f_01_bem.m2", }, { - fileId = "140905", - text = "helm_plate_raidpaladin_a_01_nim.m2", - value = "helm_plate_raidpaladin_a_01_nim.m2", + fileId = "139902", + text = "helm_mail_raidshaman_f_01_drf.m2", + value = "helm_mail_raidshaman_f_01_drf.m2", }, { - fileId = "140906", - text = "helm_plate_raidpaladin_a_01_orf.m2", - value = "helm_plate_raidpaladin_a_01_orf.m2", + fileId = "139903", + text = "helm_mail_raidshaman_f_01_drm.m2", + value = "helm_mail_raidshaman_f_01_drm.m2", }, { - fileId = "140907", - text = "helm_plate_raidpaladin_a_01_orm.m2", - value = "helm_plate_raidpaladin_a_01_orm.m2", + fileId = "139904", + text = "helm_mail_raidshaman_f_01_dwf.m2", + value = "helm_mail_raidshaman_f_01_dwf.m2", }, { - fileId = "140908", - text = "helm_plate_raidpaladin_a_01_scf.m2", - value = "helm_plate_raidpaladin_a_01_scf.m2", + fileId = "139905", + text = "helm_mail_raidshaman_f_01_dwm.m2", + value = "helm_mail_raidshaman_f_01_dwm.m2", }, { - fileId = "140909", - text = "helm_plate_raidpaladin_a_01_scm.m2", - value = "helm_plate_raidpaladin_a_01_scm.m2", + fileId = "139906", + text = "helm_mail_raidshaman_f_01_gnf.m2", + value = "helm_mail_raidshaman_f_01_gnf.m2", }, { - fileId = "140910", - text = "helm_plate_raidpaladin_a_01_taf.m2", - value = "helm_plate_raidpaladin_a_01_taf.m2", + fileId = "139907", + text = "helm_mail_raidshaman_f_01_gnm.m2", + value = "helm_mail_raidshaman_f_01_gnm.m2", }, { - fileId = "140911", - text = "helm_plate_raidpaladin_a_01_tam.m2", - value = "helm_plate_raidpaladin_a_01_tam.m2", + fileId = "139908", + text = "helm_mail_raidshaman_f_01_gof.m2", + value = "helm_mail_raidshaman_f_01_gof.m2", }, { - fileId = "140912", - text = "helm_plate_raidpaladin_a_01_trf.m2", - value = "helm_plate_raidpaladin_a_01_trf.m2", + fileId = "139909", + text = "helm_mail_raidshaman_f_01_gom.m2", + value = "helm_mail_raidshaman_f_01_gom.m2", }, { - fileId = "140913", - text = "helm_plate_raidpaladin_a_01_trm.m2", - value = "helm_plate_raidpaladin_a_01_trm.m2", + fileId = "139910", + text = "helm_mail_raidshaman_f_01_huf.m2", + value = "helm_mail_raidshaman_f_01_huf.m2", }, { - fileId = "140919", - text = "helm_plate_raidpaladin_b_01_bef.m2", - value = "helm_plate_raidpaladin_b_01_bef.m2", + fileId = "139911", + text = "helm_mail_raidshaman_f_01_hum.m2", + value = "helm_mail_raidshaman_f_01_hum.m2", }, { - fileId = "140920", - text = "helm_plate_raidpaladin_b_01_bem.m2", - value = "helm_plate_raidpaladin_b_01_bem.m2", + fileId = "139912", + text = "helm_mail_raidshaman_f_01_nif.m2", + value = "helm_mail_raidshaman_f_01_nif.m2", }, { - fileId = "140921", - text = "helm_plate_raidpaladin_b_01_drf.m2", - value = "helm_plate_raidpaladin_b_01_drf.m2", + fileId = "139913", + text = "helm_mail_raidshaman_f_01_nim.m2", + value = "helm_mail_raidshaman_f_01_nim.m2", }, { - fileId = "140922", - text = "helm_plate_raidpaladin_b_01_drm.m2", - value = "helm_plate_raidpaladin_b_01_drm.m2", + fileId = "139914", + text = "helm_mail_raidshaman_f_01_orf.m2", + value = "helm_mail_raidshaman_f_01_orf.m2", }, { - fileId = "140923", - text = "helm_plate_raidpaladin_b_01_dwf.m2", - value = "helm_plate_raidpaladin_b_01_dwf.m2", + fileId = "139915", + text = "helm_mail_raidshaman_f_01_orm.m2", + value = "helm_mail_raidshaman_f_01_orm.m2", }, { - fileId = "140924", - text = "helm_plate_raidpaladin_b_01_dwm.m2", - value = "helm_plate_raidpaladin_b_01_dwm.m2", + fileId = "139916", + text = "helm_mail_raidshaman_f_01_scf.m2", + value = "helm_mail_raidshaman_f_01_scf.m2", }, { - fileId = "140925", - text = "helm_plate_raidpaladin_b_01_gnf.m2", - value = "helm_plate_raidpaladin_b_01_gnf.m2", + fileId = "139917", + text = "helm_mail_raidshaman_f_01_scm.m2", + value = "helm_mail_raidshaman_f_01_scm.m2", }, { - fileId = "140926", - text = "helm_plate_raidpaladin_b_01_gnm.m2", - value = "helm_plate_raidpaladin_b_01_gnm.m2", + fileId = "139918", + text = "helm_mail_raidshaman_f_01_taf.m2", + value = "helm_mail_raidshaman_f_01_taf.m2", }, { - fileId = "140927", - text = "helm_plate_raidpaladin_b_01_gof.m2", - value = "helm_plate_raidpaladin_b_01_gof.m2", + fileId = "139919", + text = "helm_mail_raidshaman_f_01_tam.m2", + value = "helm_mail_raidshaman_f_01_tam.m2", }, { - fileId = "140928", - text = "helm_plate_raidpaladin_b_01_gom.m2", - value = "helm_plate_raidpaladin_b_01_gom.m2", + fileId = "139920", + text = "helm_mail_raidshaman_f_01_trf.m2", + value = "helm_mail_raidshaman_f_01_trf.m2", }, { - fileId = "140929", - text = "helm_plate_raidpaladin_b_01_huf.m2", - value = "helm_plate_raidpaladin_b_01_huf.m2", - }, + fileId = "139921", + text = "helm_mail_raidshaman_f_01_trm.m2", + value = "helm_mail_raidshaman_f_01_trm.m2", + }, { - fileId = "140930", - text = "helm_plate_raidpaladin_b_01_hum.m2", - value = "helm_plate_raidpaladin_b_01_hum.m2", + fileId = "454179", + text = "helm_mail_raidshaman_f_01_wof.m2", + value = "helm_mail_raidshaman_f_01_wof.m2", }, { - fileId = "140931", - text = "helm_plate_raidpaladin_b_01_nif.m2", - value = "helm_plate_raidpaladin_b_01_nif.m2", + fileId = "430044", + text = "helm_mail_raidshaman_f_01_wom.m2", + value = "helm_mail_raidshaman_f_01_wom.m2", }, { - fileId = "140932", - text = "helm_plate_raidpaladin_b_01_nim.m2", - value = "helm_plate_raidpaladin_b_01_nim.m2", + fileId = "249211", + text = "helm_mail_raidshaman_g_01_bef.m2", + value = "helm_mail_raidshaman_g_01_bef.m2", }, { - fileId = "140933", - text = "helm_plate_raidpaladin_b_01_orf.m2", - value = "helm_plate_raidpaladin_b_01_orf.m2", + fileId = "249212", + text = "helm_mail_raidshaman_g_01_bem.m2", + value = "helm_mail_raidshaman_g_01_bem.m2", }, { - fileId = "140934", - text = "helm_plate_raidpaladin_b_01_orm.m2", - value = "helm_plate_raidpaladin_b_01_orm.m2", + fileId = "249213", + text = "helm_mail_raidshaman_g_01_drf.m2", + value = "helm_mail_raidshaman_g_01_drf.m2", }, { - fileId = "140935", - text = "helm_plate_raidpaladin_b_01_scf.m2", - value = "helm_plate_raidpaladin_b_01_scf.m2", + fileId = "249214", + text = "helm_mail_raidshaman_g_01_drm.m2", + value = "helm_mail_raidshaman_g_01_drm.m2", }, { - fileId = "140936", - text = "helm_plate_raidpaladin_b_01_scm.m2", - value = "helm_plate_raidpaladin_b_01_scm.m2", + fileId = "249215", + text = "helm_mail_raidshaman_g_01_dwf.m2", + value = "helm_mail_raidshaman_g_01_dwf.m2", }, { - fileId = "140937", - text = "helm_plate_raidpaladin_b_01_taf.m2", - value = "helm_plate_raidpaladin_b_01_taf.m2", + fileId = "249216", + text = "helm_mail_raidshaman_g_01_dwm.m2", + value = "helm_mail_raidshaman_g_01_dwm.m2", }, { - fileId = "140938", - text = "helm_plate_raidpaladin_b_01_tam.m2", - value = "helm_plate_raidpaladin_b_01_tam.m2", + fileId = "249217", + text = "helm_mail_raidshaman_g_01_gnf.m2", + value = "helm_mail_raidshaman_g_01_gnf.m2", }, { - fileId = "140939", - text = "helm_plate_raidpaladin_b_01_trf.m2", - value = "helm_plate_raidpaladin_b_01_trf.m2", + fileId = "249218", + text = "helm_mail_raidshaman_g_01_gnm.m2", + value = "helm_mail_raidshaman_g_01_gnm.m2", }, { - fileId = "140940", - text = "helm_plate_raidpaladin_b_01_trm.m2", - value = "helm_plate_raidpaladin_b_01_trm.m2", + fileId = "249219", + text = "helm_mail_raidshaman_g_01_gof.m2", + value = "helm_mail_raidshaman_g_01_gof.m2", }, { - fileId = "140944", - text = "helm_plate_raidpaladin_c_01_bef.m2", - value = "helm_plate_raidpaladin_c_01_bef.m2", + fileId = "249220", + text = "helm_mail_raidshaman_g_01_gom.m2", + value = "helm_mail_raidshaman_g_01_gom.m2", }, { - fileId = "140945", - text = "helm_plate_raidpaladin_c_01_bem.m2", - value = "helm_plate_raidpaladin_c_01_bem.m2", + fileId = "249221", + text = "helm_mail_raidshaman_g_01_huf.m2", + value = "helm_mail_raidshaman_g_01_huf.m2", }, { - fileId = "140946", - text = "helm_plate_raidpaladin_c_01_drf.m2", - value = "helm_plate_raidpaladin_c_01_drf.m2", + fileId = "249222", + text = "helm_mail_raidshaman_g_01_hum.m2", + value = "helm_mail_raidshaman_g_01_hum.m2", }, { - fileId = "140947", - text = "helm_plate_raidpaladin_c_01_drm.m2", - value = "helm_plate_raidpaladin_c_01_drm.m2", + fileId = "249223", + text = "helm_mail_raidshaman_g_01_nif.m2", + value = "helm_mail_raidshaman_g_01_nif.m2", }, { - fileId = "140948", - text = "helm_plate_raidpaladin_c_01_dwf.m2", - value = "helm_plate_raidpaladin_c_01_dwf.m2", + fileId = "249224", + text = "helm_mail_raidshaman_g_01_nim.m2", + value = "helm_mail_raidshaman_g_01_nim.m2", }, { - fileId = "140949", - text = "helm_plate_raidpaladin_c_01_dwm.m2", - value = "helm_plate_raidpaladin_c_01_dwm.m2", + fileId = "249225", + text = "helm_mail_raidshaman_g_01_orf.m2", + value = "helm_mail_raidshaman_g_01_orf.m2", }, { - fileId = "140950", - text = "helm_plate_raidpaladin_c_01_gnf.m2", - value = "helm_plate_raidpaladin_c_01_gnf.m2", + fileId = "249226", + text = "helm_mail_raidshaman_g_01_orm.m2", + value = "helm_mail_raidshaman_g_01_orm.m2", }, { - fileId = "140951", - text = "helm_plate_raidpaladin_c_01_gnm.m2", - value = "helm_plate_raidpaladin_c_01_gnm.m2", + fileId = "249227", + text = "helm_mail_raidshaman_g_01_scf.m2", + value = "helm_mail_raidshaman_g_01_scf.m2", }, { - fileId = "140952", - text = "helm_plate_raidpaladin_c_01_gof.m2", - value = "helm_plate_raidpaladin_c_01_gof.m2", + fileId = "249228", + text = "helm_mail_raidshaman_g_01_scm.m2", + value = "helm_mail_raidshaman_g_01_scm.m2", }, { - fileId = "140953", - text = "helm_plate_raidpaladin_c_01_gom.m2", - value = "helm_plate_raidpaladin_c_01_gom.m2", + fileId = "249229", + text = "helm_mail_raidshaman_g_01_taf.m2", + value = "helm_mail_raidshaman_g_01_taf.m2", }, { - fileId = "140954", - text = "helm_plate_raidpaladin_c_01_huf.m2", - value = "helm_plate_raidpaladin_c_01_huf.m2", + fileId = "249230", + text = "helm_mail_raidshaman_g_01_tam.m2", + value = "helm_mail_raidshaman_g_01_tam.m2", }, { - fileId = "140955", - text = "helm_plate_raidpaladin_c_01_hum.m2", - value = "helm_plate_raidpaladin_c_01_hum.m2", + fileId = "249231", + text = "helm_mail_raidshaman_g_01_trf.m2", + value = "helm_mail_raidshaman_g_01_trf.m2", }, { - fileId = "140956", - text = "helm_plate_raidpaladin_c_01_nif.m2", - value = "helm_plate_raidpaladin_c_01_nif.m2", + fileId = "249232", + text = "helm_mail_raidshaman_g_01_trm.m2", + value = "helm_mail_raidshaman_g_01_trm.m2", }, { - fileId = "140957", - text = "helm_plate_raidpaladin_c_01_nim.m2", - value = "helm_plate_raidpaladin_c_01_nim.m2", + fileId = "454180", + text = "helm_mail_raidshaman_g_01_wof.m2", + value = "helm_mail_raidshaman_g_01_wof.m2", }, { - fileId = "140958", - text = "helm_plate_raidpaladin_c_01_orf.m2", - value = "helm_plate_raidpaladin_c_01_orf.m2", + fileId = "430045", + text = "helm_mail_raidshaman_g_01_wom.m2", + value = "helm_mail_raidshaman_g_01_wom.m2", }, { - fileId = "140959", - text = "helm_plate_raidpaladin_c_01_orm.m2", - value = "helm_plate_raidpaladin_c_01_orm.m2", + fileId = "349421", + text = "helm_mail_raidshaman_h_01_bef.m2", + value = "helm_mail_raidshaman_h_01_bef.m2", }, { - fileId = "140960", - text = "helm_plate_raidpaladin_c_01_scf.m2", - value = "helm_plate_raidpaladin_c_01_scf.m2", + fileId = "349422", + text = "helm_mail_raidshaman_h_01_bem.m2", + value = "helm_mail_raidshaman_h_01_bem.m2", }, { - fileId = "140961", - text = "helm_plate_raidpaladin_c_01_scm.m2", - value = "helm_plate_raidpaladin_c_01_scm.m2", + fileId = "349423", + text = "helm_mail_raidshaman_h_01_drf.m2", + value = "helm_mail_raidshaman_h_01_drf.m2", }, { - fileId = "140962", - text = "helm_plate_raidpaladin_c_01_taf.m2", - value = "helm_plate_raidpaladin_c_01_taf.m2", + fileId = "349424", + text = "helm_mail_raidshaman_h_01_drm.m2", + value = "helm_mail_raidshaman_h_01_drm.m2", }, { - fileId = "140963", - text = "helm_plate_raidpaladin_c_01_tam.m2", - value = "helm_plate_raidpaladin_c_01_tam.m2", + fileId = "349425", + text = "helm_mail_raidshaman_h_01_dwf.m2", + value = "helm_mail_raidshaman_h_01_dwf.m2", }, { - fileId = "140964", - text = "helm_plate_raidpaladin_c_01_trf.m2", - value = "helm_plate_raidpaladin_c_01_trf.m2", + fileId = "349426", + text = "helm_mail_raidshaman_h_01_dwm.m2", + value = "helm_mail_raidshaman_h_01_dwm.m2", }, { - fileId = "140965", - text = "helm_plate_raidpaladin_c_01_trm.m2", - value = "helm_plate_raidpaladin_c_01_trm.m2", + fileId = "349427", + text = "helm_mail_raidshaman_h_01_gnf.m2", + value = "helm_mail_raidshaman_h_01_gnf.m2", }, { - fileId = "140968", - text = "helm_plate_raidpaladin_d_01_bef.m2", - value = "helm_plate_raidpaladin_d_01_bef.m2", + fileId = "349428", + text = "helm_mail_raidshaman_h_01_gnm.m2", + value = "helm_mail_raidshaman_h_01_gnm.m2", }, { - fileId = "140969", - text = "helm_plate_raidpaladin_d_01_bem.m2", - value = "helm_plate_raidpaladin_d_01_bem.m2", + fileId = "349429", + text = "helm_mail_raidshaman_h_01_gof.m2", + value = "helm_mail_raidshaman_h_01_gof.m2", }, { - fileId = "140970", - text = "helm_plate_raidpaladin_d_01_drf.m2", - value = "helm_plate_raidpaladin_d_01_drf.m2", + fileId = "349430", + text = "helm_mail_raidshaman_h_01_gom.m2", + value = "helm_mail_raidshaman_h_01_gom.m2", }, { - fileId = "140971", - text = "helm_plate_raidpaladin_d_01_drm.m2", - value = "helm_plate_raidpaladin_d_01_drm.m2", + fileId = "349431", + text = "helm_mail_raidshaman_h_01_huf.m2", + value = "helm_mail_raidshaman_h_01_huf.m2", }, { - fileId = "140972", - text = "helm_plate_raidpaladin_d_01_dwf.m2", - value = "helm_plate_raidpaladin_d_01_dwf.m2", + fileId = "349432", + text = "helm_mail_raidshaman_h_01_hum.m2", + value = "helm_mail_raidshaman_h_01_hum.m2", }, { - fileId = "140973", - text = "helm_plate_raidpaladin_d_01_dwm.m2", - value = "helm_plate_raidpaladin_d_01_dwm.m2", + fileId = "349433", + text = "helm_mail_raidshaman_h_01_nif.m2", + value = "helm_mail_raidshaman_h_01_nif.m2", }, { - fileId = "140975", - text = "helm_plate_raidpaladin_d_01_gnf.m2", - value = "helm_plate_raidpaladin_d_01_gnf.m2", + fileId = "349434", + text = "helm_mail_raidshaman_h_01_nim.m2", + value = "helm_mail_raidshaman_h_01_nim.m2", }, { - fileId = "140976", - text = "helm_plate_raidpaladin_d_01_gnm.m2", - value = "helm_plate_raidpaladin_d_01_gnm.m2", + fileId = "349435", + text = "helm_mail_raidshaman_h_01_orf.m2", + value = "helm_mail_raidshaman_h_01_orf.m2", }, { - fileId = "140977", - text = "helm_plate_raidpaladin_d_01_gof.m2", - value = "helm_plate_raidpaladin_d_01_gof.m2", + fileId = "349436", + text = "helm_mail_raidshaman_h_01_orm.m2", + value = "helm_mail_raidshaman_h_01_orm.m2", }, { - fileId = "140978", - text = "helm_plate_raidpaladin_d_01_gom.m2", - value = "helm_plate_raidpaladin_d_01_gom.m2", + fileId = "349437", + text = "helm_mail_raidshaman_h_01_scf.m2", + value = "helm_mail_raidshaman_h_01_scf.m2", }, { - fileId = "140979", - text = "helm_plate_raidpaladin_d_01_huf.m2", - value = "helm_plate_raidpaladin_d_01_huf.m2", + fileId = "349438", + text = "helm_mail_raidshaman_h_01_scm.m2", + value = "helm_mail_raidshaman_h_01_scm.m2", }, { - fileId = "140980", - text = "helm_plate_raidpaladin_d_01_hum.m2", - value = "helm_plate_raidpaladin_d_01_hum.m2", + fileId = "349439", + text = "helm_mail_raidshaman_h_01_taf.m2", + value = "helm_mail_raidshaman_h_01_taf.m2", }, { - fileId = "140981", - text = "helm_plate_raidpaladin_d_01_nif.m2", - value = "helm_plate_raidpaladin_d_01_nif.m2", + fileId = "349440", + text = "helm_mail_raidshaman_h_01_tam.m2", + value = "helm_mail_raidshaman_h_01_tam.m2", }, { - fileId = "140982", - text = "helm_plate_raidpaladin_d_01_nim.m2", - value = "helm_plate_raidpaladin_d_01_nim.m2", + fileId = "349441", + text = "helm_mail_raidshaman_h_01_trf.m2", + value = "helm_mail_raidshaman_h_01_trf.m2", }, { - fileId = "140983", - text = "helm_plate_raidpaladin_d_01_orf.m2", - value = "helm_plate_raidpaladin_d_01_orf.m2", + fileId = "349442", + text = "helm_mail_raidshaman_h_01_trm.m2", + value = "helm_mail_raidshaman_h_01_trm.m2", }, { - fileId = "140984", - text = "helm_plate_raidpaladin_d_01_orm.m2", - value = "helm_plate_raidpaladin_d_01_orm.m2", + fileId = "454181", + text = "helm_mail_raidshaman_h_01_wof.m2", + value = "helm_mail_raidshaman_h_01_wof.m2", }, { - fileId = "140985", - text = "helm_plate_raidpaladin_d_01_scf.m2", - value = "helm_plate_raidpaladin_d_01_scf.m2", + fileId = "430046", + text = "helm_mail_raidshaman_h_01_wom.m2", + value = "helm_mail_raidshaman_h_01_wom.m2", }, { - fileId = "140986", - text = "helm_plate_raidpaladin_d_01_scm.m2", - value = "helm_plate_raidpaladin_d_01_scm.m2", + fileId = "353015", + text = "helm_mail_raidshaman_h_02_bef.m2", + value = "helm_mail_raidshaman_h_02_bef.m2", }, { - fileId = "140987", - text = "helm_plate_raidpaladin_d_01_taf.m2", - value = "helm_plate_raidpaladin_d_01_taf.m2", + fileId = "353016", + text = "helm_mail_raidshaman_h_02_bem.m2", + value = "helm_mail_raidshaman_h_02_bem.m2", }, { - fileId = "140988", - text = "helm_plate_raidpaladin_d_01_tam.m2", - value = "helm_plate_raidpaladin_d_01_tam.m2", + fileId = "353017", + text = "helm_mail_raidshaman_h_02_drf.m2", + value = "helm_mail_raidshaman_h_02_drf.m2", }, { - fileId = "140989", - text = "helm_plate_raidpaladin_d_01_trf.m2", - value = "helm_plate_raidpaladin_d_01_trf.m2", + fileId = "353018", + text = "helm_mail_raidshaman_h_02_drm.m2", + value = "helm_mail_raidshaman_h_02_drm.m2", }, { - fileId = "140990", - text = "helm_plate_raidpaladin_d_01_trm.m2", - value = "helm_plate_raidpaladin_d_01_trm.m2", + fileId = "353019", + text = "helm_mail_raidshaman_h_02_dwf.m2", + value = "helm_mail_raidshaman_h_02_dwf.m2", }, { - fileId = "140993", - text = "helm_plate_raidpaladin_e_01_bef.m2", - value = "helm_plate_raidpaladin_e_01_bef.m2", + fileId = "353020", + text = "helm_mail_raidshaman_h_02_dwm.m2", + value = "helm_mail_raidshaman_h_02_dwm.m2", }, { - fileId = "140994", - text = "helm_plate_raidpaladin_e_01_bem.m2", - value = "helm_plate_raidpaladin_e_01_bem.m2", + fileId = "353021", + text = "helm_mail_raidshaman_h_02_gnf.m2", + value = "helm_mail_raidshaman_h_02_gnf.m2", }, { - fileId = "140995", - text = "helm_plate_raidpaladin_e_01_drf.m2", - value = "helm_plate_raidpaladin_e_01_drf.m2", + fileId = "353022", + text = "helm_mail_raidshaman_h_02_gnm.m2", + value = "helm_mail_raidshaman_h_02_gnm.m2", }, { - fileId = "140996", - text = "helm_plate_raidpaladin_e_01_drm.m2", - value = "helm_plate_raidpaladin_e_01_drm.m2", + fileId = "353023", + text = "helm_mail_raidshaman_h_02_gof.m2", + value = "helm_mail_raidshaman_h_02_gof.m2", }, { - fileId = "140997", - text = "helm_plate_raidpaladin_e_01_dwf.m2", - value = "helm_plate_raidpaladin_e_01_dwf.m2", + fileId = "353024", + text = "helm_mail_raidshaman_h_02_gom.m2", + value = "helm_mail_raidshaman_h_02_gom.m2", }, { - fileId = "140998", - text = "helm_plate_raidpaladin_e_01_dwm.m2", - value = "helm_plate_raidpaladin_e_01_dwm.m2", + fileId = "353025", + text = "helm_mail_raidshaman_h_02_huf.m2", + value = "helm_mail_raidshaman_h_02_huf.m2", }, { - fileId = "140999", - text = "helm_plate_raidpaladin_e_01_gnf.m2", - value = "helm_plate_raidpaladin_e_01_gnf.m2", + fileId = "353026", + text = "helm_mail_raidshaman_h_02_hum.m2", + value = "helm_mail_raidshaman_h_02_hum.m2", }, { - fileId = "141000", - text = "helm_plate_raidpaladin_e_01_gnm.m2", - value = "helm_plate_raidpaladin_e_01_gnm.m2", + fileId = "353027", + text = "helm_mail_raidshaman_h_02_nif.m2", + value = "helm_mail_raidshaman_h_02_nif.m2", }, { - fileId = "141001", - text = "helm_plate_raidpaladin_e_01_huf.m2", - value = "helm_plate_raidpaladin_e_01_huf.m2", + fileId = "353028", + text = "helm_mail_raidshaman_h_02_nim.m2", + value = "helm_mail_raidshaman_h_02_nim.m2", }, { - fileId = "141002", - text = "helm_plate_raidpaladin_e_01_hum.m2", - value = "helm_plate_raidpaladin_e_01_hum.m2", + fileId = "353029", + text = "helm_mail_raidshaman_h_02_orf.m2", + value = "helm_mail_raidshaman_h_02_orf.m2", }, { - fileId = "141003", - text = "helm_plate_raidpaladin_e_01_nif.m2", - value = "helm_plate_raidpaladin_e_01_nif.m2", + fileId = "354938", + text = "helm_mail_raidshaman_h_02_orm.m2", + value = "helm_mail_raidshaman_h_02_orm.m2", }, { - fileId = "141004", - text = "helm_plate_raidpaladin_e_01_nim.m2", - value = "helm_plate_raidpaladin_e_01_nim.m2", + fileId = "353030", + text = "helm_mail_raidshaman_h_02_scf.m2", + value = "helm_mail_raidshaman_h_02_scf.m2", }, { - fileId = "141005", - text = "helm_plate_raidpaladin_e_01_orf.m2", - value = "helm_plate_raidpaladin_e_01_orf.m2", + fileId = "353031", + text = "helm_mail_raidshaman_h_02_scm.m2", + value = "helm_mail_raidshaman_h_02_scm.m2", }, { - fileId = "141006", - text = "helm_plate_raidpaladin_e_01_orm.m2", - value = "helm_plate_raidpaladin_e_01_orm.m2", + fileId = "353032", + text = "helm_mail_raidshaman_h_02_taf.m2", + value = "helm_mail_raidshaman_h_02_taf.m2", }, { - fileId = "141007", - text = "helm_plate_raidpaladin_e_01_scf.m2", - value = "helm_plate_raidpaladin_e_01_scf.m2", + fileId = "353033", + text = "helm_mail_raidshaman_h_02_tam.m2", + value = "helm_mail_raidshaman_h_02_tam.m2", }, { - fileId = "141008", - text = "helm_plate_raidpaladin_e_01_scm.m2", - value = "helm_plate_raidpaladin_e_01_scm.m2", + fileId = "353034", + text = "helm_mail_raidshaman_h_02_trf.m2", + value = "helm_mail_raidshaman_h_02_trf.m2", }, { - fileId = "141009", - text = "helm_plate_raidpaladin_e_01_taf.m2", - value = "helm_plate_raidpaladin_e_01_taf.m2", + fileId = "353035", + text = "helm_mail_raidshaman_h_02_trm.m2", + value = "helm_mail_raidshaman_h_02_trm.m2", }, { - fileId = "141010", - text = "helm_plate_raidpaladin_e_01_tam.m2", - value = "helm_plate_raidpaladin_e_01_tam.m2", + fileId = "454182", + text = "helm_mail_raidshaman_h_02_wof.m2", + value = "helm_mail_raidshaman_h_02_wof.m2", }, { - fileId = "141011", - text = "helm_plate_raidpaladin_e_01_trf.m2", - value = "helm_plate_raidpaladin_e_01_trf.m2", + fileId = "430047", + text = "helm_mail_raidshaman_h_02_wom.m2", + value = "helm_mail_raidshaman_h_02_wom.m2", }, { - fileId = "141012", - text = "helm_plate_raidpaladin_e_01_trm.m2", - value = "helm_plate_raidpaladin_e_01_trm.m2", + fileId = "464989", + text = "helm_mail_raidshaman_i_01_bef.m2", + value = "helm_mail_raidshaman_i_01_bef.m2", }, { - fileId = "141015", - text = "helm_plate_raidpaladin_f_01_bef.m2", - value = "helm_plate_raidpaladin_f_01_bef.m2", + fileId = "464990", + text = "helm_mail_raidshaman_i_01_bem.m2", + value = "helm_mail_raidshaman_i_01_bem.m2", }, { - fileId = "141016", - text = "helm_plate_raidpaladin_f_01_bem.m2", - value = "helm_plate_raidpaladin_f_01_bem.m2", + fileId = "464991", + text = "helm_mail_raidshaman_i_01_drf.m2", + value = "helm_mail_raidshaman_i_01_drf.m2", }, { - fileId = "141017", - text = "helm_plate_raidpaladin_f_01_drf.m2", - value = "helm_plate_raidpaladin_f_01_drf.m2", + fileId = "464992", + text = "helm_mail_raidshaman_i_01_drm.m2", + value = "helm_mail_raidshaman_i_01_drm.m2", }, { - fileId = "141018", - text = "helm_plate_raidpaladin_f_01_drm.m2", - value = "helm_plate_raidpaladin_f_01_drm.m2", + fileId = "464993", + text = "helm_mail_raidshaman_i_01_dwf.m2", + value = "helm_mail_raidshaman_i_01_dwf.m2", }, { - fileId = "141019", - text = "helm_plate_raidpaladin_f_01_dwf.m2", - value = "helm_plate_raidpaladin_f_01_dwf.m2", + fileId = "464994", + text = "helm_mail_raidshaman_i_01_dwm.m2", + value = "helm_mail_raidshaman_i_01_dwm.m2", }, { - fileId = "141020", - text = "helm_plate_raidpaladin_f_01_dwm.m2", - value = "helm_plate_raidpaladin_f_01_dwm.m2", + fileId = "464995", + text = "helm_mail_raidshaman_i_01_gnf.m2", + value = "helm_mail_raidshaman_i_01_gnf.m2", }, { - fileId = "141021", - text = "helm_plate_raidpaladin_f_01_gnf.m2", - value = "helm_plate_raidpaladin_f_01_gnf.m2", + fileId = "464996", + text = "helm_mail_raidshaman_i_01_gnm.m2", + value = "helm_mail_raidshaman_i_01_gnm.m2", }, { - fileId = "141022", - text = "helm_plate_raidpaladin_f_01_gnm.m2", - value = "helm_plate_raidpaladin_f_01_gnm.m2", + fileId = "464997", + text = "helm_mail_raidshaman_i_01_gof.m2", + value = "helm_mail_raidshaman_i_01_gof.m2", }, { - fileId = "141023", - text = "helm_plate_raidpaladin_f_01_gom.m2", - value = "helm_plate_raidpaladin_f_01_gom.m2", + fileId = "464998", + text = "helm_mail_raidshaman_i_01_gom.m2", + value = "helm_mail_raidshaman_i_01_gom.m2", }, { - fileId = "141024", - text = "helm_plate_raidpaladin_f_01_huf.m2", - value = "helm_plate_raidpaladin_f_01_huf.m2", + fileId = "464999", + text = "helm_mail_raidshaman_i_01_huf.m2", + value = "helm_mail_raidshaman_i_01_huf.m2", }, { - fileId = "141025", - text = "helm_plate_raidpaladin_f_01_hum.m2", - value = "helm_plate_raidpaladin_f_01_hum.m2", + fileId = "465000", + text = "helm_mail_raidshaman_i_01_hum.m2", + value = "helm_mail_raidshaman_i_01_hum.m2", }, { - fileId = "141026", - text = "helm_plate_raidpaladin_f_01_nif.m2", - value = "helm_plate_raidpaladin_f_01_nif.m2", + fileId = "465001", + text = "helm_mail_raidshaman_i_01_nif.m2", + value = "helm_mail_raidshaman_i_01_nif.m2", }, { - fileId = "141027", - text = "helm_plate_raidpaladin_f_01_nim.m2", - value = "helm_plate_raidpaladin_f_01_nim.m2", + fileId = "465002", + text = "helm_mail_raidshaman_i_01_nim.m2", + value = "helm_mail_raidshaman_i_01_nim.m2", }, { - fileId = "141028", - text = "helm_plate_raidpaladin_f_01_orf.m2", - value = "helm_plate_raidpaladin_f_01_orf.m2", + fileId = "465003", + text = "helm_mail_raidshaman_i_01_orf.m2", + value = "helm_mail_raidshaman_i_01_orf.m2", }, { - fileId = "141029", - text = "helm_plate_raidpaladin_f_01_orm.m2", - value = "helm_plate_raidpaladin_f_01_orm.m2", + fileId = "465004", + text = "helm_mail_raidshaman_i_01_orm.m2", + value = "helm_mail_raidshaman_i_01_orm.m2", }, { - fileId = "141030", - text = "helm_plate_raidpaladin_f_01_scf.m2", - value = "helm_plate_raidpaladin_f_01_scf.m2", + fileId = "465005", + text = "helm_mail_raidshaman_i_01_scf.m2", + value = "helm_mail_raidshaman_i_01_scf.m2", }, { - fileId = "141031", - text = "helm_plate_raidpaladin_f_01_scm.m2", - value = "helm_plate_raidpaladin_f_01_scm.m2", + fileId = "465006", + text = "helm_mail_raidshaman_i_01_scm.m2", + value = "helm_mail_raidshaman_i_01_scm.m2", }, { - fileId = "141032", - text = "helm_plate_raidpaladin_f_01_taf.m2", - value = "helm_plate_raidpaladin_f_01_taf.m2", + fileId = "465007", + text = "helm_mail_raidshaman_i_01_taf.m2", + value = "helm_mail_raidshaman_i_01_taf.m2", }, { - fileId = "141033", - text = "helm_plate_raidpaladin_f_01_tam.m2", - value = "helm_plate_raidpaladin_f_01_tam.m2", + fileId = "465008", + text = "helm_mail_raidshaman_i_01_tam.m2", + value = "helm_mail_raidshaman_i_01_tam.m2", }, { - fileId = "141034", - text = "helm_plate_raidpaladin_f_01_trf.m2", - value = "helm_plate_raidpaladin_f_01_trf.m2", + fileId = "465009", + text = "helm_mail_raidshaman_i_01_trf.m2", + value = "helm_mail_raidshaman_i_01_trf.m2", }, { - fileId = "141035", - text = "helm_plate_raidpaladin_f_01_trm.m2", - value = "helm_plate_raidpaladin_f_01_trm.m2", + fileId = "465010", + text = "helm_mail_raidshaman_i_01_trm.m2", + value = "helm_mail_raidshaman_i_01_trm.m2", }, { - fileId = "238196", - text = "helm_plate_raidpaladin_g_01_bef.m2", - value = "helm_plate_raidpaladin_g_01_bef.m2", + fileId = "465011", + text = "helm_mail_raidshaman_i_01_wof.m2", + value = "helm_mail_raidshaman_i_01_wof.m2", }, { - fileId = "238197", - text = "helm_plate_raidpaladin_g_01_bem.m2", - value = "helm_plate_raidpaladin_g_01_bem.m2", + fileId = "465012", + text = "helm_mail_raidshaman_i_01_wom.m2", + value = "helm_mail_raidshaman_i_01_wom.m2", }, { - fileId = "238198", - text = "helm_plate_raidpaladin_g_01_drf.m2", - value = "helm_plate_raidpaladin_g_01_drf.m2", + fileId = "526053", + text = "helm_mail_raidshaman_j_01_bef.m2", + value = "helm_mail_raidshaman_j_01_bef.m2", }, { - fileId = "238199", - text = "helm_plate_raidpaladin_g_01_drm.m2", - value = "helm_plate_raidpaladin_g_01_drm.m2", + fileId = "526055", + text = "helm_mail_raidshaman_j_01_bem.m2", + value = "helm_mail_raidshaman_j_01_bem.m2", }, { - fileId = "238200", - text = "helm_plate_raidpaladin_g_01_dwf.m2", - value = "helm_plate_raidpaladin_g_01_dwf.m2", + fileId = "526057", + text = "helm_mail_raidshaman_j_01_drf.m2", + value = "helm_mail_raidshaman_j_01_drf.m2", }, { - fileId = "238201", - text = "helm_plate_raidpaladin_g_01_dwm.m2", - value = "helm_plate_raidpaladin_g_01_dwm.m2", + fileId = "526059", + text = "helm_mail_raidshaman_j_01_drm.m2", + value = "helm_mail_raidshaman_j_01_drm.m2", }, { - fileId = "238202", - text = "helm_plate_raidpaladin_g_01_gnf.m2", - value = "helm_plate_raidpaladin_g_01_gnf.m2", + fileId = "526061", + text = "helm_mail_raidshaman_j_01_dwf.m2", + value = "helm_mail_raidshaman_j_01_dwf.m2", }, { - fileId = "238203", - text = "helm_plate_raidpaladin_g_01_gnm.m2", - value = "helm_plate_raidpaladin_g_01_gnm.m2", + fileId = "526063", + text = "helm_mail_raidshaman_j_01_dwm.m2", + value = "helm_mail_raidshaman_j_01_dwm.m2", }, { - fileId = "238204", - text = "helm_plate_raidpaladin_g_01_gof.m2", - value = "helm_plate_raidpaladin_g_01_gof.m2", + fileId = "526065", + text = "helm_mail_raidshaman_j_01_gnf.m2", + value = "helm_mail_raidshaman_j_01_gnf.m2", }, { - fileId = "238205", - text = "helm_plate_raidpaladin_g_01_gom.m2", - value = "helm_plate_raidpaladin_g_01_gom.m2", + fileId = "526067", + text = "helm_mail_raidshaman_j_01_gnm.m2", + value = "helm_mail_raidshaman_j_01_gnm.m2", }, { - fileId = "238206", - text = "helm_plate_raidpaladin_g_01_huf.m2", - value = "helm_plate_raidpaladin_g_01_huf.m2", + fileId = "526069", + text = "helm_mail_raidshaman_j_01_gof.m2", + value = "helm_mail_raidshaman_j_01_gof.m2", }, { - fileId = "238207", - text = "helm_plate_raidpaladin_g_01_hum.m2", - value = "helm_plate_raidpaladin_g_01_hum.m2", + fileId = "526071", + text = "helm_mail_raidshaman_j_01_gom.m2", + value = "helm_mail_raidshaman_j_01_gom.m2", }, { - fileId = "238208", - text = "helm_plate_raidpaladin_g_01_nif.m2", - value = "helm_plate_raidpaladin_g_01_nif.m2", + fileId = "526073", + text = "helm_mail_raidshaman_j_01_huf.m2", + value = "helm_mail_raidshaman_j_01_huf.m2", }, { - fileId = "238209", - text = "helm_plate_raidpaladin_g_01_nim.m2", - value = "helm_plate_raidpaladin_g_01_nim.m2", + fileId = "526075", + text = "helm_mail_raidshaman_j_01_hum.m2", + value = "helm_mail_raidshaman_j_01_hum.m2", }, { - fileId = "238210", - text = "helm_plate_raidpaladin_g_01_orf.m2", - value = "helm_plate_raidpaladin_g_01_orf.m2", + fileId = "526077", + text = "helm_mail_raidshaman_j_01_nif.m2", + value = "helm_mail_raidshaman_j_01_nif.m2", }, { - fileId = "238211", - text = "helm_plate_raidpaladin_g_01_orm.m2", - value = "helm_plate_raidpaladin_g_01_orm.m2", + fileId = "526079", + text = "helm_mail_raidshaman_j_01_nim.m2", + value = "helm_mail_raidshaman_j_01_nim.m2", }, { - fileId = "238212", - text = "helm_plate_raidpaladin_g_01_scf.m2", - value = "helm_plate_raidpaladin_g_01_scf.m2", + fileId = "526081", + text = "helm_mail_raidshaman_j_01_orf.m2", + value = "helm_mail_raidshaman_j_01_orf.m2", }, { - fileId = "238213", - text = "helm_plate_raidpaladin_g_01_scm.m2", - value = "helm_plate_raidpaladin_g_01_scm.m2", + fileId = "526083", + text = "helm_mail_raidshaman_j_01_orm.m2", + value = "helm_mail_raidshaman_j_01_orm.m2", }, { - fileId = "238214", - text = "helm_plate_raidpaladin_g_01_taf.m2", - value = "helm_plate_raidpaladin_g_01_taf.m2", + fileId = "526085", + text = "helm_mail_raidshaman_j_01_scf.m2", + value = "helm_mail_raidshaman_j_01_scf.m2", }, { - fileId = "238215", - text = "helm_plate_raidpaladin_g_01_tam.m2", - value = "helm_plate_raidpaladin_g_01_tam.m2", + fileId = "526087", + text = "helm_mail_raidshaman_j_01_scm.m2", + value = "helm_mail_raidshaman_j_01_scm.m2", }, { - fileId = "238216", - text = "helm_plate_raidpaladin_g_01_trf.m2", - value = "helm_plate_raidpaladin_g_01_trf.m2", + fileId = "526089", + text = "helm_mail_raidshaman_j_01_taf.m2", + value = "helm_mail_raidshaman_j_01_taf.m2", }, { - fileId = "238217", - text = "helm_plate_raidpaladin_g_01_trm.m2", - value = "helm_plate_raidpaladin_g_01_trm.m2", + fileId = "526091", + text = "helm_mail_raidshaman_j_01_tam.m2", + value = "helm_mail_raidshaman_j_01_tam.m2", }, { - fileId = "341223", - text = "helm_plate_raidpaladin_h_01_bef.m2", - value = "helm_plate_raidpaladin_h_01_bef.m2", + fileId = "526093", + text = "helm_mail_raidshaman_j_01_trf.m2", + value = "helm_mail_raidshaman_j_01_trf.m2", }, { - fileId = "341224", - text = "helm_plate_raidpaladin_h_01_bem.m2", - value = "helm_plate_raidpaladin_h_01_bem.m2", + fileId = "526095", + text = "helm_mail_raidshaman_j_01_trm.m2", + value = "helm_mail_raidshaman_j_01_trm.m2", }, { - fileId = "348796", - text = "helm_plate_raidpaladin_h_01_drf.m2", - value = "helm_plate_raidpaladin_h_01_drf.m2", + fileId = "526097", + text = "helm_mail_raidshaman_j_01_wof.m2", + value = "helm_mail_raidshaman_j_01_wof.m2", }, { - fileId = "341225", - text = "helm_plate_raidpaladin_h_01_drm.m2", - value = "helm_plate_raidpaladin_h_01_drm.m2", + fileId = "526099", + text = "helm_mail_raidshaman_j_01_wom.m2", + value = "helm_mail_raidshaman_j_01_wom.m2", }, { - fileId = "353521", - text = "helm_plate_raidpaladin_h_01_dwf.m2", - value = "helm_plate_raidpaladin_h_01_dwf.m2", + fileId = "534328", + text = "helm_mail_raidshaman_k_01_bef.m2", + value = "helm_mail_raidshaman_k_01_bef.m2", }, { - fileId = "341226", - text = "helm_plate_raidpaladin_h_01_dwm.m2", - value = "helm_plate_raidpaladin_h_01_dwm.m2", + fileId = "534330", + text = "helm_mail_raidshaman_k_01_bem.m2", + value = "helm_mail_raidshaman_k_01_bem.m2", }, { - fileId = "354741", - text = "helm_plate_raidpaladin_h_01_gnf.m2", - value = "helm_plate_raidpaladin_h_01_gnf.m2", + fileId = "534332", + text = "helm_mail_raidshaman_k_01_drf.m2", + value = "helm_mail_raidshaman_k_01_drf.m2", }, { - fileId = "341227", - text = "helm_plate_raidpaladin_h_01_gnm.m2", - value = "helm_plate_raidpaladin_h_01_gnm.m2", + fileId = "534334", + text = "helm_mail_raidshaman_k_01_drm.m2", + value = "helm_mail_raidshaman_k_01_drm.m2", }, { - fileId = "341228", - text = "helm_plate_raidpaladin_h_01_gof.m2", - value = "helm_plate_raidpaladin_h_01_gof.m2", + fileId = "534336", + text = "helm_mail_raidshaman_k_01_dwf.m2", + value = "helm_mail_raidshaman_k_01_dwf.m2", }, { - fileId = "341230", - text = "helm_plate_raidpaladin_h_01_gom.m2", - value = "helm_plate_raidpaladin_h_01_gom.m2", + fileId = "534338", + text = "helm_mail_raidshaman_k_01_dwm.m2", + value = "helm_mail_raidshaman_k_01_dwm.m2", }, { - fileId = "341231", - text = "helm_plate_raidpaladin_h_01_huf.m2", - value = "helm_plate_raidpaladin_h_01_huf.m2", + fileId = "534340", + text = "helm_mail_raidshaman_k_01_gnf.m2", + value = "helm_mail_raidshaman_k_01_gnf.m2", }, { - fileId = "341232", - text = "helm_plate_raidpaladin_h_01_hum.m2", - value = "helm_plate_raidpaladin_h_01_hum.m2", + fileId = "534342", + text = "helm_mail_raidshaman_k_01_gnm.m2", + value = "helm_mail_raidshaman_k_01_gnm.m2", }, { - fileId = "341233", - text = "helm_plate_raidpaladin_h_01_nif.m2", - value = "helm_plate_raidpaladin_h_01_nif.m2", + fileId = "534344", + text = "helm_mail_raidshaman_k_01_gof.m2", + value = "helm_mail_raidshaman_k_01_gof.m2", }, { - fileId = "341234", - text = "helm_plate_raidpaladin_h_01_nim.m2", - value = "helm_plate_raidpaladin_h_01_nim.m2", + fileId = "534346", + text = "helm_mail_raidshaman_k_01_gom.m2", + value = "helm_mail_raidshaman_k_01_gom.m2", }, { - fileId = "341235", - text = "helm_plate_raidpaladin_h_01_orf.m2", - value = "helm_plate_raidpaladin_h_01_orf.m2", + fileId = "534348", + text = "helm_mail_raidshaman_k_01_huf.m2", + value = "helm_mail_raidshaman_k_01_huf.m2", }, { - fileId = "341236", - text = "helm_plate_raidpaladin_h_01_orm.m2", - value = "helm_plate_raidpaladin_h_01_orm.m2", + fileId = "534350", + text = "helm_mail_raidshaman_k_01_hum.m2", + value = "helm_mail_raidshaman_k_01_hum.m2", }, { - fileId = "341237", - text = "helm_plate_raidpaladin_h_01_scf.m2", - value = "helm_plate_raidpaladin_h_01_scf.m2", + fileId = "534352", + text = "helm_mail_raidshaman_k_01_nif.m2", + value = "helm_mail_raidshaman_k_01_nif.m2", }, { - fileId = "341238", - text = "helm_plate_raidpaladin_h_01_scm.m2", - value = "helm_plate_raidpaladin_h_01_scm.m2", + fileId = "534354", + text = "helm_mail_raidshaman_k_01_nim.m2", + value = "helm_mail_raidshaman_k_01_nim.m2", }, { - fileId = "350708", - text = "helm_plate_raidpaladin_h_01_taf.m2", - value = "helm_plate_raidpaladin_h_01_taf.m2", + fileId = "534356", + text = "helm_mail_raidshaman_k_01_orf.m2", + value = "helm_mail_raidshaman_k_01_orf.m2", }, { - fileId = "341239", - text = "helm_plate_raidpaladin_h_01_tam.m2", - value = "helm_plate_raidpaladin_h_01_tam.m2", + fileId = "534358", + text = "helm_mail_raidshaman_k_01_orm.m2", + value = "helm_mail_raidshaman_k_01_orm.m2", }, { - fileId = "350709", - text = "helm_plate_raidpaladin_h_01_trf.m2", - value = "helm_plate_raidpaladin_h_01_trf.m2", + fileId = "534360", + text = "helm_mail_raidshaman_k_01_scf.m2", + value = "helm_mail_raidshaman_k_01_scf.m2", }, { - fileId = "350710", - text = "helm_plate_raidpaladin_h_01_trm.m2", - value = "helm_plate_raidpaladin_h_01_trm.m2", + fileId = "534362", + text = "helm_mail_raidshaman_k_01_scm.m2", + value = "helm_mail_raidshaman_k_01_scm.m2", }, { - fileId = "141039", - text = "helm_plate_raidwarrior_a_01_bef.m2", - value = "helm_plate_raidwarrior_a_01_bef.m2", + fileId = "534364", + text = "helm_mail_raidshaman_k_01_taf.m2", + value = "helm_mail_raidshaman_k_01_taf.m2", }, { - fileId = "141040", - text = "helm_plate_raidwarrior_a_01_bem.m2", - value = "helm_plate_raidwarrior_a_01_bem.m2", + fileId = "534366", + text = "helm_mail_raidshaman_k_01_tam.m2", + value = "helm_mail_raidshaman_k_01_tam.m2", }, { - fileId = "141041", - text = "helm_plate_raidwarrior_a_01_drf.m2", - value = "helm_plate_raidwarrior_a_01_drf.m2", + fileId = "534368", + text = "helm_mail_raidshaman_k_01_trf.m2", + value = "helm_mail_raidshaman_k_01_trf.m2", }, { - fileId = "141042", - text = "helm_plate_raidwarrior_a_01_drm.m2", - value = "helm_plate_raidwarrior_a_01_drm.m2", + fileId = "534370", + text = "helm_mail_raidshaman_k_01_trm.m2", + value = "helm_mail_raidshaman_k_01_trm.m2", }, { - fileId = "141043", - text = "helm_plate_raidwarrior_a_01_dwf.m2", - value = "helm_plate_raidwarrior_a_01_dwf.m2", + fileId = "534372", + text = "helm_mail_raidshaman_k_01_wof.m2", + value = "helm_mail_raidshaman_k_01_wof.m2", }, { - fileId = "141044", - text = "helm_plate_raidwarrior_a_01_dwm.m2", - value = "helm_plate_raidwarrior_a_01_dwm.m2", + fileId = "534374", + text = "helm_mail_raidshaman_k_01_wom.m2", + value = "helm_mail_raidshaman_k_01_wom.m2", }, { - fileId = "141045", - text = "helm_plate_raidwarrior_a_01_gnf.m2", - value = "helm_plate_raidwarrior_a_01_gnf.m2", + fileId = "139926", + text = "helm_mail_sunwell_d_01_bef.m2", + value = "helm_mail_sunwell_d_01_bef.m2", }, { - fileId = "141046", - text = "helm_plate_raidwarrior_a_01_gnm.m2", - value = "helm_plate_raidwarrior_a_01_gnm.m2", + fileId = "139927", + text = "helm_mail_sunwell_d_01_bem.m2", + value = "helm_mail_sunwell_d_01_bem.m2", }, { - fileId = "141047", - text = "helm_plate_raidwarrior_a_01_gof.m2", - value = "helm_plate_raidwarrior_a_01_gof.m2", + fileId = "139928", + text = "helm_mail_sunwell_d_01_drf.m2", + value = "helm_mail_sunwell_d_01_drf.m2", }, { - fileId = "141048", - text = "helm_plate_raidwarrior_a_01_gom.m2", - value = "helm_plate_raidwarrior_a_01_gom.m2", + fileId = "139929", + text = "helm_mail_sunwell_d_01_drm.m2", + value = "helm_mail_sunwell_d_01_drm.m2", }, { - fileId = "141049", - text = "helm_plate_raidwarrior_a_01_huf.m2", - value = "helm_plate_raidwarrior_a_01_huf.m2", + fileId = "139930", + text = "helm_mail_sunwell_d_01_dwf.m2", + value = "helm_mail_sunwell_d_01_dwf.m2", }, { - fileId = "141050", - text = "helm_plate_raidwarrior_a_01_hum.m2", - value = "helm_plate_raidwarrior_a_01_hum.m2", + fileId = "139931", + text = "helm_mail_sunwell_d_01_dwm.m2", + value = "helm_mail_sunwell_d_01_dwm.m2", }, { - fileId = "141051", - text = "helm_plate_raidwarrior_a_01_nif.m2", - value = "helm_plate_raidwarrior_a_01_nif.m2", + fileId = "139932", + text = "helm_mail_sunwell_d_01_gnf.m2", + value = "helm_mail_sunwell_d_01_gnf.m2", }, { - fileId = "141052", - text = "helm_plate_raidwarrior_a_01_nim.m2", - value = "helm_plate_raidwarrior_a_01_nim.m2", + fileId = "139933", + text = "helm_mail_sunwell_d_01_gnm.m2", + value = "helm_mail_sunwell_d_01_gnm.m2", }, { - fileId = "141053", - text = "helm_plate_raidwarrior_a_01_orf.m2", - value = "helm_plate_raidwarrior_a_01_orf.m2", + fileId = "139934", + text = "helm_mail_sunwell_d_01_gof.m2", + value = "helm_mail_sunwell_d_01_gof.m2", }, { - fileId = "141054", - text = "helm_plate_raidwarrior_a_01_orm.m2", - value = "helm_plate_raidwarrior_a_01_orm.m2", + fileId = "139935", + text = "helm_mail_sunwell_d_01_gom.m2", + value = "helm_mail_sunwell_d_01_gom.m2", }, { - fileId = "141055", - text = "helm_plate_raidwarrior_a_01_scf.m2", - value = "helm_plate_raidwarrior_a_01_scf.m2", + fileId = "139936", + text = "helm_mail_sunwell_d_01_huf.m2", + value = "helm_mail_sunwell_d_01_huf.m2", }, { - fileId = "141056", - text = "helm_plate_raidwarrior_a_01_scm.m2", - value = "helm_plate_raidwarrior_a_01_scm.m2", + fileId = "139937", + text = "helm_mail_sunwell_d_01_hum.m2", + value = "helm_mail_sunwell_d_01_hum.m2", }, { - fileId = "141057", - text = "helm_plate_raidwarrior_a_01_taf.m2", - value = "helm_plate_raidwarrior_a_01_taf.m2", + fileId = "139938", + text = "helm_mail_sunwell_d_01_nif.m2", + value = "helm_mail_sunwell_d_01_nif.m2", }, { - fileId = "141058", - text = "helm_plate_raidwarrior_a_01_tam.m2", - value = "helm_plate_raidwarrior_a_01_tam.m2", + fileId = "139939", + text = "helm_mail_sunwell_d_01_nim.m2", + value = "helm_mail_sunwell_d_01_nim.m2", }, { - fileId = "141059", - text = "helm_plate_raidwarrior_a_01_trf.m2", - value = "helm_plate_raidwarrior_a_01_trf.m2", + fileId = "139940", + text = "helm_mail_sunwell_d_01_orf.m2", + value = "helm_mail_sunwell_d_01_orf.m2", }, { - fileId = "141060", - text = "helm_plate_raidwarrior_a_01_trm.m2", - value = "helm_plate_raidwarrior_a_01_trm.m2", + fileId = "139941", + text = "helm_mail_sunwell_d_01_orm.m2", + value = "helm_mail_sunwell_d_01_orm.m2", }, { - fileId = "141066", - text = "helm_plate_raidwarrior_b_01_bef.m2", - value = "helm_plate_raidwarrior_b_01_bef.m2", + fileId = "139942", + text = "helm_mail_sunwell_d_01_scf.m2", + value = "helm_mail_sunwell_d_01_scf.m2", }, { - fileId = "141067", - text = "helm_plate_raidwarrior_b_01_bem.m2", - value = "helm_plate_raidwarrior_b_01_bem.m2", + fileId = "139943", + text = "helm_mail_sunwell_d_01_scm.m2", + value = "helm_mail_sunwell_d_01_scm.m2", }, { - fileId = "141068", - text = "helm_plate_raidwarrior_b_01_drf.m2", - value = "helm_plate_raidwarrior_b_01_drf.m2", + fileId = "139944", + text = "helm_mail_sunwell_d_01_taf.m2", + value = "helm_mail_sunwell_d_01_taf.m2", }, { - fileId = "141069", - text = "helm_plate_raidwarrior_b_01_drm.m2", - value = "helm_plate_raidwarrior_b_01_drm.m2", + fileId = "139945", + text = "helm_mail_sunwell_d_01_tam.m2", + value = "helm_mail_sunwell_d_01_tam.m2", }, { - fileId = "141070", - text = "helm_plate_raidwarrior_b_01_dwf.m2", - value = "helm_plate_raidwarrior_b_01_dwf.m2", + fileId = "139946", + text = "helm_mail_sunwell_d_01_trf.m2", + value = "helm_mail_sunwell_d_01_trf.m2", }, { - fileId = "141071", - text = "helm_plate_raidwarrior_b_01_dwm.m2", - value = "helm_plate_raidwarrior_b_01_dwm.m2", + fileId = "139947", + text = "helm_mail_sunwell_d_01_trm.m2", + value = "helm_mail_sunwell_d_01_trm.m2", }, { - fileId = "141072", - text = "helm_plate_raidwarrior_b_01_gnf.m2", - value = "helm_plate_raidwarrior_b_01_gnf.m2", + fileId = "454776", + text = "helm_mail_sunwell_d_01_wof.m2", + value = "helm_mail_sunwell_d_01_wof.m2", }, { - fileId = "141073", - text = "helm_plate_raidwarrior_b_01_gnm.m2", - value = "helm_plate_raidwarrior_b_01_gnm.m2", + fileId = "430048", + text = "helm_mail_sunwell_d_01_wom.m2", + value = "helm_mail_sunwell_d_01_wom.m2", }, { - fileId = "141074", - text = "helm_plate_raidwarrior_b_01_gof.m2", - value = "helm_plate_raidwarrior_b_01_gof.m2", + fileId = "238031", + text = "helm_mail_vrykul_01_nsm.m2", + value = "helm_mail_vrykul_01_nsm.m2", }, { - fileId = "141075", - text = "helm_plate_raidwarrior_b_01_gom.m2", - value = "helm_plate_raidwarrior_b_01_gom.m2", + fileId = "238032", + text = "helm_mail_vrykul_01_vrm.m2", + value = "helm_mail_vrykul_01_vrm.m2", }, { - fileId = "141076", - text = "helm_plate_raidwarrior_b_01_huf.m2", - value = "helm_plate_raidwarrior_b_01_huf.m2", + fileId = "139953", + text = "helm_mail_zulaman_d_01_bef.m2", + value = "helm_mail_zulaman_d_01_bef.m2", }, { - fileId = "141077", - text = "helm_plate_raidwarrior_b_01_hum.m2", - value = "helm_plate_raidwarrior_b_01_hum.m2", + fileId = "139954", + text = "helm_mail_zulaman_d_01_bem.m2", + value = "helm_mail_zulaman_d_01_bem.m2", }, { - fileId = "141078", - text = "helm_plate_raidwarrior_b_01_nif.m2", - value = "helm_plate_raidwarrior_b_01_nif.m2", + fileId = "139955", + text = "helm_mail_zulaman_d_01_drf.m2", + value = "helm_mail_zulaman_d_01_drf.m2", }, { - fileId = "141079", - text = "helm_plate_raidwarrior_b_01_nim.m2", - value = "helm_plate_raidwarrior_b_01_nim.m2", + fileId = "139956", + text = "helm_mail_zulaman_d_01_drm.m2", + value = "helm_mail_zulaman_d_01_drm.m2", }, { - fileId = "141080", - text = "helm_plate_raidwarrior_b_01_orf.m2", - value = "helm_plate_raidwarrior_b_01_orf.m2", + fileId = "139957", + text = "helm_mail_zulaman_d_01_dwf.m2", + value = "helm_mail_zulaman_d_01_dwf.m2", }, { - fileId = "141081", - text = "helm_plate_raidwarrior_b_01_orm.m2", - value = "helm_plate_raidwarrior_b_01_orm.m2", + fileId = "139958", + text = "helm_mail_zulaman_d_01_dwm.m2", + value = "helm_mail_zulaman_d_01_dwm.m2", }, { - fileId = "141082", - text = "helm_plate_raidwarrior_b_01_scf.m2", - value = "helm_plate_raidwarrior_b_01_scf.m2", + fileId = "139959", + text = "helm_mail_zulaman_d_01_gnf.m2", + value = "helm_mail_zulaman_d_01_gnf.m2", }, { - fileId = "141083", - text = "helm_plate_raidwarrior_b_01_scm.m2", - value = "helm_plate_raidwarrior_b_01_scm.m2", + fileId = "139960", + text = "helm_mail_zulaman_d_01_gnm.m2", + value = "helm_mail_zulaman_d_01_gnm.m2", }, { - fileId = "141084", - text = "helm_plate_raidwarrior_b_01_taf.m2", - value = "helm_plate_raidwarrior_b_01_taf.m2", + fileId = "463060", + text = "helm_mail_zulaman_d_01_gof.m2", + value = "helm_mail_zulaman_d_01_gof.m2", }, { - fileId = "141085", - text = "helm_plate_raidwarrior_b_01_tam.m2", - value = "helm_plate_raidwarrior_b_01_tam.m2", + fileId = "463061", + text = "helm_mail_zulaman_d_01_gom.m2", + value = "helm_mail_zulaman_d_01_gom.m2", }, { - fileId = "141086", - text = "helm_plate_raidwarrior_b_01_trf.m2", - value = "helm_plate_raidwarrior_b_01_trf.m2", + fileId = "139961", + text = "helm_mail_zulaman_d_01_huf.m2", + value = "helm_mail_zulaman_d_01_huf.m2", }, { - fileId = "141087", - text = "helm_plate_raidwarrior_b_01_trm.m2", - value = "helm_plate_raidwarrior_b_01_trm.m2", + fileId = "139962", + text = "helm_mail_zulaman_d_01_hum.m2", + value = "helm_mail_zulaman_d_01_hum.m2", }, { - fileId = "141093", - text = "helm_plate_raidwarrior_c_01_bef.m2", - value = "helm_plate_raidwarrior_c_01_bef.m2", + fileId = "139963", + text = "helm_mail_zulaman_d_01_nif.m2", + value = "helm_mail_zulaman_d_01_nif.m2", }, { - fileId = "141094", - text = "helm_plate_raidwarrior_c_01_bem.m2", - value = "helm_plate_raidwarrior_c_01_bem.m2", + fileId = "139964", + text = "helm_mail_zulaman_d_01_nim.m2", + value = "helm_mail_zulaman_d_01_nim.m2", }, { - fileId = "141095", - text = "helm_plate_raidwarrior_c_01_drf.m2", - value = "helm_plate_raidwarrior_c_01_drf.m2", + fileId = "139965", + text = "helm_mail_zulaman_d_01_orf.m2", + value = "helm_mail_zulaman_d_01_orf.m2", }, { - fileId = "141096", - text = "helm_plate_raidwarrior_c_01_drm.m2", - value = "helm_plate_raidwarrior_c_01_drm.m2", + fileId = "139966", + text = "helm_mail_zulaman_d_01_orm.m2", + value = "helm_mail_zulaman_d_01_orm.m2", }, { - fileId = "141097", - text = "helm_plate_raidwarrior_c_01_dwf.m2", - value = "helm_plate_raidwarrior_c_01_dwf.m2", + fileId = "139967", + text = "helm_mail_zulaman_d_01_scf.m2", + value = "helm_mail_zulaman_d_01_scf.m2", }, { - fileId = "141098", - text = "helm_plate_raidwarrior_c_01_dwm.m2", - value = "helm_plate_raidwarrior_c_01_dwm.m2", + fileId = "139968", + text = "helm_mail_zulaman_d_01_scm.m2", + value = "helm_mail_zulaman_d_01_scm.m2", }, { - fileId = "141099", - text = "helm_plate_raidwarrior_c_01_gnf.m2", - value = "helm_plate_raidwarrior_c_01_gnf.m2", + fileId = "139969", + text = "helm_mail_zulaman_d_01_taf.m2", + value = "helm_mail_zulaman_d_01_taf.m2", }, { - fileId = "141100", - text = "helm_plate_raidwarrior_c_01_gnm.m2", - value = "helm_plate_raidwarrior_c_01_gnm.m2", + fileId = "139970", + text = "helm_mail_zulaman_d_01_tam.m2", + value = "helm_mail_zulaman_d_01_tam.m2", }, { - fileId = "141101", - text = "helm_plate_raidwarrior_c_01_gof.m2", - value = "helm_plate_raidwarrior_c_01_gof.m2", + fileId = "139971", + text = "helm_mail_zulaman_d_01_trf.m2", + value = "helm_mail_zulaman_d_01_trf.m2", }, { - fileId = "141102", - text = "helm_plate_raidwarrior_c_01_gom.m2", - value = "helm_plate_raidwarrior_c_01_gom.m2", + fileId = "139972", + text = "helm_mail_zulaman_d_01_trm.m2", + value = "helm_mail_zulaman_d_01_trm.m2", }, { - fileId = "141103", - text = "helm_plate_raidwarrior_c_01_huf.m2", - value = "helm_plate_raidwarrior_c_01_huf.m2", + fileId = "454183", + text = "helm_mail_zulaman_d_01_wof.m2", + value = "helm_mail_zulaman_d_01_wof.m2", }, { - fileId = "141104", - text = "helm_plate_raidwarrior_c_01_hum.m2", - value = "helm_plate_raidwarrior_c_01_hum.m2", + fileId = "430049", + text = "helm_mail_zulaman_d_01_wom.m2", + value = "helm_mail_zulaman_d_01_wom.m2", }, { - fileId = "141105", - text = "helm_plate_raidwarrior_c_01_nif.m2", - value = "helm_plate_raidwarrior_c_01_nif.m2", + fileId = "139978", + text = "helm_mail_zulaman_d_02_bef.m2", + value = "helm_mail_zulaman_d_02_bef.m2", }, { - fileId = "141106", - text = "helm_plate_raidwarrior_c_01_nim.m2", - value = "helm_plate_raidwarrior_c_01_nim.m2", + fileId = "139979", + text = "helm_mail_zulaman_d_02_bem.m2", + value = "helm_mail_zulaman_d_02_bem.m2", }, { - fileId = "141107", - text = "helm_plate_raidwarrior_c_01_orf.m2", - value = "helm_plate_raidwarrior_c_01_orf.m2", + fileId = "139980", + text = "helm_mail_zulaman_d_02_drf.m2", + value = "helm_mail_zulaman_d_02_drf.m2", }, { - fileId = "141108", - text = "helm_plate_raidwarrior_c_01_orm.m2", - value = "helm_plate_raidwarrior_c_01_orm.m2", + fileId = "139981", + text = "helm_mail_zulaman_d_02_drm.m2", + value = "helm_mail_zulaman_d_02_drm.m2", }, { - fileId = "141109", - text = "helm_plate_raidwarrior_c_01_scf.m2", - value = "helm_plate_raidwarrior_c_01_scf.m2", + fileId = "139982", + text = "helm_mail_zulaman_d_02_dwf.m2", + value = "helm_mail_zulaman_d_02_dwf.m2", }, { - fileId = "141110", - text = "helm_plate_raidwarrior_c_01_scm.m2", - value = "helm_plate_raidwarrior_c_01_scm.m2", + fileId = "139983", + text = "helm_mail_zulaman_d_02_dwm.m2", + value = "helm_mail_zulaman_d_02_dwm.m2", }, { - fileId = "141111", - text = "helm_plate_raidwarrior_c_01_taf.m2", - value = "helm_plate_raidwarrior_c_01_taf.m2", + fileId = "139984", + text = "helm_mail_zulaman_d_02_gnf.m2", + value = "helm_mail_zulaman_d_02_gnf.m2", }, { - fileId = "141112", - text = "helm_plate_raidwarrior_c_01_tam.m2", - value = "helm_plate_raidwarrior_c_01_tam.m2", + fileId = "139985", + text = "helm_mail_zulaman_d_02_gnm.m2", + value = "helm_mail_zulaman_d_02_gnm.m2", }, { - fileId = "141113", - text = "helm_plate_raidwarrior_c_01_trf.m2", - value = "helm_plate_raidwarrior_c_01_trf.m2", + fileId = "432019", + text = "helm_mail_zulaman_d_02_gof.m2", + value = "helm_mail_zulaman_d_02_gof.m2", }, { - fileId = "141114", - text = "helm_plate_raidwarrior_c_01_trm.m2", - value = "helm_plate_raidwarrior_c_01_trm.m2", + fileId = "432020", + text = "helm_mail_zulaman_d_02_gom.m2", + value = "helm_mail_zulaman_d_02_gom.m2", }, { - fileId = "238226", - text = "helm_plate_raidwarrior_c_02_bef.m2", - value = "helm_plate_raidwarrior_c_02_bef.m2", + fileId = "139986", + text = "helm_mail_zulaman_d_02_huf.m2", + value = "helm_mail_zulaman_d_02_huf.m2", }, { - fileId = "238227", - text = "helm_plate_raidwarrior_c_02_bem.m2", - value = "helm_plate_raidwarrior_c_02_bem.m2", + fileId = "139987", + text = "helm_mail_zulaman_d_02_hum.m2", + value = "helm_mail_zulaman_d_02_hum.m2", }, { - fileId = "238228", - text = "helm_plate_raidwarrior_c_02_drf.m2", - value = "helm_plate_raidwarrior_c_02_drf.m2", + fileId = "139988", + text = "helm_mail_zulaman_d_02_nif.m2", + value = "helm_mail_zulaman_d_02_nif.m2", }, { - fileId = "238229", - text = "helm_plate_raidwarrior_c_02_drm.m2", - value = "helm_plate_raidwarrior_c_02_drm.m2", + fileId = "139989", + text = "helm_mail_zulaman_d_02_nim.m2", + value = "helm_mail_zulaman_d_02_nim.m2", }, { - fileId = "238230", - text = "helm_plate_raidwarrior_c_02_dwf.m2", - value = "helm_plate_raidwarrior_c_02_dwf.m2", + fileId = "139990", + text = "helm_mail_zulaman_d_02_orf.m2", + value = "helm_mail_zulaman_d_02_orf.m2", }, { - fileId = "238231", - text = "helm_plate_raidwarrior_c_02_dwm.m2", - value = "helm_plate_raidwarrior_c_02_dwm.m2", + fileId = "139991", + text = "helm_mail_zulaman_d_02_orm.m2", + value = "helm_mail_zulaman_d_02_orm.m2", }, { - fileId = "238232", - text = "helm_plate_raidwarrior_c_02_gnf.m2", - value = "helm_plate_raidwarrior_c_02_gnf.m2", + fileId = "139992", + text = "helm_mail_zulaman_d_02_scf.m2", + value = "helm_mail_zulaman_d_02_scf.m2", }, { - fileId = "238233", - text = "helm_plate_raidwarrior_c_02_gnm.m2", - value = "helm_plate_raidwarrior_c_02_gnm.m2", + fileId = "139993", + text = "helm_mail_zulaman_d_02_scm.m2", + value = "helm_mail_zulaman_d_02_scm.m2", }, { - fileId = "238234", - text = "helm_plate_raidwarrior_c_02_gof.m2", - value = "helm_plate_raidwarrior_c_02_gof.m2", + fileId = "139994", + text = "helm_mail_zulaman_d_02_taf.m2", + value = "helm_mail_zulaman_d_02_taf.m2", }, { - fileId = "238235", - text = "helm_plate_raidwarrior_c_02_gom.m2", - value = "helm_plate_raidwarrior_c_02_gom.m2", + fileId = "139995", + text = "helm_mail_zulaman_d_02_tam.m2", + value = "helm_mail_zulaman_d_02_tam.m2", }, { - fileId = "238236", - text = "helm_plate_raidwarrior_c_02_huf.m2", - value = "helm_plate_raidwarrior_c_02_huf.m2", + fileId = "139996", + text = "helm_mail_zulaman_d_02_trf.m2", + value = "helm_mail_zulaman_d_02_trf.m2", }, { - fileId = "238237", - text = "helm_plate_raidwarrior_c_02_hum.m2", - value = "helm_plate_raidwarrior_c_02_hum.m2", + fileId = "139997", + text = "helm_mail_zulaman_d_02_trm.m2", + value = "helm_mail_zulaman_d_02_trm.m2", }, { - fileId = "238238", - text = "helm_plate_raidwarrior_c_02_nif.m2", - value = "helm_plate_raidwarrior_c_02_nif.m2", + fileId = "454184", + text = "helm_mail_zulaman_d_02_wof.m2", + value = "helm_mail_zulaman_d_02_wof.m2", }, { - fileId = "238239", - text = "helm_plate_raidwarrior_c_02_nim.m2", - value = "helm_plate_raidwarrior_c_02_nim.m2", + fileId = "430050", + text = "helm_mail_zulaman_d_02_wom.m2", + value = "helm_mail_zulaman_d_02_wom.m2", }, { - fileId = "238240", - text = "helm_plate_raidwarrior_c_02_orf.m2", - value = "helm_plate_raidwarrior_c_02_orf.m2", + fileId = "140002", + text = "helm_mask_a_01troll_bef.m2", + value = "helm_mask_a_01troll_bef.m2", }, { - fileId = "238241", - text = "helm_plate_raidwarrior_c_02_orm.m2", - value = "helm_plate_raidwarrior_c_02_orm.m2", + fileId = "140003", + text = "helm_mask_a_01troll_bem.m2", + value = "helm_mask_a_01troll_bem.m2", }, { - fileId = "238242", - text = "helm_plate_raidwarrior_c_02_scf.m2", - value = "helm_plate_raidwarrior_c_02_scf.m2", + fileId = "140004", + text = "helm_mask_a_01troll_drf.m2", + value = "helm_mask_a_01troll_drf.m2", }, { - fileId = "238243", - text = "helm_plate_raidwarrior_c_02_scm.m2", - value = "helm_plate_raidwarrior_c_02_scm.m2", + fileId = "140005", + text = "helm_mask_a_01troll_drm.m2", + value = "helm_mask_a_01troll_drm.m2", }, { - fileId = "238244", - text = "helm_plate_raidwarrior_c_02_taf.m2", - value = "helm_plate_raidwarrior_c_02_taf.m2", + fileId = "140006", + text = "helm_mask_a_01troll_dwf.m2", + value = "helm_mask_a_01troll_dwf.m2", }, { - fileId = "238245", - text = "helm_plate_raidwarrior_c_02_tam.m2", - value = "helm_plate_raidwarrior_c_02_tam.m2", + fileId = "140007", + text = "helm_mask_a_01troll_dwm.m2", + value = "helm_mask_a_01troll_dwm.m2", }, { - fileId = "238246", - text = "helm_plate_raidwarrior_c_02_trf.m2", - value = "helm_plate_raidwarrior_c_02_trf.m2", + fileId = "238035", + text = "helm_mask_a_01troll_ftm.m2", + value = "helm_mask_a_01troll_ftm.m2", }, { - fileId = "238247", - text = "helm_plate_raidwarrior_c_02_trm.m2", - value = "helm_plate_raidwarrior_c_02_trm.m2", + fileId = "140008", + text = "helm_mask_a_01troll_gnf.m2", + value = "helm_mask_a_01troll_gnf.m2", }, { - fileId = "141117", - text = "helm_plate_raidwarrior_d_01_bef.m2", - value = "helm_plate_raidwarrior_d_01_bef.m2", + fileId = "140009", + text = "helm_mask_a_01troll_gnm.m2", + value = "helm_mask_a_01troll_gnm.m2", }, { - fileId = "141118", - text = "helm_plate_raidwarrior_d_01_bem.m2", - value = "helm_plate_raidwarrior_d_01_bem.m2", + fileId = "140010", + text = "helm_mask_a_01troll_gof.m2", + value = "helm_mask_a_01troll_gof.m2", }, { - fileId = "141119", - text = "helm_plate_raidwarrior_d_01_drf.m2", - value = "helm_plate_raidwarrior_d_01_drf.m2", + fileId = "140011", + text = "helm_mask_a_01troll_gom.m2", + value = "helm_mask_a_01troll_gom.m2", }, { - fileId = "141120", - text = "helm_plate_raidwarrior_d_01_drm.m2", - value = "helm_plate_raidwarrior_d_01_drm.m2", + fileId = "140012", + text = "helm_mask_a_01troll_huf.m2", + value = "helm_mask_a_01troll_huf.m2", }, { - fileId = "141121", - text = "helm_plate_raidwarrior_d_01_dwf.m2", - value = "helm_plate_raidwarrior_d_01_dwf.m2", + fileId = "140013", + text = "helm_mask_a_01troll_hum.m2", + value = "helm_mask_a_01troll_hum.m2", }, { - fileId = "141122", - text = "helm_plate_raidwarrior_d_01_dwm.m2", - value = "helm_plate_raidwarrior_d_01_dwm.m2", + fileId = "238036", + text = "helm_mask_a_01troll_itm.m2", + value = "helm_mask_a_01troll_itm.m2", }, { - fileId = "141123", - text = "helm_plate_raidwarrior_d_01_gnf.m2", - value = "helm_plate_raidwarrior_d_01_gnf.m2", + fileId = "140014", + text = "helm_mask_a_01troll_nif.m2", + value = "helm_mask_a_01troll_nif.m2", }, { - fileId = "141124", - text = "helm_plate_raidwarrior_d_01_gnm.m2", - value = "helm_plate_raidwarrior_d_01_gnm.m2", + fileId = "140015", + text = "helm_mask_a_01troll_nim.m2", + value = "helm_mask_a_01troll_nim.m2", }, { - fileId = "141125", - text = "helm_plate_raidwarrior_d_01_gof.m2", - value = "helm_plate_raidwarrior_d_01_gof.m2", + fileId = "140016", + text = "helm_mask_a_01troll_orf.m2", + value = "helm_mask_a_01troll_orf.m2", }, { - fileId = "141126", - text = "helm_plate_raidwarrior_d_01_gom.m2", - value = "helm_plate_raidwarrior_d_01_gom.m2", + fileId = "140017", + text = "helm_mask_a_01troll_orm.m2", + value = "helm_mask_a_01troll_orm.m2", }, { - fileId = "141127", - text = "helm_plate_raidwarrior_d_01_huf.m2", - value = "helm_plate_raidwarrior_d_01_huf.m2", + fileId = "140018", + text = "helm_mask_a_01troll_scf.m2", + value = "helm_mask_a_01troll_scf.m2", }, { - fileId = "141128", - text = "helm_plate_raidwarrior_d_01_hum.m2", - value = "helm_plate_raidwarrior_d_01_hum.m2", + fileId = "140019", + text = "helm_mask_a_01troll_scm.m2", + value = "helm_mask_a_01troll_scm.m2", }, { - fileId = "141129", - text = "helm_plate_raidwarrior_d_01_nif.m2", - value = "helm_plate_raidwarrior_d_01_nif.m2", + fileId = "140020", + text = "helm_mask_a_01troll_taf.m2", + value = "helm_mask_a_01troll_taf.m2", }, { - fileId = "141130", - text = "helm_plate_raidwarrior_d_01_nim.m2", - value = "helm_plate_raidwarrior_d_01_nim.m2", + fileId = "140021", + text = "helm_mask_a_01troll_tam.m2", + value = "helm_mask_a_01troll_tam.m2", }, { - fileId = "141131", - text = "helm_plate_raidwarrior_d_01_orf.m2", - value = "helm_plate_raidwarrior_d_01_orf.m2", + fileId = "140022", + text = "helm_mask_a_01troll_trf.m2", + value = "helm_mask_a_01troll_trf.m2", }, { - fileId = "141132", - text = "helm_plate_raidwarrior_d_01_orm.m2", - value = "helm_plate_raidwarrior_d_01_orm.m2", + fileId = "140023", + text = "helm_mask_a_01troll_trm.m2", + value = "helm_mask_a_01troll_trm.m2", }, { - fileId = "141133", - text = "helm_plate_raidwarrior_d_01_scf.m2", - value = "helm_plate_raidwarrior_d_01_scf.m2", + fileId = "454185", + text = "helm_mask_a_01troll_wof.m2", + value = "helm_mask_a_01troll_wof.m2", }, { - fileId = "141134", - text = "helm_plate_raidwarrior_d_01_scm.m2", - value = "helm_plate_raidwarrior_d_01_scm.m2", + fileId = "432021", + text = "helm_mask_a_01troll_wom.m2", + value = "helm_mask_a_01troll_wom.m2", }, { - fileId = "141135", - text = "helm_plate_raidwarrior_d_01_taf.m2", - value = "helm_plate_raidwarrior_d_01_taf.m2", + fileId = "140024", + text = "helm_mask_b_01mirror_bef.m2", + value = "helm_mask_b_01mirror_bef.m2", }, { - fileId = "141136", - text = "helm_plate_raidwarrior_d_01_tam.m2", - value = "helm_plate_raidwarrior_d_01_tam.m2", + fileId = "140025", + text = "helm_mask_b_01mirror_bem.m2", + value = "helm_mask_b_01mirror_bem.m2", }, { - fileId = "141137", - text = "helm_plate_raidwarrior_d_01_trf.m2", - value = "helm_plate_raidwarrior_d_01_trf.m2", + fileId = "140026", + text = "helm_mask_b_01mirror_drf.m2", + value = "helm_mask_b_01mirror_drf.m2", }, { - fileId = "141138", - text = "helm_plate_raidwarrior_d_01_trm.m2", - value = "helm_plate_raidwarrior_d_01_trm.m2", + fileId = "140027", + text = "helm_mask_b_01mirror_drm.m2", + value = "helm_mask_b_01mirror_drm.m2", }, { - fileId = "141141", - text = "helm_plate_raidwarrior_e_01_bef.m2", - value = "helm_plate_raidwarrior_e_01_bef.m2", + fileId = "140028", + text = "helm_mask_b_01mirror_gof.m2", + value = "helm_mask_b_01mirror_gof.m2", }, { - fileId = "141142", - text = "helm_plate_raidwarrior_e_01_bem.m2", - value = "helm_plate_raidwarrior_e_01_bem.m2", + fileId = "140029", + text = "helm_mask_b_01mirror_gom.m2", + value = "helm_mask_b_01mirror_gom.m2", }, { - fileId = "141143", - text = "helm_plate_raidwarrior_e_01_drf.m2", - value = "helm_plate_raidwarrior_e_01_drf.m2", + fileId = "454186", + text = "helm_mask_b_01mirror_wof.m2", + value = "helm_mask_b_01mirror_wof.m2", }, { - fileId = "141144", - text = "helm_plate_raidwarrior_e_01_drm.m2", - value = "helm_plate_raidwarrior_e_01_drm.m2", + fileId = "432022", + text = "helm_mask_b_01mirror_wom.m2", + value = "helm_mask_b_01mirror_wom.m2", }, { - fileId = "141145", - text = "helm_plate_raidwarrior_e_01_dwf.m2", - value = "helm_plate_raidwarrior_e_01_dwf.m2", + fileId = "140031", + text = "helm_mask_halloween_bef.m2", + value = "helm_mask_halloween_bef.m2", }, { - fileId = "141146", - text = "helm_plate_raidwarrior_e_01_dwm.m2", - value = "helm_plate_raidwarrior_e_01_dwm.m2", + fileId = "140032", + text = "helm_mask_halloween_bem.m2", + value = "helm_mask_halloween_bem.m2", }, { - fileId = "141147", - text = "helm_plate_raidwarrior_e_01_gnf.m2", - value = "helm_plate_raidwarrior_e_01_gnf.m2", + fileId = "140036", + text = "helm_mask_halloween_drf.m2", + value = "helm_mask_halloween_drf.m2", }, { - fileId = "141148", - text = "helm_plate_raidwarrior_e_01_gnm.m2", - value = "helm_plate_raidwarrior_e_01_gnm.m2", + fileId = "140038", + text = "helm_mask_halloween_drm.m2", + value = "helm_mask_halloween_drm.m2", }, { - fileId = "141149", - text = "helm_plate_raidwarrior_e_01_gof.m2", - value = "helm_plate_raidwarrior_e_01_gof.m2", + fileId = "140040", + text = "helm_mask_halloween_dwf.m2", + value = "helm_mask_halloween_dwf.m2", }, { - fileId = "141150", - text = "helm_plate_raidwarrior_e_01_gom.m2", - value = "helm_plate_raidwarrior_e_01_gom.m2", + fileId = "140042", + text = "helm_mask_halloween_dwm.m2", + value = "helm_mask_halloween_dwm.m2", }, { - fileId = "141151", - text = "helm_plate_raidwarrior_e_01_huf.m2", - value = "helm_plate_raidwarrior_e_01_huf.m2", + fileId = "140044", + text = "helm_mask_halloween_gnf.m2", + value = "helm_mask_halloween_gnf.m2", }, { - fileId = "141152", - text = "helm_plate_raidwarrior_e_01_hum.m2", - value = "helm_plate_raidwarrior_e_01_hum.m2", + fileId = "140046", + text = "helm_mask_halloween_gnm.m2", + value = "helm_mask_halloween_gnm.m2", }, { - fileId = "141153", - text = "helm_plate_raidwarrior_e_01_nif.m2", - value = "helm_plate_raidwarrior_e_01_nif.m2", + fileId = "140047", + text = "helm_mask_halloween_gof.m2", + value = "helm_mask_halloween_gof.m2", }, { - fileId = "141154", - text = "helm_plate_raidwarrior_e_01_nim.m2", - value = "helm_plate_raidwarrior_e_01_nim.m2", + fileId = "140048", + text = "helm_mask_halloween_gom.m2", + value = "helm_mask_halloween_gom.m2", }, { - fileId = "141155", - text = "helm_plate_raidwarrior_e_01_orf.m2", - value = "helm_plate_raidwarrior_e_01_orf.m2", + fileId = "140050", + text = "helm_mask_halloween_huf.m2", + value = "helm_mask_halloween_huf.m2", }, { - fileId = "141156", - text = "helm_plate_raidwarrior_e_01_orm.m2", - value = "helm_plate_raidwarrior_e_01_orm.m2", + fileId = "140052", + text = "helm_mask_halloween_hum.m2", + value = "helm_mask_halloween_hum.m2", }, { - fileId = "141157", - text = "helm_plate_raidwarrior_e_01_scf.m2", - value = "helm_plate_raidwarrior_e_01_scf.m2", + fileId = "140054", + text = "helm_mask_halloween_nif.m2", + value = "helm_mask_halloween_nif.m2", }, { - fileId = "141158", - text = "helm_plate_raidwarrior_e_01_scm.m2", - value = "helm_plate_raidwarrior_e_01_scm.m2", + fileId = "140056", + text = "helm_mask_halloween_nim.m2", + value = "helm_mask_halloween_nim.m2", }, { - fileId = "141159", - text = "helm_plate_raidwarrior_e_01_taf.m2", - value = "helm_plate_raidwarrior_e_01_taf.m2", + fileId = "140058", + text = "helm_mask_halloween_orf.m2", + value = "helm_mask_halloween_orf.m2", }, { - fileId = "141160", - text = "helm_plate_raidwarrior_e_01_tam.m2", - value = "helm_plate_raidwarrior_e_01_tam.m2", + fileId = "140060", + text = "helm_mask_halloween_orm.m2", + value = "helm_mask_halloween_orm.m2", }, { - fileId = "141161", - text = "helm_plate_raidwarrior_e_01_trf.m2", - value = "helm_plate_raidwarrior_e_01_trf.m2", + fileId = "140062", + text = "helm_mask_halloween_scf.m2", + value = "helm_mask_halloween_scf.m2", }, { - fileId = "141162", - text = "helm_plate_raidwarrior_e_01_trm.m2", - value = "helm_plate_raidwarrior_e_01_trm.m2", + fileId = "140064", + text = "helm_mask_halloween_scm.m2", + value = "helm_mask_halloween_scm.m2", }, { - fileId = "141165", - text = "helm_plate_raidwarrior_f_01_bef.m2", - value = "helm_plate_raidwarrior_f_01_bef.m2", + fileId = "140066", + text = "helm_mask_halloween_taf.m2", + value = "helm_mask_halloween_taf.m2", }, { - fileId = "141166", - text = "helm_plate_raidwarrior_f_01_bem.m2", - value = "helm_plate_raidwarrior_f_01_bem.m2", + fileId = "140068", + text = "helm_mask_halloween_tam.m2", + value = "helm_mask_halloween_tam.m2", }, { - fileId = "141167", - text = "helm_plate_raidwarrior_f_01_drf.m2", - value = "helm_plate_raidwarrior_f_01_drf.m2", + fileId = "140070", + text = "helm_mask_halloween_trf.m2", + value = "helm_mask_halloween_trf.m2", }, { - fileId = "141168", - text = "helm_plate_raidwarrior_f_01_drm.m2", - value = "helm_plate_raidwarrior_f_01_drm.m2", + fileId = "140072", + text = "helm_mask_halloween_trm.m2", + value = "helm_mask_halloween_trm.m2", }, { - fileId = "141169", - text = "helm_plate_raidwarrior_f_01_dwf.m2", - value = "helm_plate_raidwarrior_f_01_dwf.m2", + fileId = "454187", + text = "helm_mask_halloween_wof.m2", + value = "helm_mask_halloween_wof.m2", }, { - fileId = "141170", - text = "helm_plate_raidwarrior_f_01_dwm.m2", - value = "helm_plate_raidwarrior_f_01_dwm.m2", + fileId = "432023", + text = "helm_mask_halloween_wom.m2", + value = "helm_mask_halloween_wom.m2", }, { - fileId = "141172", - text = "helm_plate_raidwarrior_f_01_gnf.m2", - value = "helm_plate_raidwarrior_f_01_gnf.m2", + fileId = "325859", + text = "helm_mask_ne_a_01_bef.m2", + value = "helm_mask_ne_a_01_bef.m2", }, { - fileId = "141173", - text = "helm_plate_raidwarrior_f_01_gnm.m2", - value = "helm_plate_raidwarrior_f_01_gnm.m2", + fileId = "325860", + text = "helm_mask_ne_a_01_bem.m2", + value = "helm_mask_ne_a_01_bem.m2", }, { - fileId = "141174", - text = "helm_plate_raidwarrior_f_01_gof.m2", - value = "helm_plate_raidwarrior_f_01_gof.m2", + fileId = "325861", + text = "helm_mask_ne_a_01_drf.m2", + value = "helm_mask_ne_a_01_drf.m2", }, { - fileId = "141175", - text = "helm_plate_raidwarrior_f_01_gom.m2", - value = "helm_plate_raidwarrior_f_01_gom.m2", + fileId = "325862", + text = "helm_mask_ne_a_01_drm.m2", + value = "helm_mask_ne_a_01_drm.m2", }, { - fileId = "141176", - text = "helm_plate_raidwarrior_f_01_huf.m2", - value = "helm_plate_raidwarrior_f_01_huf.m2", + fileId = "325863", + text = "helm_mask_ne_a_01_dwf.m2", + value = "helm_mask_ne_a_01_dwf.m2", }, { - fileId = "141177", - text = "helm_plate_raidwarrior_f_01_hum.m2", - value = "helm_plate_raidwarrior_f_01_hum.m2", + fileId = "325864", + text = "helm_mask_ne_a_01_dwm.m2", + value = "helm_mask_ne_a_01_dwm.m2", }, { - fileId = "141178", - text = "helm_plate_raidwarrior_f_01_nif.m2", - value = "helm_plate_raidwarrior_f_01_nif.m2", + fileId = "325865", + text = "helm_mask_ne_a_01_gnf.m2", + value = "helm_mask_ne_a_01_gnf.m2", }, { - fileId = "141179", - text = "helm_plate_raidwarrior_f_01_nim.m2", - value = "helm_plate_raidwarrior_f_01_nim.m2", + fileId = "325866", + text = "helm_mask_ne_a_01_gnm.m2", + value = "helm_mask_ne_a_01_gnm.m2", }, { - fileId = "141180", - text = "helm_plate_raidwarrior_f_01_orf.m2", - value = "helm_plate_raidwarrior_f_01_orf.m2", + fileId = "432024", + text = "helm_mask_ne_a_01_gof.m2", + value = "helm_mask_ne_a_01_gof.m2", }, { - fileId = "141181", - text = "helm_plate_raidwarrior_f_01_orm.m2", - value = "helm_plate_raidwarrior_f_01_orm.m2", + fileId = "432025", + text = "helm_mask_ne_a_01_gom.m2", + value = "helm_mask_ne_a_01_gom.m2", }, { - fileId = "141182", - text = "helm_plate_raidwarrior_f_01_scf.m2", - value = "helm_plate_raidwarrior_f_01_scf.m2", + fileId = "325867", + text = "helm_mask_ne_a_01_huf.m2", + value = "helm_mask_ne_a_01_huf.m2", }, { - fileId = "141183", - text = "helm_plate_raidwarrior_f_01_scm.m2", - value = "helm_plate_raidwarrior_f_01_scm.m2", + fileId = "325868", + text = "helm_mask_ne_a_01_hum.m2", + value = "helm_mask_ne_a_01_hum.m2", }, { - fileId = "141184", - text = "helm_plate_raidwarrior_f_01_taf.m2", - value = "helm_plate_raidwarrior_f_01_taf.m2", + fileId = "325869", + text = "helm_mask_ne_a_01_nif.m2", + value = "helm_mask_ne_a_01_nif.m2", }, { - fileId = "141185", - text = "helm_plate_raidwarrior_f_01_tam.m2", - value = "helm_plate_raidwarrior_f_01_tam.m2", + fileId = "325870", + text = "helm_mask_ne_a_01_nim.m2", + value = "helm_mask_ne_a_01_nim.m2", }, { - fileId = "141186", - text = "helm_plate_raidwarrior_f_01_trf.m2", - value = "helm_plate_raidwarrior_f_01_trf.m2", + fileId = "325871", + text = "helm_mask_ne_a_01_orf.m2", + value = "helm_mask_ne_a_01_orf.m2", }, { - fileId = "141187", - text = "helm_plate_raidwarrior_f_01_trm.m2", - value = "helm_plate_raidwarrior_f_01_trm.m2", + fileId = "325872", + text = "helm_mask_ne_a_01_orm.m2", + value = "helm_mask_ne_a_01_orm.m2", }, { - fileId = "251540", - text = "helm_plate_raidwarrior_g_01_bef.m2", - value = "helm_plate_raidwarrior_g_01_bef.m2", + fileId = "325873", + text = "helm_mask_ne_a_01_scf.m2", + value = "helm_mask_ne_a_01_scf.m2", }, { - fileId = "251541", - text = "helm_plate_raidwarrior_g_01_bem.m2", - value = "helm_plate_raidwarrior_g_01_bem.m2", + fileId = "325874", + text = "helm_mask_ne_a_01_scm.m2", + value = "helm_mask_ne_a_01_scm.m2", }, { - fileId = "251542", - text = "helm_plate_raidwarrior_g_01_drf.m2", - value = "helm_plate_raidwarrior_g_01_drf.m2", + fileId = "325875", + text = "helm_mask_ne_a_01_taf.m2", + value = "helm_mask_ne_a_01_taf.m2", }, { - fileId = "251543", - text = "helm_plate_raidwarrior_g_01_drm.m2", - value = "helm_plate_raidwarrior_g_01_drm.m2", + fileId = "325876", + text = "helm_mask_ne_a_01_tam.m2", + value = "helm_mask_ne_a_01_tam.m2", }, { - fileId = "251544", - text = "helm_plate_raidwarrior_g_01_dwf.m2", - value = "helm_plate_raidwarrior_g_01_dwf.m2", + fileId = "325877", + text = "helm_mask_ne_a_01_trf.m2", + value = "helm_mask_ne_a_01_trf.m2", }, { - fileId = "251545", - text = "helm_plate_raidwarrior_g_01_dwm.m2", - value = "helm_plate_raidwarrior_g_01_dwm.m2", + fileId = "325878", + text = "helm_mask_ne_a_01_trm.m2", + value = "helm_mask_ne_a_01_trm.m2", }, { - fileId = "251546", - text = "helm_plate_raidwarrior_g_01_gnf.m2", - value = "helm_plate_raidwarrior_g_01_gnf.m2", + fileId = "454188", + text = "helm_mask_ne_a_01_wof.m2", + value = "helm_mask_ne_a_01_wof.m2", }, { - fileId = "251547", - text = "helm_plate_raidwarrior_g_01_gnm.m2", - value = "helm_plate_raidwarrior_g_01_gnm.m2", + fileId = "432026", + text = "helm_mask_ne_a_01_wom.m2", + value = "helm_mask_ne_a_01_wom.m2", }, { - fileId = "251548", - text = "helm_plate_raidwarrior_g_01_gof.m2", - value = "helm_plate_raidwarrior_g_01_gof.m2", + fileId = "140074", + text = "helm_mask_plague_bef.m2", + value = "helm_mask_plague_bef.m2", }, { - fileId = "251549", - text = "helm_plate_raidwarrior_g_01_gom.m2", - value = "helm_plate_raidwarrior_g_01_gom.m2", + fileId = "140075", + text = "helm_mask_plague_bem.m2", + value = "helm_mask_plague_bem.m2", }, { - fileId = "251550", - text = "helm_plate_raidwarrior_g_01_huf.m2", - value = "helm_plate_raidwarrior_g_01_huf.m2", + fileId = "140076", + text = "helm_mask_plague_drf.m2", + value = "helm_mask_plague_drf.m2", }, { - fileId = "251551", - text = "helm_plate_raidwarrior_g_01_hum.m2", - value = "helm_plate_raidwarrior_g_01_hum.m2", + fileId = "140077", + text = "helm_mask_plague_drm.m2", + value = "helm_mask_plague_drm.m2", }, { - fileId = "251552", - text = "helm_plate_raidwarrior_g_01_nif.m2", - value = "helm_plate_raidwarrior_g_01_nif.m2", + fileId = "140078", + text = "helm_mask_plague_dwf.m2", + value = "helm_mask_plague_dwf.m2", }, { - fileId = "251553", - text = "helm_plate_raidwarrior_g_01_nim.m2", - value = "helm_plate_raidwarrior_g_01_nim.m2", + fileId = "140079", + text = "helm_mask_plague_dwm.m2", + value = "helm_mask_plague_dwm.m2", }, { - fileId = "251554", - text = "helm_plate_raidwarrior_g_01_orf.m2", - value = "helm_plate_raidwarrior_g_01_orf.m2", + fileId = "140080", + text = "helm_mask_plague_gnf.m2", + value = "helm_mask_plague_gnf.m2", }, { - fileId = "251555", - text = "helm_plate_raidwarrior_g_01_orm.m2", - value = "helm_plate_raidwarrior_g_01_orm.m2", + fileId = "140081", + text = "helm_mask_plague_gnm.m2", + value = "helm_mask_plague_gnm.m2", }, { - fileId = "251556", - text = "helm_plate_raidwarrior_g_01_scf.m2", - value = "helm_plate_raidwarrior_g_01_scf.m2", + fileId = "140082", + text = "helm_mask_plague_gof.m2", + value = "helm_mask_plague_gof.m2", }, { - fileId = "251557", - text = "helm_plate_raidwarrior_g_01_scm.m2", - value = "helm_plate_raidwarrior_g_01_scm.m2", + fileId = "140083", + text = "helm_mask_plague_gom.m2", + value = "helm_mask_plague_gom.m2", }, { - fileId = "251558", - text = "helm_plate_raidwarrior_g_01_taf.m2", - value = "helm_plate_raidwarrior_g_01_taf.m2", + fileId = "140084", + text = "helm_mask_plague_huf.m2", + value = "helm_mask_plague_huf.m2", }, { - fileId = "251559", - text = "helm_plate_raidwarrior_g_01_tam.m2", - value = "helm_plate_raidwarrior_g_01_tam.m2", + fileId = "140085", + text = "helm_mask_plague_hum.m2", + value = "helm_mask_plague_hum.m2", }, { - fileId = "251560", - text = "helm_plate_raidwarrior_g_01_trf.m2", - value = "helm_plate_raidwarrior_g_01_trf.m2", + fileId = "140086", + text = "helm_mask_plague_nif.m2", + value = "helm_mask_plague_nif.m2", }, { - fileId = "251561", - text = "helm_plate_raidwarrior_g_01_trm.m2", - value = "helm_plate_raidwarrior_g_01_trm.m2", + fileId = "140087", + text = "helm_mask_plague_nim.m2", + value = "helm_mask_plague_nim.m2", }, { - fileId = "331348", - text = "helm_plate_raidwarrior_h_01_bef.m2", - value = "helm_plate_raidwarrior_h_01_bef.m2", + fileId = "140088", + text = "helm_mask_plague_orf.m2", + value = "helm_mask_plague_orf.m2", }, { - fileId = "331349", - text = "helm_plate_raidwarrior_h_01_bem.m2", - value = "helm_plate_raidwarrior_h_01_bem.m2", + fileId = "140089", + text = "helm_mask_plague_orm.m2", + value = "helm_mask_plague_orm.m2", }, { - fileId = "331350", - text = "helm_plate_raidwarrior_h_01_drf.m2", - value = "helm_plate_raidwarrior_h_01_drf.m2", + fileId = "140090", + text = "helm_mask_plague_scf.m2", + value = "helm_mask_plague_scf.m2", }, { - fileId = "331351", - text = "helm_plate_raidwarrior_h_01_drm.m2", - value = "helm_plate_raidwarrior_h_01_drm.m2", + fileId = "140091", + text = "helm_mask_plague_scm.m2", + value = "helm_mask_plague_scm.m2", }, { - fileId = "331352", - text = "helm_plate_raidwarrior_h_01_dwf.m2", - value = "helm_plate_raidwarrior_h_01_dwf.m2", + fileId = "140092", + text = "helm_mask_plague_taf.m2", + value = "helm_mask_plague_taf.m2", }, { - fileId = "331353", - text = "helm_plate_raidwarrior_h_01_dwm.m2", - value = "helm_plate_raidwarrior_h_01_dwm.m2", + fileId = "140093", + text = "helm_mask_plague_tam.m2", + value = "helm_mask_plague_tam.m2", }, { - fileId = "331354", - text = "helm_plate_raidwarrior_h_01_gnf.m2", - value = "helm_plate_raidwarrior_h_01_gnf.m2", + fileId = "140094", + text = "helm_mask_plague_trf.m2", + value = "helm_mask_plague_trf.m2", }, { - fileId = "331355", - text = "helm_plate_raidwarrior_h_01_gnm.m2", - value = "helm_plate_raidwarrior_h_01_gnm.m2", + fileId = "140095", + text = "helm_mask_plague_trm.m2", + value = "helm_mask_plague_trm.m2", }, { - fileId = "331356", - text = "helm_plate_raidwarrior_h_01_gof.m2", - value = "helm_plate_raidwarrior_h_01_gof.m2", + fileId = "454189", + text = "helm_mask_plague_wof.m2", + value = "helm_mask_plague_wof.m2", }, { - fileId = "331357", - text = "helm_plate_raidwarrior_h_01_gom.m2", - value = "helm_plate_raidwarrior_h_01_gom.m2", + fileId = "432027", + text = "helm_mask_plague_wom.m2", + value = "helm_mask_plague_wom.m2", }, { - fileId = "331358", - text = "helm_plate_raidwarrior_h_01_huf.m2", - value = "helm_plate_raidwarrior_h_01_huf.m2", + fileId = "140097", + text = "helm_mask_pumpkin_bef.m2", + value = "helm_mask_pumpkin_bef.m2", }, { - fileId = "331359", - text = "helm_plate_raidwarrior_h_01_hum.m2", - value = "helm_plate_raidwarrior_h_01_hum.m2", + fileId = "140098", + text = "helm_mask_pumpkin_bem.m2", + value = "helm_mask_pumpkin_bem.m2", }, { - fileId = "331360", - text = "helm_plate_raidwarrior_h_01_nif.m2", - value = "helm_plate_raidwarrior_h_01_nif.m2", + fileId = "140099", + text = "helm_mask_pumpkin_drf.m2", + value = "helm_mask_pumpkin_drf.m2", }, { - fileId = "331361", - text = "helm_plate_raidwarrior_h_01_nim.m2", - value = "helm_plate_raidwarrior_h_01_nim.m2", + fileId = "140100", + text = "helm_mask_pumpkin_drm.m2", + value = "helm_mask_pumpkin_drm.m2", }, { - fileId = "331362", - text = "helm_plate_raidwarrior_h_01_orf.m2", - value = "helm_plate_raidwarrior_h_01_orf.m2", + fileId = "140101", + text = "helm_mask_pumpkin_dwf.m2", + value = "helm_mask_pumpkin_dwf.m2", }, { - fileId = "331363", - text = "helm_plate_raidwarrior_h_01_orm.m2", - value = "helm_plate_raidwarrior_h_01_orm.m2", + fileId = "140102", + text = "helm_mask_pumpkin_dwm.m2", + value = "helm_mask_pumpkin_dwm.m2", }, { - fileId = "331364", - text = "helm_plate_raidwarrior_h_01_scf.m2", - value = "helm_plate_raidwarrior_h_01_scf.m2", + fileId = "140103", + text = "helm_mask_pumpkin_gnf.m2", + value = "helm_mask_pumpkin_gnf.m2", }, { - fileId = "331365", - text = "helm_plate_raidwarrior_h_01_scm.m2", - value = "helm_plate_raidwarrior_h_01_scm.m2", + fileId = "140104", + text = "helm_mask_pumpkin_gnm.m2", + value = "helm_mask_pumpkin_gnm.m2", }, { - fileId = "331366", - text = "helm_plate_raidwarrior_h_01_taf.m2", - value = "helm_plate_raidwarrior_h_01_taf.m2", + fileId = "140105", + text = "helm_mask_pumpkin_gof.m2", + value = "helm_mask_pumpkin_gof.m2", }, { - fileId = "331367", - text = "helm_plate_raidwarrior_h_01_tam.m2", - value = "helm_plate_raidwarrior_h_01_tam.m2", + fileId = "140106", + text = "helm_mask_pumpkin_gom.m2", + value = "helm_mask_pumpkin_gom.m2", }, { - fileId = "331368", - text = "helm_plate_raidwarrior_h_01_trf.m2", - value = "helm_plate_raidwarrior_h_01_trf.m2", + fileId = "140107", + text = "helm_mask_pumpkin_huf.m2", + value = "helm_mask_pumpkin_huf.m2", }, { - fileId = "331369", - text = "helm_plate_raidwarrior_h_01_trm.m2", - value = "helm_plate_raidwarrior_h_01_trm.m2", + fileId = "140108", + text = "helm_mask_pumpkin_hum.m2", + value = "helm_mask_pumpkin_hum.m2", }, { - fileId = "141194", - text = "helm_plate_sunwell_d_01_bef.m2", - value = "helm_plate_sunwell_d_01_bef.m2", + fileId = "140109", + text = "helm_mask_pumpkin_nif.m2", + value = "helm_mask_pumpkin_nif.m2", }, { - fileId = "141195", - text = "helm_plate_sunwell_d_01_bem.m2", - value = "helm_plate_sunwell_d_01_bem.m2", + fileId = "140110", + text = "helm_mask_pumpkin_nim.m2", + value = "helm_mask_pumpkin_nim.m2", }, { - fileId = "141196", - text = "helm_plate_sunwell_d_01_drf.m2", - value = "helm_plate_sunwell_d_01_drf.m2", + fileId = "140111", + text = "helm_mask_pumpkin_orf.m2", + value = "helm_mask_pumpkin_orf.m2", }, { - fileId = "141197", - text = "helm_plate_sunwell_d_01_drm.m2", - value = "helm_plate_sunwell_d_01_drm.m2", + fileId = "140112", + text = "helm_mask_pumpkin_orm.m2", + value = "helm_mask_pumpkin_orm.m2", }, { - fileId = "141198", - text = "helm_plate_sunwell_d_01_dwf.m2", - value = "helm_plate_sunwell_d_01_dwf.m2", + fileId = "140113", + text = "helm_mask_pumpkin_scf.m2", + value = "helm_mask_pumpkin_scf.m2", }, { - fileId = "141199", - text = "helm_plate_sunwell_d_01_dwm.m2", - value = "helm_plate_sunwell_d_01_dwm.m2", + fileId = "140114", + text = "helm_mask_pumpkin_scm.m2", + value = "helm_mask_pumpkin_scm.m2", }, { - fileId = "141200", - text = "helm_plate_sunwell_d_01_gnf.m2", - value = "helm_plate_sunwell_d_01_gnf.m2", + fileId = "140115", + text = "helm_mask_pumpkin_taf.m2", + value = "helm_mask_pumpkin_taf.m2", }, { - fileId = "141201", - text = "helm_plate_sunwell_d_01_gnm.m2", - value = "helm_plate_sunwell_d_01_gnm.m2", + fileId = "140116", + text = "helm_mask_pumpkin_tam.m2", + value = "helm_mask_pumpkin_tam.m2", }, { - fileId = "141202", - text = "helm_plate_sunwell_d_01_gof.m2", - value = "helm_plate_sunwell_d_01_gof.m2", + fileId = "140117", + text = "helm_mask_pumpkin_trf.m2", + value = "helm_mask_pumpkin_trf.m2", }, { - fileId = "141203", - text = "helm_plate_sunwell_d_01_gom.m2", - value = "helm_plate_sunwell_d_01_gom.m2", + fileId = "140118", + text = "helm_mask_pumpkin_trm.m2", + value = "helm_mask_pumpkin_trm.m2", }, { - fileId = "141204", - text = "helm_plate_sunwell_d_01_huf.m2", - value = "helm_plate_sunwell_d_01_huf.m2", + fileId = "454190", + text = "helm_mask_pumpkin_wof.m2", + value = "helm_mask_pumpkin_wof.m2", }, { - fileId = "141205", - text = "helm_plate_sunwell_d_01_hum.m2", - value = "helm_plate_sunwell_d_01_hum.m2", + fileId = "432028", + text = "helm_mask_pumpkin_wom.m2", + value = "helm_mask_pumpkin_wom.m2", }, { - fileId = "141206", - text = "helm_plate_sunwell_d_01_nif.m2", - value = "helm_plate_sunwell_d_01_nif.m2", + fileId = "140119", + text = "helm_mask_zulgurub_d_01_bef.m2", + value = "helm_mask_zulgurub_d_01_bef.m2", }, { - fileId = "141207", - text = "helm_plate_sunwell_d_01_nim.m2", - value = "helm_plate_sunwell_d_01_nim.m2", + fileId = "140120", + text = "helm_mask_zulgurub_d_01_bem.m2", + value = "helm_mask_zulgurub_d_01_bem.m2", }, { - fileId = "141208", - text = "helm_plate_sunwell_d_01_orf.m2", - value = "helm_plate_sunwell_d_01_orf.m2", + fileId = "140121", + text = "helm_mask_zulgurub_d_01_drf.m2", + value = "helm_mask_zulgurub_d_01_drf.m2", }, { - fileId = "141209", - text = "helm_plate_sunwell_d_01_orm.m2", - value = "helm_plate_sunwell_d_01_orm.m2", + fileId = "140122", + text = "helm_mask_zulgurub_d_01_drm.m2", + value = "helm_mask_zulgurub_d_01_drm.m2", }, { - fileId = "141210", - text = "helm_plate_sunwell_d_01_scf.m2", - value = "helm_plate_sunwell_d_01_scf.m2", + fileId = "140123", + text = "helm_mask_zulgurub_d_01_dwf.m2", + value = "helm_mask_zulgurub_d_01_dwf.m2", }, { - fileId = "141211", - text = "helm_plate_sunwell_d_01_scm.m2", - value = "helm_plate_sunwell_d_01_scm.m2", + fileId = "140124", + text = "helm_mask_zulgurub_d_01_dwm.m2", + value = "helm_mask_zulgurub_d_01_dwm.m2", }, { - fileId = "141212", - text = "helm_plate_sunwell_d_01_taf.m2", - value = "helm_plate_sunwell_d_01_taf.m2", + fileId = "140125", + text = "helm_mask_zulgurub_d_01_gnf.m2", + value = "helm_mask_zulgurub_d_01_gnf.m2", }, { - fileId = "141213", - text = "helm_plate_sunwell_d_01_tam.m2", - value = "helm_plate_sunwell_d_01_tam.m2", + fileId = "140126", + text = "helm_mask_zulgurub_d_01_gnm.m2", + value = "helm_mask_zulgurub_d_01_gnm.m2", }, { - fileId = "141214", - text = "helm_plate_sunwell_d_01_trf.m2", - value = "helm_plate_sunwell_d_01_trf.m2", + fileId = "140127", + text = "helm_mask_zulgurub_d_01_gof.m2", + value = "helm_mask_zulgurub_d_01_gof.m2", }, { - fileId = "141215", - text = "helm_plate_sunwell_d_01_trm.m2", - value = "helm_plate_sunwell_d_01_trm.m2", + fileId = "140128", + text = "helm_mask_zulgurub_d_01_gom.m2", + value = "helm_mask_zulgurub_d_01_gom.m2", }, { - fileId = "141220", - text = "helm_plate_viking_d_01_bef.m2", - value = "helm_plate_viking_d_01_bef.m2", + fileId = "140129", + text = "helm_mask_zulgurub_d_01_huf.m2", + value = "helm_mask_zulgurub_d_01_huf.m2", }, { - fileId = "141221", - text = "helm_plate_viking_d_01_bem.m2", - value = "helm_plate_viking_d_01_bem.m2", + fileId = "140130", + text = "helm_mask_zulgurub_d_01_hum.m2", + value = "helm_mask_zulgurub_d_01_hum.m2", }, { - fileId = "141222", - text = "helm_plate_viking_d_01_drf.m2", - value = "helm_plate_viking_d_01_drf.m2", + fileId = "140131", + text = "helm_mask_zulgurub_d_01_nif.m2", + value = "helm_mask_zulgurub_d_01_nif.m2", }, { - fileId = "141223", - text = "helm_plate_viking_d_01_drm.m2", - value = "helm_plate_viking_d_01_drm.m2", + fileId = "140132", + text = "helm_mask_zulgurub_d_01_nim.m2", + value = "helm_mask_zulgurub_d_01_nim.m2", }, { - fileId = "141224", - text = "helm_plate_viking_d_01_dwf.m2", - value = "helm_plate_viking_d_01_dwf.m2", + fileId = "140133", + text = "helm_mask_zulgurub_d_01_orf.m2", + value = "helm_mask_zulgurub_d_01_orf.m2", }, { - fileId = "141225", - text = "helm_plate_viking_d_01_dwm.m2", - value = "helm_plate_viking_d_01_dwm.m2", + fileId = "140134", + text = "helm_mask_zulgurub_d_01_orm.m2", + value = "helm_mask_zulgurub_d_01_orm.m2", }, { - fileId = "141226", - text = "helm_plate_viking_d_01_gnf.m2", - value = "helm_plate_viking_d_01_gnf.m2", + fileId = "140135", + text = "helm_mask_zulgurub_d_01_scf.m2", + value = "helm_mask_zulgurub_d_01_scf.m2", }, { - fileId = "141227", - text = "helm_plate_viking_d_01_gnm.m2", - value = "helm_plate_viking_d_01_gnm.m2", + fileId = "140136", + text = "helm_mask_zulgurub_d_01_scm.m2", + value = "helm_mask_zulgurub_d_01_scm.m2", }, { - fileId = "141228", - text = "helm_plate_viking_d_01_huf.m2", - value = "helm_plate_viking_d_01_huf.m2", + fileId = "140137", + text = "helm_mask_zulgurub_d_01_taf.m2", + value = "helm_mask_zulgurub_d_01_taf.m2", }, { - fileId = "141229", - text = "helm_plate_viking_d_01_hum.m2", - value = "helm_plate_viking_d_01_hum.m2", + fileId = "140138", + text = "helm_mask_zulgurub_d_01_tam.m2", + value = "helm_mask_zulgurub_d_01_tam.m2", }, { - fileId = "141230", - text = "helm_plate_viking_d_01_nif.m2", - value = "helm_plate_viking_d_01_nif.m2", + fileId = "140139", + text = "helm_mask_zulgurub_d_01_trf.m2", + value = "helm_mask_zulgurub_d_01_trf.m2", }, { - fileId = "141231", - text = "helm_plate_viking_d_01_nim.m2", - value = "helm_plate_viking_d_01_nim.m2", + fileId = "140140", + text = "helm_mask_zulgurub_d_01_trm.m2", + value = "helm_mask_zulgurub_d_01_trm.m2", }, { - fileId = "238249", - text = "helm_plate_viking_d_01_nsm.m2", - value = "helm_plate_viking_d_01_nsm.m2", + fileId = "454191", + text = "helm_mask_zulgurub_d_01_wof.m2", + value = "helm_mask_zulgurub_d_01_wof.m2", }, { - fileId = "141232", - text = "helm_plate_viking_d_01_orf.m2", - value = "helm_plate_viking_d_01_orf.m2", + fileId = "432029", + text = "helm_mask_zulgurub_d_01_wom.m2", + value = "helm_mask_zulgurub_d_01_wom.m2", }, { - fileId = "141233", - text = "helm_plate_viking_d_01_orm.m2", - value = "helm_plate_viking_d_01_orm.m2", + fileId = "252088", + text = "helm_misc_bunnyears_a_01_bef.m2", + value = "helm_misc_bunnyears_a_01_bef.m2", }, { - fileId = "141234", - text = "helm_plate_viking_d_01_scf.m2", - value = "helm_plate_viking_d_01_scf.m2", + fileId = "252089", + text = "helm_misc_bunnyears_a_01_bem.m2", + value = "helm_misc_bunnyears_a_01_bem.m2", }, { - fileId = "141235", - text = "helm_plate_viking_d_01_scm.m2", - value = "helm_plate_viking_d_01_scm.m2", + fileId = "252090", + text = "helm_misc_bunnyears_a_01_drf.m2", + value = "helm_misc_bunnyears_a_01_drf.m2", }, { - fileId = "141236", - text = "helm_plate_viking_d_01_taf.m2", - value = "helm_plate_viking_d_01_taf.m2", + fileId = "252091", + text = "helm_misc_bunnyears_a_01_drm.m2", + value = "helm_misc_bunnyears_a_01_drm.m2", }, { - fileId = "141237", - text = "helm_plate_viking_d_01_tam.m2", - value = "helm_plate_viking_d_01_tam.m2", + fileId = "252092", + text = "helm_misc_bunnyears_a_01_dwf.m2", + value = "helm_misc_bunnyears_a_01_dwf.m2", }, { - fileId = "141238", - text = "helm_plate_viking_d_01_trf.m2", - value = "helm_plate_viking_d_01_trf.m2", + fileId = "252093", + text = "helm_misc_bunnyears_a_01_dwm.m2", + value = "helm_misc_bunnyears_a_01_dwm.m2", }, { - fileId = "141239", - text = "helm_plate_viking_d_01_trm.m2", - value = "helm_plate_viking_d_01_trm.m2", + fileId = "252094", + text = "helm_misc_bunnyears_a_01_gnf.m2", + value = "helm_misc_bunnyears_a_01_gnf.m2", }, { - fileId = "238251", - text = "helm_plate_vrykul_01_nsm.m2", - value = "helm_plate_vrykul_01_nsm.m2", + fileId = "252095", + text = "helm_misc_bunnyears_a_01_gnm.m2", + value = "helm_misc_bunnyears_a_01_gnm.m2", }, { - fileId = "238252", - text = "helm_plate_vrykul_01_vrm.m2", - value = "helm_plate_vrykul_01_vrm.m2", + fileId = "252096", + text = "helm_misc_bunnyears_a_01_gof.m2", + value = "helm_misc_bunnyears_a_01_gof.m2", }, { - fileId = "141246", - text = "helm_plate_zulaman_d_01_bef.m2", - value = "helm_plate_zulaman_d_01_bef.m2", + fileId = "252097", + text = "helm_misc_bunnyears_a_01_gom.m2", + value = "helm_misc_bunnyears_a_01_gom.m2", }, { - fileId = "141247", - text = "helm_plate_zulaman_d_01_bem.m2", - value = "helm_plate_zulaman_d_01_bem.m2", + fileId = "252098", + text = "helm_misc_bunnyears_a_01_huf.m2", + value = "helm_misc_bunnyears_a_01_huf.m2", }, { - fileId = "141248", - text = "helm_plate_zulaman_d_01_drf.m2", - value = "helm_plate_zulaman_d_01_drf.m2", + fileId = "252099", + text = "helm_misc_bunnyears_a_01_hum.m2", + value = "helm_misc_bunnyears_a_01_hum.m2", }, { - fileId = "141249", - text = "helm_plate_zulaman_d_01_drm.m2", - value = "helm_plate_zulaman_d_01_drm.m2", + fileId = "252100", + text = "helm_misc_bunnyears_a_01_nif.m2", + value = "helm_misc_bunnyears_a_01_nif.m2", }, { - fileId = "141250", - text = "helm_plate_zulaman_d_01_dwf.m2", - value = "helm_plate_zulaman_d_01_dwf.m2", + fileId = "252101", + text = "helm_misc_bunnyears_a_01_nim.m2", + value = "helm_misc_bunnyears_a_01_nim.m2", }, { - fileId = "141251", - text = "helm_plate_zulaman_d_01_dwm.m2", - value = "helm_plate_zulaman_d_01_dwm.m2", + fileId = "252102", + text = "helm_misc_bunnyears_a_01_orf.m2", + value = "helm_misc_bunnyears_a_01_orf.m2", }, { - fileId = "141252", - text = "helm_plate_zulaman_d_01_gnf.m2", - value = "helm_plate_zulaman_d_01_gnf.m2", + fileId = "252103", + text = "helm_misc_bunnyears_a_01_orm.m2", + value = "helm_misc_bunnyears_a_01_orm.m2", }, { - fileId = "141253", - text = "helm_plate_zulaman_d_01_gnm.m2", - value = "helm_plate_zulaman_d_01_gnm.m2", + fileId = "252104", + text = "helm_misc_bunnyears_a_01_scf.m2", + value = "helm_misc_bunnyears_a_01_scf.m2", }, { - fileId = "141254", - text = "helm_plate_zulaman_d_01_gof.m2", - value = "helm_plate_zulaman_d_01_gof.m2", + fileId = "252105", + text = "helm_misc_bunnyears_a_01_scm.m2", + value = "helm_misc_bunnyears_a_01_scm.m2", }, { - fileId = "141255", - text = "helm_plate_zulaman_d_01_gom.m2", - value = "helm_plate_zulaman_d_01_gom.m2", + fileId = "252106", + text = "helm_misc_bunnyears_a_01_taf.m2", + value = "helm_misc_bunnyears_a_01_taf.m2", }, { - fileId = "141256", - text = "helm_plate_zulaman_d_01_huf.m2", - value = "helm_plate_zulaman_d_01_huf.m2", - }, - { - fileId = "141257", - text = "helm_plate_zulaman_d_01_hum.m2", - value = "helm_plate_zulaman_d_01_hum.m2", + fileId = "252107", + text = "helm_misc_bunnyears_a_01_tam.m2", + value = "helm_misc_bunnyears_a_01_tam.m2", }, { - fileId = "141258", - text = "helm_plate_zulaman_d_01_nif.m2", - value = "helm_plate_zulaman_d_01_nif.m2", + fileId = "252108", + text = "helm_misc_bunnyears_a_01_trf.m2", + value = "helm_misc_bunnyears_a_01_trf.m2", }, { - fileId = "141259", - text = "helm_plate_zulaman_d_01_nim.m2", - value = "helm_plate_zulaman_d_01_nim.m2", + fileId = "252109", + text = "helm_misc_bunnyears_a_01_trm.m2", + value = "helm_misc_bunnyears_a_01_trm.m2", }, { - fileId = "141260", - text = "helm_plate_zulaman_d_01_orf.m2", - value = "helm_plate_zulaman_d_01_orf.m2", + fileId = "454192", + text = "helm_misc_bunnyears_a_01_wof.m2", + value = "helm_misc_bunnyears_a_01_wof.m2", }, { - fileId = "141261", - text = "helm_plate_zulaman_d_01_orm.m2", - value = "helm_plate_zulaman_d_01_orm.m2", + fileId = "442744", + text = "helm_misc_bunnyears_a_01_wom.m2", + value = "helm_misc_bunnyears_a_01_wom.m2", }, { - fileId = "141262", - text = "helm_plate_zulaman_d_01_scf.m2", - value = "helm_plate_zulaman_d_01_scf.m2", + fileId = "238037", + text = "helm_misc_bunnyears_black_a_01_bef.m2", + value = "helm_misc_bunnyears_black_a_01_bef.m2", }, { - fileId = "141263", - text = "helm_plate_zulaman_d_01_scm.m2", - value = "helm_plate_zulaman_d_01_scm.m2", + fileId = "238038", + text = "helm_misc_bunnyears_black_a_01_bem.m2", + value = "helm_misc_bunnyears_black_a_01_bem.m2", }, { - fileId = "141264", - text = "helm_plate_zulaman_d_01_taf.m2", - value = "helm_plate_zulaman_d_01_taf.m2", + fileId = "238039", + text = "helm_misc_bunnyears_black_a_01_drf.m2", + value = "helm_misc_bunnyears_black_a_01_drf.m2", }, { - fileId = "141265", - text = "helm_plate_zulaman_d_01_tam.m2", - value = "helm_plate_zulaman_d_01_tam.m2", + fileId = "238040", + text = "helm_misc_bunnyears_black_a_01_drm.m2", + value = "helm_misc_bunnyears_black_a_01_drm.m2", }, { - fileId = "141266", - text = "helm_plate_zulaman_d_01_trf.m2", - value = "helm_plate_zulaman_d_01_trf.m2", + fileId = "238041", + text = "helm_misc_bunnyears_black_a_01_dwf.m2", + value = "helm_misc_bunnyears_black_a_01_dwf.m2", }, { - fileId = "141267", - text = "helm_plate_zulaman_d_01_trm.m2", - value = "helm_plate_zulaman_d_01_trm.m2", + fileId = "238042", + text = "helm_misc_bunnyears_black_a_01_dwm.m2", + value = "helm_misc_bunnyears_black_a_01_dwm.m2", }, { - fileId = "141272", - text = "helm_plate_zulaman_d_02_bef.m2", - value = "helm_plate_zulaman_d_02_bef.m2", + fileId = "238043", + text = "helm_misc_bunnyears_black_a_01_gnf.m2", + value = "helm_misc_bunnyears_black_a_01_gnf.m2", }, { - fileId = "141273", - text = "helm_plate_zulaman_d_02_bem.m2", - value = "helm_plate_zulaman_d_02_bem.m2", + fileId = "238044", + text = "helm_misc_bunnyears_black_a_01_gnm.m2", + value = "helm_misc_bunnyears_black_a_01_gnm.m2", }, { - fileId = "141274", - text = "helm_plate_zulaman_d_02_drf.m2", - value = "helm_plate_zulaman_d_02_drf.m2", + fileId = "238045", + text = "helm_misc_bunnyears_black_a_01_gof.m2", + value = "helm_misc_bunnyears_black_a_01_gof.m2", }, { - fileId = "141275", - text = "helm_plate_zulaman_d_02_drm.m2", - value = "helm_plate_zulaman_d_02_drm.m2", + fileId = "238046", + text = "helm_misc_bunnyears_black_a_01_gom.m2", + value = "helm_misc_bunnyears_black_a_01_gom.m2", }, { - fileId = "141276", - text = "helm_plate_zulaman_d_02_dwf.m2", - value = "helm_plate_zulaman_d_02_dwf.m2", + fileId = "238047", + text = "helm_misc_bunnyears_black_a_01_huf.m2", + value = "helm_misc_bunnyears_black_a_01_huf.m2", }, { - fileId = "141277", - text = "helm_plate_zulaman_d_02_dwm.m2", - value = "helm_plate_zulaman_d_02_dwm.m2", + fileId = "238048", + text = "helm_misc_bunnyears_black_a_01_hum.m2", + value = "helm_misc_bunnyears_black_a_01_hum.m2", }, { - fileId = "141278", - text = "helm_plate_zulaman_d_02_gnf.m2", - value = "helm_plate_zulaman_d_02_gnf.m2", + fileId = "238049", + text = "helm_misc_bunnyears_black_a_01_nif.m2", + value = "helm_misc_bunnyears_black_a_01_nif.m2", }, { - fileId = "141279", - text = "helm_plate_zulaman_d_02_gnm.m2", - value = "helm_plate_zulaman_d_02_gnm.m2", + fileId = "238050", + text = "helm_misc_bunnyears_black_a_01_nim.m2", + value = "helm_misc_bunnyears_black_a_01_nim.m2", }, { - fileId = "141280", - text = "helm_plate_zulaman_d_02_huf.m2", - value = "helm_plate_zulaman_d_02_huf.m2", + fileId = "238051", + text = "helm_misc_bunnyears_black_a_01_orf.m2", + value = "helm_misc_bunnyears_black_a_01_orf.m2", }, { - fileId = "141281", - text = "helm_plate_zulaman_d_02_hum.m2", - value = "helm_plate_zulaman_d_02_hum.m2", + fileId = "238052", + text = "helm_misc_bunnyears_black_a_01_orm.m2", + value = "helm_misc_bunnyears_black_a_01_orm.m2", }, { - fileId = "141282", - text = "helm_plate_zulaman_d_02_nif.m2", - value = "helm_plate_zulaman_d_02_nif.m2", + fileId = "238053", + text = "helm_misc_bunnyears_black_a_01_scf.m2", + value = "helm_misc_bunnyears_black_a_01_scf.m2", }, { - fileId = "141283", - text = "helm_plate_zulaman_d_02_nim.m2", - value = "helm_plate_zulaman_d_02_nim.m2", + fileId = "238054", + text = "helm_misc_bunnyears_black_a_01_scm.m2", + value = "helm_misc_bunnyears_black_a_01_scm.m2", }, { - fileId = "141284", - text = "helm_plate_zulaman_d_02_orf.m2", - value = "helm_plate_zulaman_d_02_orf.m2", + fileId = "238055", + text = "helm_misc_bunnyears_black_a_01_taf.m2", + value = "helm_misc_bunnyears_black_a_01_taf.m2", }, { - fileId = "141285", - text = "helm_plate_zulaman_d_02_orm.m2", - value = "helm_plate_zulaman_d_02_orm.m2", + fileId = "238056", + text = "helm_misc_bunnyears_black_a_01_tam.m2", + value = "helm_misc_bunnyears_black_a_01_tam.m2", }, { - fileId = "141286", - text = "helm_plate_zulaman_d_02_scf.m2", - value = "helm_plate_zulaman_d_02_scf.m2", + fileId = "238057", + text = "helm_misc_bunnyears_black_a_01_trf.m2", + value = "helm_misc_bunnyears_black_a_01_trf.m2", }, { - fileId = "141287", - text = "helm_plate_zulaman_d_02_scm.m2", - value = "helm_plate_zulaman_d_02_scm.m2", + fileId = "238058", + text = "helm_misc_bunnyears_black_a_01_trm.m2", + value = "helm_misc_bunnyears_black_a_01_trm.m2", }, { - fileId = "141288", - text = "helm_plate_zulaman_d_02_taf.m2", - value = "helm_plate_zulaman_d_02_taf.m2", + fileId = "329807", + text = "helm_misc_rose_a_01_bef.m2", + value = "helm_misc_rose_a_01_bef.m2", }, { - fileId = "141289", - text = "helm_plate_zulaman_d_02_tam.m2", - value = "helm_plate_zulaman_d_02_tam.m2", + fileId = "329808", + text = "helm_misc_rose_a_01_bem.m2", + value = "helm_misc_rose_a_01_bem.m2", }, { - fileId = "141290", - text = "helm_plate_zulaman_d_02_trf.m2", - value = "helm_plate_zulaman_d_02_trf.m2", + fileId = "329809", + text = "helm_misc_rose_a_01_drf.m2", + value = "helm_misc_rose_a_01_drf.m2", }, { - fileId = "141291", - text = "helm_plate_zulaman_d_02_trm.m2", - value = "helm_plate_zulaman_d_02_trm.m2", + fileId = "329810", + text = "helm_misc_rose_a_01_drm.m2", + value = "helm_misc_rose_a_01_drm.m2", }, { - fileId = "141296", - text = "helm_plate_zulaman_d_03_bef.m2", - value = "helm_plate_zulaman_d_03_bef.m2", + fileId = "329811", + text = "helm_misc_rose_a_01_dwf.m2", + value = "helm_misc_rose_a_01_dwf.m2", }, { - fileId = "141297", - text = "helm_plate_zulaman_d_03_bem.m2", - value = "helm_plate_zulaman_d_03_bem.m2", + fileId = "329812", + text = "helm_misc_rose_a_01_dwm.m2", + value = "helm_misc_rose_a_01_dwm.m2", }, { - fileId = "141298", - text = "helm_plate_zulaman_d_03_drf.m2", - value = "helm_plate_zulaman_d_03_drf.m2", + fileId = "329813", + text = "helm_misc_rose_a_01_gnf.m2", + value = "helm_misc_rose_a_01_gnf.m2", }, { - fileId = "141299", - text = "helm_plate_zulaman_d_03_drm.m2", - value = "helm_plate_zulaman_d_03_drm.m2", + fileId = "329814", + text = "helm_misc_rose_a_01_gnm.m2", + value = "helm_misc_rose_a_01_gnm.m2", }, { - fileId = "141300", - text = "helm_plate_zulaman_d_03_dwf.m2", - value = "helm_plate_zulaman_d_03_dwf.m2", + fileId = "329815", + text = "helm_misc_rose_a_01_gof.m2", + value = "helm_misc_rose_a_01_gof.m2", }, { - fileId = "141301", - text = "helm_plate_zulaman_d_03_dwm.m2", - value = "helm_plate_zulaman_d_03_dwm.m2", + fileId = "329816", + text = "helm_misc_rose_a_01_gom.m2", + value = "helm_misc_rose_a_01_gom.m2", }, { - fileId = "141302", - text = "helm_plate_zulaman_d_03_gnf.m2", - value = "helm_plate_zulaman_d_03_gnf.m2", + fileId = "329817", + text = "helm_misc_rose_a_01_huf.m2", + value = "helm_misc_rose_a_01_huf.m2", }, { - fileId = "141303", - text = "helm_plate_zulaman_d_03_gnm.m2", - value = "helm_plate_zulaman_d_03_gnm.m2", + fileId = "329818", + text = "helm_misc_rose_a_01_hum.m2", + value = "helm_misc_rose_a_01_hum.m2", }, { - fileId = "141304", - text = "helm_plate_zulaman_d_03_gof.m2", - value = "helm_plate_zulaman_d_03_gof.m2", + fileId = "329819", + text = "helm_misc_rose_a_01_nif.m2", + value = "helm_misc_rose_a_01_nif.m2", }, { - fileId = "141305", - text = "helm_plate_zulaman_d_03_gom.m2", - value = "helm_plate_zulaman_d_03_gom.m2", + fileId = "329820", + text = "helm_misc_rose_a_01_nim.m2", + value = "helm_misc_rose_a_01_nim.m2", }, { - fileId = "141306", - text = "helm_plate_zulaman_d_03_huf.m2", - value = "helm_plate_zulaman_d_03_huf.m2", + fileId = "329821", + text = "helm_misc_rose_a_01_orf.m2", + value = "helm_misc_rose_a_01_orf.m2", }, { - fileId = "141307", - text = "helm_plate_zulaman_d_03_hum.m2", - value = "helm_plate_zulaman_d_03_hum.m2", + fileId = "329822", + text = "helm_misc_rose_a_01_orm.m2", + value = "helm_misc_rose_a_01_orm.m2", }, { - fileId = "141308", - text = "helm_plate_zulaman_d_03_nif.m2", - value = "helm_plate_zulaman_d_03_nif.m2", + fileId = "329823", + text = "helm_misc_rose_a_01_scf.m2", + value = "helm_misc_rose_a_01_scf.m2", }, { - fileId = "141309", - text = "helm_plate_zulaman_d_03_nim.m2", - value = "helm_plate_zulaman_d_03_nim.m2", + fileId = "329824", + text = "helm_misc_rose_a_01_scm.m2", + value = "helm_misc_rose_a_01_scm.m2", }, { - fileId = "141310", - text = "helm_plate_zulaman_d_03_orf.m2", - value = "helm_plate_zulaman_d_03_orf.m2", + fileId = "329825", + text = "helm_misc_rose_a_01_taf.m2", + value = "helm_misc_rose_a_01_taf.m2", }, { - fileId = "141311", - text = "helm_plate_zulaman_d_03_orm.m2", - value = "helm_plate_zulaman_d_03_orm.m2", + fileId = "329826", + text = "helm_misc_rose_a_01_tam.m2", + value = "helm_misc_rose_a_01_tam.m2", }, { - fileId = "141312", - text = "helm_plate_zulaman_d_03_scf.m2", - value = "helm_plate_zulaman_d_03_scf.m2", + fileId = "329827", + text = "helm_misc_rose_a_01_trf.m2", + value = "helm_misc_rose_a_01_trf.m2", }, { - fileId = "141313", - text = "helm_plate_zulaman_d_03_scm.m2", - value = "helm_plate_zulaman_d_03_scm.m2", + fileId = "329828", + text = "helm_misc_rose_a_01_trm.m2", + value = "helm_misc_rose_a_01_trm.m2", }, { - fileId = "141314", - text = "helm_plate_zulaman_d_03_taf.m2", - value = "helm_plate_zulaman_d_03_taf.m2", + fileId = "454193", + text = "helm_misc_rose_a_01_wof.m2", + value = "helm_misc_rose_a_01_wof.m2", }, { - fileId = "141315", - text = "helm_plate_zulaman_d_03_tam.m2", - value = "helm_plate_zulaman_d_03_tam.m2", + fileId = "436638", + text = "helm_misc_rose_a_01_wom.m2", + value = "helm_misc_rose_a_01_wom.m2", }, { - fileId = "141316", - text = "helm_plate_zulaman_d_03_trf.m2", - value = "helm_plate_zulaman_d_03_trf.m2", + fileId = "140142", + text = "helm_monocle_a_01_bef.m2", + value = "helm_monocle_a_01_bef.m2", }, { - fileId = "141317", - text = "helm_plate_zulaman_d_03_trm.m2", - value = "helm_plate_zulaman_d_03_trm.m2", + fileId = "140143", + text = "helm_monocle_a_01_bem.m2", + value = "helm_monocle_a_01_bem.m2", }, { - fileId = "141324", - text = "helm_robe_ahnqiraj_a_01_bef.m2", - value = "helm_robe_ahnqiraj_a_01_bef.m2", + fileId = "140144", + text = "helm_monocle_a_01_drf.m2", + value = "helm_monocle_a_01_drf.m2", }, { - fileId = "141325", - text = "helm_robe_ahnqiraj_a_01_bem.m2", - value = "helm_robe_ahnqiraj_a_01_bem.m2", + fileId = "140145", + text = "helm_monocle_a_01_drm.m2", + value = "helm_monocle_a_01_drm.m2", }, { - fileId = "141326", - text = "helm_robe_ahnqiraj_a_01_drf.m2", - value = "helm_robe_ahnqiraj_a_01_drf.m2", + fileId = "140146", + text = "helm_monocle_a_01_dwf.m2", + value = "helm_monocle_a_01_dwf.m2", }, { - fileId = "141327", - text = "helm_robe_ahnqiraj_a_01_drm.m2", - value = "helm_robe_ahnqiraj_a_01_drm.m2", + fileId = "140147", + text = "helm_monocle_a_01_dwm.m2", + value = "helm_monocle_a_01_dwm.m2", }, { - fileId = "141328", - text = "helm_robe_ahnqiraj_a_01_dwf.m2", - value = "helm_robe_ahnqiraj_a_01_dwf.m2", + fileId = "140148", + text = "helm_monocle_a_01_gnf.m2", + value = "helm_monocle_a_01_gnf.m2", }, { - fileId = "141329", - text = "helm_robe_ahnqiraj_a_01_dwm.m2", - value = "helm_robe_ahnqiraj_a_01_dwm.m2", + fileId = "140149", + text = "helm_monocle_a_01_gnm.m2", + value = "helm_monocle_a_01_gnm.m2", }, { - fileId = "141330", - text = "helm_robe_ahnqiraj_a_01_gnf.m2", - value = "helm_robe_ahnqiraj_a_01_gnf.m2", + fileId = "140150", + text = "helm_monocle_a_01_gof.m2", + value = "helm_monocle_a_01_gof.m2", }, { - fileId = "141331", - text = "helm_robe_ahnqiraj_a_01_gnm.m2", - value = "helm_robe_ahnqiraj_a_01_gnm.m2", + fileId = "140151", + text = "helm_monocle_a_01_gom.m2", + value = "helm_monocle_a_01_gom.m2", }, { - fileId = "141332", - text = "helm_robe_ahnqiraj_a_01_gof.m2", - value = "helm_robe_ahnqiraj_a_01_gof.m2", + fileId = "140152", + text = "helm_monocle_a_01_huf.m2", + value = "helm_monocle_a_01_huf.m2", }, { - fileId = "141333", - text = "helm_robe_ahnqiraj_a_01_huf.m2", - value = "helm_robe_ahnqiraj_a_01_huf.m2", + fileId = "140153", + text = "helm_monocle_a_01_hum.m2", + value = "helm_monocle_a_01_hum.m2", }, { - fileId = "141334", - text = "helm_robe_ahnqiraj_a_01_hum.m2", - value = "helm_robe_ahnqiraj_a_01_hum.m2", + fileId = "140154", + text = "helm_monocle_a_01_nif.m2", + value = "helm_monocle_a_01_nif.m2", }, { - fileId = "141335", - text = "helm_robe_ahnqiraj_a_01_nif.m2", - value = "helm_robe_ahnqiraj_a_01_nif.m2", + fileId = "140155", + text = "helm_monocle_a_01_nim.m2", + value = "helm_monocle_a_01_nim.m2", }, { - fileId = "141336", - text = "helm_robe_ahnqiraj_a_01_nim.m2", - value = "helm_robe_ahnqiraj_a_01_nim.m2", + fileId = "140156", + text = "helm_monocle_a_01_orf.m2", + value = "helm_monocle_a_01_orf.m2", }, { - fileId = "141337", - text = "helm_robe_ahnqiraj_a_01_orf.m2", - value = "helm_robe_ahnqiraj_a_01_orf.m2", + fileId = "140157", + text = "helm_monocle_a_01_orm.m2", + value = "helm_monocle_a_01_orm.m2", }, { - fileId = "141338", - text = "helm_robe_ahnqiraj_a_01_orm.m2", - value = "helm_robe_ahnqiraj_a_01_orm.m2", + fileId = "140158", + text = "helm_monocle_a_01_scf.m2", + value = "helm_monocle_a_01_scf.m2", }, { - fileId = "141339", - text = "helm_robe_ahnqiraj_a_01_scf.m2", - value = "helm_robe_ahnqiraj_a_01_scf.m2", + fileId = "140159", + text = "helm_monocle_a_01_scm.m2", + value = "helm_monocle_a_01_scm.m2", }, { - fileId = "141340", - text = "helm_robe_ahnqiraj_a_01_scm.m2", - value = "helm_robe_ahnqiraj_a_01_scm.m2", + fileId = "140160", + text = "helm_monocle_a_01_taf.m2", + value = "helm_monocle_a_01_taf.m2", }, { - fileId = "141341", - text = "helm_robe_ahnqiraj_a_01_taf.m2", - value = "helm_robe_ahnqiraj_a_01_taf.m2", + fileId = "140161", + text = "helm_monocle_a_01_tam.m2", + value = "helm_monocle_a_01_tam.m2", }, { - fileId = "141342", - text = "helm_robe_ahnqiraj_a_01_tam.m2", - value = "helm_robe_ahnqiraj_a_01_tam.m2", + fileId = "140162", + text = "helm_monocle_a_01_trf.m2", + value = "helm_monocle_a_01_trf.m2", }, { - fileId = "141343", - text = "helm_robe_ahnqiraj_a_01_trf.m2", - value = "helm_robe_ahnqiraj_a_01_trf.m2", + fileId = "140163", + text = "helm_monocle_a_01_trm.m2", + value = "helm_monocle_a_01_trm.m2", }, { - fileId = "141344", - text = "helm_robe_ahnqiraj_a_01_trm.m2", - value = "helm_robe_ahnqiraj_a_01_trm.m2", + fileId = "454194", + text = "helm_monocle_a_01_wof.m2", + value = "helm_monocle_a_01_wof.m2", }, { - fileId = "314762", - text = "helm_robe_argentalliance_d_01_bef.m2", - value = "helm_robe_argentalliance_d_01_bef.m2", + fileId = "436640", + text = "helm_monocle_a_01_wom.m2", + value = "helm_monocle_a_01_wom.m2", }, { - fileId = "314763", - text = "helm_robe_argentalliance_d_01_bem.m2", - value = "helm_robe_argentalliance_d_01_bem.m2", + fileId = "140167", + text = "helm_monocle_b_01_bef.m2", + value = "helm_monocle_b_01_bef.m2", }, { - fileId = "314764", - text = "helm_robe_argentalliance_d_01_drf.m2", - value = "helm_robe_argentalliance_d_01_drf.m2", + fileId = "140168", + text = "helm_monocle_b_01_bem.m2", + value = "helm_monocle_b_01_bem.m2", }, { - fileId = "314765", - text = "helm_robe_argentalliance_d_01_drm.m2", - value = "helm_robe_argentalliance_d_01_drm.m2", + fileId = "140169", + text = "helm_monocle_b_01_drf.m2", + value = "helm_monocle_b_01_drf.m2", }, { - fileId = "314766", - text = "helm_robe_argentalliance_d_01_dwf.m2", - value = "helm_robe_argentalliance_d_01_dwf.m2", + fileId = "140170", + text = "helm_monocle_b_01_drm.m2", + value = "helm_monocle_b_01_drm.m2", }, { - fileId = "314767", - text = "helm_robe_argentalliance_d_01_dwm.m2", - value = "helm_robe_argentalliance_d_01_dwm.m2", + fileId = "140171", + text = "helm_monocle_b_01_dwf.m2", + value = "helm_monocle_b_01_dwf.m2", }, { - fileId = "314768", - text = "helm_robe_argentalliance_d_01_gnf.m2", - value = "helm_robe_argentalliance_d_01_gnf.m2", + fileId = "140172", + text = "helm_monocle_b_01_dwm.m2", + value = "helm_monocle_b_01_dwm.m2", }, { - fileId = "314769", - text = "helm_robe_argentalliance_d_01_gnm.m2", - value = "helm_robe_argentalliance_d_01_gnm.m2", + fileId = "140173", + text = "helm_monocle_b_01_gnf.m2", + value = "helm_monocle_b_01_gnf.m2", }, { - fileId = "314770", - text = "helm_robe_argentalliance_d_01_gof.m2", - value = "helm_robe_argentalliance_d_01_gof.m2", + fileId = "140174", + text = "helm_monocle_b_01_gnm.m2", + value = "helm_monocle_b_01_gnm.m2", }, { - fileId = "314771", - text = "helm_robe_argentalliance_d_01_gom.m2", - value = "helm_robe_argentalliance_d_01_gom.m2", + fileId = "140175", + text = "helm_monocle_b_01_gof.m2", + value = "helm_monocle_b_01_gof.m2", }, { - fileId = "314772", - text = "helm_robe_argentalliance_d_01_huf.m2", - value = "helm_robe_argentalliance_d_01_huf.m2", + fileId = "140176", + text = "helm_monocle_b_01_gom.m2", + value = "helm_monocle_b_01_gom.m2", }, { - fileId = "314773", - text = "helm_robe_argentalliance_d_01_hum.m2", - value = "helm_robe_argentalliance_d_01_hum.m2", + fileId = "140177", + text = "helm_monocle_b_01_huf.m2", + value = "helm_monocle_b_01_huf.m2", }, { - fileId = "314774", - text = "helm_robe_argentalliance_d_01_nif.m2", - value = "helm_robe_argentalliance_d_01_nif.m2", + fileId = "140178", + text = "helm_monocle_b_01_hum.m2", + value = "helm_monocle_b_01_hum.m2", }, { - fileId = "314775", - text = "helm_robe_argentalliance_d_01_nim.m2", - value = "helm_robe_argentalliance_d_01_nim.m2", + fileId = "140179", + text = "helm_monocle_b_01_nif.m2", + value = "helm_monocle_b_01_nif.m2", }, { - fileId = "314776", - text = "helm_robe_argentalliance_d_01_orf.m2", - value = "helm_robe_argentalliance_d_01_orf.m2", + fileId = "140180", + text = "helm_monocle_b_01_nim.m2", + value = "helm_monocle_b_01_nim.m2", }, { - fileId = "314777", - text = "helm_robe_argentalliance_d_01_orm.m2", - value = "helm_robe_argentalliance_d_01_orm.m2", + fileId = "140181", + text = "helm_monocle_b_01_orf.m2", + value = "helm_monocle_b_01_orf.m2", }, { - fileId = "314778", - text = "helm_robe_argentalliance_d_01_scf.m2", - value = "helm_robe_argentalliance_d_01_scf.m2", + fileId = "140182", + text = "helm_monocle_b_01_orm.m2", + value = "helm_monocle_b_01_orm.m2", }, { - fileId = "314779", - text = "helm_robe_argentalliance_d_01_scm.m2", - value = "helm_robe_argentalliance_d_01_scm.m2", + fileId = "140183", + text = "helm_monocle_b_01_scf.m2", + value = "helm_monocle_b_01_scf.m2", }, { - fileId = "314780", - text = "helm_robe_argentalliance_d_01_taf.m2", - value = "helm_robe_argentalliance_d_01_taf.m2", + fileId = "140184", + text = "helm_monocle_b_01_scm.m2", + value = "helm_monocle_b_01_scm.m2", }, { - fileId = "314781", - text = "helm_robe_argentalliance_d_01_tam.m2", - value = "helm_robe_argentalliance_d_01_tam.m2", + fileId = "140185", + text = "helm_monocle_b_01_taf.m2", + value = "helm_monocle_b_01_taf.m2", }, { - fileId = "314782", - text = "helm_robe_argentalliance_d_01_trf.m2", - value = "helm_robe_argentalliance_d_01_trf.m2", + fileId = "140186", + text = "helm_monocle_b_01_tam.m2", + value = "helm_monocle_b_01_tam.m2", }, { - fileId = "314783", - text = "helm_robe_argentalliance_d_01_trm.m2", - value = "helm_robe_argentalliance_d_01_trm.m2", + fileId = "140187", + text = "helm_monocle_b_01_trf.m2", + value = "helm_monocle_b_01_trf.m2", }, { - fileId = "317603", - text = "helm_robe_argenthorde_d_01_bef.m2", - value = "helm_robe_argenthorde_d_01_bef.m2", + fileId = "140188", + text = "helm_monocle_b_01_trm.m2", + value = "helm_monocle_b_01_trm.m2", }, { - fileId = "317604", - text = "helm_robe_argenthorde_d_01_bem.m2", - value = "helm_robe_argenthorde_d_01_bem.m2", + fileId = "454195", + text = "helm_monocle_b_01_wof.m2", + value = "helm_monocle_b_01_wof.m2", }, { - fileId = "317605", - text = "helm_robe_argenthorde_d_01_drf.m2", - value = "helm_robe_argenthorde_d_01_drf.m2", + fileId = "436641", + text = "helm_monocle_b_01_wom.m2", + value = "helm_monocle_b_01_wom.m2", }, { - fileId = "317606", - text = "helm_robe_argenthorde_d_01_drm.m2", - value = "helm_robe_argenthorde_d_01_drm.m2", + fileId = "140189", + text = "helm_monocle_b_02engi_bef.m2", + value = "helm_monocle_b_02engi_bef.m2", }, { - fileId = "317607", - text = "helm_robe_argenthorde_d_01_dwf.m2", - value = "helm_robe_argenthorde_d_01_dwf.m2", + fileId = "140190", + text = "helm_monocle_b_02engi_bem.m2", + value = "helm_monocle_b_02engi_bem.m2", }, { - fileId = "317608", - text = "helm_robe_argenthorde_d_01_dwm.m2", - value = "helm_robe_argenthorde_d_01_dwm.m2", + fileId = "140191", + text = "helm_monocle_b_02engi_drf.m2", + value = "helm_monocle_b_02engi_drf.m2", }, { - fileId = "317609", - text = "helm_robe_argenthorde_d_01_gnf.m2", - value = "helm_robe_argenthorde_d_01_gnf.m2", + fileId = "140192", + text = "helm_monocle_b_02engi_drm.m2", + value = "helm_monocle_b_02engi_drm.m2", }, { - fileId = "317610", - text = "helm_robe_argenthorde_d_01_gnm.m2", - value = "helm_robe_argenthorde_d_01_gnm.m2", + fileId = "140193", + text = "helm_monocle_b_02engi_dwf.m2", + value = "helm_monocle_b_02engi_dwf.m2", }, { - fileId = "317611", - text = "helm_robe_argenthorde_d_01_gof.m2", - value = "helm_robe_argenthorde_d_01_gof.m2", + fileId = "140194", + text = "helm_monocle_b_02engi_dwm.m2", + value = "helm_monocle_b_02engi_dwm.m2", }, { - fileId = "317612", - text = "helm_robe_argenthorde_d_01_gom.m2", - value = "helm_robe_argenthorde_d_01_gom.m2", + fileId = "140195", + text = "helm_monocle_b_02engi_gnf.m2", + value = "helm_monocle_b_02engi_gnf.m2", }, { - fileId = "317613", - text = "helm_robe_argenthorde_d_01_huf.m2", - value = "helm_robe_argenthorde_d_01_huf.m2", + fileId = "140196", + text = "helm_monocle_b_02engi_gnm.m2", + value = "helm_monocle_b_02engi_gnm.m2", }, { - fileId = "317614", - text = "helm_robe_argenthorde_d_01_hum.m2", - value = "helm_robe_argenthorde_d_01_hum.m2", + fileId = "140197", + text = "helm_monocle_b_02engi_gof.m2", + value = "helm_monocle_b_02engi_gof.m2", }, { - fileId = "317615", - text = "helm_robe_argenthorde_d_01_nif.m2", - value = "helm_robe_argenthorde_d_01_nif.m2", + fileId = "140198", + text = "helm_monocle_b_02engi_gom.m2", + value = "helm_monocle_b_02engi_gom.m2", }, { - fileId = "317616", - text = "helm_robe_argenthorde_d_01_nim.m2", - value = "helm_robe_argenthorde_d_01_nim.m2", + fileId = "140199", + text = "helm_monocle_b_02engi_huf.m2", + value = "helm_monocle_b_02engi_huf.m2", }, { - fileId = "317617", - text = "helm_robe_argenthorde_d_01_orf.m2", - value = "helm_robe_argenthorde_d_01_orf.m2", + fileId = "140200", + text = "helm_monocle_b_02engi_hum.m2", + value = "helm_monocle_b_02engi_hum.m2", }, { - fileId = "317618", - text = "helm_robe_argenthorde_d_01_orm.m2", - value = "helm_robe_argenthorde_d_01_orm.m2", + fileId = "140201", + text = "helm_monocle_b_02engi_nif.m2", + value = "helm_monocle_b_02engi_nif.m2", }, { - fileId = "317619", - text = "helm_robe_argenthorde_d_01_scf.m2", - value = "helm_robe_argenthorde_d_01_scf.m2", + fileId = "140202", + text = "helm_monocle_b_02engi_nim.m2", + value = "helm_monocle_b_02engi_nim.m2", }, { - fileId = "317620", - text = "helm_robe_argenthorde_d_01_scm.m2", - value = "helm_robe_argenthorde_d_01_scm.m2", + fileId = "140203", + text = "helm_monocle_b_02engi_orf.m2", + value = "helm_monocle_b_02engi_orf.m2", }, { - fileId = "317621", - text = "helm_robe_argenthorde_d_01_taf.m2", - value = "helm_robe_argenthorde_d_01_taf.m2", + fileId = "140204", + text = "helm_monocle_b_02engi_orm.m2", + value = "helm_monocle_b_02engi_orm.m2", }, { - fileId = "317622", - text = "helm_robe_argenthorde_d_01_tam.m2", - value = "helm_robe_argenthorde_d_01_tam.m2", + fileId = "140205", + text = "helm_monocle_b_02engi_scf.m2", + value = "helm_monocle_b_02engi_scf.m2", }, { - fileId = "317623", - text = "helm_robe_argenthorde_d_01_trf.m2", - value = "helm_robe_argenthorde_d_01_trf.m2", + fileId = "140206", + text = "helm_monocle_b_02engi_scm.m2", + value = "helm_monocle_b_02engi_scm.m2", }, { - fileId = "317624", - text = "helm_robe_argenthorde_d_01_trm.m2", - value = "helm_robe_argenthorde_d_01_trm.m2", + fileId = "140207", + text = "helm_monocle_b_02engi_taf.m2", + value = "helm_monocle_b_02engi_taf.m2", }, { - fileId = "141348", - text = "helm_robe_brewfest_a_01_bef.m2", - value = "helm_robe_brewfest_a_01_bef.m2", + fileId = "140208", + text = "helm_monocle_b_02engi_tam.m2", + value = "helm_monocle_b_02engi_tam.m2", }, { - fileId = "141349", - text = "helm_robe_brewfest_a_01_bem.m2", - value = "helm_robe_brewfest_a_01_bem.m2", + fileId = "140209", + text = "helm_monocle_b_02engi_trf.m2", + value = "helm_monocle_b_02engi_trf.m2", }, { - fileId = "141350", - text = "helm_robe_brewfest_a_01_drf.m2", - value = "helm_robe_brewfest_a_01_drf.m2", + fileId = "140210", + text = "helm_monocle_b_02engi_trm.m2", + value = "helm_monocle_b_02engi_trm.m2", }, { - fileId = "141351", - text = "helm_robe_brewfest_a_01_drm.m2", - value = "helm_robe_brewfest_a_01_drm.m2", + fileId = "454196", + text = "helm_monocle_b_02engi_wof.m2", + value = "helm_monocle_b_02engi_wof.m2", }, { - fileId = "141352", - text = "helm_robe_brewfest_a_01_dwf.m2", - value = "helm_robe_brewfest_a_01_dwf.m2", + fileId = "436642", + text = "helm_monocle_b_02engi_wom.m2", + value = "helm_monocle_b_02engi_wom.m2", }, { - fileId = "141353", - text = "helm_robe_brewfest_a_01_dwm.m2", - value = "helm_robe_brewfest_a_01_dwm.m2", + fileId = "140211", + text = "helm_monocle_c_01_bef.m2", + value = "helm_monocle_c_01_bef.m2", }, { - fileId = "141354", - text = "helm_robe_brewfest_a_01_gnf.m2", - value = "helm_robe_brewfest_a_01_gnf.m2", + fileId = "140212", + text = "helm_monocle_c_01_bem.m2", + value = "helm_monocle_c_01_bem.m2", }, { - fileId = "141355", - text = "helm_robe_brewfest_a_01_gnm.m2", - value = "helm_robe_brewfest_a_01_gnm.m2", + fileId = "140213", + text = "helm_monocle_c_01_drf.m2", + value = "helm_monocle_c_01_drf.m2", }, { - fileId = "141356", - text = "helm_robe_brewfest_a_01_gof.m2", - value = "helm_robe_brewfest_a_01_gof.m2", + fileId = "140214", + text = "helm_monocle_c_01_drm.m2", + value = "helm_monocle_c_01_drm.m2", }, { - fileId = "141357", - text = "helm_robe_brewfest_a_01_gom.m2", - value = "helm_robe_brewfest_a_01_gom.m2", + fileId = "140215", + text = "helm_monocle_c_01_dwf.m2", + value = "helm_monocle_c_01_dwf.m2", }, { - fileId = "141358", - text = "helm_robe_brewfest_a_01_huf.m2", - value = "helm_robe_brewfest_a_01_huf.m2", + fileId = "140216", + text = "helm_monocle_c_01_dwm.m2", + value = "helm_monocle_c_01_dwm.m2", }, { - fileId = "141359", - text = "helm_robe_brewfest_a_01_hum.m2", - value = "helm_robe_brewfest_a_01_hum.m2", + fileId = "140217", + text = "helm_monocle_c_01_gnf.m2", + value = "helm_monocle_c_01_gnf.m2", }, { - fileId = "141360", - text = "helm_robe_brewfest_a_01_nif.m2", - value = "helm_robe_brewfest_a_01_nif.m2", + fileId = "140218", + text = "helm_monocle_c_01_gnm.m2", + value = "helm_monocle_c_01_gnm.m2", }, { - fileId = "141361", - text = "helm_robe_brewfest_a_01_nim.m2", - value = "helm_robe_brewfest_a_01_nim.m2", + fileId = "140219", + text = "helm_monocle_c_01_gof.m2", + value = "helm_monocle_c_01_gof.m2", }, { - fileId = "141362", - text = "helm_robe_brewfest_a_01_orf.m2", - value = "helm_robe_brewfest_a_01_orf.m2", + fileId = "140220", + text = "helm_monocle_c_01_gom.m2", + value = "helm_monocle_c_01_gom.m2", }, { - fileId = "141363", - text = "helm_robe_brewfest_a_01_orm.m2", - value = "helm_robe_brewfest_a_01_orm.m2", + fileId = "140221", + text = "helm_monocle_c_01_huf.m2", + value = "helm_monocle_c_01_huf.m2", }, { - fileId = "141364", - text = "helm_robe_brewfest_a_01_scf.m2", - value = "helm_robe_brewfest_a_01_scf.m2", + fileId = "140222", + text = "helm_monocle_c_01_hum.m2", + value = "helm_monocle_c_01_hum.m2", }, { - fileId = "141365", - text = "helm_robe_brewfest_a_01_scm.m2", - value = "helm_robe_brewfest_a_01_scm.m2", + fileId = "140223", + text = "helm_monocle_c_01_nif.m2", + value = "helm_monocle_c_01_nif.m2", }, { - fileId = "141366", - text = "helm_robe_brewfest_a_01_taf.m2", - value = "helm_robe_brewfest_a_01_taf.m2", + fileId = "140224", + text = "helm_monocle_c_01_nim.m2", + value = "helm_monocle_c_01_nim.m2", }, { - fileId = "141367", - text = "helm_robe_brewfest_a_01_tam.m2", - value = "helm_robe_brewfest_a_01_tam.m2", + fileId = "140225", + text = "helm_monocle_c_01_orf.m2", + value = "helm_monocle_c_01_orf.m2", }, { - fileId = "141368", - text = "helm_robe_brewfest_a_01_trf.m2", - value = "helm_robe_brewfest_a_01_trf.m2", + fileId = "140226", + text = "helm_monocle_c_01_orm.m2", + value = "helm_monocle_c_01_orm.m2", }, { - fileId = "141369", - text = "helm_robe_brewfest_a_01_trm.m2", - value = "helm_robe_brewfest_a_01_trm.m2", + fileId = "140227", + text = "helm_monocle_c_01_scf.m2", + value = "helm_monocle_c_01_scf.m2", }, { - fileId = "141374", - text = "helm_robe_c_01_bef.m2", - value = "helm_robe_c_01_bef.m2", + fileId = "140228", + text = "helm_monocle_c_01_scm.m2", + value = "helm_monocle_c_01_scm.m2", }, { - fileId = "141375", - text = "helm_robe_c_01_bem.m2", - value = "helm_robe_c_01_bem.m2", + fileId = "140229", + text = "helm_monocle_c_01_taf.m2", + value = "helm_monocle_c_01_taf.m2", }, { - fileId = "141376", - text = "helm_robe_c_01_drf.m2", - value = "helm_robe_c_01_drf.m2", + fileId = "140230", + text = "helm_monocle_c_01_tam.m2", + value = "helm_monocle_c_01_tam.m2", }, { - fileId = "141377", - text = "helm_robe_c_01_drm.m2", - value = "helm_robe_c_01_drm.m2", + fileId = "140231", + text = "helm_monocle_c_01_trf.m2", + value = "helm_monocle_c_01_trf.m2", }, { - fileId = "141378", - text = "helm_robe_c_01_dwf.m2", - value = "helm_robe_c_01_dwf.m2", + fileId = "140232", + text = "helm_monocle_c_01_trm.m2", + value = "helm_monocle_c_01_trm.m2", }, { - fileId = "141379", - text = "helm_robe_c_01_dwm.m2", - value = "helm_robe_c_01_dwm.m2", + fileId = "454197", + text = "helm_monocle_c_01_wof.m2", + value = "helm_monocle_c_01_wof.m2", }, { - fileId = "141380", - text = "helm_robe_c_01_gnf.m2", - value = "helm_robe_c_01_gnf.m2", + fileId = "436643", + text = "helm_monocle_c_01_wom.m2", + value = "helm_monocle_c_01_wom.m2", }, { - fileId = "141381", - text = "helm_robe_c_01_gnm.m2", - value = "helm_robe_c_01_gnm.m2", + fileId = "357165", + text = "helm_monocle_c_02_bef.m2", + value = "helm_monocle_c_02_bef.m2", }, { - fileId = "141382", - text = "helm_robe_c_01_gof.m2", - value = "helm_robe_c_01_gof.m2", + fileId = "357166", + text = "helm_monocle_c_02_bem.m2", + value = "helm_monocle_c_02_bem.m2", }, { - fileId = "141383", - text = "helm_robe_c_01_gom.m2", - value = "helm_robe_c_01_gom.m2", + fileId = "357167", + text = "helm_monocle_c_02_drf.m2", + value = "helm_monocle_c_02_drf.m2", }, { - fileId = "141384", - text = "helm_robe_c_01_huf.m2", - value = "helm_robe_c_01_huf.m2", + fileId = "357168", + text = "helm_monocle_c_02_drm.m2", + value = "helm_monocle_c_02_drm.m2", }, { - fileId = "141385", - text = "helm_robe_c_01_hum.m2", - value = "helm_robe_c_01_hum.m2", + fileId = "357169", + text = "helm_monocle_c_02_dwf.m2", + value = "helm_monocle_c_02_dwf.m2", }, { - fileId = "141386", - text = "helm_robe_c_01_nif.m2", - value = "helm_robe_c_01_nif.m2", + fileId = "357170", + text = "helm_monocle_c_02_dwm.m2", + value = "helm_monocle_c_02_dwm.m2", }, { - fileId = "141387", - text = "helm_robe_c_01_nim.m2", - value = "helm_robe_c_01_nim.m2", + fileId = "357171", + text = "helm_monocle_c_02_gnf.m2", + value = "helm_monocle_c_02_gnf.m2", }, { - fileId = "141388", - text = "helm_robe_c_01_orf.m2", - value = "helm_robe_c_01_orf.m2", + fileId = "357172", + text = "helm_monocle_c_02_gnm.m2", + value = "helm_monocle_c_02_gnm.m2", }, { - fileId = "141389", - text = "helm_robe_c_01_orm.m2", - value = "helm_robe_c_01_orm.m2", + fileId = "357173", + text = "helm_monocle_c_02_gof.m2", + value = "helm_monocle_c_02_gof.m2", }, { - fileId = "141390", - text = "helm_robe_c_01_scf.m2", - value = "helm_robe_c_01_scf.m2", + fileId = "357174", + text = "helm_monocle_c_02_gom.m2", + value = "helm_monocle_c_02_gom.m2", }, { - fileId = "141391", - text = "helm_robe_c_01_scm.m2", - value = "helm_robe_c_01_scm.m2", + fileId = "357175", + text = "helm_monocle_c_02_huf.m2", + value = "helm_monocle_c_02_huf.m2", }, { - fileId = "141392", - text = "helm_robe_c_01_taf.m2", - value = "helm_robe_c_01_taf.m2", + fileId = "357176", + text = "helm_monocle_c_02_hum.m2", + value = "helm_monocle_c_02_hum.m2", }, { - fileId = "141393", - text = "helm_robe_c_01_tam.m2", - value = "helm_robe_c_01_tam.m2", + fileId = "357177", + text = "helm_monocle_c_02_nif.m2", + value = "helm_monocle_c_02_nif.m2", }, { - fileId = "141394", - text = "helm_robe_c_01_trf.m2", - value = "helm_robe_c_01_trf.m2", + fileId = "357178", + text = "helm_monocle_c_02_nim.m2", + value = "helm_monocle_c_02_nim.m2", }, { - fileId = "141395", - text = "helm_robe_c_01_trm.m2", - value = "helm_robe_c_01_trm.m2", + fileId = "357179", + text = "helm_monocle_c_02_orf.m2", + value = "helm_monocle_c_02_orf.m2", }, { - fileId = "141405", - text = "helm_robe_c_02_bef.m2", - value = "helm_robe_c_02_bef.m2", + fileId = "357180", + text = "helm_monocle_c_02_orm.m2", + value = "helm_monocle_c_02_orm.m2", }, { - fileId = "141406", - text = "helm_robe_c_02_bem.m2", - value = "helm_robe_c_02_bem.m2", + fileId = "357181", + text = "helm_monocle_c_02_scf.m2", + value = "helm_monocle_c_02_scf.m2", }, { - fileId = "141407", - text = "helm_robe_c_02_drf.m2", - value = "helm_robe_c_02_drf.m2", + fileId = "357182", + text = "helm_monocle_c_02_scm.m2", + value = "helm_monocle_c_02_scm.m2", }, { - fileId = "141408", - text = "helm_robe_c_02_drm.m2", - value = "helm_robe_c_02_drm.m2", + fileId = "357183", + text = "helm_monocle_c_02_taf.m2", + value = "helm_monocle_c_02_taf.m2", }, { - fileId = "141409", - text = "helm_robe_c_02_dwf.m2", - value = "helm_robe_c_02_dwf.m2", + fileId = "357184", + text = "helm_monocle_c_02_tam.m2", + value = "helm_monocle_c_02_tam.m2", }, { - fileId = "141410", - text = "helm_robe_c_02_dwm.m2", - value = "helm_robe_c_02_dwm.m2", + fileId = "357185", + text = "helm_monocle_c_02_trf.m2", + value = "helm_monocle_c_02_trf.m2", }, { - fileId = "141411", - text = "helm_robe_c_02_gnf.m2", - value = "helm_robe_c_02_gnf.m2", + fileId = "357186", + text = "helm_monocle_c_02_trm.m2", + value = "helm_monocle_c_02_trm.m2", }, { - fileId = "141412", - text = "helm_robe_c_02_gnm.m2", - value = "helm_robe_c_02_gnm.m2", + fileId = "454198", + text = "helm_monocle_c_02_wof.m2", + value = "helm_monocle_c_02_wof.m2", }, { - fileId = "141413", - text = "helm_robe_c_02_gof.m2", - value = "helm_robe_c_02_gof.m2", + fileId = "436644", + text = "helm_monocle_c_02_wom.m2", + value = "helm_monocle_c_02_wom.m2", }, { - fileId = "141414", - text = "helm_robe_c_02_gom.m2", - value = "helm_robe_c_02_gom.m2", + fileId = "140235", + text = "helm_plate_a_01crusader_bef.m2", + value = "helm_plate_a_01crusader_bef.m2", }, { - fileId = "141415", - text = "helm_robe_c_02_huf.m2", - value = "helm_robe_c_02_huf.m2", + fileId = "140236", + text = "helm_plate_a_01crusader_bem.m2", + value = "helm_plate_a_01crusader_bem.m2", }, { - fileId = "141416", - text = "helm_robe_c_02_hum.m2", - value = "helm_robe_c_02_hum.m2", + fileId = "140237", + text = "helm_plate_a_01crusader_drf.m2", + value = "helm_plate_a_01crusader_drf.m2", }, { - fileId = "141417", - text = "helm_robe_c_02_nif.m2", - value = "helm_robe_c_02_nif.m2", + fileId = "140238", + text = "helm_plate_a_01crusader_drm.m2", + value = "helm_plate_a_01crusader_drm.m2", }, { - fileId = "141418", - text = "helm_robe_c_02_nim.m2", - value = "helm_robe_c_02_nim.m2", + fileId = "140239", + text = "helm_plate_a_01crusader_dwf.m2", + value = "helm_plate_a_01crusader_dwf.m2", }, { - fileId = "141419", - text = "helm_robe_c_02_orf.m2", - value = "helm_robe_c_02_orf.m2", + fileId = "140240", + text = "helm_plate_a_01crusader_dwm.m2", + value = "helm_plate_a_01crusader_dwm.m2", }, { - fileId = "141420", - text = "helm_robe_c_02_orm.m2", - value = "helm_robe_c_02_orm.m2", + fileId = "140241", + text = "helm_plate_a_01crusader_gnf.m2", + value = "helm_plate_a_01crusader_gnf.m2", }, { - fileId = "141421", - text = "helm_robe_c_02_scf.m2", - value = "helm_robe_c_02_scf.m2", + fileId = "140242", + text = "helm_plate_a_01crusader_gnm.m2", + value = "helm_plate_a_01crusader_gnm.m2", }, { - fileId = "141422", - text = "helm_robe_c_02_scm.m2", - value = "helm_robe_c_02_scm.m2", + fileId = "140243", + text = "helm_plate_a_01crusader_gof.m2", + value = "helm_plate_a_01crusader_gof.m2", }, { - fileId = "141423", - text = "helm_robe_c_02_taf.m2", - value = "helm_robe_c_02_taf.m2", + fileId = "140244", + text = "helm_plate_a_01crusader_gom.m2", + value = "helm_plate_a_01crusader_gom.m2", }, { - fileId = "141424", - text = "helm_robe_c_02_tam.m2", - value = "helm_robe_c_02_tam.m2", + fileId = "140245", + text = "helm_plate_a_01crusader_huf.m2", + value = "helm_plate_a_01crusader_huf.m2", }, { - fileId = "141425", - text = "helm_robe_c_02_trf.m2", - value = "helm_robe_c_02_trf.m2", + fileId = "140246", + text = "helm_plate_a_01crusader_hum.m2", + value = "helm_plate_a_01crusader_hum.m2", }, { - fileId = "141426", - text = "helm_robe_c_02_trm.m2", - value = "helm_robe_c_02_trm.m2", + fileId = "140247", + text = "helm_plate_a_01crusader_nif.m2", + value = "helm_plate_a_01crusader_nif.m2", }, { - fileId = "141434", - text = "helm_robe_c_03_bef.m2", - value = "helm_robe_c_03_bef.m2", + fileId = "140248", + text = "helm_plate_a_01crusader_nim.m2", + value = "helm_plate_a_01crusader_nim.m2", }, { - fileId = "141435", - text = "helm_robe_c_03_bem.m2", - value = "helm_robe_c_03_bem.m2", + fileId = "140249", + text = "helm_plate_a_01crusader_orf.m2", + value = "helm_plate_a_01crusader_orf.m2", }, { - fileId = "141436", - text = "helm_robe_c_03_drf.m2", - value = "helm_robe_c_03_drf.m2", + fileId = "140250", + text = "helm_plate_a_01crusader_orm.m2", + value = "helm_plate_a_01crusader_orm.m2", }, { - fileId = "141437", - text = "helm_robe_c_03_drm.m2", - value = "helm_robe_c_03_drm.m2", + fileId = "140251", + text = "helm_plate_a_01crusader_scf.m2", + value = "helm_plate_a_01crusader_scf.m2", }, { - fileId = "141438", - text = "helm_robe_c_03_dwf.m2", - value = "helm_robe_c_03_dwf.m2", + fileId = "140252", + text = "helm_plate_a_01crusader_scm.m2", + value = "helm_plate_a_01crusader_scm.m2", }, { - fileId = "141439", - text = "helm_robe_c_03_dwm.m2", - value = "helm_robe_c_03_dwm.m2", + fileId = "140253", + text = "helm_plate_a_01crusader_taf.m2", + value = "helm_plate_a_01crusader_taf.m2", }, { - fileId = "141440", - text = "helm_robe_c_03_gnf.m2", - value = "helm_robe_c_03_gnf.m2", + fileId = "140254", + text = "helm_plate_a_01crusader_tam.m2", + value = "helm_plate_a_01crusader_tam.m2", }, { - fileId = "141441", - text = "helm_robe_c_03_gnm.m2", - value = "helm_robe_c_03_gnm.m2", + fileId = "140255", + text = "helm_plate_a_01crusader_trf.m2", + value = "helm_plate_a_01crusader_trf.m2", }, { - fileId = "141442", - text = "helm_robe_c_03_gof.m2", - value = "helm_robe_c_03_gof.m2", + fileId = "140256", + text = "helm_plate_a_01crusader_trm.m2", + value = "helm_plate_a_01crusader_trm.m2", }, { - fileId = "141443", - text = "helm_robe_c_03_gom.m2", - value = "helm_robe_c_03_gom.m2", + fileId = "454497", + text = "helm_plate_a_01crusader_wof.m2", + value = "helm_plate_a_01crusader_wof.m2", }, { - fileId = "141444", - text = "helm_robe_c_03_huf.m2", - value = "helm_robe_c_03_huf.m2", + fileId = "436647", + text = "helm_plate_a_01crusader_wom.m2", + value = "helm_plate_a_01crusader_wom.m2", }, { - fileId = "141445", - text = "helm_robe_c_03_hum.m2", - value = "helm_robe_c_03_hum.m2", + fileId = "140263", + text = "helm_plate_a_02ironforgeguard_bef.m2", + value = "helm_plate_a_02ironforgeguard_bef.m2", }, { - fileId = "141446", - text = "helm_robe_c_03_nif.m2", - value = "helm_robe_c_03_nif.m2", + fileId = "140264", + text = "helm_plate_a_02ironforgeguard_bem.m2", + value = "helm_plate_a_02ironforgeguard_bem.m2", }, { - fileId = "141447", - text = "helm_robe_c_03_nim.m2", - value = "helm_robe_c_03_nim.m2", + fileId = "140265", + text = "helm_plate_a_02ironforgeguard_drf.m2", + value = "helm_plate_a_02ironforgeguard_drf.m2", }, { - fileId = "141448", - text = "helm_robe_c_03_orf.m2", - value = "helm_robe_c_03_orf.m2", + fileId = "140266", + text = "helm_plate_a_02ironforgeguard_drm.m2", + value = "helm_plate_a_02ironforgeguard_drm.m2", }, { - fileId = "141449", - text = "helm_robe_c_03_orm.m2", - value = "helm_robe_c_03_orm.m2", + fileId = "140267", + text = "helm_plate_a_02ironforgeguard_dwf.m2", + value = "helm_plate_a_02ironforgeguard_dwf.m2", }, { - fileId = "141450", - text = "helm_robe_c_03_scf.m2", - value = "helm_robe_c_03_scf.m2", + fileId = "140268", + text = "helm_plate_a_02ironforgeguard_dwm.m2", + value = "helm_plate_a_02ironforgeguard_dwm.m2", }, { - fileId = "141451", - text = "helm_robe_c_03_scm.m2", - value = "helm_robe_c_03_scm.m2", + fileId = "140269", + text = "helm_plate_a_02ironforgeguard_gnf.m2", + value = "helm_plate_a_02ironforgeguard_gnf.m2", }, { - fileId = "141452", - text = "helm_robe_c_03_taf.m2", - value = "helm_robe_c_03_taf.m2", + fileId = "140270", + text = "helm_plate_a_02ironforgeguard_gnm.m2", + value = "helm_plate_a_02ironforgeguard_gnm.m2", }, { - fileId = "141453", - text = "helm_robe_c_03_tam.m2", - value = "helm_robe_c_03_tam.m2", + fileId = "140271", + text = "helm_plate_a_02ironforgeguard_gof.m2", + value = "helm_plate_a_02ironforgeguard_gof.m2", }, { - fileId = "141454", - text = "helm_robe_c_03_trf.m2", - value = "helm_robe_c_03_trf.m2", + fileId = "436648", + text = "helm_plate_a_02ironforgeguard_gom.m2", + value = "helm_plate_a_02ironforgeguard_gom.m2", }, { - fileId = "141455", - text = "helm_robe_c_03_trm.m2", - value = "helm_robe_c_03_trm.m2", + fileId = "140272", + text = "helm_plate_a_02ironforgeguard_huf.m2", + value = "helm_plate_a_02ironforgeguard_huf.m2", }, { - fileId = "141458", - text = "helm_robe_c_04_bef.m2", - value = "helm_robe_c_04_bef.m2", + fileId = "140273", + text = "helm_plate_a_02ironforgeguard_hum.m2", + value = "helm_plate_a_02ironforgeguard_hum.m2", }, { - fileId = "141459", - text = "helm_robe_c_04_bem.m2", - value = "helm_robe_c_04_bem.m2", + fileId = "140274", + text = "helm_plate_a_02ironforgeguard_nif.m2", + value = "helm_plate_a_02ironforgeguard_nif.m2", }, { - fileId = "141460", - text = "helm_robe_c_04_drf.m2", - value = "helm_robe_c_04_drf.m2", + fileId = "140275", + text = "helm_plate_a_02ironforgeguard_nim.m2", + value = "helm_plate_a_02ironforgeguard_nim.m2", }, { - fileId = "141461", - text = "helm_robe_c_04_drm.m2", - value = "helm_robe_c_04_drm.m2", + fileId = "140276", + text = "helm_plate_a_02ironforgeguard_orf.m2", + value = "helm_plate_a_02ironforgeguard_orf.m2", }, { - fileId = "141462", - text = "helm_robe_c_04_dwf.m2", - value = "helm_robe_c_04_dwf.m2", + fileId = "140277", + text = "helm_plate_a_02ironforgeguard_orm.m2", + value = "helm_plate_a_02ironforgeguard_orm.m2", }, { - fileId = "141463", - text = "helm_robe_c_04_dwm.m2", - value = "helm_robe_c_04_dwm.m2", + fileId = "140278", + text = "helm_plate_a_02ironforgeguard_scf.m2", + value = "helm_plate_a_02ironforgeguard_scf.m2", }, { - fileId = "141464", - text = "helm_robe_c_04_gnf.m2", - value = "helm_robe_c_04_gnf.m2", + fileId = "140279", + text = "helm_plate_a_02ironforgeguard_scm.m2", + value = "helm_plate_a_02ironforgeguard_scm.m2", }, { - fileId = "141465", - text = "helm_robe_c_04_gnm.m2", - value = "helm_robe_c_04_gnm.m2", + fileId = "140280", + text = "helm_plate_a_02ironforgeguard_taf.m2", + value = "helm_plate_a_02ironforgeguard_taf.m2", }, { - fileId = "141466", - text = "helm_robe_c_04_gof.m2", - value = "helm_robe_c_04_gof.m2", + fileId = "140281", + text = "helm_plate_a_02ironforgeguard_tam.m2", + value = "helm_plate_a_02ironforgeguard_tam.m2", }, { - fileId = "141467", - text = "helm_robe_c_04_gom.m2", - value = "helm_robe_c_04_gom.m2", + fileId = "140282", + text = "helm_plate_a_02ironforgeguard_trf.m2", + value = "helm_plate_a_02ironforgeguard_trf.m2", }, { - fileId = "141468", - text = "helm_robe_c_04_huf.m2", - value = "helm_robe_c_04_huf.m2", + fileId = "140283", + text = "helm_plate_a_02ironforgeguard_trm.m2", + value = "helm_plate_a_02ironforgeguard_trm.m2", }, { - fileId = "141469", - text = "helm_robe_c_04_hum.m2", - value = "helm_robe_c_04_hum.m2", + fileId = "454498", + text = "helm_plate_a_02ironforgeguard_wof.m2", + value = "helm_plate_a_02ironforgeguard_wof.m2", }, { - fileId = "141470", - text = "helm_robe_c_04_nif.m2", - value = "helm_robe_c_04_nif.m2", + fileId = "436649", + text = "helm_plate_a_02ironforgeguard_wom.m2", + value = "helm_plate_a_02ironforgeguard_wom.m2", }, { - fileId = "141471", - text = "helm_robe_c_04_nim.m2", - value = "helm_robe_c_04_nim.m2", + fileId = "140285", + text = "helm_plate_ahnqiraj_a_01_bef.m2", + value = "helm_plate_ahnqiraj_a_01_bef.m2", }, { - fileId = "141472", - text = "helm_robe_c_04_orf.m2", - value = "helm_robe_c_04_orf.m2", + fileId = "140286", + text = "helm_plate_ahnqiraj_a_01_bem.m2", + value = "helm_plate_ahnqiraj_a_01_bem.m2", }, { - fileId = "141473", - text = "helm_robe_c_04_orm.m2", - value = "helm_robe_c_04_orm.m2", + fileId = "140287", + text = "helm_plate_ahnqiraj_a_01_drf.m2", + value = "helm_plate_ahnqiraj_a_01_drf.m2", }, { - fileId = "141474", - text = "helm_robe_c_04_scf.m2", - value = "helm_robe_c_04_scf.m2", + fileId = "140288", + text = "helm_plate_ahnqiraj_a_01_drm.m2", + value = "helm_plate_ahnqiraj_a_01_drm.m2", }, { - fileId = "141475", - text = "helm_robe_c_04_scm.m2", - value = "helm_robe_c_04_scm.m2", + fileId = "140289", + text = "helm_plate_ahnqiraj_a_01_dwf.m2", + value = "helm_plate_ahnqiraj_a_01_dwf.m2", }, { - fileId = "141476", - text = "helm_robe_c_04_taf.m2", - value = "helm_robe_c_04_taf.m2", + fileId = "140290", + text = "helm_plate_ahnqiraj_a_01_dwm.m2", + value = "helm_plate_ahnqiraj_a_01_dwm.m2", }, { - fileId = "141477", - text = "helm_robe_c_04_tam.m2", - value = "helm_robe_c_04_tam.m2", + fileId = "140291", + text = "helm_plate_ahnqiraj_a_01_gnf.m2", + value = "helm_plate_ahnqiraj_a_01_gnf.m2", }, { - fileId = "141478", - text = "helm_robe_c_04_trf.m2", - value = "helm_robe_c_04_trf.m2", + fileId = "140292", + text = "helm_plate_ahnqiraj_a_01_gnm.m2", + value = "helm_plate_ahnqiraj_a_01_gnm.m2", }, { - fileId = "141479", - text = "helm_robe_c_04_trm.m2", - value = "helm_robe_c_04_trm.m2", + fileId = "140293", + text = "helm_plate_ahnqiraj_a_01_gof.m2", + value = "helm_plate_ahnqiraj_a_01_gof.m2", }, { - fileId = "141483", - text = "helm_robe_d_04_bef.m2", - value = "helm_robe_d_04_bef.m2", + fileId = "140294", + text = "helm_plate_ahnqiraj_a_01_gom.m2", + value = "helm_plate_ahnqiraj_a_01_gom.m2", }, { - fileId = "141484", - text = "helm_robe_d_04_bem.m2", - value = "helm_robe_d_04_bem.m2", + fileId = "140295", + text = "helm_plate_ahnqiraj_a_01_huf.m2", + value = "helm_plate_ahnqiraj_a_01_huf.m2", }, { - fileId = "141485", - text = "helm_robe_d_04_drf.m2", - value = "helm_robe_d_04_drf.m2", + fileId = "140296", + text = "helm_plate_ahnqiraj_a_01_hum.m2", + value = "helm_plate_ahnqiraj_a_01_hum.m2", }, { - fileId = "141486", - text = "helm_robe_d_04_drm.m2", - value = "helm_robe_d_04_drm.m2", + fileId = "140297", + text = "helm_plate_ahnqiraj_a_01_nif.m2", + value = "helm_plate_ahnqiraj_a_01_nif.m2", }, { - fileId = "141487", - text = "helm_robe_d_04_dwf.m2", - value = "helm_robe_d_04_dwf.m2", + fileId = "140298", + text = "helm_plate_ahnqiraj_a_01_nim.m2", + value = "helm_plate_ahnqiraj_a_01_nim.m2", }, { - fileId = "141488", - text = "helm_robe_d_04_dwm.m2", - value = "helm_robe_d_04_dwm.m2", + fileId = "140299", + text = "helm_plate_ahnqiraj_a_01_orf.m2", + value = "helm_plate_ahnqiraj_a_01_orf.m2", }, { - fileId = "141489", - text = "helm_robe_d_04_gnf.m2", - value = "helm_robe_d_04_gnf.m2", + fileId = "140300", + text = "helm_plate_ahnqiraj_a_01_orm.m2", + value = "helm_plate_ahnqiraj_a_01_orm.m2", }, { - fileId = "141490", - text = "helm_robe_d_04_gnm.m2", - value = "helm_robe_d_04_gnm.m2", + fileId = "140301", + text = "helm_plate_ahnqiraj_a_01_scf.m2", + value = "helm_plate_ahnqiraj_a_01_scf.m2", }, { - fileId = "141491", - text = "helm_robe_d_04_gof.m2", - value = "helm_robe_d_04_gof.m2", + fileId = "140302", + text = "helm_plate_ahnqiraj_a_01_scm.m2", + value = "helm_plate_ahnqiraj_a_01_scm.m2", }, { - fileId = "141492", - text = "helm_robe_d_04_gom.m2", - value = "helm_robe_d_04_gom.m2", + fileId = "140303", + text = "helm_plate_ahnqiraj_a_01_taf.m2", + value = "helm_plate_ahnqiraj_a_01_taf.m2", }, { - fileId = "141493", - text = "helm_robe_d_04_huf.m2", - value = "helm_robe_d_04_huf.m2", + fileId = "140304", + text = "helm_plate_ahnqiraj_a_01_tam.m2", + value = "helm_plate_ahnqiraj_a_01_tam.m2", }, { - fileId = "141494", - text = "helm_robe_d_04_hum.m2", - value = "helm_robe_d_04_hum.m2", + fileId = "140305", + text = "helm_plate_ahnqiraj_a_01_trf.m2", + value = "helm_plate_ahnqiraj_a_01_trf.m2", }, { - fileId = "141495", - text = "helm_robe_d_04_nif.m2", - value = "helm_robe_d_04_nif.m2", + fileId = "140306", + text = "helm_plate_ahnqiraj_a_01_trm.m2", + value = "helm_plate_ahnqiraj_a_01_trm.m2", }, { - fileId = "141496", - text = "helm_robe_d_04_nim.m2", - value = "helm_robe_d_04_nim.m2", + fileId = "454495", + text = "helm_plate_ahnqiraj_a_01_wof.m2", + value = "helm_plate_ahnqiraj_a_01_wof.m2", }, { - fileId = "141497", - text = "helm_robe_d_04_orf.m2", - value = "helm_robe_d_04_orf.m2", + fileId = "436645", + text = "helm_plate_ahnqiraj_a_01_wom.m2", + value = "helm_plate_ahnqiraj_a_01_wom.m2", }, { - fileId = "141498", - text = "helm_robe_d_04_orm.m2", - value = "helm_robe_d_04_orm.m2", + fileId = "311722", + text = "helm_plate_argentalliance_d_01_bef.m2", + value = "helm_plate_argentalliance_d_01_bef.m2", }, { - fileId = "141499", - text = "helm_robe_d_04_scf.m2", - value = "helm_robe_d_04_scf.m2", + fileId = "311723", + text = "helm_plate_argentalliance_d_01_bem.m2", + value = "helm_plate_argentalliance_d_01_bem.m2", }, { - fileId = "141500", - text = "helm_robe_d_04_scm.m2", - value = "helm_robe_d_04_scm.m2", + fileId = "311724", + text = "helm_plate_argentalliance_d_01_drf.m2", + value = "helm_plate_argentalliance_d_01_drf.m2", }, { - fileId = "141501", - text = "helm_robe_d_04_taf.m2", - value = "helm_robe_d_04_taf.m2", + fileId = "311725", + text = "helm_plate_argentalliance_d_01_drm.m2", + value = "helm_plate_argentalliance_d_01_drm.m2", }, { - fileId = "141502", - text = "helm_robe_d_04_tam.m2", - value = "helm_robe_d_04_tam.m2", + fileId = "311726", + text = "helm_plate_argentalliance_d_01_dwf.m2", + value = "helm_plate_argentalliance_d_01_dwf.m2", }, { - fileId = "141503", - text = "helm_robe_d_04_trf.m2", - value = "helm_robe_d_04_trf.m2", + fileId = "311727", + text = "helm_plate_argentalliance_d_01_dwm.m2", + value = "helm_plate_argentalliance_d_01_dwm.m2", }, { - fileId = "141504", - text = "helm_robe_d_04_trm.m2", - value = "helm_robe_d_04_trm.m2", + fileId = "311728", + text = "helm_plate_argentalliance_d_01_gnf.m2", + value = "helm_plate_argentalliance_d_01_gnf.m2", }, { - fileId = "141505", - text = "helm_robe_dungeonmage_a_01_bef.m2", - value = "helm_robe_dungeonmage_a_01_bef.m2", + fileId = "311729", + text = "helm_plate_argentalliance_d_01_gnm.m2", + value = "helm_plate_argentalliance_d_01_gnm.m2", }, { - fileId = "141506", - text = "helm_robe_dungeonmage_a_01_bem.m2", - value = "helm_robe_dungeonmage_a_01_bem.m2", + fileId = "311730", + text = "helm_plate_argentalliance_d_01_gof.m2", + value = "helm_plate_argentalliance_d_01_gof.m2", }, { - fileId = "141507", - text = "helm_robe_dungeonmage_a_01_drf.m2", - value = "helm_robe_dungeonmage_a_01_drf.m2", + fileId = "311731", + text = "helm_plate_argentalliance_d_01_gom.m2", + value = "helm_plate_argentalliance_d_01_gom.m2", }, { - fileId = "141508", - text = "helm_robe_dungeonmage_a_01_drm.m2", - value = "helm_robe_dungeonmage_a_01_drm.m2", + fileId = "311732", + text = "helm_plate_argentalliance_d_01_huf.m2", + value = "helm_plate_argentalliance_d_01_huf.m2", }, { - fileId = "141509", - text = "helm_robe_dungeonmage_a_01_dwf.m2", - value = "helm_robe_dungeonmage_a_01_dwf.m2", + fileId = "311733", + text = "helm_plate_argentalliance_d_01_hum.m2", + value = "helm_plate_argentalliance_d_01_hum.m2", }, { - fileId = "141510", - text = "helm_robe_dungeonmage_a_01_dwm.m2", - value = "helm_robe_dungeonmage_a_01_dwm.m2", + fileId = "311734", + text = "helm_plate_argentalliance_d_01_nif.m2", + value = "helm_plate_argentalliance_d_01_nif.m2", }, { - fileId = "141511", - text = "helm_robe_dungeonmage_a_01_gnf.m2", - value = "helm_robe_dungeonmage_a_01_gnf.m2", + fileId = "311735", + text = "helm_plate_argentalliance_d_01_nim.m2", + value = "helm_plate_argentalliance_d_01_nim.m2", }, { - fileId = "141512", - text = "helm_robe_dungeonmage_a_01_gnm.m2", - value = "helm_robe_dungeonmage_a_01_gnm.m2", + fileId = "311736", + text = "helm_plate_argentalliance_d_01_orf.m2", + value = "helm_plate_argentalliance_d_01_orf.m2", }, { - fileId = "141513", - text = "helm_robe_dungeonmage_a_01_gof.m2", - value = "helm_robe_dungeonmage_a_01_gof.m2", + fileId = "311737", + text = "helm_plate_argentalliance_d_01_orm.m2", + value = "helm_plate_argentalliance_d_01_orm.m2", }, { - fileId = "141514", - text = "helm_robe_dungeonmage_a_01_gom.m2", - value = "helm_robe_dungeonmage_a_01_gom.m2", + fileId = "311738", + text = "helm_plate_argentalliance_d_01_scf.m2", + value = "helm_plate_argentalliance_d_01_scf.m2", }, { - fileId = "141515", - text = "helm_robe_dungeonmage_a_01_huf.m2", - value = "helm_robe_dungeonmage_a_01_huf.m2", + fileId = "311739", + text = "helm_plate_argentalliance_d_01_scm.m2", + value = "helm_plate_argentalliance_d_01_scm.m2", }, { - fileId = "141516", - text = "helm_robe_dungeonmage_a_01_hum.m2", - value = "helm_robe_dungeonmage_a_01_hum.m2", + fileId = "311748", + text = "helm_plate_argentalliance_d_01_taf.m2", + value = "helm_plate_argentalliance_d_01_taf.m2", }, { - fileId = "141517", - text = "helm_robe_dungeonmage_a_01_nif.m2", - value = "helm_robe_dungeonmage_a_01_nif.m2", + fileId = "311749", + text = "helm_plate_argentalliance_d_01_tam.m2", + value = "helm_plate_argentalliance_d_01_tam.m2", }, { - fileId = "141518", - text = "helm_robe_dungeonmage_a_01_nim.m2", - value = "helm_robe_dungeonmage_a_01_nim.m2", + fileId = "311750", + text = "helm_plate_argentalliance_d_01_trf.m2", + value = "helm_plate_argentalliance_d_01_trf.m2", }, { - fileId = "141519", - text = "helm_robe_dungeonmage_a_01_orf.m2", - value = "helm_robe_dungeonmage_a_01_orf.m2", + fileId = "311751", + text = "helm_plate_argentalliance_d_01_trm.m2", + value = "helm_plate_argentalliance_d_01_trm.m2", }, { - fileId = "141520", - text = "helm_robe_dungeonmage_a_01_orm.m2", - value = "helm_robe_dungeonmage_a_01_orm.m2", + fileId = "404173", + text = "helm_plate_argentalliance_d_01_wof.m2", + value = "helm_plate_argentalliance_d_01_wof.m2", }, { - fileId = "141521", - text = "helm_robe_dungeonmage_a_01_scf.m2", - value = "helm_robe_dungeonmage_a_01_scf.m2", + fileId = "404174", + text = "helm_plate_argentalliance_d_01_wom.m2", + value = "helm_plate_argentalliance_d_01_wom.m2", }, { - fileId = "141522", - text = "helm_robe_dungeonmage_a_01_scm.m2", - value = "helm_robe_dungeonmage_a_01_scm.m2", + fileId = "315669", + text = "helm_plate_argenthorde_d_01_bef.m2", + value = "helm_plate_argenthorde_d_01_bef.m2", }, { - fileId = "141523", - text = "helm_robe_dungeonmage_a_01_taf.m2", - value = "helm_robe_dungeonmage_a_01_taf.m2", + fileId = "315670", + text = "helm_plate_argenthorde_d_01_bem.m2", + value = "helm_plate_argenthorde_d_01_bem.m2", }, { - fileId = "141524", - text = "helm_robe_dungeonmage_a_01_tam.m2", - value = "helm_robe_dungeonmage_a_01_tam.m2", + fileId = "315671", + text = "helm_plate_argenthorde_d_01_drf.m2", + value = "helm_plate_argenthorde_d_01_drf.m2", }, { - fileId = "141525", - text = "helm_robe_dungeonmage_a_01_trf.m2", - value = "helm_robe_dungeonmage_a_01_trf.m2", + fileId = "315672", + text = "helm_plate_argenthorde_d_01_drm.m2", + value = "helm_plate_argenthorde_d_01_drm.m2", }, { - fileId = "141526", - text = "helm_robe_dungeonmage_a_01_trm.m2", - value = "helm_robe_dungeonmage_a_01_trm.m2", + fileId = "315673", + text = "helm_plate_argenthorde_d_01_dwf.m2", + value = "helm_plate_argenthorde_d_01_dwf.m2", }, { - fileId = "141532", - text = "helm_robe_dungeonmage_b_01_bef.m2", - value = "helm_robe_dungeonmage_b_01_bef.m2", + fileId = "315674", + text = "helm_plate_argenthorde_d_01_dwm.m2", + value = "helm_plate_argenthorde_d_01_dwm.m2", }, { - fileId = "141533", - text = "helm_robe_dungeonmage_b_01_bem.m2", - value = "helm_robe_dungeonmage_b_01_bem.m2", + fileId = "315675", + text = "helm_plate_argenthorde_d_01_gnf.m2", + value = "helm_plate_argenthorde_d_01_gnf.m2", }, { - fileId = "141534", - text = "helm_robe_dungeonmage_b_01_drf.m2", - value = "helm_robe_dungeonmage_b_01_drf.m2", + fileId = "315676", + text = "helm_plate_argenthorde_d_01_gnm.m2", + value = "helm_plate_argenthorde_d_01_gnm.m2", }, { - fileId = "141535", - text = "helm_robe_dungeonmage_b_01_drm.m2", - value = "helm_robe_dungeonmage_b_01_drm.m2", + fileId = "315677", + text = "helm_plate_argenthorde_d_01_gof.m2", + value = "helm_plate_argenthorde_d_01_gof.m2", }, { - fileId = "141536", - text = "helm_robe_dungeonmage_b_01_dwf.m2", - value = "helm_robe_dungeonmage_b_01_dwf.m2", + fileId = "315678", + text = "helm_plate_argenthorde_d_01_gom.m2", + value = "helm_plate_argenthorde_d_01_gom.m2", }, { - fileId = "141537", - text = "helm_robe_dungeonmage_b_01_dwm.m2", - value = "helm_robe_dungeonmage_b_01_dwm.m2", + fileId = "315679", + text = "helm_plate_argenthorde_d_01_huf.m2", + value = "helm_plate_argenthorde_d_01_huf.m2", }, { - fileId = "141538", - text = "helm_robe_dungeonmage_b_01_gnf.m2", - value = "helm_robe_dungeonmage_b_01_gnf.m2", + fileId = "315680", + text = "helm_plate_argenthorde_d_01_hum.m2", + value = "helm_plate_argenthorde_d_01_hum.m2", }, { - fileId = "141539", - text = "helm_robe_dungeonmage_b_01_gnm.m2", - value = "helm_robe_dungeonmage_b_01_gnm.m2", + fileId = "315681", + text = "helm_plate_argenthorde_d_01_nif.m2", + value = "helm_plate_argenthorde_d_01_nif.m2", }, { - fileId = "141540", - text = "helm_robe_dungeonmage_b_01_gof.m2", - value = "helm_robe_dungeonmage_b_01_gof.m2", + fileId = "315682", + text = "helm_plate_argenthorde_d_01_nim.m2", + value = "helm_plate_argenthorde_d_01_nim.m2", }, { - fileId = "141541", - text = "helm_robe_dungeonmage_b_01_gom.m2", - value = "helm_robe_dungeonmage_b_01_gom.m2", + fileId = "315683", + text = "helm_plate_argenthorde_d_01_orf.m2", + value = "helm_plate_argenthorde_d_01_orf.m2", }, { - fileId = "141542", - text = "helm_robe_dungeonmage_b_01_huf.m2", - value = "helm_robe_dungeonmage_b_01_huf.m2", + fileId = "315684", + text = "helm_plate_argenthorde_d_01_orm.m2", + value = "helm_plate_argenthorde_d_01_orm.m2", }, { - fileId = "141543", - text = "helm_robe_dungeonmage_b_01_hum.m2", - value = "helm_robe_dungeonmage_b_01_hum.m2", + fileId = "315685", + text = "helm_plate_argenthorde_d_01_scf.m2", + value = "helm_plate_argenthorde_d_01_scf.m2", }, { - fileId = "141544", - text = "helm_robe_dungeonmage_b_01_nif.m2", - value = "helm_robe_dungeonmage_b_01_nif.m2", + fileId = "315686", + text = "helm_plate_argenthorde_d_01_scm.m2", + value = "helm_plate_argenthorde_d_01_scm.m2", }, { - fileId = "141545", - text = "helm_robe_dungeonmage_b_01_nim.m2", - value = "helm_robe_dungeonmage_b_01_nim.m2", + fileId = "315687", + text = "helm_plate_argenthorde_d_01_taf.m2", + value = "helm_plate_argenthorde_d_01_taf.m2", }, { - fileId = "141546", - text = "helm_robe_dungeonmage_b_01_orf.m2", - value = "helm_robe_dungeonmage_b_01_orf.m2", + fileId = "315688", + text = "helm_plate_argenthorde_d_01_tam.m2", + value = "helm_plate_argenthorde_d_01_tam.m2", }, { - fileId = "141547", - text = "helm_robe_dungeonmage_b_01_orm.m2", - value = "helm_robe_dungeonmage_b_01_orm.m2", + fileId = "315689", + text = "helm_plate_argenthorde_d_01_trf.m2", + value = "helm_plate_argenthorde_d_01_trf.m2", }, { - fileId = "141548", - text = "helm_robe_dungeonmage_b_01_scf.m2", - value = "helm_robe_dungeonmage_b_01_scf.m2", + fileId = "315690", + text = "helm_plate_argenthorde_d_01_trm.m2", + value = "helm_plate_argenthorde_d_01_trm.m2", }, { - fileId = "141549", - text = "helm_robe_dungeonmage_b_01_scm.m2", - value = "helm_robe_dungeonmage_b_01_scm.m2", + fileId = "454496", + text = "helm_plate_argenthorde_d_01_wof.m2", + value = "helm_plate_argenthorde_d_01_wof.m2", }, { - fileId = "141550", - text = "helm_robe_dungeonmage_b_01_taf.m2", - value = "helm_robe_dungeonmage_b_01_taf.m2", + fileId = "436646", + text = "helm_plate_argenthorde_d_01_wom.m2", + value = "helm_plate_argenthorde_d_01_wom.m2", }, { - fileId = "141551", - text = "helm_robe_dungeonmage_b_01_tam.m2", - value = "helm_robe_dungeonmage_b_01_tam.m2", + fileId = "140315", + text = "helm_plate_b_01stormwind_bef.m2", + value = "helm_plate_b_01stormwind_bef.m2", }, { - fileId = "141552", - text = "helm_robe_dungeonmage_b_01_trf.m2", - value = "helm_robe_dungeonmage_b_01_trf.m2", + fileId = "140316", + text = "helm_plate_b_01stormwind_bem.m2", + value = "helm_plate_b_01stormwind_bem.m2", }, { - fileId = "141553", - text = "helm_robe_dungeonmage_b_01_trm.m2", - value = "helm_robe_dungeonmage_b_01_trm.m2", + fileId = "140317", + text = "helm_plate_b_01stormwind_drf.m2", + value = "helm_plate_b_01stormwind_drf.m2", }, { - fileId = "141558", - text = "helm_robe_dungeonpriest_a_01_bef.m2", - value = "helm_robe_dungeonpriest_a_01_bef.m2", + fileId = "140318", + text = "helm_plate_b_01stormwind_drm.m2", + value = "helm_plate_b_01stormwind_drm.m2", }, { - fileId = "141559", - text = "helm_robe_dungeonpriest_a_01_bem.m2", - value = "helm_robe_dungeonpriest_a_01_bem.m2", + fileId = "140319", + text = "helm_plate_b_01stormwind_dwf.m2", + value = "helm_plate_b_01stormwind_dwf.m2", }, { - fileId = "141560", - text = "helm_robe_dungeonpriest_a_01_drf.m2", - value = "helm_robe_dungeonpriest_a_01_drf.m2", + fileId = "140320", + text = "helm_plate_b_01stormwind_dwm.m2", + value = "helm_plate_b_01stormwind_dwm.m2", }, { - fileId = "141561", - text = "helm_robe_dungeonpriest_a_01_drm.m2", - value = "helm_robe_dungeonpriest_a_01_drm.m2", + fileId = "140321", + text = "helm_plate_b_01stormwind_gnf.m2", + value = "helm_plate_b_01stormwind_gnf.m2", }, { - fileId = "141562", - text = "helm_robe_dungeonpriest_a_01_dwf.m2", - value = "helm_robe_dungeonpriest_a_01_dwf.m2", + fileId = "140322", + text = "helm_plate_b_01stormwind_gnm.m2", + value = "helm_plate_b_01stormwind_gnm.m2", }, { - fileId = "141563", - text = "helm_robe_dungeonpriest_a_01_dwm.m2", - value = "helm_robe_dungeonpriest_a_01_dwm.m2", + fileId = "140323", + text = "helm_plate_b_01stormwind_gof.m2", + value = "helm_plate_b_01stormwind_gof.m2", }, { - fileId = "141564", - text = "helm_robe_dungeonpriest_a_01_gnf.m2", - value = "helm_robe_dungeonpriest_a_01_gnf.m2", + fileId = "140324", + text = "helm_plate_b_01stormwind_gom.m2", + value = "helm_plate_b_01stormwind_gom.m2", }, { - fileId = "141565", - text = "helm_robe_dungeonpriest_a_01_gnm.m2", - value = "helm_robe_dungeonpriest_a_01_gnm.m2", + fileId = "140325", + text = "helm_plate_b_01stormwind_huf.m2", + value = "helm_plate_b_01stormwind_huf.m2", }, { - fileId = "141566", - text = "helm_robe_dungeonpriest_a_01_gof.m2", - value = "helm_robe_dungeonpriest_a_01_gof.m2", + fileId = "140326", + text = "helm_plate_b_01stormwind_hum.m2", + value = "helm_plate_b_01stormwind_hum.m2", }, { - fileId = "141567", - text = "helm_robe_dungeonpriest_a_01_gom.m2", - value = "helm_robe_dungeonpriest_a_01_gom.m2", + fileId = "140327", + text = "helm_plate_b_01stormwind_nif.m2", + value = "helm_plate_b_01stormwind_nif.m2", }, { - fileId = "141568", - text = "helm_robe_dungeonpriest_a_01_huf.m2", - value = "helm_robe_dungeonpriest_a_01_huf.m2", + fileId = "140328", + text = "helm_plate_b_01stormwind_nim.m2", + value = "helm_plate_b_01stormwind_nim.m2", }, { - fileId = "141569", - text = "helm_robe_dungeonpriest_a_01_hum.m2", - value = "helm_robe_dungeonpriest_a_01_hum.m2", + fileId = "140329", + text = "helm_plate_b_01stormwind_orf.m2", + value = "helm_plate_b_01stormwind_orf.m2", }, { - fileId = "141570", - text = "helm_robe_dungeonpriest_a_01_nif.m2", - value = "helm_robe_dungeonpriest_a_01_nif.m2", + fileId = "140330", + text = "helm_plate_b_01stormwind_orm.m2", + value = "helm_plate_b_01stormwind_orm.m2", }, { - fileId = "141571", - text = "helm_robe_dungeonpriest_a_01_nim.m2", - value = "helm_robe_dungeonpriest_a_01_nim.m2", + fileId = "140331", + text = "helm_plate_b_01stormwind_scf.m2", + value = "helm_plate_b_01stormwind_scf.m2", }, { - fileId = "141572", - text = "helm_robe_dungeonpriest_a_01_orf.m2", - value = "helm_robe_dungeonpriest_a_01_orf.m2", + fileId = "140332", + text = "helm_plate_b_01stormwind_scm.m2", + value = "helm_plate_b_01stormwind_scm.m2", }, { - fileId = "141573", - text = "helm_robe_dungeonpriest_a_01_orm.m2", - value = "helm_robe_dungeonpriest_a_01_orm.m2", + fileId = "140333", + text = "helm_plate_b_01stormwind_taf.m2", + value = "helm_plate_b_01stormwind_taf.m2", }, { - fileId = "141574", - text = "helm_robe_dungeonpriest_a_01_scf.m2", - value = "helm_robe_dungeonpriest_a_01_scf.m2", + fileId = "140334", + text = "helm_plate_b_01stormwind_tam.m2", + value = "helm_plate_b_01stormwind_tam.m2", }, { - fileId = "141575", - text = "helm_robe_dungeonpriest_a_01_scm.m2", - value = "helm_robe_dungeonpriest_a_01_scm.m2", + fileId = "140335", + text = "helm_plate_b_01stormwind_trf.m2", + value = "helm_plate_b_01stormwind_trf.m2", }, { - fileId = "141576", - text = "helm_robe_dungeonpriest_a_01_taf.m2", - value = "helm_robe_dungeonpriest_a_01_taf.m2", + fileId = "140336", + text = "helm_plate_b_01stormwind_trm.m2", + value = "helm_plate_b_01stormwind_trm.m2", }, { - fileId = "141577", - text = "helm_robe_dungeonpriest_a_01_tam.m2", - value = "helm_robe_dungeonpriest_a_01_tam.m2", + fileId = "454499", + text = "helm_plate_b_01stormwind_wof.m2", + value = "helm_plate_b_01stormwind_wof.m2", }, { - fileId = "141578", - text = "helm_robe_dungeonpriest_a_01_trf.m2", - value = "helm_robe_dungeonpriest_a_01_trf.m2", + fileId = "436650", + text = "helm_plate_b_01stormwind_wom.m2", + value = "helm_plate_b_01stormwind_wom.m2", }, { - fileId = "141579", - text = "helm_robe_dungeonpriest_a_01_trm.m2", - value = "helm_robe_dungeonpriest_a_01_trm.m2", + fileId = "140340", + text = "helm_plate_b_03sentinel_bef.m2", + value = "helm_plate_b_03sentinel_bef.m2", }, { - fileId = "141585", - text = "helm_robe_dungeonpriest_b_01_bef.m2", - value = "helm_robe_dungeonpriest_b_01_bef.m2", + fileId = "140341", + text = "helm_plate_b_03sentinel_bem.m2", + value = "helm_plate_b_03sentinel_bem.m2", }, { - fileId = "141586", - text = "helm_robe_dungeonpriest_b_01_bem.m2", - value = "helm_robe_dungeonpriest_b_01_bem.m2", + fileId = "140342", + text = "helm_plate_b_03sentinel_drf.m2", + value = "helm_plate_b_03sentinel_drf.m2", }, { - fileId = "141587", - text = "helm_robe_dungeonpriest_b_01_drf.m2", - value = "helm_robe_dungeonpriest_b_01_drf.m2", + fileId = "140343", + text = "helm_plate_b_03sentinel_drm.m2", + value = "helm_plate_b_03sentinel_drm.m2", }, { - fileId = "141588", - text = "helm_robe_dungeonpriest_b_01_drm.m2", - value = "helm_robe_dungeonpriest_b_01_drm.m2", + fileId = "140344", + text = "helm_plate_b_03sentinel_dwf.m2", + value = "helm_plate_b_03sentinel_dwf.m2", }, { - fileId = "141589", - text = "helm_robe_dungeonpriest_b_01_dwf.m2", - value = "helm_robe_dungeonpriest_b_01_dwf.m2", + fileId = "140345", + text = "helm_plate_b_03sentinel_dwm.m2", + value = "helm_plate_b_03sentinel_dwm.m2", }, { - fileId = "141590", - text = "helm_robe_dungeonpriest_b_01_dwm.m2", - value = "helm_robe_dungeonpriest_b_01_dwm.m2", + fileId = "140346", + text = "helm_plate_b_03sentinel_gnf.m2", + value = "helm_plate_b_03sentinel_gnf.m2", }, { - fileId = "141591", - text = "helm_robe_dungeonpriest_b_01_gnf.m2", - value = "helm_robe_dungeonpriest_b_01_gnf.m2", + fileId = "140347", + text = "helm_plate_b_03sentinel_gnm.m2", + value = "helm_plate_b_03sentinel_gnm.m2", }, { - fileId = "141592", - text = "helm_robe_dungeonpriest_b_01_gnm.m2", - value = "helm_robe_dungeonpriest_b_01_gnm.m2", + fileId = "140348", + text = "helm_plate_b_03sentinel_gof.m2", + value = "helm_plate_b_03sentinel_gof.m2", }, { - fileId = "141593", - text = "helm_robe_dungeonpriest_b_01_gof.m2", - value = "helm_robe_dungeonpriest_b_01_gof.m2", + fileId = "140349", + text = "helm_plate_b_03sentinel_gom.m2", + value = "helm_plate_b_03sentinel_gom.m2", }, { - fileId = "141594", - text = "helm_robe_dungeonpriest_b_01_gom.m2", - value = "helm_robe_dungeonpriest_b_01_gom.m2", + fileId = "140350", + text = "helm_plate_b_03sentinel_huf.m2", + value = "helm_plate_b_03sentinel_huf.m2", }, { - fileId = "141595", - text = "helm_robe_dungeonpriest_b_01_huf.m2", - value = "helm_robe_dungeonpriest_b_01_huf.m2", + fileId = "140351", + text = "helm_plate_b_03sentinel_hum.m2", + value = "helm_plate_b_03sentinel_hum.m2", }, { - fileId = "141596", - text = "helm_robe_dungeonpriest_b_01_hum.m2", - value = "helm_robe_dungeonpriest_b_01_hum.m2", + fileId = "140352", + text = "helm_plate_b_03sentinel_nif.m2", + value = "helm_plate_b_03sentinel_nif.m2", }, { - fileId = "141597", - text = "helm_robe_dungeonpriest_b_01_nif.m2", - value = "helm_robe_dungeonpriest_b_01_nif.m2", + fileId = "140353", + text = "helm_plate_b_03sentinel_nim.m2", + value = "helm_plate_b_03sentinel_nim.m2", }, { - fileId = "141598", - text = "helm_robe_dungeonpriest_b_01_nim.m2", - value = "helm_robe_dungeonpriest_b_01_nim.m2", + fileId = "140354", + text = "helm_plate_b_03sentinel_orf.m2", + value = "helm_plate_b_03sentinel_orf.m2", }, { - fileId = "141599", - text = "helm_robe_dungeonpriest_b_01_orf.m2", - value = "helm_robe_dungeonpriest_b_01_orf.m2", + fileId = "140355", + text = "helm_plate_b_03sentinel_orm.m2", + value = "helm_plate_b_03sentinel_orm.m2", }, { - fileId = "141600", - text = "helm_robe_dungeonpriest_b_01_orm.m2", - value = "helm_robe_dungeonpriest_b_01_orm.m2", + fileId = "140356", + text = "helm_plate_b_03sentinel_scf.m2", + value = "helm_plate_b_03sentinel_scf.m2", }, { - fileId = "141601", - text = "helm_robe_dungeonpriest_b_01_scf.m2", - value = "helm_robe_dungeonpriest_b_01_scf.m2", + fileId = "140357", + text = "helm_plate_b_03sentinel_scm.m2", + value = "helm_plate_b_03sentinel_scm.m2", }, { - fileId = "141602", - text = "helm_robe_dungeonpriest_b_01_scm.m2", - value = "helm_robe_dungeonpriest_b_01_scm.m2", + fileId = "140358", + text = "helm_plate_b_03sentinel_taf.m2", + value = "helm_plate_b_03sentinel_taf.m2", }, { - fileId = "141603", - text = "helm_robe_dungeonpriest_b_01_taf.m2", - value = "helm_robe_dungeonpriest_b_01_taf.m2", + fileId = "140359", + text = "helm_plate_b_03sentinel_tam.m2", + value = "helm_plate_b_03sentinel_tam.m2", }, { - fileId = "141604", - text = "helm_robe_dungeonpriest_b_01_tam.m2", - value = "helm_robe_dungeonpriest_b_01_tam.m2", + fileId = "140360", + text = "helm_plate_b_03sentinel_trf.m2", + value = "helm_plate_b_03sentinel_trf.m2", }, { - fileId = "141605", - text = "helm_robe_dungeonpriest_b_01_trf.m2", - value = "helm_robe_dungeonpriest_b_01_trf.m2", + fileId = "140361", + text = "helm_plate_b_03sentinel_trm.m2", + value = "helm_plate_b_03sentinel_trm.m2", }, { - fileId = "141606", - text = "helm_robe_dungeonpriest_b_01_trm.m2", - value = "helm_robe_dungeonpriest_b_01_trm.m2", + fileId = "454200", + text = "helm_plate_b_03sentinel_wof.m2", + value = "helm_plate_b_03sentinel_wof.m2", }, { - fileId = "238255", - text = "helm_robe_dungeonrobe_c_01_bef.m2", - value = "helm_robe_dungeonrobe_c_01_bef.m2", + fileId = "454201", + text = "helm_plate_b_03sentinel_wom.m2", + value = "helm_plate_b_03sentinel_wom.m2", }, { - fileId = "238256", - text = "helm_robe_dungeonrobe_c_01_bem.m2", - value = "helm_robe_dungeonrobe_c_01_bem.m2", + fileId = "140362", + text = "helm_plate_b_04_bef.m2", + value = "helm_plate_b_04_bef.m2", }, { - fileId = "238257", - text = "helm_robe_dungeonrobe_c_01_drf.m2", - value = "helm_robe_dungeonrobe_c_01_drf.m2", + fileId = "140363", + text = "helm_plate_b_04_bem.m2", + value = "helm_plate_b_04_bem.m2", }, { - fileId = "238258", - text = "helm_robe_dungeonrobe_c_01_drm.m2", - value = "helm_robe_dungeonrobe_c_01_drm.m2", + fileId = "140364", + text = "helm_plate_b_04_drf.m2", + value = "helm_plate_b_04_drf.m2", }, { - fileId = "238259", - text = "helm_robe_dungeonrobe_c_01_dwf.m2", - value = "helm_robe_dungeonrobe_c_01_dwf.m2", + fileId = "140365", + text = "helm_plate_b_04_drm.m2", + value = "helm_plate_b_04_drm.m2", }, { - fileId = "238260", - text = "helm_robe_dungeonrobe_c_01_dwm.m2", - value = "helm_robe_dungeonrobe_c_01_dwm.m2", + fileId = "140366", + text = "helm_plate_b_04_dwf.m2", + value = "helm_plate_b_04_dwf.m2", }, { - fileId = "238261", - text = "helm_robe_dungeonrobe_c_01_gnf.m2", - value = "helm_robe_dungeonrobe_c_01_gnf.m2", + fileId = "140367", + text = "helm_plate_b_04_dwm.m2", + value = "helm_plate_b_04_dwm.m2", }, { - fileId = "238262", - text = "helm_robe_dungeonrobe_c_01_gnm.m2", - value = "helm_robe_dungeonrobe_c_01_gnm.m2", + fileId = "140368", + text = "helm_plate_b_04_gnf.m2", + value = "helm_plate_b_04_gnf.m2", }, { - fileId = "238263", - text = "helm_robe_dungeonrobe_c_01_gof.m2", - value = "helm_robe_dungeonrobe_c_01_gof.m2", + fileId = "140369", + text = "helm_plate_b_04_gnm.m2", + value = "helm_plate_b_04_gnm.m2", }, { - fileId = "238264", - text = "helm_robe_dungeonrobe_c_01_gom.m2", - value = "helm_robe_dungeonrobe_c_01_gom.m2", + fileId = "140370", + text = "helm_plate_b_04_gof.m2", + value = "helm_plate_b_04_gof.m2", }, { - fileId = "238265", - text = "helm_robe_dungeonrobe_c_01_huf.m2", - value = "helm_robe_dungeonrobe_c_01_huf.m2", + fileId = "140371", + text = "helm_plate_b_04_gom.m2", + value = "helm_plate_b_04_gom.m2", }, { - fileId = "238266", - text = "helm_robe_dungeonrobe_c_01_hum.m2", - value = "helm_robe_dungeonrobe_c_01_hum.m2", + fileId = "140372", + text = "helm_plate_b_04_huf.m2", + value = "helm_plate_b_04_huf.m2", }, { - fileId = "238267", - text = "helm_robe_dungeonrobe_c_01_nif.m2", - value = "helm_robe_dungeonrobe_c_01_nif.m2", + fileId = "140373", + text = "helm_plate_b_04_hum.m2", + value = "helm_plate_b_04_hum.m2", }, { - fileId = "238268", - text = "helm_robe_dungeonrobe_c_01_nim.m2", - value = "helm_robe_dungeonrobe_c_01_nim.m2", + fileId = "140374", + text = "helm_plate_b_04_nif.m2", + value = "helm_plate_b_04_nif.m2", }, { - fileId = "238269", - text = "helm_robe_dungeonrobe_c_01_orf.m2", - value = "helm_robe_dungeonrobe_c_01_orf.m2", + fileId = "140375", + text = "helm_plate_b_04_nim.m2", + value = "helm_plate_b_04_nim.m2", }, { - fileId = "238270", - text = "helm_robe_dungeonrobe_c_01_orm.m2", - value = "helm_robe_dungeonrobe_c_01_orm.m2", + fileId = "140376", + text = "helm_plate_b_04_orf.m2", + value = "helm_plate_b_04_orf.m2", }, { - fileId = "238271", - text = "helm_robe_dungeonrobe_c_01_scf.m2", - value = "helm_robe_dungeonrobe_c_01_scf.m2", + fileId = "140377", + text = "helm_plate_b_04_orm.m2", + value = "helm_plate_b_04_orm.m2", }, { - fileId = "238272", - text = "helm_robe_dungeonrobe_c_01_scm.m2", - value = "helm_robe_dungeonrobe_c_01_scm.m2", + fileId = "140378", + text = "helm_plate_b_04_scf.m2", + value = "helm_plate_b_04_scf.m2", }, { - fileId = "238273", - text = "helm_robe_dungeonrobe_c_01_taf.m2", - value = "helm_robe_dungeonrobe_c_01_taf.m2", + fileId = "140379", + text = "helm_plate_b_04_scm.m2", + value = "helm_plate_b_04_scm.m2", }, { - fileId = "238274", - text = "helm_robe_dungeonrobe_c_01_tam.m2", - value = "helm_robe_dungeonrobe_c_01_tam.m2", + fileId = "140380", + text = "helm_plate_b_04_taf.m2", + value = "helm_plate_b_04_taf.m2", }, { - fileId = "238275", - text = "helm_robe_dungeonrobe_c_01_trf.m2", - value = "helm_robe_dungeonrobe_c_01_trf.m2", + fileId = "140381", + text = "helm_plate_b_04_tam.m2", + value = "helm_plate_b_04_tam.m2", }, { - fileId = "238276", - text = "helm_robe_dungeonrobe_c_01_trm.m2", - value = "helm_robe_dungeonrobe_c_01_trm.m2", + fileId = "140382", + text = "helm_plate_b_04_trf.m2", + value = "helm_plate_b_04_trf.m2", }, { - fileId = "341465", - text = "helm_robe_dungeonrobe_c_02_bef.m2", - value = "helm_robe_dungeonrobe_c_02_bef.m2", + fileId = "140383", + text = "helm_plate_b_04_trm.m2", + value = "helm_plate_b_04_trm.m2", }, { - fileId = "341466", - text = "helm_robe_dungeonrobe_c_02_bem.m2", - value = "helm_robe_dungeonrobe_c_02_bem.m2", + fileId = "454202", + text = "helm_plate_b_04_wof.m2", + value = "helm_plate_b_04_wof.m2", }, { - fileId = "341467", - text = "helm_robe_dungeonrobe_c_02_drf.m2", - value = "helm_robe_dungeonrobe_c_02_drf.m2", + fileId = "430052", + text = "helm_plate_b_04_wom.m2", + value = "helm_plate_b_04_wom.m2", }, { - fileId = "341468", - text = "helm_robe_dungeonrobe_c_02_drm.m2", - value = "helm_robe_dungeonrobe_c_02_drm.m2", + fileId = "140387", + text = "helm_plate_bloodknight_d_02_bef.m2", + value = "helm_plate_bloodknight_d_02_bef.m2", }, { - fileId = "341469", - text = "helm_robe_dungeonrobe_c_02_dwf.m2", - value = "helm_robe_dungeonrobe_c_02_dwf.m2", + fileId = "140388", + text = "helm_plate_bloodknight_d_02_bem.m2", + value = "helm_plate_bloodknight_d_02_bem.m2", }, { - fileId = "341470", - text = "helm_robe_dungeonrobe_c_02_dwm.m2", - value = "helm_robe_dungeonrobe_c_02_dwm.m2", + fileId = "140389", + text = "helm_plate_bloodknight_d_02_drf.m2", + value = "helm_plate_bloodknight_d_02_drf.m2", }, { - fileId = "341471", - text = "helm_robe_dungeonrobe_c_02_gnf.m2", - value = "helm_robe_dungeonrobe_c_02_gnf.m2", + fileId = "140390", + text = "helm_plate_bloodknight_d_02_drm.m2", + value = "helm_plate_bloodknight_d_02_drm.m2", }, { - fileId = "341472", - text = "helm_robe_dungeonrobe_c_02_gnm.m2", - value = "helm_robe_dungeonrobe_c_02_gnm.m2", - }, + fileId = "140391", + text = "helm_plate_bloodknight_d_02_dwf.m2", + value = "helm_plate_bloodknight_d_02_dwf.m2", + }, { - fileId = "341473", - text = "helm_robe_dungeonrobe_c_02_gof.m2", - value = "helm_robe_dungeonrobe_c_02_gof.m2", + fileId = "140392", + text = "helm_plate_bloodknight_d_02_dwm.m2", + value = "helm_plate_bloodknight_d_02_dwm.m2", }, { - fileId = "341474", - text = "helm_robe_dungeonrobe_c_02_gom.m2", - value = "helm_robe_dungeonrobe_c_02_gom.m2", + fileId = "140393", + text = "helm_plate_bloodknight_d_02_gnf.m2", + value = "helm_plate_bloodknight_d_02_gnf.m2", }, { - fileId = "341475", - text = "helm_robe_dungeonrobe_c_02_huf.m2", - value = "helm_robe_dungeonrobe_c_02_huf.m2", + fileId = "140394", + text = "helm_plate_bloodknight_d_02_gnm.m2", + value = "helm_plate_bloodknight_d_02_gnm.m2", }, { - fileId = "341476", - text = "helm_robe_dungeonrobe_c_02_hum.m2", - value = "helm_robe_dungeonrobe_c_02_hum.m2", + fileId = "140395", + text = "helm_plate_bloodknight_d_02_gof.m2", + value = "helm_plate_bloodknight_d_02_gof.m2", }, { - fileId = "341477", - text = "helm_robe_dungeonrobe_c_02_nif.m2", - value = "helm_robe_dungeonrobe_c_02_nif.m2", + fileId = "140396", + text = "helm_plate_bloodknight_d_02_gom.m2", + value = "helm_plate_bloodknight_d_02_gom.m2", }, { - fileId = "341478", - text = "helm_robe_dungeonrobe_c_02_nim.m2", - value = "helm_robe_dungeonrobe_c_02_nim.m2", + fileId = "140397", + text = "helm_plate_bloodknight_d_02_huf.m2", + value = "helm_plate_bloodknight_d_02_huf.m2", }, { - fileId = "341479", - text = "helm_robe_dungeonrobe_c_02_orf.m2", - value = "helm_robe_dungeonrobe_c_02_orf.m2", + fileId = "140398", + text = "helm_plate_bloodknight_d_02_hum.m2", + value = "helm_plate_bloodknight_d_02_hum.m2", }, { - fileId = "341480", - text = "helm_robe_dungeonrobe_c_02_orm.m2", - value = "helm_robe_dungeonrobe_c_02_orm.m2", + fileId = "140399", + text = "helm_plate_bloodknight_d_02_nif.m2", + value = "helm_plate_bloodknight_d_02_nif.m2", }, { - fileId = "341240", - text = "helm_robe_dungeonrobe_c_02_scf.m2", - value = "helm_robe_dungeonrobe_c_02_scf.m2", + fileId = "140400", + text = "helm_plate_bloodknight_d_02_nim.m2", + value = "helm_plate_bloodknight_d_02_nim.m2", }, { - fileId = "341241", - text = "helm_robe_dungeonrobe_c_02_scm.m2", - value = "helm_robe_dungeonrobe_c_02_scm.m2", + fileId = "140401", + text = "helm_plate_bloodknight_d_02_orf.m2", + value = "helm_plate_bloodknight_d_02_orf.m2", }, { - fileId = "341242", - text = "helm_robe_dungeonrobe_c_02_taf.m2", - value = "helm_robe_dungeonrobe_c_02_taf.m2", + fileId = "140402", + text = "helm_plate_bloodknight_d_02_orm.m2", + value = "helm_plate_bloodknight_d_02_orm.m2", }, { - fileId = "341243", - text = "helm_robe_dungeonrobe_c_02_tam.m2", - value = "helm_robe_dungeonrobe_c_02_tam.m2", + fileId = "140403", + text = "helm_plate_bloodknight_d_02_scf.m2", + value = "helm_plate_bloodknight_d_02_scf.m2", }, { - fileId = "341244", - text = "helm_robe_dungeonrobe_c_02_trf.m2", - value = "helm_robe_dungeonrobe_c_02_trf.m2", + fileId = "140404", + text = "helm_plate_bloodknight_d_02_scm.m2", + value = "helm_plate_bloodknight_d_02_scm.m2", }, { - fileId = "341245", - text = "helm_robe_dungeonrobe_c_02_trm.m2", - value = "helm_robe_dungeonrobe_c_02_trm.m2", + fileId = "140405", + text = "helm_plate_bloodknight_d_02_taf.m2", + value = "helm_plate_bloodknight_d_02_taf.m2", }, { - fileId = "141611", - text = "helm_robe_dungeonwarlock_a_01_bef.m2", - value = "helm_robe_dungeonwarlock_a_01_bef.m2", + fileId = "140406", + text = "helm_plate_bloodknight_d_02_tam.m2", + value = "helm_plate_bloodknight_d_02_tam.m2", }, { - fileId = "141612", - text = "helm_robe_dungeonwarlock_a_01_bem.m2", - value = "helm_robe_dungeonwarlock_a_01_bem.m2", + fileId = "140407", + text = "helm_plate_bloodknight_d_02_trf.m2", + value = "helm_plate_bloodknight_d_02_trf.m2", }, { - fileId = "141613", - text = "helm_robe_dungeonwarlock_a_01_drf.m2", - value = "helm_robe_dungeonwarlock_a_01_drf.m2", + fileId = "140408", + text = "helm_plate_bloodknight_d_02_trm.m2", + value = "helm_plate_bloodknight_d_02_trm.m2", }, { - fileId = "141614", - text = "helm_robe_dungeonwarlock_a_01_drm.m2", - value = "helm_robe_dungeonwarlock_a_01_drm.m2", + fileId = "454199", + text = "helm_plate_bloodknight_d_02_wof.m2", + value = "helm_plate_bloodknight_d_02_wof.m2", }, { - fileId = "141615", - text = "helm_robe_dungeonwarlock_a_01_dwf.m2", - value = "helm_robe_dungeonwarlock_a_01_dwf.m2", + fileId = "430051", + text = "helm_plate_bloodknight_d_02_wom.m2", + value = "helm_plate_bloodknight_d_02_wom.m2", }, { - fileId = "141616", - text = "helm_robe_dungeonwarlock_a_01_dwm.m2", - value = "helm_robe_dungeonwarlock_a_01_dwm.m2", + fileId = "412108", + text = "helm_plate_cataclysm_b_01_bef.m2", + value = "helm_plate_cataclysm_b_01_bef.m2", }, { - fileId = "141617", - text = "helm_robe_dungeonwarlock_a_01_gnf.m2", - value = "helm_robe_dungeonwarlock_a_01_gnf.m2", + fileId = "412109", + text = "helm_plate_cataclysm_b_01_bem.m2", + value = "helm_plate_cataclysm_b_01_bem.m2", }, { - fileId = "141618", - text = "helm_robe_dungeonwarlock_a_01_gnm.m2", - value = "helm_robe_dungeonwarlock_a_01_gnm.m2", + fileId = "412110", + text = "helm_plate_cataclysm_b_01_drf.m2", + value = "helm_plate_cataclysm_b_01_drf.m2", }, { - fileId = "141619", - text = "helm_robe_dungeonwarlock_a_01_gof.m2", - value = "helm_robe_dungeonwarlock_a_01_gof.m2", + fileId = "412111", + text = "helm_plate_cataclysm_b_01_drm.m2", + value = "helm_plate_cataclysm_b_01_drm.m2", }, { - fileId = "141620", - text = "helm_robe_dungeonwarlock_a_01_gom.m2", - value = "helm_robe_dungeonwarlock_a_01_gom.m2", + fileId = "412112", + text = "helm_plate_cataclysm_b_01_dwf.m2", + value = "helm_plate_cataclysm_b_01_dwf.m2", }, { - fileId = "141621", - text = "helm_robe_dungeonwarlock_a_01_huf.m2", - value = "helm_robe_dungeonwarlock_a_01_huf.m2", + fileId = "412113", + text = "helm_plate_cataclysm_b_01_dwm.m2", + value = "helm_plate_cataclysm_b_01_dwm.m2", }, { - fileId = "141622", - text = "helm_robe_dungeonwarlock_a_01_hum.m2", - value = "helm_robe_dungeonwarlock_a_01_hum.m2", + fileId = "412114", + text = "helm_plate_cataclysm_b_01_gnf.m2", + value = "helm_plate_cataclysm_b_01_gnf.m2", }, { - fileId = "141623", - text = "helm_robe_dungeonwarlock_a_01_nif.m2", - value = "helm_robe_dungeonwarlock_a_01_nif.m2", + fileId = "412115", + text = "helm_plate_cataclysm_b_01_gnm.m2", + value = "helm_plate_cataclysm_b_01_gnm.m2", }, { - fileId = "141624", - text = "helm_robe_dungeonwarlock_a_01_nim.m2", - value = "helm_robe_dungeonwarlock_a_01_nim.m2", + fileId = "412116", + text = "helm_plate_cataclysm_b_01_gof.m2", + value = "helm_plate_cataclysm_b_01_gof.m2", }, { - fileId = "141625", - text = "helm_robe_dungeonwarlock_a_01_orf.m2", - value = "helm_robe_dungeonwarlock_a_01_orf.m2", + fileId = "412117", + text = "helm_plate_cataclysm_b_01_gom.m2", + value = "helm_plate_cataclysm_b_01_gom.m2", }, { - fileId = "141626", - text = "helm_robe_dungeonwarlock_a_01_orm.m2", - value = "helm_robe_dungeonwarlock_a_01_orm.m2", + fileId = "412118", + text = "helm_plate_cataclysm_b_01_huf.m2", + value = "helm_plate_cataclysm_b_01_huf.m2", }, { - fileId = "141627", - text = "helm_robe_dungeonwarlock_a_01_scf.m2", - value = "helm_robe_dungeonwarlock_a_01_scf.m2", + fileId = "412119", + text = "helm_plate_cataclysm_b_01_hum.m2", + value = "helm_plate_cataclysm_b_01_hum.m2", }, { - fileId = "141628", - text = "helm_robe_dungeonwarlock_a_01_scm.m2", - value = "helm_robe_dungeonwarlock_a_01_scm.m2", + fileId = "412120", + text = "helm_plate_cataclysm_b_01_nif.m2", + value = "helm_plate_cataclysm_b_01_nif.m2", }, { - fileId = "141629", - text = "helm_robe_dungeonwarlock_a_01_taf.m2", - value = "helm_robe_dungeonwarlock_a_01_taf.m2", + fileId = "412121", + text = "helm_plate_cataclysm_b_01_nim.m2", + value = "helm_plate_cataclysm_b_01_nim.m2", }, { - fileId = "141630", - text = "helm_robe_dungeonwarlock_a_01_tam.m2", - value = "helm_robe_dungeonwarlock_a_01_tam.m2", + fileId = "412122", + text = "helm_plate_cataclysm_b_01_orf.m2", + value = "helm_plate_cataclysm_b_01_orf.m2", }, { - fileId = "141631", - text = "helm_robe_dungeonwarlock_a_01_trf.m2", - value = "helm_robe_dungeonwarlock_a_01_trf.m2", + fileId = "412123", + text = "helm_plate_cataclysm_b_01_orm.m2", + value = "helm_plate_cataclysm_b_01_orm.m2", }, { - fileId = "141632", - text = "helm_robe_dungeonwarlock_a_01_trm.m2", - value = "helm_robe_dungeonwarlock_a_01_trm.m2", + fileId = "412124", + text = "helm_plate_cataclysm_b_01_scf.m2", + value = "helm_plate_cataclysm_b_01_scf.m2", }, { - fileId = "141640", - text = "helm_robe_dungeonwarlock_b_01_bef.m2", - value = "helm_robe_dungeonwarlock_b_01_bef.m2", + fileId = "412125", + text = "helm_plate_cataclysm_b_01_scm.m2", + value = "helm_plate_cataclysm_b_01_scm.m2", }, { - fileId = "141641", - text = "helm_robe_dungeonwarlock_b_01_bem.m2", - value = "helm_robe_dungeonwarlock_b_01_bem.m2", + fileId = "412126", + text = "helm_plate_cataclysm_b_01_taf.m2", + value = "helm_plate_cataclysm_b_01_taf.m2", }, { - fileId = "141642", - text = "helm_robe_dungeonwarlock_b_01_drf.m2", - value = "helm_robe_dungeonwarlock_b_01_drf.m2", + fileId = "412127", + text = "helm_plate_cataclysm_b_01_tam.m2", + value = "helm_plate_cataclysm_b_01_tam.m2", }, { - fileId = "141643", - text = "helm_robe_dungeonwarlock_b_01_drm.m2", - value = "helm_robe_dungeonwarlock_b_01_drm.m2", + fileId = "412128", + text = "helm_plate_cataclysm_b_01_trf.m2", + value = "helm_plate_cataclysm_b_01_trf.m2", }, { - fileId = "141644", - text = "helm_robe_dungeonwarlock_b_01_dwf.m2", - value = "helm_robe_dungeonwarlock_b_01_dwf.m2", + fileId = "412129", + text = "helm_plate_cataclysm_b_01_trm.m2", + value = "helm_plate_cataclysm_b_01_trm.m2", }, { - fileId = "141645", - text = "helm_robe_dungeonwarlock_b_01_dwm.m2", - value = "helm_robe_dungeonwarlock_b_01_dwm.m2", + fileId = "461181", + text = "helm_plate_cataclysm_b_01_wof.m2", + value = "helm_plate_cataclysm_b_01_wof.m2", }, { - fileId = "141646", - text = "helm_robe_dungeonwarlock_b_01_gnf.m2", - value = "helm_robe_dungeonwarlock_b_01_gnf.m2", + fileId = "412130", + text = "helm_plate_cataclysm_b_01_wom.m2", + value = "helm_plate_cataclysm_b_01_wom.m2", }, { - fileId = "141647", - text = "helm_robe_dungeonwarlock_b_01_gnm.m2", - value = "helm_robe_dungeonwarlock_b_01_gnm.m2", + fileId = "463357", + text = "helm_plate_cataclysm_b_02_bef.m2", + value = "helm_plate_cataclysm_b_02_bef.m2", }, { - fileId = "141648", - text = "helm_robe_dungeonwarlock_b_01_gof.m2", - value = "helm_robe_dungeonwarlock_b_01_gof.m2", + fileId = "463358", + text = "helm_plate_cataclysm_b_02_bem.m2", + value = "helm_plate_cataclysm_b_02_bem.m2", }, { - fileId = "141649", - text = "helm_robe_dungeonwarlock_b_01_gom.m2", - value = "helm_robe_dungeonwarlock_b_01_gom.m2", + fileId = "463359", + text = "helm_plate_cataclysm_b_02_drf.m2", + value = "helm_plate_cataclysm_b_02_drf.m2", }, { - fileId = "141650", - text = "helm_robe_dungeonwarlock_b_01_huf.m2", - value = "helm_robe_dungeonwarlock_b_01_huf.m2", + fileId = "463360", + text = "helm_plate_cataclysm_b_02_drm.m2", + value = "helm_plate_cataclysm_b_02_drm.m2", }, { - fileId = "141651", - text = "helm_robe_dungeonwarlock_b_01_hum.m2", - value = "helm_robe_dungeonwarlock_b_01_hum.m2", + fileId = "463361", + text = "helm_plate_cataclysm_b_02_dwf.m2", + value = "helm_plate_cataclysm_b_02_dwf.m2", }, { - fileId = "141652", - text = "helm_robe_dungeonwarlock_b_01_nif.m2", - value = "helm_robe_dungeonwarlock_b_01_nif.m2", + fileId = "463362", + text = "helm_plate_cataclysm_b_02_dwm.m2", + value = "helm_plate_cataclysm_b_02_dwm.m2", }, { - fileId = "141653", - text = "helm_robe_dungeonwarlock_b_01_nim.m2", - value = "helm_robe_dungeonwarlock_b_01_nim.m2", + fileId = "463363", + text = "helm_plate_cataclysm_b_02_gnf.m2", + value = "helm_plate_cataclysm_b_02_gnf.m2", }, { - fileId = "141654", - text = "helm_robe_dungeonwarlock_b_01_orf.m2", - value = "helm_robe_dungeonwarlock_b_01_orf.m2", + fileId = "463364", + text = "helm_plate_cataclysm_b_02_gnm.m2", + value = "helm_plate_cataclysm_b_02_gnm.m2", }, { - fileId = "141655", - text = "helm_robe_dungeonwarlock_b_01_orm.m2", - value = "helm_robe_dungeonwarlock_b_01_orm.m2", + fileId = "463365", + text = "helm_plate_cataclysm_b_02_gof.m2", + value = "helm_plate_cataclysm_b_02_gof.m2", }, { - fileId = "141656", - text = "helm_robe_dungeonwarlock_b_01_scf.m2", - value = "helm_robe_dungeonwarlock_b_01_scf.m2", + fileId = "463366", + text = "helm_plate_cataclysm_b_02_gom.m2", + value = "helm_plate_cataclysm_b_02_gom.m2", }, { - fileId = "141657", - text = "helm_robe_dungeonwarlock_b_01_scm.m2", - value = "helm_robe_dungeonwarlock_b_01_scm.m2", + fileId = "463367", + text = "helm_plate_cataclysm_b_02_huf.m2", + value = "helm_plate_cataclysm_b_02_huf.m2", }, { - fileId = "141658", - text = "helm_robe_dungeonwarlock_b_01_taf.m2", - value = "helm_robe_dungeonwarlock_b_01_taf.m2", + fileId = "463368", + text = "helm_plate_cataclysm_b_02_hum.m2", + value = "helm_plate_cataclysm_b_02_hum.m2", }, { - fileId = "141659", - text = "helm_robe_dungeonwarlock_b_01_tam.m2", - value = "helm_robe_dungeonwarlock_b_01_tam.m2", + fileId = "463369", + text = "helm_plate_cataclysm_b_02_nif.m2", + value = "helm_plate_cataclysm_b_02_nif.m2", }, { - fileId = "141660", - text = "helm_robe_dungeonwarlock_b_01_trf.m2", - value = "helm_robe_dungeonwarlock_b_01_trf.m2", + fileId = "463370", + text = "helm_plate_cataclysm_b_02_nim.m2", + value = "helm_plate_cataclysm_b_02_nim.m2", }, { - fileId = "141661", - text = "helm_robe_dungeonwarlock_b_01_trm.m2", - value = "helm_robe_dungeonwarlock_b_01_trm.m2", + fileId = "463371", + text = "helm_plate_cataclysm_b_02_orf.m2", + value = "helm_plate_cataclysm_b_02_orf.m2", }, { - fileId = "141667", - text = "helm_robe_holiday_summerfest_a_01_bef.m2", - value = "helm_robe_holiday_summerfest_a_01_bef.m2", + fileId = "463372", + text = "helm_plate_cataclysm_b_02_orm.m2", + value = "helm_plate_cataclysm_b_02_orm.m2", }, { - fileId = "141668", - text = "helm_robe_holiday_summerfest_a_01_bem.m2", - value = "helm_robe_holiday_summerfest_a_01_bem.m2", + fileId = "463373", + text = "helm_plate_cataclysm_b_02_scf.m2", + value = "helm_plate_cataclysm_b_02_scf.m2", }, { - fileId = "141669", - text = "helm_robe_holiday_summerfest_a_01_drf.m2", - value = "helm_robe_holiday_summerfest_a_01_drf.m2", + fileId = "463374", + text = "helm_plate_cataclysm_b_02_scm.m2", + value = "helm_plate_cataclysm_b_02_scm.m2", }, { - fileId = "141670", - text = "helm_robe_holiday_summerfest_a_01_drm.m2", - value = "helm_robe_holiday_summerfest_a_01_drm.m2", + fileId = "463375", + text = "helm_plate_cataclysm_b_02_taf.m2", + value = "helm_plate_cataclysm_b_02_taf.m2", }, { - fileId = "141671", - text = "helm_robe_holiday_summerfest_a_01_dwf.m2", - value = "helm_robe_holiday_summerfest_a_01_dwf.m2", + fileId = "463376", + text = "helm_plate_cataclysm_b_02_tam.m2", + value = "helm_plate_cataclysm_b_02_tam.m2", }, { - fileId = "141672", - text = "helm_robe_holiday_summerfest_a_01_dwm.m2", - value = "helm_robe_holiday_summerfest_a_01_dwm.m2", + fileId = "463377", + text = "helm_plate_cataclysm_b_02_trf.m2", + value = "helm_plate_cataclysm_b_02_trf.m2", }, { - fileId = "141673", - text = "helm_robe_holiday_summerfest_a_01_gnf.m2", - value = "helm_robe_holiday_summerfest_a_01_gnf.m2", + fileId = "463378", + text = "helm_plate_cataclysm_b_02_trm.m2", + value = "helm_plate_cataclysm_b_02_trm.m2", }, { - fileId = "141674", - text = "helm_robe_holiday_summerfest_a_01_gnm.m2", - value = "helm_robe_holiday_summerfest_a_01_gnm.m2", + fileId = "463379", + text = "helm_plate_cataclysm_b_02_wof.m2", + value = "helm_plate_cataclysm_b_02_wof.m2", }, { - fileId = "141675", - text = "helm_robe_holiday_summerfest_a_01_gof.m2", - value = "helm_robe_holiday_summerfest_a_01_gof.m2", + fileId = "463380", + text = "helm_plate_cataclysm_b_02_wom.m2", + value = "helm_plate_cataclysm_b_02_wom.m2", }, { - fileId = "141676", - text = "helm_robe_holiday_summerfest_a_01_gom.m2", - value = "helm_robe_holiday_summerfest_a_01_gom.m2", + fileId = "356225", + text = "helm_plate_common_b_01_bef.m2", + value = "helm_plate_common_b_01_bef.m2", }, { - fileId = "141677", - text = "helm_robe_holiday_summerfest_a_01_huf.m2", - value = "helm_robe_holiday_summerfest_a_01_huf.m2", + fileId = "356226", + text = "helm_plate_common_b_01_bem.m2", + value = "helm_plate_common_b_01_bem.m2", }, { - fileId = "141678", - text = "helm_robe_holiday_summerfest_a_01_hum.m2", - value = "helm_robe_holiday_summerfest_a_01_hum.m2", + fileId = "356227", + text = "helm_plate_common_b_01_drf.m2", + value = "helm_plate_common_b_01_drf.m2", }, { - fileId = "141679", - text = "helm_robe_holiday_summerfest_a_01_nif.m2", - value = "helm_robe_holiday_summerfest_a_01_nif.m2", + fileId = "356228", + text = "helm_plate_common_b_01_drm.m2", + value = "helm_plate_common_b_01_drm.m2", }, { - fileId = "141680", - text = "helm_robe_holiday_summerfest_a_01_nim.m2", - value = "helm_robe_holiday_summerfest_a_01_nim.m2", + fileId = "356229", + text = "helm_plate_common_b_01_dwf.m2", + value = "helm_plate_common_b_01_dwf.m2", }, { - fileId = "141681", - text = "helm_robe_holiday_summerfest_a_01_orf.m2", - value = "helm_robe_holiday_summerfest_a_01_orf.m2", + fileId = "356230", + text = "helm_plate_common_b_01_dwm.m2", + value = "helm_plate_common_b_01_dwm.m2", }, { - fileId = "141682", - text = "helm_robe_holiday_summerfest_a_01_orm.m2", - value = "helm_robe_holiday_summerfest_a_01_orm.m2", + fileId = "356231", + text = "helm_plate_common_b_01_gnf.m2", + value = "helm_plate_common_b_01_gnf.m2", }, { - fileId = "141683", - text = "helm_robe_holiday_summerfest_a_01_scf.m2", - value = "helm_robe_holiday_summerfest_a_01_scf.m2", + fileId = "356232", + text = "helm_plate_common_b_01_gnm.m2", + value = "helm_plate_common_b_01_gnm.m2", }, { - fileId = "141684", - text = "helm_robe_holiday_summerfest_a_01_scm.m2", - value = "helm_robe_holiday_summerfest_a_01_scm.m2", + fileId = "356233", + text = "helm_plate_common_b_01_gof.m2", + value = "helm_plate_common_b_01_gof.m2", }, { - fileId = "141685", - text = "helm_robe_holiday_summerfest_a_01_taf.m2", - value = "helm_robe_holiday_summerfest_a_01_taf.m2", + fileId = "356234", + text = "helm_plate_common_b_01_gom.m2", + value = "helm_plate_common_b_01_gom.m2", }, { - fileId = "141686", - text = "helm_robe_holiday_summerfest_a_01_tam.m2", - value = "helm_robe_holiday_summerfest_a_01_tam.m2", + fileId = "356235", + text = "helm_plate_common_b_01_huf.m2", + value = "helm_plate_common_b_01_huf.m2", }, { - fileId = "141687", - text = "helm_robe_holiday_summerfest_a_01_trf.m2", - value = "helm_robe_holiday_summerfest_a_01_trf.m2", + fileId = "356236", + text = "helm_plate_common_b_01_hum.m2", + value = "helm_plate_common_b_01_hum.m2", }, { - fileId = "141688", - text = "helm_robe_holiday_summerfest_a_01_trm.m2", - value = "helm_robe_holiday_summerfest_a_01_trm.m2", + fileId = "356237", + text = "helm_plate_common_b_01_nif.m2", + value = "helm_plate_common_b_01_nif.m2", }, { - fileId = "141689", - text = "helm_robe_holiday_summerfest_a_02_bef.m2", - value = "helm_robe_holiday_summerfest_a_02_bef.m2", + fileId = "356238", + text = "helm_plate_common_b_01_nim.m2", + value = "helm_plate_common_b_01_nim.m2", }, { - fileId = "141690", - text = "helm_robe_holiday_summerfest_a_02_bem.m2", - value = "helm_robe_holiday_summerfest_a_02_bem.m2", + fileId = "356239", + text = "helm_plate_common_b_01_orf.m2", + value = "helm_plate_common_b_01_orf.m2", }, { - fileId = "141691", - text = "helm_robe_holiday_summerfest_a_02_dwf.m2", - value = "helm_robe_holiday_summerfest_a_02_dwf.m2", + fileId = "356240", + text = "helm_plate_common_b_01_orm.m2", + value = "helm_plate_common_b_01_orm.m2", }, { - fileId = "141692", - text = "helm_robe_holiday_summerfest_a_02_dwm.m2", - value = "helm_robe_holiday_summerfest_a_02_dwm.m2", + fileId = "356241", + text = "helm_plate_common_b_01_scf.m2", + value = "helm_plate_common_b_01_scf.m2", }, { - fileId = "141693", - text = "helm_robe_holiday_summerfest_a_02_gnf.m2", - value = "helm_robe_holiday_summerfest_a_02_gnf.m2", + fileId = "356242", + text = "helm_plate_common_b_01_scm.m2", + value = "helm_plate_common_b_01_scm.m2", }, { - fileId = "141694", - text = "helm_robe_holiday_summerfest_a_02_gnm.m2", - value = "helm_robe_holiday_summerfest_a_02_gnm.m2", + fileId = "356243", + text = "helm_plate_common_b_01_taf.m2", + value = "helm_plate_common_b_01_taf.m2", }, { - fileId = "141695", - text = "helm_robe_holiday_summerfest_a_02_gom.m2", - value = "helm_robe_holiday_summerfest_a_02_gom.m2", + fileId = "356244", + text = "helm_plate_common_b_01_tam.m2", + value = "helm_plate_common_b_01_tam.m2", }, { - fileId = "141696", - text = "helm_robe_holiday_summerfest_a_02_huf.m2", - value = "helm_robe_holiday_summerfest_a_02_huf.m2", + fileId = "356245", + text = "helm_plate_common_b_01_trf.m2", + value = "helm_plate_common_b_01_trf.m2", }, { - fileId = "141697", - text = "helm_robe_holiday_summerfest_a_02_hum.m2", - value = "helm_robe_holiday_summerfest_a_02_hum.m2", + fileId = "356246", + text = "helm_plate_common_b_01_trm.m2", + value = "helm_plate_common_b_01_trm.m2", }, { - fileId = "141698", - text = "helm_robe_holiday_summerfest_a_02_nif.m2", - value = "helm_robe_holiday_summerfest_a_02_nif.m2", + fileId = "454203", + text = "helm_plate_common_b_01_wof.m2", + value = "helm_plate_common_b_01_wof.m2", }, { - fileId = "141699", - text = "helm_robe_holiday_summerfest_a_02_nim.m2", - value = "helm_robe_holiday_summerfest_a_02_nim.m2", + fileId = "430053", + text = "helm_plate_common_b_01_wom.m2", + value = "helm_plate_common_b_01_wom.m2", }, { - fileId = "141700", - text = "helm_robe_holiday_summerfest_a_02_orf.m2", - value = "helm_robe_holiday_summerfest_a_02_orf.m2", + fileId = "359508", + text = "helm_plate_common_b_02_bef.m2", + value = "helm_plate_common_b_02_bef.m2", }, { - fileId = "141701", - text = "helm_robe_holiday_summerfest_a_02_orm.m2", - value = "helm_robe_holiday_summerfest_a_02_orm.m2", + fileId = "359509", + text = "helm_plate_common_b_02_bem.m2", + value = "helm_plate_common_b_02_bem.m2", }, { - fileId = "141702", - text = "helm_robe_holiday_summerfest_a_02_scf.m2", - value = "helm_robe_holiday_summerfest_a_02_scf.m2", + fileId = "359510", + text = "helm_plate_common_b_02_drf.m2", + value = "helm_plate_common_b_02_drf.m2", }, { - fileId = "141703", - text = "helm_robe_holiday_summerfest_a_02_scm.m2", - value = "helm_robe_holiday_summerfest_a_02_scm.m2", + fileId = "359511", + text = "helm_plate_common_b_02_drm.m2", + value = "helm_plate_common_b_02_drm.m2", }, { - fileId = "141704", - text = "helm_robe_holiday_summerfest_a_02_taf.m2", - value = "helm_robe_holiday_summerfest_a_02_taf.m2", + fileId = "359512", + text = "helm_plate_common_b_02_dwf.m2", + value = "helm_plate_common_b_02_dwf.m2", }, { - fileId = "141705", - text = "helm_robe_holiday_summerfest_a_02_tam.m2", - value = "helm_robe_holiday_summerfest_a_02_tam.m2", + fileId = "359513", + text = "helm_plate_common_b_02_dwm.m2", + value = "helm_plate_common_b_02_dwm.m2", }, { - fileId = "141706", - text = "helm_robe_holiday_summerfest_a_02_trf.m2", - value = "helm_robe_holiday_summerfest_a_02_trf.m2", + fileId = "359514", + text = "helm_plate_common_b_02_gnf.m2", + value = "helm_plate_common_b_02_gnf.m2", }, { - fileId = "141707", - text = "helm_robe_holiday_summerfest_a_02_trm.m2", - value = "helm_robe_holiday_summerfest_a_02_trm.m2", + fileId = "359515", + text = "helm_plate_common_b_02_gnm.m2", + value = "helm_plate_common_b_02_gnm.m2", }, { - fileId = "141710", - text = "helm_robe_horde_b_03earthenring_bef.m2", - value = "helm_robe_horde_b_03earthenring_bef.m2", + fileId = "359516", + text = "helm_plate_common_b_02_gof.m2", + value = "helm_plate_common_b_02_gof.m2", }, { - fileId = "141711", - text = "helm_robe_horde_b_03earthenring_bem.m2", - value = "helm_robe_horde_b_03earthenring_bem.m2", + fileId = "359517", + text = "helm_plate_common_b_02_gom.m2", + value = "helm_plate_common_b_02_gom.m2", }, { - fileId = "141712", - text = "helm_robe_horde_b_03earthenring_drf.m2", - value = "helm_robe_horde_b_03earthenring_drf.m2", + fileId = "359518", + text = "helm_plate_common_b_02_huf.m2", + value = "helm_plate_common_b_02_huf.m2", }, { - fileId = "141713", - text = "helm_robe_horde_b_03earthenring_drm.m2", - value = "helm_robe_horde_b_03earthenring_drm.m2", + fileId = "359519", + text = "helm_plate_common_b_02_hum.m2", + value = "helm_plate_common_b_02_hum.m2", }, { - fileId = "141714", - text = "helm_robe_horde_b_03earthenring_dwf.m2", - value = "helm_robe_horde_b_03earthenring_dwf.m2", + fileId = "359520", + text = "helm_plate_common_b_02_nif.m2", + value = "helm_plate_common_b_02_nif.m2", }, { - fileId = "141715", - text = "helm_robe_horde_b_03earthenring_dwm.m2", - value = "helm_robe_horde_b_03earthenring_dwm.m2", + fileId = "359521", + text = "helm_plate_common_b_02_nim.m2", + value = "helm_plate_common_b_02_nim.m2", }, { - fileId = "141716", - text = "helm_robe_horde_b_03earthenring_gnf.m2", - value = "helm_robe_horde_b_03earthenring_gnf.m2", + fileId = "359522", + text = "helm_plate_common_b_02_orf.m2", + value = "helm_plate_common_b_02_orf.m2", }, { - fileId = "141717", - text = "helm_robe_horde_b_03earthenring_gnm.m2", - value = "helm_robe_horde_b_03earthenring_gnm.m2", + fileId = "359523", + text = "helm_plate_common_b_02_orm.m2", + value = "helm_plate_common_b_02_orm.m2", }, { - fileId = "141718", - text = "helm_robe_horde_b_03earthenring_gof.m2", - value = "helm_robe_horde_b_03earthenring_gof.m2", + fileId = "359524", + text = "helm_plate_common_b_02_scf.m2", + value = "helm_plate_common_b_02_scf.m2", }, { - fileId = "141719", - text = "helm_robe_horde_b_03earthenring_gom.m2", - value = "helm_robe_horde_b_03earthenring_gom.m2", + fileId = "359525", + text = "helm_plate_common_b_02_scm.m2", + value = "helm_plate_common_b_02_scm.m2", }, { - fileId = "141720", - text = "helm_robe_horde_b_03earthenring_huf.m2", - value = "helm_robe_horde_b_03earthenring_huf.m2", + fileId = "359526", + text = "helm_plate_common_b_02_taf.m2", + value = "helm_plate_common_b_02_taf.m2", }, { - fileId = "141721", - text = "helm_robe_horde_b_03earthenring_hum.m2", - value = "helm_robe_horde_b_03earthenring_hum.m2", + fileId = "359527", + text = "helm_plate_common_b_02_tam.m2", + value = "helm_plate_common_b_02_tam.m2", }, { - fileId = "141722", - text = "helm_robe_horde_b_03earthenring_nif.m2", - value = "helm_robe_horde_b_03earthenring_nif.m2", + fileId = "359528", + text = "helm_plate_common_b_02_trf.m2", + value = "helm_plate_common_b_02_trf.m2", }, { - fileId = "141723", - text = "helm_robe_horde_b_03earthenring_nim.m2", - value = "helm_robe_horde_b_03earthenring_nim.m2", + fileId = "359529", + text = "helm_plate_common_b_02_trm.m2", + value = "helm_plate_common_b_02_trm.m2", }, { - fileId = "141724", - text = "helm_robe_horde_b_03earthenring_orf.m2", - value = "helm_robe_horde_b_03earthenring_orf.m2", + fileId = "454204", + text = "helm_plate_common_b_02_wof.m2", + value = "helm_plate_common_b_02_wof.m2", }, { - fileId = "141725", - text = "helm_robe_horde_b_03earthenring_orm.m2", - value = "helm_robe_horde_b_03earthenring_orm.m2", + fileId = "430054", + text = "helm_plate_common_b_02_wom.m2", + value = "helm_plate_common_b_02_wom.m2", }, { - fileId = "141726", - text = "helm_robe_horde_b_03earthenring_scf.m2", - value = "helm_robe_horde_b_03earthenring_scf.m2", + fileId = "363607", + text = "helm_plate_common_b_03_bef.m2", + value = "helm_plate_common_b_03_bef.m2", }, { - fileId = "141727", - text = "helm_robe_horde_b_03earthenring_scm.m2", - value = "helm_robe_horde_b_03earthenring_scm.m2", + fileId = "363608", + text = "helm_plate_common_b_03_bem.m2", + value = "helm_plate_common_b_03_bem.m2", }, { - fileId = "141728", - text = "helm_robe_horde_b_03earthenring_taf.m2", - value = "helm_robe_horde_b_03earthenring_taf.m2", + fileId = "363609", + text = "helm_plate_common_b_03_drf.m2", + value = "helm_plate_common_b_03_drf.m2", }, { - fileId = "141729", - text = "helm_robe_horde_b_03earthenring_tam.m2", - value = "helm_robe_horde_b_03earthenring_tam.m2", + fileId = "363610", + text = "helm_plate_common_b_03_drm.m2", + value = "helm_plate_common_b_03_drm.m2", }, { - fileId = "141730", - text = "helm_robe_horde_b_03earthenring_trf.m2", - value = "helm_robe_horde_b_03earthenring_trf.m2", + fileId = "363611", + text = "helm_plate_common_b_03_dwf.m2", + value = "helm_plate_common_b_03_dwf.m2", }, { - fileId = "141731", - text = "helm_robe_horde_b_03earthenring_trm.m2", - value = "helm_robe_horde_b_03earthenring_trm.m2", + fileId = "363612", + text = "helm_plate_common_b_03_dwm.m2", + value = "helm_plate_common_b_03_dwm.m2", }, { - fileId = "141740", - text = "helm_robe_northrend_b_01_bef.m2", - value = "helm_robe_northrend_b_01_bef.m2", + fileId = "363613", + text = "helm_plate_common_b_03_gnf.m2", + value = "helm_plate_common_b_03_gnf.m2", }, { - fileId = "141741", - text = "helm_robe_northrend_b_01_bem.m2", - value = "helm_robe_northrend_b_01_bem.m2", + fileId = "363614", + text = "helm_plate_common_b_03_gnm.m2", + value = "helm_plate_common_b_03_gnm.m2", }, { - fileId = "141742", - text = "helm_robe_northrend_b_01_drf.m2", - value = "helm_robe_northrend_b_01_drf.m2", + fileId = "405674", + text = "helm_plate_common_b_03_gof.m2", + value = "helm_plate_common_b_03_gof.m2", }, { - fileId = "141743", - text = "helm_robe_northrend_b_01_drm.m2", - value = "helm_robe_northrend_b_01_drm.m2", + fileId = "405675", + text = "helm_plate_common_b_03_gom.m2", + value = "helm_plate_common_b_03_gom.m2", }, { - fileId = "141744", - text = "helm_robe_northrend_b_01_dwf.m2", - value = "helm_robe_northrend_b_01_dwf.m2", + fileId = "363615", + text = "helm_plate_common_b_03_huf.m2", + value = "helm_plate_common_b_03_huf.m2", }, { - fileId = "141745", - text = "helm_robe_northrend_b_01_dwm.m2", - value = "helm_robe_northrend_b_01_dwm.m2", + fileId = "363616", + text = "helm_plate_common_b_03_hum.m2", + value = "helm_plate_common_b_03_hum.m2", }, { - fileId = "141746", - text = "helm_robe_northrend_b_01_gnf.m2", - value = "helm_robe_northrend_b_01_gnf.m2", + fileId = "363617", + text = "helm_plate_common_b_03_nif.m2", + value = "helm_plate_common_b_03_nif.m2", }, { - fileId = "141747", - text = "helm_robe_northrend_b_01_gnm.m2", - value = "helm_robe_northrend_b_01_gnm.m2", + fileId = "363618", + text = "helm_plate_common_b_03_nim.m2", + value = "helm_plate_common_b_03_nim.m2", }, { - fileId = "141748", - text = "helm_robe_northrend_b_01_huf.m2", - value = "helm_robe_northrend_b_01_huf.m2", + fileId = "363619", + text = "helm_plate_common_b_03_orf.m2", + value = "helm_plate_common_b_03_orf.m2", }, { - fileId = "141749", - text = "helm_robe_northrend_b_01_hum.m2", - value = "helm_robe_northrend_b_01_hum.m2", + fileId = "363620", + text = "helm_plate_common_b_03_orm.m2", + value = "helm_plate_common_b_03_orm.m2", }, { - fileId = "141750", - text = "helm_robe_northrend_b_01_nif.m2", - value = "helm_robe_northrend_b_01_nif.m2", + fileId = "363621", + text = "helm_plate_common_b_03_scf.m2", + value = "helm_plate_common_b_03_scf.m2", }, { - fileId = "141751", - text = "helm_robe_northrend_b_01_nim.m2", - value = "helm_robe_northrend_b_01_nim.m2", + fileId = "363622", + text = "helm_plate_common_b_03_scm.m2", + value = "helm_plate_common_b_03_scm.m2", }, { - fileId = "141752", - text = "helm_robe_northrend_b_01_orf.m2", - value = "helm_robe_northrend_b_01_orf.m2", + fileId = "363623", + text = "helm_plate_common_b_03_taf.m2", + value = "helm_plate_common_b_03_taf.m2", }, { - fileId = "141753", - text = "helm_robe_northrend_b_01_orm.m2", - value = "helm_robe_northrend_b_01_orm.m2", + fileId = "363624", + text = "helm_plate_common_b_03_tam.m2", + value = "helm_plate_common_b_03_tam.m2", }, { - fileId = "141754", - text = "helm_robe_northrend_b_01_scf.m2", - value = "helm_robe_northrend_b_01_scf.m2", + fileId = "363625", + text = "helm_plate_common_b_03_trf.m2", + value = "helm_plate_common_b_03_trf.m2", }, { - fileId = "141755", - text = "helm_robe_northrend_b_01_scm.m2", - value = "helm_robe_northrend_b_01_scm.m2", + fileId = "363626", + text = "helm_plate_common_b_03_trm.m2", + value = "helm_plate_common_b_03_trm.m2", }, { - fileId = "141756", - text = "helm_robe_northrend_b_01_taf.m2", - value = "helm_robe_northrend_b_01_taf.m2", + fileId = "454205", + text = "helm_plate_common_b_03_wof.m2", + value = "helm_plate_common_b_03_wof.m2", }, { - fileId = "141757", - text = "helm_robe_northrend_b_01_tam.m2", - value = "helm_robe_northrend_b_01_tam.m2", + fileId = "430055", + text = "helm_plate_common_b_03_wom.m2", + value = "helm_plate_common_b_03_wom.m2", }, { - fileId = "141758", - text = "helm_robe_northrend_b_01_trf.m2", - value = "helm_robe_northrend_b_01_trf.m2", + fileId = "366843", + text = "helm_plate_common_c_01_bef.m2", + value = "helm_plate_common_c_01_bef.m2", }, { - fileId = "141759", - text = "helm_robe_northrend_b_01_trm.m2", - value = "helm_robe_northrend_b_01_trm.m2", + fileId = "366844", + text = "helm_plate_common_c_01_bem.m2", + value = "helm_plate_common_c_01_bem.m2", }, { - fileId = "141764", - text = "helm_robe_northrend_b_02_bef.m2", - value = "helm_robe_northrend_b_02_bef.m2", + fileId = "366845", + text = "helm_plate_common_c_01_drf.m2", + value = "helm_plate_common_c_01_drf.m2", }, { - fileId = "141765", - text = "helm_robe_northrend_b_02_bem.m2", - value = "helm_robe_northrend_b_02_bem.m2", + fileId = "366846", + text = "helm_plate_common_c_01_drm.m2", + value = "helm_plate_common_c_01_drm.m2", }, { - fileId = "141766", - text = "helm_robe_northrend_b_02_drf.m2", - value = "helm_robe_northrend_b_02_drf.m2", + fileId = "366847", + text = "helm_plate_common_c_01_dwf.m2", + value = "helm_plate_common_c_01_dwf.m2", }, { - fileId = "141767", - text = "helm_robe_northrend_b_02_drm.m2", - value = "helm_robe_northrend_b_02_drm.m2", + fileId = "366848", + text = "helm_plate_common_c_01_dwm.m2", + value = "helm_plate_common_c_01_dwm.m2", }, { - fileId = "141768", - text = "helm_robe_northrend_b_02_dwf.m2", - value = "helm_robe_northrend_b_02_dwf.m2", + fileId = "366849", + text = "helm_plate_common_c_01_gnf.m2", + value = "helm_plate_common_c_01_gnf.m2", }, { - fileId = "141769", - text = "helm_robe_northrend_b_02_dwm.m2", - value = "helm_robe_northrend_b_02_dwm.m2", + fileId = "366850", + text = "helm_plate_common_c_01_gnm.m2", + value = "helm_plate_common_c_01_gnm.m2", }, { - fileId = "141770", - text = "helm_robe_northrend_b_02_gnf.m2", - value = "helm_robe_northrend_b_02_gnf.m2", + fileId = "405676", + text = "helm_plate_common_c_01_gof.m2", + value = "helm_plate_common_c_01_gof.m2", }, { - fileId = "141771", - text = "helm_robe_northrend_b_02_gnm.m2", - value = "helm_robe_northrend_b_02_gnm.m2", + fileId = "405677", + text = "helm_plate_common_c_01_gom.m2", + value = "helm_plate_common_c_01_gom.m2", }, { - fileId = "141772", - text = "helm_robe_northrend_b_02_huf.m2", - value = "helm_robe_northrend_b_02_huf.m2", + fileId = "366851", + text = "helm_plate_common_c_01_huf.m2", + value = "helm_plate_common_c_01_huf.m2", }, { - fileId = "141773", - text = "helm_robe_northrend_b_02_hum.m2", - value = "helm_robe_northrend_b_02_hum.m2", + fileId = "366852", + text = "helm_plate_common_c_01_hum.m2", + value = "helm_plate_common_c_01_hum.m2", }, { - fileId = "141774", - text = "helm_robe_northrend_b_02_nif.m2", - value = "helm_robe_northrend_b_02_nif.m2", + fileId = "366853", + text = "helm_plate_common_c_01_nif.m2", + value = "helm_plate_common_c_01_nif.m2", }, { - fileId = "141775", - text = "helm_robe_northrend_b_02_nim.m2", - value = "helm_robe_northrend_b_02_nim.m2", + fileId = "366854", + text = "helm_plate_common_c_01_nim.m2", + value = "helm_plate_common_c_01_nim.m2", }, { - fileId = "141776", - text = "helm_robe_northrend_b_02_orf.m2", - value = "helm_robe_northrend_b_02_orf.m2", + fileId = "366855", + text = "helm_plate_common_c_01_orf.m2", + value = "helm_plate_common_c_01_orf.m2", }, { - fileId = "141777", - text = "helm_robe_northrend_b_02_orm.m2", - value = "helm_robe_northrend_b_02_orm.m2", + fileId = "366856", + text = "helm_plate_common_c_01_orm.m2", + value = "helm_plate_common_c_01_orm.m2", }, { - fileId = "141778", - text = "helm_robe_northrend_b_02_scf.m2", - value = "helm_robe_northrend_b_02_scf.m2", + fileId = "366857", + text = "helm_plate_common_c_01_scf.m2", + value = "helm_plate_common_c_01_scf.m2", }, { - fileId = "141779", - text = "helm_robe_northrend_b_02_scm.m2", - value = "helm_robe_northrend_b_02_scm.m2", + fileId = "366858", + text = "helm_plate_common_c_01_scm.m2", + value = "helm_plate_common_c_01_scm.m2", }, { - fileId = "141780", - text = "helm_robe_northrend_b_02_taf.m2", - value = "helm_robe_northrend_b_02_taf.m2", + fileId = "366859", + text = "helm_plate_common_c_01_taf.m2", + value = "helm_plate_common_c_01_taf.m2", }, { - fileId = "141781", - text = "helm_robe_northrend_b_02_tam.m2", - value = "helm_robe_northrend_b_02_tam.m2", + fileId = "366860", + text = "helm_plate_common_c_01_tam.m2", + value = "helm_plate_common_c_01_tam.m2", }, { - fileId = "141782", - text = "helm_robe_northrend_b_02_trf.m2", - value = "helm_robe_northrend_b_02_trf.m2", + fileId = "366861", + text = "helm_plate_common_c_01_trf.m2", + value = "helm_plate_common_c_01_trf.m2", }, { - fileId = "141783", - text = "helm_robe_northrend_b_02_trm.m2", - value = "helm_robe_northrend_b_02_trm.m2", + fileId = "366862", + text = "helm_plate_common_c_01_trm.m2", + value = "helm_plate_common_c_01_trm.m2", }, { - fileId = "141790", - text = "helm_robe_northrend_b_03_bef.m2", - value = "helm_robe_northrend_b_03_bef.m2", + fileId = "454206", + text = "helm_plate_common_c_01_wof.m2", + value = "helm_plate_common_c_01_wof.m2", }, { - fileId = "141791", - text = "helm_robe_northrend_b_03_bem.m2", - value = "helm_robe_northrend_b_03_bem.m2", + fileId = "430056", + text = "helm_plate_common_c_01_wom.m2", + value = "helm_plate_common_c_01_wom.m2", }, { - fileId = "141792", - text = "helm_robe_northrend_b_03_drf.m2", - value = "helm_robe_northrend_b_03_drf.m2", + fileId = "140409", + text = "helm_plate_d_01_bef.m2", + value = "helm_plate_d_01_bef.m2", }, { - fileId = "141793", - text = "helm_robe_northrend_b_03_drm.m2", - value = "helm_robe_northrend_b_03_drm.m2", + fileId = "140410", + text = "helm_plate_d_01_bem.m2", + value = "helm_plate_d_01_bem.m2", }, { - fileId = "141794", - text = "helm_robe_northrend_b_03_dwf.m2", - value = "helm_robe_northrend_b_03_dwf.m2", + fileId = "140411", + text = "helm_plate_d_01_drf.m2", + value = "helm_plate_d_01_drf.m2", }, { - fileId = "141795", - text = "helm_robe_northrend_b_03_dwm.m2", - value = "helm_robe_northrend_b_03_dwm.m2", + fileId = "140412", + text = "helm_plate_d_01_drm.m2", + value = "helm_plate_d_01_drm.m2", }, { - fileId = "141796", - text = "helm_robe_northrend_b_03_gnf.m2", - value = "helm_robe_northrend_b_03_gnf.m2", + fileId = "140413", + text = "helm_plate_d_01_dwf.m2", + value = "helm_plate_d_01_dwf.m2", }, { - fileId = "141797", - text = "helm_robe_northrend_b_03_gnm.m2", - value = "helm_robe_northrend_b_03_gnm.m2", + fileId = "140414", + text = "helm_plate_d_01_dwm.m2", + value = "helm_plate_d_01_dwm.m2", }, { - fileId = "141798", - text = "helm_robe_northrend_b_03_huf.m2", - value = "helm_robe_northrend_b_03_huf.m2", + fileId = "140415", + text = "helm_plate_d_01_gnf.m2", + value = "helm_plate_d_01_gnf.m2", }, { - fileId = "141799", - text = "helm_robe_northrend_b_03_hum.m2", - value = "helm_robe_northrend_b_03_hum.m2", + fileId = "140416", + text = "helm_plate_d_01_gnm.m2", + value = "helm_plate_d_01_gnm.m2", }, { - fileId = "141800", - text = "helm_robe_northrend_b_03_nif.m2", - value = "helm_robe_northrend_b_03_nif.m2", + fileId = "140417", + text = "helm_plate_d_01_gof.m2", + value = "helm_plate_d_01_gof.m2", }, { - fileId = "141801", - text = "helm_robe_northrend_b_03_nim.m2", - value = "helm_robe_northrend_b_03_nim.m2", + fileId = "140418", + text = "helm_plate_d_01_gom.m2", + value = "helm_plate_d_01_gom.m2", }, { - fileId = "141802", - text = "helm_robe_northrend_b_03_orf.m2", - value = "helm_robe_northrend_b_03_orf.m2", + fileId = "140419", + text = "helm_plate_d_01_huf.m2", + value = "helm_plate_d_01_huf.m2", }, { - fileId = "141803", - text = "helm_robe_northrend_b_03_orm.m2", - value = "helm_robe_northrend_b_03_orm.m2", + fileId = "140420", + text = "helm_plate_d_01_hum.m2", + value = "helm_plate_d_01_hum.m2", }, { - fileId = "141804", - text = "helm_robe_northrend_b_03_scf.m2", - value = "helm_robe_northrend_b_03_scf.m2", + fileId = "140421", + text = "helm_plate_d_01_nif.m2", + value = "helm_plate_d_01_nif.m2", }, { - fileId = "141805", - text = "helm_robe_northrend_b_03_scm.m2", - value = "helm_robe_northrend_b_03_scm.m2", + fileId = "140422", + text = "helm_plate_d_01_nim.m2", + value = "helm_plate_d_01_nim.m2", }, { - fileId = "141806", - text = "helm_robe_northrend_b_03_taf.m2", - value = "helm_robe_northrend_b_03_taf.m2", + fileId = "140423", + text = "helm_plate_d_01_orf.m2", + value = "helm_plate_d_01_orf.m2", }, { - fileId = "141807", - text = "helm_robe_northrend_b_03_tam.m2", - value = "helm_robe_northrend_b_03_tam.m2", + fileId = "140424", + text = "helm_plate_d_01_orm.m2", + value = "helm_plate_d_01_orm.m2", }, { - fileId = "141808", - text = "helm_robe_northrend_b_03_trf.m2", - value = "helm_robe_northrend_b_03_trf.m2", + fileId = "140425", + text = "helm_plate_d_01_scf.m2", + value = "helm_plate_d_01_scf.m2", }, { - fileId = "141809", - text = "helm_robe_northrend_b_03_trm.m2", - value = "helm_robe_northrend_b_03_trm.m2", + fileId = "140426", + text = "helm_plate_d_01_scm.m2", + value = "helm_plate_d_01_scm.m2", }, { - fileId = "141814", - text = "helm_robe_northrend_d_01_bef.m2", - value = "helm_robe_northrend_d_01_bef.m2", + fileId = "140427", + text = "helm_plate_d_01_taf.m2", + value = "helm_plate_d_01_taf.m2", }, { - fileId = "141815", - text = "helm_robe_northrend_d_01_bem.m2", - value = "helm_robe_northrend_d_01_bem.m2", + fileId = "140428", + text = "helm_plate_d_01_tam.m2", + value = "helm_plate_d_01_tam.m2", }, { - fileId = "141816", - text = "helm_robe_northrend_d_01_drf.m2", - value = "helm_robe_northrend_d_01_drf.m2", + fileId = "140429", + text = "helm_plate_d_01_trf.m2", + value = "helm_plate_d_01_trf.m2", }, { - fileId = "141817", - text = "helm_robe_northrend_d_01_drm.m2", - value = "helm_robe_northrend_d_01_drm.m2", + fileId = "140430", + text = "helm_plate_d_01_trm.m2", + value = "helm_plate_d_01_trm.m2", }, { - fileId = "141818", - text = "helm_robe_northrend_d_01_dwf.m2", - value = "helm_robe_northrend_d_01_dwf.m2", + fileId = "454241", + text = "helm_plate_d_01_wof.m2", + value = "helm_plate_d_01_wof.m2", }, { - fileId = "141819", - text = "helm_robe_northrend_d_01_dwm.m2", - value = "helm_robe_northrend_d_01_dwm.m2", + fileId = "430063", + text = "helm_plate_d_01_wom.m2", + value = "helm_plate_d_01_wom.m2", }, { - fileId = "141820", - text = "helm_robe_northrend_d_01_gnf.m2", - value = "helm_robe_northrend_d_01_gnf.m2", + fileId = "140432", + text = "helm_plate_d_02_bef.m2", + value = "helm_plate_d_02_bef.m2", }, { - fileId = "141821", - text = "helm_robe_northrend_d_01_gnm.m2", - value = "helm_robe_northrend_d_01_gnm.m2", + fileId = "140433", + text = "helm_plate_d_02_bem.m2", + value = "helm_plate_d_02_bem.m2", }, { - fileId = "141822", - text = "helm_robe_northrend_d_01_huf.m2", - value = "helm_robe_northrend_d_01_huf.m2", + fileId = "140434", + text = "helm_plate_d_02_drf.m2", + value = "helm_plate_d_02_drf.m2", }, { - fileId = "141823", - text = "helm_robe_northrend_d_01_hum.m2", - value = "helm_robe_northrend_d_01_hum.m2", + fileId = "140435", + text = "helm_plate_d_02_drm.m2", + value = "helm_plate_d_02_drm.m2", }, { - fileId = "141824", - text = "helm_robe_northrend_d_01_nif.m2", - value = "helm_robe_northrend_d_01_nif.m2", + fileId = "140436", + text = "helm_plate_d_02_dwf.m2", + value = "helm_plate_d_02_dwf.m2", }, { - fileId = "141825", - text = "helm_robe_northrend_d_01_nim.m2", - value = "helm_robe_northrend_d_01_nim.m2", + fileId = "140437", + text = "helm_plate_d_02_dwm.m2", + value = "helm_plate_d_02_dwm.m2", }, { - fileId = "141826", - text = "helm_robe_northrend_d_01_orf.m2", - value = "helm_robe_northrend_d_01_orf.m2", + fileId = "140438", + text = "helm_plate_d_02_gnf.m2", + value = "helm_plate_d_02_gnf.m2", }, { - fileId = "141827", - text = "helm_robe_northrend_d_01_orm.m2", - value = "helm_robe_northrend_d_01_orm.m2", + fileId = "140439", + text = "helm_plate_d_02_gnm.m2", + value = "helm_plate_d_02_gnm.m2", }, { - fileId = "141828", - text = "helm_robe_northrend_d_01_scf.m2", - value = "helm_robe_northrend_d_01_scf.m2", + fileId = "140440", + text = "helm_plate_d_02_gof.m2", + value = "helm_plate_d_02_gof.m2", }, { - fileId = "141829", - text = "helm_robe_northrend_d_01_scm.m2", - value = "helm_robe_northrend_d_01_scm.m2", + fileId = "140441", + text = "helm_plate_d_02_gom.m2", + value = "helm_plate_d_02_gom.m2", }, { - fileId = "141830", - text = "helm_robe_northrend_d_01_taf.m2", - value = "helm_robe_northrend_d_01_taf.m2", + fileId = "140442", + text = "helm_plate_d_02_huf.m2", + value = "helm_plate_d_02_huf.m2", }, { - fileId = "141831", - text = "helm_robe_northrend_d_01_tam.m2", - value = "helm_robe_northrend_d_01_tam.m2", + fileId = "140443", + text = "helm_plate_d_02_hum.m2", + value = "helm_plate_d_02_hum.m2", }, { - fileId = "141832", - text = "helm_robe_northrend_d_01_trf.m2", - value = "helm_robe_northrend_d_01_trf.m2", + fileId = "140444", + text = "helm_plate_d_02_nif.m2", + value = "helm_plate_d_02_nif.m2", }, { - fileId = "141833", - text = "helm_robe_northrend_d_01_trm.m2", - value = "helm_robe_northrend_d_01_trm.m2", + fileId = "140445", + text = "helm_plate_d_02_nim.m2", + value = "helm_plate_d_02_nim.m2", }, { - fileId = "141837", - text = "helm_robe_pvpalliance_a_01_bef.m2", - value = "helm_robe_pvpalliance_a_01_bef.m2", + fileId = "140446", + text = "helm_plate_d_02_orf.m2", + value = "helm_plate_d_02_orf.m2", }, { - fileId = "141838", - text = "helm_robe_pvpalliance_a_01_bem.m2", - value = "helm_robe_pvpalliance_a_01_bem.m2", + fileId = "140447", + text = "helm_plate_d_02_orm.m2", + value = "helm_plate_d_02_orm.m2", }, { - fileId = "141839", - text = "helm_robe_pvpalliance_a_01_drf.m2", - value = "helm_robe_pvpalliance_a_01_drf.m2", + fileId = "140448", + text = "helm_plate_d_02_scf.m2", + value = "helm_plate_d_02_scf.m2", }, { - fileId = "141840", - text = "helm_robe_pvpalliance_a_01_drm.m2", - value = "helm_robe_pvpalliance_a_01_drm.m2", + fileId = "140449", + text = "helm_plate_d_02_scm.m2", + value = "helm_plate_d_02_scm.m2", }, { - fileId = "141841", - text = "helm_robe_pvpalliance_a_01_dwf.m2", - value = "helm_robe_pvpalliance_a_01_dwf.m2", + fileId = "140450", + text = "helm_plate_d_02_taf.m2", + value = "helm_plate_d_02_taf.m2", }, { - fileId = "141842", - text = "helm_robe_pvpalliance_a_01_dwm.m2", - value = "helm_robe_pvpalliance_a_01_dwm.m2", + fileId = "140451", + text = "helm_plate_d_02_tam.m2", + value = "helm_plate_d_02_tam.m2", }, { - fileId = "141843", - text = "helm_robe_pvpalliance_a_01_gnf.m2", - value = "helm_robe_pvpalliance_a_01_gnf.m2", + fileId = "140452", + text = "helm_plate_d_02_trf.m2", + value = "helm_plate_d_02_trf.m2", }, { - fileId = "141844", - text = "helm_robe_pvpalliance_a_01_gnm.m2", - value = "helm_robe_pvpalliance_a_01_gnm.m2", + fileId = "140453", + text = "helm_plate_d_02_trm.m2", + value = "helm_plate_d_02_trm.m2", }, { - fileId = "141845", - text = "helm_robe_pvpalliance_a_01_gof.m2", - value = "helm_robe_pvpalliance_a_01_gof.m2", + fileId = "454242", + text = "helm_plate_d_02_wof.m2", + value = "helm_plate_d_02_wof.m2", }, { - fileId = "141846", - text = "helm_robe_pvpalliance_a_01_gom.m2", - value = "helm_robe_pvpalliance_a_01_gom.m2", + fileId = "430064", + text = "helm_plate_d_02_wom.m2", + value = "helm_plate_d_02_wom.m2", }, { - fileId = "141847", - text = "helm_robe_pvpalliance_a_01_huf.m2", - value = "helm_robe_pvpalliance_a_01_huf.m2", + fileId = "140456", + text = "helm_plate_d_03_bef.m2", + value = "helm_plate_d_03_bef.m2", }, { - fileId = "141848", - text = "helm_robe_pvpalliance_a_01_hum.m2", - value = "helm_robe_pvpalliance_a_01_hum.m2", + fileId = "140457", + text = "helm_plate_d_03_bem.m2", + value = "helm_plate_d_03_bem.m2", }, { - fileId = "141849", - text = "helm_robe_pvpalliance_a_01_nif.m2", - value = "helm_robe_pvpalliance_a_01_nif.m2", + fileId = "140458", + text = "helm_plate_d_03_drf.m2", + value = "helm_plate_d_03_drf.m2", }, { - fileId = "141850", - text = "helm_robe_pvpalliance_a_01_nim.m2", - value = "helm_robe_pvpalliance_a_01_nim.m2", + fileId = "140459", + text = "helm_plate_d_03_drm.m2", + value = "helm_plate_d_03_drm.m2", }, { - fileId = "141851", - text = "helm_robe_pvpalliance_a_01_orf.m2", - value = "helm_robe_pvpalliance_a_01_orf.m2", + fileId = "140460", + text = "helm_plate_d_03_dwf.m2", + value = "helm_plate_d_03_dwf.m2", }, { - fileId = "141852", - text = "helm_robe_pvpalliance_a_01_orm.m2", - value = "helm_robe_pvpalliance_a_01_orm.m2", + fileId = "140461", + text = "helm_plate_d_03_dwm.m2", + value = "helm_plate_d_03_dwm.m2", }, { - fileId = "141853", - text = "helm_robe_pvpalliance_a_01_scf.m2", - value = "helm_robe_pvpalliance_a_01_scf.m2", + fileId = "140462", + text = "helm_plate_d_03_gnf.m2", + value = "helm_plate_d_03_gnf.m2", }, { - fileId = "141854", - text = "helm_robe_pvpalliance_a_01_scm.m2", - value = "helm_robe_pvpalliance_a_01_scm.m2", + fileId = "140463", + text = "helm_plate_d_03_gnm.m2", + value = "helm_plate_d_03_gnm.m2", }, { - fileId = "141855", - text = "helm_robe_pvpalliance_a_01_taf.m2", - value = "helm_robe_pvpalliance_a_01_taf.m2", + fileId = "140464", + text = "helm_plate_d_03_gof.m2", + value = "helm_plate_d_03_gof.m2", }, { - fileId = "141856", - text = "helm_robe_pvpalliance_a_01_tam.m2", - value = "helm_robe_pvpalliance_a_01_tam.m2", + fileId = "140465", + text = "helm_plate_d_03_gom.m2", + value = "helm_plate_d_03_gom.m2", }, { - fileId = "141857", - text = "helm_robe_pvpalliance_a_01_trf.m2", - value = "helm_robe_pvpalliance_a_01_trf.m2", + fileId = "140466", + text = "helm_plate_d_03_huf.m2", + value = "helm_plate_d_03_huf.m2", }, { - fileId = "141858", - text = "helm_robe_pvpalliance_a_01_trm.m2", - value = "helm_robe_pvpalliance_a_01_trm.m2", + fileId = "140467", + text = "helm_plate_d_03_hum.m2", + value = "helm_plate_d_03_hum.m2", }, { - fileId = "141862", - text = "helm_robe_pvpalliance_b_01_drf.m2", - value = "helm_robe_pvpalliance_b_01_drf.m2", + fileId = "140468", + text = "helm_plate_d_03_nif.m2", + value = "helm_plate_d_03_nif.m2", }, { - fileId = "141863", - text = "helm_robe_pvpalliance_b_01_drm.m2", - value = "helm_robe_pvpalliance_b_01_drm.m2", + fileId = "140469", + text = "helm_plate_d_03_nim.m2", + value = "helm_plate_d_03_nim.m2", }, { - fileId = "141864", - text = "helm_robe_pvpalliance_b_01_gof.m2", - value = "helm_robe_pvpalliance_b_01_gof.m2", + fileId = "140470", + text = "helm_plate_d_03_orf.m2", + value = "helm_plate_d_03_orf.m2", }, { - fileId = "141865", - text = "helm_robe_pvpalliance_b_01_gom.m2", - value = "helm_robe_pvpalliance_b_01_gom.m2", + fileId = "140471", + text = "helm_plate_d_03_orm.m2", + value = "helm_plate_d_03_orm.m2", }, { - fileId = "141866", - text = "helm_robe_pvpalliance_c_01_bef.m2", - value = "helm_robe_pvpalliance_c_01_bef.m2", + fileId = "140472", + text = "helm_plate_d_03_scf.m2", + value = "helm_plate_d_03_scf.m2", }, { - fileId = "141867", - text = "helm_robe_pvpalliance_c_01_bem.m2", - value = "helm_robe_pvpalliance_c_01_bem.m2", + fileId = "140473", + text = "helm_plate_d_03_scm.m2", + value = "helm_plate_d_03_scm.m2", }, { - fileId = "141868", - text = "helm_robe_pvpalliance_c_01_drf.m2", - value = "helm_robe_pvpalliance_c_01_drf.m2", + fileId = "140474", + text = "helm_plate_d_03_taf.m2", + value = "helm_plate_d_03_taf.m2", }, { - fileId = "141869", - text = "helm_robe_pvpalliance_c_01_drm.m2", - value = "helm_robe_pvpalliance_c_01_drm.m2", + fileId = "140475", + text = "helm_plate_d_03_tam.m2", + value = "helm_plate_d_03_tam.m2", }, { - fileId = "141870", - text = "helm_robe_pvpalliance_c_01_dwf.m2", - value = "helm_robe_pvpalliance_c_01_dwf.m2", + fileId = "140476", + text = "helm_plate_d_03_trf.m2", + value = "helm_plate_d_03_trf.m2", }, { - fileId = "141871", - text = "helm_robe_pvpalliance_c_01_dwm.m2", - value = "helm_robe_pvpalliance_c_01_dwm.m2", + fileId = "140477", + text = "helm_plate_d_03_trm.m2", + value = "helm_plate_d_03_trm.m2", }, { - fileId = "141872", - text = "helm_robe_pvpalliance_c_01_gnf.m2", - value = "helm_robe_pvpalliance_c_01_gnf.m2", + fileId = "454243", + text = "helm_plate_d_03_wof.m2", + value = "helm_plate_d_03_wof.m2", }, { - fileId = "141873", - text = "helm_robe_pvpalliance_c_01_gnm.m2", - value = "helm_robe_pvpalliance_c_01_gnm.m2", + fileId = "430065", + text = "helm_plate_d_03_wom.m2", + value = "helm_plate_d_03_wom.m2", }, { - fileId = "141874", - text = "helm_robe_pvpalliance_c_01_huf.m2", - value = "helm_robe_pvpalliance_c_01_huf.m2", + fileId = "140493", + text = "helm_plate_d_04_bef.m2", + value = "helm_plate_d_04_bef.m2", }, { - fileId = "141875", - text = "helm_robe_pvpalliance_c_01_hum.m2", - value = "helm_robe_pvpalliance_c_01_hum.m2", + fileId = "140494", + text = "helm_plate_d_04_bem.m2", + value = "helm_plate_d_04_bem.m2", }, { - fileId = "141876", - text = "helm_robe_pvpalliance_c_01_nif.m2", - value = "helm_robe_pvpalliance_c_01_nif.m2", + fileId = "140495", + text = "helm_plate_d_04_drf.m2", + value = "helm_plate_d_04_drf.m2", }, { - fileId = "141877", - text = "helm_robe_pvpalliance_c_01_nim.m2", - value = "helm_robe_pvpalliance_c_01_nim.m2", + fileId = "140496", + text = "helm_plate_d_04_drm.m2", + value = "helm_plate_d_04_drm.m2", }, { - fileId = "141878", - text = "helm_robe_pvpalliance_c_01_orf.m2", - value = "helm_robe_pvpalliance_c_01_orf.m2", + fileId = "140497", + text = "helm_plate_d_04_dwf.m2", + value = "helm_plate_d_04_dwf.m2", }, { - fileId = "141879", - text = "helm_robe_pvpalliance_c_01_orm.m2", - value = "helm_robe_pvpalliance_c_01_orm.m2", + fileId = "140498", + text = "helm_plate_d_04_dwm.m2", + value = "helm_plate_d_04_dwm.m2", }, { - fileId = "141880", - text = "helm_robe_pvpalliance_c_01_scf.m2", - value = "helm_robe_pvpalliance_c_01_scf.m2", + fileId = "140499", + text = "helm_plate_d_04_gnf.m2", + value = "helm_plate_d_04_gnf.m2", }, { - fileId = "141881", - text = "helm_robe_pvpalliance_c_01_scm.m2", - value = "helm_robe_pvpalliance_c_01_scm.m2", + fileId = "140500", + text = "helm_plate_d_04_gnm.m2", + value = "helm_plate_d_04_gnm.m2", }, { - fileId = "141882", - text = "helm_robe_pvpalliance_c_01_taf.m2", - value = "helm_robe_pvpalliance_c_01_taf.m2", + fileId = "140501", + text = "helm_plate_d_04_gof.m2", + value = "helm_plate_d_04_gof.m2", }, { - fileId = "141883", - text = "helm_robe_pvpalliance_c_01_tam.m2", - value = "helm_robe_pvpalliance_c_01_tam.m2", + fileId = "140502", + text = "helm_plate_d_04_gom.m2", + value = "helm_plate_d_04_gom.m2", }, { - fileId = "141884", - text = "helm_robe_pvpalliance_c_01_trf.m2", - value = "helm_robe_pvpalliance_c_01_trf.m2", + fileId = "140503", + text = "helm_plate_d_04_huf.m2", + value = "helm_plate_d_04_huf.m2", }, { - fileId = "141885", - text = "helm_robe_pvpalliance_c_01_trm.m2", - value = "helm_robe_pvpalliance_c_01_trm.m2", + fileId = "140504", + text = "helm_plate_d_04_hum.m2", + value = "helm_plate_d_04_hum.m2", }, { - fileId = "141889", - text = "helm_robe_pvphorde_a_01_bef.m2", - value = "helm_robe_pvphorde_a_01_bef.m2", + fileId = "140505", + text = "helm_plate_d_04_nif.m2", + value = "helm_plate_d_04_nif.m2", }, { - fileId = "141890", - text = "helm_robe_pvphorde_a_01_bem.m2", - value = "helm_robe_pvphorde_a_01_bem.m2", + fileId = "140506", + text = "helm_plate_d_04_nim.m2", + value = "helm_plate_d_04_nim.m2", }, { - fileId = "141891", - text = "helm_robe_pvphorde_a_01_drf.m2", - value = "helm_robe_pvphorde_a_01_drf.m2", + fileId = "140507", + text = "helm_plate_d_04_orf.m2", + value = "helm_plate_d_04_orf.m2", }, { - fileId = "141892", - text = "helm_robe_pvphorde_a_01_drm.m2", - value = "helm_robe_pvphorde_a_01_drm.m2", + fileId = "140508", + text = "helm_plate_d_04_orm.m2", + value = "helm_plate_d_04_orm.m2", }, { - fileId = "141893", - text = "helm_robe_pvphorde_a_01_dwf.m2", - value = "helm_robe_pvphorde_a_01_dwf.m2", + fileId = "140509", + text = "helm_plate_d_04_scf.m2", + value = "helm_plate_d_04_scf.m2", }, { - fileId = "141894", - text = "helm_robe_pvphorde_a_01_dwm.m2", - value = "helm_robe_pvphorde_a_01_dwm.m2", + fileId = "140510", + text = "helm_plate_d_04_scm.m2", + value = "helm_plate_d_04_scm.m2", }, { - fileId = "141895", - text = "helm_robe_pvphorde_a_01_gnf.m2", - value = "helm_robe_pvphorde_a_01_gnf.m2", + fileId = "140511", + text = "helm_plate_d_04_taf.m2", + value = "helm_plate_d_04_taf.m2", }, { - fileId = "141896", - text = "helm_robe_pvphorde_a_01_gnm.m2", - value = "helm_robe_pvphorde_a_01_gnm.m2", + fileId = "140512", + text = "helm_plate_d_04_tam.m2", + value = "helm_plate_d_04_tam.m2", }, { - fileId = "141897", - text = "helm_robe_pvphorde_a_01_gof.m2", - value = "helm_robe_pvphorde_a_01_gof.m2", + fileId = "140513", + text = "helm_plate_d_04_trf.m2", + value = "helm_plate_d_04_trf.m2", }, { - fileId = "141898", - text = "helm_robe_pvphorde_a_01_huf.m2", - value = "helm_robe_pvphorde_a_01_huf.m2", + fileId = "140514", + text = "helm_plate_d_04_trm.m2", + value = "helm_plate_d_04_trm.m2", }, { - fileId = "141899", - text = "helm_robe_pvphorde_a_01_hum.m2", - value = "helm_robe_pvphorde_a_01_hum.m2", + fileId = "454244", + text = "helm_plate_d_04_wof.m2", + value = "helm_plate_d_04_wof.m2", }, { - fileId = "141900", - text = "helm_robe_pvphorde_a_01_nif.m2", - value = "helm_robe_pvphorde_a_01_nif.m2", + fileId = "430066", + text = "helm_plate_d_04_wom.m2", + value = "helm_plate_d_04_wom.m2", }, { - fileId = "141901", - text = "helm_robe_pvphorde_a_01_nim.m2", - value = "helm_robe_pvphorde_a_01_nim.m2", + fileId = "238060", + text = "helm_plate_deathknight_b_01_bef.m2", + value = "helm_plate_deathknight_b_01_bef.m2", }, { - fileId = "141902", - text = "helm_robe_pvphorde_a_01_orf.m2", - value = "helm_robe_pvphorde_a_01_orf.m2", + fileId = "238061", + text = "helm_plate_deathknight_b_01_bem.m2", + value = "helm_plate_deathknight_b_01_bem.m2", }, { - fileId = "141903", - text = "helm_robe_pvphorde_a_01_orm.m2", - value = "helm_robe_pvphorde_a_01_orm.m2", + fileId = "238062", + text = "helm_plate_deathknight_b_01_drf.m2", + value = "helm_plate_deathknight_b_01_drf.m2", }, { - fileId = "141904", - text = "helm_robe_pvphorde_a_01_scf.m2", - value = "helm_robe_pvphorde_a_01_scf.m2", + fileId = "238063", + text = "helm_plate_deathknight_b_01_drm.m2", + value = "helm_plate_deathknight_b_01_drm.m2", }, { - fileId = "141905", - text = "helm_robe_pvphorde_a_01_scm.m2", - value = "helm_robe_pvphorde_a_01_scm.m2", + fileId = "238064", + text = "helm_plate_deathknight_b_01_dwf.m2", + value = "helm_plate_deathknight_b_01_dwf.m2", }, { - fileId = "141906", - text = "helm_robe_pvphorde_a_01_taf.m2", - value = "helm_robe_pvphorde_a_01_taf.m2", + fileId = "238065", + text = "helm_plate_deathknight_b_01_dwm.m2", + value = "helm_plate_deathknight_b_01_dwm.m2", }, { - fileId = "141907", - text = "helm_robe_pvphorde_a_01_tam.m2", - value = "helm_robe_pvphorde_a_01_tam.m2", + fileId = "238066", + text = "helm_plate_deathknight_b_01_gnf.m2", + value = "helm_plate_deathknight_b_01_gnf.m2", }, { - fileId = "141908", - text = "helm_robe_pvphorde_a_01_trf.m2", - value = "helm_robe_pvphorde_a_01_trf.m2", + fileId = "238067", + text = "helm_plate_deathknight_b_01_gnm.m2", + value = "helm_plate_deathknight_b_01_gnm.m2", }, { - fileId = "141909", - text = "helm_robe_pvphorde_a_01_trm.m2", - value = "helm_robe_pvphorde_a_01_trm.m2", + fileId = "238068", + text = "helm_plate_deathknight_b_01_gof.m2", + value = "helm_plate_deathknight_b_01_gof.m2", }, { - fileId = "141913", - text = "helm_robe_pvphorde_b_01_bef.m2", - value = "helm_robe_pvphorde_b_01_bef.m2", + fileId = "238069", + text = "helm_plate_deathknight_b_01_gom.m2", + value = "helm_plate_deathknight_b_01_gom.m2", }, { - fileId = "141914", - text = "helm_robe_pvphorde_b_01_bem.m2", - value = "helm_robe_pvphorde_b_01_bem.m2", + fileId = "238070", + text = "helm_plate_deathknight_b_01_huf.m2", + value = "helm_plate_deathknight_b_01_huf.m2", }, { - fileId = "141915", - text = "helm_robe_pvphorde_b_01_drf.m2", - value = "helm_robe_pvphorde_b_01_drf.m2", + fileId = "238071", + text = "helm_plate_deathknight_b_01_hum.m2", + value = "helm_plate_deathknight_b_01_hum.m2", }, { - fileId = "141916", - text = "helm_robe_pvphorde_b_01_drm.m2", - value = "helm_robe_pvphorde_b_01_drm.m2", + fileId = "238072", + text = "helm_plate_deathknight_b_01_nif.m2", + value = "helm_plate_deathknight_b_01_nif.m2", }, { - fileId = "141917", - text = "helm_robe_pvphorde_b_01_gof.m2", - value = "helm_robe_pvphorde_b_01_gof.m2", + fileId = "238073", + text = "helm_plate_deathknight_b_01_nim.m2", + value = "helm_plate_deathknight_b_01_nim.m2", }, { - fileId = "141918", - text = "helm_robe_pvphorde_c_01_bef.m2", - value = "helm_robe_pvphorde_c_01_bef.m2", + fileId = "238074", + text = "helm_plate_deathknight_b_01_orf.m2", + value = "helm_plate_deathknight_b_01_orf.m2", }, { - fileId = "141919", - text = "helm_robe_pvphorde_c_01_bem.m2", - value = "helm_robe_pvphorde_c_01_bem.m2", + fileId = "238075", + text = "helm_plate_deathknight_b_01_orm.m2", + value = "helm_plate_deathknight_b_01_orm.m2", }, { - fileId = "141920", - text = "helm_robe_pvphorde_c_01_drf.m2", - value = "helm_robe_pvphorde_c_01_drf.m2", + fileId = "238076", + text = "helm_plate_deathknight_b_01_scf.m2", + value = "helm_plate_deathknight_b_01_scf.m2", }, { - fileId = "141921", - text = "helm_robe_pvphorde_c_01_drm.m2", - value = "helm_robe_pvphorde_c_01_drm.m2", + fileId = "238077", + text = "helm_plate_deathknight_b_01_scm.m2", + value = "helm_plate_deathknight_b_01_scm.m2", }, { - fileId = "141922", - text = "helm_robe_pvphorde_c_01_dwf.m2", - value = "helm_robe_pvphorde_c_01_dwf.m2", + fileId = "238078", + text = "helm_plate_deathknight_b_01_taf.m2", + value = "helm_plate_deathknight_b_01_taf.m2", }, { - fileId = "141923", - text = "helm_robe_pvphorde_c_01_dwm.m2", - value = "helm_robe_pvphorde_c_01_dwm.m2", + fileId = "238079", + text = "helm_plate_deathknight_b_01_tam.m2", + value = "helm_plate_deathknight_b_01_tam.m2", }, { - fileId = "141924", - text = "helm_robe_pvphorde_c_01_gnf.m2", - value = "helm_robe_pvphorde_c_01_gnf.m2", + fileId = "238080", + text = "helm_plate_deathknight_b_01_trf.m2", + value = "helm_plate_deathknight_b_01_trf.m2", }, { - fileId = "141925", - text = "helm_robe_pvphorde_c_01_gnm.m2", - value = "helm_robe_pvphorde_c_01_gnm.m2", + fileId = "238081", + text = "helm_plate_deathknight_b_01_trm.m2", + value = "helm_plate_deathknight_b_01_trm.m2", }, { - fileId = "141926", - text = "helm_robe_pvphorde_c_01_gom.m2", - value = "helm_robe_pvphorde_c_01_gom.m2", + fileId = "454207", + text = "helm_plate_deathknight_b_01_wof.m2", + value = "helm_plate_deathknight_b_01_wof.m2", }, { - fileId = "141927", - text = "helm_robe_pvphorde_c_01_huf.m2", - value = "helm_robe_pvphorde_c_01_huf.m2", + fileId = "430057", + text = "helm_plate_deathknight_b_01_wom.m2", + value = "helm_plate_deathknight_b_01_wom.m2", }, { - fileId = "141928", - text = "helm_robe_pvphorde_c_01_hum.m2", - value = "helm_robe_pvphorde_c_01_hum.m2", + fileId = "140535", + text = "helm_plate_dungeonpaladin_a_01_bef.m2", + value = "helm_plate_dungeonpaladin_a_01_bef.m2", }, { - fileId = "141929", - text = "helm_robe_pvphorde_c_01_nif.m2", - value = "helm_robe_pvphorde_c_01_nif.m2", + fileId = "140536", + text = "helm_plate_dungeonpaladin_a_01_bem.m2", + value = "helm_plate_dungeonpaladin_a_01_bem.m2", }, { - fileId = "141930", - text = "helm_robe_pvphorde_c_01_nim.m2", - value = "helm_robe_pvphorde_c_01_nim.m2", + fileId = "140537", + text = "helm_plate_dungeonpaladin_a_01_drf.m2", + value = "helm_plate_dungeonpaladin_a_01_drf.m2", }, { - fileId = "141931", - text = "helm_robe_pvphorde_c_01_orf.m2", - value = "helm_robe_pvphorde_c_01_orf.m2", + fileId = "140538", + text = "helm_plate_dungeonpaladin_a_01_drm.m2", + value = "helm_plate_dungeonpaladin_a_01_drm.m2", }, { - fileId = "141932", - text = "helm_robe_pvphorde_c_01_orm.m2", - value = "helm_robe_pvphorde_c_01_orm.m2", + fileId = "140539", + text = "helm_plate_dungeonpaladin_a_01_dwf.m2", + value = "helm_plate_dungeonpaladin_a_01_dwf.m2", }, { - fileId = "141933", - text = "helm_robe_pvphorde_c_01_scf.m2", - value = "helm_robe_pvphorde_c_01_scf.m2", + fileId = "140540", + text = "helm_plate_dungeonpaladin_a_01_dwm.m2", + value = "helm_plate_dungeonpaladin_a_01_dwm.m2", }, { - fileId = "141934", - text = "helm_robe_pvphorde_c_01_scm.m2", - value = "helm_robe_pvphorde_c_01_scm.m2", + fileId = "140541", + text = "helm_plate_dungeonpaladin_a_01_gnf.m2", + value = "helm_plate_dungeonpaladin_a_01_gnf.m2", }, { - fileId = "141935", - text = "helm_robe_pvphorde_c_01_taf.m2", - value = "helm_robe_pvphorde_c_01_taf.m2", + fileId = "140542", + text = "helm_plate_dungeonpaladin_a_01_gnm.m2", + value = "helm_plate_dungeonpaladin_a_01_gnm.m2", }, { - fileId = "141936", - text = "helm_robe_pvphorde_c_01_tam.m2", - value = "helm_robe_pvphorde_c_01_tam.m2", + fileId = "140543", + text = "helm_plate_dungeonpaladin_a_01_gof.m2", + value = "helm_plate_dungeonpaladin_a_01_gof.m2", }, { - fileId = "141937", - text = "helm_robe_pvphorde_c_01_trf.m2", - value = "helm_robe_pvphorde_c_01_trf.m2", + fileId = "140544", + text = "helm_plate_dungeonpaladin_a_01_gom.m2", + value = "helm_plate_dungeonpaladin_a_01_gom.m2", }, { - fileId = "141938", - text = "helm_robe_pvphorde_c_01_trm.m2", - value = "helm_robe_pvphorde_c_01_trm.m2", + fileId = "140545", + text = "helm_plate_dungeonpaladin_a_01_huf.m2", + value = "helm_plate_dungeonpaladin_a_01_huf.m2", }, { - fileId = "238281", - text = "helm_robe_pvpwarlock_b_01_bef.m2", - value = "helm_robe_pvpwarlock_b_01_bef.m2", + fileId = "140546", + text = "helm_plate_dungeonpaladin_a_01_hum.m2", + value = "helm_plate_dungeonpaladin_a_01_hum.m2", }, { - fileId = "238282", - text = "helm_robe_pvpwarlock_b_01_bem.m2", - value = "helm_robe_pvpwarlock_b_01_bem.m2", + fileId = "140547", + text = "helm_plate_dungeonpaladin_a_01_nif.m2", + value = "helm_plate_dungeonpaladin_a_01_nif.m2", }, { - fileId = "238283", - text = "helm_robe_pvpwarlock_b_01_drf.m2", - value = "helm_robe_pvpwarlock_b_01_drf.m2", + fileId = "140548", + text = "helm_plate_dungeonpaladin_a_01_nim.m2", + value = "helm_plate_dungeonpaladin_a_01_nim.m2", }, { - fileId = "238284", - text = "helm_robe_pvpwarlock_b_01_drm.m2", - value = "helm_robe_pvpwarlock_b_01_drm.m2", + fileId = "140549", + text = "helm_plate_dungeonpaladin_a_01_orf.m2", + value = "helm_plate_dungeonpaladin_a_01_orf.m2", }, { - fileId = "238285", - text = "helm_robe_pvpwarlock_b_01_dwf.m2", - value = "helm_robe_pvpwarlock_b_01_dwf.m2", + fileId = "140550", + text = "helm_plate_dungeonpaladin_a_01_orm.m2", + value = "helm_plate_dungeonpaladin_a_01_orm.m2", }, { - fileId = "238286", - text = "helm_robe_pvpwarlock_b_01_dwm.m2", - value = "helm_robe_pvpwarlock_b_01_dwm.m2", + fileId = "140551", + text = "helm_plate_dungeonpaladin_a_01_scf.m2", + value = "helm_plate_dungeonpaladin_a_01_scf.m2", }, { - fileId = "238287", - text = "helm_robe_pvpwarlock_b_01_gnf.m2", - value = "helm_robe_pvpwarlock_b_01_gnf.m2", + fileId = "140552", + text = "helm_plate_dungeonpaladin_a_01_scm.m2", + value = "helm_plate_dungeonpaladin_a_01_scm.m2", }, { - fileId = "238288", - text = "helm_robe_pvpwarlock_b_01_gnm.m2", - value = "helm_robe_pvpwarlock_b_01_gnm.m2", + fileId = "140553", + text = "helm_plate_dungeonpaladin_a_01_taf.m2", + value = "helm_plate_dungeonpaladin_a_01_taf.m2", }, { - fileId = "238289", - text = "helm_robe_pvpwarlock_b_01_gof.m2", - value = "helm_robe_pvpwarlock_b_01_gof.m2", + fileId = "140554", + text = "helm_plate_dungeonpaladin_a_01_tam.m2", + value = "helm_plate_dungeonpaladin_a_01_tam.m2", }, { - fileId = "238290", - text = "helm_robe_pvpwarlock_b_01_gom.m2", - value = "helm_robe_pvpwarlock_b_01_gom.m2", + fileId = "140555", + text = "helm_plate_dungeonpaladin_a_01_trf.m2", + value = "helm_plate_dungeonpaladin_a_01_trf.m2", }, { - fileId = "238291", - text = "helm_robe_pvpwarlock_b_01_huf.m2", - value = "helm_robe_pvpwarlock_b_01_huf.m2", + fileId = "140556", + text = "helm_plate_dungeonpaladin_a_01_trm.m2", + value = "helm_plate_dungeonpaladin_a_01_trm.m2", }, { - fileId = "238292", - text = "helm_robe_pvpwarlock_b_01_hum.m2", - value = "helm_robe_pvpwarlock_b_01_hum.m2", + fileId = "454208", + text = "helm_plate_dungeonpaladin_a_01_wof.m2", + value = "helm_plate_dungeonpaladin_a_01_wof.m2", }, { - fileId = "238293", - text = "helm_robe_pvpwarlock_b_01_nif.m2", - value = "helm_robe_pvpwarlock_b_01_nif.m2", + fileId = "430058", + text = "helm_plate_dungeonpaladin_a_01_wom.m2", + value = "helm_plate_dungeonpaladin_a_01_wom.m2", }, { - fileId = "238294", - text = "helm_robe_pvpwarlock_b_01_nim.m2", - value = "helm_robe_pvpwarlock_b_01_nim.m2", + fileId = "140560", + text = "helm_plate_dungeonpaladin_b_01_bef.m2", + value = "helm_plate_dungeonpaladin_b_01_bef.m2", }, { - fileId = "238295", - text = "helm_robe_pvpwarlock_b_01_orf.m2", - value = "helm_robe_pvpwarlock_b_01_orf.m2", + fileId = "140561", + text = "helm_plate_dungeonpaladin_b_01_bem.m2", + value = "helm_plate_dungeonpaladin_b_01_bem.m2", }, { - fileId = "238296", - text = "helm_robe_pvpwarlock_b_01_orm.m2", - value = "helm_robe_pvpwarlock_b_01_orm.m2", + fileId = "140562", + text = "helm_plate_dungeonpaladin_b_01_drf.m2", + value = "helm_plate_dungeonpaladin_b_01_drf.m2", }, { - fileId = "238297", - text = "helm_robe_pvpwarlock_b_01_scf.m2", - value = "helm_robe_pvpwarlock_b_01_scf.m2", + fileId = "140563", + text = "helm_plate_dungeonpaladin_b_01_drm.m2", + value = "helm_plate_dungeonpaladin_b_01_drm.m2", }, { - fileId = "238298", - text = "helm_robe_pvpwarlock_b_01_scm.m2", - value = "helm_robe_pvpwarlock_b_01_scm.m2", + fileId = "140564", + text = "helm_plate_dungeonpaladin_b_01_dwf.m2", + value = "helm_plate_dungeonpaladin_b_01_dwf.m2", }, { - fileId = "238299", - text = "helm_robe_pvpwarlock_b_01_taf.m2", - value = "helm_robe_pvpwarlock_b_01_taf.m2", + fileId = "140565", + text = "helm_plate_dungeonpaladin_b_01_dwm.m2", + value = "helm_plate_dungeonpaladin_b_01_dwm.m2", }, { - fileId = "238300", - text = "helm_robe_pvpwarlock_b_01_tam.m2", - value = "helm_robe_pvpwarlock_b_01_tam.m2", + fileId = "140566", + text = "helm_plate_dungeonpaladin_b_01_gnf.m2", + value = "helm_plate_dungeonpaladin_b_01_gnf.m2", }, { - fileId = "238301", - text = "helm_robe_pvpwarlock_b_01_trf.m2", - value = "helm_robe_pvpwarlock_b_01_trf.m2", + fileId = "140567", + text = "helm_plate_dungeonpaladin_b_01_gnm.m2", + value = "helm_plate_dungeonpaladin_b_01_gnm.m2", }, { - fileId = "238302", - text = "helm_robe_pvpwarlock_b_01_trm.m2", - value = "helm_robe_pvpwarlock_b_01_trm.m2", + fileId = "140568", + text = "helm_plate_dungeonpaladin_b_01_gof.m2", + value = "helm_plate_dungeonpaladin_b_01_gof.m2", }, { - fileId = "254143", - text = "helm_robe_pvpwarlock_b_02_bef.m2", - value = "helm_robe_pvpwarlock_b_02_bef.m2", + fileId = "140569", + text = "helm_plate_dungeonpaladin_b_01_gom.m2", + value = "helm_plate_dungeonpaladin_b_01_gom.m2", }, { - fileId = "254144", - text = "helm_robe_pvpwarlock_b_02_bem.m2", - value = "helm_robe_pvpwarlock_b_02_bem.m2", + fileId = "140570", + text = "helm_plate_dungeonpaladin_b_01_huf.m2", + value = "helm_plate_dungeonpaladin_b_01_huf.m2", }, { - fileId = "254145", - text = "helm_robe_pvpwarlock_b_02_drf.m2", - value = "helm_robe_pvpwarlock_b_02_drf.m2", + fileId = "140571", + text = "helm_plate_dungeonpaladin_b_01_hum.m2", + value = "helm_plate_dungeonpaladin_b_01_hum.m2", }, { - fileId = "254146", - text = "helm_robe_pvpwarlock_b_02_drm.m2", - value = "helm_robe_pvpwarlock_b_02_drm.m2", + fileId = "140572", + text = "helm_plate_dungeonpaladin_b_01_nif.m2", + value = "helm_plate_dungeonpaladin_b_01_nif.m2", }, { - fileId = "254147", - text = "helm_robe_pvpwarlock_b_02_dwf.m2", - value = "helm_robe_pvpwarlock_b_02_dwf.m2", + fileId = "140573", + text = "helm_plate_dungeonpaladin_b_01_nim.m2", + value = "helm_plate_dungeonpaladin_b_01_nim.m2", }, { - fileId = "254148", - text = "helm_robe_pvpwarlock_b_02_dwm.m2", - value = "helm_robe_pvpwarlock_b_02_dwm.m2", + fileId = "140574", + text = "helm_plate_dungeonpaladin_b_01_orf.m2", + value = "helm_plate_dungeonpaladin_b_01_orf.m2", }, { - fileId = "254149", - text = "helm_robe_pvpwarlock_b_02_gnf.m2", - value = "helm_robe_pvpwarlock_b_02_gnf.m2", + fileId = "140575", + text = "helm_plate_dungeonpaladin_b_01_orm.m2", + value = "helm_plate_dungeonpaladin_b_01_orm.m2", }, { - fileId = "254150", - text = "helm_robe_pvpwarlock_b_02_gnm.m2", - value = "helm_robe_pvpwarlock_b_02_gnm.m2", + fileId = "140576", + text = "helm_plate_dungeonpaladin_b_01_scf.m2", + value = "helm_plate_dungeonpaladin_b_01_scf.m2", }, { - fileId = "254151", - text = "helm_robe_pvpwarlock_b_02_gof.m2", - value = "helm_robe_pvpwarlock_b_02_gof.m2", + fileId = "140577", + text = "helm_plate_dungeonpaladin_b_01_scm.m2", + value = "helm_plate_dungeonpaladin_b_01_scm.m2", }, { - fileId = "254152", - text = "helm_robe_pvpwarlock_b_02_gom.m2", - value = "helm_robe_pvpwarlock_b_02_gom.m2", + fileId = "140578", + text = "helm_plate_dungeonpaladin_b_01_taf.m2", + value = "helm_plate_dungeonpaladin_b_01_taf.m2", }, { - fileId = "254153", - text = "helm_robe_pvpwarlock_b_02_huf.m2", - value = "helm_robe_pvpwarlock_b_02_huf.m2", + fileId = "140579", + text = "helm_plate_dungeonpaladin_b_01_tam.m2", + value = "helm_plate_dungeonpaladin_b_01_tam.m2", }, { - fileId = "254154", - text = "helm_robe_pvpwarlock_b_02_hum.m2", - value = "helm_robe_pvpwarlock_b_02_hum.m2", + fileId = "140580", + text = "helm_plate_dungeonpaladin_b_01_trf.m2", + value = "helm_plate_dungeonpaladin_b_01_trf.m2", }, { - fileId = "254155", - text = "helm_robe_pvpwarlock_b_02_nif.m2", - value = "helm_robe_pvpwarlock_b_02_nif.m2", + fileId = "140581", + text = "helm_plate_dungeonpaladin_b_01_trm.m2", + value = "helm_plate_dungeonpaladin_b_01_trm.m2", }, { - fileId = "254156", - text = "helm_robe_pvpwarlock_b_02_nim.m2", - value = "helm_robe_pvpwarlock_b_02_nim.m2", + fileId = "454209", + text = "helm_plate_dungeonpaladin_b_01_wof.m2", + value = "helm_plate_dungeonpaladin_b_01_wof.m2", }, { - fileId = "254157", - text = "helm_robe_pvpwarlock_b_02_orf.m2", - value = "helm_robe_pvpwarlock_b_02_orf.m2", + fileId = "430059", + text = "helm_plate_dungeonpaladin_b_01_wom.m2", + value = "helm_plate_dungeonpaladin_b_01_wom.m2", }, { - fileId = "254158", - text = "helm_robe_pvpwarlock_b_02_orm.m2", - value = "helm_robe_pvpwarlock_b_02_orm.m2", + fileId = "140587", + text = "helm_plate_dungeonplate_c_01_bef.m2", + value = "helm_plate_dungeonplate_c_01_bef.m2", }, { - fileId = "254159", - text = "helm_robe_pvpwarlock_b_02_scf.m2", - value = "helm_robe_pvpwarlock_b_02_scf.m2", + fileId = "140588", + text = "helm_plate_dungeonplate_c_01_bem.m2", + value = "helm_plate_dungeonplate_c_01_bem.m2", }, { - fileId = "254160", - text = "helm_robe_pvpwarlock_b_02_scm.m2", - value = "helm_robe_pvpwarlock_b_02_scm.m2", + fileId = "140589", + text = "helm_plate_dungeonplate_c_01_drf.m2", + value = "helm_plate_dungeonplate_c_01_drf.m2", }, { - fileId = "254161", - text = "helm_robe_pvpwarlock_b_02_taf.m2", - value = "helm_robe_pvpwarlock_b_02_taf.m2", + fileId = "140590", + text = "helm_plate_dungeonplate_c_01_drm.m2", + value = "helm_plate_dungeonplate_c_01_drm.m2", }, { - fileId = "254162", - text = "helm_robe_pvpwarlock_b_02_tam.m2", - value = "helm_robe_pvpwarlock_b_02_tam.m2", + fileId = "140591", + text = "helm_plate_dungeonplate_c_01_dwf.m2", + value = "helm_plate_dungeonplate_c_01_dwf.m2", }, { - fileId = "254163", - text = "helm_robe_pvpwarlock_b_02_trf.m2", - value = "helm_robe_pvpwarlock_b_02_trf.m2", + fileId = "140592", + text = "helm_plate_dungeonplate_c_01_dwm.m2", + value = "helm_plate_dungeonplate_c_01_dwm.m2", }, { - fileId = "254164", - text = "helm_robe_pvpwarlock_b_02_trm.m2", - value = "helm_robe_pvpwarlock_b_02_trm.m2", + fileId = "140593", + text = "helm_plate_dungeonplate_c_01_gnf.m2", + value = "helm_plate_dungeonplate_c_01_gnf.m2", }, { - fileId = "305841", - text = "helm_robe_pvpwarlock_b_03_bef.m2", - value = "helm_robe_pvpwarlock_b_03_bef.m2", + fileId = "140594", + text = "helm_plate_dungeonplate_c_01_gnm.m2", + value = "helm_plate_dungeonplate_c_01_gnm.m2", }, { - fileId = "305845", - text = "helm_robe_pvpwarlock_b_03_bem.m2", - value = "helm_robe_pvpwarlock_b_03_bem.m2", + fileId = "140595", + text = "helm_plate_dungeonplate_c_01_gof.m2", + value = "helm_plate_dungeonplate_c_01_gof.m2", }, { - fileId = "305849", - text = "helm_robe_pvpwarlock_b_03_drf.m2", - value = "helm_robe_pvpwarlock_b_03_drf.m2", + fileId = "140596", + text = "helm_plate_dungeonplate_c_01_gom.m2", + value = "helm_plate_dungeonplate_c_01_gom.m2", }, { - fileId = "305853", - text = "helm_robe_pvpwarlock_b_03_drm.m2", - value = "helm_robe_pvpwarlock_b_03_drm.m2", + fileId = "140597", + text = "helm_plate_dungeonplate_c_01_huf.m2", + value = "helm_plate_dungeonplate_c_01_huf.m2", }, { - fileId = "305857", - text = "helm_robe_pvpwarlock_b_03_dwf.m2", - value = "helm_robe_pvpwarlock_b_03_dwf.m2", + fileId = "140598", + text = "helm_plate_dungeonplate_c_01_hum.m2", + value = "helm_plate_dungeonplate_c_01_hum.m2", }, { - fileId = "305861", - text = "helm_robe_pvpwarlock_b_03_dwm.m2", - value = "helm_robe_pvpwarlock_b_03_dwm.m2", + fileId = "140599", + text = "helm_plate_dungeonplate_c_01_nif.m2", + value = "helm_plate_dungeonplate_c_01_nif.m2", }, { - fileId = "305865", - text = "helm_robe_pvpwarlock_b_03_gnf.m2", - value = "helm_robe_pvpwarlock_b_03_gnf.m2", + fileId = "140600", + text = "helm_plate_dungeonplate_c_01_nim.m2", + value = "helm_plate_dungeonplate_c_01_nim.m2", }, { - fileId = "305869", - text = "helm_robe_pvpwarlock_b_03_gnm.m2", - value = "helm_robe_pvpwarlock_b_03_gnm.m2", + fileId = "140601", + text = "helm_plate_dungeonplate_c_01_orf.m2", + value = "helm_plate_dungeonplate_c_01_orf.m2", }, { - fileId = "305873", - text = "helm_robe_pvpwarlock_b_03_gof.m2", - value = "helm_robe_pvpwarlock_b_03_gof.m2", + fileId = "140602", + text = "helm_plate_dungeonplate_c_01_orm.m2", + value = "helm_plate_dungeonplate_c_01_orm.m2", }, { - fileId = "305877", - text = "helm_robe_pvpwarlock_b_03_gom.m2", - value = "helm_robe_pvpwarlock_b_03_gom.m2", + fileId = "140603", + text = "helm_plate_dungeonplate_c_01_scf.m2", + value = "helm_plate_dungeonplate_c_01_scf.m2", }, { - fileId = "305881", - text = "helm_robe_pvpwarlock_b_03_huf.m2", - value = "helm_robe_pvpwarlock_b_03_huf.m2", + fileId = "140604", + text = "helm_plate_dungeonplate_c_01_scm.m2", + value = "helm_plate_dungeonplate_c_01_scm.m2", }, { - fileId = "305885", - text = "helm_robe_pvpwarlock_b_03_hum.m2", - value = "helm_robe_pvpwarlock_b_03_hum.m2", + fileId = "140605", + text = "helm_plate_dungeonplate_c_01_taf.m2", + value = "helm_plate_dungeonplate_c_01_taf.m2", }, { - fileId = "305889", - text = "helm_robe_pvpwarlock_b_03_nif.m2", - value = "helm_robe_pvpwarlock_b_03_nif.m2", + fileId = "140606", + text = "helm_plate_dungeonplate_c_01_tam.m2", + value = "helm_plate_dungeonplate_c_01_tam.m2", }, { - fileId = "305893", - text = "helm_robe_pvpwarlock_b_03_nim.m2", - value = "helm_robe_pvpwarlock_b_03_nim.m2", + fileId = "140607", + text = "helm_plate_dungeonplate_c_01_trf.m2", + value = "helm_plate_dungeonplate_c_01_trf.m2", }, { - fileId = "305897", - text = "helm_robe_pvpwarlock_b_03_orf.m2", - value = "helm_robe_pvpwarlock_b_03_orf.m2", + fileId = "140608", + text = "helm_plate_dungeonplate_c_01_trm.m2", + value = "helm_plate_dungeonplate_c_01_trm.m2", }, { - fileId = "305901", - text = "helm_robe_pvpwarlock_b_03_orm.m2", - value = "helm_robe_pvpwarlock_b_03_orm.m2", + fileId = "454210", + text = "helm_plate_dungeonplate_c_01_wof.m2", + value = "helm_plate_dungeonplate_c_01_wof.m2", }, { - fileId = "305905", - text = "helm_robe_pvpwarlock_b_03_scf.m2", - value = "helm_robe_pvpwarlock_b_03_scf.m2", + fileId = "430060", + text = "helm_plate_dungeonplate_c_01_wom.m2", + value = "helm_plate_dungeonplate_c_01_wom.m2", }, { - fileId = "305909", - text = "helm_robe_pvpwarlock_b_03_scm.m2", - value = "helm_robe_pvpwarlock_b_03_scm.m2", + fileId = "343346", + text = "helm_plate_dungeonplate_c_02_bef.m2", + value = "helm_plate_dungeonplate_c_02_bef.m2", }, { - fileId = "305913", - text = "helm_robe_pvpwarlock_b_03_taf.m2", - value = "helm_robe_pvpwarlock_b_03_taf.m2", + fileId = "343347", + text = "helm_plate_dungeonplate_c_02_bem.m2", + value = "helm_plate_dungeonplate_c_02_bem.m2", }, { - fileId = "305917", - text = "helm_robe_pvpwarlock_b_03_tam.m2", - value = "helm_robe_pvpwarlock_b_03_tam.m2", + fileId = "343348", + text = "helm_plate_dungeonplate_c_02_drf.m2", + value = "helm_plate_dungeonplate_c_02_drf.m2", }, { - fileId = "305921", - text = "helm_robe_pvpwarlock_b_03_trf.m2", - value = "helm_robe_pvpwarlock_b_03_trf.m2", + fileId = "343349", + text = "helm_plate_dungeonplate_c_02_drm.m2", + value = "helm_plate_dungeonplate_c_02_drm.m2", }, { - fileId = "305925", - text = "helm_robe_pvpwarlock_b_03_trm.m2", - value = "helm_robe_pvpwarlock_b_03_trm.m2", + fileId = "343350", + text = "helm_plate_dungeonplate_c_02_dwf.m2", + value = "helm_plate_dungeonplate_c_02_dwf.m2", }, { - fileId = "350589", - text = "helm_robe_pvpwarlock_b_04_bef.m2", - value = "helm_robe_pvpwarlock_b_04_bef.m2", + fileId = "343351", + text = "helm_plate_dungeonplate_c_02_dwm.m2", + value = "helm_plate_dungeonplate_c_02_dwm.m2", }, { - fileId = "350590", - text = "helm_robe_pvpwarlock_b_04_bem.m2", - value = "helm_robe_pvpwarlock_b_04_bem.m2", + fileId = "343352", + text = "helm_plate_dungeonplate_c_02_gnf.m2", + value = "helm_plate_dungeonplate_c_02_gnf.m2", }, { - fileId = "350591", - text = "helm_robe_pvpwarlock_b_04_drf.m2", - value = "helm_robe_pvpwarlock_b_04_drf.m2", + fileId = "343353", + text = "helm_plate_dungeonplate_c_02_gnm.m2", + value = "helm_plate_dungeonplate_c_02_gnm.m2", }, { - fileId = "350592", - text = "helm_robe_pvpwarlock_b_04_drm.m2", - value = "helm_robe_pvpwarlock_b_04_drm.m2", + fileId = "343354", + text = "helm_plate_dungeonplate_c_02_gof.m2", + value = "helm_plate_dungeonplate_c_02_gof.m2", }, { - fileId = "350593", - text = "helm_robe_pvpwarlock_b_04_dwf.m2", - value = "helm_robe_pvpwarlock_b_04_dwf.m2", + fileId = "343355", + text = "helm_plate_dungeonplate_c_02_gom.m2", + value = "helm_plate_dungeonplate_c_02_gom.m2", }, { - fileId = "350594", - text = "helm_robe_pvpwarlock_b_04_dwm.m2", - value = "helm_robe_pvpwarlock_b_04_dwm.m2", + fileId = "343356", + text = "helm_plate_dungeonplate_c_02_huf.m2", + value = "helm_plate_dungeonplate_c_02_huf.m2", }, { - fileId = "350595", - text = "helm_robe_pvpwarlock_b_04_gnf.m2", - value = "helm_robe_pvpwarlock_b_04_gnf.m2", + fileId = "343357", + text = "helm_plate_dungeonplate_c_02_hum.m2", + value = "helm_plate_dungeonplate_c_02_hum.m2", }, { - fileId = "350596", - text = "helm_robe_pvpwarlock_b_04_gnm.m2", - value = "helm_robe_pvpwarlock_b_04_gnm.m2", + fileId = "343358", + text = "helm_plate_dungeonplate_c_02_nif.m2", + value = "helm_plate_dungeonplate_c_02_nif.m2", }, { - fileId = "350597", - text = "helm_robe_pvpwarlock_b_04_gof.m2", - value = "helm_robe_pvpwarlock_b_04_gof.m2", + fileId = "343359", + text = "helm_plate_dungeonplate_c_02_nim.m2", + value = "helm_plate_dungeonplate_c_02_nim.m2", }, { - fileId = "350598", - text = "helm_robe_pvpwarlock_b_04_gom.m2", - value = "helm_robe_pvpwarlock_b_04_gom.m2", + fileId = "343360", + text = "helm_plate_dungeonplate_c_02_orf.m2", + value = "helm_plate_dungeonplate_c_02_orf.m2", }, { - fileId = "350599", - text = "helm_robe_pvpwarlock_b_04_huf.m2", - value = "helm_robe_pvpwarlock_b_04_huf.m2", + fileId = "343361", + text = "helm_plate_dungeonplate_c_02_orm.m2", + value = "helm_plate_dungeonplate_c_02_orm.m2", }, { - fileId = "350600", - text = "helm_robe_pvpwarlock_b_04_hum.m2", - value = "helm_robe_pvpwarlock_b_04_hum.m2", + fileId = "343362", + text = "helm_plate_dungeonplate_c_02_scf.m2", + value = "helm_plate_dungeonplate_c_02_scf.m2", }, { - fileId = "350601", - text = "helm_robe_pvpwarlock_b_04_nif.m2", - value = "helm_robe_pvpwarlock_b_04_nif.m2", + fileId = "343363", + text = "helm_plate_dungeonplate_c_02_scm.m2", + value = "helm_plate_dungeonplate_c_02_scm.m2", }, { - fileId = "350602", - text = "helm_robe_pvpwarlock_b_04_nim.m2", - value = "helm_robe_pvpwarlock_b_04_nim.m2", + fileId = "343364", + text = "helm_plate_dungeonplate_c_02_taf.m2", + value = "helm_plate_dungeonplate_c_02_taf.m2", }, { - fileId = "350603", - text = "helm_robe_pvpwarlock_b_04_orf.m2", - value = "helm_robe_pvpwarlock_b_04_orf.m2", + fileId = "343643", + text = "helm_plate_dungeonplate_c_02_tam.m2", + value = "helm_plate_dungeonplate_c_02_tam.m2", }, { - fileId = "350604", - text = "helm_robe_pvpwarlock_b_04_orm.m2", - value = "helm_robe_pvpwarlock_b_04_orm.m2", + fileId = "343644", + text = "helm_plate_dungeonplate_c_02_trf.m2", + value = "helm_plate_dungeonplate_c_02_trf.m2", }, { - fileId = "350605", - text = "helm_robe_pvpwarlock_b_04_scf.m2", - value = "helm_robe_pvpwarlock_b_04_scf.m2", + fileId = "343645", + text = "helm_plate_dungeonplate_c_02_trm.m2", + value = "helm_plate_dungeonplate_c_02_trm.m2", }, { - fileId = "350606", - text = "helm_robe_pvpwarlock_b_04_scm.m2", - value = "helm_robe_pvpwarlock_b_04_scm.m2", + fileId = "454211", + text = "helm_plate_dungeonplate_c_02_wof.m2", + value = "helm_plate_dungeonplate_c_02_wof.m2", }, { - fileId = "350607", - text = "helm_robe_pvpwarlock_b_04_taf.m2", - value = "helm_robe_pvpwarlock_b_04_taf.m2", + fileId = "430061", + text = "helm_plate_dungeonplate_c_02_wom.m2", + value = "helm_plate_dungeonplate_c_02_wom.m2", }, { - fileId = "350608", - text = "helm_robe_pvpwarlock_b_04_tam.m2", - value = "helm_robe_pvpwarlock_b_04_tam.m2", + fileId = "427182", + text = "helm_plate_dungeonplate_c_03_bef.m2", + value = "helm_plate_dungeonplate_c_03_bef.m2", }, { - fileId = "350609", - text = "helm_robe_pvpwarlock_b_04_trf.m2", - value = "helm_robe_pvpwarlock_b_04_trf.m2", + fileId = "427183", + text = "helm_plate_dungeonplate_c_03_bem.m2", + value = "helm_plate_dungeonplate_c_03_bem.m2", }, { - fileId = "350610", - text = "helm_robe_pvpwarlock_b_04_trm.m2", - value = "helm_robe_pvpwarlock_b_04_trm.m2", + fileId = "427184", + text = "helm_plate_dungeonplate_c_03_drf.m2", + value = "helm_plate_dungeonplate_c_03_drf.m2", }, { - fileId = "141942", - text = "helm_robe_raid_a_01_bef.m2", - value = "helm_robe_raid_a_01_bef.m2", + fileId = "427185", + text = "helm_plate_dungeonplate_c_03_drm.m2", + value = "helm_plate_dungeonplate_c_03_drm.m2", }, { - fileId = "141943", - text = "helm_robe_raid_a_01_bem.m2", - value = "helm_robe_raid_a_01_bem.m2", + fileId = "427186", + text = "helm_plate_dungeonplate_c_03_dwf.m2", + value = "helm_plate_dungeonplate_c_03_dwf.m2", }, { - fileId = "141944", - text = "helm_robe_raid_a_01_drf.m2", - value = "helm_robe_raid_a_01_drf.m2", + fileId = "427187", + text = "helm_plate_dungeonplate_c_03_dwm.m2", + value = "helm_plate_dungeonplate_c_03_dwm.m2", }, { - fileId = "141945", - text = "helm_robe_raid_a_01_drm.m2", - value = "helm_robe_raid_a_01_drm.m2", + fileId = "427188", + text = "helm_plate_dungeonplate_c_03_gnf.m2", + value = "helm_plate_dungeonplate_c_03_gnf.m2", }, { - fileId = "141946", - text = "helm_robe_raid_a_01_gof.m2", - value = "helm_robe_raid_a_01_gof.m2", + fileId = "427189", + text = "helm_plate_dungeonplate_c_03_gnm.m2", + value = "helm_plate_dungeonplate_c_03_gnm.m2", }, { - fileId = "141948", - text = "helm_robe_raidmage_a_01_bef.m2", - value = "helm_robe_raidmage_a_01_bef.m2", + fileId = "427190", + text = "helm_plate_dungeonplate_c_03_gof.m2", + value = "helm_plate_dungeonplate_c_03_gof.m2", }, { - fileId = "141949", - text = "helm_robe_raidmage_a_01_bem.m2", - value = "helm_robe_raidmage_a_01_bem.m2", + fileId = "427191", + text = "helm_plate_dungeonplate_c_03_gom.m2", + value = "helm_plate_dungeonplate_c_03_gom.m2", }, { - fileId = "141950", - text = "helm_robe_raidmage_a_01_drf.m2", - value = "helm_robe_raidmage_a_01_drf.m2", + fileId = "427192", + text = "helm_plate_dungeonplate_c_03_huf.m2", + value = "helm_plate_dungeonplate_c_03_huf.m2", }, { - fileId = "141951", - text = "helm_robe_raidmage_a_01_drm.m2", - value = "helm_robe_raidmage_a_01_drm.m2", + fileId = "427193", + text = "helm_plate_dungeonplate_c_03_hum.m2", + value = "helm_plate_dungeonplate_c_03_hum.m2", }, { - fileId = "141952", - text = "helm_robe_raidmage_a_01_dwf.m2", - value = "helm_robe_raidmage_a_01_dwf.m2", + fileId = "427194", + text = "helm_plate_dungeonplate_c_03_nif.m2", + value = "helm_plate_dungeonplate_c_03_nif.m2", }, { - fileId = "141953", - text = "helm_robe_raidmage_a_01_dwm.m2", - value = "helm_robe_raidmage_a_01_dwm.m2", + fileId = "427195", + text = "helm_plate_dungeonplate_c_03_nim.m2", + value = "helm_plate_dungeonplate_c_03_nim.m2", }, { - fileId = "141954", - text = "helm_robe_raidmage_a_01_gnf.m2", - value = "helm_robe_raidmage_a_01_gnf.m2", + fileId = "427196", + text = "helm_plate_dungeonplate_c_03_orf.m2", + value = "helm_plate_dungeonplate_c_03_orf.m2", }, { - fileId = "141955", - text = "helm_robe_raidmage_a_01_gnm.m2", - value = "helm_robe_raidmage_a_01_gnm.m2", + fileId = "427197", + text = "helm_plate_dungeonplate_c_03_orm.m2", + value = "helm_plate_dungeonplate_c_03_orm.m2", }, { - fileId = "141956", - text = "helm_robe_raidmage_a_01_gof.m2", - value = "helm_robe_raidmage_a_01_gof.m2", + fileId = "427198", + text = "helm_plate_dungeonplate_c_03_scf.m2", + value = "helm_plate_dungeonplate_c_03_scf.m2", }, { - fileId = "141957", - text = "helm_robe_raidmage_a_01_gom.m2", - value = "helm_robe_raidmage_a_01_gom.m2", + fileId = "427199", + text = "helm_plate_dungeonplate_c_03_scm.m2", + value = "helm_plate_dungeonplate_c_03_scm.m2", }, { - fileId = "141958", - text = "helm_robe_raidmage_a_01_huf.m2", - value = "helm_robe_raidmage_a_01_huf.m2", + fileId = "427200", + text = "helm_plate_dungeonplate_c_03_taf.m2", + value = "helm_plate_dungeonplate_c_03_taf.m2", }, { - fileId = "141959", - text = "helm_robe_raidmage_a_01_hum.m2", - value = "helm_robe_raidmage_a_01_hum.m2", + fileId = "427201", + text = "helm_plate_dungeonplate_c_03_tam.m2", + value = "helm_plate_dungeonplate_c_03_tam.m2", }, { - fileId = "141960", - text = "helm_robe_raidmage_a_01_nif.m2", - value = "helm_robe_raidmage_a_01_nif.m2", + fileId = "427202", + text = "helm_plate_dungeonplate_c_03_trf.m2", + value = "helm_plate_dungeonplate_c_03_trf.m2", }, { - fileId = "141961", - text = "helm_robe_raidmage_a_01_nim.m2", - value = "helm_robe_raidmage_a_01_nim.m2", + fileId = "427203", + text = "helm_plate_dungeonplate_c_03_trm.m2", + value = "helm_plate_dungeonplate_c_03_trm.m2", }, { - fileId = "141962", - text = "helm_robe_raidmage_a_01_orf.m2", - value = "helm_robe_raidmage_a_01_orf.m2", + fileId = "468063", + text = "helm_plate_dungeonplate_c_03_wof.m2", + value = "helm_plate_dungeonplate_c_03_wof.m2", }, { - fileId = "141963", - text = "helm_robe_raidmage_a_01_orm.m2", - value = "helm_robe_raidmage_a_01_orm.m2", + fileId = "427204", + text = "helm_plate_dungeonplate_c_03_wom.m2", + value = "helm_plate_dungeonplate_c_03_wom.m2", }, { - fileId = "141964", - text = "helm_robe_raidmage_a_01_scf.m2", - value = "helm_robe_raidmage_a_01_scf.m2", + fileId = "454215", + text = "helm_plate_dungeonplate_c_04_bef.m2", + value = "helm_plate_dungeonplate_c_04_bef.m2", }, { - fileId = "141965", - text = "helm_robe_raidmage_a_01_scm.m2", - value = "helm_robe_raidmage_a_01_scm.m2", + fileId = "454216", + text = "helm_plate_dungeonplate_c_04_bem.m2", + value = "helm_plate_dungeonplate_c_04_bem.m2", }, { - fileId = "141966", - text = "helm_robe_raidmage_a_01_taf.m2", - value = "helm_robe_raidmage_a_01_taf.m2", + fileId = "454217", + text = "helm_plate_dungeonplate_c_04_drf.m2", + value = "helm_plate_dungeonplate_c_04_drf.m2", }, { - fileId = "141967", - text = "helm_robe_raidmage_a_01_tam.m2", - value = "helm_robe_raidmage_a_01_tam.m2", + fileId = "454218", + text = "helm_plate_dungeonplate_c_04_drm.m2", + value = "helm_plate_dungeonplate_c_04_drm.m2", }, { - fileId = "141968", - text = "helm_robe_raidmage_a_01_trf.m2", - value = "helm_robe_raidmage_a_01_trf.m2", + fileId = "454219", + text = "helm_plate_dungeonplate_c_04_dwf.m2", + value = "helm_plate_dungeonplate_c_04_dwf.m2", }, { - fileId = "141969", - text = "helm_robe_raidmage_a_01_trm.m2", - value = "helm_robe_raidmage_a_01_trm.m2", + fileId = "454220", + text = "helm_plate_dungeonplate_c_04_dwm.m2", + value = "helm_plate_dungeonplate_c_04_dwm.m2", }, { - fileId = "141974", - text = "helm_robe_raidmage_b_01_bef.m2", - value = "helm_robe_raidmage_b_01_bef.m2", + fileId = "454221", + text = "helm_plate_dungeonplate_c_04_gnf.m2", + value = "helm_plate_dungeonplate_c_04_gnf.m2", }, { - fileId = "141975", - text = "helm_robe_raidmage_b_01_bem.m2", - value = "helm_robe_raidmage_b_01_bem.m2", + fileId = "454222", + text = "helm_plate_dungeonplate_c_04_gnm.m2", + value = "helm_plate_dungeonplate_c_04_gnm.m2", }, { - fileId = "141976", - text = "helm_robe_raidmage_b_01_drf.m2", - value = "helm_robe_raidmage_b_01_drf.m2", + fileId = "454223", + text = "helm_plate_dungeonplate_c_04_gof.m2", + value = "helm_plate_dungeonplate_c_04_gof.m2", }, { - fileId = "141977", - text = "helm_robe_raidmage_b_01_drm.m2", - value = "helm_robe_raidmage_b_01_drm.m2", + fileId = "454224", + text = "helm_plate_dungeonplate_c_04_gom.m2", + value = "helm_plate_dungeonplate_c_04_gom.m2", }, { - fileId = "141978", - text = "helm_robe_raidmage_b_01_dwf.m2", - value = "helm_robe_raidmage_b_01_dwf.m2", + fileId = "454225", + text = "helm_plate_dungeonplate_c_04_huf.m2", + value = "helm_plate_dungeonplate_c_04_huf.m2", }, { - fileId = "141979", - text = "helm_robe_raidmage_b_01_dwm.m2", - value = "helm_robe_raidmage_b_01_dwm.m2", + fileId = "454226", + text = "helm_plate_dungeonplate_c_04_hum.m2", + value = "helm_plate_dungeonplate_c_04_hum.m2", }, { - fileId = "141980", - text = "helm_robe_raidmage_b_01_gnf.m2", - value = "helm_robe_raidmage_b_01_gnf.m2", + fileId = "454227", + text = "helm_plate_dungeonplate_c_04_nif.m2", + value = "helm_plate_dungeonplate_c_04_nif.m2", }, { - fileId = "141981", - text = "helm_robe_raidmage_b_01_gnm.m2", - value = "helm_robe_raidmage_b_01_gnm.m2", + fileId = "454228", + text = "helm_plate_dungeonplate_c_04_nim.m2", + value = "helm_plate_dungeonplate_c_04_nim.m2", }, { - fileId = "141982", - text = "helm_robe_raidmage_b_01_gof.m2", - value = "helm_robe_raidmage_b_01_gof.m2", + fileId = "454229", + text = "helm_plate_dungeonplate_c_04_orf.m2", + value = "helm_plate_dungeonplate_c_04_orf.m2", }, { - fileId = "141983", - text = "helm_robe_raidmage_b_01_gom.m2", - value = "helm_robe_raidmage_b_01_gom.m2", + fileId = "454230", + text = "helm_plate_dungeonplate_c_04_orm.m2", + value = "helm_plate_dungeonplate_c_04_orm.m2", }, { - fileId = "141984", - text = "helm_robe_raidmage_b_01_huf.m2", - value = "helm_robe_raidmage_b_01_huf.m2", + fileId = "454231", + text = "helm_plate_dungeonplate_c_04_scf.m2", + value = "helm_plate_dungeonplate_c_04_scf.m2", }, { - fileId = "141985", - text = "helm_robe_raidmage_b_01_hum.m2", - value = "helm_robe_raidmage_b_01_hum.m2", + fileId = "454232", + text = "helm_plate_dungeonplate_c_04_scm.m2", + value = "helm_plate_dungeonplate_c_04_scm.m2", }, { - fileId = "141986", - text = "helm_robe_raidmage_b_01_nif.m2", - value = "helm_robe_raidmage_b_01_nif.m2", + fileId = "454233", + text = "helm_plate_dungeonplate_c_04_taf.m2", + value = "helm_plate_dungeonplate_c_04_taf.m2", }, { - fileId = "141987", - text = "helm_robe_raidmage_b_01_nim.m2", - value = "helm_robe_raidmage_b_01_nim.m2", + fileId = "454234", + text = "helm_plate_dungeonplate_c_04_tam.m2", + value = "helm_plate_dungeonplate_c_04_tam.m2", }, { - fileId = "141988", - text = "helm_robe_raidmage_b_01_orf.m2", - value = "helm_robe_raidmage_b_01_orf.m2", + fileId = "454235", + text = "helm_plate_dungeonplate_c_04_trf.m2", + value = "helm_plate_dungeonplate_c_04_trf.m2", }, { - fileId = "141989", - text = "helm_robe_raidmage_b_01_orm.m2", - value = "helm_robe_raidmage_b_01_orm.m2", + fileId = "454236", + text = "helm_plate_dungeonplate_c_04_trm.m2", + value = "helm_plate_dungeonplate_c_04_trm.m2", }, { - fileId = "141990", - text = "helm_robe_raidmage_b_01_scf.m2", - value = "helm_robe_raidmage_b_01_scf.m2", + fileId = "454237", + text = "helm_plate_dungeonplate_c_04_wof.m2", + value = "helm_plate_dungeonplate_c_04_wof.m2", }, { - fileId = "141991", - text = "helm_robe_raidmage_b_01_scm.m2", - value = "helm_robe_raidmage_b_01_scm.m2", + fileId = "454238", + text = "helm_plate_dungeonplate_c_04_wom.m2", + value = "helm_plate_dungeonplate_c_04_wom.m2", }, { - fileId = "141992", - text = "helm_robe_raidmage_b_01_taf.m2", - value = "helm_robe_raidmage_b_01_taf.m2", + fileId = "522752", + text = "helm_plate_dungeonplate_c_05_bef.m2", + value = "helm_plate_dungeonplate_c_05_bef.m2", }, { - fileId = "141993", - text = "helm_robe_raidmage_b_01_tam.m2", - value = "helm_robe_raidmage_b_01_tam.m2", + fileId = "522754", + text = "helm_plate_dungeonplate_c_05_bem.m2", + value = "helm_plate_dungeonplate_c_05_bem.m2", }, { - fileId = "141994", - text = "helm_robe_raidmage_b_01_trf.m2", - value = "helm_robe_raidmage_b_01_trf.m2", + fileId = "522756", + text = "helm_plate_dungeonplate_c_05_drf.m2", + value = "helm_plate_dungeonplate_c_05_drf.m2", }, { - fileId = "141995", - text = "helm_robe_raidmage_b_01_trm.m2", - value = "helm_robe_raidmage_b_01_trm.m2", + fileId = "522758", + text = "helm_plate_dungeonplate_c_05_drm.m2", + value = "helm_plate_dungeonplate_c_05_drm.m2", }, { - fileId = "142001", - text = "helm_robe_raidmage_c_01_bef.m2", - value = "helm_robe_raidmage_c_01_bef.m2", + fileId = "522760", + text = "helm_plate_dungeonplate_c_05_dwf.m2", + value = "helm_plate_dungeonplate_c_05_dwf.m2", }, { - fileId = "142002", - text = "helm_robe_raidmage_c_01_bem.m2", - value = "helm_robe_raidmage_c_01_bem.m2", + fileId = "522762", + text = "helm_plate_dungeonplate_c_05_dwm.m2", + value = "helm_plate_dungeonplate_c_05_dwm.m2", }, { - fileId = "142003", - text = "helm_robe_raidmage_c_01_drf.m2", - value = "helm_robe_raidmage_c_01_drf.m2", + fileId = "522764", + text = "helm_plate_dungeonplate_c_05_gnf.m2", + value = "helm_plate_dungeonplate_c_05_gnf.m2", }, { - fileId = "142004", - text = "helm_robe_raidmage_c_01_drm.m2", - value = "helm_robe_raidmage_c_01_drm.m2", + fileId = "522766", + text = "helm_plate_dungeonplate_c_05_gnm.m2", + value = "helm_plate_dungeonplate_c_05_gnm.m2", }, { - fileId = "142005", - text = "helm_robe_raidmage_c_01_dwf.m2", - value = "helm_robe_raidmage_c_01_dwf.m2", + fileId = "522768", + text = "helm_plate_dungeonplate_c_05_gof.m2", + value = "helm_plate_dungeonplate_c_05_gof.m2", }, { - fileId = "142006", - text = "helm_robe_raidmage_c_01_dwm.m2", - value = "helm_robe_raidmage_c_01_dwm.m2", + fileId = "522770", + text = "helm_plate_dungeonplate_c_05_gom.m2", + value = "helm_plate_dungeonplate_c_05_gom.m2", }, { - fileId = "142007", - text = "helm_robe_raidmage_c_01_gnf.m2", - value = "helm_robe_raidmage_c_01_gnf.m2", + fileId = "522772", + text = "helm_plate_dungeonplate_c_05_huf.m2", + value = "helm_plate_dungeonplate_c_05_huf.m2", }, { - fileId = "142008", - text = "helm_robe_raidmage_c_01_gnm.m2", - value = "helm_robe_raidmage_c_01_gnm.m2", + fileId = "522774", + text = "helm_plate_dungeonplate_c_05_hum.m2", + value = "helm_plate_dungeonplate_c_05_hum.m2", }, { - fileId = "142009", - text = "helm_robe_raidmage_c_01_gof.m2", - value = "helm_robe_raidmage_c_01_gof.m2", + fileId = "522776", + text = "helm_plate_dungeonplate_c_05_nif.m2", + value = "helm_plate_dungeonplate_c_05_nif.m2", }, { - fileId = "142010", - text = "helm_robe_raidmage_c_01_gom.m2", - value = "helm_robe_raidmage_c_01_gom.m2", + fileId = "522778", + text = "helm_plate_dungeonplate_c_05_nim.m2", + value = "helm_plate_dungeonplate_c_05_nim.m2", }, { - fileId = "142011", - text = "helm_robe_raidmage_c_01_huf.m2", - value = "helm_robe_raidmage_c_01_huf.m2", + fileId = "522780", + text = "helm_plate_dungeonplate_c_05_orf.m2", + value = "helm_plate_dungeonplate_c_05_orf.m2", }, { - fileId = "142012", - text = "helm_robe_raidmage_c_01_hum.m2", - value = "helm_robe_raidmage_c_01_hum.m2", + fileId = "522782", + text = "helm_plate_dungeonplate_c_05_orm.m2", + value = "helm_plate_dungeonplate_c_05_orm.m2", }, { - fileId = "142013", - text = "helm_robe_raidmage_c_01_nif.m2", - value = "helm_robe_raidmage_c_01_nif.m2", + fileId = "522784", + text = "helm_plate_dungeonplate_c_05_scf.m2", + value = "helm_plate_dungeonplate_c_05_scf.m2", }, { - fileId = "142014", - text = "helm_robe_raidmage_c_01_nim.m2", - value = "helm_robe_raidmage_c_01_nim.m2", + fileId = "522786", + text = "helm_plate_dungeonplate_c_05_scm.m2", + value = "helm_plate_dungeonplate_c_05_scm.m2", }, { - fileId = "142015", - text = "helm_robe_raidmage_c_01_orf.m2", - value = "helm_robe_raidmage_c_01_orf.m2", + fileId = "522788", + text = "helm_plate_dungeonplate_c_05_taf.m2", + value = "helm_plate_dungeonplate_c_05_taf.m2", }, { - fileId = "142016", - text = "helm_robe_raidmage_c_01_orm.m2", - value = "helm_robe_raidmage_c_01_orm.m2", + fileId = "522790", + text = "helm_plate_dungeonplate_c_05_tam.m2", + value = "helm_plate_dungeonplate_c_05_tam.m2", }, { - fileId = "142017", - text = "helm_robe_raidmage_c_01_scf.m2", - value = "helm_robe_raidmage_c_01_scf.m2", + fileId = "522792", + text = "helm_plate_dungeonplate_c_05_trf.m2", + value = "helm_plate_dungeonplate_c_05_trf.m2", }, { - fileId = "142018", - text = "helm_robe_raidmage_c_01_scm.m2", - value = "helm_robe_raidmage_c_01_scm.m2", + fileId = "522794", + text = "helm_plate_dungeonplate_c_05_trm.m2", + value = "helm_plate_dungeonplate_c_05_trm.m2", }, { - fileId = "142019", - text = "helm_robe_raidmage_c_01_taf.m2", - value = "helm_robe_raidmage_c_01_taf.m2", + fileId = "522796", + text = "helm_plate_dungeonplate_c_05_wof.m2", + value = "helm_plate_dungeonplate_c_05_wof.m2", }, { - fileId = "142020", - text = "helm_robe_raidmage_c_01_tam.m2", - value = "helm_robe_raidmage_c_01_tam.m2", + fileId = "522798", + text = "helm_plate_dungeonplate_c_05_wom.m2", + value = "helm_plate_dungeonplate_c_05_wom.m2", }, { - fileId = "142021", - text = "helm_robe_raidmage_c_01_trf.m2", - value = "helm_robe_raidmage_c_01_trf.m2", + fileId = "533760", + text = "helm_plate_dungeonplate_c_06_bef.m2", + value = "helm_plate_dungeonplate_c_06_bef.m2", }, { - fileId = "142022", - text = "helm_robe_raidmage_c_01_trm.m2", - value = "helm_robe_raidmage_c_01_trm.m2", + fileId = "533762", + text = "helm_plate_dungeonplate_c_06_bem.m2", + value = "helm_plate_dungeonplate_c_06_bem.m2", }, { - fileId = "238306", - text = "helm_robe_raidmage_c_02_bef.m2", - value = "helm_robe_raidmage_c_02_bef.m2", + fileId = "533764", + text = "helm_plate_dungeonplate_c_06_drf.m2", + value = "helm_plate_dungeonplate_c_06_drf.m2", }, { - fileId = "238307", - text = "helm_robe_raidmage_c_02_bem.m2", - value = "helm_robe_raidmage_c_02_bem.m2", + fileId = "533766", + text = "helm_plate_dungeonplate_c_06_drm.m2", + value = "helm_plate_dungeonplate_c_06_drm.m2", }, { - fileId = "238308", - text = "helm_robe_raidmage_c_02_drf.m2", - value = "helm_robe_raidmage_c_02_drf.m2", + fileId = "533768", + text = "helm_plate_dungeonplate_c_06_dwf.m2", + value = "helm_plate_dungeonplate_c_06_dwf.m2", }, { - fileId = "238309", - text = "helm_robe_raidmage_c_02_drm.m2", - value = "helm_robe_raidmage_c_02_drm.m2", + fileId = "533770", + text = "helm_plate_dungeonplate_c_06_dwm.m2", + value = "helm_plate_dungeonplate_c_06_dwm.m2", }, { - fileId = "238310", - text = "helm_robe_raidmage_c_02_dwf.m2", - value = "helm_robe_raidmage_c_02_dwf.m2", + fileId = "533772", + text = "helm_plate_dungeonplate_c_06_gnf.m2", + value = "helm_plate_dungeonplate_c_06_gnf.m2", }, { - fileId = "238311", - text = "helm_robe_raidmage_c_02_dwm.m2", - value = "helm_robe_raidmage_c_02_dwm.m2", + fileId = "533774", + text = "helm_plate_dungeonplate_c_06_gnm.m2", + value = "helm_plate_dungeonplate_c_06_gnm.m2", }, { - fileId = "238312", - text = "helm_robe_raidmage_c_02_gnf.m2", - value = "helm_robe_raidmage_c_02_gnf.m2", + fileId = "533776", + text = "helm_plate_dungeonplate_c_06_gof.m2", + value = "helm_plate_dungeonplate_c_06_gof.m2", }, { - fileId = "238313", - text = "helm_robe_raidmage_c_02_gnm.m2", - value = "helm_robe_raidmage_c_02_gnm.m2", + fileId = "533778", + text = "helm_plate_dungeonplate_c_06_gom.m2", + value = "helm_plate_dungeonplate_c_06_gom.m2", }, { - fileId = "238314", - text = "helm_robe_raidmage_c_02_gof.m2", - value = "helm_robe_raidmage_c_02_gof.m2", + fileId = "533780", + text = "helm_plate_dungeonplate_c_06_huf.m2", + value = "helm_plate_dungeonplate_c_06_huf.m2", }, { - fileId = "238315", - text = "helm_robe_raidmage_c_02_gom.m2", - value = "helm_robe_raidmage_c_02_gom.m2", + fileId = "533782", + text = "helm_plate_dungeonplate_c_06_hum.m2", + value = "helm_plate_dungeonplate_c_06_hum.m2", }, { - fileId = "238316", - text = "helm_robe_raidmage_c_02_huf.m2", - value = "helm_robe_raidmage_c_02_huf.m2", + fileId = "533784", + text = "helm_plate_dungeonplate_c_06_nif.m2", + value = "helm_plate_dungeonplate_c_06_nif.m2", }, { - fileId = "238317", - text = "helm_robe_raidmage_c_02_hum.m2", - value = "helm_robe_raidmage_c_02_hum.m2", + fileId = "533786", + text = "helm_plate_dungeonplate_c_06_nim.m2", + value = "helm_plate_dungeonplate_c_06_nim.m2", }, { - fileId = "238318", - text = "helm_robe_raidmage_c_02_nif.m2", - value = "helm_robe_raidmage_c_02_nif.m2", + fileId = "533788", + text = "helm_plate_dungeonplate_c_06_orf.m2", + value = "helm_plate_dungeonplate_c_06_orf.m2", }, { - fileId = "238319", - text = "helm_robe_raidmage_c_02_nim.m2", - value = "helm_robe_raidmage_c_02_nim.m2", + fileId = "533790", + text = "helm_plate_dungeonplate_c_06_orm.m2", + value = "helm_plate_dungeonplate_c_06_orm.m2", }, { - fileId = "238320", - text = "helm_robe_raidmage_c_02_orf.m2", - value = "helm_robe_raidmage_c_02_orf.m2", + fileId = "533792", + text = "helm_plate_dungeonplate_c_06_scf.m2", + value = "helm_plate_dungeonplate_c_06_scf.m2", }, { - fileId = "238321", - text = "helm_robe_raidmage_c_02_orm.m2", - value = "helm_robe_raidmage_c_02_orm.m2", + fileId = "533794", + text = "helm_plate_dungeonplate_c_06_scm.m2", + value = "helm_plate_dungeonplate_c_06_scm.m2", }, { - fileId = "238322", - text = "helm_robe_raidmage_c_02_scf.m2", - value = "helm_robe_raidmage_c_02_scf.m2", + fileId = "533796", + text = "helm_plate_dungeonplate_c_06_taf.m2", + value = "helm_plate_dungeonplate_c_06_taf.m2", }, { - fileId = "238323", - text = "helm_robe_raidmage_c_02_scm.m2", - value = "helm_robe_raidmage_c_02_scm.m2", + fileId = "533798", + text = "helm_plate_dungeonplate_c_06_tam.m2", + value = "helm_plate_dungeonplate_c_06_tam.m2", }, { - fileId = "238324", - text = "helm_robe_raidmage_c_02_taf.m2", - value = "helm_robe_raidmage_c_02_taf.m2", + fileId = "533800", + text = "helm_plate_dungeonplate_c_06_trf.m2", + value = "helm_plate_dungeonplate_c_06_trf.m2", }, { - fileId = "238325", - text = "helm_robe_raidmage_c_02_tam.m2", - value = "helm_robe_raidmage_c_02_tam.m2", + fileId = "533802", + text = "helm_plate_dungeonplate_c_06_trm.m2", + value = "helm_plate_dungeonplate_c_06_trm.m2", }, { - fileId = "238326", - text = "helm_robe_raidmage_c_02_trf.m2", - value = "helm_robe_raidmage_c_02_trf.m2", + fileId = "533804", + text = "helm_plate_dungeonplate_c_06_wof.m2", + value = "helm_plate_dungeonplate_c_06_wof.m2", }, { - fileId = "238327", - text = "helm_robe_raidmage_c_02_trm.m2", - value = "helm_robe_raidmage_c_02_trm.m2", + fileId = "533806", + text = "helm_plate_dungeonplate_c_06_wom.m2", + value = "helm_plate_dungeonplate_c_06_wom.m2", }, { - fileId = "142024", - text = "helm_robe_raidmage_d_01_bef.m2", - value = "helm_robe_raidmage_d_01_bef.m2", + fileId = "140612", + text = "helm_plate_dungeonwarrior_a_01_bef.m2", + value = "helm_plate_dungeonwarrior_a_01_bef.m2", }, { - fileId = "142025", - text = "helm_robe_raidmage_d_01_bem.m2", - value = "helm_robe_raidmage_d_01_bem.m2", + fileId = "140613", + text = "helm_plate_dungeonwarrior_a_01_bem.m2", + value = "helm_plate_dungeonwarrior_a_01_bem.m2", }, { - fileId = "142026", - text = "helm_robe_raidmage_d_01_drf.m2", - value = "helm_robe_raidmage_d_01_drf.m2", + fileId = "140614", + text = "helm_plate_dungeonwarrior_a_01_drf.m2", + value = "helm_plate_dungeonwarrior_a_01_drf.m2", }, { - fileId = "142027", - text = "helm_robe_raidmage_d_01_drm.m2", - value = "helm_robe_raidmage_d_01_drm.m2", + fileId = "140615", + text = "helm_plate_dungeonwarrior_a_01_drm.m2", + value = "helm_plate_dungeonwarrior_a_01_drm.m2", }, { - fileId = "142028", - text = "helm_robe_raidmage_d_01_dwf.m2", - value = "helm_robe_raidmage_d_01_dwf.m2", + fileId = "140616", + text = "helm_plate_dungeonwarrior_a_01_dwf.m2", + value = "helm_plate_dungeonwarrior_a_01_dwf.m2", }, { - fileId = "142029", - text = "helm_robe_raidmage_d_01_dwm.m2", - value = "helm_robe_raidmage_d_01_dwm.m2", + fileId = "140617", + text = "helm_plate_dungeonwarrior_a_01_dwm.m2", + value = "helm_plate_dungeonwarrior_a_01_dwm.m2", }, { - fileId = "142030", - text = "helm_robe_raidmage_d_01_gnf.m2", - value = "helm_robe_raidmage_d_01_gnf.m2", + fileId = "140618", + text = "helm_plate_dungeonwarrior_a_01_gnf.m2", + value = "helm_plate_dungeonwarrior_a_01_gnf.m2", }, { - fileId = "142031", - text = "helm_robe_raidmage_d_01_gnm.m2", - value = "helm_robe_raidmage_d_01_gnm.m2", + fileId = "140619", + text = "helm_plate_dungeonwarrior_a_01_gnm.m2", + value = "helm_plate_dungeonwarrior_a_01_gnm.m2", }, { - fileId = "142032", - text = "helm_robe_raidmage_d_01_gof.m2", - value = "helm_robe_raidmage_d_01_gof.m2", + fileId = "140620", + text = "helm_plate_dungeonwarrior_a_01_gof.m2", + value = "helm_plate_dungeonwarrior_a_01_gof.m2", }, { - fileId = "142033", - text = "helm_robe_raidmage_d_01_gom.m2", - value = "helm_robe_raidmage_d_01_gom.m2", + fileId = "140621", + text = "helm_plate_dungeonwarrior_a_01_gom.m2", + value = "helm_plate_dungeonwarrior_a_01_gom.m2", }, { - fileId = "142034", - text = "helm_robe_raidmage_d_01_huf.m2", - value = "helm_robe_raidmage_d_01_huf.m2", + fileId = "140622", + text = "helm_plate_dungeonwarrior_a_01_huf.m2", + value = "helm_plate_dungeonwarrior_a_01_huf.m2", }, { - fileId = "142035", - text = "helm_robe_raidmage_d_01_hum.m2", - value = "helm_robe_raidmage_d_01_hum.m2", + fileId = "140623", + text = "helm_plate_dungeonwarrior_a_01_hum.m2", + value = "helm_plate_dungeonwarrior_a_01_hum.m2", }, { - fileId = "142036", - text = "helm_robe_raidmage_d_01_nif.m2", - value = "helm_robe_raidmage_d_01_nif.m2", + fileId = "140624", + text = "helm_plate_dungeonwarrior_a_01_nif.m2", + value = "helm_plate_dungeonwarrior_a_01_nif.m2", }, { - fileId = "142037", - text = "helm_robe_raidmage_d_01_nim.m2", - value = "helm_robe_raidmage_d_01_nim.m2", + fileId = "140625", + text = "helm_plate_dungeonwarrior_a_01_nim.m2", + value = "helm_plate_dungeonwarrior_a_01_nim.m2", }, { - fileId = "142038", - text = "helm_robe_raidmage_d_01_orf.m2", - value = "helm_robe_raidmage_d_01_orf.m2", + fileId = "140626", + text = "helm_plate_dungeonwarrior_a_01_orf.m2", + value = "helm_plate_dungeonwarrior_a_01_orf.m2", }, { - fileId = "142039", - text = "helm_robe_raidmage_d_01_orm.m2", - value = "helm_robe_raidmage_d_01_orm.m2", + fileId = "140627", + text = "helm_plate_dungeonwarrior_a_01_orm.m2", + value = "helm_plate_dungeonwarrior_a_01_orm.m2", }, { - fileId = "142040", - text = "helm_robe_raidmage_d_01_scf.m2", - value = "helm_robe_raidmage_d_01_scf.m2", + fileId = "140628", + text = "helm_plate_dungeonwarrior_a_01_scf.m2", + value = "helm_plate_dungeonwarrior_a_01_scf.m2", }, { - fileId = "142041", - text = "helm_robe_raidmage_d_01_scm.m2", - value = "helm_robe_raidmage_d_01_scm.m2", + fileId = "140629", + text = "helm_plate_dungeonwarrior_a_01_scm.m2", + value = "helm_plate_dungeonwarrior_a_01_scm.m2", }, { - fileId = "142042", - text = "helm_robe_raidmage_d_01_taf.m2", - value = "helm_robe_raidmage_d_01_taf.m2", + fileId = "140630", + text = "helm_plate_dungeonwarrior_a_01_taf.m2", + value = "helm_plate_dungeonwarrior_a_01_taf.m2", }, { - fileId = "142043", - text = "helm_robe_raidmage_d_01_tam.m2", - value = "helm_robe_raidmage_d_01_tam.m2", + fileId = "140631", + text = "helm_plate_dungeonwarrior_a_01_tam.m2", + value = "helm_plate_dungeonwarrior_a_01_tam.m2", }, { - fileId = "142044", - text = "helm_robe_raidmage_d_01_trf.m2", - value = "helm_robe_raidmage_d_01_trf.m2", + fileId = "140632", + text = "helm_plate_dungeonwarrior_a_01_trf.m2", + value = "helm_plate_dungeonwarrior_a_01_trf.m2", }, { - fileId = "142045", - text = "helm_robe_raidmage_d_01_trm.m2", - value = "helm_robe_raidmage_d_01_trm.m2", + fileId = "140633", + text = "helm_plate_dungeonwarrior_a_01_trm.m2", + value = "helm_plate_dungeonwarrior_a_01_trm.m2", }, { - fileId = "142048", - text = "helm_robe_raidmage_e_01_bef.m2", - value = "helm_robe_raidmage_e_01_bef.m2", + fileId = "454239", + text = "helm_plate_dungeonwarrior_a_01_wof.m2", + value = "helm_plate_dungeonwarrior_a_01_wof.m2", }, { - fileId = "142049", - text = "helm_robe_raidmage_e_01_bem.m2", - value = "helm_robe_raidmage_e_01_bem.m2", + fileId = "430062", + text = "helm_plate_dungeonwarrior_a_01_wom.m2", + value = "helm_plate_dungeonwarrior_a_01_wom.m2", }, { - fileId = "142050", - text = "helm_robe_raidmage_e_01_drf.m2", - value = "helm_robe_raidmage_e_01_drf.m2", + fileId = "140639", + text = "helm_plate_dungeonwarrior_b_01_bef.m2", + value = "helm_plate_dungeonwarrior_b_01_bef.m2", }, { - fileId = "142051", - text = "helm_robe_raidmage_e_01_drm.m2", - value = "helm_robe_raidmage_e_01_drm.m2", + fileId = "140640", + text = "helm_plate_dungeonwarrior_b_01_bem.m2", + value = "helm_plate_dungeonwarrior_b_01_bem.m2", }, { - fileId = "142052", - text = "helm_robe_raidmage_e_01_dwf.m2", - value = "helm_robe_raidmage_e_01_dwf.m2", + fileId = "140641", + text = "helm_plate_dungeonwarrior_b_01_drf.m2", + value = "helm_plate_dungeonwarrior_b_01_drf.m2", }, { - fileId = "142053", - text = "helm_robe_raidmage_e_01_dwm.m2", - value = "helm_robe_raidmage_e_01_dwm.m2", + fileId = "140642", + text = "helm_plate_dungeonwarrior_b_01_drm.m2", + value = "helm_plate_dungeonwarrior_b_01_drm.m2", }, { - fileId = "142054", - text = "helm_robe_raidmage_e_01_gnf.m2", - value = "helm_robe_raidmage_e_01_gnf.m2", + fileId = "140643", + text = "helm_plate_dungeonwarrior_b_01_dwf.m2", + value = "helm_plate_dungeonwarrior_b_01_dwf.m2", }, { - fileId = "142055", - text = "helm_robe_raidmage_e_01_gnm.m2", - value = "helm_robe_raidmage_e_01_gnm.m2", + fileId = "140644", + text = "helm_plate_dungeonwarrior_b_01_dwm.m2", + value = "helm_plate_dungeonwarrior_b_01_dwm.m2", }, { - fileId = "142056", - text = "helm_robe_raidmage_e_01_gof.m2", - value = "helm_robe_raidmage_e_01_gof.m2", + fileId = "140645", + text = "helm_plate_dungeonwarrior_b_01_gnf.m2", + value = "helm_plate_dungeonwarrior_b_01_gnf.m2", }, { - fileId = "142057", - text = "helm_robe_raidmage_e_01_gom.m2", - value = "helm_robe_raidmage_e_01_gom.m2", + fileId = "140646", + text = "helm_plate_dungeonwarrior_b_01_gnm.m2", + value = "helm_plate_dungeonwarrior_b_01_gnm.m2", }, { - fileId = "142058", - text = "helm_robe_raidmage_e_01_huf.m2", - value = "helm_robe_raidmage_e_01_huf.m2", + fileId = "140647", + text = "helm_plate_dungeonwarrior_b_01_gof.m2", + value = "helm_plate_dungeonwarrior_b_01_gof.m2", }, { - fileId = "142059", - text = "helm_robe_raidmage_e_01_hum.m2", - value = "helm_robe_raidmage_e_01_hum.m2", + fileId = "140648", + text = "helm_plate_dungeonwarrior_b_01_gom.m2", + value = "helm_plate_dungeonwarrior_b_01_gom.m2", }, { - fileId = "142060", - text = "helm_robe_raidmage_e_01_nif.m2", - value = "helm_robe_raidmage_e_01_nif.m2", + fileId = "140649", + text = "helm_plate_dungeonwarrior_b_01_huf.m2", + value = "helm_plate_dungeonwarrior_b_01_huf.m2", }, { - fileId = "142061", - text = "helm_robe_raidmage_e_01_nim.m2", - value = "helm_robe_raidmage_e_01_nim.m2", + fileId = "140650", + text = "helm_plate_dungeonwarrior_b_01_hum.m2", + value = "helm_plate_dungeonwarrior_b_01_hum.m2", }, { - fileId = "142062", - text = "helm_robe_raidmage_e_01_orf.m2", - value = "helm_robe_raidmage_e_01_orf.m2", + fileId = "140651", + text = "helm_plate_dungeonwarrior_b_01_nif.m2", + value = "helm_plate_dungeonwarrior_b_01_nif.m2", }, { - fileId = "142063", - text = "helm_robe_raidmage_e_01_orm.m2", - value = "helm_robe_raidmage_e_01_orm.m2", + fileId = "140652", + text = "helm_plate_dungeonwarrior_b_01_nim.m2", + value = "helm_plate_dungeonwarrior_b_01_nim.m2", }, { - fileId = "142064", - text = "helm_robe_raidmage_e_01_scf.m2", - value = "helm_robe_raidmage_e_01_scf.m2", + fileId = "140653", + text = "helm_plate_dungeonwarrior_b_01_orf.m2", + value = "helm_plate_dungeonwarrior_b_01_orf.m2", }, { - fileId = "142065", - text = "helm_robe_raidmage_e_01_scm.m2", - value = "helm_robe_raidmage_e_01_scm.m2", + fileId = "140654", + text = "helm_plate_dungeonwarrior_b_01_orm.m2", + value = "helm_plate_dungeonwarrior_b_01_orm.m2", }, { - fileId = "142066", - text = "helm_robe_raidmage_e_01_taf.m2", - value = "helm_robe_raidmage_e_01_taf.m2", + fileId = "140655", + text = "helm_plate_dungeonwarrior_b_01_scf.m2", + value = "helm_plate_dungeonwarrior_b_01_scf.m2", }, { - fileId = "142067", - text = "helm_robe_raidmage_e_01_tam.m2", - value = "helm_robe_raidmage_e_01_tam.m2", + fileId = "140656", + text = "helm_plate_dungeonwarrior_b_01_scm.m2", + value = "helm_plate_dungeonwarrior_b_01_scm.m2", }, { - fileId = "142068", - text = "helm_robe_raidmage_e_01_trf.m2", - value = "helm_robe_raidmage_e_01_trf.m2", + fileId = "140657", + text = "helm_plate_dungeonwarrior_b_01_taf.m2", + value = "helm_plate_dungeonwarrior_b_01_taf.m2", }, { - fileId = "142069", - text = "helm_robe_raidmage_e_01_trm.m2", - value = "helm_robe_raidmage_e_01_trm.m2", + fileId = "140658", + text = "helm_plate_dungeonwarrior_b_01_tam.m2", + value = "helm_plate_dungeonwarrior_b_01_tam.m2", }, { - fileId = "142073", - text = "helm_robe_raidmage_f_01_bef.m2", - value = "helm_robe_raidmage_f_01_bef.m2", + fileId = "140659", + text = "helm_plate_dungeonwarrior_b_01_trf.m2", + value = "helm_plate_dungeonwarrior_b_01_trf.m2", }, { - fileId = "142074", - text = "helm_robe_raidmage_f_01_bem.m2", - value = "helm_robe_raidmage_f_01_bem.m2", + fileId = "140660", + text = "helm_plate_dungeonwarrior_b_01_trm.m2", + value = "helm_plate_dungeonwarrior_b_01_trm.m2", }, { - fileId = "142075", - text = "helm_robe_raidmage_f_01_drf.m2", - value = "helm_robe_raidmage_f_01_drf.m2", + fileId = "454240", + text = "helm_plate_dungeonwarrior_b_01_wof.m2", + value = "helm_plate_dungeonwarrior_b_01_wof.m2", }, { - fileId = "142076", - text = "helm_robe_raidmage_f_01_drm.m2", - value = "helm_robe_raidmage_f_01_drm.m2", + fileId = "463062", + text = "helm_plate_dungeonwarrior_b_01_wom.m2", + value = "helm_plate_dungeonwarrior_b_01_wom.m2", }, { - fileId = "142077", - text = "helm_robe_raidmage_f_01_dwf.m2", - value = "helm_robe_raidmage_f_01_dwf.m2", + fileId = "140666", + text = "helm_plate_headless_d_01_bef.m2", + value = "helm_plate_headless_d_01_bef.m2", }, { - fileId = "142078", - text = "helm_robe_raidmage_f_01_dwm.m2", - value = "helm_robe_raidmage_f_01_dwm.m2", + fileId = "140667", + text = "helm_plate_headless_d_01_bem.m2", + value = "helm_plate_headless_d_01_bem.m2", }, { - fileId = "142079", - text = "helm_robe_raidmage_f_01_gnf.m2", - value = "helm_robe_raidmage_f_01_gnf.m2", + fileId = "140668", + text = "helm_plate_headless_d_01_drf.m2", + value = "helm_plate_headless_d_01_drf.m2", }, { - fileId = "142080", - text = "helm_robe_raidmage_f_01_gnm.m2", - value = "helm_robe_raidmage_f_01_gnm.m2", + fileId = "140669", + text = "helm_plate_headless_d_01_drm.m2", + value = "helm_plate_headless_d_01_drm.m2", }, { - fileId = "142081", - text = "helm_robe_raidmage_f_01_gof.m2", - value = "helm_robe_raidmage_f_01_gof.m2", + fileId = "140670", + text = "helm_plate_headless_d_01_dwf.m2", + value = "helm_plate_headless_d_01_dwf.m2", }, { - fileId = "142082", - text = "helm_robe_raidmage_f_01_gom.m2", - value = "helm_robe_raidmage_f_01_gom.m2", + fileId = "140671", + text = "helm_plate_headless_d_01_dwm.m2", + value = "helm_plate_headless_d_01_dwm.m2", }, { - fileId = "142083", - text = "helm_robe_raidmage_f_01_huf.m2", - value = "helm_robe_raidmage_f_01_huf.m2", + fileId = "140672", + text = "helm_plate_headless_d_01_gnf.m2", + value = "helm_plate_headless_d_01_gnf.m2", }, { - fileId = "142084", - text = "helm_robe_raidmage_f_01_hum.m2", - value = "helm_robe_raidmage_f_01_hum.m2", + fileId = "140673", + text = "helm_plate_headless_d_01_gnm.m2", + value = "helm_plate_headless_d_01_gnm.m2", }, { - fileId = "142085", - text = "helm_robe_raidmage_f_01_nif.m2", - value = "helm_robe_raidmage_f_01_nif.m2", + fileId = "140674", + text = "helm_plate_headless_d_01_gof.m2", + value = "helm_plate_headless_d_01_gof.m2", }, { - fileId = "142086", - text = "helm_robe_raidmage_f_01_nim.m2", - value = "helm_robe_raidmage_f_01_nim.m2", + fileId = "140675", + text = "helm_plate_headless_d_01_gom.m2", + value = "helm_plate_headless_d_01_gom.m2", }, { - fileId = "142087", - text = "helm_robe_raidmage_f_01_orf.m2", - value = "helm_robe_raidmage_f_01_orf.m2", + fileId = "140676", + text = "helm_plate_headless_d_01_huf.m2", + value = "helm_plate_headless_d_01_huf.m2", }, { - fileId = "142088", - text = "helm_robe_raidmage_f_01_orm.m2", - value = "helm_robe_raidmage_f_01_orm.m2", + fileId = "140677", + text = "helm_plate_headless_d_01_hum.m2", + value = "helm_plate_headless_d_01_hum.m2", }, { - fileId = "142089", - text = "helm_robe_raidmage_f_01_scf.m2", - value = "helm_robe_raidmage_f_01_scf.m2", + fileId = "140678", + text = "helm_plate_headless_d_01_nif.m2", + value = "helm_plate_headless_d_01_nif.m2", }, { - fileId = "142090", - text = "helm_robe_raidmage_f_01_scm.m2", - value = "helm_robe_raidmage_f_01_scm.m2", + fileId = "140679", + text = "helm_plate_headless_d_01_nim.m2", + value = "helm_plate_headless_d_01_nim.m2", }, { - fileId = "142091", - text = "helm_robe_raidmage_f_01_taf.m2", - value = "helm_robe_raidmage_f_01_taf.m2", + fileId = "140680", + text = "helm_plate_headless_d_01_orf.m2", + value = "helm_plate_headless_d_01_orf.m2", }, { - fileId = "142092", - text = "helm_robe_raidmage_f_01_tam.m2", - value = "helm_robe_raidmage_f_01_tam.m2", + fileId = "140681", + text = "helm_plate_headless_d_01_orm.m2", + value = "helm_plate_headless_d_01_orm.m2", }, { - fileId = "142093", - text = "helm_robe_raidmage_f_01_trf.m2", - value = "helm_robe_raidmage_f_01_trf.m2", + fileId = "140682", + text = "helm_plate_headless_d_01_scf.m2", + value = "helm_plate_headless_d_01_scf.m2", }, { - fileId = "142094", - text = "helm_robe_raidmage_f_01_trm.m2", - value = "helm_robe_raidmage_f_01_trm.m2", + fileId = "140683", + text = "helm_plate_headless_d_01_scm.m2", + value = "helm_plate_headless_d_01_scm.m2", }, { - fileId = "142101", - text = "helm_robe_raidmage_g_01_bef.m2", - value = "helm_robe_raidmage_g_01_bef.m2", + fileId = "140684", + text = "helm_plate_headless_d_01_taf.m2", + value = "helm_plate_headless_d_01_taf.m2", }, { - fileId = "142102", - text = "helm_robe_raidmage_g_01_bem.m2", - value = "helm_robe_raidmage_g_01_bem.m2", + fileId = "140685", + text = "helm_plate_headless_d_01_tam.m2", + value = "helm_plate_headless_d_01_tam.m2", }, { - fileId = "142103", - text = "helm_robe_raidmage_g_01_drf.m2", - value = "helm_robe_raidmage_g_01_drf.m2", + fileId = "140686", + text = "helm_plate_headless_d_01_trf.m2", + value = "helm_plate_headless_d_01_trf.m2", }, { - fileId = "142104", - text = "helm_robe_raidmage_g_01_drm.m2", - value = "helm_robe_raidmage_g_01_drm.m2", + fileId = "140687", + text = "helm_plate_headless_d_01_trm.m2", + value = "helm_plate_headless_d_01_trm.m2", }, { - fileId = "142105", - text = "helm_robe_raidmage_g_01_dwf.m2", - value = "helm_robe_raidmage_g_01_dwf.m2", + fileId = "454245", + text = "helm_plate_headless_d_01_wof.m2", + value = "helm_plate_headless_d_01_wof.m2", }, { - fileId = "142106", - text = "helm_robe_raidmage_g_01_dwm.m2", - value = "helm_robe_raidmage_g_01_dwm.m2", + fileId = "454246", + text = "helm_plate_headless_d_01_wom.m2", + value = "helm_plate_headless_d_01_wom.m2", }, { - fileId = "142107", - text = "helm_robe_raidmage_g_01_gnf.m2", - value = "helm_robe_raidmage_g_01_gnf.m2", + fileId = "140689", + text = "helm_plate_northrend_b_01_bef.m2", + value = "helm_plate_northrend_b_01_bef.m2", }, { - fileId = "142108", - text = "helm_robe_raidmage_g_01_gnm.m2", - value = "helm_robe_raidmage_g_01_gnm.m2", + fileId = "140690", + text = "helm_plate_northrend_b_01_bem.m2", + value = "helm_plate_northrend_b_01_bem.m2", }, { - fileId = "142109", - text = "helm_robe_raidmage_g_01_gof.m2", - value = "helm_robe_raidmage_g_01_gof.m2", + fileId = "140691", + text = "helm_plate_northrend_b_01_drf.m2", + value = "helm_plate_northrend_b_01_drf.m2", }, { - fileId = "142110", - text = "helm_robe_raidmage_g_01_gom.m2", - value = "helm_robe_raidmage_g_01_gom.m2", + fileId = "140692", + text = "helm_plate_northrend_b_01_drm.m2", + value = "helm_plate_northrend_b_01_drm.m2", }, { - fileId = "142111", - text = "helm_robe_raidmage_g_01_huf.m2", - value = "helm_robe_raidmage_g_01_huf.m2", + fileId = "140693", + text = "helm_plate_northrend_b_01_dwf.m2", + value = "helm_plate_northrend_b_01_dwf.m2", }, { - fileId = "142112", - text = "helm_robe_raidmage_g_01_hum.m2", - value = "helm_robe_raidmage_g_01_hum.m2", + fileId = "140694", + text = "helm_plate_northrend_b_01_dwm.m2", + value = "helm_plate_northrend_b_01_dwm.m2", }, { - fileId = "142113", - text = "helm_robe_raidmage_g_01_nif.m2", - value = "helm_robe_raidmage_g_01_nif.m2", + fileId = "140695", + text = "helm_plate_northrend_b_01_gnf.m2", + value = "helm_plate_northrend_b_01_gnf.m2", }, { - fileId = "142114", - text = "helm_robe_raidmage_g_01_nim.m2", - value = "helm_robe_raidmage_g_01_nim.m2", + fileId = "140696", + text = "helm_plate_northrend_b_01_gnm.m2", + value = "helm_plate_northrend_b_01_gnm.m2", }, { - fileId = "142115", - text = "helm_robe_raidmage_g_01_orf.m2", - value = "helm_robe_raidmage_g_01_orf.m2", + fileId = "463063", + text = "helm_plate_northrend_b_01_gof.m2", + value = "helm_plate_northrend_b_01_gof.m2", }, { - fileId = "142116", - text = "helm_robe_raidmage_g_01_orm.m2", - value = "helm_robe_raidmage_g_01_orm.m2", + fileId = "463064", + text = "helm_plate_northrend_b_01_gom.m2", + value = "helm_plate_northrend_b_01_gom.m2", }, { - fileId = "142117", - text = "helm_robe_raidmage_g_01_scf.m2", - value = "helm_robe_raidmage_g_01_scf.m2", + fileId = "140697", + text = "helm_plate_northrend_b_01_huf.m2", + value = "helm_plate_northrend_b_01_huf.m2", }, { - fileId = "142118", - text = "helm_robe_raidmage_g_01_scm.m2", - value = "helm_robe_raidmage_g_01_scm.m2", + fileId = "140698", + text = "helm_plate_northrend_b_01_hum.m2", + value = "helm_plate_northrend_b_01_hum.m2", }, { - fileId = "142119", - text = "helm_robe_raidmage_g_01_taf.m2", - value = "helm_robe_raidmage_g_01_taf.m2", + fileId = "140699", + text = "helm_plate_northrend_b_01_nif.m2", + value = "helm_plate_northrend_b_01_nif.m2", }, { - fileId = "142120", - text = "helm_robe_raidmage_g_01_tam.m2", - value = "helm_robe_raidmage_g_01_tam.m2", + fileId = "140700", + text = "helm_plate_northrend_b_01_nim.m2", + value = "helm_plate_northrend_b_01_nim.m2", }, { - fileId = "142121", - text = "helm_robe_raidmage_g_01_trf.m2", - value = "helm_robe_raidmage_g_01_trf.m2", + fileId = "140701", + text = "helm_plate_northrend_b_01_orf.m2", + value = "helm_plate_northrend_b_01_orf.m2", }, { - fileId = "142122", - text = "helm_robe_raidmage_g_01_trm.m2", - value = "helm_robe_raidmage_g_01_trm.m2", + fileId = "140702", + text = "helm_plate_northrend_b_01_orm.m2", + value = "helm_plate_northrend_b_01_orm.m2", }, { - fileId = "340051", - text = "helm_robe_raidmage_h_01_bef.m2", - value = "helm_robe_raidmage_h_01_bef.m2", + fileId = "140703", + text = "helm_plate_northrend_b_01_scf.m2", + value = "helm_plate_northrend_b_01_scf.m2", }, { - fileId = "340052", - text = "helm_robe_raidmage_h_01_bem.m2", - value = "helm_robe_raidmage_h_01_bem.m2", + fileId = "140704", + text = "helm_plate_northrend_b_01_scm.m2", + value = "helm_plate_northrend_b_01_scm.m2", }, { - fileId = "340053", - text = "helm_robe_raidmage_h_01_drf.m2", - value = "helm_robe_raidmage_h_01_drf.m2", + fileId = "140705", + text = "helm_plate_northrend_b_01_taf.m2", + value = "helm_plate_northrend_b_01_taf.m2", }, { - fileId = "340054", - text = "helm_robe_raidmage_h_01_drm.m2", - value = "helm_robe_raidmage_h_01_drm.m2", + fileId = "140706", + text = "helm_plate_northrend_b_01_tam.m2", + value = "helm_plate_northrend_b_01_tam.m2", }, { - fileId = "340055", - text = "helm_robe_raidmage_h_01_dwf.m2", - value = "helm_robe_raidmage_h_01_dwf.m2", + fileId = "140707", + text = "helm_plate_northrend_b_01_trf.m2", + value = "helm_plate_northrend_b_01_trf.m2", }, { - fileId = "340056", - text = "helm_robe_raidmage_h_01_dwm.m2", - value = "helm_robe_raidmage_h_01_dwm.m2", + fileId = "140708", + text = "helm_plate_northrend_b_01_trm.m2", + value = "helm_plate_northrend_b_01_trm.m2", }, { - fileId = "340057", - text = "helm_robe_raidmage_h_01_gnf.m2", - value = "helm_robe_raidmage_h_01_gnf.m2", + fileId = "454247", + text = "helm_plate_northrend_b_01_wof.m2", + value = "helm_plate_northrend_b_01_wof.m2", }, { - fileId = "340058", - text = "helm_robe_raidmage_h_01_gnm.m2", - value = "helm_robe_raidmage_h_01_gnm.m2", + fileId = "454248", + text = "helm_plate_northrend_b_01_wom.m2", + value = "helm_plate_northrend_b_01_wom.m2", }, { - fileId = "340059", - text = "helm_robe_raidmage_h_01_huf.m2", - value = "helm_robe_raidmage_h_01_huf.m2", + fileId = "140713", + text = "helm_plate_northrend_b_02_bef.m2", + value = "helm_plate_northrend_b_02_bef.m2", }, { - fileId = "340060", - text = "helm_robe_raidmage_h_01_hum.m2", - value = "helm_robe_raidmage_h_01_hum.m2", + fileId = "140714", + text = "helm_plate_northrend_b_02_bem.m2", + value = "helm_plate_northrend_b_02_bem.m2", }, { - fileId = "340061", - text = "helm_robe_raidmage_h_01_nif.m2", - value = "helm_robe_raidmage_h_01_nif.m2", + fileId = "140715", + text = "helm_plate_northrend_b_02_drf.m2", + value = "helm_plate_northrend_b_02_drf.m2", }, { - fileId = "340062", - text = "helm_robe_raidmage_h_01_nim.m2", - value = "helm_robe_raidmage_h_01_nim.m2", + fileId = "140716", + text = "helm_plate_northrend_b_02_drm.m2", + value = "helm_plate_northrend_b_02_drm.m2", }, { - fileId = "340063", - text = "helm_robe_raidmage_h_01_orf.m2", - value = "helm_robe_raidmage_h_01_orf.m2", + fileId = "140717", + text = "helm_plate_northrend_b_02_dwf.m2", + value = "helm_plate_northrend_b_02_dwf.m2", }, { - fileId = "340064", - text = "helm_robe_raidmage_h_01_orm.m2", - value = "helm_robe_raidmage_h_01_orm.m2", + fileId = "140718", + text = "helm_plate_northrend_b_02_dwm.m2", + value = "helm_plate_northrend_b_02_dwm.m2", }, { - fileId = "340065", - text = "helm_robe_raidmage_h_01_scf.m2", - value = "helm_robe_raidmage_h_01_scf.m2", + fileId = "140719", + text = "helm_plate_northrend_b_02_gnf.m2", + value = "helm_plate_northrend_b_02_gnf.m2", }, { - fileId = "340066", - text = "helm_robe_raidmage_h_01_scm.m2", - value = "helm_robe_raidmage_h_01_scm.m2", + fileId = "140720", + text = "helm_plate_northrend_b_02_gnm.m2", + value = "helm_plate_northrend_b_02_gnm.m2", }, { - fileId = "340067", - text = "helm_robe_raidmage_h_01_taf.m2", - value = "helm_robe_raidmage_h_01_taf.m2", + fileId = "140721", + text = "helm_plate_northrend_b_02_gof.m2", + value = "helm_plate_northrend_b_02_gof.m2", }, { - fileId = "340068", - text = "helm_robe_raidmage_h_01_tam.m2", - value = "helm_robe_raidmage_h_01_tam.m2", + fileId = "140722", + text = "helm_plate_northrend_b_02_gom.m2", + value = "helm_plate_northrend_b_02_gom.m2", }, { - fileId = "340069", - text = "helm_robe_raidmage_h_01_trf.m2", - value = "helm_robe_raidmage_h_01_trf.m2", + fileId = "140723", + text = "helm_plate_northrend_b_02_huf.m2", + value = "helm_plate_northrend_b_02_huf.m2", }, { - fileId = "340070", - text = "helm_robe_raidmage_h_01_trm.m2", - value = "helm_robe_raidmage_h_01_trm.m2", + fileId = "140724", + text = "helm_plate_northrend_b_02_hum.m2", + value = "helm_plate_northrend_b_02_hum.m2", }, { - fileId = "142126", - text = "helm_robe_raidpriest_a_01_bef.m2", - value = "helm_robe_raidpriest_a_01_bef.m2", + fileId = "140725", + text = "helm_plate_northrend_b_02_nif.m2", + value = "helm_plate_northrend_b_02_nif.m2", }, { - fileId = "142127", - text = "helm_robe_raidpriest_a_01_bem.m2", - value = "helm_robe_raidpriest_a_01_bem.m2", + fileId = "140726", + text = "helm_plate_northrend_b_02_nim.m2", + value = "helm_plate_northrend_b_02_nim.m2", }, { - fileId = "142128", - text = "helm_robe_raidpriest_a_01_drf.m2", - value = "helm_robe_raidpriest_a_01_drf.m2", + fileId = "140727", + text = "helm_plate_northrend_b_02_orf.m2", + value = "helm_plate_northrend_b_02_orf.m2", }, { - fileId = "142129", - text = "helm_robe_raidpriest_a_01_drm.m2", - value = "helm_robe_raidpriest_a_01_drm.m2", + fileId = "140728", + text = "helm_plate_northrend_b_02_orm.m2", + value = "helm_plate_northrend_b_02_orm.m2", }, { - fileId = "142130", - text = "helm_robe_raidpriest_a_01_dwf.m2", - value = "helm_robe_raidpriest_a_01_dwf.m2", + fileId = "140729", + text = "helm_plate_northrend_b_02_scf.m2", + value = "helm_plate_northrend_b_02_scf.m2", }, { - fileId = "142131", - text = "helm_robe_raidpriest_a_01_dwm.m2", - value = "helm_robe_raidpriest_a_01_dwm.m2", + fileId = "140730", + text = "helm_plate_northrend_b_02_scm.m2", + value = "helm_plate_northrend_b_02_scm.m2", }, { - fileId = "142132", - text = "helm_robe_raidpriest_a_01_gnf.m2", - value = "helm_robe_raidpriest_a_01_gnf.m2", + fileId = "140731", + text = "helm_plate_northrend_b_02_taf.m2", + value = "helm_plate_northrend_b_02_taf.m2", }, { - fileId = "142133", - text = "helm_robe_raidpriest_a_01_gnm.m2", - value = "helm_robe_raidpriest_a_01_gnm.m2", + fileId = "140732", + text = "helm_plate_northrend_b_02_tam.m2", + value = "helm_plate_northrend_b_02_tam.m2", }, { - fileId = "142134", - text = "helm_robe_raidpriest_a_01_gof.m2", - value = "helm_robe_raidpriest_a_01_gof.m2", + fileId = "140733", + text = "helm_plate_northrend_b_02_trf.m2", + value = "helm_plate_northrend_b_02_trf.m2", }, { - fileId = "142135", - text = "helm_robe_raidpriest_a_01_gom.m2", - value = "helm_robe_raidpriest_a_01_gom.m2", + fileId = "140734", + text = "helm_plate_northrend_b_02_trm.m2", + value = "helm_plate_northrend_b_02_trm.m2", }, { - fileId = "142136", - text = "helm_robe_raidpriest_a_01_huf.m2", - value = "helm_robe_raidpriest_a_01_huf.m2", + fileId = "454249", + text = "helm_plate_northrend_b_02_wof.m2", + value = "helm_plate_northrend_b_02_wof.m2", }, { - fileId = "142137", - text = "helm_robe_raidpriest_a_01_hum.m2", - value = "helm_robe_raidpriest_a_01_hum.m2", + fileId = "454250", + text = "helm_plate_northrend_b_02_wom.m2", + value = "helm_plate_northrend_b_02_wom.m2", }, { - fileId = "142138", - text = "helm_robe_raidpriest_a_01_nif.m2", - value = "helm_robe_raidpriest_a_01_nif.m2", + fileId = "140740", + text = "helm_plate_northrend_b_03_bef.m2", + value = "helm_plate_northrend_b_03_bef.m2", }, { - fileId = "142139", - text = "helm_robe_raidpriest_a_01_nim.m2", - value = "helm_robe_raidpriest_a_01_nim.m2", + fileId = "140741", + text = "helm_plate_northrend_b_03_bem.m2", + value = "helm_plate_northrend_b_03_bem.m2", }, { - fileId = "142140", - text = "helm_robe_raidpriest_a_01_orf.m2", - value = "helm_robe_raidpriest_a_01_orf.m2", + fileId = "140742", + text = "helm_plate_northrend_b_03_drf.m2", + value = "helm_plate_northrend_b_03_drf.m2", }, { - fileId = "142141", - text = "helm_robe_raidpriest_a_01_orm.m2", - value = "helm_robe_raidpriest_a_01_orm.m2", + fileId = "140743", + text = "helm_plate_northrend_b_03_drm.m2", + value = "helm_plate_northrend_b_03_drm.m2", }, { - fileId = "142142", - text = "helm_robe_raidpriest_a_01_scf.m2", - value = "helm_robe_raidpriest_a_01_scf.m2", + fileId = "140744", + text = "helm_plate_northrend_b_03_dwf.m2", + value = "helm_plate_northrend_b_03_dwf.m2", }, { - fileId = "142143", - text = "helm_robe_raidpriest_a_01_scm.m2", - value = "helm_robe_raidpriest_a_01_scm.m2", + fileId = "140745", + text = "helm_plate_northrend_b_03_dwm.m2", + value = "helm_plate_northrend_b_03_dwm.m2", }, { - fileId = "142144", - text = "helm_robe_raidpriest_a_01_taf.m2", - value = "helm_robe_raidpriest_a_01_taf.m2", + fileId = "140746", + text = "helm_plate_northrend_b_03_gnf.m2", + value = "helm_plate_northrend_b_03_gnf.m2", }, { - fileId = "142145", - text = "helm_robe_raidpriest_a_01_tam.m2", - value = "helm_robe_raidpriest_a_01_tam.m2", + fileId = "140747", + text = "helm_plate_northrend_b_03_gnm.m2", + value = "helm_plate_northrend_b_03_gnm.m2", }, { - fileId = "142146", - text = "helm_robe_raidpriest_a_01_trf.m2", - value = "helm_robe_raidpriest_a_01_trf.m2", + fileId = "464137", + text = "helm_plate_northrend_b_03_gof.m2", + value = "helm_plate_northrend_b_03_gof.m2", }, { - fileId = "142147", - text = "helm_robe_raidpriest_a_01_trm.m2", - value = "helm_robe_raidpriest_a_01_trm.m2", + fileId = "463065", + text = "helm_plate_northrend_b_03_gom.m2", + value = "helm_plate_northrend_b_03_gom.m2", }, { - fileId = "142153", - text = "helm_robe_raidpriest_b_01_bef.m2", - value = "helm_robe_raidpriest_b_01_bef.m2", + fileId = "140748", + text = "helm_plate_northrend_b_03_huf.m2", + value = "helm_plate_northrend_b_03_huf.m2", }, { - fileId = "142154", - text = "helm_robe_raidpriest_b_01_bem.m2", - value = "helm_robe_raidpriest_b_01_bem.m2", + fileId = "140749", + text = "helm_plate_northrend_b_03_hum.m2", + value = "helm_plate_northrend_b_03_hum.m2", }, { - fileId = "142155", - text = "helm_robe_raidpriest_b_01_drf.m2", - value = "helm_robe_raidpriest_b_01_drf.m2", + fileId = "140750", + text = "helm_plate_northrend_b_03_nif.m2", + value = "helm_plate_northrend_b_03_nif.m2", }, { - fileId = "142156", - text = "helm_robe_raidpriest_b_01_drm.m2", - value = "helm_robe_raidpriest_b_01_drm.m2", + fileId = "140751", + text = "helm_plate_northrend_b_03_nim.m2", + value = "helm_plate_northrend_b_03_nim.m2", }, { - fileId = "142157", - text = "helm_robe_raidpriest_b_01_dwf.m2", - value = "helm_robe_raidpriest_b_01_dwf.m2", + fileId = "140752", + text = "helm_plate_northrend_b_03_orf.m2", + value = "helm_plate_northrend_b_03_orf.m2", }, { - fileId = "142158", - text = "helm_robe_raidpriest_b_01_dwm.m2", - value = "helm_robe_raidpriest_b_01_dwm.m2", + fileId = "140753", + text = "helm_plate_northrend_b_03_orm.m2", + value = "helm_plate_northrend_b_03_orm.m2", }, { - fileId = "142159", - text = "helm_robe_raidpriest_b_01_gnf.m2", - value = "helm_robe_raidpriest_b_01_gnf.m2", + fileId = "140754", + text = "helm_plate_northrend_b_03_scf.m2", + value = "helm_plate_northrend_b_03_scf.m2", }, { - fileId = "142160", - text = "helm_robe_raidpriest_b_01_gnm.m2", - value = "helm_robe_raidpriest_b_01_gnm.m2", + fileId = "140755", + text = "helm_plate_northrend_b_03_scm.m2", + value = "helm_plate_northrend_b_03_scm.m2", }, { - fileId = "142161", - text = "helm_robe_raidpriest_b_01_gof.m2", - value = "helm_robe_raidpriest_b_01_gof.m2", + fileId = "140756", + text = "helm_plate_northrend_b_03_taf.m2", + value = "helm_plate_northrend_b_03_taf.m2", }, { - fileId = "142162", - text = "helm_robe_raidpriest_b_01_gom.m2", - value = "helm_robe_raidpriest_b_01_gom.m2", + fileId = "140757", + text = "helm_plate_northrend_b_03_tam.m2", + value = "helm_plate_northrend_b_03_tam.m2", }, { - fileId = "142163", - text = "helm_robe_raidpriest_b_01_huf.m2", - value = "helm_robe_raidpriest_b_01_huf.m2", + fileId = "140758", + text = "helm_plate_northrend_b_03_trf.m2", + value = "helm_plate_northrend_b_03_trf.m2", }, { - fileId = "142164", - text = "helm_robe_raidpriest_b_01_hum.m2", - value = "helm_robe_raidpriest_b_01_hum.m2", + fileId = "140759", + text = "helm_plate_northrend_b_03_trm.m2", + value = "helm_plate_northrend_b_03_trm.m2", }, { - fileId = "142165", - text = "helm_robe_raidpriest_b_01_nif.m2", - value = "helm_robe_raidpriest_b_01_nif.m2", + fileId = "454251", + text = "helm_plate_northrend_b_03_wof.m2", + value = "helm_plate_northrend_b_03_wof.m2", }, { - fileId = "142166", - text = "helm_robe_raidpriest_b_01_nim.m2", - value = "helm_robe_raidpriest_b_01_nim.m2", + fileId = "454252", + text = "helm_plate_northrend_b_03_wom.m2", + value = "helm_plate_northrend_b_03_wom.m2", }, { - fileId = "142167", - text = "helm_robe_raidpriest_b_01_orf.m2", - value = "helm_robe_raidpriest_b_01_orf.m2", + fileId = "140764", + text = "helm_plate_northrend_c_01_bef.m2", + value = "helm_plate_northrend_c_01_bef.m2", }, { - fileId = "142168", - text = "helm_robe_raidpriest_b_01_orm.m2", - value = "helm_robe_raidpriest_b_01_orm.m2", + fileId = "140765", + text = "helm_plate_northrend_c_01_bem.m2", + value = "helm_plate_northrend_c_01_bem.m2", }, { - fileId = "142169", - text = "helm_robe_raidpriest_b_01_scf.m2", - value = "helm_robe_raidpriest_b_01_scf.m2", + fileId = "140766", + text = "helm_plate_northrend_c_01_drf.m2", + value = "helm_plate_northrend_c_01_drf.m2", }, { - fileId = "142170", - text = "helm_robe_raidpriest_b_01_scm.m2", - value = "helm_robe_raidpriest_b_01_scm.m2", + fileId = "140767", + text = "helm_plate_northrend_c_01_drm.m2", + value = "helm_plate_northrend_c_01_drm.m2", }, { - fileId = "142171", - text = "helm_robe_raidpriest_b_01_taf.m2", - value = "helm_robe_raidpriest_b_01_taf.m2", + fileId = "140768", + text = "helm_plate_northrend_c_01_dwf.m2", + value = "helm_plate_northrend_c_01_dwf.m2", }, { - fileId = "142172", - text = "helm_robe_raidpriest_b_01_tam.m2", - value = "helm_robe_raidpriest_b_01_tam.m2", + fileId = "140769", + text = "helm_plate_northrend_c_01_dwm.m2", + value = "helm_plate_northrend_c_01_dwm.m2", }, { - fileId = "142173", - text = "helm_robe_raidpriest_b_01_trf.m2", - value = "helm_robe_raidpriest_b_01_trf.m2", + fileId = "140770", + text = "helm_plate_northrend_c_01_gnf.m2", + value = "helm_plate_northrend_c_01_gnf.m2", }, { - fileId = "142174", - text = "helm_robe_raidpriest_b_01_trm.m2", - value = "helm_robe_raidpriest_b_01_trm.m2", + fileId = "140771", + text = "helm_plate_northrend_c_01_gnm.m2", + value = "helm_plate_northrend_c_01_gnm.m2", }, { - fileId = "142178", - text = "helm_robe_raidpriest_c_01_bef.m2", - value = "helm_robe_raidpriest_c_01_bef.m2", + fileId = "140772", + text = "helm_plate_northrend_c_01_gof.m2", + value = "helm_plate_northrend_c_01_gof.m2", }, { - fileId = "142179", - text = "helm_robe_raidpriest_c_01_bem.m2", - value = "helm_robe_raidpriest_c_01_bem.m2", + fileId = "140773", + text = "helm_plate_northrend_c_01_gom.m2", + value = "helm_plate_northrend_c_01_gom.m2", }, { - fileId = "142180", - text = "helm_robe_raidpriest_c_01_drf.m2", - value = "helm_robe_raidpriest_c_01_drf.m2", + fileId = "140774", + text = "helm_plate_northrend_c_01_huf.m2", + value = "helm_plate_northrend_c_01_huf.m2", }, { - fileId = "142181", - text = "helm_robe_raidpriest_c_01_drm.m2", - value = "helm_robe_raidpriest_c_01_drm.m2", + fileId = "140775", + text = "helm_plate_northrend_c_01_hum.m2", + value = "helm_plate_northrend_c_01_hum.m2", }, { - fileId = "142182", - text = "helm_robe_raidpriest_c_01_dwf.m2", - value = "helm_robe_raidpriest_c_01_dwf.m2", + fileId = "140776", + text = "helm_plate_northrend_c_01_nif.m2", + value = "helm_plate_northrend_c_01_nif.m2", }, { - fileId = "142183", - text = "helm_robe_raidpriest_c_01_dwm.m2", - value = "helm_robe_raidpriest_c_01_dwm.m2", + fileId = "140777", + text = "helm_plate_northrend_c_01_nim.m2", + value = "helm_plate_northrend_c_01_nim.m2", }, { - fileId = "142184", - text = "helm_robe_raidpriest_c_01_gnf.m2", - value = "helm_robe_raidpriest_c_01_gnf.m2", + fileId = "140778", + text = "helm_plate_northrend_c_01_orf.m2", + value = "helm_plate_northrend_c_01_orf.m2", }, { - fileId = "142185", - text = "helm_robe_raidpriest_c_01_gnm.m2", - value = "helm_robe_raidpriest_c_01_gnm.m2", + fileId = "140779", + text = "helm_plate_northrend_c_01_orm.m2", + value = "helm_plate_northrend_c_01_orm.m2", }, { - fileId = "142186", - text = "helm_robe_raidpriest_c_01_gof.m2", - value = "helm_robe_raidpriest_c_01_gof.m2", + fileId = "140780", + text = "helm_plate_northrend_c_01_scf.m2", + value = "helm_plate_northrend_c_01_scf.m2", }, { - fileId = "142187", - text = "helm_robe_raidpriest_c_01_gom.m2", - value = "helm_robe_raidpriest_c_01_gom.m2", + fileId = "140781", + text = "helm_plate_northrend_c_01_scm.m2", + value = "helm_plate_northrend_c_01_scm.m2", }, { - fileId = "142188", - text = "helm_robe_raidpriest_c_01_huf.m2", - value = "helm_robe_raidpriest_c_01_huf.m2", + fileId = "140782", + text = "helm_plate_northrend_c_01_taf.m2", + value = "helm_plate_northrend_c_01_taf.m2", }, { - fileId = "142189", - text = "helm_robe_raidpriest_c_01_hum.m2", - value = "helm_robe_raidpriest_c_01_hum.m2", + fileId = "140783", + text = "helm_plate_northrend_c_01_tam.m2", + value = "helm_plate_northrend_c_01_tam.m2", }, { - fileId = "142190", - text = "helm_robe_raidpriest_c_01_nif.m2", - value = "helm_robe_raidpriest_c_01_nif.m2", + fileId = "140784", + text = "helm_plate_northrend_c_01_trf.m2", + value = "helm_plate_northrend_c_01_trf.m2", }, { - fileId = "142191", - text = "helm_robe_raidpriest_c_01_nim.m2", - value = "helm_robe_raidpriest_c_01_nim.m2", + fileId = "140785", + text = "helm_plate_northrend_c_01_trm.m2", + value = "helm_plate_northrend_c_01_trm.m2", }, { - fileId = "142192", - text = "helm_robe_raidpriest_c_01_orf.m2", - value = "helm_robe_raidpriest_c_01_orf.m2", + fileId = "454253", + text = "helm_plate_northrend_c_01_wof.m2", + value = "helm_plate_northrend_c_01_wof.m2", }, { - fileId = "142193", - text = "helm_robe_raidpriest_c_01_orm.m2", - value = "helm_robe_raidpriest_c_01_orm.m2", + fileId = "454254", + text = "helm_plate_northrend_c_01_wom.m2", + value = "helm_plate_northrend_c_01_wom.m2", }, { - fileId = "142194", - text = "helm_robe_raidpriest_c_01_scf.m2", - value = "helm_robe_raidpriest_c_01_scf.m2", + fileId = "140790", + text = "helm_plate_northrend_d_01_bef.m2", + value = "helm_plate_northrend_d_01_bef.m2", }, { - fileId = "142195", - text = "helm_robe_raidpriest_c_01_scm.m2", - value = "helm_robe_raidpriest_c_01_scm.m2", + fileId = "140791", + text = "helm_plate_northrend_d_01_bem.m2", + value = "helm_plate_northrend_d_01_bem.m2", }, { - fileId = "142196", - text = "helm_robe_raidpriest_c_01_taf.m2", - value = "helm_robe_raidpriest_c_01_taf.m2", + fileId = "140792", + text = "helm_plate_northrend_d_01_drf.m2", + value = "helm_plate_northrend_d_01_drf.m2", }, { - fileId = "142197", - text = "helm_robe_raidpriest_c_01_tam.m2", - value = "helm_robe_raidpriest_c_01_tam.m2", + fileId = "140793", + text = "helm_plate_northrend_d_01_drm.m2", + value = "helm_plate_northrend_d_01_drm.m2", }, { - fileId = "142198", - text = "helm_robe_raidpriest_c_01_trf.m2", - value = "helm_robe_raidpriest_c_01_trf.m2", + fileId = "140794", + text = "helm_plate_northrend_d_01_dwf.m2", + value = "helm_plate_northrend_d_01_dwf.m2", }, { - fileId = "142199", - text = "helm_robe_raidpriest_c_01_trm.m2", - value = "helm_robe_raidpriest_c_01_trm.m2", + fileId = "140795", + text = "helm_plate_northrend_d_01_dwm.m2", + value = "helm_plate_northrend_d_01_dwm.m2", }, { - fileId = "142201", - text = "helm_robe_raidpriest_d_01_bef.m2", - value = "helm_robe_raidpriest_d_01_bef.m2", + fileId = "140796", + text = "helm_plate_northrend_d_01_gnf.m2", + value = "helm_plate_northrend_d_01_gnf.m2", }, { - fileId = "142202", - text = "helm_robe_raidpriest_d_01_bem.m2", - value = "helm_robe_raidpriest_d_01_bem.m2", + fileId = "140797", + text = "helm_plate_northrend_d_01_gnm.m2", + value = "helm_plate_northrend_d_01_gnm.m2", }, { - fileId = "142203", - text = "helm_robe_raidpriest_d_01_drf.m2", - value = "helm_robe_raidpriest_d_01_drf.m2", + fileId = "463066", + text = "helm_plate_northrend_d_01_gof.m2", + value = "helm_plate_northrend_d_01_gof.m2", }, { - fileId = "142204", - text = "helm_robe_raidpriest_d_01_drm.m2", - value = "helm_robe_raidpriest_d_01_drm.m2", + fileId = "463067", + text = "helm_plate_northrend_d_01_gom.m2", + value = "helm_plate_northrend_d_01_gom.m2", }, { - fileId = "142205", - text = "helm_robe_raidpriest_d_01_dwf.m2", - value = "helm_robe_raidpriest_d_01_dwf.m2", + fileId = "140798", + text = "helm_plate_northrend_d_01_huf.m2", + value = "helm_plate_northrend_d_01_huf.m2", }, { - fileId = "142206", - text = "helm_robe_raidpriest_d_01_dwm.m2", - value = "helm_robe_raidpriest_d_01_dwm.m2", + fileId = "140799", + text = "helm_plate_northrend_d_01_hum.m2", + value = "helm_plate_northrend_d_01_hum.m2", }, { - fileId = "142207", - text = "helm_robe_raidpriest_d_01_gnf.m2", - value = "helm_robe_raidpriest_d_01_gnf.m2", + fileId = "140800", + text = "helm_plate_northrend_d_01_nif.m2", + value = "helm_plate_northrend_d_01_nif.m2", }, { - fileId = "142208", - text = "helm_robe_raidpriest_d_01_gnm.m2", - value = "helm_robe_raidpriest_d_01_gnm.m2", + fileId = "140801", + text = "helm_plate_northrend_d_01_nim.m2", + value = "helm_plate_northrend_d_01_nim.m2", }, { - fileId = "142209", - text = "helm_robe_raidpriest_d_01_gof.m2", - value = "helm_robe_raidpriest_d_01_gof.m2", + fileId = "140802", + text = "helm_plate_northrend_d_01_orf.m2", + value = "helm_plate_northrend_d_01_orf.m2", }, { - fileId = "142210", - text = "helm_robe_raidpriest_d_01_gom.m2", - value = "helm_robe_raidpriest_d_01_gom.m2", + fileId = "140803", + text = "helm_plate_northrend_d_01_orm.m2", + value = "helm_plate_northrend_d_01_orm.m2", }, { - fileId = "142211", - text = "helm_robe_raidpriest_d_01_huf.m2", - value = "helm_robe_raidpriest_d_01_huf.m2", + fileId = "140804", + text = "helm_plate_northrend_d_01_scf.m2", + value = "helm_plate_northrend_d_01_scf.m2", }, { - fileId = "142212", - text = "helm_robe_raidpriest_d_01_hum.m2", - value = "helm_robe_raidpriest_d_01_hum.m2", + fileId = "140805", + text = "helm_plate_northrend_d_01_scm.m2", + value = "helm_plate_northrend_d_01_scm.m2", }, { - fileId = "142213", - text = "helm_robe_raidpriest_d_01_nif.m2", - value = "helm_robe_raidpriest_d_01_nif.m2", + fileId = "140806", + text = "helm_plate_northrend_d_01_taf.m2", + value = "helm_plate_northrend_d_01_taf.m2", }, { - fileId = "142214", - text = "helm_robe_raidpriest_d_01_nim.m2", - value = "helm_robe_raidpriest_d_01_nim.m2", + fileId = "140807", + text = "helm_plate_northrend_d_01_tam.m2", + value = "helm_plate_northrend_d_01_tam.m2", }, { - fileId = "142215", - text = "helm_robe_raidpriest_d_01_orf.m2", - value = "helm_robe_raidpriest_d_01_orf.m2", + fileId = "140808", + text = "helm_plate_northrend_d_01_trf.m2", + value = "helm_plate_northrend_d_01_trf.m2", }, { - fileId = "142216", - text = "helm_robe_raidpriest_d_01_orm.m2", - value = "helm_robe_raidpriest_d_01_orm.m2", + fileId = "140809", + text = "helm_plate_northrend_d_01_trm.m2", + value = "helm_plate_northrend_d_01_trm.m2", }, { - fileId = "142217", - text = "helm_robe_raidpriest_d_01_scf.m2", - value = "helm_robe_raidpriest_d_01_scf.m2", + fileId = "454255", + text = "helm_plate_northrend_d_01_wof.m2", + value = "helm_plate_northrend_d_01_wof.m2", }, { - fileId = "142218", - text = "helm_robe_raidpriest_d_01_scm.m2", - value = "helm_robe_raidpriest_d_01_scm.m2", + fileId = "430067", + text = "helm_plate_northrend_d_01_wom.m2", + value = "helm_plate_northrend_d_01_wom.m2", }, { - fileId = "142219", - text = "helm_robe_raidpriest_d_01_taf.m2", - value = "helm_robe_raidpriest_d_01_taf.m2", + fileId = "140814", + text = "helm_plate_pvpalliance_a_01_bef.m2", + value = "helm_plate_pvpalliance_a_01_bef.m2", }, { - fileId = "142220", - text = "helm_robe_raidpriest_d_01_tam.m2", - value = "helm_robe_raidpriest_d_01_tam.m2", + fileId = "140815", + text = "helm_plate_pvpalliance_a_01_bem.m2", + value = "helm_plate_pvpalliance_a_01_bem.m2", }, { - fileId = "142221", - text = "helm_robe_raidpriest_d_01_trf.m2", - value = "helm_robe_raidpriest_d_01_trf.m2", + fileId = "140816", + text = "helm_plate_pvpalliance_a_01_drf.m2", + value = "helm_plate_pvpalliance_a_01_drf.m2", }, { - fileId = "142222", - text = "helm_robe_raidpriest_d_01_trm.m2", - value = "helm_robe_raidpriest_d_01_trm.m2", + fileId = "140817", + text = "helm_plate_pvpalliance_a_01_drm.m2", + value = "helm_plate_pvpalliance_a_01_drm.m2", }, { - fileId = "142224", - text = "helm_robe_raidpriest_e_01_bef.m2", - value = "helm_robe_raidpriest_e_01_bef.m2", + fileId = "140818", + text = "helm_plate_pvpalliance_a_01_dwf.m2", + value = "helm_plate_pvpalliance_a_01_dwf.m2", }, { - fileId = "142225", - text = "helm_robe_raidpriest_e_01_bem.m2", - value = "helm_robe_raidpriest_e_01_bem.m2", + fileId = "140819", + text = "helm_plate_pvpalliance_a_01_dwm.m2", + value = "helm_plate_pvpalliance_a_01_dwm.m2", }, { - fileId = "142226", - text = "helm_robe_raidpriest_e_01_drf.m2", - value = "helm_robe_raidpriest_e_01_drf.m2", + fileId = "140820", + text = "helm_plate_pvpalliance_a_01_gnf.m2", + value = "helm_plate_pvpalliance_a_01_gnf.m2", }, { - fileId = "142227", - text = "helm_robe_raidpriest_e_01_drm.m2", - value = "helm_robe_raidpriest_e_01_drm.m2", + fileId = "140821", + text = "helm_plate_pvpalliance_a_01_gnm.m2", + value = "helm_plate_pvpalliance_a_01_gnm.m2", }, { - fileId = "142228", - text = "helm_robe_raidpriest_e_01_dwf.m2", - value = "helm_robe_raidpriest_e_01_dwf.m2", + fileId = "140822", + text = "helm_plate_pvpalliance_a_01_gof.m2", + value = "helm_plate_pvpalliance_a_01_gof.m2", }, { - fileId = "142229", - text = "helm_robe_raidpriest_e_01_dwm.m2", - value = "helm_robe_raidpriest_e_01_dwm.m2", + fileId = "140823", + text = "helm_plate_pvpalliance_a_01_gom.m2", + value = "helm_plate_pvpalliance_a_01_gom.m2", }, { - fileId = "142230", - text = "helm_robe_raidpriest_e_01_gnf.m2", - value = "helm_robe_raidpriest_e_01_gnf.m2", + fileId = "140824", + text = "helm_plate_pvpalliance_a_01_huf.m2", + value = "helm_plate_pvpalliance_a_01_huf.m2", }, { - fileId = "142231", - text = "helm_robe_raidpriest_e_01_gnm.m2", - value = "helm_robe_raidpriest_e_01_gnm.m2", + fileId = "140825", + text = "helm_plate_pvpalliance_a_01_hum.m2", + value = "helm_plate_pvpalliance_a_01_hum.m2", }, { - fileId = "142232", - text = "helm_robe_raidpriest_e_01_huf.m2", - value = "helm_robe_raidpriest_e_01_huf.m2", + fileId = "140826", + text = "helm_plate_pvpalliance_a_01_nif.m2", + value = "helm_plate_pvpalliance_a_01_nif.m2", }, { - fileId = "142233", - text = "helm_robe_raidpriest_e_01_hum.m2", - value = "helm_robe_raidpriest_e_01_hum.m2", + fileId = "140827", + text = "helm_plate_pvpalliance_a_01_nim.m2", + value = "helm_plate_pvpalliance_a_01_nim.m2", }, { - fileId = "142234", - text = "helm_robe_raidpriest_e_01_nif.m2", - value = "helm_robe_raidpriest_e_01_nif.m2", + fileId = "140828", + text = "helm_plate_pvpalliance_a_01_orf.m2", + value = "helm_plate_pvpalliance_a_01_orf.m2", }, { - fileId = "142235", - text = "helm_robe_raidpriest_e_01_nim.m2", - value = "helm_robe_raidpriest_e_01_nim.m2", + fileId = "140829", + text = "helm_plate_pvpalliance_a_01_orm.m2", + value = "helm_plate_pvpalliance_a_01_orm.m2", }, { - fileId = "142236", - text = "helm_robe_raidpriest_e_01_orf.m2", - value = "helm_robe_raidpriest_e_01_orf.m2", + fileId = "140830", + text = "helm_plate_pvpalliance_a_01_scf.m2", + value = "helm_plate_pvpalliance_a_01_scf.m2", }, { - fileId = "142237", - text = "helm_robe_raidpriest_e_01_orm.m2", - value = "helm_robe_raidpriest_e_01_orm.m2", + fileId = "140831", + text = "helm_plate_pvpalliance_a_01_scm.m2", + value = "helm_plate_pvpalliance_a_01_scm.m2", }, { - fileId = "142238", - text = "helm_robe_raidpriest_e_01_scf.m2", - value = "helm_robe_raidpriest_e_01_scf.m2", + fileId = "140832", + text = "helm_plate_pvpalliance_a_01_taf.m2", + value = "helm_plate_pvpalliance_a_01_taf.m2", }, { - fileId = "142239", - text = "helm_robe_raidpriest_e_01_scm.m2", - value = "helm_robe_raidpriest_e_01_scm.m2", + fileId = "140833", + text = "helm_plate_pvpalliance_a_01_tam.m2", + value = "helm_plate_pvpalliance_a_01_tam.m2", }, { - fileId = "142240", - text = "helm_robe_raidpriest_e_01_taf.m2", - value = "helm_robe_raidpriest_e_01_taf.m2", + fileId = "140834", + text = "helm_plate_pvpalliance_a_01_trf.m2", + value = "helm_plate_pvpalliance_a_01_trf.m2", }, { - fileId = "142241", - text = "helm_robe_raidpriest_e_01_tam.m2", - value = "helm_robe_raidpriest_e_01_tam.m2", + fileId = "140835", + text = "helm_plate_pvpalliance_a_01_trm.m2", + value = "helm_plate_pvpalliance_a_01_trm.m2", }, { - fileId = "142242", - text = "helm_robe_raidpriest_e_01_trf.m2", - value = "helm_robe_raidpriest_e_01_trf.m2", + fileId = "462283", + text = "helm_plate_pvpalliance_a_01_wof.m2", + value = "helm_plate_pvpalliance_a_01_wof.m2", }, { - fileId = "142243", - text = "helm_robe_raidpriest_e_01_trm.m2", - value = "helm_robe_raidpriest_e_01_trm.m2", + fileId = "437115", + text = "helm_plate_pvpalliance_a_01_wom.m2", + value = "helm_plate_pvpalliance_a_01_wom.m2", }, { - fileId = "142246", - text = "helm_robe_raidpriest_f_01_bef.m2", - value = "helm_robe_raidpriest_f_01_bef.m2", + fileId = "140839", + text = "helm_plate_pvpalliance_c_01_gom.m2", + value = "helm_plate_pvpalliance_c_01_gom.m2", }, { - fileId = "142247", - text = "helm_robe_raidpriest_f_01_bem.m2", - value = "helm_robe_raidpriest_f_01_bem.m2", + fileId = "238086", + text = "helm_plate_pvpdeathknight_b_01_bef.m2", + value = "helm_plate_pvpdeathknight_b_01_bef.m2", }, { - fileId = "142248", - text = "helm_robe_raidpriest_f_01_drf.m2", - value = "helm_robe_raidpriest_f_01_drf.m2", + fileId = "238087", + text = "helm_plate_pvpdeathknight_b_01_bem.m2", + value = "helm_plate_pvpdeathknight_b_01_bem.m2", }, { - fileId = "142249", - text = "helm_robe_raidpriest_f_01_drm.m2", - value = "helm_robe_raidpriest_f_01_drm.m2", + fileId = "238088", + text = "helm_plate_pvpdeathknight_b_01_drf.m2", + value = "helm_plate_pvpdeathknight_b_01_drf.m2", }, { - fileId = "142250", - text = "helm_robe_raidpriest_f_01_dwf.m2", - value = "helm_robe_raidpriest_f_01_dwf.m2", + fileId = "238089", + text = "helm_plate_pvpdeathknight_b_01_drm.m2", + value = "helm_plate_pvpdeathknight_b_01_drm.m2", }, { - fileId = "142251", - text = "helm_robe_raidpriest_f_01_dwm.m2", - value = "helm_robe_raidpriest_f_01_dwm.m2", + fileId = "238090", + text = "helm_plate_pvpdeathknight_b_01_dwf.m2", + value = "helm_plate_pvpdeathknight_b_01_dwf.m2", }, { - fileId = "142252", - text = "helm_robe_raidpriest_f_01_gnf.m2", - value = "helm_robe_raidpriest_f_01_gnf.m2", + fileId = "238091", + text = "helm_plate_pvpdeathknight_b_01_dwm.m2", + value = "helm_plate_pvpdeathknight_b_01_dwm.m2", }, { - fileId = "142253", - text = "helm_robe_raidpriest_f_01_gnm.m2", - value = "helm_robe_raidpriest_f_01_gnm.m2", + fileId = "238092", + text = "helm_plate_pvpdeathknight_b_01_gnf.m2", + value = "helm_plate_pvpdeathknight_b_01_gnf.m2", }, { - fileId = "142254", - text = "helm_robe_raidpriest_f_01_gom.m2", - value = "helm_robe_raidpriest_f_01_gom.m2", + fileId = "238093", + text = "helm_plate_pvpdeathknight_b_01_gnm.m2", + value = "helm_plate_pvpdeathknight_b_01_gnm.m2", }, { - fileId = "142255", - text = "helm_robe_raidpriest_f_01_huf.m2", - value = "helm_robe_raidpriest_f_01_huf.m2", + fileId = "238094", + text = "helm_plate_pvpdeathknight_b_01_gof.m2", + value = "helm_plate_pvpdeathknight_b_01_gof.m2", }, { - fileId = "142256", - text = "helm_robe_raidpriest_f_01_hum.m2", - value = "helm_robe_raidpriest_f_01_hum.m2", + fileId = "238095", + text = "helm_plate_pvpdeathknight_b_01_gom.m2", + value = "helm_plate_pvpdeathknight_b_01_gom.m2", }, { - fileId = "142257", - text = "helm_robe_raidpriest_f_01_nif.m2", - value = "helm_robe_raidpriest_f_01_nif.m2", + fileId = "238096", + text = "helm_plate_pvpdeathknight_b_01_huf.m2", + value = "helm_plate_pvpdeathknight_b_01_huf.m2", }, { - fileId = "142258", - text = "helm_robe_raidpriest_f_01_nim.m2", - value = "helm_robe_raidpriest_f_01_nim.m2", + fileId = "238097", + text = "helm_plate_pvpdeathknight_b_01_hum.m2", + value = "helm_plate_pvpdeathknight_b_01_hum.m2", }, { - fileId = "142259", - text = "helm_robe_raidpriest_f_01_orf.m2", - value = "helm_robe_raidpriest_f_01_orf.m2", + fileId = "238098", + text = "helm_plate_pvpdeathknight_b_01_nif.m2", + value = "helm_plate_pvpdeathknight_b_01_nif.m2", }, { - fileId = "142260", - text = "helm_robe_raidpriest_f_01_orm.m2", - value = "helm_robe_raidpriest_f_01_orm.m2", + fileId = "238099", + text = "helm_plate_pvpdeathknight_b_01_nim.m2", + value = "helm_plate_pvpdeathknight_b_01_nim.m2", }, { - fileId = "142261", - text = "helm_robe_raidpriest_f_01_scf.m2", - value = "helm_robe_raidpriest_f_01_scf.m2", + fileId = "238100", + text = "helm_plate_pvpdeathknight_b_01_orf.m2", + value = "helm_plate_pvpdeathknight_b_01_orf.m2", }, { - fileId = "142262", - text = "helm_robe_raidpriest_f_01_scm.m2", - value = "helm_robe_raidpriest_f_01_scm.m2", + fileId = "238101", + text = "helm_plate_pvpdeathknight_b_01_orm.m2", + value = "helm_plate_pvpdeathknight_b_01_orm.m2", }, { - fileId = "142263", - text = "helm_robe_raidpriest_f_01_taf.m2", - value = "helm_robe_raidpriest_f_01_taf.m2", + fileId = "238102", + text = "helm_plate_pvpdeathknight_b_01_scf.m2", + value = "helm_plate_pvpdeathknight_b_01_scf.m2", }, { - fileId = "142264", - text = "helm_robe_raidpriest_f_01_tam.m2", - value = "helm_robe_raidpriest_f_01_tam.m2", + fileId = "238103", + text = "helm_plate_pvpdeathknight_b_01_scm.m2", + value = "helm_plate_pvpdeathknight_b_01_scm.m2", }, { - fileId = "142265", - text = "helm_robe_raidpriest_f_01_trf.m2", - value = "helm_robe_raidpriest_f_01_trf.m2", + fileId = "238104", + text = "helm_plate_pvpdeathknight_b_01_taf.m2", + value = "helm_plate_pvpdeathknight_b_01_taf.m2", }, { - fileId = "142266", - text = "helm_robe_raidpriest_f_01_trm.m2", - value = "helm_robe_raidpriest_f_01_trm.m2", + fileId = "238105", + text = "helm_plate_pvpdeathknight_b_01_tam.m2", + value = "helm_plate_pvpdeathknight_b_01_tam.m2", }, { - fileId = "142274", - text = "helm_robe_raidpriest_g_01_bef.m2", - value = "helm_robe_raidpriest_g_01_bef.m2", + fileId = "238106", + text = "helm_plate_pvpdeathknight_b_01_trf.m2", + value = "helm_plate_pvpdeathknight_b_01_trf.m2", }, { - fileId = "142275", - text = "helm_robe_raidpriest_g_01_bem.m2", - value = "helm_robe_raidpriest_g_01_bem.m2", + fileId = "238107", + text = "helm_plate_pvpdeathknight_b_01_trm.m2", + value = "helm_plate_pvpdeathknight_b_01_trm.m2", }, { - fileId = "142276", - text = "helm_robe_raidpriest_g_01_drf.m2", - value = "helm_robe_raidpriest_g_01_drf.m2", + fileId = "454256", + text = "helm_plate_pvpdeathknight_b_01_wof.m2", + value = "helm_plate_pvpdeathknight_b_01_wof.m2", }, { - fileId = "142277", - text = "helm_robe_raidpriest_g_01_drm.m2", - value = "helm_robe_raidpriest_g_01_drm.m2", + fileId = "437116", + text = "helm_plate_pvpdeathknight_b_01_wom.m2", + value = "helm_plate_pvpdeathknight_b_01_wom.m2", }, { - fileId = "142278", - text = "helm_robe_raidpriest_g_01_dwf.m2", - value = "helm_robe_raidpriest_g_01_dwf.m2", + fileId = "255237", + text = "helm_plate_pvpdeathknight_b_02_bef.m2", + value = "helm_plate_pvpdeathknight_b_02_bef.m2", }, { - fileId = "142279", - text = "helm_robe_raidpriest_g_01_dwm.m2", - value = "helm_robe_raidpriest_g_01_dwm.m2", + fileId = "255242", + text = "helm_plate_pvpdeathknight_b_02_bem.m2", + value = "helm_plate_pvpdeathknight_b_02_bem.m2", }, { - fileId = "142280", - text = "helm_robe_raidpriest_g_01_gnf.m2", - value = "helm_robe_raidpriest_g_01_gnf.m2", + fileId = "255243", + text = "helm_plate_pvpdeathknight_b_02_drf.m2", + value = "helm_plate_pvpdeathknight_b_02_drf.m2", }, { - fileId = "142281", - text = "helm_robe_raidpriest_g_01_gnm.m2", - value = "helm_robe_raidpriest_g_01_gnm.m2", + fileId = "255244", + text = "helm_plate_pvpdeathknight_b_02_drm.m2", + value = "helm_plate_pvpdeathknight_b_02_drm.m2", }, { - fileId = "142282", - text = "helm_robe_raidpriest_g_01_gof.m2", - value = "helm_robe_raidpriest_g_01_gof.m2", + fileId = "255245", + text = "helm_plate_pvpdeathknight_b_02_dwf.m2", + value = "helm_plate_pvpdeathknight_b_02_dwf.m2", }, { - fileId = "142283", - text = "helm_robe_raidpriest_g_01_gom.m2", - value = "helm_robe_raidpriest_g_01_gom.m2", + fileId = "255246", + text = "helm_plate_pvpdeathknight_b_02_dwm.m2", + value = "helm_plate_pvpdeathknight_b_02_dwm.m2", }, { - fileId = "142284", - text = "helm_robe_raidpriest_g_01_huf.m2", - value = "helm_robe_raidpriest_g_01_huf.m2", + fileId = "255247", + text = "helm_plate_pvpdeathknight_b_02_gnf.m2", + value = "helm_plate_pvpdeathknight_b_02_gnf.m2", }, { - fileId = "142285", - text = "helm_robe_raidpriest_g_01_hum.m2", - value = "helm_robe_raidpriest_g_01_hum.m2", + fileId = "255248", + text = "helm_plate_pvpdeathknight_b_02_gnm.m2", + value = "helm_plate_pvpdeathknight_b_02_gnm.m2", }, { - fileId = "142286", - text = "helm_robe_raidpriest_g_01_nif.m2", - value = "helm_robe_raidpriest_g_01_nif.m2", + fileId = "255249", + text = "helm_plate_pvpdeathknight_b_02_gof.m2", + value = "helm_plate_pvpdeathknight_b_02_gof.m2", }, { - fileId = "142287", - text = "helm_robe_raidpriest_g_01_nim.m2", - value = "helm_robe_raidpriest_g_01_nim.m2", + fileId = "255250", + text = "helm_plate_pvpdeathknight_b_02_gom.m2", + value = "helm_plate_pvpdeathknight_b_02_gom.m2", }, { - fileId = "142288", - text = "helm_robe_raidpriest_g_01_orf.m2", - value = "helm_robe_raidpriest_g_01_orf.m2", + fileId = "255251", + text = "helm_plate_pvpdeathknight_b_02_huf.m2", + value = "helm_plate_pvpdeathknight_b_02_huf.m2", }, { - fileId = "142289", - text = "helm_robe_raidpriest_g_01_orm.m2", - value = "helm_robe_raidpriest_g_01_orm.m2", + fileId = "254903", + text = "helm_plate_pvpdeathknight_b_02_hum.m2", + value = "helm_plate_pvpdeathknight_b_02_hum.m2", }, { - fileId = "142290", - text = "helm_robe_raidpriest_g_01_scf.m2", - value = "helm_robe_raidpriest_g_01_scf.m2", + fileId = "255252", + text = "helm_plate_pvpdeathknight_b_02_nif.m2", + value = "helm_plate_pvpdeathknight_b_02_nif.m2", }, { - fileId = "142291", - text = "helm_robe_raidpriest_g_01_scm.m2", - value = "helm_robe_raidpriest_g_01_scm.m2", + fileId = "255253", + text = "helm_plate_pvpdeathknight_b_02_nim.m2", + value = "helm_plate_pvpdeathknight_b_02_nim.m2", }, { - fileId = "142292", - text = "helm_robe_raidpriest_g_01_taf.m2", - value = "helm_robe_raidpriest_g_01_taf.m2", + fileId = "255254", + text = "helm_plate_pvpdeathknight_b_02_orf.m2", + value = "helm_plate_pvpdeathknight_b_02_orf.m2", }, { - fileId = "142293", - text = "helm_robe_raidpriest_g_01_tam.m2", - value = "helm_robe_raidpriest_g_01_tam.m2", + fileId = "255255", + text = "helm_plate_pvpdeathknight_b_02_orm.m2", + value = "helm_plate_pvpdeathknight_b_02_orm.m2", }, { - fileId = "142294", - text = "helm_robe_raidpriest_g_01_trf.m2", - value = "helm_robe_raidpriest_g_01_trf.m2", + fileId = "255256", + text = "helm_plate_pvpdeathknight_b_02_scf.m2", + value = "helm_plate_pvpdeathknight_b_02_scf.m2", }, { - fileId = "142295", - text = "helm_robe_raidpriest_g_01_trm.m2", - value = "helm_robe_raidpriest_g_01_trm.m2", + fileId = "255257", + text = "helm_plate_pvpdeathknight_b_02_scm.m2", + value = "helm_plate_pvpdeathknight_b_02_scm.m2", }, { - fileId = "341777", - text = "helm_robe_raidpriest_h_01_bef.m2", - value = "helm_robe_raidpriest_h_01_bef.m2", + fileId = "255258", + text = "helm_plate_pvpdeathknight_b_02_taf.m2", + value = "helm_plate_pvpdeathknight_b_02_taf.m2", }, { - fileId = "341778", - text = "helm_robe_raidpriest_h_01_bem.m2", - value = "helm_robe_raidpriest_h_01_bem.m2", + fileId = "255259", + text = "helm_plate_pvpdeathknight_b_02_tam.m2", + value = "helm_plate_pvpdeathknight_b_02_tam.m2", }, { - fileId = "341779", - text = "helm_robe_raidpriest_h_01_drf.m2", - value = "helm_robe_raidpriest_h_01_drf.m2", + fileId = "255260", + text = "helm_plate_pvpdeathknight_b_02_trf.m2", + value = "helm_plate_pvpdeathknight_b_02_trf.m2", }, { - fileId = "341780", - text = "helm_robe_raidpriest_h_01_drm.m2", - value = "helm_robe_raidpriest_h_01_drm.m2", + fileId = "255261", + text = "helm_plate_pvpdeathknight_b_02_trm.m2", + value = "helm_plate_pvpdeathknight_b_02_trm.m2", }, { - fileId = "341781", - text = "helm_robe_raidpriest_h_01_dwf.m2", - value = "helm_robe_raidpriest_h_01_dwf.m2", + fileId = "454257", + text = "helm_plate_pvpdeathknight_b_02_wof.m2", + value = "helm_plate_pvpdeathknight_b_02_wof.m2", }, { - fileId = "341782", - text = "helm_robe_raidpriest_h_01_dwm.m2", - value = "helm_robe_raidpriest_h_01_dwm.m2", + fileId = "436651", + text = "helm_plate_pvpdeathknight_b_02_wom.m2", + value = "helm_plate_pvpdeathknight_b_02_wom.m2", }, { - fileId = "341783", - text = "helm_robe_raidpriest_h_01_gnf.m2", - value = "helm_robe_raidpriest_h_01_gnf.m2", - }, - { - fileId = "341784", - text = "helm_robe_raidpriest_h_01_gnm.m2", - value = "helm_robe_raidpriest_h_01_gnm.m2", + fileId = "304713", + text = "helm_plate_pvpdeathknight_b_03_bef.m2", + value = "helm_plate_pvpdeathknight_b_03_bef.m2", }, { - fileId = "341785", - text = "helm_robe_raidpriest_h_01_gof.m2", - value = "helm_robe_raidpriest_h_01_gof.m2", + fileId = "304714", + text = "helm_plate_pvpdeathknight_b_03_bem.m2", + value = "helm_plate_pvpdeathknight_b_03_bem.m2", }, { - fileId = "341786", - text = "helm_robe_raidpriest_h_01_gom.m2", - value = "helm_robe_raidpriest_h_01_gom.m2", + fileId = "304715", + text = "helm_plate_pvpdeathknight_b_03_drf.m2", + value = "helm_plate_pvpdeathknight_b_03_drf.m2", }, { - fileId = "341787", - text = "helm_robe_raidpriest_h_01_huf.m2", - value = "helm_robe_raidpriest_h_01_huf.m2", + fileId = "304716", + text = "helm_plate_pvpdeathknight_b_03_drm.m2", + value = "helm_plate_pvpdeathknight_b_03_drm.m2", }, { - fileId = "341788", - text = "helm_robe_raidpriest_h_01_hum.m2", - value = "helm_robe_raidpriest_h_01_hum.m2", + fileId = "304717", + text = "helm_plate_pvpdeathknight_b_03_dwf.m2", + value = "helm_plate_pvpdeathknight_b_03_dwf.m2", }, { - fileId = "341789", - text = "helm_robe_raidpriest_h_01_nif.m2", - value = "helm_robe_raidpriest_h_01_nif.m2", + fileId = "304718", + text = "helm_plate_pvpdeathknight_b_03_dwm.m2", + value = "helm_plate_pvpdeathknight_b_03_dwm.m2", }, { - fileId = "341790", - text = "helm_robe_raidpriest_h_01_nim.m2", - value = "helm_robe_raidpriest_h_01_nim.m2", + fileId = "304719", + text = "helm_plate_pvpdeathknight_b_03_gnf.m2", + value = "helm_plate_pvpdeathknight_b_03_gnf.m2", }, { - fileId = "341791", - text = "helm_robe_raidpriest_h_01_orf.m2", - value = "helm_robe_raidpriest_h_01_orf.m2", + fileId = "304720", + text = "helm_plate_pvpdeathknight_b_03_gnm.m2", + value = "helm_plate_pvpdeathknight_b_03_gnm.m2", }, { - fileId = "341792", - text = "helm_robe_raidpriest_h_01_orm.m2", - value = "helm_robe_raidpriest_h_01_orm.m2", + fileId = "304721", + text = "helm_plate_pvpdeathknight_b_03_gof.m2", + value = "helm_plate_pvpdeathknight_b_03_gof.m2", }, { - fileId = "341793", - text = "helm_robe_raidpriest_h_01_scf.m2", - value = "helm_robe_raidpriest_h_01_scf.m2", + fileId = "304722", + text = "helm_plate_pvpdeathknight_b_03_gom.m2", + value = "helm_plate_pvpdeathknight_b_03_gom.m2", }, { - fileId = "341794", - text = "helm_robe_raidpriest_h_01_scm.m2", - value = "helm_robe_raidpriest_h_01_scm.m2", + fileId = "304723", + text = "helm_plate_pvpdeathknight_b_03_huf.m2", + value = "helm_plate_pvpdeathknight_b_03_huf.m2", }, { - fileId = "341795", - text = "helm_robe_raidpriest_h_01_taf.m2", - value = "helm_robe_raidpriest_h_01_taf.m2", + fileId = "304724", + text = "helm_plate_pvpdeathknight_b_03_hum.m2", + value = "helm_plate_pvpdeathknight_b_03_hum.m2", }, { - fileId = "341796", - text = "helm_robe_raidpriest_h_01_tam.m2", - value = "helm_robe_raidpriest_h_01_tam.m2", + fileId = "304725", + text = "helm_plate_pvpdeathknight_b_03_nif.m2", + value = "helm_plate_pvpdeathknight_b_03_nif.m2", }, { - fileId = "341797", - text = "helm_robe_raidpriest_h_01_trf.m2", - value = "helm_robe_raidpriest_h_01_trf.m2", + fileId = "304726", + text = "helm_plate_pvpdeathknight_b_03_nim.m2", + value = "helm_plate_pvpdeathknight_b_03_nim.m2", }, { - fileId = "341798", - text = "helm_robe_raidpriest_h_01_trm.m2", - value = "helm_robe_raidpriest_h_01_trm.m2", + fileId = "304727", + text = "helm_plate_pvpdeathknight_b_03_orf.m2", + value = "helm_plate_pvpdeathknight_b_03_orf.m2", }, { - fileId = "142300", - text = "helm_robe_raidshaman_c_01_bef.m2", - value = "helm_robe_raidshaman_c_01_bef.m2", + fileId = "304728", + text = "helm_plate_pvpdeathknight_b_03_orm.m2", + value = "helm_plate_pvpdeathknight_b_03_orm.m2", }, { - fileId = "142301", - text = "helm_robe_raidshaman_c_01_bem.m2", - value = "helm_robe_raidshaman_c_01_bem.m2", + fileId = "304729", + text = "helm_plate_pvpdeathknight_b_03_scf.m2", + value = "helm_plate_pvpdeathknight_b_03_scf.m2", }, { - fileId = "142302", - text = "helm_robe_raidshaman_c_01_drf.m2", - value = "helm_robe_raidshaman_c_01_drf.m2", + fileId = "304730", + text = "helm_plate_pvpdeathknight_b_03_scm.m2", + value = "helm_plate_pvpdeathknight_b_03_scm.m2", }, { - fileId = "142303", - text = "helm_robe_raidshaman_c_01_drm.m2", - value = "helm_robe_raidshaman_c_01_drm.m2", + fileId = "304731", + text = "helm_plate_pvpdeathknight_b_03_taf.m2", + value = "helm_plate_pvpdeathknight_b_03_taf.m2", }, { - fileId = "142304", - text = "helm_robe_raidshaman_c_01_dwf.m2", - value = "helm_robe_raidshaman_c_01_dwf.m2", + fileId = "304732", + text = "helm_plate_pvpdeathknight_b_03_tam.m2", + value = "helm_plate_pvpdeathknight_b_03_tam.m2", }, { - fileId = "142305", - text = "helm_robe_raidshaman_c_01_dwm.m2", - value = "helm_robe_raidshaman_c_01_dwm.m2", + fileId = "304733", + text = "helm_plate_pvpdeathknight_b_03_trf.m2", + value = "helm_plate_pvpdeathknight_b_03_trf.m2", }, { - fileId = "142306", - text = "helm_robe_raidshaman_c_01_gnf.m2", - value = "helm_robe_raidshaman_c_01_gnf.m2", + fileId = "304734", + text = "helm_plate_pvpdeathknight_b_03_trm.m2", + value = "helm_plate_pvpdeathknight_b_03_trm.m2", }, { - fileId = "142307", - text = "helm_robe_raidshaman_c_01_gnm.m2", - value = "helm_robe_raidshaman_c_01_gnm.m2", + fileId = "454258", + text = "helm_plate_pvpdeathknight_b_03_wof.m2", + value = "helm_plate_pvpdeathknight_b_03_wof.m2", }, { - fileId = "142308", - text = "helm_robe_raidshaman_c_01_gof.m2", - value = "helm_robe_raidshaman_c_01_gof.m2", + fileId = "436652", + text = "helm_plate_pvpdeathknight_b_03_wom.m2", + value = "helm_plate_pvpdeathknight_b_03_wom.m2", }, { - fileId = "142309", - text = "helm_robe_raidshaman_c_01_gom.m2", - value = "helm_robe_raidshaman_c_01_gom.m2", + fileId = "343817", + text = "helm_plate_pvpdeathknight_b_04_bef.m2", + value = "helm_plate_pvpdeathknight_b_04_bef.m2", }, { - fileId = "142310", - text = "helm_robe_raidshaman_c_01_huf.m2", - value = "helm_robe_raidshaman_c_01_huf.m2", + fileId = "343818", + text = "helm_plate_pvpdeathknight_b_04_bem.m2", + value = "helm_plate_pvpdeathknight_b_04_bem.m2", }, { - fileId = "142311", - text = "helm_robe_raidshaman_c_01_hum.m2", - value = "helm_robe_raidshaman_c_01_hum.m2", + fileId = "343819", + text = "helm_plate_pvpdeathknight_b_04_drf.m2", + value = "helm_plate_pvpdeathknight_b_04_drf.m2", }, { - fileId = "142312", - text = "helm_robe_raidshaman_c_01_nif.m2", - value = "helm_robe_raidshaman_c_01_nif.m2", + fileId = "343820", + text = "helm_plate_pvpdeathknight_b_04_drm.m2", + value = "helm_plate_pvpdeathknight_b_04_drm.m2", }, { - fileId = "142313", - text = "helm_robe_raidshaman_c_01_nim.m2", - value = "helm_robe_raidshaman_c_01_nim.m2", + fileId = "343821", + text = "helm_plate_pvpdeathknight_b_04_dwf.m2", + value = "helm_plate_pvpdeathknight_b_04_dwf.m2", }, { - fileId = "142314", - text = "helm_robe_raidshaman_c_01_orf.m2", - value = "helm_robe_raidshaman_c_01_orf.m2", + fileId = "343822", + text = "helm_plate_pvpdeathknight_b_04_dwm.m2", + value = "helm_plate_pvpdeathknight_b_04_dwm.m2", }, { - fileId = "142315", - text = "helm_robe_raidshaman_c_01_orm.m2", - value = "helm_robe_raidshaman_c_01_orm.m2", + fileId = "343823", + text = "helm_plate_pvpdeathknight_b_04_gnf.m2", + value = "helm_plate_pvpdeathknight_b_04_gnf.m2", }, { - fileId = "142316", - text = "helm_robe_raidshaman_c_01_scf.m2", - value = "helm_robe_raidshaman_c_01_scf.m2", + fileId = "343824", + text = "helm_plate_pvpdeathknight_b_04_gnm.m2", + value = "helm_plate_pvpdeathknight_b_04_gnm.m2", }, { - fileId = "142317", - text = "helm_robe_raidshaman_c_01_scm.m2", - value = "helm_robe_raidshaman_c_01_scm.m2", + fileId = "343825", + text = "helm_plate_pvpdeathknight_b_04_gof.m2", + value = "helm_plate_pvpdeathknight_b_04_gof.m2", }, { - fileId = "142318", - text = "helm_robe_raidshaman_c_01_taf.m2", - value = "helm_robe_raidshaman_c_01_taf.m2", + fileId = "343826", + text = "helm_plate_pvpdeathknight_b_04_gom.m2", + value = "helm_plate_pvpdeathknight_b_04_gom.m2", }, { - fileId = "142319", - text = "helm_robe_raidshaman_c_01_tam.m2", - value = "helm_robe_raidshaman_c_01_tam.m2", + fileId = "343827", + text = "helm_plate_pvpdeathknight_b_04_huf.m2", + value = "helm_plate_pvpdeathknight_b_04_huf.m2", }, { - fileId = "142320", - text = "helm_robe_raidshaman_c_01_trf.m2", - value = "helm_robe_raidshaman_c_01_trf.m2", + fileId = "343828", + text = "helm_plate_pvpdeathknight_b_04_hum.m2", + value = "helm_plate_pvpdeathknight_b_04_hum.m2", }, { - fileId = "142321", - text = "helm_robe_raidshaman_c_01_trm.m2", - value = "helm_robe_raidshaman_c_01_trm.m2", + fileId = "343829", + text = "helm_plate_pvpdeathknight_b_04_nif.m2", + value = "helm_plate_pvpdeathknight_b_04_nif.m2", }, { - fileId = "142322", - text = "helm_robe_raidwarlock_a_01_bef.m2", - value = "helm_robe_raidwarlock_a_01_bef.m2", + fileId = "343830", + text = "helm_plate_pvpdeathknight_b_04_nim.m2", + value = "helm_plate_pvpdeathknight_b_04_nim.m2", }, { - fileId = "142323", - text = "helm_robe_raidwarlock_a_01_bem.m2", - value = "helm_robe_raidwarlock_a_01_bem.m2", + fileId = "343831", + text = "helm_plate_pvpdeathknight_b_04_orf.m2", + value = "helm_plate_pvpdeathknight_b_04_orf.m2", }, { - fileId = "142324", - text = "helm_robe_raidwarlock_a_01_drf.m2", - value = "helm_robe_raidwarlock_a_01_drf.m2", + fileId = "343832", + text = "helm_plate_pvpdeathknight_b_04_orm.m2", + value = "helm_plate_pvpdeathknight_b_04_orm.m2", }, { - fileId = "142325", - text = "helm_robe_raidwarlock_a_01_drm.m2", - value = "helm_robe_raidwarlock_a_01_drm.m2", + fileId = "343833", + text = "helm_plate_pvpdeathknight_b_04_scf.m2", + value = "helm_plate_pvpdeathknight_b_04_scf.m2", }, { - fileId = "142326", - text = "helm_robe_raidwarlock_a_01_dwf.m2", - value = "helm_robe_raidwarlock_a_01_dwf.m2", + fileId = "343834", + text = "helm_plate_pvpdeathknight_b_04_scm.m2", + value = "helm_plate_pvpdeathknight_b_04_scm.m2", }, { - fileId = "142327", - text = "helm_robe_raidwarlock_a_01_dwm.m2", - value = "helm_robe_raidwarlock_a_01_dwm.m2", + fileId = "343835", + text = "helm_plate_pvpdeathknight_b_04_taf.m2", + value = "helm_plate_pvpdeathknight_b_04_taf.m2", }, { - fileId = "142328", - text = "helm_robe_raidwarlock_a_01_gnf.m2", - value = "helm_robe_raidwarlock_a_01_gnf.m2", + fileId = "343836", + text = "helm_plate_pvpdeathknight_b_04_tam.m2", + value = "helm_plate_pvpdeathknight_b_04_tam.m2", }, { - fileId = "142329", - text = "helm_robe_raidwarlock_a_01_gnm.m2", - value = "helm_robe_raidwarlock_a_01_gnm.m2", + fileId = "343837", + text = "helm_plate_pvpdeathknight_b_04_trf.m2", + value = "helm_plate_pvpdeathknight_b_04_trf.m2", }, { - fileId = "142330", - text = "helm_robe_raidwarlock_a_01_gof.m2", - value = "helm_robe_raidwarlock_a_01_gof.m2", + fileId = "343838", + text = "helm_plate_pvpdeathknight_b_04_trm.m2", + value = "helm_plate_pvpdeathknight_b_04_trm.m2", }, { - fileId = "142331", - text = "helm_robe_raidwarlock_a_01_gom.m2", - value = "helm_robe_raidwarlock_a_01_gom.m2", + fileId = "454259", + text = "helm_plate_pvpdeathknight_b_04_wof.m2", + value = "helm_plate_pvpdeathknight_b_04_wof.m2", }, { - fileId = "142332", - text = "helm_robe_raidwarlock_a_01_huf.m2", - value = "helm_robe_raidwarlock_a_01_huf.m2", + fileId = "431611", + text = "helm_plate_pvpdeathknight_b_04_wom.m2", + value = "helm_plate_pvpdeathknight_b_04_wom.m2", }, { - fileId = "142333", - text = "helm_robe_raidwarlock_a_01_hum.m2", - value = "helm_robe_raidwarlock_a_01_hum.m2", + fileId = "367332", + text = "helm_plate_pvpdeathknight_c_01_bef.m2", + value = "helm_plate_pvpdeathknight_c_01_bef.m2", }, { - fileId = "142334", - text = "helm_robe_raidwarlock_a_01_nif.m2", - value = "helm_robe_raidwarlock_a_01_nif.m2", + fileId = "367333", + text = "helm_plate_pvpdeathknight_c_01_bem.m2", + value = "helm_plate_pvpdeathknight_c_01_bem.m2", }, { - fileId = "142335", - text = "helm_robe_raidwarlock_a_01_nim.m2", - value = "helm_robe_raidwarlock_a_01_nim.m2", + fileId = "367334", + text = "helm_plate_pvpdeathknight_c_01_drf.m2", + value = "helm_plate_pvpdeathknight_c_01_drf.m2", }, { - fileId = "142336", - text = "helm_robe_raidwarlock_a_01_orf.m2", - value = "helm_robe_raidwarlock_a_01_orf.m2", + fileId = "367335", + text = "helm_plate_pvpdeathknight_c_01_drm.m2", + value = "helm_plate_pvpdeathknight_c_01_drm.m2", }, { - fileId = "142337", - text = "helm_robe_raidwarlock_a_01_orm.m2", - value = "helm_robe_raidwarlock_a_01_orm.m2", + fileId = "367336", + text = "helm_plate_pvpdeathknight_c_01_dwf.m2", + value = "helm_plate_pvpdeathknight_c_01_dwf.m2", }, { - fileId = "142338", - text = "helm_robe_raidwarlock_a_01_scf.m2", - value = "helm_robe_raidwarlock_a_01_scf.m2", + fileId = "367337", + text = "helm_plate_pvpdeathknight_c_01_dwm.m2", + value = "helm_plate_pvpdeathknight_c_01_dwm.m2", }, { - fileId = "142339", - text = "helm_robe_raidwarlock_a_01_scm.m2", - value = "helm_robe_raidwarlock_a_01_scm.m2", + fileId = "367338", + text = "helm_plate_pvpdeathknight_c_01_gnf.m2", + value = "helm_plate_pvpdeathknight_c_01_gnf.m2", }, { - fileId = "142340", - text = "helm_robe_raidwarlock_a_01_taf.m2", - value = "helm_robe_raidwarlock_a_01_taf.m2", + fileId = "367339", + text = "helm_plate_pvpdeathknight_c_01_gnm.m2", + value = "helm_plate_pvpdeathknight_c_01_gnm.m2", }, { - fileId = "142341", - text = "helm_robe_raidwarlock_a_01_tam.m2", - value = "helm_robe_raidwarlock_a_01_tam.m2", + fileId = "367340", + text = "helm_plate_pvpdeathknight_c_01_gof.m2", + value = "helm_plate_pvpdeathknight_c_01_gof.m2", }, { - fileId = "142342", - text = "helm_robe_raidwarlock_a_01_trf.m2", - value = "helm_robe_raidwarlock_a_01_trf.m2", + fileId = "367341", + text = "helm_plate_pvpdeathknight_c_01_gom.m2", + value = "helm_plate_pvpdeathknight_c_01_gom.m2", }, { - fileId = "142343", - text = "helm_robe_raidwarlock_a_01_trm.m2", - value = "helm_robe_raidwarlock_a_01_trm.m2", + fileId = "367342", + text = "helm_plate_pvpdeathknight_c_01_huf.m2", + value = "helm_plate_pvpdeathknight_c_01_huf.m2", }, { - fileId = "142349", - text = "helm_robe_raidwarlock_b_01_bef.m2", - value = "helm_robe_raidwarlock_b_01_bef.m2", + fileId = "367343", + text = "helm_plate_pvpdeathknight_c_01_hum.m2", + value = "helm_plate_pvpdeathknight_c_01_hum.m2", }, { - fileId = "142350", - text = "helm_robe_raidwarlock_b_01_bem.m2", - value = "helm_robe_raidwarlock_b_01_bem.m2", + fileId = "367344", + text = "helm_plate_pvpdeathknight_c_01_nif.m2", + value = "helm_plate_pvpdeathknight_c_01_nif.m2", }, { - fileId = "142351", - text = "helm_robe_raidwarlock_b_01_drf.m2", - value = "helm_robe_raidwarlock_b_01_drf.m2", + fileId = "367345", + text = "helm_plate_pvpdeathknight_c_01_nim.m2", + value = "helm_plate_pvpdeathknight_c_01_nim.m2", }, { - fileId = "142352", - text = "helm_robe_raidwarlock_b_01_drm.m2", - value = "helm_robe_raidwarlock_b_01_drm.m2", + fileId = "367346", + text = "helm_plate_pvpdeathknight_c_01_orf.m2", + value = "helm_plate_pvpdeathknight_c_01_orf.m2", }, { - fileId = "142353", - text = "helm_robe_raidwarlock_b_01_dwf.m2", - value = "helm_robe_raidwarlock_b_01_dwf.m2", + fileId = "367347", + text = "helm_plate_pvpdeathknight_c_01_orm.m2", + value = "helm_plate_pvpdeathknight_c_01_orm.m2", }, { - fileId = "142354", - text = "helm_robe_raidwarlock_b_01_dwm.m2", - value = "helm_robe_raidwarlock_b_01_dwm.m2", + fileId = "367348", + text = "helm_plate_pvpdeathknight_c_01_scf.m2", + value = "helm_plate_pvpdeathknight_c_01_scf.m2", }, { - fileId = "142355", - text = "helm_robe_raidwarlock_b_01_gnf.m2", - value = "helm_robe_raidwarlock_b_01_gnf.m2", + fileId = "367349", + text = "helm_plate_pvpdeathknight_c_01_scm.m2", + value = "helm_plate_pvpdeathknight_c_01_scm.m2", }, { - fileId = "142356", - text = "helm_robe_raidwarlock_b_01_gnm.m2", - value = "helm_robe_raidwarlock_b_01_gnm.m2", + fileId = "367350", + text = "helm_plate_pvpdeathknight_c_01_taf.m2", + value = "helm_plate_pvpdeathknight_c_01_taf.m2", }, { - fileId = "142357", - text = "helm_robe_raidwarlock_b_01_gof.m2", - value = "helm_robe_raidwarlock_b_01_gof.m2", + fileId = "367351", + text = "helm_plate_pvpdeathknight_c_01_tam.m2", + value = "helm_plate_pvpdeathknight_c_01_tam.m2", }, { - fileId = "142358", - text = "helm_robe_raidwarlock_b_01_gom.m2", - value = "helm_robe_raidwarlock_b_01_gom.m2", + fileId = "367352", + text = "helm_plate_pvpdeathknight_c_01_trf.m2", + value = "helm_plate_pvpdeathknight_c_01_trf.m2", }, { - fileId = "142359", - text = "helm_robe_raidwarlock_b_01_huf.m2", - value = "helm_robe_raidwarlock_b_01_huf.m2", + fileId = "367353", + text = "helm_plate_pvpdeathknight_c_01_trm.m2", + value = "helm_plate_pvpdeathknight_c_01_trm.m2", }, { - fileId = "142360", - text = "helm_robe_raidwarlock_b_01_hum.m2", - value = "helm_robe_raidwarlock_b_01_hum.m2", + fileId = "454260", + text = "helm_plate_pvpdeathknight_c_01_wof.m2", + value = "helm_plate_pvpdeathknight_c_01_wof.m2", }, { - fileId = "142361", - text = "helm_robe_raidwarlock_b_01_nif.m2", - value = "helm_robe_raidwarlock_b_01_nif.m2", + fileId = "431614", + text = "helm_plate_pvpdeathknight_c_01_wom.m2", + value = "helm_plate_pvpdeathknight_c_01_wom.m2", }, { - fileId = "142362", - text = "helm_robe_raidwarlock_b_01_nim.m2", - value = "helm_robe_raidwarlock_b_01_nim.m2", + fileId = "469331", + text = "helm_plate_pvpdeathknight_c_02_bef.m2", + value = "helm_plate_pvpdeathknight_c_02_bef.m2", }, { - fileId = "142363", - text = "helm_robe_raidwarlock_b_01_orf.m2", - value = "helm_robe_raidwarlock_b_01_orf.m2", + fileId = "469332", + text = "helm_plate_pvpdeathknight_c_02_bem.m2", + value = "helm_plate_pvpdeathknight_c_02_bem.m2", }, { - fileId = "142364", - text = "helm_robe_raidwarlock_b_01_orm.m2", - value = "helm_robe_raidwarlock_b_01_orm.m2", + fileId = "469333", + text = "helm_plate_pvpdeathknight_c_02_drf.m2", + value = "helm_plate_pvpdeathknight_c_02_drf.m2", }, { - fileId = "142365", - text = "helm_robe_raidwarlock_b_01_scf.m2", - value = "helm_robe_raidwarlock_b_01_scf.m2", + fileId = "469334", + text = "helm_plate_pvpdeathknight_c_02_drm.m2", + value = "helm_plate_pvpdeathknight_c_02_drm.m2", }, { - fileId = "142366", - text = "helm_robe_raidwarlock_b_01_scm.m2", - value = "helm_robe_raidwarlock_b_01_scm.m2", + fileId = "469335", + text = "helm_plate_pvpdeathknight_c_02_dwf.m2", + value = "helm_plate_pvpdeathknight_c_02_dwf.m2", }, { - fileId = "142367", - text = "helm_robe_raidwarlock_b_01_taf.m2", - value = "helm_robe_raidwarlock_b_01_taf.m2", + fileId = "469336", + text = "helm_plate_pvpdeathknight_c_02_dwm.m2", + value = "helm_plate_pvpdeathknight_c_02_dwm.m2", }, { - fileId = "142368", - text = "helm_robe_raidwarlock_b_01_tam.m2", - value = "helm_robe_raidwarlock_b_01_tam.m2", + fileId = "469337", + text = "helm_plate_pvpdeathknight_c_02_gnf.m2", + value = "helm_plate_pvpdeathknight_c_02_gnf.m2", }, { - fileId = "142369", - text = "helm_robe_raidwarlock_b_01_trf.m2", - value = "helm_robe_raidwarlock_b_01_trf.m2", + fileId = "469338", + text = "helm_plate_pvpdeathknight_c_02_gnm.m2", + value = "helm_plate_pvpdeathknight_c_02_gnm.m2", }, { - fileId = "142370", - text = "helm_robe_raidwarlock_b_01_trm.m2", - value = "helm_robe_raidwarlock_b_01_trm.m2", + fileId = "469339", + text = "helm_plate_pvpdeathknight_c_02_gof.m2", + value = "helm_plate_pvpdeathknight_c_02_gof.m2", }, { - fileId = "142375", - text = "helm_robe_raidwarlock_c_01_bef.m2", - value = "helm_robe_raidwarlock_c_01_bef.m2", + fileId = "469340", + text = "helm_plate_pvpdeathknight_c_02_gom.m2", + value = "helm_plate_pvpdeathknight_c_02_gom.m2", }, { - fileId = "142376", - text = "helm_robe_raidwarlock_c_01_bem.m2", - value = "helm_robe_raidwarlock_c_01_bem.m2", + fileId = "469341", + text = "helm_plate_pvpdeathknight_c_02_huf.m2", + value = "helm_plate_pvpdeathknight_c_02_huf.m2", }, { - fileId = "142377", - text = "helm_robe_raidwarlock_c_01_drf.m2", - value = "helm_robe_raidwarlock_c_01_drf.m2", + fileId = "469342", + text = "helm_plate_pvpdeathknight_c_02_hum.m2", + value = "helm_plate_pvpdeathknight_c_02_hum.m2", }, { - fileId = "142378", - text = "helm_robe_raidwarlock_c_01_drm.m2", - value = "helm_robe_raidwarlock_c_01_drm.m2", + fileId = "469343", + text = "helm_plate_pvpdeathknight_c_02_nif.m2", + value = "helm_plate_pvpdeathknight_c_02_nif.m2", }, { - fileId = "142379", - text = "helm_robe_raidwarlock_c_01_dwf.m2", - value = "helm_robe_raidwarlock_c_01_dwf.m2", + fileId = "469344", + text = "helm_plate_pvpdeathknight_c_02_nim.m2", + value = "helm_plate_pvpdeathknight_c_02_nim.m2", }, { - fileId = "142380", - text = "helm_robe_raidwarlock_c_01_dwm.m2", - value = "helm_robe_raidwarlock_c_01_dwm.m2", + fileId = "469345", + text = "helm_plate_pvpdeathknight_c_02_orf.m2", + value = "helm_plate_pvpdeathknight_c_02_orf.m2", }, { - fileId = "142381", - text = "helm_robe_raidwarlock_c_01_gnf.m2", - value = "helm_robe_raidwarlock_c_01_gnf.m2", + fileId = "469346", + text = "helm_plate_pvpdeathknight_c_02_orm.m2", + value = "helm_plate_pvpdeathknight_c_02_orm.m2", }, { - fileId = "142382", - text = "helm_robe_raidwarlock_c_01_gnm.m2", - value = "helm_robe_raidwarlock_c_01_gnm.m2", + fileId = "469347", + text = "helm_plate_pvpdeathknight_c_02_scf.m2", + value = "helm_plate_pvpdeathknight_c_02_scf.m2", }, { - fileId = "142383", - text = "helm_robe_raidwarlock_c_01_gof.m2", - value = "helm_robe_raidwarlock_c_01_gof.m2", + fileId = "469348", + text = "helm_plate_pvpdeathknight_c_02_scm.m2", + value = "helm_plate_pvpdeathknight_c_02_scm.m2", }, { - fileId = "142384", - text = "helm_robe_raidwarlock_c_01_gom.m2", - value = "helm_robe_raidwarlock_c_01_gom.m2", + fileId = "469349", + text = "helm_plate_pvpdeathknight_c_02_taf.m2", + value = "helm_plate_pvpdeathknight_c_02_taf.m2", }, { - fileId = "142385", - text = "helm_robe_raidwarlock_c_01_huf.m2", - value = "helm_robe_raidwarlock_c_01_huf.m2", + fileId = "469350", + text = "helm_plate_pvpdeathknight_c_02_tam.m2", + value = "helm_plate_pvpdeathknight_c_02_tam.m2", }, { - fileId = "142386", - text = "helm_robe_raidwarlock_c_01_hum.m2", - value = "helm_robe_raidwarlock_c_01_hum.m2", + fileId = "469351", + text = "helm_plate_pvpdeathknight_c_02_trf.m2", + value = "helm_plate_pvpdeathknight_c_02_trf.m2", }, { - fileId = "142387", - text = "helm_robe_raidwarlock_c_01_nif.m2", - value = "helm_robe_raidwarlock_c_01_nif.m2", + fileId = "469352", + text = "helm_plate_pvpdeathknight_c_02_trm.m2", + value = "helm_plate_pvpdeathknight_c_02_trm.m2", }, { - fileId = "142388", - text = "helm_robe_raidwarlock_c_01_nim.m2", - value = "helm_robe_raidwarlock_c_01_nim.m2", + fileId = "469353", + text = "helm_plate_pvpdeathknight_c_02_wof.m2", + value = "helm_plate_pvpdeathknight_c_02_wof.m2", }, { - fileId = "142389", - text = "helm_robe_raidwarlock_c_01_orf.m2", - value = "helm_robe_raidwarlock_c_01_orf.m2", + fileId = "469354", + text = "helm_plate_pvpdeathknight_c_02_wom.m2", + value = "helm_plate_pvpdeathknight_c_02_wom.m2", }, { - fileId = "142390", - text = "helm_robe_raidwarlock_c_01_orm.m2", - value = "helm_robe_raidwarlock_c_01_orm.m2", + fileId = "532146", + text = "helm_plate_pvpdeathknight_d_01_bef.m2", + value = "helm_plate_pvpdeathknight_d_01_bef.m2", }, { - fileId = "142391", - text = "helm_robe_raidwarlock_c_01_scf.m2", - value = "helm_robe_raidwarlock_c_01_scf.m2", + fileId = "532148", + text = "helm_plate_pvpdeathknight_d_01_bem.m2", + value = "helm_plate_pvpdeathknight_d_01_bem.m2", }, { - fileId = "142392", - text = "helm_robe_raidwarlock_c_01_scm.m2", - value = "helm_robe_raidwarlock_c_01_scm.m2", + fileId = "532150", + text = "helm_plate_pvpdeathknight_d_01_drf.m2", + value = "helm_plate_pvpdeathknight_d_01_drf.m2", }, { - fileId = "142393", - text = "helm_robe_raidwarlock_c_01_taf.m2", - value = "helm_robe_raidwarlock_c_01_taf.m2", + fileId = "532152", + text = "helm_plate_pvpdeathknight_d_01_drm.m2", + value = "helm_plate_pvpdeathknight_d_01_drm.m2", }, { - fileId = "142394", - text = "helm_robe_raidwarlock_c_01_tam.m2", - value = "helm_robe_raidwarlock_c_01_tam.m2", + fileId = "532154", + text = "helm_plate_pvpdeathknight_d_01_dwf.m2", + value = "helm_plate_pvpdeathknight_d_01_dwf.m2", }, { - fileId = "142395", - text = "helm_robe_raidwarlock_c_01_trf.m2", - value = "helm_robe_raidwarlock_c_01_trf.m2", + fileId = "532156", + text = "helm_plate_pvpdeathknight_d_01_dwm.m2", + value = "helm_plate_pvpdeathknight_d_01_dwm.m2", }, { - fileId = "142396", - text = "helm_robe_raidwarlock_c_01_trm.m2", - value = "helm_robe_raidwarlock_c_01_trm.m2", + fileId = "532158", + text = "helm_plate_pvpdeathknight_d_01_gnf.m2", + value = "helm_plate_pvpdeathknight_d_01_gnf.m2", }, { - fileId = "142398", - text = "helm_robe_raidwarlock_d_01_bef.m2", - value = "helm_robe_raidwarlock_d_01_bef.m2", + fileId = "532160", + text = "helm_plate_pvpdeathknight_d_01_gnm.m2", + value = "helm_plate_pvpdeathknight_d_01_gnm.m2", }, { - fileId = "142399", - text = "helm_robe_raidwarlock_d_01_bem.m2", - value = "helm_robe_raidwarlock_d_01_bem.m2", + fileId = "532162", + text = "helm_plate_pvpdeathknight_d_01_gof.m2", + value = "helm_plate_pvpdeathknight_d_01_gof.m2", }, { - fileId = "142400", - text = "helm_robe_raidwarlock_d_01_drf.m2", - value = "helm_robe_raidwarlock_d_01_drf.m2", + fileId = "532164", + text = "helm_plate_pvpdeathknight_d_01_gom.m2", + value = "helm_plate_pvpdeathknight_d_01_gom.m2", }, { - fileId = "142401", - text = "helm_robe_raidwarlock_d_01_drm.m2", - value = "helm_robe_raidwarlock_d_01_drm.m2", + fileId = "532166", + text = "helm_plate_pvpdeathknight_d_01_huf.m2", + value = "helm_plate_pvpdeathknight_d_01_huf.m2", }, { - fileId = "142402", - text = "helm_robe_raidwarlock_d_01_dwf.m2", - value = "helm_robe_raidwarlock_d_01_dwf.m2", + fileId = "532168", + text = "helm_plate_pvpdeathknight_d_01_hum.m2", + value = "helm_plate_pvpdeathknight_d_01_hum.m2", }, { - fileId = "142403", - text = "helm_robe_raidwarlock_d_01_dwm.m2", - value = "helm_robe_raidwarlock_d_01_dwm.m2", + fileId = "532170", + text = "helm_plate_pvpdeathknight_d_01_nif.m2", + value = "helm_plate_pvpdeathknight_d_01_nif.m2", }, { - fileId = "142404", - text = "helm_robe_raidwarlock_d_01_gnf.m2", - value = "helm_robe_raidwarlock_d_01_gnf.m2", + fileId = "532172", + text = "helm_plate_pvpdeathknight_d_01_nim.m2", + value = "helm_plate_pvpdeathknight_d_01_nim.m2", }, { - fileId = "142405", - text = "helm_robe_raidwarlock_d_01_gnm.m2", - value = "helm_robe_raidwarlock_d_01_gnm.m2", + fileId = "532174", + text = "helm_plate_pvpdeathknight_d_01_orf.m2", + value = "helm_plate_pvpdeathknight_d_01_orf.m2", }, { - fileId = "142406", - text = "helm_robe_raidwarlock_d_01_gof.m2", - value = "helm_robe_raidwarlock_d_01_gof.m2", + fileId = "532176", + text = "helm_plate_pvpdeathknight_d_01_orm.m2", + value = "helm_plate_pvpdeathknight_d_01_orm.m2", }, { - fileId = "142407", - text = "helm_robe_raidwarlock_d_01_gom.m2", - value = "helm_robe_raidwarlock_d_01_gom.m2", + fileId = "532178", + text = "helm_plate_pvpdeathknight_d_01_scf.m2", + value = "helm_plate_pvpdeathknight_d_01_scf.m2", }, { - fileId = "142408", - text = "helm_robe_raidwarlock_d_01_huf.m2", - value = "helm_robe_raidwarlock_d_01_huf.m2", + fileId = "532180", + text = "helm_plate_pvpdeathknight_d_01_scm.m2", + value = "helm_plate_pvpdeathknight_d_01_scm.m2", }, { - fileId = "142409", - text = "helm_robe_raidwarlock_d_01_hum.m2", - value = "helm_robe_raidwarlock_d_01_hum.m2", + fileId = "532182", + text = "helm_plate_pvpdeathknight_d_01_taf.m2", + value = "helm_plate_pvpdeathknight_d_01_taf.m2", }, { - fileId = "142410", - text = "helm_robe_raidwarlock_d_01_nif.m2", - value = "helm_robe_raidwarlock_d_01_nif.m2", + fileId = "532184", + text = "helm_plate_pvpdeathknight_d_01_tam.m2", + value = "helm_plate_pvpdeathknight_d_01_tam.m2", }, { - fileId = "142411", - text = "helm_robe_raidwarlock_d_01_nim.m2", - value = "helm_robe_raidwarlock_d_01_nim.m2", + fileId = "532186", + text = "helm_plate_pvpdeathknight_d_01_trf.m2", + value = "helm_plate_pvpdeathknight_d_01_trf.m2", }, { - fileId = "142412", - text = "helm_robe_raidwarlock_d_01_orf.m2", - value = "helm_robe_raidwarlock_d_01_orf.m2", + fileId = "532188", + text = "helm_plate_pvpdeathknight_d_01_trm.m2", + value = "helm_plate_pvpdeathknight_d_01_trm.m2", }, { - fileId = "142413", - text = "helm_robe_raidwarlock_d_01_orm.m2", - value = "helm_robe_raidwarlock_d_01_orm.m2", + fileId = "532190", + text = "helm_plate_pvpdeathknight_d_01_wof.m2", + value = "helm_plate_pvpdeathknight_d_01_wof.m2", }, { - fileId = "142414", - text = "helm_robe_raidwarlock_d_01_scf.m2", - value = "helm_robe_raidwarlock_d_01_scf.m2", + fileId = "532192", + text = "helm_plate_pvpdeathknight_d_01_wom.m2", + value = "helm_plate_pvpdeathknight_d_01_wom.m2", }, { - fileId = "142415", - text = "helm_robe_raidwarlock_d_01_scm.m2", - value = "helm_robe_raidwarlock_d_01_scm.m2", + fileId = "140840", + text = "helm_plate_pvphorde_a_01_bef.m2", + value = "helm_plate_pvphorde_a_01_bef.m2", }, { - fileId = "142416", - text = "helm_robe_raidwarlock_d_01_taf.m2", - value = "helm_robe_raidwarlock_d_01_taf.m2", + fileId = "140841", + text = "helm_plate_pvphorde_a_01_bem.m2", + value = "helm_plate_pvphorde_a_01_bem.m2", }, { - fileId = "142417", - text = "helm_robe_raidwarlock_d_01_tam.m2", - value = "helm_robe_raidwarlock_d_01_tam.m2", + fileId = "140842", + text = "helm_plate_pvphorde_a_01_drf.m2", + value = "helm_plate_pvphorde_a_01_drf.m2", }, { - fileId = "142418", - text = "helm_robe_raidwarlock_d_01_trf.m2", - value = "helm_robe_raidwarlock_d_01_trf.m2", + fileId = "140843", + text = "helm_plate_pvphorde_a_01_drm.m2", + value = "helm_plate_pvphorde_a_01_drm.m2", }, { - fileId = "142419", - text = "helm_robe_raidwarlock_d_01_trm.m2", - value = "helm_robe_raidwarlock_d_01_trm.m2", + fileId = "140844", + text = "helm_plate_pvphorde_a_01_dwf.m2", + value = "helm_plate_pvphorde_a_01_dwf.m2", }, { - fileId = "142422", - text = "helm_robe_raidwarlock_e_01_bef.m2", - value = "helm_robe_raidwarlock_e_01_bef.m2", + fileId = "140845", + text = "helm_plate_pvphorde_a_01_dwm.m2", + value = "helm_plate_pvphorde_a_01_dwm.m2", }, { - fileId = "142423", - text = "helm_robe_raidwarlock_e_01_bem.m2", - value = "helm_robe_raidwarlock_e_01_bem.m2", + fileId = "140846", + text = "helm_plate_pvphorde_a_01_gnf.m2", + value = "helm_plate_pvphorde_a_01_gnf.m2", }, { - fileId = "142424", - text = "helm_robe_raidwarlock_e_01_drf.m2", - value = "helm_robe_raidwarlock_e_01_drf.m2", + fileId = "140847", + text = "helm_plate_pvphorde_a_01_gnm.m2", + value = "helm_plate_pvphorde_a_01_gnm.m2", }, { - fileId = "142425", - text = "helm_robe_raidwarlock_e_01_drm.m2", - value = "helm_robe_raidwarlock_e_01_drm.m2", + fileId = "140848", + text = "helm_plate_pvphorde_a_01_gof.m2", + value = "helm_plate_pvphorde_a_01_gof.m2", }, { - fileId = "142426", - text = "helm_robe_raidwarlock_e_01_dwf.m2", - value = "helm_robe_raidwarlock_e_01_dwf.m2", + fileId = "407228", + text = "helm_plate_pvphorde_a_01_gom.m2", + value = "helm_plate_pvphorde_a_01_gom.m2", }, { - fileId = "142427", - text = "helm_robe_raidwarlock_e_01_dwm.m2", - value = "helm_robe_raidwarlock_e_01_dwm.m2", + fileId = "140849", + text = "helm_plate_pvphorde_a_01_huf.m2", + value = "helm_plate_pvphorde_a_01_huf.m2", }, { - fileId = "142428", - text = "helm_robe_raidwarlock_e_01_gnf.m2", - value = "helm_robe_raidwarlock_e_01_gnf.m2", + fileId = "140850", + text = "helm_plate_pvphorde_a_01_hum.m2", + value = "helm_plate_pvphorde_a_01_hum.m2", }, { - fileId = "142429", - text = "helm_robe_raidwarlock_e_01_gnm.m2", - value = "helm_robe_raidwarlock_e_01_gnm.m2", + fileId = "140851", + text = "helm_plate_pvphorde_a_01_nif.m2", + value = "helm_plate_pvphorde_a_01_nif.m2", }, { - fileId = "142430", - text = "helm_robe_raidwarlock_e_01_gof.m2", - value = "helm_robe_raidwarlock_e_01_gof.m2", + fileId = "140852", + text = "helm_plate_pvphorde_a_01_nim.m2", + value = "helm_plate_pvphorde_a_01_nim.m2", }, { - fileId = "142431", - text = "helm_robe_raidwarlock_e_01_gom.m2", - value = "helm_robe_raidwarlock_e_01_gom.m2", + fileId = "140853", + text = "helm_plate_pvphorde_a_01_orf.m2", + value = "helm_plate_pvphorde_a_01_orf.m2", }, { - fileId = "142432", - text = "helm_robe_raidwarlock_e_01_huf.m2", - value = "helm_robe_raidwarlock_e_01_huf.m2", + fileId = "140854", + text = "helm_plate_pvphorde_a_01_orm.m2", + value = "helm_plate_pvphorde_a_01_orm.m2", }, { - fileId = "142433", - text = "helm_robe_raidwarlock_e_01_hum.m2", - value = "helm_robe_raidwarlock_e_01_hum.m2", + fileId = "140855", + text = "helm_plate_pvphorde_a_01_scf.m2", + value = "helm_plate_pvphorde_a_01_scf.m2", }, { - fileId = "142434", - text = "helm_robe_raidwarlock_e_01_nif.m2", - value = "helm_robe_raidwarlock_e_01_nif.m2", + fileId = "140856", + text = "helm_plate_pvphorde_a_01_scm.m2", + value = "helm_plate_pvphorde_a_01_scm.m2", }, { - fileId = "142435", - text = "helm_robe_raidwarlock_e_01_nim.m2", - value = "helm_robe_raidwarlock_e_01_nim.m2", + fileId = "140857", + text = "helm_plate_pvphorde_a_01_taf.m2", + value = "helm_plate_pvphorde_a_01_taf.m2", }, { - fileId = "142436", - text = "helm_robe_raidwarlock_e_01_orf.m2", - value = "helm_robe_raidwarlock_e_01_orf.m2", + fileId = "140858", + text = "helm_plate_pvphorde_a_01_tam.m2", + value = "helm_plate_pvphorde_a_01_tam.m2", }, { - fileId = "142437", - text = "helm_robe_raidwarlock_e_01_orm.m2", - value = "helm_robe_raidwarlock_e_01_orm.m2", + fileId = "140859", + text = "helm_plate_pvphorde_a_01_trf.m2", + value = "helm_plate_pvphorde_a_01_trf.m2", }, { - fileId = "142438", - text = "helm_robe_raidwarlock_e_01_scf.m2", - value = "helm_robe_raidwarlock_e_01_scf.m2", + fileId = "140860", + text = "helm_plate_pvphorde_a_01_trm.m2", + value = "helm_plate_pvphorde_a_01_trm.m2", }, { - fileId = "142439", - text = "helm_robe_raidwarlock_e_01_scm.m2", - value = "helm_robe_raidwarlock_e_01_scm.m2", + fileId = "454261", + text = "helm_plate_pvphorde_a_01_wof.m2", + value = "helm_plate_pvphorde_a_01_wof.m2", }, { - fileId = "142440", - text = "helm_robe_raidwarlock_e_01_taf.m2", - value = "helm_robe_raidwarlock_e_01_taf.m2", + fileId = "437117", + text = "helm_plate_pvphorde_a_01_wom.m2", + value = "helm_plate_pvphorde_a_01_wom.m2", }, { - fileId = "142441", - text = "helm_robe_raidwarlock_e_01_tam.m2", - value = "helm_robe_raidwarlock_e_01_tam.m2", + fileId = "140862", + text = "helm_plate_pvphorde_b_01_bem.m2", + value = "helm_plate_pvphorde_b_01_bem.m2", }, { - fileId = "142442", - text = "helm_robe_raidwarlock_e_01_trf.m2", - value = "helm_robe_raidwarlock_e_01_trf.m2", + fileId = "238113", + text = "helm_plate_pvppaladin_b_01_bef.m2", + value = "helm_plate_pvppaladin_b_01_bef.m2", }, { - fileId = "142443", - text = "helm_robe_raidwarlock_e_01_trm.m2", - value = "helm_robe_raidwarlock_e_01_trm.m2", + fileId = "238114", + text = "helm_plate_pvppaladin_b_01_bem.m2", + value = "helm_plate_pvppaladin_b_01_bem.m2", }, { - fileId = "142447", - text = "helm_robe_raidwarlock_f_01_bef.m2", - value = "helm_robe_raidwarlock_f_01_bef.m2", + fileId = "238115", + text = "helm_plate_pvppaladin_b_01_drf.m2", + value = "helm_plate_pvppaladin_b_01_drf.m2", }, { - fileId = "142448", - text = "helm_robe_raidwarlock_f_01_bem.m2", - value = "helm_robe_raidwarlock_f_01_bem.m2", + fileId = "238116", + text = "helm_plate_pvppaladin_b_01_drm.m2", + value = "helm_plate_pvppaladin_b_01_drm.m2", }, { - fileId = "142449", - text = "helm_robe_raidwarlock_f_01_drf.m2", - value = "helm_robe_raidwarlock_f_01_drf.m2", + fileId = "238117", + text = "helm_plate_pvppaladin_b_01_dwf.m2", + value = "helm_plate_pvppaladin_b_01_dwf.m2", }, { - fileId = "142450", - text = "helm_robe_raidwarlock_f_01_drm.m2", - value = "helm_robe_raidwarlock_f_01_drm.m2", + fileId = "238118", + text = "helm_plate_pvppaladin_b_01_dwm.m2", + value = "helm_plate_pvppaladin_b_01_dwm.m2", }, { - fileId = "142451", - text = "helm_robe_raidwarlock_f_01_dwf.m2", - value = "helm_robe_raidwarlock_f_01_dwf.m2", + fileId = "238119", + text = "helm_plate_pvppaladin_b_01_gnf.m2", + value = "helm_plate_pvppaladin_b_01_gnf.m2", }, { - fileId = "142452", - text = "helm_robe_raidwarlock_f_01_dwm.m2", - value = "helm_robe_raidwarlock_f_01_dwm.m2", + fileId = "238120", + text = "helm_plate_pvppaladin_b_01_gnm.m2", + value = "helm_plate_pvppaladin_b_01_gnm.m2", }, { - fileId = "142453", - text = "helm_robe_raidwarlock_f_01_gnf.m2", - value = "helm_robe_raidwarlock_f_01_gnf.m2", + fileId = "238121", + text = "helm_plate_pvppaladin_b_01_gof.m2", + value = "helm_plate_pvppaladin_b_01_gof.m2", }, { - fileId = "142454", - text = "helm_robe_raidwarlock_f_01_gnm.m2", - value = "helm_robe_raidwarlock_f_01_gnm.m2", + fileId = "238122", + text = "helm_plate_pvppaladin_b_01_gom.m2", + value = "helm_plate_pvppaladin_b_01_gom.m2", }, { - fileId = "142455", - text = "helm_robe_raidwarlock_f_01_huf.m2", - value = "helm_robe_raidwarlock_f_01_huf.m2", + fileId = "238123", + text = "helm_plate_pvppaladin_b_01_huf.m2", + value = "helm_plate_pvppaladin_b_01_huf.m2", }, { - fileId = "142456", - text = "helm_robe_raidwarlock_f_01_hum.m2", - value = "helm_robe_raidwarlock_f_01_hum.m2", + fileId = "238124", + text = "helm_plate_pvppaladin_b_01_hum.m2", + value = "helm_plate_pvppaladin_b_01_hum.m2", }, { - fileId = "142457", - text = "helm_robe_raidwarlock_f_01_nif.m2", - value = "helm_robe_raidwarlock_f_01_nif.m2", + fileId = "238125", + text = "helm_plate_pvppaladin_b_01_nif.m2", + value = "helm_plate_pvppaladin_b_01_nif.m2", }, { - fileId = "142458", - text = "helm_robe_raidwarlock_f_01_nim.m2", - value = "helm_robe_raidwarlock_f_01_nim.m2", + fileId = "238126", + text = "helm_plate_pvppaladin_b_01_nim.m2", + value = "helm_plate_pvppaladin_b_01_nim.m2", }, { - fileId = "142459", - text = "helm_robe_raidwarlock_f_01_orf.m2", - value = "helm_robe_raidwarlock_f_01_orf.m2", + fileId = "238127", + text = "helm_plate_pvppaladin_b_01_orf.m2", + value = "helm_plate_pvppaladin_b_01_orf.m2", }, { - fileId = "142460", - text = "helm_robe_raidwarlock_f_01_orm.m2", - value = "helm_robe_raidwarlock_f_01_orm.m2", + fileId = "238128", + text = "helm_plate_pvppaladin_b_01_orm.m2", + value = "helm_plate_pvppaladin_b_01_orm.m2", }, { - fileId = "142461", - text = "helm_robe_raidwarlock_f_01_scf.m2", - value = "helm_robe_raidwarlock_f_01_scf.m2", + fileId = "238129", + text = "helm_plate_pvppaladin_b_01_scf.m2", + value = "helm_plate_pvppaladin_b_01_scf.m2", }, { - fileId = "142462", - text = "helm_robe_raidwarlock_f_01_scm.m2", - value = "helm_robe_raidwarlock_f_01_scm.m2", + fileId = "238130", + text = "helm_plate_pvppaladin_b_01_scm.m2", + value = "helm_plate_pvppaladin_b_01_scm.m2", }, { - fileId = "142463", - text = "helm_robe_raidwarlock_f_01_taf.m2", - value = "helm_robe_raidwarlock_f_01_taf.m2", + fileId = "238131", + text = "helm_plate_pvppaladin_b_01_taf.m2", + value = "helm_plate_pvppaladin_b_01_taf.m2", }, { - fileId = "142464", - text = "helm_robe_raidwarlock_f_01_tam.m2", - value = "helm_robe_raidwarlock_f_01_tam.m2", + fileId = "238132", + text = "helm_plate_pvppaladin_b_01_tam.m2", + value = "helm_plate_pvppaladin_b_01_tam.m2", }, { - fileId = "142465", - text = "helm_robe_raidwarlock_f_01_trf.m2", - value = "helm_robe_raidwarlock_f_01_trf.m2", + fileId = "238133", + text = "helm_plate_pvppaladin_b_01_trf.m2", + value = "helm_plate_pvppaladin_b_01_trf.m2", }, { - fileId = "142466", - text = "helm_robe_raidwarlock_f_01_trm.m2", - value = "helm_robe_raidwarlock_f_01_trm.m2", + fileId = "238134", + text = "helm_plate_pvppaladin_b_01_trm.m2", + value = "helm_plate_pvppaladin_b_01_trm.m2", }, { - fileId = "142471", - text = "helm_robe_raidwarlock_g_01_bef.m2", - value = "helm_robe_raidwarlock_g_01_bef.m2", + fileId = "454262", + text = "helm_plate_pvppaladin_b_01_wof.m2", + value = "helm_plate_pvppaladin_b_01_wof.m2", }, { - fileId = "142472", - text = "helm_robe_raidwarlock_g_01_bem.m2", - value = "helm_robe_raidwarlock_g_01_bem.m2", + fileId = "437118", + text = "helm_plate_pvppaladin_b_01_wom.m2", + value = "helm_plate_pvppaladin_b_01_wom.m2", }, { - fileId = "142473", - text = "helm_robe_raidwarlock_g_01_drf.m2", - value = "helm_robe_raidwarlock_g_01_drf.m2", + fileId = "254723", + text = "helm_plate_pvppaladin_b_02_bef.m2", + value = "helm_plate_pvppaladin_b_02_bef.m2", }, { - fileId = "142474", - text = "helm_robe_raidwarlock_g_01_drm.m2", - value = "helm_robe_raidwarlock_g_01_drm.m2", + fileId = "254724", + text = "helm_plate_pvppaladin_b_02_bem.m2", + value = "helm_plate_pvppaladin_b_02_bem.m2", }, { - fileId = "142475", - text = "helm_robe_raidwarlock_g_01_dwf.m2", - value = "helm_robe_raidwarlock_g_01_dwf.m2", + fileId = "254725", + text = "helm_plate_pvppaladin_b_02_drf.m2", + value = "helm_plate_pvppaladin_b_02_drf.m2", }, { - fileId = "142476", - text = "helm_robe_raidwarlock_g_01_dwm.m2", - value = "helm_robe_raidwarlock_g_01_dwm.m2", + fileId = "254726", + text = "helm_plate_pvppaladin_b_02_drm.m2", + value = "helm_plate_pvppaladin_b_02_drm.m2", }, { - fileId = "142477", - text = "helm_robe_raidwarlock_g_01_gnf.m2", - value = "helm_robe_raidwarlock_g_01_gnf.m2", + fileId = "254744", + text = "helm_plate_pvppaladin_b_02_dwf.m2", + value = "helm_plate_pvppaladin_b_02_dwf.m2", }, { - fileId = "142478", - text = "helm_robe_raidwarlock_g_01_gnm.m2", - value = "helm_robe_raidwarlock_g_01_gnm.m2", + fileId = "254727", + text = "helm_plate_pvppaladin_b_02_dwm.m2", + value = "helm_plate_pvppaladin_b_02_dwm.m2", }, { - fileId = "142479", - text = "helm_robe_raidwarlock_g_01_gof.m2", - value = "helm_robe_raidwarlock_g_01_gof.m2", + fileId = "254745", + text = "helm_plate_pvppaladin_b_02_gnf.m2", + value = "helm_plate_pvppaladin_b_02_gnf.m2", }, { - fileId = "142480", - text = "helm_robe_raidwarlock_g_01_gom.m2", - value = "helm_robe_raidwarlock_g_01_gom.m2", + fileId = "254746", + text = "helm_plate_pvppaladin_b_02_gnm.m2", + value = "helm_plate_pvppaladin_b_02_gnm.m2", }, { - fileId = "142481", - text = "helm_robe_raidwarlock_g_01_huf.m2", - value = "helm_robe_raidwarlock_g_01_huf.m2", + fileId = "254747", + text = "helm_plate_pvppaladin_b_02_gof.m2", + value = "helm_plate_pvppaladin_b_02_gof.m2", }, { - fileId = "142482", - text = "helm_robe_raidwarlock_g_01_hum.m2", - value = "helm_robe_raidwarlock_g_01_hum.m2", + fileId = "254748", + text = "helm_plate_pvppaladin_b_02_gom.m2", + value = "helm_plate_pvppaladin_b_02_gom.m2", }, { - fileId = "142483", - text = "helm_robe_raidwarlock_g_01_nif.m2", - value = "helm_robe_raidwarlock_g_01_nif.m2", + fileId = "254728", + text = "helm_plate_pvppaladin_b_02_huf.m2", + value = "helm_plate_pvppaladin_b_02_huf.m2", }, { - fileId = "142484", - text = "helm_robe_raidwarlock_g_01_nim.m2", - value = "helm_robe_raidwarlock_g_01_nim.m2", + fileId = "254729", + text = "helm_plate_pvppaladin_b_02_hum.m2", + value = "helm_plate_pvppaladin_b_02_hum.m2", }, { - fileId = "142485", - text = "helm_robe_raidwarlock_g_01_orf.m2", - value = "helm_robe_raidwarlock_g_01_orf.m2", + fileId = "254749", + text = "helm_plate_pvppaladin_b_02_nif.m2", + value = "helm_plate_pvppaladin_b_02_nif.m2", }, { - fileId = "142486", - text = "helm_robe_raidwarlock_g_01_orm.m2", - value = "helm_robe_raidwarlock_g_01_orm.m2", + fileId = "254750", + text = "helm_plate_pvppaladin_b_02_nim.m2", + value = "helm_plate_pvppaladin_b_02_nim.m2", }, { - fileId = "142487", - text = "helm_robe_raidwarlock_g_01_scf.m2", - value = "helm_robe_raidwarlock_g_01_scf.m2", + fileId = "254751", + text = "helm_plate_pvppaladin_b_02_orf.m2", + value = "helm_plate_pvppaladin_b_02_orf.m2", }, { - fileId = "142488", - text = "helm_robe_raidwarlock_g_01_scm.m2", - value = "helm_robe_raidwarlock_g_01_scm.m2", + fileId = "254752", + text = "helm_plate_pvppaladin_b_02_orm.m2", + value = "helm_plate_pvppaladin_b_02_orm.m2", }, { - fileId = "142489", - text = "helm_robe_raidwarlock_g_01_taf.m2", - value = "helm_robe_raidwarlock_g_01_taf.m2", + fileId = "254753", + text = "helm_plate_pvppaladin_b_02_scf.m2", + value = "helm_plate_pvppaladin_b_02_scf.m2", }, { - fileId = "142490", - text = "helm_robe_raidwarlock_g_01_tam.m2", - value = "helm_robe_raidwarlock_g_01_tam.m2", + fileId = "254754", + text = "helm_plate_pvppaladin_b_02_scm.m2", + value = "helm_plate_pvppaladin_b_02_scm.m2", }, { - fileId = "142491", - text = "helm_robe_raidwarlock_g_01_trf.m2", - value = "helm_robe_raidwarlock_g_01_trf.m2", + fileId = "254755", + text = "helm_plate_pvppaladin_b_02_taf.m2", + value = "helm_plate_pvppaladin_b_02_taf.m2", }, { - fileId = "142492", - text = "helm_robe_raidwarlock_g_01_trm.m2", - value = "helm_robe_raidwarlock_g_01_trm.m2", + fileId = "254756", + text = "helm_plate_pvppaladin_b_02_tam.m2", + value = "helm_plate_pvppaladin_b_02_tam.m2", }, { - fileId = "339828", - text = "helm_robe_raidwarlock_h_01_bef.m2", - value = "helm_robe_raidwarlock_h_01_bef.m2", + fileId = "254757", + text = "helm_plate_pvppaladin_b_02_trf.m2", + value = "helm_plate_pvppaladin_b_02_trf.m2", }, { - fileId = "339829", - text = "helm_robe_raidwarlock_h_01_bem.m2", - value = "helm_robe_raidwarlock_h_01_bem.m2", + fileId = "254758", + text = "helm_plate_pvppaladin_b_02_trm.m2", + value = "helm_plate_pvppaladin_b_02_trm.m2", }, { - fileId = "339830", - text = "helm_robe_raidwarlock_h_01_drf.m2", - value = "helm_robe_raidwarlock_h_01_drf.m2", + fileId = "454263", + text = "helm_plate_pvppaladin_b_02_wof.m2", + value = "helm_plate_pvppaladin_b_02_wof.m2", }, { - fileId = "339831", - text = "helm_robe_raidwarlock_h_01_drm.m2", - value = "helm_robe_raidwarlock_h_01_drm.m2", + fileId = "436653", + text = "helm_plate_pvppaladin_b_02_wom.m2", + value = "helm_plate_pvppaladin_b_02_wom.m2", }, { - fileId = "339832", - text = "helm_robe_raidwarlock_h_01_dwf.m2", - value = "helm_robe_raidwarlock_h_01_dwf.m2", + fileId = "304848", + text = "helm_plate_pvppaladin_b_03_bef.m2", + value = "helm_plate_pvppaladin_b_03_bef.m2", }, { - fileId = "339833", - text = "helm_robe_raidwarlock_h_01_dwm.m2", - value = "helm_robe_raidwarlock_h_01_dwm.m2", + fileId = "304849", + text = "helm_plate_pvppaladin_b_03_bem.m2", + value = "helm_plate_pvppaladin_b_03_bem.m2", }, { - fileId = "339834", - text = "helm_robe_raidwarlock_h_01_gnf.m2", - value = "helm_robe_raidwarlock_h_01_gnf.m2", + fileId = "304850", + text = "helm_plate_pvppaladin_b_03_drf.m2", + value = "helm_plate_pvppaladin_b_03_drf.m2", }, { - fileId = "339835", - text = "helm_robe_raidwarlock_h_01_gnm.m2", - value = "helm_robe_raidwarlock_h_01_gnm.m2", + fileId = "304851", + text = "helm_plate_pvppaladin_b_03_drm.m2", + value = "helm_plate_pvppaladin_b_03_drm.m2", }, { - fileId = "339836", - text = "helm_robe_raidwarlock_h_01_gof.m2", - value = "helm_robe_raidwarlock_h_01_gof.m2", + fileId = "304852", + text = "helm_plate_pvppaladin_b_03_dwf.m2", + value = "helm_plate_pvppaladin_b_03_dwf.m2", }, { - fileId = "339837", - text = "helm_robe_raidwarlock_h_01_gom.m2", - value = "helm_robe_raidwarlock_h_01_gom.m2", + fileId = "304853", + text = "helm_plate_pvppaladin_b_03_dwm.m2", + value = "helm_plate_pvppaladin_b_03_dwm.m2", }, { - fileId = "339838", - text = "helm_robe_raidwarlock_h_01_huf.m2", - value = "helm_robe_raidwarlock_h_01_huf.m2", + fileId = "304854", + text = "helm_plate_pvppaladin_b_03_gnf.m2", + value = "helm_plate_pvppaladin_b_03_gnf.m2", }, { - fileId = "339839", - text = "helm_robe_raidwarlock_h_01_hum.m2", - value = "helm_robe_raidwarlock_h_01_hum.m2", + fileId = "304858", + text = "helm_plate_pvppaladin_b_03_gnm.m2", + value = "helm_plate_pvppaladin_b_03_gnm.m2", }, { - fileId = "339840", - text = "helm_robe_raidwarlock_h_01_nif.m2", - value = "helm_robe_raidwarlock_h_01_nif.m2", + fileId = "304859", + text = "helm_plate_pvppaladin_b_03_gof.m2", + value = "helm_plate_pvppaladin_b_03_gof.m2", }, { - fileId = "339841", - text = "helm_robe_raidwarlock_h_01_nim.m2", - value = "helm_robe_raidwarlock_h_01_nim.m2", + fileId = "304860", + text = "helm_plate_pvppaladin_b_03_gom.m2", + value = "helm_plate_pvppaladin_b_03_gom.m2", }, { - fileId = "339842", - text = "helm_robe_raidwarlock_h_01_orf.m2", - value = "helm_robe_raidwarlock_h_01_orf.m2", + fileId = "304861", + text = "helm_plate_pvppaladin_b_03_huf.m2", + value = "helm_plate_pvppaladin_b_03_huf.m2", }, { - fileId = "339843", - text = "helm_robe_raidwarlock_h_01_orm.m2", - value = "helm_robe_raidwarlock_h_01_orm.m2", + fileId = "304862", + text = "helm_plate_pvppaladin_b_03_hum.m2", + value = "helm_plate_pvppaladin_b_03_hum.m2", }, { - fileId = "339844", - text = "helm_robe_raidwarlock_h_01_scf.m2", - value = "helm_robe_raidwarlock_h_01_scf.m2", + fileId = "304863", + text = "helm_plate_pvppaladin_b_03_nif.m2", + value = "helm_plate_pvppaladin_b_03_nif.m2", }, { - fileId = "339845", - text = "helm_robe_raidwarlock_h_01_scm.m2", - value = "helm_robe_raidwarlock_h_01_scm.m2", + fileId = "304864", + text = "helm_plate_pvppaladin_b_03_nim.m2", + value = "helm_plate_pvppaladin_b_03_nim.m2", }, { - fileId = "339846", - text = "helm_robe_raidwarlock_h_01_taf.m2", - value = "helm_robe_raidwarlock_h_01_taf.m2", + fileId = "304865", + text = "helm_plate_pvppaladin_b_03_orf.m2", + value = "helm_plate_pvppaladin_b_03_orf.m2", }, { - fileId = "339847", - text = "helm_robe_raidwarlock_h_01_tam.m2", - value = "helm_robe_raidwarlock_h_01_tam.m2", + fileId = "304866", + text = "helm_plate_pvppaladin_b_03_orm.m2", + value = "helm_plate_pvppaladin_b_03_orm.m2", }, { - fileId = "339848", - text = "helm_robe_raidwarlock_h_01_trf.m2", - value = "helm_robe_raidwarlock_h_01_trf.m2", + fileId = "304867", + text = "helm_plate_pvppaladin_b_03_scf.m2", + value = "helm_plate_pvppaladin_b_03_scf.m2", }, { - fileId = "339849", - text = "helm_robe_raidwarlock_h_01_trm.m2", - value = "helm_robe_raidwarlock_h_01_trm.m2", + fileId = "304868", + text = "helm_plate_pvppaladin_b_03_scm.m2", + value = "helm_plate_pvppaladin_b_03_scm.m2", }, { - fileId = "142497", - text = "helm_robe_sunwell_d_01_bef.m2", - value = "helm_robe_sunwell_d_01_bef.m2", + fileId = "304869", + text = "helm_plate_pvppaladin_b_03_taf.m2", + value = "helm_plate_pvppaladin_b_03_taf.m2", }, { - fileId = "142498", - text = "helm_robe_sunwell_d_01_bem.m2", - value = "helm_robe_sunwell_d_01_bem.m2", + fileId = "304870", + text = "helm_plate_pvppaladin_b_03_tam.m2", + value = "helm_plate_pvppaladin_b_03_tam.m2", }, { - fileId = "142499", - text = "helm_robe_sunwell_d_01_drf.m2", - value = "helm_robe_sunwell_d_01_drf.m2", + fileId = "304871", + text = "helm_plate_pvppaladin_b_03_trf.m2", + value = "helm_plate_pvppaladin_b_03_trf.m2", }, { - fileId = "142500", - text = "helm_robe_sunwell_d_01_drm.m2", - value = "helm_robe_sunwell_d_01_drm.m2", + fileId = "304882", + text = "helm_plate_pvppaladin_b_03_trm.m2", + value = "helm_plate_pvppaladin_b_03_trm.m2", }, { - fileId = "142501", - text = "helm_robe_sunwell_d_01_dwf.m2", - value = "helm_robe_sunwell_d_01_dwf.m2", + fileId = "454264", + text = "helm_plate_pvppaladin_b_03_wof.m2", + value = "helm_plate_pvppaladin_b_03_wof.m2", }, { - fileId = "142502", - text = "helm_robe_sunwell_d_01_dwm.m2", - value = "helm_robe_sunwell_d_01_dwm.m2", + fileId = "436654", + text = "helm_plate_pvppaladin_b_03_wom.m2", + value = "helm_plate_pvppaladin_b_03_wom.m2", }, { - fileId = "142503", - text = "helm_robe_sunwell_d_01_gnf.m2", - value = "helm_robe_sunwell_d_01_gnf.m2", + fileId = "346952", + text = "helm_plate_pvppaladin_b_04_bef.m2", + value = "helm_plate_pvppaladin_b_04_bef.m2", }, { - fileId = "142504", - text = "helm_robe_sunwell_d_01_gnm.m2", - value = "helm_robe_sunwell_d_01_gnm.m2", + fileId = "346953", + text = "helm_plate_pvppaladin_b_04_bem.m2", + value = "helm_plate_pvppaladin_b_04_bem.m2", }, { - fileId = "142505", - text = "helm_robe_sunwell_d_01_gof.m2", - value = "helm_robe_sunwell_d_01_gof.m2", + fileId = "346954", + text = "helm_plate_pvppaladin_b_04_drf.m2", + value = "helm_plate_pvppaladin_b_04_drf.m2", }, { - fileId = "142506", - text = "helm_robe_sunwell_d_01_gom.m2", - value = "helm_robe_sunwell_d_01_gom.m2", + fileId = "346955", + text = "helm_plate_pvppaladin_b_04_drm.m2", + value = "helm_plate_pvppaladin_b_04_drm.m2", }, { - fileId = "142507", - text = "helm_robe_sunwell_d_01_huf.m2", - value = "helm_robe_sunwell_d_01_huf.m2", + fileId = "346956", + text = "helm_plate_pvppaladin_b_04_dwf.m2", + value = "helm_plate_pvppaladin_b_04_dwf.m2", }, { - fileId = "142508", - text = "helm_robe_sunwell_d_01_hum.m2", - value = "helm_robe_sunwell_d_01_hum.m2", + fileId = "346957", + text = "helm_plate_pvppaladin_b_04_dwm.m2", + value = "helm_plate_pvppaladin_b_04_dwm.m2", }, { - fileId = "142509", - text = "helm_robe_sunwell_d_01_nif.m2", - value = "helm_robe_sunwell_d_01_nif.m2", + fileId = "346958", + text = "helm_plate_pvppaladin_b_04_gnf.m2", + value = "helm_plate_pvppaladin_b_04_gnf.m2", }, { - fileId = "142510", - text = "helm_robe_sunwell_d_01_nim.m2", - value = "helm_robe_sunwell_d_01_nim.m2", + fileId = "346959", + text = "helm_plate_pvppaladin_b_04_gnm.m2", + value = "helm_plate_pvppaladin_b_04_gnm.m2", }, { - fileId = "142511", - text = "helm_robe_sunwell_d_01_orf.m2", - value = "helm_robe_sunwell_d_01_orf.m2", + fileId = "346960", + text = "helm_plate_pvppaladin_b_04_gof.m2", + value = "helm_plate_pvppaladin_b_04_gof.m2", }, { - fileId = "142512", - text = "helm_robe_sunwell_d_01_orm.m2", - value = "helm_robe_sunwell_d_01_orm.m2", + fileId = "346961", + text = "helm_plate_pvppaladin_b_04_gom.m2", + value = "helm_plate_pvppaladin_b_04_gom.m2", }, { - fileId = "142513", - text = "helm_robe_sunwell_d_01_scf.m2", - value = "helm_robe_sunwell_d_01_scf.m2", + fileId = "346962", + text = "helm_plate_pvppaladin_b_04_huf.m2", + value = "helm_plate_pvppaladin_b_04_huf.m2", }, { - fileId = "142514", - text = "helm_robe_sunwell_d_01_scm.m2", - value = "helm_robe_sunwell_d_01_scm.m2", + fileId = "346963", + text = "helm_plate_pvppaladin_b_04_hum.m2", + value = "helm_plate_pvppaladin_b_04_hum.m2", }, { - fileId = "142515", - text = "helm_robe_sunwell_d_01_taf.m2", - value = "helm_robe_sunwell_d_01_taf.m2", + fileId = "346964", + text = "helm_plate_pvppaladin_b_04_nif.m2", + value = "helm_plate_pvppaladin_b_04_nif.m2", }, { - fileId = "142516", - text = "helm_robe_sunwell_d_01_tam.m2", - value = "helm_robe_sunwell_d_01_tam.m2", + fileId = "346965", + text = "helm_plate_pvppaladin_b_04_nim.m2", + value = "helm_plate_pvppaladin_b_04_nim.m2", }, { - fileId = "142517", - text = "helm_robe_sunwell_d_01_trf.m2", - value = "helm_robe_sunwell_d_01_trf.m2", + fileId = "346966", + text = "helm_plate_pvppaladin_b_04_orf.m2", + value = "helm_plate_pvppaladin_b_04_orf.m2", }, { - fileId = "142518", - text = "helm_robe_sunwell_d_01_trm.m2", - value = "helm_robe_sunwell_d_01_trm.m2", + fileId = "346967", + text = "helm_plate_pvppaladin_b_04_orm.m2", + value = "helm_plate_pvppaladin_b_04_orm.m2", }, { - fileId = "142527", - text = "helm_robe_zulaman_d_01_bef.m2", - value = "helm_robe_zulaman_d_01_bef.m2", + fileId = "346968", + text = "helm_plate_pvppaladin_b_04_scf.m2", + value = "helm_plate_pvppaladin_b_04_scf.m2", }, { - fileId = "142528", - text = "helm_robe_zulaman_d_01_bem.m2", - value = "helm_robe_zulaman_d_01_bem.m2", + fileId = "346969", + text = "helm_plate_pvppaladin_b_04_scm.m2", + value = "helm_plate_pvppaladin_b_04_scm.m2", }, { - fileId = "142529", - text = "helm_robe_zulaman_d_01_drf.m2", - value = "helm_robe_zulaman_d_01_drf.m2", + fileId = "346970", + text = "helm_plate_pvppaladin_b_04_taf.m2", + value = "helm_plate_pvppaladin_b_04_taf.m2", }, { - fileId = "142530", - text = "helm_robe_zulaman_d_01_drm.m2", - value = "helm_robe_zulaman_d_01_drm.m2", + fileId = "346971", + text = "helm_plate_pvppaladin_b_04_tam.m2", + value = "helm_plate_pvppaladin_b_04_tam.m2", }, { - fileId = "142531", - text = "helm_robe_zulaman_d_01_dwf.m2", - value = "helm_robe_zulaman_d_01_dwf.m2", + fileId = "346972", + text = "helm_plate_pvppaladin_b_04_trf.m2", + value = "helm_plate_pvppaladin_b_04_trf.m2", }, { - fileId = "142532", - text = "helm_robe_zulaman_d_01_dwm.m2", - value = "helm_robe_zulaman_d_01_dwm.m2", + fileId = "346973", + text = "helm_plate_pvppaladin_b_04_trm.m2", + value = "helm_plate_pvppaladin_b_04_trm.m2", }, { - fileId = "142533", - text = "helm_robe_zulaman_d_01_gnf.m2", - value = "helm_robe_zulaman_d_01_gnf.m2", + fileId = "454265", + text = "helm_plate_pvppaladin_b_04_wof.m2", + value = "helm_plate_pvppaladin_b_04_wof.m2", }, { - fileId = "142534", - text = "helm_robe_zulaman_d_01_gnm.m2", - value = "helm_robe_zulaman_d_01_gnm.m2", + fileId = "436655", + text = "helm_plate_pvppaladin_b_04_wom.m2", + value = "helm_plate_pvppaladin_b_04_wom.m2", }, { - fileId = "142535", - text = "helm_robe_zulaman_d_01_gof.m2", - value = "helm_robe_zulaman_d_01_gof.m2", + fileId = "463071", + text = "helm_plate_pvppaladin_c_01_bef.m2", + value = "helm_plate_pvppaladin_c_01_bef.m2", }, { - fileId = "142536", - text = "helm_robe_zulaman_d_01_gom.m2", - value = "helm_robe_zulaman_d_01_gom.m2", + fileId = "463072", + text = "helm_plate_pvppaladin_c_01_bem.m2", + value = "helm_plate_pvppaladin_c_01_bem.m2", }, { - fileId = "142537", - text = "helm_robe_zulaman_d_01_huf.m2", - value = "helm_robe_zulaman_d_01_huf.m2", + fileId = "463073", + text = "helm_plate_pvppaladin_c_01_drf.m2", + value = "helm_plate_pvppaladin_c_01_drf.m2", }, { - fileId = "142538", - text = "helm_robe_zulaman_d_01_hum.m2", - value = "helm_robe_zulaman_d_01_hum.m2", + fileId = "463074", + text = "helm_plate_pvppaladin_c_01_drm.m2", + value = "helm_plate_pvppaladin_c_01_drm.m2", }, { - fileId = "142539", - text = "helm_robe_zulaman_d_01_nif.m2", - value = "helm_robe_zulaman_d_01_nif.m2", + fileId = "463075", + text = "helm_plate_pvppaladin_c_01_dwf.m2", + value = "helm_plate_pvppaladin_c_01_dwf.m2", }, { - fileId = "142540", - text = "helm_robe_zulaman_d_01_nim.m2", - value = "helm_robe_zulaman_d_01_nim.m2", + fileId = "463076", + text = "helm_plate_pvppaladin_c_01_dwm.m2", + value = "helm_plate_pvppaladin_c_01_dwm.m2", }, { - fileId = "142541", - text = "helm_robe_zulaman_d_01_orf.m2", - value = "helm_robe_zulaman_d_01_orf.m2", + fileId = "463077", + text = "helm_plate_pvppaladin_c_01_gnf.m2", + value = "helm_plate_pvppaladin_c_01_gnf.m2", }, { - fileId = "142542", - text = "helm_robe_zulaman_d_01_orm.m2", - value = "helm_robe_zulaman_d_01_orm.m2", + fileId = "463078", + text = "helm_plate_pvppaladin_c_01_gnm.m2", + value = "helm_plate_pvppaladin_c_01_gnm.m2", }, { - fileId = "142543", - text = "helm_robe_zulaman_d_01_scf.m2", - value = "helm_robe_zulaman_d_01_scf.m2", + fileId = "463079", + text = "helm_plate_pvppaladin_c_01_gof.m2", + value = "helm_plate_pvppaladin_c_01_gof.m2", }, { - fileId = "142544", - text = "helm_robe_zulaman_d_01_scm.m2", - value = "helm_robe_zulaman_d_01_scm.m2", + fileId = "463080", + text = "helm_plate_pvppaladin_c_01_gom.m2", + value = "helm_plate_pvppaladin_c_01_gom.m2", }, { - fileId = "142545", - text = "helm_robe_zulaman_d_01_taf.m2", - value = "helm_robe_zulaman_d_01_taf.m2", + fileId = "463081", + text = "helm_plate_pvppaladin_c_01_huf.m2", + value = "helm_plate_pvppaladin_c_01_huf.m2", }, { - fileId = "142546", - text = "helm_robe_zulaman_d_01_tam.m2", - value = "helm_robe_zulaman_d_01_tam.m2", + fileId = "463082", + text = "helm_plate_pvppaladin_c_01_hum.m2", + value = "helm_plate_pvppaladin_c_01_hum.m2", }, { - fileId = "142547", - text = "helm_robe_zulaman_d_01_trf.m2", - value = "helm_robe_zulaman_d_01_trf.m2", + fileId = "463083", + text = "helm_plate_pvppaladin_c_01_nif.m2", + value = "helm_plate_pvppaladin_c_01_nif.m2", }, { - fileId = "142548", - text = "helm_robe_zulaman_d_01_trm.m2", - value = "helm_robe_zulaman_d_01_trm.m2", + fileId = "463084", + text = "helm_plate_pvppaladin_c_01_nim.m2", + value = "helm_plate_pvppaladin_c_01_nim.m2", }, { - fileId = "142552", - text = "helmet_robe_d_04_dwf.m2", - value = "helmet_robe_d_04_dwf.m2", + fileId = "463085", + text = "helm_plate_pvppaladin_c_01_orf.m2", + value = "helm_plate_pvppaladin_c_01_orf.m2", }, { - fileId = "142553", - text = "helmet_robe_d_04_dwm.m2", - value = "helmet_robe_d_04_dwm.m2", + fileId = "463086", + text = "helm_plate_pvppaladin_c_01_orm.m2", + value = "helm_plate_pvppaladin_c_01_orm.m2", }, { - fileId = "142554", - text = "helmet_robe_d_04_gnf.m2", - value = "helmet_robe_d_04_gnf.m2", + fileId = "463087", + text = "helm_plate_pvppaladin_c_01_scf.m2", + value = "helm_plate_pvppaladin_c_01_scf.m2", }, { - fileId = "142555", - text = "helmet_robe_d_04_gnm.m2", - value = "helmet_robe_d_04_gnm.m2", + fileId = "463088", + text = "helm_plate_pvppaladin_c_01_scm.m2", + value = "helm_plate_pvppaladin_c_01_scm.m2", }, { - fileId = "142556", - text = "helmet_robe_d_04_huf.m2", - value = "helmet_robe_d_04_huf.m2", + fileId = "463089", + text = "helm_plate_pvppaladin_c_01_taf.m2", + value = "helm_plate_pvppaladin_c_01_taf.m2", }, { - fileId = "142557", - text = "helmet_robe_d_04_hum.m2", - value = "helmet_robe_d_04_hum.m2", + fileId = "463090", + text = "helm_plate_pvppaladin_c_01_tam.m2", + value = "helm_plate_pvppaladin_c_01_tam.m2", }, { - fileId = "142558", - text = "helmet_robe_d_04_nif.m2", - value = "helmet_robe_d_04_nif.m2", + fileId = "463091", + text = "helm_plate_pvppaladin_c_01_trf.m2", + value = "helm_plate_pvppaladin_c_01_trf.m2", }, { - fileId = "142559", - text = "helmet_robe_d_04_nim.m2", - value = "helmet_robe_d_04_nim.m2", + fileId = "463092", + text = "helm_plate_pvppaladin_c_01_trm.m2", + value = "helm_plate_pvppaladin_c_01_trm.m2", }, { - fileId = "142560", - text = "helmet_robe_d_04_orf.m2", - value = "helmet_robe_d_04_orf.m2", + fileId = "463093", + text = "helm_plate_pvppaladin_c_01_wof.m2", + value = "helm_plate_pvppaladin_c_01_wof.m2", }, { - fileId = "142561", - text = "helmet_robe_d_04_orm.m2", - value = "helmet_robe_d_04_orm.m2", + fileId = "463094", + text = "helm_plate_pvppaladin_c_01_wom.m2", + value = "helm_plate_pvppaladin_c_01_wom.m2", }, { - fileId = "142562", - text = "helmet_robe_d_04_scf.m2", - value = "helmet_robe_d_04_scf.m2", + fileId = "468869", + text = "helm_plate_pvppaladin_c_02_bef.m2", + value = "helm_plate_pvppaladin_c_02_bef.m2", }, { - fileId = "142563", - text = "helmet_robe_d_04_scm.m2", - value = "helmet_robe_d_04_scm.m2", + fileId = "468870", + text = "helm_plate_pvppaladin_c_02_bem.m2", + value = "helm_plate_pvppaladin_c_02_bem.m2", }, { - fileId = "142564", - text = "helmet_robe_d_04_taf.m2", - value = "helmet_robe_d_04_taf.m2", + fileId = "468872", + text = "helm_plate_pvppaladin_c_02_drf.m2", + value = "helm_plate_pvppaladin_c_02_drf.m2", }, { - fileId = "142565", - text = "helmet_robe_d_04_tam.m2", - value = "helmet_robe_d_04_tam.m2", + fileId = "468873", + text = "helm_plate_pvppaladin_c_02_drm.m2", + value = "helm_plate_pvppaladin_c_02_drm.m2", }, { - fileId = "142566", - text = "helmet_robe_d_04_trf.m2", - value = "helmet_robe_d_04_trf.m2", + fileId = "468874", + text = "helm_plate_pvppaladin_c_02_dwf.m2", + value = "helm_plate_pvppaladin_c_02_dwf.m2", }, { - fileId = "142567", - text = "helmet_robe_d_04_trm.m2", - value = "helmet_robe_d_04_trm.m2", + fileId = "468875", + text = "helm_plate_pvppaladin_c_02_dwm.m2", + value = "helm_plate_pvppaladin_c_02_dwm.m2", }, - }, - text = "head", - value = "head", - }, - { - children = { { - fileId = "2351788", - text = "pouch_alliance_a_01.m2", - value = "pouch_alliance_a_01.m2", + fileId = "468876", + text = "helm_plate_pvppaladin_c_02_gnf.m2", + value = "helm_plate_pvppaladin_c_02_gnf.m2", }, { - fileId = "2351697", - text = "pouch_alliance_a_02.m2", - value = "pouch_alliance_a_02.m2", + fileId = "468877", + text = "helm_plate_pvppaladin_c_02_gnm.m2", + value = "helm_plate_pvppaladin_c_02_gnm.m2", }, { - fileId = "2351743", - text = "pouch_horde_a_01.m2", - value = "pouch_horde_a_01.m2", + fileId = "468878", + text = "helm_plate_pvppaladin_c_02_gof.m2", + value = "helm_plate_pvppaladin_c_02_gof.m2", }, { - fileId = "2351703", - text = "pouch_horde_a_02.m2", - value = "pouch_horde_a_02.m2", + fileId = "468879", + text = "helm_plate_pvppaladin_c_02_gom.m2", + value = "helm_plate_pvppaladin_c_02_gom.m2", }, - }, - text = "pouch", - value = "pouch", - }, - { - children = { { - fileId = "142631", - text = "quiver_a.m2", - value = "quiver_a.m2", + fileId = "468880", + text = "helm_plate_pvppaladin_c_02_huf.m2", + value = "helm_plate_pvppaladin_c_02_huf.m2", }, { - fileId = "142667", - text = "quiver_bolt_a_01.m2", - value = "quiver_bolt_a_01.m2", + fileId = "468881", + text = "helm_plate_pvppaladin_c_02_hum.m2", + value = "helm_plate_pvppaladin_c_02_hum.m2", }, { - fileId = "142693", - text = "quiver_horde_a_01.m2", - value = "quiver_horde_a_01.m2", + fileId = "468882", + text = "helm_plate_pvppaladin_c_02_nif.m2", + value = "helm_plate_pvppaladin_c_02_nif.m2", }, - }, - text = "quiver", - value = "quiver", - }, - { - children = { { - fileId = "142733", - text = "buckler_damaged_a_01.m2", - value = "buckler_damaged_a_01.m2", + fileId = "468883", + text = "helm_plate_pvppaladin_c_02_nim.m2", + value = "helm_plate_pvppaladin_c_02_nim.m2", }, { - fileId = "142737", - text = "buckler_damaged_a_02.m2", - value = "buckler_damaged_a_02.m2", + fileId = "468885", + text = "helm_plate_pvppaladin_c_02_orf.m2", + value = "helm_plate_pvppaladin_c_02_orf.m2", }, { - fileId = "142741", - text = "buckler_oval_a_01.m2", - value = "buckler_oval_a_01.m2", + fileId = "468886", + text = "helm_plate_pvppaladin_c_02_orm.m2", + value = "helm_plate_pvppaladin_c_02_orm.m2", }, { - fileId = "142745", - text = "buckler_round_a_01.m2", - value = "buckler_round_a_01.m2", + fileId = "468888", + text = "helm_plate_pvppaladin_c_02_scf.m2", + value = "helm_plate_pvppaladin_c_02_scf.m2", }, { - fileId = "142754", - text = "shield_2h_outlandraid_d_01.m2", - value = "shield_2h_outlandraid_d_01.m2", + fileId = "468889", + text = "helm_plate_pvppaladin_c_02_scm.m2", + value = "helm_plate_pvppaladin_c_02_scm.m2", }, { - fileId = "142756", - text = "shield_2h_outlandraid_d_02.m2", - value = "shield_2h_outlandraid_d_02.m2", + fileId = "468890", + text = "helm_plate_pvppaladin_c_02_taf.m2", + value = "helm_plate_pvppaladin_c_02_taf.m2", }, { - fileId = "142758", - text = "shield_2h_outlandraid_d_03.m2", - value = "shield_2h_outlandraid_d_03.m2", + fileId = "468891", + text = "helm_plate_pvppaladin_c_02_tam.m2", + value = "helm_plate_pvppaladin_c_02_tam.m2", }, { - fileId = "142760", - text = "shield_2h_outlandraid_d_04.m2", - value = "shield_2h_outlandraid_d_04.m2", + fileId = "468892", + text = "helm_plate_pvppaladin_c_02_trf.m2", + value = "helm_plate_pvppaladin_c_02_trf.m2", }, { - fileId = "142762", - text = "shield_2h_outlandraid_d_05.m2", - value = "shield_2h_outlandraid_d_05.m2", + fileId = "468893", + text = "helm_plate_pvppaladin_c_02_trm.m2", + value = "helm_plate_pvppaladin_c_02_trm.m2", }, { - fileId = "142765", - text = "shield_2h_outlandraid_d_06.m2", - value = "shield_2h_outlandraid_d_06.m2", + fileId = "468894", + text = "helm_plate_pvppaladin_c_02_wof.m2", + value = "helm_plate_pvppaladin_c_02_wof.m2", }, { - fileId = "142767", - text = "shield_2h_outlandraid_d_07.m2", - value = "shield_2h_outlandraid_d_07.m2", + fileId = "468895", + text = "helm_plate_pvppaladin_c_02_wom.m2", + value = "helm_plate_pvppaladin_c_02_wom.m2", }, { - fileId = "142772", - text = "shield_2h_outlandraid_d_08.m2", - value = "shield_2h_outlandraid_d_08.m2", + fileId = "537979", + text = "helm_plate_pvppaladin_d_01_bef.m2", + value = "helm_plate_pvppaladin_d_01_bef.m2", }, { - fileId = "142779", - text = "shield_ahnqiraj_d_01.m2", - value = "shield_ahnqiraj_d_01.m2", + fileId = "537981", + text = "helm_plate_pvppaladin_d_01_bem.m2", + value = "helm_plate_pvppaladin_d_01_bem.m2", }, { - fileId = "142781", - text = "shield_ahnqiraj_d_02.m2", - value = "shield_ahnqiraj_d_02.m2", + fileId = "537983", + text = "helm_plate_pvppaladin_d_01_drf.m2", + value = "helm_plate_pvppaladin_d_01_drf.m2", }, { - fileId = "142783", - text = "shield_ahnqiraj_d_03.m2", - value = "shield_ahnqiraj_d_03.m2", + fileId = "537985", + text = "helm_plate_pvppaladin_d_01_drm.m2", + value = "helm_plate_pvppaladin_d_01_drm.m2", }, { - fileId = "238343", - text = "shield_argentcrusade_c_01.m2", - value = "shield_argentcrusade_c_01.m2", + fileId = "537987", + text = "helm_plate_pvppaladin_d_01_dwf.m2", + value = "helm_plate_pvppaladin_d_01_dwf.m2", }, { - fileId = "142785", - text = "shield_blackwing_drakeadon.m2", - value = "shield_blackwing_drakeadon.m2", + fileId = "537989", + text = "helm_plate_pvppaladin_d_01_dwm.m2", + value = "helm_plate_pvppaladin_d_01_dwm.m2", }, { - fileId = "142787", - text = "shield_blackwing_reddragon.m2", - value = "shield_blackwing_reddragon.m2", + fileId = "537991", + text = "helm_plate_pvppaladin_d_01_gnf.m2", + value = "helm_plate_pvppaladin_d_01_gnf.m2", }, { - fileId = "142789", - text = "shield_blood_a_01.m2", - value = "shield_blood_a_01.m2", + fileId = "537993", + text = "helm_plate_pvppaladin_d_01_gnm.m2", + value = "helm_plate_pvppaladin_d_01_gnm.m2", }, { - fileId = "142791", - text = "shield_blood_a_02.m2", - value = "shield_blood_a_02.m2", + fileId = "537995", + text = "helm_plate_pvppaladin_d_01_gof.m2", + value = "helm_plate_pvppaladin_d_01_gof.m2", }, { - fileId = "142793", - text = "shield_blood_a_03.m2", - value = "shield_blood_a_03.m2", + fileId = "537997", + text = "helm_plate_pvppaladin_d_01_gom.m2", + value = "helm_plate_pvppaladin_d_01_gom.m2", }, { - fileId = "142795", - text = "shield_bloodknight_b_01.m2", - value = "shield_bloodknight_b_01.m2", + fileId = "537999", + text = "helm_plate_pvppaladin_d_01_huf.m2", + value = "helm_plate_pvppaladin_d_01_huf.m2", }, { - fileId = "142797", - text = "shield_bloodknight_d_01.m2", - value = "shield_bloodknight_d_01.m2", + fileId = "538001", + text = "helm_plate_pvppaladin_d_01_hum.m2", + value = "helm_plate_pvppaladin_d_01_hum.m2", }, { - fileId = "142798", - text = "shield_cotstrat_d_01.m2", - value = "shield_cotstrat_d_01.m2", + fileId = "538003", + text = "helm_plate_pvppaladin_d_01_nif.m2", + value = "helm_plate_pvppaladin_d_01_nif.m2", }, { - fileId = "142799", - text = "shield_cotstrat_d_02.m2", - value = "shield_cotstrat_d_02.m2", + fileId = "538005", + text = "helm_plate_pvppaladin_d_01_nim.m2", + value = "helm_plate_pvppaladin_d_01_nim.m2", }, { - fileId = "142804", - text = "shield_crest_a_01.m2", - value = "shield_crest_a_01.m2", + fileId = "538007", + text = "helm_plate_pvppaladin_d_01_orf.m2", + value = "helm_plate_pvppaladin_d_01_orf.m2", }, { - fileId = "142809", - text = "shield_crest_a_02.m2", - value = "shield_crest_a_02.m2", + fileId = "538009", + text = "helm_plate_pvppaladin_d_01_orm.m2", + value = "helm_plate_pvppaladin_d_01_orm.m2", }, { - fileId = "142813", - text = "shield_crest_b_01.m2", - value = "shield_crest_b_01.m2", + fileId = "538011", + text = "helm_plate_pvppaladin_d_01_scf.m2", + value = "helm_plate_pvppaladin_d_01_scf.m2", }, { - fileId = "142816", - text = "shield_crest_b_02.m2", - value = "shield_crest_b_02.m2", + fileId = "538013", + text = "helm_plate_pvppaladin_d_01_scm.m2", + value = "helm_plate_pvppaladin_d_01_scm.m2", }, { - fileId = "142826", - text = "shield_crest_b_03.m2", - value = "shield_crest_b_03.m2", + fileId = "538015", + text = "helm_plate_pvppaladin_d_01_taf.m2", + value = "helm_plate_pvppaladin_d_01_taf.m2", }, { - fileId = "238344", - text = "shield_dalaran_d_01.m2", - value = "shield_dalaran_d_01.m2", + fileId = "538017", + text = "helm_plate_pvppaladin_d_01_tam.m2", + value = "helm_plate_pvppaladin_d_01_tam.m2", }, { - fileId = "142849", - text = "shield_draenei_a_01.m2", - value = "shield_draenei_a_01.m2", + fileId = "538019", + text = "helm_plate_pvppaladin_d_01_trf.m2", + value = "helm_plate_pvppaladin_d_01_trf.m2", }, { - fileId = "142855", - text = "shield_draenei_a_02.m2", - value = "shield_draenei_a_02.m2", + fileId = "538021", + text = "helm_plate_pvppaladin_d_01_trm.m2", + value = "helm_plate_pvppaladin_d_01_trm.m2", }, { - fileId = "142862", - text = "shield_draktharon_d_01.m2", - value = "shield_draktharon_d_01.m2", + fileId = "538023", + text = "helm_plate_pvppaladin_d_01_wof.m2", + value = "helm_plate_pvppaladin_d_01_wof.m2", }, { - fileId = "142867", - text = "shield_engineer_a_01.m2", - value = "shield_engineer_a_01.m2", + fileId = "538025", + text = "helm_plate_pvppaladin_d_01_wom.m2", + value = "helm_plate_pvppaladin_d_01_wom.m2", }, { - fileId = "142869", - text = "shield_engineer_b_01.m2", - value = "shield_engineer_b_01.m2", + fileId = "238139", + text = "helm_plate_pvpwarrior_b_01_bef.m2", + value = "helm_plate_pvpwarrior_b_01_bef.m2", }, { - fileId = "142871", - text = "shield_engineer_c_01.m2", - value = "shield_engineer_c_01.m2", + fileId = "238140", + text = "helm_plate_pvpwarrior_b_01_bem.m2", + value = "helm_plate_pvpwarrior_b_01_bem.m2", }, { - fileId = "142873", - text = "shield_epic_a_01.m2", - value = "shield_epic_a_01.m2", + fileId = "238141", + text = "helm_plate_pvpwarrior_b_01_drf.m2", + value = "helm_plate_pvpwarrior_b_01_drf.m2", }, { - fileId = "142875", - text = "shield_epic_a_02.m2", - value = "shield_epic_a_02.m2", + fileId = "238142", + text = "helm_plate_pvpwarrior_b_01_drm.m2", + value = "helm_plate_pvpwarrior_b_01_drm.m2", }, { - fileId = "142876", - text = "shield_epic_b_01.m2", - value = "shield_epic_b_01.m2", + fileId = "238143", + text = "helm_plate_pvpwarrior_b_01_dwf.m2", + value = "helm_plate_pvpwarrior_b_01_dwf.m2", }, { - fileId = "238350", - text = "shield_healer_pvp_c_01.m2", - value = "shield_healer_pvp_c_01.m2", + fileId = "238144", + text = "helm_plate_pvpwarrior_b_01_dwm.m2", + value = "helm_plate_pvpwarrior_b_01_dwm.m2", }, { - fileId = "142878", - text = "shield_horde_a_01.m2", - value = "shield_horde_a_01.m2", + fileId = "238145", + text = "helm_plate_pvpwarrior_b_01_gnf.m2", + value = "helm_plate_pvpwarrior_b_01_gnf.m2", }, { - fileId = "142885", - text = "shield_horde_a_02.m2", - value = "shield_horde_a_02.m2", + fileId = "238146", + text = "helm_plate_pvpwarrior_b_01_gnm.m2", + value = "helm_plate_pvpwarrior_b_01_gnm.m2", }, { - fileId = "142893", - text = "shield_horde_a_03.m2", - value = "shield_horde_a_03.m2", + fileId = "238147", + text = "helm_plate_pvpwarrior_b_01_gof.m2", + value = "helm_plate_pvpwarrior_b_01_gof.m2", }, { - fileId = "142900", - text = "shield_horde_a_04.m2", - value = "shield_horde_a_04.m2", + fileId = "238148", + text = "helm_plate_pvpwarrior_b_01_gom.m2", + value = "helm_plate_pvpwarrior_b_01_gom.m2", }, { - fileId = "142907", - text = "shield_horde_b_01.m2", - value = "shield_horde_b_01.m2", + fileId = "238149", + text = "helm_plate_pvpwarrior_b_01_huf.m2", + value = "helm_plate_pvpwarrior_b_01_huf.m2", }, { - fileId = "142909", - text = "shield_horde_b_02.m2", - value = "shield_horde_b_02.m2", + fileId = "238150", + text = "helm_plate_pvpwarrior_b_01_hum.m2", + value = "helm_plate_pvpwarrior_b_01_hum.m2", }, { - fileId = "142911", - text = "shield_horde_b_03.m2", - value = "shield_horde_b_03.m2", + fileId = "238151", + text = "helm_plate_pvpwarrior_b_01_nif.m2", + value = "helm_plate_pvpwarrior_b_01_nif.m2", }, { - fileId = "142914", - text = "shield_horde_b_04.m2", - value = "shield_horde_b_04.m2", + fileId = "238152", + text = "helm_plate_pvpwarrior_b_01_nim.m2", + value = "helm_plate_pvpwarrior_b_01_nim.m2", }, { - fileId = "238356", - text = "shield_horde_b_05.m2", - value = "shield_horde_b_05.m2", + fileId = "238153", + text = "helm_plate_pvpwarrior_b_01_orf.m2", + value = "helm_plate_pvpwarrior_b_01_orf.m2", }, { - fileId = "142916", - text = "shield_horde_c_02.m2", - value = "shield_horde_c_02.m2", + fileId = "238154", + text = "helm_plate_pvpwarrior_b_01_orm.m2", + value = "helm_plate_pvpwarrior_b_01_orm.m2", }, { - fileId = "142918", - text = "shield_horde_c_03.m2", - value = "shield_horde_c_03.m2", + fileId = "238155", + text = "helm_plate_pvpwarrior_b_01_scf.m2", + value = "helm_plate_pvpwarrior_b_01_scf.m2", }, { - fileId = "142920", - text = "shield_hyjal_d_01.m2", - value = "shield_hyjal_d_01.m2", + fileId = "238156", + text = "helm_plate_pvpwarrior_b_01_scm.m2", + value = "helm_plate_pvpwarrior_b_01_scm.m2", }, { - fileId = "142924", - text = "shield_hyjal_d_02.m2", - value = "shield_hyjal_d_02.m2", + fileId = "238157", + text = "helm_plate_pvpwarrior_b_01_taf.m2", + value = "helm_plate_pvpwarrior_b_01_taf.m2", }, { - fileId = "142930", - text = "shield_hyjal_d_03.m2", - value = "shield_hyjal_d_03.m2", + fileId = "238158", + text = "helm_plate_pvpwarrior_b_01_tam.m2", + value = "helm_plate_pvpwarrior_b_01_tam.m2", }, { - fileId = "307952", - text = "shield_icecrownraid_d_01.m2", - value = "shield_icecrownraid_d_01.m2", + fileId = "238159", + text = "helm_plate_pvpwarrior_b_01_trf.m2", + value = "helm_plate_pvpwarrior_b_01_trf.m2", }, { - fileId = "307690", - text = "shield_icecrownraid_d_02.m2", - value = "shield_icecrownraid_d_02.m2", + fileId = "238160", + text = "helm_plate_pvpwarrior_b_01_trm.m2", + value = "helm_plate_pvpwarrior_b_01_trm.m2", }, { - fileId = "307691", - text = "shield_icecrownraid_d_03.m2", - value = "shield_icecrownraid_d_03.m2", + fileId = "454266", + text = "helm_plate_pvpwarrior_b_01_wof.m2", + value = "helm_plate_pvpwarrior_b_01_wof.m2", }, { - fileId = "308487", - text = "shield_icecrownraid_d_04.m2", - value = "shield_icecrownraid_d_04.m2", + fileId = "437119", + text = "helm_plate_pvpwarrior_b_01_wom.m2", + value = "helm_plate_pvpwarrior_b_01_wom.m2", }, { - fileId = "142934", - text = "shield_illidan_d_01.m2", - value = "shield_illidan_d_01.m2", + fileId = "254383", + text = "helm_plate_pvpwarrior_b_02_bef.m2", + value = "helm_plate_pvpwarrior_b_02_bef.m2", }, { - fileId = "142939", - text = "shield_lion_a_01.m2", - value = "shield_lion_a_01.m2", + fileId = "254384", + text = "helm_plate_pvpwarrior_b_02_bem.m2", + value = "helm_plate_pvpwarrior_b_02_bem.m2", }, { - fileId = "238359", - text = "shield_melee_pvp_c_01.m2", - value = "shield_melee_pvp_c_01.m2", + fileId = "254385", + text = "helm_plate_pvpwarrior_b_02_drf.m2", + value = "helm_plate_pvpwarrior_b_02_drf.m2", }, { - fileId = "142940", - text = "shield_militia_a_01.m2", - value = "shield_militia_a_01.m2", + fileId = "254386", + text = "helm_plate_pvpwarrior_b_02_drm.m2", + value = "helm_plate_pvpwarrior_b_02_drm.m2", }, { - fileId = "238364", - text = "shield_naxx25_d_01.m2", - value = "shield_naxx25_d_01.m2", + fileId = "254387", + text = "helm_plate_pvpwarrior_b_02_dwf.m2", + value = "helm_plate_pvpwarrior_b_02_dwf.m2", }, { - fileId = "238369", - text = "shield_naxx25_d_02.m2", - value = "shield_naxx25_d_02.m2", + fileId = "254388", + text = "helm_plate_pvpwarrior_b_02_dwm.m2", + value = "helm_plate_pvpwarrior_b_02_dwm.m2", }, { - fileId = "142946", - text = "shield_naxxramas_d_01.m2", - value = "shield_naxxramas_d_01.m2", + fileId = "254389", + text = "helm_plate_pvpwarrior_b_02_gnf.m2", + value = "helm_plate_pvpwarrior_b_02_gnf.m2", }, { - fileId = "142948", - text = "shield_naxxramas_d_02.m2", - value = "shield_naxxramas_d_02.m2", + fileId = "254390", + text = "helm_plate_pvpwarrior_b_02_gnm.m2", + value = "helm_plate_pvpwarrior_b_02_gnm.m2", }, { - fileId = "142950", - text = "shield_naxxramas_d_03.m2", - value = "shield_naxxramas_d_03.m2", + fileId = "254391", + text = "helm_plate_pvpwarrior_b_02_gof.m2", + value = "helm_plate_pvpwarrior_b_02_gof.m2", }, { - fileId = "142951", - text = "shield_nexus_d_01.m2", - value = "shield_nexus_d_01.m2", + fileId = "254392", + text = "helm_plate_pvpwarrior_b_02_gom.m2", + value = "helm_plate_pvpwarrior_b_02_gom.m2", }, { - fileId = "142956", - text = "shield_northrend_b_01.m2", - value = "shield_northrend_b_01.m2", + fileId = "254393", + text = "helm_plate_pvpwarrior_b_02_huf.m2", + value = "helm_plate_pvpwarrior_b_02_huf.m2", }, { - fileId = "142957", - text = "shield_northrend_b_02.m2", - value = "shield_northrend_b_02.m2", + fileId = "254394", + text = "helm_plate_pvpwarrior_b_02_hum.m2", + value = "helm_plate_pvpwarrior_b_02_hum.m2", }, { - fileId = "142958", - text = "shield_northrend_b_03.m2", - value = "shield_northrend_b_03.m2", + fileId = "254395", + text = "helm_plate_pvpwarrior_b_02_nif.m2", + value = "helm_plate_pvpwarrior_b_02_nif.m2", }, { - fileId = "142959", - text = "shield_northrend_b_04.m2", - value = "shield_northrend_b_04.m2", + fileId = "254396", + text = "helm_plate_pvpwarrior_b_02_nim.m2", + value = "helm_plate_pvpwarrior_b_02_nim.m2", }, { - fileId = "142960", - text = "shield_northrend_c_01.m2", - value = "shield_northrend_c_01.m2", + fileId = "254397", + text = "helm_plate_pvpwarrior_b_02_orf.m2", + value = "helm_plate_pvpwarrior_b_02_orf.m2", }, { - fileId = "142965", - text = "shield_northrend_c_02.m2", - value = "shield_northrend_c_02.m2", + fileId = "254398", + text = "helm_plate_pvpwarrior_b_02_orm.m2", + value = "helm_plate_pvpwarrior_b_02_orm.m2", }, { - fileId = "142970", - text = "shield_northrend_c_03.m2", - value = "shield_northrend_c_03.m2", + fileId = "254399", + text = "helm_plate_pvpwarrior_b_02_scf.m2", + value = "helm_plate_pvpwarrior_b_02_scf.m2", }, { - fileId = "142975", - text = "shield_northrend_c_04.m2", - value = "shield_northrend_c_04.m2", + fileId = "254400", + text = "helm_plate_pvpwarrior_b_02_scm.m2", + value = "helm_plate_pvpwarrior_b_02_scm.m2", }, { - fileId = "142979", - text = "shield_northrend_d_01.m2", - value = "shield_northrend_d_01.m2", + fileId = "254401", + text = "helm_plate_pvpwarrior_b_02_taf.m2", + value = "helm_plate_pvpwarrior_b_02_taf.m2", }, { - fileId = "142984", - text = "shield_oval_a_01.m2", - value = "shield_oval_a_01.m2", + fileId = "254402", + text = "helm_plate_pvpwarrior_b_02_tam.m2", + value = "helm_plate_pvpwarrior_b_02_tam.m2", }, { - fileId = "304736", - text = "shield_pvealliance_d_01.m2", - value = "shield_pvealliance_d_01.m2", + fileId = "304452", + text = "helm_plate_pvpwarrior_b_02_trf.m2", + value = "helm_plate_pvpwarrior_b_02_trf.m2", }, { - fileId = "305181", - text = "shield_pvealliance_d_02.m2", - value = "shield_pvealliance_d_02.m2", + fileId = "254403", + text = "helm_plate_pvpwarrior_b_02_trm.m2", + value = "helm_plate_pvpwarrior_b_02_trm.m2", }, { - fileId = "306624", - text = "shield_pvehorde_d_01.m2", - value = "shield_pvehorde_d_01.m2", + fileId = "454267", + text = "helm_plate_pvpwarrior_b_02_wof.m2", + value = "helm_plate_pvpwarrior_b_02_wof.m2", }, { - fileId = "306564", - text = "shield_pvehorde_d_02.m2", - value = "shield_pvehorde_d_02.m2", + fileId = "436656", + text = "helm_plate_pvpwarrior_b_02_wom.m2", + value = "helm_plate_pvpwarrior_b_02_wom.m2", }, { - fileId = "329350", - text = "shield_pvp330_d_01.m2", - value = "shield_pvp330_d_01.m2", + fileId = "304428", + text = "helm_plate_pvpwarrior_b_03_bef.m2", + value = "helm_plate_pvpwarrior_b_03_bef.m2", }, { - fileId = "142989", - text = "shield_pvpalliance_a_01.m2", - value = "shield_pvpalliance_a_01.m2", + fileId = "304429", + text = "helm_plate_pvpwarrior_b_03_bem.m2", + value = "helm_plate_pvpwarrior_b_03_bem.m2", }, { - fileId = "142991", - text = "shield_pvphorde_a_01.m2", - value = "shield_pvphorde_a_01.m2", + fileId = "304430", + text = "helm_plate_pvpwarrior_b_03_drf.m2", + value = "helm_plate_pvpwarrior_b_03_drf.m2", }, { - fileId = "142992", - text = "shield_rectangle_a_01.m2", - value = "shield_rectangle_a_01.m2", + fileId = "304431", + text = "helm_plate_pvpwarrior_b_03_drm.m2", + value = "helm_plate_pvpwarrior_b_03_drm.m2", }, { - fileId = "142997", - text = "shield_rectangle_b_01.m2", - value = "shield_rectangle_b_01.m2", + fileId = "304432", + text = "helm_plate_pvpwarrior_b_03_dwf.m2", + value = "helm_plate_pvpwarrior_b_03_dwf.m2", }, { - fileId = "143001", - text = "shield_round_a_01.m2", - value = "shield_round_a_01.m2", + fileId = "304433", + text = "helm_plate_pvpwarrior_b_03_dwm.m2", + value = "helm_plate_pvpwarrior_b_03_dwm.m2", }, { - fileId = "143005", - text = "shield_round_b_01.m2", - value = "shield_round_b_01.m2", + fileId = "304434", + text = "helm_plate_pvpwarrior_b_03_gnf.m2", + value = "helm_plate_pvpwarrior_b_03_gnf.m2", }, { - fileId = "143029", - text = "shield_stratholme_d_01.m2", - value = "shield_stratholme_d_01.m2", + fileId = "304435", + text = "helm_plate_pvpwarrior_b_03_gnm.m2", + value = "helm_plate_pvpwarrior_b_03_gnm.m2", }, { - fileId = "143031", - text = "shield_stratholme_d_02.m2", - value = "shield_stratholme_d_02.m2", + fileId = "304436", + text = "helm_plate_pvpwarrior_b_03_gof.m2", + value = "helm_plate_pvpwarrior_b_03_gof.m2", }, { - fileId = "143032", - text = "shield_sunshatter_d_01.m2", - value = "shield_sunshatter_d_01.m2", + fileId = "304437", + text = "helm_plate_pvpwarrior_b_03_gom.m2", + value = "helm_plate_pvpwarrior_b_03_gom.m2", }, { - fileId = "143038", - text = "shield_sunwell_d_01.m2", - value = "shield_sunwell_d_01.m2", + fileId = "304438", + text = "helm_plate_pvpwarrior_b_03_huf.m2", + value = "helm_plate_pvpwarrior_b_03_huf.m2", }, { - fileId = "143043", - text = "shield_sunwell_d_02.m2", - value = "shield_sunwell_d_02.m2", + fileId = "304439", + text = "helm_plate_pvpwarrior_b_03_hum.m2", + value = "helm_plate_pvpwarrior_b_03_hum.m2", }, { - fileId = "143047", - text = "shield_sunwell_d_03.m2", - value = "shield_sunwell_d_03.m2", + fileId = "304440", + text = "helm_plate_pvpwarrior_b_03_nif.m2", + value = "helm_plate_pvpwarrior_b_03_nif.m2", }, { - fileId = "238386", - text = "shield_ulduarraid_d_01.m2", - value = "shield_ulduarraid_d_01.m2", + fileId = "304441", + text = "helm_plate_pvpwarrior_b_03_nim.m2", + value = "helm_plate_pvpwarrior_b_03_nim.m2", }, { - fileId = "249238", - text = "shield_ulduarraid_d_02.m2", - value = "shield_ulduarraid_d_02.m2", + fileId = "304442", + text = "helm_plate_pvpwarrior_b_03_orf.m2", + value = "helm_plate_pvpwarrior_b_03_orf.m2", }, { - fileId = "238393", - text = "shield_ulduarraid_d_03.m2", - value = "shield_ulduarraid_d_03.m2", + fileId = "304443", + text = "helm_plate_pvpwarrior_b_03_orm.m2", + value = "helm_plate_pvpwarrior_b_03_orm.m2", }, { - fileId = "238399", - text = "shield_ulduarraid_d_04.m2", - value = "shield_ulduarraid_d_04.m2", + fileId = "304444", + text = "helm_plate_pvpwarrior_b_03_scf.m2", + value = "helm_plate_pvpwarrior_b_03_scf.m2", }, { - fileId = "143052", - text = "shield_utgarde_d_01.m2", - value = "shield_utgarde_d_01.m2", + fileId = "304445", + text = "helm_plate_pvpwarrior_b_03_scm.m2", + value = "helm_plate_pvpwarrior_b_03_scm.m2", }, { - fileId = "143057", - text = "shield_utgarde_d_02.m2", - value = "shield_utgarde_d_02.m2", + fileId = "304446", + text = "helm_plate_pvpwarrior_b_03_taf.m2", + value = "helm_plate_pvpwarrior_b_03_taf.m2", }, { - fileId = "143063", - text = "shield_wheel_b_01.m2", - value = "shield_wheel_b_01.m2", + fileId = "304447", + text = "helm_plate_pvpwarrior_b_03_tam.m2", + value = "helm_plate_pvpwarrior_b_03_tam.m2", }, { - fileId = "143065", - text = "shield_zulaman_d_01.m2", - value = "shield_zulaman_d_01.m2", + fileId = "304448", + text = "helm_plate_pvpwarrior_b_03_trf.m2", + value = "helm_plate_pvpwarrior_b_03_trf.m2", }, { - fileId = "143069", - text = "shield_zulaman_d_02.m2", - value = "shield_zulaman_d_02.m2", + fileId = "304449", + text = "helm_plate_pvpwarrior_b_03_trm.m2", + value = "helm_plate_pvpwarrior_b_03_trm.m2", }, { - fileId = "143075", - text = "shield_zulgurub_d_01.m2", - value = "shield_zulgurub_d_01.m2", + fileId = "454268", + text = "helm_plate_pvpwarrior_b_03_wof.m2", + value = "helm_plate_pvpwarrior_b_03_wof.m2", }, { - fileId = "143077", - text = "shield_zulgurub_d_02.m2", - value = "shield_zulgurub_d_02.m2", + fileId = "436657", + text = "helm_plate_pvpwarrior_b_03_wom.m2", + value = "helm_plate_pvpwarrior_b_03_wom.m2", }, - }, - text = "shield", - value = "shield", - }, - { - children = { { - fileId = "238415", - text = "lshoulder_cloth_pvpmage_b_01.m2", - value = "lshoulder_cloth_pvpmage_b_01.m2", + fileId = "345707", + text = "helm_plate_pvpwarrior_b_04_bef.m2", + value = "helm_plate_pvpwarrior_b_04_bef.m2", }, { - fileId = "255263", - text = "lshoulder_cloth_pvpmage_b_02.m2", - value = "lshoulder_cloth_pvpmage_b_02.m2", + fileId = "345708", + text = "helm_plate_pvpwarrior_b_04_bem.m2", + value = "helm_plate_pvpwarrior_b_04_bem.m2", }, { - fileId = "305321", - text = "lshoulder_cloth_pvpmage_b_03.m2", - value = "lshoulder_cloth_pvpmage_b_03.m2", + fileId = "345709", + text = "helm_plate_pvpwarrior_b_04_drf.m2", + value = "helm_plate_pvpwarrior_b_04_drf.m2", }, { - fileId = "343976", - text = "lshoulder_cloth_pvpmage_b_04.m2", - value = "lshoulder_cloth_pvpmage_b_04.m2", + fileId = "345710", + text = "helm_plate_pvpwarrior_b_04_drm.m2", + value = "helm_plate_pvpwarrior_b_04_drm.m2", }, { - fileId = "238416", - text = "lshoulder_cloth_pvppriest_b_01.m2", - value = "lshoulder_cloth_pvppriest_b_01.m2", + fileId = "345711", + text = "helm_plate_pvpwarrior_b_04_dwf.m2", + value = "helm_plate_pvpwarrior_b_04_dwf.m2", }, { - fileId = "293956", - text = "lshoulder_cloth_pvppriest_b_02.m2", - value = "lshoulder_cloth_pvppriest_b_02.m2", + fileId = "345712", + text = "helm_plate_pvpwarrior_b_04_dwm.m2", + value = "helm_plate_pvpwarrior_b_04_dwm.m2", }, { - fileId = "347765", - text = "lshoulder_cloth_pvppriest_b_04.m2", - value = "lshoulder_cloth_pvppriest_b_04.m2", + fileId = "345713", + text = "helm_plate_pvpwarrior_b_04_gnf.m2", + value = "helm_plate_pvpwarrior_b_04_gnf.m2", }, { - fileId = "143132", - text = "lshoulder_leather_a_01.m2", - value = "lshoulder_leather_a_01.m2", + fileId = "345714", + text = "helm_plate_pvpwarrior_b_04_gnm.m2", + value = "helm_plate_pvpwarrior_b_04_gnm.m2", }, { - fileId = "143133", - text = "lshoulder_leather_a_02.m2", - value = "lshoulder_leather_a_02.m2", + fileId = "345715", + text = "helm_plate_pvpwarrior_b_04_gof.m2", + value = "helm_plate_pvpwarrior_b_04_gof.m2", }, { - fileId = "143134", - text = "lshoulder_leather_a_03.m2", - value = "lshoulder_leather_a_03.m2", + fileId = "345716", + text = "helm_plate_pvpwarrior_b_04_gom.m2", + value = "helm_plate_pvpwarrior_b_04_gom.m2", }, { - fileId = "143135", - text = "lshoulder_leather_a_03defias.m2", - value = "lshoulder_leather_a_03defias.m2", + fileId = "345717", + text = "helm_plate_pvpwarrior_b_04_huf.m2", + value = "helm_plate_pvpwarrior_b_04_huf.m2", }, { - fileId = "143136", - text = "lshoulder_leather_a_04.m2", - value = "lshoulder_leather_a_04.m2", + fileId = "345718", + text = "helm_plate_pvpwarrior_b_04_hum.m2", + value = "helm_plate_pvpwarrior_b_04_hum.m2", }, { - fileId = "143137", - text = "lshoulder_leather_a_05.m2", - value = "lshoulder_leather_a_05.m2", + fileId = "345719", + text = "helm_plate_pvpwarrior_b_04_nif.m2", + value = "helm_plate_pvpwarrior_b_04_nif.m2", }, { - fileId = "143138", - text = "lshoulder_leather_ahnqiraj_a_01.m2", - value = "lshoulder_leather_ahnqiraj_a_01.m2", + fileId = "345720", + text = "helm_plate_pvpwarrior_b_04_nim.m2", + value = "helm_plate_pvpwarrior_b_04_nim.m2", }, { - fileId = "316666", - text = "lshoulder_leather_argentalliance_d_01.m2", - value = "lshoulder_leather_argentalliance_d_01.m2", + fileId = "345721", + text = "helm_plate_pvpwarrior_b_04_orf.m2", + value = "helm_plate_pvpwarrior_b_04_orf.m2", }, { - fileId = "312784", - text = "lshoulder_leather_argenthorde_d_01.m2", - value = "lshoulder_leather_argenthorde_d_01.m2", + fileId = "345722", + text = "helm_plate_pvpwarrior_b_04_orm.m2", + value = "helm_plate_pvpwarrior_b_04_orm.m2", }, { - fileId = "143139", - text = "lshoulder_leather_b_01.m2", - value = "lshoulder_leather_b_01.m2", + fileId = "345723", + text = "helm_plate_pvpwarrior_b_04_scf.m2", + value = "helm_plate_pvpwarrior_b_04_scf.m2", }, { - fileId = "143140", - text = "lshoulder_leather_b_02.m2", - value = "lshoulder_leather_b_02.m2", + fileId = "345724", + text = "helm_plate_pvpwarrior_b_04_scm.m2", + value = "helm_plate_pvpwarrior_b_04_scm.m2", }, { - fileId = "143141", - text = "lshoulder_leather_b_03.m2", - value = "lshoulder_leather_b_03.m2", + fileId = "345725", + text = "helm_plate_pvpwarrior_b_04_taf.m2", + value = "helm_plate_pvpwarrior_b_04_taf.m2", }, { - fileId = "143142", - text = "lshoulder_leather_b_04.m2", - value = "lshoulder_leather_b_04.m2", + fileId = "345726", + text = "helm_plate_pvpwarrior_b_04_tam.m2", + value = "helm_plate_pvpwarrior_b_04_tam.m2", }, { - fileId = "143143", - text = "lshoulder_leather_blood_b_01.m2", - value = "lshoulder_leather_blood_b_01.m2", + fileId = "345727", + text = "helm_plate_pvpwarrior_b_04_trf.m2", + value = "helm_plate_pvpwarrior_b_04_trf.m2", }, { - fileId = "143144", - text = "lshoulder_leather_c_01.m2", - value = "lshoulder_leather_c_01.m2", + fileId = "345728", + text = "helm_plate_pvpwarrior_b_04_trm.m2", + value = "helm_plate_pvpwarrior_b_04_trm.m2", }, { - fileId = "143145", - text = "lshoulder_leather_c_02.m2", - value = "lshoulder_leather_c_02.m2", + fileId = "454269", + text = "helm_plate_pvpwarrior_b_04_wof.m2", + value = "helm_plate_pvpwarrior_b_04_wof.m2", }, { - fileId = "143146", - text = "lshoulder_leather_c_03.m2", - value = "lshoulder_leather_c_03.m2", + fileId = "436658", + text = "helm_plate_pvpwarrior_b_04_wom.m2", + value = "helm_plate_pvpwarrior_b_04_wom.m2", }, { - fileId = "143147", - text = "lshoulder_leather_d_01.m2", - value = "lshoulder_leather_d_01.m2", + fileId = "433812", + text = "helm_plate_pvpwarrior_c_01_bef.m2", + value = "helm_plate_pvpwarrior_c_01_bef.m2", }, { - fileId = "143148", - text = "lshoulder_leather_d_02.m2", - value = "lshoulder_leather_d_02.m2", + fileId = "433813", + text = "helm_plate_pvpwarrior_c_01_bem.m2", + value = "helm_plate_pvpwarrior_c_01_bem.m2", }, { - fileId = "143149", - text = "lshoulder_leather_d_03.m2", - value = "lshoulder_leather_d_03.m2", + fileId = "433814", + text = "helm_plate_pvpwarrior_c_01_drf.m2", + value = "helm_plate_pvpwarrior_c_01_drf.m2", }, { - fileId = "143150", - text = "lshoulder_leather_draenei_b_01.m2", - value = "lshoulder_leather_draenei_b_01.m2", + fileId = "433815", + text = "helm_plate_pvpwarrior_c_01_drm.m2", + value = "helm_plate_pvpwarrior_c_01_drm.m2", }, { - fileId = "143151", - text = "lshoulder_leather_draenei_b_02.m2", - value = "lshoulder_leather_draenei_b_02.m2", + fileId = "433816", + text = "helm_plate_pvpwarrior_c_01_dwf.m2", + value = "helm_plate_pvpwarrior_c_01_dwf.m2", }, { - fileId = "143152", - text = "lshoulder_leather_dungeondruid_a_01.m2", - value = "lshoulder_leather_dungeondruid_a_01.m2", + fileId = "433817", + text = "helm_plate_pvpwarrior_c_01_dwm.m2", + value = "helm_plate_pvpwarrior_c_01_dwm.m2", }, { - fileId = "143153", - text = "lshoulder_leather_dungeondruid_b_01.m2", - value = "lshoulder_leather_dungeondruid_b_01.m2", + fileId = "433818", + text = "helm_plate_pvpwarrior_c_01_gnf.m2", + value = "helm_plate_pvpwarrior_c_01_gnf.m2", }, { - fileId = "2199316", - text = "lshoulder_leather_dungeonhunter_a_01.m2", - value = "lshoulder_leather_dungeonhunter_a_01.m2", + fileId = "433819", + text = "helm_plate_pvpwarrior_c_01_gnm.m2", + value = "helm_plate_pvpwarrior_c_01_gnm.m2", }, { - fileId = "238417", - text = "lshoulder_leather_dungeonleather_c_01.m2", - value = "lshoulder_leather_dungeonleather_c_01.m2", + fileId = "433820", + text = "helm_plate_pvpwarrior_c_01_gof.m2", + value = "helm_plate_pvpwarrior_c_01_gof.m2", }, { - fileId = "340375", - text = "lshoulder_leather_dungeonleather_c_02.m2", - value = "lshoulder_leather_dungeonleather_c_02.m2", + fileId = "433821", + text = "helm_plate_pvpwarrior_c_01_gom.m2", + value = "helm_plate_pvpwarrior_c_01_gom.m2", }, { - fileId = "143155", - text = "lshoulder_leather_dungeonrogue_b_01.m2", - value = "lshoulder_leather_dungeonrogue_b_01.m2", + fileId = "433822", + text = "helm_plate_pvpwarrior_c_01_huf.m2", + value = "helm_plate_pvpwarrior_c_01_huf.m2", }, { - fileId = "143156", - text = "lshoulder_leather_horde_a_05.m2", - value = "lshoulder_leather_horde_a_05.m2", + fileId = "433823", + text = "helm_plate_pvpwarrior_c_01_hum.m2", + value = "helm_plate_pvpwarrior_c_01_hum.m2", }, { - fileId = "143157", - text = "lshoulder_leather_horde_b_03.m2", - value = "lshoulder_leather_horde_b_03.m2", + fileId = "433824", + text = "helm_plate_pvpwarrior_c_01_nif.m2", + value = "helm_plate_pvpwarrior_c_01_nif.m2", }, { - fileId = "143158", - text = "lshoulder_leather_northrend_b_01.m2", - value = "lshoulder_leather_northrend_b_01.m2", + fileId = "433825", + text = "helm_plate_pvpwarrior_c_01_nim.m2", + value = "helm_plate_pvpwarrior_c_01_nim.m2", }, { - fileId = "143159", - text = "lshoulder_leather_northrend_b_02.m2", - value = "lshoulder_leather_northrend_b_02.m2", + fileId = "433826", + text = "helm_plate_pvpwarrior_c_01_orf.m2", + value = "helm_plate_pvpwarrior_c_01_orf.m2", }, { - fileId = "143160", - text = "lshoulder_leather_northrend_b_03.m2", - value = "lshoulder_leather_northrend_b_03.m2", + fileId = "433827", + text = "helm_plate_pvpwarrior_c_01_orm.m2", + value = "helm_plate_pvpwarrior_c_01_orm.m2", }, { - fileId = "143161", - text = "lshoulder_leather_northrend_c_01.m2", - value = "lshoulder_leather_northrend_c_01.m2", + fileId = "433828", + text = "helm_plate_pvpwarrior_c_01_scf.m2", + value = "helm_plate_pvpwarrior_c_01_scf.m2", }, { - fileId = "143162", - text = "lshoulder_leather_northrend_c_02.m2", - value = "lshoulder_leather_northrend_c_02.m2", + fileId = "433829", + text = "helm_plate_pvpwarrior_c_01_scm.m2", + value = "helm_plate_pvpwarrior_c_01_scm.m2", }, { - fileId = "143163", - text = "lshoulder_leather_northrend_d_01.m2", - value = "lshoulder_leather_northrend_d_01.m2", + fileId = "433830", + text = "helm_plate_pvpwarrior_c_01_taf.m2", + value = "helm_plate_pvpwarrior_c_01_taf.m2", }, { - fileId = "143164", - text = "lshoulder_leather_pvpalliance_a_01.m2", - value = "lshoulder_leather_pvpalliance_a_01.m2", + fileId = "468509", + text = "helm_plate_pvpwarrior_c_01_tam.m2", + value = "helm_plate_pvpwarrior_c_01_tam.m2", }, { - fileId = "238418", - text = "lshoulder_leather_pvpdruid_b_01.m2", - value = "lshoulder_leather_pvpdruid_b_01.m2", + fileId = "433831", + text = "helm_plate_pvpwarrior_c_01_trf.m2", + value = "helm_plate_pvpwarrior_c_01_trf.m2", }, { - fileId = "294395", - text = "lshoulder_leather_pvpdruid_b_02.m2", - value = "lshoulder_leather_pvpdruid_b_02.m2", + fileId = "433894", + text = "helm_plate_pvpwarrior_c_01_trm.m2", + value = "helm_plate_pvpwarrior_c_01_trm.m2", }, { - fileId = "304543", - text = "lshoulder_leather_pvpdruid_b_03.m2", - value = "lshoulder_leather_pvpdruid_b_03.m2", + fileId = "465880", + text = "helm_plate_pvpwarrior_c_01_wof.m2", + value = "helm_plate_pvpwarrior_c_01_wof.m2", }, { - fileId = "348778", - text = "lshoulder_leather_pvpdruid_b_04.m2", - value = "lshoulder_leather_pvpdruid_b_04.m2", + fileId = "433895", + text = "helm_plate_pvpwarrior_c_01_wom.m2", + value = "helm_plate_pvpwarrior_c_01_wom.m2", }, { - fileId = "143165", - text = "lshoulder_leather_pvphorde_a_01.m2", - value = "lshoulder_leather_pvphorde_a_01.m2", + fileId = "431626", + text = "helm_plate_pvpwarrior_c_02_bef.m2", + value = "helm_plate_pvpwarrior_c_02_bef.m2", }, { - fileId = "143166", - text = "lshoulder_leather_pvphorde_c_01.m2", - value = "lshoulder_leather_pvphorde_c_01.m2", + fileId = "431628", + text = "helm_plate_pvpwarrior_c_02_bem.m2", + value = "helm_plate_pvpwarrior_c_02_bem.m2", }, { - fileId = "238419", - text = "lshoulder_leather_pvprogue_b_01.m2", - value = "lshoulder_leather_pvprogue_b_01.m2", + fileId = "431632", + text = "helm_plate_pvpwarrior_c_02_drf.m2", + value = "helm_plate_pvpwarrior_c_02_drf.m2", }, { - fileId = "254606", - text = "lshoulder_leather_pvprogue_b_02.m2", - value = "lshoulder_leather_pvprogue_b_02.m2", + fileId = "431634", + text = "helm_plate_pvpwarrior_c_02_drm.m2", + value = "helm_plate_pvpwarrior_c_02_drm.m2", }, { - fileId = "304492", - text = "lshoulder_leather_pvprogue_b_03.m2", - value = "lshoulder_leather_pvprogue_b_03.m2", + fileId = "431637", + text = "helm_plate_pvpwarrior_c_02_dwf.m2", + value = "helm_plate_pvpwarrior_c_02_dwf.m2", }, { - fileId = "346077", - text = "lshoulder_leather_pvprogue_b_04.m2", - value = "lshoulder_leather_pvprogue_b_04.m2", + fileId = "431639", + text = "helm_plate_pvpwarrior_c_02_dwm.m2", + value = "helm_plate_pvpwarrior_c_02_dwm.m2", }, { - fileId = "143167", - text = "lshoulder_leather_raiddruid_a_01.m2", - value = "lshoulder_leather_raiddruid_a_01.m2", + fileId = "431642", + text = "helm_plate_pvpwarrior_c_02_gnf.m2", + value = "helm_plate_pvpwarrior_c_02_gnf.m2", }, { - fileId = "143168", - text = "lshoulder_leather_raiddruid_b_01.m2", - value = "lshoulder_leather_raiddruid_b_01.m2", + fileId = "431645", + text = "helm_plate_pvpwarrior_c_02_gnm.m2", + value = "helm_plate_pvpwarrior_c_02_gnm.m2", }, { - fileId = "143169", - text = "lshoulder_leather_raiddruid_c_01.m2", - value = "lshoulder_leather_raiddruid_c_01.m2", + fileId = "431647", + text = "helm_plate_pvpwarrior_c_02_gof.m2", + value = "helm_plate_pvpwarrior_c_02_gof.m2", }, { - fileId = "238420", - text = "lshoulder_leather_raiddruid_c_02.m2", - value = "lshoulder_leather_raiddruid_c_02.m2", + fileId = "431650", + text = "helm_plate_pvpwarrior_c_02_gom.m2", + value = "helm_plate_pvpwarrior_c_02_gom.m2", }, { - fileId = "143170", - text = "lshoulder_leather_raiddruid_d_01.m2", - value = "lshoulder_leather_raiddruid_d_01.m2", + fileId = "431652", + text = "helm_plate_pvpwarrior_c_02_huf.m2", + value = "helm_plate_pvpwarrior_c_02_huf.m2", }, { - fileId = "143171", - text = "lshoulder_leather_raiddruid_e_01.m2", - value = "lshoulder_leather_raiddruid_e_01.m2", + fileId = "431654", + text = "helm_plate_pvpwarrior_c_02_hum.m2", + value = "helm_plate_pvpwarrior_c_02_hum.m2", }, { - fileId = "143172", - text = "lshoulder_leather_raiddruid_f_01.m2", - value = "lshoulder_leather_raiddruid_f_01.m2", + fileId = "431656", + text = "helm_plate_pvpwarrior_c_02_nif.m2", + value = "helm_plate_pvpwarrior_c_02_nif.m2", }, { - fileId = "249248", - text = "lshoulder_leather_raiddruid_g_01.m2", - value = "lshoulder_leather_raiddruid_g_01.m2", + fileId = "431659", + text = "helm_plate_pvpwarrior_c_02_nim.m2", + value = "helm_plate_pvpwarrior_c_02_nim.m2", }, { - fileId = "336852", - text = "lshoulder_leather_raiddruid_h_01.m2", - value = "lshoulder_leather_raiddruid_h_01.m2", + fileId = "431661", + text = "helm_plate_pvpwarrior_c_02_orf.m2", + value = "helm_plate_pvpwarrior_c_02_orf.m2", }, { - fileId = "143173", - text = "lshoulder_leather_raidrogue_a_01.m2", - value = "lshoulder_leather_raidrogue_a_01.m2", + fileId = "431664", + text = "helm_plate_pvpwarrior_c_02_orm.m2", + value = "helm_plate_pvpwarrior_c_02_orm.m2", }, { - fileId = "143174", - text = "lshoulder_leather_raidrogue_b_01.m2", - value = "lshoulder_leather_raidrogue_b_01.m2", + fileId = "431666", + text = "helm_plate_pvpwarrior_c_02_scf.m2", + value = "helm_plate_pvpwarrior_c_02_scf.m2", }, { - fileId = "143175", - text = "lshoulder_leather_raidrogue_c_01.m2", - value = "lshoulder_leather_raidrogue_c_01.m2", + fileId = "431669", + text = "helm_plate_pvpwarrior_c_02_scm.m2", + value = "helm_plate_pvpwarrior_c_02_scm.m2", }, { - fileId = "238421", - text = "lshoulder_leather_raidrogue_c_02.m2", - value = "lshoulder_leather_raidrogue_c_02.m2", + fileId = "431672", + text = "helm_plate_pvpwarrior_c_02_taf.m2", + value = "helm_plate_pvpwarrior_c_02_taf.m2", }, { - fileId = "143176", - text = "lshoulder_leather_raidrogue_d_01.m2", - value = "lshoulder_leather_raidrogue_d_01.m2", + fileId = "431674", + text = "helm_plate_pvpwarrior_c_02_tam.m2", + value = "helm_plate_pvpwarrior_c_02_tam.m2", }, { - fileId = "143177", - text = "lshoulder_leather_raidrogue_e_01.m2", - value = "lshoulder_leather_raidrogue_e_01.m2", + fileId = "518502", + text = "helm_plate_pvpwarrior_c_02_trf.m2", + value = "helm_plate_pvpwarrior_c_02_trf.m2", }, { - fileId = "143178", - text = "lshoulder_leather_raidrogue_f_01.m2", - value = "lshoulder_leather_raidrogue_f_01.m2", + fileId = "431677", + text = "helm_plate_pvpwarrior_c_02_trm.m2", + value = "helm_plate_pvpwarrior_c_02_trm.m2", }, { - fileId = "143179", - text = "lshoulder_leather_raidrogue_g_01.m2", - value = "lshoulder_leather_raidrogue_g_01.m2", + fileId = "519386", + text = "helm_plate_pvpwarrior_c_02_wof.m2", + value = "helm_plate_pvpwarrior_c_02_wof.m2", }, { - fileId = "336853", - text = "lshoulder_leather_raidrogue_h_01.m2", - value = "lshoulder_leather_raidrogue_h_01.m2", + fileId = "431679", + text = "helm_plate_pvpwarrior_c_02_wom.m2", + value = "helm_plate_pvpwarrior_c_02_wom.m2", }, { - fileId = "143180", - text = "lshoulder_leather_sunwell_d_01.m2", - value = "lshoulder_leather_sunwell_d_01.m2", + fileId = "529887", + text = "helm_plate_pvpwarrior_d_01_bef.m2", + value = "helm_plate_pvpwarrior_d_01_bef.m2", }, { - fileId = "143181", - text = "lshoulder_leather_zulaman_d_01.m2", - value = "lshoulder_leather_zulaman_d_01.m2", + fileId = "529889", + text = "helm_plate_pvpwarrior_d_01_bem.m2", + value = "helm_plate_pvpwarrior_d_01_bem.m2", }, { - fileId = "143182", - text = "lshoulder_leather_zulaman_d_03.m2", - value = "lshoulder_leather_zulaman_d_03.m2", + fileId = "529891", + text = "helm_plate_pvpwarrior_d_01_drf.m2", + value = "helm_plate_pvpwarrior_d_01_drf.m2", }, { - fileId = "143183", - text = "lshoulder_mail_a_01.m2", - value = "lshoulder_mail_a_01.m2", + fileId = "529893", + text = "helm_plate_pvpwarrior_d_01_drm.m2", + value = "helm_plate_pvpwarrior_d_01_drm.m2", }, { - fileId = "143184", - text = "lshoulder_mail_a_02.m2", - value = "lshoulder_mail_a_02.m2", + fileId = "529895", + text = "helm_plate_pvpwarrior_d_01_dwf.m2", + value = "helm_plate_pvpwarrior_d_01_dwf.m2", }, { - fileId = "143185", - text = "lshoulder_mail_a_03.m2", - value = "lshoulder_mail_a_03.m2", + fileId = "529897", + text = "helm_plate_pvpwarrior_d_01_dwm.m2", + value = "helm_plate_pvpwarrior_d_01_dwm.m2", }, { - fileId = "143186", - text = "lshoulder_mail_ahnqiraj_a_01.m2", - value = "lshoulder_mail_ahnqiraj_a_01.m2", + fileId = "529899", + text = "helm_plate_pvpwarrior_d_01_gnf.m2", + value = "helm_plate_pvpwarrior_d_01_gnf.m2", }, { - fileId = "317487", - text = "lshoulder_mail_argentalliance_d_01.m2", - value = "lshoulder_mail_argentalliance_d_01.m2", + fileId = "529901", + text = "helm_plate_pvpwarrior_d_01_gnm.m2", + value = "helm_plate_pvpwarrior_d_01_gnm.m2", }, { - fileId = "315305", - text = "lshoulder_mail_argenthorde_d_01.m2", - value = "lshoulder_mail_argenthorde_d_01.m2", + fileId = "529903", + text = "helm_plate_pvpwarrior_d_01_gof.m2", + value = "helm_plate_pvpwarrior_d_01_gof.m2", }, { - fileId = "143187", - text = "lshoulder_mail_b_01.m2", - value = "lshoulder_mail_b_01.m2", + fileId = "529905", + text = "helm_plate_pvpwarrior_d_01_gom.m2", + value = "helm_plate_pvpwarrior_d_01_gom.m2", }, { - fileId = "143188", - text = "lshoulder_mail_b_02.m2", - value = "lshoulder_mail_b_02.m2", + fileId = "529907", + text = "helm_plate_pvpwarrior_d_01_huf.m2", + value = "helm_plate_pvpwarrior_d_01_huf.m2", }, { - fileId = "143189", - text = "lshoulder_mail_b_03.m2", - value = "lshoulder_mail_b_03.m2", + fileId = "529909", + text = "helm_plate_pvpwarrior_d_01_hum.m2", + value = "helm_plate_pvpwarrior_d_01_hum.m2", }, { - fileId = "143190", - text = "lshoulder_mail_b_05.m2", - value = "lshoulder_mail_b_05.m2", + fileId = "529911", + text = "helm_plate_pvpwarrior_d_01_nif.m2", + value = "helm_plate_pvpwarrior_d_01_nif.m2", }, { - fileId = "143191", - text = "lshoulder_mail_blood_b_01.m2", - value = "lshoulder_mail_blood_b_01.m2", + fileId = "529913", + text = "helm_plate_pvpwarrior_d_01_nim.m2", + value = "helm_plate_pvpwarrior_d_01_nim.m2", }, { - fileId = "143192", - text = "lshoulder_mail_c_01.m2", - value = "lshoulder_mail_c_01.m2", + fileId = "529915", + text = "helm_plate_pvpwarrior_d_01_orf.m2", + value = "helm_plate_pvpwarrior_d_01_orf.m2", }, { - fileId = "143193", - text = "lshoulder_mail_c_02.m2", - value = "lshoulder_mail_c_02.m2", + fileId = "529917", + text = "helm_plate_pvpwarrior_d_01_orm.m2", + value = "helm_plate_pvpwarrior_d_01_orm.m2", }, { - fileId = "143194", - text = "lshoulder_mail_c_03.m2", - value = "lshoulder_mail_c_03.m2", + fileId = "529919", + text = "helm_plate_pvpwarrior_d_01_scf.m2", + value = "helm_plate_pvpwarrior_d_01_scf.m2", }, { - fileId = "143195", - text = "lshoulder_mail_c_04.m2", - value = "lshoulder_mail_c_04.m2", + fileId = "529921", + text = "helm_plate_pvpwarrior_d_01_scm.m2", + value = "helm_plate_pvpwarrior_d_01_scm.m2", }, { - fileId = "143196", - text = "lshoulder_mail_d_01.m2", - value = "lshoulder_mail_d_01.m2", + fileId = "529923", + text = "helm_plate_pvpwarrior_d_01_taf.m2", + value = "helm_plate_pvpwarrior_d_01_taf.m2", }, { - fileId = "143197", - text = "lshoulder_mail_d_02.m2", - value = "lshoulder_mail_d_02.m2", + fileId = "529925", + text = "helm_plate_pvpwarrior_d_01_tam.m2", + value = "helm_plate_pvpwarrior_d_01_tam.m2", }, { - fileId = "143198", - text = "lshoulder_mail_draenei_b_01.m2", - value = "lshoulder_mail_draenei_b_01.m2", + fileId = "529927", + text = "helm_plate_pvpwarrior_d_01_trf.m2", + value = "helm_plate_pvpwarrior_d_01_trf.m2", }, { - fileId = "143199", - text = "lshoulder_mail_draenei_b_02.m2", - value = "lshoulder_mail_draenei_b_02.m2", + fileId = "529929", + text = "helm_plate_pvpwarrior_d_01_trm.m2", + value = "helm_plate_pvpwarrior_d_01_trm.m2", }, { - fileId = "143200", - text = "lshoulder_mail_dungeonhunter_a_01.m2", - value = "lshoulder_mail_dungeonhunter_a_01.m2", + fileId = "529931", + text = "helm_plate_pvpwarrior_d_01_wof.m2", + value = "helm_plate_pvpwarrior_d_01_wof.m2", }, { - fileId = "143201", - text = "lshoulder_mail_dungeonhunter_b_02.m2", - value = "lshoulder_mail_dungeonhunter_b_02.m2", + fileId = "529933", + text = "helm_plate_pvpwarrior_d_01_wom.m2", + value = "helm_plate_pvpwarrior_d_01_wom.m2", }, { - fileId = "238422", - text = "lshoulder_mail_dungeonmail_c_01.m2", - value = "lshoulder_mail_dungeonmail_c_01.m2", + fileId = "325880", + text = "helm_plate_raiddeathknight_b_01_bef.m2", + value = "helm_plate_raiddeathknight_b_01_bef.m2", }, { - fileId = "342403", - text = "lshoulder_mail_dungeonmail_c_02.m2", - value = "lshoulder_mail_dungeonmail_c_02.m2", + fileId = "325881", + text = "helm_plate_raiddeathknight_b_01_bem.m2", + value = "helm_plate_raiddeathknight_b_01_bem.m2", }, { - fileId = "143202", - text = "lshoulder_mail_dungeonshaman_a_01.m2", - value = "lshoulder_mail_dungeonshaman_a_01.m2", + fileId = "325882", + text = "helm_plate_raiddeathknight_b_01_drf.m2", + value = "helm_plate_raiddeathknight_b_01_drf.m2", }, { - fileId = "143203", - text = "lshoulder_mail_dungeonshaman_b_01.m2", - value = "lshoulder_mail_dungeonshaman_b_01.m2", + fileId = "325883", + text = "helm_plate_raiddeathknight_b_01_drm.m2", + value = "helm_plate_raiddeathknight_b_01_drm.m2", }, { - fileId = "143204", - text = "lshoulder_mail_northrend_b_01.m2", - value = "lshoulder_mail_northrend_b_01.m2", + fileId = "325884", + text = "helm_plate_raiddeathknight_b_01_dwf.m2", + value = "helm_plate_raiddeathknight_b_01_dwf.m2", }, { - fileId = "143205", - text = "lshoulder_mail_northrend_b_02.m2", - value = "lshoulder_mail_northrend_b_02.m2", + fileId = "325885", + text = "helm_plate_raiddeathknight_b_01_dwm.m2", + value = "helm_plate_raiddeathknight_b_01_dwm.m2", }, { - fileId = "143206", - text = "lshoulder_mail_northrend_b_03.m2", - value = "lshoulder_mail_northrend_b_03.m2", + fileId = "325886", + text = "helm_plate_raiddeathknight_b_01_gnf.m2", + value = "helm_plate_raiddeathknight_b_01_gnf.m2", }, { - fileId = "143207", - text = "lshoulder_mail_northrend_b_04.m2", - value = "lshoulder_mail_northrend_b_04.m2", + fileId = "325887", + text = "helm_plate_raiddeathknight_b_01_gnm.m2", + value = "helm_plate_raiddeathknight_b_01_gnm.m2", }, { - fileId = "143208", - text = "lshoulder_mail_northrend_d_01.m2", - value = "lshoulder_mail_northrend_d_01.m2", + fileId = "325996", + text = "helm_plate_raiddeathknight_b_01_gof.m2", + value = "helm_plate_raiddeathknight_b_01_gof.m2", }, { - fileId = "143209", - text = "lshoulder_mail_pvpalliance_a_01.m2", - value = "lshoulder_mail_pvpalliance_a_01.m2", + fileId = "325997", + text = "helm_plate_raiddeathknight_b_01_gom.m2", + value = "helm_plate_raiddeathknight_b_01_gom.m2", }, { - fileId = "143210", - text = "lshoulder_mail_pvpalliance_c_01.m2", - value = "lshoulder_mail_pvpalliance_c_01.m2", + fileId = "325888", + text = "helm_plate_raiddeathknight_b_01_huf.m2", + value = "helm_plate_raiddeathknight_b_01_huf.m2", }, { - fileId = "143211", - text = "lshoulder_mail_pvphorde_a_01.m2", - value = "lshoulder_mail_pvphorde_a_01.m2", + fileId = "325889", + text = "helm_plate_raiddeathknight_b_01_hum.m2", + value = "helm_plate_raiddeathknight_b_01_hum.m2", }, { - fileId = "143212", - text = "lshoulder_mail_pvphorde_c_01.m2", - value = "lshoulder_mail_pvphorde_c_01.m2", + fileId = "325890", + text = "helm_plate_raiddeathknight_b_01_nif.m2", + value = "helm_plate_raiddeathknight_b_01_nif.m2", }, { - fileId = "238423", - text = "lshoulder_mail_pvphunter_b_01.m2", - value = "lshoulder_mail_pvphunter_b_01.m2", + fileId = "325891", + text = "helm_plate_raiddeathknight_b_01_nim.m2", + value = "helm_plate_raiddeathknight_b_01_nim.m2", }, { - fileId = "254165", - text = "lshoulder_mail_pvphunter_b_02.m2", - value = "lshoulder_mail_pvphunter_b_02.m2", + fileId = "325892", + text = "helm_plate_raiddeathknight_b_01_orf.m2", + value = "helm_plate_raiddeathknight_b_01_orf.m2", }, { - fileId = "307200", - text = "lshoulder_mail_pvphunter_b_03.m2", - value = "lshoulder_mail_pvphunter_b_03.m2", + fileId = "325893", + text = "helm_plate_raiddeathknight_b_01_orm.m2", + value = "helm_plate_raiddeathknight_b_01_orm.m2", }, { - fileId = "344347", - text = "lshoulder_mail_pvphunter_b_04.m2", - value = "lshoulder_mail_pvphunter_b_04.m2", + fileId = "325894", + text = "helm_plate_raiddeathknight_b_01_scf.m2", + value = "helm_plate_raiddeathknight_b_01_scf.m2", }, { - fileId = "238424", - text = "lshoulder_mail_pvpshaman_b_01.m2", - value = "lshoulder_mail_pvpshaman_b_01.m2", + fileId = "325895", + text = "helm_plate_raiddeathknight_b_01_scm.m2", + value = "helm_plate_raiddeathknight_b_01_scm.m2", }, { - fileId = "298610", - text = "lshoulder_mail_pvpshaman_b_02.m2", - value = "lshoulder_mail_pvpshaman_b_02.m2", + fileId = "325896", + text = "helm_plate_raiddeathknight_b_01_taf.m2", + value = "helm_plate_raiddeathknight_b_01_taf.m2", }, { - fileId = "306733", - text = "lshoulder_mail_pvpshaman_b_03.m2", - value = "lshoulder_mail_pvpshaman_b_03.m2", + fileId = "325897", + text = "helm_plate_raiddeathknight_b_01_tam.m2", + value = "helm_plate_raiddeathknight_b_01_tam.m2", }, { - fileId = "349984", - text = "lshoulder_mail_pvpshaman_b_04.m2", - value = "lshoulder_mail_pvpshaman_b_04.m2", + fileId = "325898", + text = "helm_plate_raiddeathknight_b_01_trf.m2", + value = "helm_plate_raiddeathknight_b_01_trf.m2", }, { - fileId = "143213", - text = "lshoulder_mail_raidhunter_a_01.m2", - value = "lshoulder_mail_raidhunter_a_01.m2", + fileId = "325899", + text = "helm_plate_raiddeathknight_b_01_trm.m2", + value = "helm_plate_raiddeathknight_b_01_trm.m2", }, { - fileId = "143214", - text = "lshoulder_mail_raidhunter_b_01.m2", - value = "lshoulder_mail_raidhunter_b_01.m2", + fileId = "454270", + text = "helm_plate_raiddeathknight_b_01_wof.m2", + value = "helm_plate_raiddeathknight_b_01_wof.m2", }, { - fileId = "143215", - text = "lshoulder_mail_raidhunter_c_01.m2", - value = "lshoulder_mail_raidhunter_c_01.m2", + fileId = "436663", + text = "helm_plate_raiddeathknight_b_01_wom.m2", + value = "helm_plate_raiddeathknight_b_01_wom.m2", }, { - fileId = "238425", - text = "lshoulder_mail_raidhunter_c_02.m2", - value = "lshoulder_mail_raidhunter_c_02.m2", + fileId = "238169", + text = "helm_plate_raiddeathknight_c_02_bef.m2", + value = "helm_plate_raiddeathknight_c_02_bef.m2", }, { - fileId = "143216", - text = "lshoulder_mail_raidhunter_d_01.m2", - value = "lshoulder_mail_raidhunter_d_01.m2", + fileId = "238170", + text = "helm_plate_raiddeathknight_c_02_bem.m2", + value = "helm_plate_raiddeathknight_c_02_bem.m2", }, { - fileId = "143217", - text = "lshoulder_mail_raidhunter_e_01.m2", - value = "lshoulder_mail_raidhunter_e_01.m2", + fileId = "238171", + text = "helm_plate_raiddeathknight_c_02_drf.m2", + value = "helm_plate_raiddeathknight_c_02_drf.m2", }, { - fileId = "143218", - text = "lshoulder_mail_raidhunter_f_01.m2", - value = "lshoulder_mail_raidhunter_f_01.m2", + fileId = "238172", + text = "helm_plate_raiddeathknight_c_02_drm.m2", + value = "helm_plate_raiddeathknight_c_02_drm.m2", }, { - fileId = "143219", - text = "lshoulder_mail_raidhunter_g_01.m2", - value = "lshoulder_mail_raidhunter_g_01.m2", + fileId = "238173", + text = "helm_plate_raiddeathknight_c_02_dwf.m2", + value = "helm_plate_raiddeathknight_c_02_dwf.m2", }, { - fileId = "337191", - text = "lshoulder_mail_raidhunter_h_01.m2", - value = "lshoulder_mail_raidhunter_h_01.m2", + fileId = "238174", + text = "helm_plate_raiddeathknight_c_02_dwm.m2", + value = "helm_plate_raiddeathknight_c_02_dwm.m2", }, { - fileId = "143220", - text = "lshoulder_mail_raidshaman_a_01.m2", - value = "lshoulder_mail_raidshaman_a_01.m2", + fileId = "238175", + text = "helm_plate_raiddeathknight_c_02_gnf.m2", + value = "helm_plate_raiddeathknight_c_02_gnf.m2", }, { - fileId = "143221", - text = "lshoulder_mail_raidshaman_b_01.m2", - value = "lshoulder_mail_raidshaman_b_01.m2", + fileId = "238176", + text = "helm_plate_raiddeathknight_c_02_gnm.m2", + value = "helm_plate_raiddeathknight_c_02_gnm.m2", }, { - fileId = "238426", - text = "lshoulder_mail_raidshaman_c_02.m2", - value = "lshoulder_mail_raidshaman_c_02.m2", + fileId = "238177", + text = "helm_plate_raiddeathknight_c_02_gof.m2", + value = "helm_plate_raiddeathknight_c_02_gof.m2", }, { - fileId = "143222", - text = "lshoulder_mail_raidshaman_d_01.m2", - value = "lshoulder_mail_raidshaman_d_01.m2", + fileId = "238178", + text = "helm_plate_raiddeathknight_c_02_gom.m2", + value = "helm_plate_raiddeathknight_c_02_gom.m2", }, { - fileId = "143223", - text = "lshoulder_mail_raidshaman_e_01.m2", - value = "lshoulder_mail_raidshaman_e_01.m2", + fileId = "238179", + text = "helm_plate_raiddeathknight_c_02_huf.m2", + value = "helm_plate_raiddeathknight_c_02_huf.m2", }, { - fileId = "143224", - text = "lshoulder_mail_raidshaman_f_01.m2", - value = "lshoulder_mail_raidshaman_f_01.m2", + fileId = "238180", + text = "helm_plate_raiddeathknight_c_02_hum.m2", + value = "helm_plate_raiddeathknight_c_02_hum.m2", }, { - fileId = "249249", - text = "lshoulder_mail_raidshaman_g_01.m2", - value = "lshoulder_mail_raidshaman_g_01.m2", + fileId = "238181", + text = "helm_plate_raiddeathknight_c_02_nif.m2", + value = "helm_plate_raiddeathknight_c_02_nif.m2", }, { - fileId = "349163", - text = "lshoulder_mail_raidshaman_h_01.m2", - value = "lshoulder_mail_raidshaman_h_01.m2", + fileId = "238182", + text = "helm_plate_raiddeathknight_c_02_nim.m2", + value = "helm_plate_raiddeathknight_c_02_nim.m2", }, { - fileId = "353036", - text = "lshoulder_mail_raidshaman_h_02.m2", - value = "lshoulder_mail_raidshaman_h_02.m2", + fileId = "238183", + text = "helm_plate_raiddeathknight_c_02_orf.m2", + value = "helm_plate_raiddeathknight_c_02_orf.m2", }, { - fileId = "143225", - text = "lshoulder_mail_sunwell_d_01.m2", - value = "lshoulder_mail_sunwell_d_01.m2", + fileId = "238184", + text = "helm_plate_raiddeathknight_c_02_orm.m2", + value = "helm_plate_raiddeathknight_c_02_orm.m2", }, { - fileId = "143226", - text = "lshoulder_mail_zulaman_d_01.m2", - value = "lshoulder_mail_zulaman_d_01.m2", + fileId = "238185", + text = "helm_plate_raiddeathknight_c_02_scf.m2", + value = "helm_plate_raiddeathknight_c_02_scf.m2", }, { - fileId = "143227", - text = "lshoulder_mail_zulaman_d_03.m2", - value = "lshoulder_mail_zulaman_d_03.m2", + fileId = "238186", + text = "helm_plate_raiddeathknight_c_02_scm.m2", + value = "helm_plate_raiddeathknight_c_02_scm.m2", }, { - fileId = "143228", - text = "lshoulder_plate_a_01.m2", - value = "lshoulder_plate_a_01.m2", + fileId = "238187", + text = "helm_plate_raiddeathknight_c_02_taf.m2", + value = "helm_plate_raiddeathknight_c_02_taf.m2", }, { - fileId = "143229", - text = "lshoulder_plate_a_02.m2", - value = "lshoulder_plate_a_02.m2", + fileId = "238188", + text = "helm_plate_raiddeathknight_c_02_tam.m2", + value = "helm_plate_raiddeathknight_c_02_tam.m2", }, { - fileId = "143230", - text = "lshoulder_plate_a_02ironforgeguard.m2", - value = "lshoulder_plate_a_02ironforgeguard.m2", + fileId = "238189", + text = "helm_plate_raiddeathknight_c_02_trf.m2", + value = "helm_plate_raiddeathknight_c_02_trf.m2", }, { - fileId = "143231", - text = "lshoulder_plate_a_03.m2", - value = "lshoulder_plate_a_03.m2", + fileId = "238190", + text = "helm_plate_raiddeathknight_c_02_trm.m2", + value = "helm_plate_raiddeathknight_c_02_trm.m2", }, { - fileId = "143232", - text = "lshoulder_plate_a_04.m2", - value = "lshoulder_plate_a_04.m2", + fileId = "454271", + text = "helm_plate_raiddeathknight_c_02_wof.m2", + value = "helm_plate_raiddeathknight_c_02_wof.m2", }, { - fileId = "143233", - text = "lshoulder_plate_a_05.m2", - value = "lshoulder_plate_a_05.m2", + fileId = "431681", + text = "helm_plate_raiddeathknight_c_02_wom.m2", + value = "helm_plate_raiddeathknight_c_02_wom.m2", }, { - fileId = "143234", - text = "lshoulder_plate_ahnqiraj_a_01.m2", - value = "lshoulder_plate_ahnqiraj_a_01.m2", + fileId = "140867", + text = "helm_plate_raiddeathknight_g_01_bef.m2", + value = "helm_plate_raiddeathknight_g_01_bef.m2", }, { - fileId = "311765", - text = "lshoulder_plate_argentalliance_d_01.m2", - value = "lshoulder_plate_argentalliance_d_01.m2", + fileId = "140868", + text = "helm_plate_raiddeathknight_g_01_bem.m2", + value = "helm_plate_raiddeathknight_g_01_bem.m2", }, { - fileId = "315691", - text = "lshoulder_plate_argenthorde_d_01.m2", - value = "lshoulder_plate_argenthorde_d_01.m2", + fileId = "140869", + text = "helm_plate_raiddeathknight_g_01_drf.m2", + value = "helm_plate_raiddeathknight_g_01_drf.m2", }, { - fileId = "143235", - text = "lshoulder_plate_b_01.m2", - value = "lshoulder_plate_b_01.m2", + fileId = "140870", + text = "helm_plate_raiddeathknight_g_01_drm.m2", + value = "helm_plate_raiddeathknight_g_01_drm.m2", }, { - fileId = "143236", - text = "lshoulder_plate_b_02.m2", - value = "lshoulder_plate_b_02.m2", + fileId = "140871", + text = "helm_plate_raiddeathknight_g_01_dwf.m2", + value = "helm_plate_raiddeathknight_g_01_dwf.m2", }, { - fileId = "143237", - text = "lshoulder_plate_b_03.m2", - value = "lshoulder_plate_b_03.m2", + fileId = "140872", + text = "helm_plate_raiddeathknight_g_01_dwm.m2", + value = "helm_plate_raiddeathknight_g_01_dwm.m2", }, { - fileId = "143238", - text = "lshoulder_plate_b_04.m2", - value = "lshoulder_plate_b_04.m2", + fileId = "140873", + text = "helm_plate_raiddeathknight_g_01_gnf.m2", + value = "helm_plate_raiddeathknight_g_01_gnf.m2", }, { - fileId = "143239", - text = "lshoulder_plate_b_05.m2", - value = "lshoulder_plate_b_05.m2", + fileId = "140874", + text = "helm_plate_raiddeathknight_g_01_gnm.m2", + value = "helm_plate_raiddeathknight_g_01_gnm.m2", }, { - fileId = "143240", - text = "lshoulder_plate_bloodknight_d_02.m2", - value = "lshoulder_plate_bloodknight_d_02.m2", + fileId = "140875", + text = "helm_plate_raiddeathknight_g_01_gof.m2", + value = "helm_plate_raiddeathknight_g_01_gof.m2", }, { - fileId = "143241", - text = "lshoulder_plate_c_01.m2", - value = "lshoulder_plate_c_01.m2", + fileId = "140876", + text = "helm_plate_raiddeathknight_g_01_gom.m2", + value = "helm_plate_raiddeathknight_g_01_gom.m2", }, { - fileId = "143242", - text = "lshoulder_plate_c_03.m2", - value = "lshoulder_plate_c_03.m2", + fileId = "140877", + text = "helm_plate_raiddeathknight_g_01_huf.m2", + value = "helm_plate_raiddeathknight_g_01_huf.m2", }, { - fileId = "143243", - text = "lshoulder_plate_c_04.m2", - value = "lshoulder_plate_c_04.m2", + fileId = "140878", + text = "helm_plate_raiddeathknight_g_01_hum.m2", + value = "helm_plate_raiddeathknight_g_01_hum.m2", }, { - fileId = "143244", - text = "lshoulder_plate_c_05.m2", - value = "lshoulder_plate_c_05.m2", + fileId = "140879", + text = "helm_plate_raiddeathknight_g_01_nif.m2", + value = "helm_plate_raiddeathknight_g_01_nif.m2", }, { - fileId = "143245", - text = "lshoulder_plate_d_01.m2", - value = "lshoulder_plate_d_01.m2", + fileId = "140880", + text = "helm_plate_raiddeathknight_g_01_nim.m2", + value = "helm_plate_raiddeathknight_g_01_nim.m2", }, { - fileId = "143246", - text = "lshoulder_plate_d_02.m2", - value = "lshoulder_plate_d_02.m2", + fileId = "140881", + text = "helm_plate_raiddeathknight_g_01_orf.m2", + value = "helm_plate_raiddeathknight_g_01_orf.m2", }, { - fileId = "143247", - text = "lshoulder_plate_d_03.m2", - value = "lshoulder_plate_d_03.m2", - }, - { - fileId = "143248", - text = "lshoulder_plate_d_04.m2", - value = "lshoulder_plate_d_04.m2", + fileId = "140882", + text = "helm_plate_raiddeathknight_g_01_orm.m2", + value = "helm_plate_raiddeathknight_g_01_orm.m2", }, { - fileId = "143249", - text = "lshoulder_plate_d_05.m2", - value = "lshoulder_plate_d_05.m2", + fileId = "140884", + text = "helm_plate_raiddeathknight_g_01_scf.m2", + value = "helm_plate_raiddeathknight_g_01_scf.m2", }, { - fileId = "143250", - text = "lshoulder_plate_d_06.m2", - value = "lshoulder_plate_d_06.m2", + fileId = "140885", + text = "helm_plate_raiddeathknight_g_01_scm.m2", + value = "helm_plate_raiddeathknight_g_01_scm.m2", }, { - fileId = "238427", - text = "lshoulder_plate_deathknight_b_01.m2", - value = "lshoulder_plate_deathknight_b_01.m2", + fileId = "140886", + text = "helm_plate_raiddeathknight_g_01_taf.m2", + value = "helm_plate_raiddeathknight_g_01_taf.m2", }, { - fileId = "143251", - text = "lshoulder_plate_draeneiguard_a_01.m2", - value = "lshoulder_plate_draeneiguard_a_01.m2", + fileId = "140887", + text = "helm_plate_raiddeathknight_g_01_tam.m2", + value = "helm_plate_raiddeathknight_g_01_tam.m2", }, { - fileId = "143252", - text = "lshoulder_plate_draeneiguard_b_01.m2", - value = "lshoulder_plate_draeneiguard_b_01.m2", + fileId = "140888", + text = "helm_plate_raiddeathknight_g_01_trf.m2", + value = "helm_plate_raiddeathknight_g_01_trf.m2", }, { - fileId = "143253", - text = "lshoulder_plate_dungeonpaladin_a_01.m2", - value = "lshoulder_plate_dungeonpaladin_a_01.m2", + fileId = "140889", + text = "helm_plate_raiddeathknight_g_01_trm.m2", + value = "helm_plate_raiddeathknight_g_01_trm.m2", }, { - fileId = "143254", - text = "lshoulder_plate_dungeonpaladin_b_01.m2", - value = "lshoulder_plate_dungeonpaladin_b_01.m2", + fileId = "454272", + text = "helm_plate_raiddeathknight_g_01_wof.m2", + value = "helm_plate_raiddeathknight_g_01_wof.m2", }, { - fileId = "143255", - text = "lshoulder_plate_dungeonplate_c_01.m2", - value = "lshoulder_plate_dungeonplate_c_01.m2", + fileId = "430068", + text = "helm_plate_raiddeathknight_g_01_wom.m2", + value = "helm_plate_raiddeathknight_g_01_wom.m2", }, { - fileId = "343647", - text = "lshoulder_plate_dungeonplate_c_02.m2", - value = "lshoulder_plate_dungeonplate_c_02.m2", + fileId = "337982", + text = "helm_plate_raiddeathknight_h_01_bef.m2", + value = "helm_plate_raiddeathknight_h_01_bef.m2", }, { - fileId = "143256", - text = "lshoulder_plate_dungeonwarrior_a_01.m2", - value = "lshoulder_plate_dungeonwarrior_a_01.m2", + fileId = "337983", + text = "helm_plate_raiddeathknight_h_01_bem.m2", + value = "helm_plate_raiddeathknight_h_01_bem.m2", }, { - fileId = "143257", - text = "lshoulder_plate_dungeonwarrior_b_01.m2", - value = "lshoulder_plate_dungeonwarrior_b_01.m2", + fileId = "337984", + text = "helm_plate_raiddeathknight_h_01_drf.m2", + value = "helm_plate_raiddeathknight_h_01_drf.m2", }, { - fileId = "143258", - text = "lshoulder_plate_haremmatron_d_01.m2", - value = "lshoulder_plate_haremmatron_d_01.m2", + fileId = "337985", + text = "helm_plate_raiddeathknight_h_01_drm.m2", + value = "helm_plate_raiddeathknight_h_01_drm.m2", }, { - fileId = "143259", - text = "lshoulder_plate_horde_c_05.m2", - value = "lshoulder_plate_horde_c_05.m2", + fileId = "337986", + text = "helm_plate_raiddeathknight_h_01_dwf.m2", + value = "helm_plate_raiddeathknight_h_01_dwf.m2", }, { - fileId = "143260", - text = "lshoulder_plate_horde_d_02.m2", - value = "lshoulder_plate_horde_d_02.m2", + fileId = "337987", + text = "helm_plate_raiddeathknight_h_01_dwm.m2", + value = "helm_plate_raiddeathknight_h_01_dwm.m2", }, { - fileId = "143262", - text = "lshoulder_plate_hyjal_d_04.m2", - value = "lshoulder_plate_hyjal_d_04.m2", + fileId = "337988", + text = "helm_plate_raiddeathknight_h_01_gnf.m2", + value = "helm_plate_raiddeathknight_h_01_gnf.m2", }, { - fileId = "143265", - text = "lshoulder_plate_hyjal_d_05.m2", - value = "lshoulder_plate_hyjal_d_05.m2", + fileId = "337989", + text = "helm_plate_raiddeathknight_h_01_gnm.m2", + value = "helm_plate_raiddeathknight_h_01_gnm.m2", }, { - fileId = "143266", - text = "lshoulder_plate_northrend_b_01.m2", - value = "lshoulder_plate_northrend_b_01.m2", + fileId = "337990", + text = "helm_plate_raiddeathknight_h_01_gof.m2", + value = "helm_plate_raiddeathknight_h_01_gof.m2", }, { - fileId = "143267", - text = "lshoulder_plate_northrend_b_02.m2", - value = "lshoulder_plate_northrend_b_02.m2", + fileId = "337991", + text = "helm_plate_raiddeathknight_h_01_gom.m2", + value = "helm_plate_raiddeathknight_h_01_gom.m2", }, { - fileId = "143268", - text = "lshoulder_plate_northrend_b_03.m2", - value = "lshoulder_plate_northrend_b_03.m2", + fileId = "337992", + text = "helm_plate_raiddeathknight_h_01_huf.m2", + value = "helm_plate_raiddeathknight_h_01_huf.m2", }, { - fileId = "143269", - text = "lshoulder_plate_northrend_c_01.m2", - value = "lshoulder_plate_northrend_c_01.m2", + fileId = "337993", + text = "helm_plate_raiddeathknight_h_01_hum.m2", + value = "helm_plate_raiddeathknight_h_01_hum.m2", }, { - fileId = "143270", - text = "lshoulder_plate_northrend_d_01.m2", - value = "lshoulder_plate_northrend_d_01.m2", + fileId = "337994", + text = "helm_plate_raiddeathknight_h_01_nif.m2", + value = "helm_plate_raiddeathknight_h_01_nif.m2", }, { - fileId = "143271", - text = "lshoulder_plate_pvpalliance_a_01.m2", - value = "lshoulder_plate_pvpalliance_a_01.m2", + fileId = "337995", + text = "helm_plate_raiddeathknight_h_01_nim.m2", + value = "helm_plate_raiddeathknight_h_01_nim.m2", }, { - fileId = "238428", - text = "lshoulder_plate_pvpdeathknight_b_01.m2", - value = "lshoulder_plate_pvpdeathknight_b_01.m2", + fileId = "337996", + text = "helm_plate_raiddeathknight_h_01_orf.m2", + value = "helm_plate_raiddeathknight_h_01_orf.m2", }, { - fileId = "254904", - text = "lshoulder_plate_pvpdeathknight_b_02.m2", - value = "lshoulder_plate_pvpdeathknight_b_02.m2", + fileId = "337997", + text = "helm_plate_raiddeathknight_h_01_orm.m2", + value = "helm_plate_raiddeathknight_h_01_orm.m2", }, { - fileId = "304741", - text = "lshoulder_plate_pvpdeathknight_b_03.m2", - value = "lshoulder_plate_pvpdeathknight_b_03.m2", + fileId = "337998", + text = "helm_plate_raiddeathknight_h_01_scf.m2", + value = "helm_plate_raiddeathknight_h_01_scf.m2", }, { - fileId = "343845", - text = "lshoulder_plate_pvpdeathknight_b_04.m2", - value = "lshoulder_plate_pvpdeathknight_b_04.m2", + fileId = "337999", + text = "helm_plate_raiddeathknight_h_01_scm.m2", + value = "helm_plate_raiddeathknight_h_01_scm.m2", }, { - fileId = "143272", - text = "lshoulder_plate_pvphorde_a_01.m2", - value = "lshoulder_plate_pvphorde_a_01.m2", + fileId = "338000", + text = "helm_plate_raiddeathknight_h_01_taf.m2", + value = "helm_plate_raiddeathknight_h_01_taf.m2", }, { - fileId = "238429", - text = "lshoulder_plate_pvppaladin_b_01.m2", - value = "lshoulder_plate_pvppaladin_b_01.m2", + fileId = "338001", + text = "helm_plate_raiddeathknight_h_01_tam.m2", + value = "helm_plate_raiddeathknight_h_01_tam.m2", }, { - fileId = "254759", - text = "lshoulder_plate_pvppaladin_b_02.m2", - value = "lshoulder_plate_pvppaladin_b_02.m2", + fileId = "351197", + text = "helm_plate_raiddeathknight_h_01_trf.m2", + value = "helm_plate_raiddeathknight_h_01_trf.m2", }, { - fileId = "304824", - text = "lshoulder_plate_pvppaladin_b_03.m2", - value = "lshoulder_plate_pvppaladin_b_03.m2", + fileId = "338002", + text = "helm_plate_raiddeathknight_h_01_trm.m2", + value = "helm_plate_raiddeathknight_h_01_trm.m2", }, { - fileId = "346078", - text = "lshoulder_plate_pvppaladin_b_04.m2", - value = "lshoulder_plate_pvppaladin_b_04.m2", + fileId = "454273", + text = "helm_plate_raiddeathknight_h_01_wof.m2", + value = "helm_plate_raiddeathknight_h_01_wof.m2", }, { - fileId = "238430", - text = "lshoulder_plate_pvpwarrior_b_01.m2", - value = "lshoulder_plate_pvpwarrior_b_01.m2", + fileId = "430069", + text = "helm_plate_raiddeathknight_h_01_wom.m2", + value = "helm_plate_raiddeathknight_h_01_wom.m2", }, { - fileId = "254358", - text = "lshoulder_plate_pvpwarrior_b_02.m2", - value = "lshoulder_plate_pvpwarrior_b_02.m2", + fileId = "465198", + text = "helm_plate_raiddeathknight_i_01_bef.m2", + value = "helm_plate_raiddeathknight_i_01_bef.m2", }, { - fileId = "304450", - text = "lshoulder_plate_pvpwarrior_b_03.m2", - value = "lshoulder_plate_pvpwarrior_b_03.m2", + fileId = "465200", + text = "helm_plate_raiddeathknight_i_01_bem.m2", + value = "helm_plate_raiddeathknight_i_01_bem.m2", }, { - fileId = "345729", - text = "lshoulder_plate_pvpwarrior_b_04.m2", - value = "lshoulder_plate_pvpwarrior_b_04.m2", + fileId = "465201", + text = "helm_plate_raiddeathknight_i_01_drf.m2", + value = "helm_plate_raiddeathknight_i_01_drf.m2", }, { - fileId = "238431", - text = "lshoulder_plate_pvpwarrior_c_02.m2", - value = "lshoulder_plate_pvpwarrior_c_02.m2", + fileId = "465202", + text = "helm_plate_raiddeathknight_i_01_drm.m2", + value = "helm_plate_raiddeathknight_i_01_drm.m2", }, { - fileId = "238432", - text = "lshoulder_plate_raiddeathknight_c_02.m2", - value = "lshoulder_plate_raiddeathknight_c_02.m2", + fileId = "465203", + text = "helm_plate_raiddeathknight_i_01_dwf.m2", + value = "helm_plate_raiddeathknight_i_01_dwf.m2", }, { - fileId = "143273", - text = "lshoulder_plate_raiddeathknight_g_01.m2", - value = "lshoulder_plate_raiddeathknight_g_01.m2", + fileId = "465204", + text = "helm_plate_raiddeathknight_i_01_dwm.m2", + value = "helm_plate_raiddeathknight_i_01_dwm.m2", }, { - fileId = "337700", - text = "lshoulder_plate_raiddeathknight_h_01.m2", - value = "lshoulder_plate_raiddeathknight_h_01.m2", + fileId = "465205", + text = "helm_plate_raiddeathknight_i_01_gnf.m2", + value = "helm_plate_raiddeathknight_i_01_gnf.m2", }, { - fileId = "143274", - text = "lshoulder_plate_raidpaladin_a_01.m2", - value = "lshoulder_plate_raidpaladin_a_01.m2", + fileId = "465206", + text = "helm_plate_raiddeathknight_i_01_gnm.m2", + value = "helm_plate_raiddeathknight_i_01_gnm.m2", }, { - fileId = "143275", - text = "lshoulder_plate_raidpaladin_b_01.m2", - value = "lshoulder_plate_raidpaladin_b_01.m2", + fileId = "465207", + text = "helm_plate_raiddeathknight_i_01_gof.m2", + value = "helm_plate_raiddeathknight_i_01_gof.m2", }, { - fileId = "143276", - text = "lshoulder_plate_raidpaladin_c_01.m2", - value = "lshoulder_plate_raidpaladin_c_01.m2", + fileId = "465208", + text = "helm_plate_raiddeathknight_i_01_gom.m2", + value = "helm_plate_raiddeathknight_i_01_gom.m2", }, { - fileId = "143277", - text = "lshoulder_plate_raidpaladin_d_01.m2", - value = "lshoulder_plate_raidpaladin_d_01.m2", + fileId = "465209", + text = "helm_plate_raiddeathknight_i_01_huf.m2", + value = "helm_plate_raiddeathknight_i_01_huf.m2", }, { - fileId = "143278", - text = "lshoulder_plate_raidpaladin_e_01.m2", - value = "lshoulder_plate_raidpaladin_e_01.m2", + fileId = "465210", + text = "helm_plate_raiddeathknight_i_01_hum.m2", + value = "helm_plate_raiddeathknight_i_01_hum.m2", }, { - fileId = "143279", - text = "lshoulder_plate_raidpaladin_f_01.m2", - value = "lshoulder_plate_raidpaladin_f_01.m2", + fileId = "465211", + text = "helm_plate_raiddeathknight_i_01_nif.m2", + value = "helm_plate_raiddeathknight_i_01_nif.m2", }, { - fileId = "238433", - text = "lshoulder_plate_raidpaladin_g_01.m2", - value = "lshoulder_plate_raidpaladin_g_01.m2", + fileId = "465212", + text = "helm_plate_raiddeathknight_i_01_nim.m2", + value = "helm_plate_raiddeathknight_i_01_nim.m2", }, { - fileId = "341246", - text = "lshoulder_plate_raidpaladin_h_01.m2", - value = "lshoulder_plate_raidpaladin_h_01.m2", + fileId = "465213", + text = "helm_plate_raiddeathknight_i_01_orf.m2", + value = "helm_plate_raiddeathknight_i_01_orf.m2", }, { - fileId = "143284", - text = "lshoulder_plate_raidwarrior_a_01.m2", - value = "lshoulder_plate_raidwarrior_a_01.m2", + fileId = "465214", + text = "helm_plate_raiddeathknight_i_01_orm.m2", + value = "helm_plate_raiddeathknight_i_01_orm.m2", }, { - fileId = "143285", - text = "lshoulder_plate_raidwarrior_b_01.m2", - value = "lshoulder_plate_raidwarrior_b_01.m2", + fileId = "465215", + text = "helm_plate_raiddeathknight_i_01_scf.m2", + value = "helm_plate_raiddeathknight_i_01_scf.m2", }, { - fileId = "143286", - text = "lshoulder_plate_raidwarrior_c_01.m2", - value = "lshoulder_plate_raidwarrior_c_01.m2", + fileId = "465216", + text = "helm_plate_raiddeathknight_i_01_scm.m2", + value = "helm_plate_raiddeathknight_i_01_scm.m2", }, { - fileId = "143287", - text = "lshoulder_plate_raidwarrior_d_01.m2", - value = "lshoulder_plate_raidwarrior_d_01.m2", + fileId = "465217", + text = "helm_plate_raiddeathknight_i_01_taf.m2", + value = "helm_plate_raiddeathknight_i_01_taf.m2", }, { - fileId = "143288", - text = "lshoulder_plate_raidwarrior_e_01.m2", - value = "lshoulder_plate_raidwarrior_e_01.m2", + fileId = "465218", + text = "helm_plate_raiddeathknight_i_01_tam.m2", + value = "helm_plate_raiddeathknight_i_01_tam.m2", }, { - fileId = "143289", - text = "lshoulder_plate_raidwarrior_f_01.m2", - value = "lshoulder_plate_raidwarrior_f_01.m2", + fileId = "465219", + text = "helm_plate_raiddeathknight_i_01_trf.m2", + value = "helm_plate_raiddeathknight_i_01_trf.m2", }, { - fileId = "251562", - text = "lshoulder_plate_raidwarrior_g_01.m2", - value = "lshoulder_plate_raidwarrior_g_01.m2", + fileId = "465220", + text = "helm_plate_raiddeathknight_i_01_trm.m2", + value = "helm_plate_raiddeathknight_i_01_trm.m2", }, { - fileId = "331370", - text = "lshoulder_plate_raidwarrior_h_01.m2", - value = "lshoulder_plate_raidwarrior_h_01.m2", + fileId = "465221", + text = "helm_plate_raiddeathknight_i_01_wof.m2", + value = "helm_plate_raiddeathknight_i_01_wof.m2", }, { - fileId = "143290", - text = "lshoulder_plate_sunwell_c_01.m2", - value = "lshoulder_plate_sunwell_c_01.m2", + fileId = "465222", + text = "helm_plate_raiddeathknight_i_01_wom.m2", + value = "helm_plate_raiddeathknight_i_01_wom.m2", }, { - fileId = "143291", - text = "lshoulder_plate_sunwell_d_01.m2", - value = "lshoulder_plate_sunwell_d_01.m2", + fileId = "522869", + text = "helm_plate_raiddeathknight_j_01_bef.m2", + value = "helm_plate_raiddeathknight_j_01_bef.m2", }, { - fileId = "143292", - text = "lshoulder_plate_zulaman_d_01.m2", - value = "lshoulder_plate_zulaman_d_01.m2", + fileId = "522871", + text = "helm_plate_raiddeathknight_j_01_bem.m2", + value = "helm_plate_raiddeathknight_j_01_bem.m2", }, { - fileId = "143293", - text = "lshoulder_plate_zulaman_d_03.m2", - value = "lshoulder_plate_zulaman_d_03.m2", + fileId = "522873", + text = "helm_plate_raiddeathknight_j_01_drf.m2", + value = "helm_plate_raiddeathknight_j_01_drf.m2", }, { - fileId = "306510", - text = "lshoulder_pvppriest_b_03.m2", - value = "lshoulder_pvppriest_b_03.m2", + fileId = "522875", + text = "helm_plate_raiddeathknight_j_01_drm.m2", + value = "helm_plate_raiddeathknight_j_01_drm.m2", }, { - fileId = "143294", - text = "lshoulder_raiddruid_b_01.m2", - value = "lshoulder_raiddruid_b_01.m2", + fileId = "522877", + text = "helm_plate_raiddeathknight_j_01_dwf.m2", + value = "helm_plate_raiddeathknight_j_01_dwf.m2", }, { - fileId = "143295", - text = "lshoulder_robe_a_01.m2", - value = "lshoulder_robe_a_01.m2", + fileId = "522879", + text = "helm_plate_raiddeathknight_j_01_dwm.m2", + value = "helm_plate_raiddeathknight_j_01_dwm.m2", }, { - fileId = "143296", - text = "lshoulder_robe_a_02.m2", - value = "lshoulder_robe_a_02.m2", + fileId = "522881", + text = "helm_plate_raiddeathknight_j_01_gnf.m2", + value = "helm_plate_raiddeathknight_j_01_gnf.m2", }, { - fileId = "143297", - text = "lshoulder_robe_a_03.m2", - value = "lshoulder_robe_a_03.m2", + fileId = "522883", + text = "helm_plate_raiddeathknight_j_01_gnm.m2", + value = "helm_plate_raiddeathknight_j_01_gnm.m2", }, { - fileId = "143298", - text = "lshoulder_robe_ahnqiraj_a_01.m2", - value = "lshoulder_robe_ahnqiraj_a_01.m2", + fileId = "522885", + text = "helm_plate_raiddeathknight_j_01_gof.m2", + value = "helm_plate_raiddeathknight_j_01_gof.m2", }, { - fileId = "314971", - text = "lshoulder_robe_argentalliance_d_01.m2", - value = "lshoulder_robe_argentalliance_d_01.m2", + fileId = "522887", + text = "helm_plate_raiddeathknight_j_01_gom.m2", + value = "helm_plate_raiddeathknight_j_01_gom.m2", }, { - fileId = "317628", - text = "lshoulder_robe_argenthorde_d_01.m2", - value = "lshoulder_robe_argenthorde_d_01.m2", + fileId = "522889", + text = "helm_plate_raiddeathknight_j_01_huf.m2", + value = "helm_plate_raiddeathknight_j_01_huf.m2", }, { - fileId = "143299", - text = "lshoulder_robe_b_01.m2", - value = "lshoulder_robe_b_01.m2", + fileId = "522891", + text = "helm_plate_raiddeathknight_j_01_hum.m2", + value = "helm_plate_raiddeathknight_j_01_hum.m2", }, { - fileId = "143300", - text = "lshoulder_robe_b_02.m2", - value = "lshoulder_robe_b_02.m2", + fileId = "522893", + text = "helm_plate_raiddeathknight_j_01_nif.m2", + value = "helm_plate_raiddeathknight_j_01_nif.m2", }, { - fileId = "143301", - text = "lshoulder_robe_b_03.m2", - value = "lshoulder_robe_b_03.m2", + fileId = "522895", + text = "helm_plate_raiddeathknight_j_01_nim.m2", + value = "helm_plate_raiddeathknight_j_01_nim.m2", }, { - fileId = "143302", - text = "lshoulder_robe_b_04.m2", - value = "lshoulder_robe_b_04.m2", + fileId = "522897", + text = "helm_plate_raiddeathknight_j_01_orf.m2", + value = "helm_plate_raiddeathknight_j_01_orf.m2", }, { - fileId = "143303", - text = "lshoulder_robe_c_01.m2", - value = "lshoulder_robe_c_01.m2", + fileId = "522899", + text = "helm_plate_raiddeathknight_j_01_orm.m2", + value = "helm_plate_raiddeathknight_j_01_orm.m2", }, { - fileId = "143304", - text = "lshoulder_robe_c_02.m2", - value = "lshoulder_robe_c_02.m2", + fileId = "522901", + text = "helm_plate_raiddeathknight_j_01_scf.m2", + value = "helm_plate_raiddeathknight_j_01_scf.m2", }, { - fileId = "143305", - text = "lshoulder_robe_c_03.m2", - value = "lshoulder_robe_c_03.m2", + fileId = "522903", + text = "helm_plate_raiddeathknight_j_01_scm.m2", + value = "helm_plate_raiddeathknight_j_01_scm.m2", }, { - fileId = "143306", - text = "lshoulder_robe_d_01.m2", - value = "lshoulder_robe_d_01.m2", + fileId = "522905", + text = "helm_plate_raiddeathknight_j_01_taf.m2", + value = "helm_plate_raiddeathknight_j_01_taf.m2", }, { - fileId = "143307", - text = "lshoulder_robe_d_04.m2", - value = "lshoulder_robe_d_04.m2", + fileId = "522907", + text = "helm_plate_raiddeathknight_j_01_tam.m2", + value = "helm_plate_raiddeathknight_j_01_tam.m2", }, { - fileId = "143308", - text = "lshoulder_robe_dungeonmage_a_01.m2", - value = "lshoulder_robe_dungeonmage_a_01.m2", + fileId = "522909", + text = "helm_plate_raiddeathknight_j_01_trf.m2", + value = "helm_plate_raiddeathknight_j_01_trf.m2", }, { - fileId = "143309", - text = "lshoulder_robe_dungeonmage_b_01.m2", - value = "lshoulder_robe_dungeonmage_b_01.m2", + fileId = "522911", + text = "helm_plate_raiddeathknight_j_01_trm.m2", + value = "helm_plate_raiddeathknight_j_01_trm.m2", }, { - fileId = "143310", - text = "lshoulder_robe_dungeonpriest_a_01.m2", - value = "lshoulder_robe_dungeonpriest_a_01.m2", + fileId = "522913", + text = "helm_plate_raiddeathknight_j_01_wof.m2", + value = "helm_plate_raiddeathknight_j_01_wof.m2", }, { - fileId = "143311", - text = "lshoulder_robe_dungeonpriest_b_01.m2", - value = "lshoulder_robe_dungeonpriest_b_01.m2", + fileId = "522915", + text = "helm_plate_raiddeathknight_j_01_wom.m2", + value = "helm_plate_raiddeathknight_j_01_wom.m2", }, { - fileId = "238434", - text = "lshoulder_robe_dungeonrobe_c_01.m2", - value = "lshoulder_robe_dungeonrobe_c_01.m2", + fileId = "575830", + text = "helm_plate_raiddeathknight_k_01_bef.m2", + value = "helm_plate_raiddeathknight_k_01_bef.m2", }, { - fileId = "341481", - text = "lshoulder_robe_dungeonrobe_c_02.m2", - value = "lshoulder_robe_dungeonrobe_c_02.m2", + fileId = "575832", + text = "helm_plate_raiddeathknight_k_01_bem.m2", + value = "helm_plate_raiddeathknight_k_01_bem.m2", }, { - fileId = "143312", - text = "lshoulder_robe_dungeonwarlock_a_01.m2", - value = "lshoulder_robe_dungeonwarlock_a_01.m2", + fileId = "575834", + text = "helm_plate_raiddeathknight_k_01_drf.m2", + value = "helm_plate_raiddeathknight_k_01_drf.m2", }, { - fileId = "143313", - text = "lshoulder_robe_dungeonwarlock_b_01.m2", - value = "lshoulder_robe_dungeonwarlock_b_01.m2", + fileId = "575836", + text = "helm_plate_raiddeathknight_k_01_drm.m2", + value = "helm_plate_raiddeathknight_k_01_drm.m2", }, { - fileId = "143314", - text = "lshoulder_robe_holiday_summerfest_a_01.m2", - value = "lshoulder_robe_holiday_summerfest_a_01.m2", + fileId = "575838", + text = "helm_plate_raiddeathknight_k_01_dwf.m2", + value = "helm_plate_raiddeathknight_k_01_dwf.m2", }, { - fileId = "143315", - text = "lshoulder_robe_horde_a_03.m2", - value = "lshoulder_robe_horde_a_03.m2", + fileId = "575840", + text = "helm_plate_raiddeathknight_k_01_dwm.m2", + value = "helm_plate_raiddeathknight_k_01_dwm.m2", }, { - fileId = "143316", - text = "lshoulder_robe_horde_d_01.m2", - value = "lshoulder_robe_horde_d_01.m2", + fileId = "575842", + text = "helm_plate_raiddeathknight_k_01_gnf.m2", + value = "helm_plate_raiddeathknight_k_01_gnf.m2", }, { - fileId = "143317", - text = "lshoulder_robe_hyjal_d_04.m2", - value = "lshoulder_robe_hyjal_d_04.m2", + fileId = "575844", + text = "helm_plate_raiddeathknight_k_01_gnm.m2", + value = "helm_plate_raiddeathknight_k_01_gnm.m2", }, { - fileId = "143318", - text = "lshoulder_robe_northrend_b_01.m2", - value = "lshoulder_robe_northrend_b_01.m2", + fileId = "575846", + text = "helm_plate_raiddeathknight_k_01_gof.m2", + value = "helm_plate_raiddeathknight_k_01_gof.m2", }, { - fileId = "238435", - text = "lshoulder_robe_northrend_b_02.m2", - value = "lshoulder_robe_northrend_b_02.m2", + fileId = "575848", + text = "helm_plate_raiddeathknight_k_01_gom.m2", + value = "helm_plate_raiddeathknight_k_01_gom.m2", }, { - fileId = "143319", - text = "lshoulder_robe_northrend_b_03.m2", - value = "lshoulder_robe_northrend_b_03.m2", + fileId = "575850", + text = "helm_plate_raiddeathknight_k_01_huf.m2", + value = "helm_plate_raiddeathknight_k_01_huf.m2", }, { - fileId = "143320", - text = "lshoulder_robe_northrend_d_01.m2", - value = "lshoulder_robe_northrend_d_01.m2", + fileId = "575927", + text = "helm_plate_raiddeathknight_k_01_hum.m2", + value = "helm_plate_raiddeathknight_k_01_hum.m2", }, { - fileId = "238436", - text = "lshoulder_robe_plague_a_01.m2", - value = "lshoulder_robe_plague_a_01.m2", + fileId = "575852", + text = "helm_plate_raiddeathknight_k_01_nif.m2", + value = "helm_plate_raiddeathknight_k_01_nif.m2", }, { - fileId = "143321", - text = "lshoulder_robe_pvpalliance_a_01.m2", - value = "lshoulder_robe_pvpalliance_a_01.m2", + fileId = "575854", + text = "helm_plate_raiddeathknight_k_01_nim.m2", + value = "helm_plate_raiddeathknight_k_01_nim.m2", }, { - fileId = "143322", - text = "lshoulder_robe_pvpalliance_c_01.m2", - value = "lshoulder_robe_pvpalliance_c_01.m2", + fileId = "575856", + text = "helm_plate_raiddeathknight_k_01_orf.m2", + value = "helm_plate_raiddeathknight_k_01_orf.m2", }, { - fileId = "143323", - text = "lshoulder_robe_pvphorde_a_01.m2", - value = "lshoulder_robe_pvphorde_a_01.m2", + fileId = "575858", + text = "helm_plate_raiddeathknight_k_01_orm.m2", + value = "helm_plate_raiddeathknight_k_01_orm.m2", }, { - fileId = "143324", - text = "lshoulder_robe_pvphorde_c_01.m2", - value = "lshoulder_robe_pvphorde_c_01.m2", + fileId = "575860", + text = "helm_plate_raiddeathknight_k_01_scf.m2", + value = "helm_plate_raiddeathknight_k_01_scf.m2", }, { - fileId = "238437", - text = "lshoulder_robe_pvpwarlock_b_01.m2", - value = "lshoulder_robe_pvpwarlock_b_01.m2", + fileId = "575862", + text = "helm_plate_raiddeathknight_k_01_scm.m2", + value = "helm_plate_raiddeathknight_k_01_scm.m2", }, { - fileId = "254166", - text = "lshoulder_robe_pvpwarlock_b_02.m2", - value = "lshoulder_robe_pvpwarlock_b_02.m2", + fileId = "575864", + text = "helm_plate_raiddeathknight_k_01_taf.m2", + value = "helm_plate_raiddeathknight_k_01_taf.m2", }, { - fileId = "305929", - text = "lshoulder_robe_pvpwarlock_b_03.m2", - value = "lshoulder_robe_pvpwarlock_b_03.m2", + fileId = "575866", + text = "helm_plate_raiddeathknight_k_01_tam.m2", + value = "helm_plate_raiddeathknight_k_01_tam.m2", }, { - fileId = "350611", - text = "lshoulder_robe_pvpwarlock_b_04.m2", - value = "lshoulder_robe_pvpwarlock_b_04.m2", + fileId = "575868", + text = "helm_plate_raiddeathknight_k_01_trf.m2", + value = "helm_plate_raiddeathknight_k_01_trf.m2", }, { - fileId = "143325", - text = "lshoulder_robe_raid_a_01.m2", - value = "lshoulder_robe_raid_a_01.m2", + fileId = "575870", + text = "helm_plate_raiddeathknight_k_01_trm.m2", + value = "helm_plate_raiddeathknight_k_01_trm.m2", }, { - fileId = "143326", - text = "lshoulder_robe_raidmage_a_01.m2", - value = "lshoulder_robe_raidmage_a_01.m2", + fileId = "575872", + text = "helm_plate_raiddeathknight_k_01_wof.m2", + value = "helm_plate_raiddeathknight_k_01_wof.m2", }, { - fileId = "143327", - text = "lshoulder_robe_raidmage_b_01.m2", - value = "lshoulder_robe_raidmage_b_01.m2", + fileId = "575874", + text = "helm_plate_raiddeathknight_k_01_wom.m2", + value = "helm_plate_raiddeathknight_k_01_wom.m2", }, { - fileId = "143328", - text = "lshoulder_robe_raidmage_c_01.m2", - value = "lshoulder_robe_raidmage_c_01.m2", + fileId = "140893", + text = "helm_plate_raidpaladin_a_01_bef.m2", + value = "helm_plate_raidpaladin_a_01_bef.m2", }, { - fileId = "238438", - text = "lshoulder_robe_raidmage_c_02.m2", - value = "lshoulder_robe_raidmage_c_02.m2", + fileId = "140894", + text = "helm_plate_raidpaladin_a_01_bem.m2", + value = "helm_plate_raidpaladin_a_01_bem.m2", }, { - fileId = "143329", - text = "lshoulder_robe_raidmage_d_01.m2", - value = "lshoulder_robe_raidmage_d_01.m2", + fileId = "140895", + text = "helm_plate_raidpaladin_a_01_drf.m2", + value = "helm_plate_raidpaladin_a_01_drf.m2", }, { - fileId = "143330", - text = "lshoulder_robe_raidmage_e_01.m2", - value = "lshoulder_robe_raidmage_e_01.m2", + fileId = "140896", + text = "helm_plate_raidpaladin_a_01_drm.m2", + value = "helm_plate_raidpaladin_a_01_drm.m2", }, { - fileId = "238439", - text = "lshoulder_robe_raidmage_e_02.m2", - value = "lshoulder_robe_raidmage_e_02.m2", + fileId = "140897", + text = "helm_plate_raidpaladin_a_01_dwf.m2", + value = "helm_plate_raidpaladin_a_01_dwf.m2", }, { - fileId = "143331", - text = "lshoulder_robe_raidmage_f_01.m2", - value = "lshoulder_robe_raidmage_f_01.m2", + fileId = "140898", + text = "helm_plate_raidpaladin_a_01_dwm.m2", + value = "helm_plate_raidpaladin_a_01_dwm.m2", }, { - fileId = "143332", - text = "lshoulder_robe_raidmage_g_01.m2", - value = "lshoulder_robe_raidmage_g_01.m2", + fileId = "140899", + text = "helm_plate_raidpaladin_a_01_gnf.m2", + value = "helm_plate_raidpaladin_a_01_gnf.m2", }, { - fileId = "340071", - text = "lshoulder_robe_raidmage_h_01.m2", - value = "lshoulder_robe_raidmage_h_01.m2", + fileId = "140900", + text = "helm_plate_raidpaladin_a_01_gnm.m2", + value = "helm_plate_raidpaladin_a_01_gnm.m2", }, { - fileId = "143333", - text = "lshoulder_robe_raidpriest_a_01.m2", - value = "lshoulder_robe_raidpriest_a_01.m2", + fileId = "140901", + text = "helm_plate_raidpaladin_a_01_gof.m2", + value = "helm_plate_raidpaladin_a_01_gof.m2", }, { - fileId = "143334", - text = "lshoulder_robe_raidpriest_b_01.m2", - value = "lshoulder_robe_raidpriest_b_01.m2", + fileId = "407382", + text = "helm_plate_raidpaladin_a_01_gom.m2", + value = "helm_plate_raidpaladin_a_01_gom.m2", }, { - fileId = "143335", - text = "lshoulder_robe_raidpriest_c_01.m2", - value = "lshoulder_robe_raidpriest_c_01.m2", + fileId = "140902", + text = "helm_plate_raidpaladin_a_01_huf.m2", + value = "helm_plate_raidpaladin_a_01_huf.m2", }, { - fileId = "143336", - text = "lshoulder_robe_raidpriest_d_01.m2", - value = "lshoulder_robe_raidpriest_d_01.m2", + fileId = "140903", + text = "helm_plate_raidpaladin_a_01_hum.m2", + value = "helm_plate_raidpaladin_a_01_hum.m2", }, { - fileId = "143337", - text = "lshoulder_robe_raidpriest_e_01.m2", - value = "lshoulder_robe_raidpriest_e_01.m2", + fileId = "140904", + text = "helm_plate_raidpaladin_a_01_nif.m2", + value = "helm_plate_raidpaladin_a_01_nif.m2", }, { - fileId = "143338", - text = "lshoulder_robe_raidpriest_f_01.m2", - value = "lshoulder_robe_raidpriest_f_01.m2", + fileId = "140905", + text = "helm_plate_raidpaladin_a_01_nim.m2", + value = "helm_plate_raidpaladin_a_01_nim.m2", }, { - fileId = "143339", - text = "lshoulder_robe_raidpriest_g_01.m2", - value = "lshoulder_robe_raidpriest_g_01.m2", + fileId = "140906", + text = "helm_plate_raidpaladin_a_01_orf.m2", + value = "helm_plate_raidpaladin_a_01_orf.m2", }, { - fileId = "341799", - text = "lshoulder_robe_raidpriest_h_01.m2", - value = "lshoulder_robe_raidpriest_h_01.m2", + fileId = "140907", + text = "helm_plate_raidpaladin_a_01_orm.m2", + value = "helm_plate_raidpaladin_a_01_orm.m2", }, { - fileId = "143340", - text = "lshoulder_robe_raidshaman_c_01.m2", - value = "lshoulder_robe_raidshaman_c_01.m2", + fileId = "140908", + text = "helm_plate_raidpaladin_a_01_scf.m2", + value = "helm_plate_raidpaladin_a_01_scf.m2", }, { - fileId = "143341", - text = "lshoulder_robe_raidwarlock_a_01.m2", - value = "lshoulder_robe_raidwarlock_a_01.m2", + fileId = "140909", + text = "helm_plate_raidpaladin_a_01_scm.m2", + value = "helm_plate_raidpaladin_a_01_scm.m2", }, { - fileId = "143342", - text = "lshoulder_robe_raidwarlock_b_01.m2", - value = "lshoulder_robe_raidwarlock_b_01.m2", + fileId = "140910", + text = "helm_plate_raidpaladin_a_01_taf.m2", + value = "helm_plate_raidpaladin_a_01_taf.m2", }, { - fileId = "143343", - text = "lshoulder_robe_raidwarlock_c_01.m2", - value = "lshoulder_robe_raidwarlock_c_01.m2", + fileId = "140911", + text = "helm_plate_raidpaladin_a_01_tam.m2", + value = "helm_plate_raidpaladin_a_01_tam.m2", }, { - fileId = "238440", - text = "lshoulder_robe_raidwarlock_c_02.m2", - value = "lshoulder_robe_raidwarlock_c_02.m2", + fileId = "140912", + text = "helm_plate_raidpaladin_a_01_trf.m2", + value = "helm_plate_raidpaladin_a_01_trf.m2", }, { - fileId = "143344", - text = "lshoulder_robe_raidwarlock_d_01.m2", - value = "lshoulder_robe_raidwarlock_d_01.m2", + fileId = "140913", + text = "helm_plate_raidpaladin_a_01_trm.m2", + value = "helm_plate_raidpaladin_a_01_trm.m2", }, { - fileId = "143345", - text = "lshoulder_robe_raidwarlock_e_01.m2", - value = "lshoulder_robe_raidwarlock_e_01.m2", + fileId = "454274", + text = "helm_plate_raidpaladin_a_01_wof.m2", + value = "helm_plate_raidpaladin_a_01_wof.m2", }, { - fileId = "143346", - text = "lshoulder_robe_raidwarlock_f_01.m2", - value = "lshoulder_robe_raidwarlock_f_01.m2", + fileId = "436664", + text = "helm_plate_raidpaladin_a_01_wom.m2", + value = "helm_plate_raidpaladin_a_01_wom.m2", }, { - fileId = "143347", - text = "lshoulder_robe_raidwarlock_g_01.m2", - value = "lshoulder_robe_raidwarlock_g_01.m2", + fileId = "140919", + text = "helm_plate_raidpaladin_b_01_bef.m2", + value = "helm_plate_raidpaladin_b_01_bef.m2", }, { - fileId = "339851", - text = "lshoulder_robe_raidwarlock_h_01.m2", - value = "lshoulder_robe_raidwarlock_h_01.m2", + fileId = "140920", + text = "helm_plate_raidpaladin_b_01_bem.m2", + value = "helm_plate_raidpaladin_b_01_bem.m2", }, { - fileId = "143348", - text = "lshoulder_robe_sunwell_d_01.m2", - value = "lshoulder_robe_sunwell_d_01.m2", + fileId = "140921", + text = "helm_plate_raidpaladin_b_01_drf.m2", + value = "helm_plate_raidpaladin_b_01_drf.m2", }, { - fileId = "143349", - text = "lshoulder_robe_zulaman_d_01.m2", - value = "lshoulder_robe_zulaman_d_01.m2", + fileId = "140922", + text = "helm_plate_raidpaladin_b_01_drm.m2", + value = "helm_plate_raidpaladin_b_01_drm.m2", }, { - fileId = "143350", - text = "lshoulder_robe_zulaman_d_03.m2", - value = "lshoulder_robe_zulaman_d_03.m2", + fileId = "140923", + text = "helm_plate_raidpaladin_b_01_dwf.m2", + value = "helm_plate_raidpaladin_b_01_dwf.m2", }, { - fileId = "238466", - text = "rshoulder_cloth_pvpmage_b_01.m2", - value = "rshoulder_cloth_pvpmage_b_01.m2", + fileId = "140924", + text = "helm_plate_raidpaladin_b_01_dwm.m2", + value = "helm_plate_raidpaladin_b_01_dwm.m2", }, { - fileId = "255264", - text = "rshoulder_cloth_pvpmage_b_02.m2", - value = "rshoulder_cloth_pvpmage_b_02.m2", + fileId = "140925", + text = "helm_plate_raidpaladin_b_01_gnf.m2", + value = "helm_plate_raidpaladin_b_01_gnf.m2", }, { - fileId = "305322", - text = "rshoulder_cloth_pvpmage_b_03.m2", - value = "rshoulder_cloth_pvpmage_b_03.m2", + fileId = "140926", + text = "helm_plate_raidpaladin_b_01_gnm.m2", + value = "helm_plate_raidpaladin_b_01_gnm.m2", }, { - fileId = "343977", - text = "rshoulder_cloth_pvpmage_b_04.m2", - value = "rshoulder_cloth_pvpmage_b_04.m2", + fileId = "140927", + text = "helm_plate_raidpaladin_b_01_gof.m2", + value = "helm_plate_raidpaladin_b_01_gof.m2", }, { - fileId = "238467", - text = "rshoulder_cloth_pvppriest_b_01.m2", - value = "rshoulder_cloth_pvppriest_b_01.m2", + fileId = "140928", + text = "helm_plate_raidpaladin_b_01_gom.m2", + value = "helm_plate_raidpaladin_b_01_gom.m2", }, { - fileId = "293957", - text = "rshoulder_cloth_pvppriest_b_02.m2", - value = "rshoulder_cloth_pvppriest_b_02.m2", + fileId = "140929", + text = "helm_plate_raidpaladin_b_01_huf.m2", + value = "helm_plate_raidpaladin_b_01_huf.m2", }, { - fileId = "347766", - text = "rshoulder_cloth_pvppriest_b_04.m2", - value = "rshoulder_cloth_pvppriest_b_04.m2", + fileId = "140930", + text = "helm_plate_raidpaladin_b_01_hum.m2", + value = "helm_plate_raidpaladin_b_01_hum.m2", }, { - fileId = "143436", - text = "rshoulder_leather_a_01.m2", - value = "rshoulder_leather_a_01.m2", + fileId = "140931", + text = "helm_plate_raidpaladin_b_01_nif.m2", + value = "helm_plate_raidpaladin_b_01_nif.m2", }, { - fileId = "143437", - text = "rshoulder_leather_a_02.m2", - value = "rshoulder_leather_a_02.m2", + fileId = "140932", + text = "helm_plate_raidpaladin_b_01_nim.m2", + value = "helm_plate_raidpaladin_b_01_nim.m2", }, { - fileId = "143438", - text = "rshoulder_leather_a_03.m2", - value = "rshoulder_leather_a_03.m2", + fileId = "140933", + text = "helm_plate_raidpaladin_b_01_orf.m2", + value = "helm_plate_raidpaladin_b_01_orf.m2", }, { - fileId = "143439", - text = "rshoulder_leather_a_03defias.m2", - value = "rshoulder_leather_a_03defias.m2", + fileId = "140934", + text = "helm_plate_raidpaladin_b_01_orm.m2", + value = "helm_plate_raidpaladin_b_01_orm.m2", }, { - fileId = "143440", - text = "rshoulder_leather_a_04.m2", - value = "rshoulder_leather_a_04.m2", + fileId = "140935", + text = "helm_plate_raidpaladin_b_01_scf.m2", + value = "helm_plate_raidpaladin_b_01_scf.m2", }, { - fileId = "143441", - text = "rshoulder_leather_a_05.m2", - value = "rshoulder_leather_a_05.m2", + fileId = "140936", + text = "helm_plate_raidpaladin_b_01_scm.m2", + value = "helm_plate_raidpaladin_b_01_scm.m2", }, { - fileId = "143442", - text = "rshoulder_leather_ahnqiraj_a_01.m2", - value = "rshoulder_leather_ahnqiraj_a_01.m2", + fileId = "140937", + text = "helm_plate_raidpaladin_b_01_taf.m2", + value = "helm_plate_raidpaladin_b_01_taf.m2", }, { - fileId = "316667", - text = "rshoulder_leather_argentalliance_d_01.m2", - value = "rshoulder_leather_argentalliance_d_01.m2", + fileId = "140938", + text = "helm_plate_raidpaladin_b_01_tam.m2", + value = "helm_plate_raidpaladin_b_01_tam.m2", }, { - fileId = "312785", - text = "rshoulder_leather_argenthorde_d_01.m2", - value = "rshoulder_leather_argenthorde_d_01.m2", + fileId = "140939", + text = "helm_plate_raidpaladin_b_01_trf.m2", + value = "helm_plate_raidpaladin_b_01_trf.m2", }, { - fileId = "143443", - text = "rshoulder_leather_b_01.m2", - value = "rshoulder_leather_b_01.m2", + fileId = "140940", + text = "helm_plate_raidpaladin_b_01_trm.m2", + value = "helm_plate_raidpaladin_b_01_trm.m2", }, { - fileId = "143444", - text = "rshoulder_leather_b_02.m2", - value = "rshoulder_leather_b_02.m2", + fileId = "454275", + text = "helm_plate_raidpaladin_b_01_wof.m2", + value = "helm_plate_raidpaladin_b_01_wof.m2", }, { - fileId = "143445", - text = "rshoulder_leather_b_03.m2", - value = "rshoulder_leather_b_03.m2", + fileId = "436665", + text = "helm_plate_raidpaladin_b_01_wom.m2", + value = "helm_plate_raidpaladin_b_01_wom.m2", }, { - fileId = "143446", - text = "rshoulder_leather_b_04.m2", - value = "rshoulder_leather_b_04.m2", + fileId = "140944", + text = "helm_plate_raidpaladin_c_01_bef.m2", + value = "helm_plate_raidpaladin_c_01_bef.m2", }, { - fileId = "143447", - text = "rshoulder_leather_blood_b_01.m2", - value = "rshoulder_leather_blood_b_01.m2", + fileId = "140945", + text = "helm_plate_raidpaladin_c_01_bem.m2", + value = "helm_plate_raidpaladin_c_01_bem.m2", }, { - fileId = "143448", - text = "rshoulder_leather_c_01.m2", - value = "rshoulder_leather_c_01.m2", + fileId = "140946", + text = "helm_plate_raidpaladin_c_01_drf.m2", + value = "helm_plate_raidpaladin_c_01_drf.m2", }, { - fileId = "143449", - text = "rshoulder_leather_c_02.m2", - value = "rshoulder_leather_c_02.m2", + fileId = "140947", + text = "helm_plate_raidpaladin_c_01_drm.m2", + value = "helm_plate_raidpaladin_c_01_drm.m2", }, { - fileId = "143450", - text = "rshoulder_leather_c_03.m2", - value = "rshoulder_leather_c_03.m2", + fileId = "140948", + text = "helm_plate_raidpaladin_c_01_dwf.m2", + value = "helm_plate_raidpaladin_c_01_dwf.m2", }, { - fileId = "143451", - text = "rshoulder_leather_d_01.m2", - value = "rshoulder_leather_d_01.m2", + fileId = "140949", + text = "helm_plate_raidpaladin_c_01_dwm.m2", + value = "helm_plate_raidpaladin_c_01_dwm.m2", }, { - fileId = "143452", - text = "rshoulder_leather_d_02.m2", - value = "rshoulder_leather_d_02.m2", + fileId = "140950", + text = "helm_plate_raidpaladin_c_01_gnf.m2", + value = "helm_plate_raidpaladin_c_01_gnf.m2", }, { - fileId = "143453", - text = "rshoulder_leather_d_03.m2", - value = "rshoulder_leather_d_03.m2", + fileId = "140951", + text = "helm_plate_raidpaladin_c_01_gnm.m2", + value = "helm_plate_raidpaladin_c_01_gnm.m2", }, { - fileId = "143454", - text = "rshoulder_leather_draenei_b_01.m2", - value = "rshoulder_leather_draenei_b_01.m2", + fileId = "140952", + text = "helm_plate_raidpaladin_c_01_gof.m2", + value = "helm_plate_raidpaladin_c_01_gof.m2", }, { - fileId = "143455", - text = "rshoulder_leather_draenei_b_02.m2", - value = "rshoulder_leather_draenei_b_02.m2", + fileId = "140953", + text = "helm_plate_raidpaladin_c_01_gom.m2", + value = "helm_plate_raidpaladin_c_01_gom.m2", }, { - fileId = "143456", - text = "rshoulder_leather_dungeondruid_a_01.m2", - value = "rshoulder_leather_dungeondruid_a_01.m2", + fileId = "140954", + text = "helm_plate_raidpaladin_c_01_huf.m2", + value = "helm_plate_raidpaladin_c_01_huf.m2", }, { - fileId = "143457", - text = "rshoulder_leather_dungeondruid_b_01.m2", - value = "rshoulder_leather_dungeondruid_b_01.m2", + fileId = "140955", + text = "helm_plate_raidpaladin_c_01_hum.m2", + value = "helm_plate_raidpaladin_c_01_hum.m2", }, { - fileId = "238468", - text = "rshoulder_leather_dungeonleather_c_01.m2", - value = "rshoulder_leather_dungeonleather_c_01.m2", + fileId = "140956", + text = "helm_plate_raidpaladin_c_01_nif.m2", + value = "helm_plate_raidpaladin_c_01_nif.m2", }, { - fileId = "340376", - text = "rshoulder_leather_dungeonleather_c_02.m2", - value = "rshoulder_leather_dungeonleather_c_02.m2", + fileId = "140957", + text = "helm_plate_raidpaladin_c_01_nim.m2", + value = "helm_plate_raidpaladin_c_01_nim.m2", }, { - fileId = "143458", - text = "rshoulder_leather_dungeonrogue_b_01.m2", - value = "rshoulder_leather_dungeonrogue_b_01.m2", + fileId = "140958", + text = "helm_plate_raidpaladin_c_01_orf.m2", + value = "helm_plate_raidpaladin_c_01_orf.m2", }, { - fileId = "143459", - text = "rshoulder_leather_horde_a_05.m2", - value = "rshoulder_leather_horde_a_05.m2", + fileId = "140959", + text = "helm_plate_raidpaladin_c_01_orm.m2", + value = "helm_plate_raidpaladin_c_01_orm.m2", }, { - fileId = "143460", - text = "rshoulder_leather_horde_b_03.m2", - value = "rshoulder_leather_horde_b_03.m2", + fileId = "140960", + text = "helm_plate_raidpaladin_c_01_scf.m2", + value = "helm_plate_raidpaladin_c_01_scf.m2", }, { - fileId = "143461", - text = "rshoulder_leather_northrend_b_01.m2", - value = "rshoulder_leather_northrend_b_01.m2", + fileId = "140961", + text = "helm_plate_raidpaladin_c_01_scm.m2", + value = "helm_plate_raidpaladin_c_01_scm.m2", }, { - fileId = "143462", - text = "rshoulder_leather_northrend_b_02.m2", - value = "rshoulder_leather_northrend_b_02.m2", + fileId = "140962", + text = "helm_plate_raidpaladin_c_01_taf.m2", + value = "helm_plate_raidpaladin_c_01_taf.m2", }, { - fileId = "143463", - text = "rshoulder_leather_northrend_b_03.m2", - value = "rshoulder_leather_northrend_b_03.m2", + fileId = "140963", + text = "helm_plate_raidpaladin_c_01_tam.m2", + value = "helm_plate_raidpaladin_c_01_tam.m2", }, { - fileId = "143464", - text = "rshoulder_leather_northrend_c_01.m2", - value = "rshoulder_leather_northrend_c_01.m2", + fileId = "140964", + text = "helm_plate_raidpaladin_c_01_trf.m2", + value = "helm_plate_raidpaladin_c_01_trf.m2", }, { - fileId = "143465", - text = "rshoulder_leather_northrend_c_02.m2", - value = "rshoulder_leather_northrend_c_02.m2", + fileId = "140965", + text = "helm_plate_raidpaladin_c_01_trm.m2", + value = "helm_plate_raidpaladin_c_01_trm.m2", }, { - fileId = "143466", - text = "rshoulder_leather_northrend_d_01.m2", - value = "rshoulder_leather_northrend_d_01.m2", + fileId = "454276", + text = "helm_plate_raidpaladin_c_01_wof.m2", + value = "helm_plate_raidpaladin_c_01_wof.m2", }, { - fileId = "143467", - text = "rshoulder_leather_pvpalliance_a_01.m2", - value = "rshoulder_leather_pvpalliance_a_01.m2", + fileId = "431684", + text = "helm_plate_raidpaladin_c_01_wom.m2", + value = "helm_plate_raidpaladin_c_01_wom.m2", }, { - fileId = "238469", - text = "rshoulder_leather_pvpdruid_b_01.m2", - value = "rshoulder_leather_pvpdruid_b_01.m2", + fileId = "140968", + text = "helm_plate_raidpaladin_d_01_bef.m2", + value = "helm_plate_raidpaladin_d_01_bef.m2", }, { - fileId = "294396", - text = "rshoulder_leather_pvpdruid_b_02.m2", - value = "rshoulder_leather_pvpdruid_b_02.m2", + fileId = "140969", + text = "helm_plate_raidpaladin_d_01_bem.m2", + value = "helm_plate_raidpaladin_d_01_bem.m2", }, { - fileId = "304544", - text = "rshoulder_leather_pvpdruid_b_03.m2", - value = "rshoulder_leather_pvpdruid_b_03.m2", + fileId = "140970", + text = "helm_plate_raidpaladin_d_01_drf.m2", + value = "helm_plate_raidpaladin_d_01_drf.m2", }, { - fileId = "348779", - text = "rshoulder_leather_pvpdruid_b_04.m2", - value = "rshoulder_leather_pvpdruid_b_04.m2", + fileId = "140971", + text = "helm_plate_raidpaladin_d_01_drm.m2", + value = "helm_plate_raidpaladin_d_01_drm.m2", }, { - fileId = "143468", - text = "rshoulder_leather_pvphorde_a_01.m2", - value = "rshoulder_leather_pvphorde_a_01.m2", + fileId = "140972", + text = "helm_plate_raidpaladin_d_01_dwf.m2", + value = "helm_plate_raidpaladin_d_01_dwf.m2", }, { - fileId = "143469", - text = "rshoulder_leather_pvphorde_c_01.m2", - value = "rshoulder_leather_pvphorde_c_01.m2", + fileId = "140973", + text = "helm_plate_raidpaladin_d_01_dwm.m2", + value = "helm_plate_raidpaladin_d_01_dwm.m2", }, { - fileId = "238470", - text = "rshoulder_leather_pvprogue_b_01.m2", - value = "rshoulder_leather_pvprogue_b_01.m2", + fileId = "140975", + text = "helm_plate_raidpaladin_d_01_gnf.m2", + value = "helm_plate_raidpaladin_d_01_gnf.m2", }, { - fileId = "254607", - text = "rshoulder_leather_pvprogue_b_02.m2", - value = "rshoulder_leather_pvprogue_b_02.m2", + fileId = "140976", + text = "helm_plate_raidpaladin_d_01_gnm.m2", + value = "helm_plate_raidpaladin_d_01_gnm.m2", }, { - fileId = "304493", - text = "rshoulder_leather_pvprogue_b_03.m2", - value = "rshoulder_leather_pvprogue_b_03.m2", + fileId = "140977", + text = "helm_plate_raidpaladin_d_01_gof.m2", + value = "helm_plate_raidpaladin_d_01_gof.m2", }, { - fileId = "346080", - text = "rshoulder_leather_pvprogue_b_04.m2", - value = "rshoulder_leather_pvprogue_b_04.m2", + fileId = "140978", + text = "helm_plate_raidpaladin_d_01_gom.m2", + value = "helm_plate_raidpaladin_d_01_gom.m2", }, { - fileId = "143470", - text = "rshoulder_leather_raiddruid_a_01.m2", - value = "rshoulder_leather_raiddruid_a_01.m2", + fileId = "140979", + text = "helm_plate_raidpaladin_d_01_huf.m2", + value = "helm_plate_raidpaladin_d_01_huf.m2", }, { - fileId = "143471", - text = "rshoulder_leather_raiddruid_b_01.m2", - value = "rshoulder_leather_raiddruid_b_01.m2", + fileId = "140980", + text = "helm_plate_raidpaladin_d_01_hum.m2", + value = "helm_plate_raidpaladin_d_01_hum.m2", }, { - fileId = "143472", - text = "rshoulder_leather_raiddruid_c_01.m2", - value = "rshoulder_leather_raiddruid_c_01.m2", + fileId = "140981", + text = "helm_plate_raidpaladin_d_01_nif.m2", + value = "helm_plate_raidpaladin_d_01_nif.m2", }, { - fileId = "238471", - text = "rshoulder_leather_raiddruid_c_02.m2", - value = "rshoulder_leather_raiddruid_c_02.m2", + fileId = "140982", + text = "helm_plate_raidpaladin_d_01_nim.m2", + value = "helm_plate_raidpaladin_d_01_nim.m2", }, { - fileId = "143473", - text = "rshoulder_leather_raiddruid_d_01.m2", - value = "rshoulder_leather_raiddruid_d_01.m2", + fileId = "140983", + text = "helm_plate_raidpaladin_d_01_orf.m2", + value = "helm_plate_raidpaladin_d_01_orf.m2", }, { - fileId = "143474", - text = "rshoulder_leather_raiddruid_e_01.m2", - value = "rshoulder_leather_raiddruid_e_01.m2", + fileId = "140984", + text = "helm_plate_raidpaladin_d_01_orm.m2", + value = "helm_plate_raidpaladin_d_01_orm.m2", }, { - fileId = "143475", - text = "rshoulder_leather_raiddruid_f_01.m2", - value = "rshoulder_leather_raiddruid_f_01.m2", + fileId = "140985", + text = "helm_plate_raidpaladin_d_01_scf.m2", + value = "helm_plate_raidpaladin_d_01_scf.m2", }, { - fileId = "249250", - text = "rshoulder_leather_raiddruid_g_01.m2", - value = "rshoulder_leather_raiddruid_g_01.m2", + fileId = "140986", + text = "helm_plate_raidpaladin_d_01_scm.m2", + value = "helm_plate_raidpaladin_d_01_scm.m2", }, { - fileId = "336854", - text = "rshoulder_leather_raiddruid_h_01.m2", - value = "rshoulder_leather_raiddruid_h_01.m2", + fileId = "140987", + text = "helm_plate_raidpaladin_d_01_taf.m2", + value = "helm_plate_raidpaladin_d_01_taf.m2", }, { - fileId = "143476", - text = "rshoulder_leather_raidrogue_a_01.m2", - value = "rshoulder_leather_raidrogue_a_01.m2", + fileId = "140988", + text = "helm_plate_raidpaladin_d_01_tam.m2", + value = "helm_plate_raidpaladin_d_01_tam.m2", }, { - fileId = "143477", - text = "rshoulder_leather_raidrogue_b_01.m2", - value = "rshoulder_leather_raidrogue_b_01.m2", + fileId = "140989", + text = "helm_plate_raidpaladin_d_01_trf.m2", + value = "helm_plate_raidpaladin_d_01_trf.m2", }, { - fileId = "143478", - text = "rshoulder_leather_raidrogue_c_01.m2", - value = "rshoulder_leather_raidrogue_c_01.m2", + fileId = "140990", + text = "helm_plate_raidpaladin_d_01_trm.m2", + value = "helm_plate_raidpaladin_d_01_trm.m2", }, { - fileId = "238472", - text = "rshoulder_leather_raidrogue_c_02.m2", - value = "rshoulder_leather_raidrogue_c_02.m2", + fileId = "454277", + text = "helm_plate_raidpaladin_d_01_wof.m2", + value = "helm_plate_raidpaladin_d_01_wof.m2", }, { - fileId = "143479", - text = "rshoulder_leather_raidrogue_d_01.m2", - value = "rshoulder_leather_raidrogue_d_01.m2", + fileId = "430070", + text = "helm_plate_raidpaladin_d_01_wom.m2", + value = "helm_plate_raidpaladin_d_01_wom.m2", }, { - fileId = "143480", - text = "rshoulder_leather_raidrogue_e_01.m2", - value = "rshoulder_leather_raidrogue_e_01.m2", + fileId = "140993", + text = "helm_plate_raidpaladin_e_01_bef.m2", + value = "helm_plate_raidpaladin_e_01_bef.m2", }, { - fileId = "143481", - text = "rshoulder_leather_raidrogue_f_01.m2", - value = "rshoulder_leather_raidrogue_f_01.m2", + fileId = "140994", + text = "helm_plate_raidpaladin_e_01_bem.m2", + value = "helm_plate_raidpaladin_e_01_bem.m2", }, { - fileId = "143482", - text = "rshoulder_leather_raidrogue_g_01.m2", - value = "rshoulder_leather_raidrogue_g_01.m2", + fileId = "140995", + text = "helm_plate_raidpaladin_e_01_drf.m2", + value = "helm_plate_raidpaladin_e_01_drf.m2", }, { - fileId = "335617", - text = "rshoulder_leather_raidrogue_h_01.m2", - value = "rshoulder_leather_raidrogue_h_01.m2", + fileId = "140996", + text = "helm_plate_raidpaladin_e_01_drm.m2", + value = "helm_plate_raidpaladin_e_01_drm.m2", }, { - fileId = "143483", - text = "rshoulder_leather_sunwell_d_01.m2", - value = "rshoulder_leather_sunwell_d_01.m2", + fileId = "140997", + text = "helm_plate_raidpaladin_e_01_dwf.m2", + value = "helm_plate_raidpaladin_e_01_dwf.m2", }, { - fileId = "143484", - text = "rshoulder_leather_zulaman_d_01.m2", - value = "rshoulder_leather_zulaman_d_01.m2", + fileId = "140998", + text = "helm_plate_raidpaladin_e_01_dwm.m2", + value = "helm_plate_raidpaladin_e_01_dwm.m2", }, { - fileId = "143485", - text = "rshoulder_leather_zulaman_d_03.m2", - value = "rshoulder_leather_zulaman_d_03.m2", + fileId = "140999", + text = "helm_plate_raidpaladin_e_01_gnf.m2", + value = "helm_plate_raidpaladin_e_01_gnf.m2", }, { - fileId = "143486", - text = "rshoulder_mail_a_01.m2", - value = "rshoulder_mail_a_01.m2", + fileId = "141000", + text = "helm_plate_raidpaladin_e_01_gnm.m2", + value = "helm_plate_raidpaladin_e_01_gnm.m2", }, { - fileId = "143487", - text = "rshoulder_mail_a_02.m2", - value = "rshoulder_mail_a_02.m2", + fileId = "405408", + text = "helm_plate_raidpaladin_e_01_gof.m2", + value = "helm_plate_raidpaladin_e_01_gof.m2", }, { - fileId = "143488", - text = "rshoulder_mail_a_03.m2", - value = "rshoulder_mail_a_03.m2", + fileId = "405409", + text = "helm_plate_raidpaladin_e_01_gom.m2", + value = "helm_plate_raidpaladin_e_01_gom.m2", }, { - fileId = "143489", - text = "rshoulder_mail_ahnqiraj_a_01.m2", - value = "rshoulder_mail_ahnqiraj_a_01.m2", + fileId = "141001", + text = "helm_plate_raidpaladin_e_01_huf.m2", + value = "helm_plate_raidpaladin_e_01_huf.m2", }, { - fileId = "317488", - text = "rshoulder_mail_argentalliance_d_01.m2", - value = "rshoulder_mail_argentalliance_d_01.m2", + fileId = "141002", + text = "helm_plate_raidpaladin_e_01_hum.m2", + value = "helm_plate_raidpaladin_e_01_hum.m2", }, { - fileId = "315306", - text = "rshoulder_mail_argenthorde_d_01.m2", - value = "rshoulder_mail_argenthorde_d_01.m2", + fileId = "141003", + text = "helm_plate_raidpaladin_e_01_nif.m2", + value = "helm_plate_raidpaladin_e_01_nif.m2", }, { - fileId = "143490", - text = "rshoulder_mail_b_01.m2", - value = "rshoulder_mail_b_01.m2", + fileId = "141004", + text = "helm_plate_raidpaladin_e_01_nim.m2", + value = "helm_plate_raidpaladin_e_01_nim.m2", }, { - fileId = "143491", - text = "rshoulder_mail_b_02.m2", - value = "rshoulder_mail_b_02.m2", + fileId = "141005", + text = "helm_plate_raidpaladin_e_01_orf.m2", + value = "helm_plate_raidpaladin_e_01_orf.m2", }, { - fileId = "143492", - text = "rshoulder_mail_b_03.m2", - value = "rshoulder_mail_b_03.m2", + fileId = "141006", + text = "helm_plate_raidpaladin_e_01_orm.m2", + value = "helm_plate_raidpaladin_e_01_orm.m2", }, { - fileId = "143493", - text = "rshoulder_mail_b_05.m2", - value = "rshoulder_mail_b_05.m2", + fileId = "141007", + text = "helm_plate_raidpaladin_e_01_scf.m2", + value = "helm_plate_raidpaladin_e_01_scf.m2", }, { - fileId = "143494", - text = "rshoulder_mail_blood_b_01.m2", - value = "rshoulder_mail_blood_b_01.m2", + fileId = "141008", + text = "helm_plate_raidpaladin_e_01_scm.m2", + value = "helm_plate_raidpaladin_e_01_scm.m2", }, { - fileId = "143495", - text = "rshoulder_mail_c_01.m2", - value = "rshoulder_mail_c_01.m2", + fileId = "141009", + text = "helm_plate_raidpaladin_e_01_taf.m2", + value = "helm_plate_raidpaladin_e_01_taf.m2", }, { - fileId = "143496", - text = "rshoulder_mail_c_02.m2", - value = "rshoulder_mail_c_02.m2", + fileId = "141010", + text = "helm_plate_raidpaladin_e_01_tam.m2", + value = "helm_plate_raidpaladin_e_01_tam.m2", }, { - fileId = "143497", - text = "rshoulder_mail_c_03.m2", - value = "rshoulder_mail_c_03.m2", + fileId = "141011", + text = "helm_plate_raidpaladin_e_01_trf.m2", + value = "helm_plate_raidpaladin_e_01_trf.m2", }, { - fileId = "143498", - text = "rshoulder_mail_c_04.m2", - value = "rshoulder_mail_c_04.m2", + fileId = "141012", + text = "helm_plate_raidpaladin_e_01_trm.m2", + value = "helm_plate_raidpaladin_e_01_trm.m2", }, { - fileId = "143499", - text = "rshoulder_mail_d_01.m2", - value = "rshoulder_mail_d_01.m2", + fileId = "454278", + text = "helm_plate_raidpaladin_e_01_wof.m2", + value = "helm_plate_raidpaladin_e_01_wof.m2", }, { - fileId = "143500", - text = "rshoulder_mail_d_02.m2", - value = "rshoulder_mail_d_02.m2", + fileId = "430071", + text = "helm_plate_raidpaladin_e_01_wom.m2", + value = "helm_plate_raidpaladin_e_01_wom.m2", }, { - fileId = "143501", - text = "rshoulder_mail_draenei_b_01.m2", - value = "rshoulder_mail_draenei_b_01.m2", + fileId = "141015", + text = "helm_plate_raidpaladin_f_01_bef.m2", + value = "helm_plate_raidpaladin_f_01_bef.m2", }, { - fileId = "143502", - text = "rshoulder_mail_draenei_b_02.m2", - value = "rshoulder_mail_draenei_b_02.m2", + fileId = "141016", + text = "helm_plate_raidpaladin_f_01_bem.m2", + value = "helm_plate_raidpaladin_f_01_bem.m2", }, { - fileId = "143503", - text = "rshoulder_mail_dungeonhunter_a_01.m2", - value = "rshoulder_mail_dungeonhunter_a_01.m2", + fileId = "141017", + text = "helm_plate_raidpaladin_f_01_drf.m2", + value = "helm_plate_raidpaladin_f_01_drf.m2", }, { - fileId = "143504", - text = "rshoulder_mail_dungeonhunter_b_02.m2", - value = "rshoulder_mail_dungeonhunter_b_02.m2", + fileId = "141018", + text = "helm_plate_raidpaladin_f_01_drm.m2", + value = "helm_plate_raidpaladin_f_01_drm.m2", }, { - fileId = "238473", - text = "rshoulder_mail_dungeonmail_c_01.m2", - value = "rshoulder_mail_dungeonmail_c_01.m2", + fileId = "141019", + text = "helm_plate_raidpaladin_f_01_dwf.m2", + value = "helm_plate_raidpaladin_f_01_dwf.m2", }, { - fileId = "342404", - text = "rshoulder_mail_dungeonmail_c_02.m2", - value = "rshoulder_mail_dungeonmail_c_02.m2", + fileId = "141020", + text = "helm_plate_raidpaladin_f_01_dwm.m2", + value = "helm_plate_raidpaladin_f_01_dwm.m2", }, { - fileId = "143505", - text = "rshoulder_mail_dungeonshaman_a_01.m2", - value = "rshoulder_mail_dungeonshaman_a_01.m2", + fileId = "141021", + text = "helm_plate_raidpaladin_f_01_gnf.m2", + value = "helm_plate_raidpaladin_f_01_gnf.m2", }, { - fileId = "143506", - text = "rshoulder_mail_dungeonshaman_b_01.m2", - value = "rshoulder_mail_dungeonshaman_b_01.m2", + fileId = "141022", + text = "helm_plate_raidpaladin_f_01_gnm.m2", + value = "helm_plate_raidpaladin_f_01_gnm.m2", }, { - fileId = "143507", - text = "rshoulder_mail_northrend_b_01.m2", - value = "rshoulder_mail_northrend_b_01.m2", + fileId = "422628", + text = "helm_plate_raidpaladin_f_01_gof.m2", + value = "helm_plate_raidpaladin_f_01_gof.m2", }, { - fileId = "143508", - text = "rshoulder_mail_northrend_b_02.m2", - value = "rshoulder_mail_northrend_b_02.m2", + fileId = "141023", + text = "helm_plate_raidpaladin_f_01_gom.m2", + value = "helm_plate_raidpaladin_f_01_gom.m2", }, { - fileId = "143509", - text = "rshoulder_mail_northrend_b_03.m2", - value = "rshoulder_mail_northrend_b_03.m2", + fileId = "141024", + text = "helm_plate_raidpaladin_f_01_huf.m2", + value = "helm_plate_raidpaladin_f_01_huf.m2", }, { - fileId = "143510", - text = "rshoulder_mail_northrend_b_04.m2", - value = "rshoulder_mail_northrend_b_04.m2", + fileId = "141025", + text = "helm_plate_raidpaladin_f_01_hum.m2", + value = "helm_plate_raidpaladin_f_01_hum.m2", }, { - fileId = "143511", - text = "rshoulder_mail_northrend_d_01.m2", - value = "rshoulder_mail_northrend_d_01.m2", + fileId = "141026", + text = "helm_plate_raidpaladin_f_01_nif.m2", + value = "helm_plate_raidpaladin_f_01_nif.m2", }, { - fileId = "143512", - text = "rshoulder_mail_pvpalliance_a_01.m2", - value = "rshoulder_mail_pvpalliance_a_01.m2", + fileId = "141027", + text = "helm_plate_raidpaladin_f_01_nim.m2", + value = "helm_plate_raidpaladin_f_01_nim.m2", }, { - fileId = "143513", - text = "rshoulder_mail_pvpalliance_c_01.m2", - value = "rshoulder_mail_pvpalliance_c_01.m2", + fileId = "141028", + text = "helm_plate_raidpaladin_f_01_orf.m2", + value = "helm_plate_raidpaladin_f_01_orf.m2", }, { - fileId = "143514", - text = "rshoulder_mail_pvphorde_a_01.m2", - value = "rshoulder_mail_pvphorde_a_01.m2", + fileId = "141029", + text = "helm_plate_raidpaladin_f_01_orm.m2", + value = "helm_plate_raidpaladin_f_01_orm.m2", }, { - fileId = "143515", - text = "rshoulder_mail_pvphorde_c_01.m2", - value = "rshoulder_mail_pvphorde_c_01.m2", + fileId = "141030", + text = "helm_plate_raidpaladin_f_01_scf.m2", + value = "helm_plate_raidpaladin_f_01_scf.m2", }, { - fileId = "238474", - text = "rshoulder_mail_pvphunter_b_01.m2", - value = "rshoulder_mail_pvphunter_b_01.m2", + fileId = "141031", + text = "helm_plate_raidpaladin_f_01_scm.m2", + value = "helm_plate_raidpaladin_f_01_scm.m2", }, { - fileId = "254168", - text = "rshoulder_mail_pvphunter_b_02.m2", - value = "rshoulder_mail_pvphunter_b_02.m2", + fileId = "141032", + text = "helm_plate_raidpaladin_f_01_taf.m2", + value = "helm_plate_raidpaladin_f_01_taf.m2", }, { - fileId = "307201", - text = "rshoulder_mail_pvphunter_b_03.m2", - value = "rshoulder_mail_pvphunter_b_03.m2", + fileId = "141033", + text = "helm_plate_raidpaladin_f_01_tam.m2", + value = "helm_plate_raidpaladin_f_01_tam.m2", }, { - fileId = "344348", - text = "rshoulder_mail_pvphunter_b_04.m2", - value = "rshoulder_mail_pvphunter_b_04.m2", + fileId = "141034", + text = "helm_plate_raidpaladin_f_01_trf.m2", + value = "helm_plate_raidpaladin_f_01_trf.m2", }, { - fileId = "238475", - text = "rshoulder_mail_pvpshaman_b_01.m2", - value = "rshoulder_mail_pvpshaman_b_01.m2", + fileId = "141035", + text = "helm_plate_raidpaladin_f_01_trm.m2", + value = "helm_plate_raidpaladin_f_01_trm.m2", }, { - fileId = "298611", - text = "rshoulder_mail_pvpshaman_b_02.m2", - value = "rshoulder_mail_pvpshaman_b_02.m2", + fileId = "454279", + text = "helm_plate_raidpaladin_f_01_wof.m2", + value = "helm_plate_raidpaladin_f_01_wof.m2", }, { - fileId = "313413", - text = "rshoulder_mail_pvpshaman_b_03.m2", - value = "rshoulder_mail_pvpshaman_b_03.m2", + fileId = "422629", + text = "helm_plate_raidpaladin_f_01_wom.m2", + value = "helm_plate_raidpaladin_f_01_wom.m2", }, { - fileId = "349985", - text = "rshoulder_mail_pvpshaman_b_04.m2", - value = "rshoulder_mail_pvpshaman_b_04.m2", + fileId = "238196", + text = "helm_plate_raidpaladin_g_01_bef.m2", + value = "helm_plate_raidpaladin_g_01_bef.m2", }, { - fileId = "143516", - text = "rshoulder_mail_raidhunter_a_01.m2", - value = "rshoulder_mail_raidhunter_a_01.m2", + fileId = "238197", + text = "helm_plate_raidpaladin_g_01_bem.m2", + value = "helm_plate_raidpaladin_g_01_bem.m2", }, { - fileId = "143517", - text = "rshoulder_mail_raidhunter_b_01.m2", - value = "rshoulder_mail_raidhunter_b_01.m2", + fileId = "238198", + text = "helm_plate_raidpaladin_g_01_drf.m2", + value = "helm_plate_raidpaladin_g_01_drf.m2", }, { - fileId = "143518", - text = "rshoulder_mail_raidhunter_c_01.m2", - value = "rshoulder_mail_raidhunter_c_01.m2", + fileId = "238199", + text = "helm_plate_raidpaladin_g_01_drm.m2", + value = "helm_plate_raidpaladin_g_01_drm.m2", }, { - fileId = "238476", - text = "rshoulder_mail_raidhunter_c_02.m2", - value = "rshoulder_mail_raidhunter_c_02.m2", + fileId = "238200", + text = "helm_plate_raidpaladin_g_01_dwf.m2", + value = "helm_plate_raidpaladin_g_01_dwf.m2", }, { - fileId = "143519", - text = "rshoulder_mail_raidhunter_d_01.m2", - value = "rshoulder_mail_raidhunter_d_01.m2", + fileId = "238201", + text = "helm_plate_raidpaladin_g_01_dwm.m2", + value = "helm_plate_raidpaladin_g_01_dwm.m2", }, { - fileId = "143520", - text = "rshoulder_mail_raidhunter_e_01.m2", - value = "rshoulder_mail_raidhunter_e_01.m2", + fileId = "238202", + text = "helm_plate_raidpaladin_g_01_gnf.m2", + value = "helm_plate_raidpaladin_g_01_gnf.m2", }, { - fileId = "143521", - text = "rshoulder_mail_raidhunter_f_01.m2", - value = "rshoulder_mail_raidhunter_f_01.m2", + fileId = "238203", + text = "helm_plate_raidpaladin_g_01_gnm.m2", + value = "helm_plate_raidpaladin_g_01_gnm.m2", }, { - fileId = "143522", - text = "rshoulder_mail_raidhunter_g_01.m2", - value = "rshoulder_mail_raidhunter_g_01.m2", + fileId = "238204", + text = "helm_plate_raidpaladin_g_01_gof.m2", + value = "helm_plate_raidpaladin_g_01_gof.m2", }, { - fileId = "337192", - text = "rshoulder_mail_raidhunter_h_01.m2", - value = "rshoulder_mail_raidhunter_h_01.m2", + fileId = "238205", + text = "helm_plate_raidpaladin_g_01_gom.m2", + value = "helm_plate_raidpaladin_g_01_gom.m2", }, { - fileId = "143523", - text = "rshoulder_mail_raidshaman_a_01.m2", - value = "rshoulder_mail_raidshaman_a_01.m2", + fileId = "238206", + text = "helm_plate_raidpaladin_g_01_huf.m2", + value = "helm_plate_raidpaladin_g_01_huf.m2", }, { - fileId = "143524", - text = "rshoulder_mail_raidshaman_b_01.m2", - value = "rshoulder_mail_raidshaman_b_01.m2", + fileId = "238207", + text = "helm_plate_raidpaladin_g_01_hum.m2", + value = "helm_plate_raidpaladin_g_01_hum.m2", }, { - fileId = "238477", - text = "rshoulder_mail_raidshaman_c_02.m2", - value = "rshoulder_mail_raidshaman_c_02.m2", + fileId = "238208", + text = "helm_plate_raidpaladin_g_01_nif.m2", + value = "helm_plate_raidpaladin_g_01_nif.m2", }, { - fileId = "143525", - text = "rshoulder_mail_raidshaman_d_01.m2", - value = "rshoulder_mail_raidshaman_d_01.m2", + fileId = "238209", + text = "helm_plate_raidpaladin_g_01_nim.m2", + value = "helm_plate_raidpaladin_g_01_nim.m2", }, { - fileId = "143526", - text = "rshoulder_mail_raidshaman_e_01.m2", - value = "rshoulder_mail_raidshaman_e_01.m2", + fileId = "238210", + text = "helm_plate_raidpaladin_g_01_orf.m2", + value = "helm_plate_raidpaladin_g_01_orf.m2", }, { - fileId = "143527", - text = "rshoulder_mail_raidshaman_f_01.m2", - value = "rshoulder_mail_raidshaman_f_01.m2", + fileId = "238211", + text = "helm_plate_raidpaladin_g_01_orm.m2", + value = "helm_plate_raidpaladin_g_01_orm.m2", }, { - fileId = "249251", - text = "rshoulder_mail_raidshaman_g_01.m2", - value = "rshoulder_mail_raidshaman_g_01.m2", + fileId = "238212", + text = "helm_plate_raidpaladin_g_01_scf.m2", + value = "helm_plate_raidpaladin_g_01_scf.m2", }, { - fileId = "349164", - text = "rshoulder_mail_raidshaman_h_01.m2", - value = "rshoulder_mail_raidshaman_h_01.m2", + fileId = "238213", + text = "helm_plate_raidpaladin_g_01_scm.m2", + value = "helm_plate_raidpaladin_g_01_scm.m2", }, { - fileId = "353040", - text = "rshoulder_mail_raidshaman_h_02.m2", - value = "rshoulder_mail_raidshaman_h_02.m2", + fileId = "238214", + text = "helm_plate_raidpaladin_g_01_taf.m2", + value = "helm_plate_raidpaladin_g_01_taf.m2", }, { - fileId = "143528", - text = "rshoulder_mail_sunwell_d_01.m2", - value = "rshoulder_mail_sunwell_d_01.m2", + fileId = "238215", + text = "helm_plate_raidpaladin_g_01_tam.m2", + value = "helm_plate_raidpaladin_g_01_tam.m2", }, { - fileId = "143529", - text = "rshoulder_mail_zulaman_d_01.m2", - value = "rshoulder_mail_zulaman_d_01.m2", + fileId = "238216", + text = "helm_plate_raidpaladin_g_01_trf.m2", + value = "helm_plate_raidpaladin_g_01_trf.m2", }, { - fileId = "143530", - text = "rshoulder_mail_zulaman_d_03.m2", - value = "rshoulder_mail_zulaman_d_03.m2", + fileId = "238217", + text = "helm_plate_raidpaladin_g_01_trm.m2", + value = "helm_plate_raidpaladin_g_01_trm.m2", }, { - fileId = "143531", - text = "rshoulder_plate_a_01.m2", - value = "rshoulder_plate_a_01.m2", + fileId = "454280", + text = "helm_plate_raidpaladin_g_01_wof.m2", + value = "helm_plate_raidpaladin_g_01_wof.m2", }, { - fileId = "143532", - text = "rshoulder_plate_a_02.m2", - value = "rshoulder_plate_a_02.m2", + fileId = "422630", + text = "helm_plate_raidpaladin_g_01_wom.m2", + value = "helm_plate_raidpaladin_g_01_wom.m2", }, { - fileId = "143533", - text = "rshoulder_plate_a_02ironforgeguard.m2", - value = "rshoulder_plate_a_02ironforgeguard.m2", + fileId = "341223", + text = "helm_plate_raidpaladin_h_01_bef.m2", + value = "helm_plate_raidpaladin_h_01_bef.m2", }, { - fileId = "143534", - text = "rshoulder_plate_a_03.m2", - value = "rshoulder_plate_a_03.m2", + fileId = "341224", + text = "helm_plate_raidpaladin_h_01_bem.m2", + value = "helm_plate_raidpaladin_h_01_bem.m2", }, { - fileId = "143535", - text = "rshoulder_plate_a_04.m2", - value = "rshoulder_plate_a_04.m2", + fileId = "348796", + text = "helm_plate_raidpaladin_h_01_drf.m2", + value = "helm_plate_raidpaladin_h_01_drf.m2", }, { - fileId = "143536", - text = "rshoulder_plate_ahnqiraj_a_01.m2", - value = "rshoulder_plate_ahnqiraj_a_01.m2", + fileId = "341225", + text = "helm_plate_raidpaladin_h_01_drm.m2", + value = "helm_plate_raidpaladin_h_01_drm.m2", }, { - fileId = "311766", - text = "rshoulder_plate_argentalliance_d_01.m2", - value = "rshoulder_plate_argentalliance_d_01.m2", + fileId = "353521", + text = "helm_plate_raidpaladin_h_01_dwf.m2", + value = "helm_plate_raidpaladin_h_01_dwf.m2", }, { - fileId = "315692", - text = "rshoulder_plate_argenthorde_d_01.m2", - value = "rshoulder_plate_argenthorde_d_01.m2", + fileId = "341226", + text = "helm_plate_raidpaladin_h_01_dwm.m2", + value = "helm_plate_raidpaladin_h_01_dwm.m2", }, { - fileId = "143537", - text = "rshoulder_plate_b_01.m2", - value = "rshoulder_plate_b_01.m2", + fileId = "354741", + text = "helm_plate_raidpaladin_h_01_gnf.m2", + value = "helm_plate_raidpaladin_h_01_gnf.m2", }, { - fileId = "143538", - text = "rshoulder_plate_b_02.m2", - value = "rshoulder_plate_b_02.m2", + fileId = "341227", + text = "helm_plate_raidpaladin_h_01_gnm.m2", + value = "helm_plate_raidpaladin_h_01_gnm.m2", }, { - fileId = "143539", - text = "rshoulder_plate_b_03.m2", - value = "rshoulder_plate_b_03.m2", + fileId = "341228", + text = "helm_plate_raidpaladin_h_01_gof.m2", + value = "helm_plate_raidpaladin_h_01_gof.m2", }, { - fileId = "143540", - text = "rshoulder_plate_b_04.m2", - value = "rshoulder_plate_b_04.m2", + fileId = "341230", + text = "helm_plate_raidpaladin_h_01_gom.m2", + value = "helm_plate_raidpaladin_h_01_gom.m2", }, { - fileId = "143541", - text = "rshoulder_plate_b_05.m2", - value = "rshoulder_plate_b_05.m2", + fileId = "341231", + text = "helm_plate_raidpaladin_h_01_huf.m2", + value = "helm_plate_raidpaladin_h_01_huf.m2", }, { - fileId = "143542", - text = "rshoulder_plate_bloodknight_d_02.m2", - value = "rshoulder_plate_bloodknight_d_02.m2", + fileId = "341232", + text = "helm_plate_raidpaladin_h_01_hum.m2", + value = "helm_plate_raidpaladin_h_01_hum.m2", }, { - fileId = "143543", - text = "rshoulder_plate_c_01.m2", - value = "rshoulder_plate_c_01.m2", + fileId = "341233", + text = "helm_plate_raidpaladin_h_01_nif.m2", + value = "helm_plate_raidpaladin_h_01_nif.m2", }, { - fileId = "143544", - text = "rshoulder_plate_c_03.m2", - value = "rshoulder_plate_c_03.m2", + fileId = "341234", + text = "helm_plate_raidpaladin_h_01_nim.m2", + value = "helm_plate_raidpaladin_h_01_nim.m2", }, { - fileId = "143545", - text = "rshoulder_plate_c_04.m2", - value = "rshoulder_plate_c_04.m2", + fileId = "341235", + text = "helm_plate_raidpaladin_h_01_orf.m2", + value = "helm_plate_raidpaladin_h_01_orf.m2", }, { - fileId = "143546", - text = "rshoulder_plate_c_05.m2", - value = "rshoulder_plate_c_05.m2", + fileId = "341236", + text = "helm_plate_raidpaladin_h_01_orm.m2", + value = "helm_plate_raidpaladin_h_01_orm.m2", }, { - fileId = "143547", - text = "rshoulder_plate_d_01.m2", - value = "rshoulder_plate_d_01.m2", + fileId = "341237", + text = "helm_plate_raidpaladin_h_01_scf.m2", + value = "helm_plate_raidpaladin_h_01_scf.m2", }, { - fileId = "143548", - text = "rshoulder_plate_d_02.m2", - value = "rshoulder_plate_d_02.m2", + fileId = "341238", + text = "helm_plate_raidpaladin_h_01_scm.m2", + value = "helm_plate_raidpaladin_h_01_scm.m2", }, { - fileId = "143549", - text = "rshoulder_plate_d_03.m2", - value = "rshoulder_plate_d_03.m2", + fileId = "350708", + text = "helm_plate_raidpaladin_h_01_taf.m2", + value = "helm_plate_raidpaladin_h_01_taf.m2", }, { - fileId = "143550", - text = "rshoulder_plate_d_04.m2", - value = "rshoulder_plate_d_04.m2", + fileId = "341239", + text = "helm_plate_raidpaladin_h_01_tam.m2", + value = "helm_plate_raidpaladin_h_01_tam.m2", }, { - fileId = "143551", - text = "rshoulder_plate_d_05.m2", - value = "rshoulder_plate_d_05.m2", + fileId = "350709", + text = "helm_plate_raidpaladin_h_01_trf.m2", + value = "helm_plate_raidpaladin_h_01_trf.m2", }, { - fileId = "143552", - text = "rshoulder_plate_d_06.m2", - value = "rshoulder_plate_d_06.m2", + fileId = "350710", + text = "helm_plate_raidpaladin_h_01_trm.m2", + value = "helm_plate_raidpaladin_h_01_trm.m2", }, { - fileId = "238478", - text = "rshoulder_plate_deathknight_b_01.m2", - value = "rshoulder_plate_deathknight_b_01.m2", + fileId = "462569", + text = "helm_plate_raidpaladin_h_01_wof.m2", + value = "helm_plate_raidpaladin_h_01_wof.m2", }, { - fileId = "143553", - text = "rshoulder_plate_draeneiguard_a_01.m2", - value = "rshoulder_plate_draeneiguard_a_01.m2", + fileId = "427205", + text = "helm_plate_raidpaladin_h_01_wom.m2", + value = "helm_plate_raidpaladin_h_01_wom.m2", }, { - fileId = "143554", - text = "rshoulder_plate_draeneiguard_b_01.m2", - value = "rshoulder_plate_draeneiguard_b_01.m2", + fileId = "466318", + text = "helm_plate_raidpaladin_i_01_bef.m2", + value = "helm_plate_raidpaladin_i_01_bef.m2", }, { - fileId = "143555", - text = "rshoulder_plate_dungeonpaladin_a_01.m2", - value = "rshoulder_plate_dungeonpaladin_a_01.m2", + fileId = "466319", + text = "helm_plate_raidpaladin_i_01_bem.m2", + value = "helm_plate_raidpaladin_i_01_bem.m2", }, { - fileId = "143556", - text = "rshoulder_plate_dungeonpaladin_b_01.m2", - value = "rshoulder_plate_dungeonpaladin_b_01.m2", + fileId = "466320", + text = "helm_plate_raidpaladin_i_01_drf.m2", + value = "helm_plate_raidpaladin_i_01_drf.m2", }, { - fileId = "143557", - text = "rshoulder_plate_dungeonplate_c_01.m2", - value = "rshoulder_plate_dungeonplate_c_01.m2", + fileId = "466321", + text = "helm_plate_raidpaladin_i_01_drm.m2", + value = "helm_plate_raidpaladin_i_01_drm.m2", }, { - fileId = "343648", - text = "rshoulder_plate_dungeonplate_c_02.m2", - value = "rshoulder_plate_dungeonplate_c_02.m2", + fileId = "466322", + text = "helm_plate_raidpaladin_i_01_dwf.m2", + value = "helm_plate_raidpaladin_i_01_dwf.m2", }, { - fileId = "143558", - text = "rshoulder_plate_dungeonwarrior_a_01.m2", - value = "rshoulder_plate_dungeonwarrior_a_01.m2", + fileId = "466323", + text = "helm_plate_raidpaladin_i_01_dwm.m2", + value = "helm_plate_raidpaladin_i_01_dwm.m2", }, { - fileId = "143559", - text = "rshoulder_plate_dungeonwarrior_b_01.m2", - value = "rshoulder_plate_dungeonwarrior_b_01.m2", + fileId = "466324", + text = "helm_plate_raidpaladin_i_01_gnf.m2", + value = "helm_plate_raidpaladin_i_01_gnf.m2", }, { - fileId = "143560", - text = "rshoulder_plate_haremmatron_d_01.m2", - value = "rshoulder_plate_haremmatron_d_01.m2", + fileId = "466325", + text = "helm_plate_raidpaladin_i_01_gnm.m2", + value = "helm_plate_raidpaladin_i_01_gnm.m2", }, { - fileId = "143561", - text = "rshoulder_plate_horde_c_05.m2", - value = "rshoulder_plate_horde_c_05.m2", + fileId = "466326", + text = "helm_plate_raidpaladin_i_01_gof.m2", + value = "helm_plate_raidpaladin_i_01_gof.m2", }, { - fileId = "143562", - text = "rshoulder_plate_horde_d_02.m2", - value = "rshoulder_plate_horde_d_02.m2", + fileId = "466327", + text = "helm_plate_raidpaladin_i_01_gom.m2", + value = "helm_plate_raidpaladin_i_01_gom.m2", }, { - fileId = "143563", - text = "rshoulder_plate_hyjal_d_04.m2", - value = "rshoulder_plate_hyjal_d_04.m2", + fileId = "466328", + text = "helm_plate_raidpaladin_i_01_huf.m2", + value = "helm_plate_raidpaladin_i_01_huf.m2", }, { - fileId = "143564", - text = "rshoulder_plate_hyjal_d_05.m2", - value = "rshoulder_plate_hyjal_d_05.m2", + fileId = "466329", + text = "helm_plate_raidpaladin_i_01_hum.m2", + value = "helm_plate_raidpaladin_i_01_hum.m2", }, { - fileId = "143565", - text = "rshoulder_plate_northrend_b_01.m2", - value = "rshoulder_plate_northrend_b_01.m2", + fileId = "466330", + text = "helm_plate_raidpaladin_i_01_nif.m2", + value = "helm_plate_raidpaladin_i_01_nif.m2", }, { - fileId = "143566", - text = "rshoulder_plate_northrend_b_02.m2", - value = "rshoulder_plate_northrend_b_02.m2", + fileId = "466331", + text = "helm_plate_raidpaladin_i_01_nim.m2", + value = "helm_plate_raidpaladin_i_01_nim.m2", }, { - fileId = "143567", - text = "rshoulder_plate_northrend_b_03.m2", - value = "rshoulder_plate_northrend_b_03.m2", + fileId = "466332", + text = "helm_plate_raidpaladin_i_01_orf.m2", + value = "helm_plate_raidpaladin_i_01_orf.m2", }, { - fileId = "143568", - text = "rshoulder_plate_northrend_c_01.m2", - value = "rshoulder_plate_northrend_c_01.m2", + fileId = "466333", + text = "helm_plate_raidpaladin_i_01_orm.m2", + value = "helm_plate_raidpaladin_i_01_orm.m2", }, { - fileId = "143569", - text = "rshoulder_plate_northrend_d_01.m2", - value = "rshoulder_plate_northrend_d_01.m2", + fileId = "466334", + text = "helm_plate_raidpaladin_i_01_scf.m2", + value = "helm_plate_raidpaladin_i_01_scf.m2", }, { - fileId = "143570", - text = "rshoulder_plate_pvpalliance_a_01.m2", - value = "rshoulder_plate_pvpalliance_a_01.m2", + fileId = "466335", + text = "helm_plate_raidpaladin_i_01_scm.m2", + value = "helm_plate_raidpaladin_i_01_scm.m2", }, { - fileId = "238479", - text = "rshoulder_plate_pvpdeathknight_b_01.m2", - value = "rshoulder_plate_pvpdeathknight_b_01.m2", + fileId = "466336", + text = "helm_plate_raidpaladin_i_01_taf.m2", + value = "helm_plate_raidpaladin_i_01_taf.m2", }, { - fileId = "254906", - text = "rshoulder_plate_pvpdeathknight_b_02.m2", - value = "rshoulder_plate_pvpdeathknight_b_02.m2", + fileId = "466337", + text = "helm_plate_raidpaladin_i_01_tam.m2", + value = "helm_plate_raidpaladin_i_01_tam.m2", }, { - fileId = "304743", - text = "rshoulder_plate_pvpdeathknight_b_03.m2", - value = "rshoulder_plate_pvpdeathknight_b_03.m2", + fileId = "466338", + text = "helm_plate_raidpaladin_i_01_trf.m2", + value = "helm_plate_raidpaladin_i_01_trf.m2", }, { - fileId = "343846", - text = "rshoulder_plate_pvpdeathknight_b_04.m2", - value = "rshoulder_plate_pvpdeathknight_b_04.m2", + fileId = "466339", + text = "helm_plate_raidpaladin_i_01_trm.m2", + value = "helm_plate_raidpaladin_i_01_trm.m2", }, { - fileId = "143571", - text = "rshoulder_plate_pvphorde_a_01.m2", - value = "rshoulder_plate_pvphorde_a_01.m2", + fileId = "466340", + text = "helm_plate_raidpaladin_i_01_wof.m2", + value = "helm_plate_raidpaladin_i_01_wof.m2", }, { - fileId = "238480", - text = "rshoulder_plate_pvppaladin_b_01.m2", - value = "rshoulder_plate_pvppaladin_b_01.m2", + fileId = "466341", + text = "helm_plate_raidpaladin_i_01_wom.m2", + value = "helm_plate_raidpaladin_i_01_wom.m2", }, { - fileId = "254760", - text = "rshoulder_plate_pvppaladin_b_02.m2", - value = "rshoulder_plate_pvppaladin_b_02.m2", + fileId = "514105", + text = "helm_plate_raidpaladin_j_01_bef.m2", + value = "helm_plate_raidpaladin_j_01_bef.m2", }, { - fileId = "304826", - text = "rshoulder_plate_pvppaladin_b_03.m2", - value = "rshoulder_plate_pvppaladin_b_03.m2", + fileId = "514107", + text = "helm_plate_raidpaladin_j_01_bem.m2", + value = "helm_plate_raidpaladin_j_01_bem.m2", }, { - fileId = "346081", - text = "rshoulder_plate_pvppaladin_b_04.m2", - value = "rshoulder_plate_pvppaladin_b_04.m2", + fileId = "514109", + text = "helm_plate_raidpaladin_j_01_drf.m2", + value = "helm_plate_raidpaladin_j_01_drf.m2", }, { - fileId = "238481", - text = "rshoulder_plate_pvpwarrior_b_01.m2", - value = "rshoulder_plate_pvpwarrior_b_01.m2", + fileId = "514111", + text = "helm_plate_raidpaladin_j_01_drm.m2", + value = "helm_plate_raidpaladin_j_01_drm.m2", }, { - fileId = "254359", - text = "rshoulder_plate_pvpwarrior_b_02.m2", - value = "rshoulder_plate_pvpwarrior_b_02.m2", + fileId = "514113", + text = "helm_plate_raidpaladin_j_01_dwf.m2", + value = "helm_plate_raidpaladin_j_01_dwf.m2", }, { - fileId = "304451", - text = "rshoulder_plate_pvpwarrior_b_03.m2", - value = "rshoulder_plate_pvpwarrior_b_03.m2", + fileId = "514115", + text = "helm_plate_raidpaladin_j_01_dwm.m2", + value = "helm_plate_raidpaladin_j_01_dwm.m2", }, { - fileId = "345730", - text = "rshoulder_plate_pvpwarrior_b_04.m2", - value = "rshoulder_plate_pvpwarrior_b_04.m2", + fileId = "514117", + text = "helm_plate_raidpaladin_j_01_gnf.m2", + value = "helm_plate_raidpaladin_j_01_gnf.m2", }, { - fileId = "238482", - text = "rshoulder_plate_pvpwarrior_c_02.m2", - value = "rshoulder_plate_pvpwarrior_c_02.m2", + fileId = "514119", + text = "helm_plate_raidpaladin_j_01_gnm.m2", + value = "helm_plate_raidpaladin_j_01_gnm.m2", }, { - fileId = "238483", - text = "rshoulder_plate_raiddeathknight_c_02.m2", - value = "rshoulder_plate_raiddeathknight_c_02.m2", + fileId = "514121", + text = "helm_plate_raidpaladin_j_01_gof.m2", + value = "helm_plate_raidpaladin_j_01_gof.m2", }, { - fileId = "143572", - text = "rshoulder_plate_raiddeathknight_g_01.m2", - value = "rshoulder_plate_raiddeathknight_g_01.m2", + fileId = "514123", + text = "helm_plate_raidpaladin_j_01_gom.m2", + value = "helm_plate_raidpaladin_j_01_gom.m2", }, { - fileId = "337701", - text = "rshoulder_plate_raiddeathknight_h_01.m2", - value = "rshoulder_plate_raiddeathknight_h_01.m2", + fileId = "514125", + text = "helm_plate_raidpaladin_j_01_huf.m2", + value = "helm_plate_raidpaladin_j_01_huf.m2", }, { - fileId = "143573", - text = "rshoulder_plate_raidpaladin_a_01.m2", - value = "rshoulder_plate_raidpaladin_a_01.m2", + fileId = "514127", + text = "helm_plate_raidpaladin_j_01_hum.m2", + value = "helm_plate_raidpaladin_j_01_hum.m2", }, { - fileId = "143574", - text = "rshoulder_plate_raidpaladin_b_01.m2", - value = "rshoulder_plate_raidpaladin_b_01.m2", + fileId = "514129", + text = "helm_plate_raidpaladin_j_01_nif.m2", + value = "helm_plate_raidpaladin_j_01_nif.m2", }, { - fileId = "143575", - text = "rshoulder_plate_raidpaladin_c_01.m2", - value = "rshoulder_plate_raidpaladin_c_01.m2", + fileId = "514131", + text = "helm_plate_raidpaladin_j_01_nim.m2", + value = "helm_plate_raidpaladin_j_01_nim.m2", }, { - fileId = "143576", - text = "rshoulder_plate_raidpaladin_d_01.m2", - value = "rshoulder_plate_raidpaladin_d_01.m2", + fileId = "514133", + text = "helm_plate_raidpaladin_j_01_orf.m2", + value = "helm_plate_raidpaladin_j_01_orf.m2", }, { - fileId = "143577", - text = "rshoulder_plate_raidpaladin_e_01.m2", - value = "rshoulder_plate_raidpaladin_e_01.m2", + fileId = "514135", + text = "helm_plate_raidpaladin_j_01_orm.m2", + value = "helm_plate_raidpaladin_j_01_orm.m2", }, { - fileId = "143578", - text = "rshoulder_plate_raidpaladin_f_01.m2", - value = "rshoulder_plate_raidpaladin_f_01.m2", + fileId = "514137", + text = "helm_plate_raidpaladin_j_01_scf.m2", + value = "helm_plate_raidpaladin_j_01_scf.m2", }, { - fileId = "238484", - text = "rshoulder_plate_raidpaladin_g_01.m2", - value = "rshoulder_plate_raidpaladin_g_01.m2", + fileId = "514139", + text = "helm_plate_raidpaladin_j_01_scm.m2", + value = "helm_plate_raidpaladin_j_01_scm.m2", }, { - fileId = "341247", - text = "rshoulder_plate_raidpaladin_h_01.m2", - value = "rshoulder_plate_raidpaladin_h_01.m2", + fileId = "514141", + text = "helm_plate_raidpaladin_j_01_taf.m2", + value = "helm_plate_raidpaladin_j_01_taf.m2", }, { - fileId = "143583", - text = "rshoulder_plate_raidwarrior_a_01.m2", - value = "rshoulder_plate_raidwarrior_a_01.m2", + fileId = "514143", + text = "helm_plate_raidpaladin_j_01_tam.m2", + value = "helm_plate_raidpaladin_j_01_tam.m2", }, { - fileId = "143584", - text = "rshoulder_plate_raidwarrior_b_01.m2", - value = "rshoulder_plate_raidwarrior_b_01.m2", + fileId = "514145", + text = "helm_plate_raidpaladin_j_01_trf.m2", + value = "helm_plate_raidpaladin_j_01_trf.m2", }, { - fileId = "143585", - text = "rshoulder_plate_raidwarrior_c_01.m2", - value = "rshoulder_plate_raidwarrior_c_01.m2", + fileId = "514147", + text = "helm_plate_raidpaladin_j_01_trm.m2", + value = "helm_plate_raidpaladin_j_01_trm.m2", }, { - fileId = "143586", - text = "rshoulder_plate_raidwarrior_d_01.m2", - value = "rshoulder_plate_raidwarrior_d_01.m2", + fileId = "514149", + text = "helm_plate_raidpaladin_j_01_wof.m2", + value = "helm_plate_raidpaladin_j_01_wof.m2", }, { - fileId = "143587", - text = "rshoulder_plate_raidwarrior_e_01.m2", - value = "rshoulder_plate_raidwarrior_e_01.m2", + fileId = "514151", + text = "helm_plate_raidpaladin_j_01_wom.m2", + value = "helm_plate_raidpaladin_j_01_wom.m2", }, { - fileId = "143588", - text = "rshoulder_plate_raidwarrior_f_01.m2", - value = "rshoulder_plate_raidwarrior_f_01.m2", + fileId = "535483", + text = "helm_plate_raidpaladin_k_01_bef.m2", + value = "helm_plate_raidpaladin_k_01_bef.m2", }, { - fileId = "251563", - text = "rshoulder_plate_raidwarrior_g_01.m2", - value = "rshoulder_plate_raidwarrior_g_01.m2", + fileId = "535485", + text = "helm_plate_raidpaladin_k_01_bem.m2", + value = "helm_plate_raidpaladin_k_01_bem.m2", }, { - fileId = "331371", - text = "rshoulder_plate_raidwarrior_h_01.m2", - value = "rshoulder_plate_raidwarrior_h_01.m2", + fileId = "535487", + text = "helm_plate_raidpaladin_k_01_drf.m2", + value = "helm_plate_raidpaladin_k_01_drf.m2", }, { - fileId = "143589", - text = "rshoulder_plate_sunwell_c_01.m2", - value = "rshoulder_plate_sunwell_c_01.m2", + fileId = "535489", + text = "helm_plate_raidpaladin_k_01_drm.m2", + value = "helm_plate_raidpaladin_k_01_drm.m2", }, { - fileId = "143590", - text = "rshoulder_plate_sunwell_d_01.m2", - value = "rshoulder_plate_sunwell_d_01.m2", + fileId = "535491", + text = "helm_plate_raidpaladin_k_01_dwf.m2", + value = "helm_plate_raidpaladin_k_01_dwf.m2", }, { - fileId = "143591", - text = "rshoulder_plate_zulaman_d_01.m2", - value = "rshoulder_plate_zulaman_d_01.m2", + fileId = "535493", + text = "helm_plate_raidpaladin_k_01_dwm.m2", + value = "helm_plate_raidpaladin_k_01_dwm.m2", }, { - fileId = "143592", - text = "rshoulder_plate_zulaman_d_03.m2", - value = "rshoulder_plate_zulaman_d_03.m2", + fileId = "535495", + text = "helm_plate_raidpaladin_k_01_gnf.m2", + value = "helm_plate_raidpaladin_k_01_gnf.m2", }, { - fileId = "306511", - text = "rshoulder_pvppriest_b_03.m2", - value = "rshoulder_pvppriest_b_03.m2", + fileId = "535497", + text = "helm_plate_raidpaladin_k_01_gnm.m2", + value = "helm_plate_raidpaladin_k_01_gnm.m2", }, { - fileId = "143593", - text = "rshoulder_raiddruid_b_01.m2", - value = "rshoulder_raiddruid_b_01.m2", + fileId = "535499", + text = "helm_plate_raidpaladin_k_01_gof.m2", + value = "helm_plate_raidpaladin_k_01_gof.m2", }, { - fileId = "143594", - text = "rshoulder_robe_a_01.m2", - value = "rshoulder_robe_a_01.m2", + fileId = "535501", + text = "helm_plate_raidpaladin_k_01_gom.m2", + value = "helm_plate_raidpaladin_k_01_gom.m2", }, { - fileId = "143595", - text = "rshoulder_robe_a_02.m2", - value = "rshoulder_robe_a_02.m2", + fileId = "535503", + text = "helm_plate_raidpaladin_k_01_huf.m2", + value = "helm_plate_raidpaladin_k_01_huf.m2", }, { - fileId = "143596", - text = "rshoulder_robe_a_03.m2", - value = "rshoulder_robe_a_03.m2", + fileId = "535505", + text = "helm_plate_raidpaladin_k_01_hum.m2", + value = "helm_plate_raidpaladin_k_01_hum.m2", }, { - fileId = "143597", - text = "rshoulder_robe_ahnqiraj_a_01.m2", - value = "rshoulder_robe_ahnqiraj_a_01.m2", + fileId = "535507", + text = "helm_plate_raidpaladin_k_01_nif.m2", + value = "helm_plate_raidpaladin_k_01_nif.m2", }, { - fileId = "314972", - text = "rshoulder_robe_argentalliance_d_01.m2", - value = "rshoulder_robe_argentalliance_d_01.m2", + fileId = "535509", + text = "helm_plate_raidpaladin_k_01_nim.m2", + value = "helm_plate_raidpaladin_k_01_nim.m2", }, { - fileId = "317629", - text = "rshoulder_robe_argenthorde_d_01.m2", - value = "rshoulder_robe_argenthorde_d_01.m2", + fileId = "535511", + text = "helm_plate_raidpaladin_k_01_orf.m2", + value = "helm_plate_raidpaladin_k_01_orf.m2", }, { - fileId = "143598", - text = "rshoulder_robe_b_01.m2", - value = "rshoulder_robe_b_01.m2", + fileId = "535513", + text = "helm_plate_raidpaladin_k_01_orm.m2", + value = "helm_plate_raidpaladin_k_01_orm.m2", }, { - fileId = "143599", - text = "rshoulder_robe_b_02.m2", - value = "rshoulder_robe_b_02.m2", + fileId = "535515", + text = "helm_plate_raidpaladin_k_01_scf.m2", + value = "helm_plate_raidpaladin_k_01_scf.m2", }, { - fileId = "143600", - text = "rshoulder_robe_b_03.m2", - value = "rshoulder_robe_b_03.m2", + fileId = "535517", + text = "helm_plate_raidpaladin_k_01_scm.m2", + value = "helm_plate_raidpaladin_k_01_scm.m2", }, { - fileId = "143601", - text = "rshoulder_robe_b_04.m2", - value = "rshoulder_robe_b_04.m2", + fileId = "535519", + text = "helm_plate_raidpaladin_k_01_taf.m2", + value = "helm_plate_raidpaladin_k_01_taf.m2", }, { - fileId = "143602", - text = "rshoulder_robe_c_01.m2", - value = "rshoulder_robe_c_01.m2", + fileId = "535521", + text = "helm_plate_raidpaladin_k_01_tam.m2", + value = "helm_plate_raidpaladin_k_01_tam.m2", }, { - fileId = "143603", - text = "rshoulder_robe_c_02.m2", - value = "rshoulder_robe_c_02.m2", + fileId = "535523", + text = "helm_plate_raidpaladin_k_01_trf.m2", + value = "helm_plate_raidpaladin_k_01_trf.m2", }, { - fileId = "143604", - text = "rshoulder_robe_c_03.m2", - value = "rshoulder_robe_c_03.m2", + fileId = "535525", + text = "helm_plate_raidpaladin_k_01_trm.m2", + value = "helm_plate_raidpaladin_k_01_trm.m2", }, { - fileId = "143605", - text = "rshoulder_robe_d_01.m2", - value = "rshoulder_robe_d_01.m2", + fileId = "535527", + text = "helm_plate_raidpaladin_k_01_wof.m2", + value = "helm_plate_raidpaladin_k_01_wof.m2", }, { - fileId = "143606", - text = "rshoulder_robe_d_04.m2", - value = "rshoulder_robe_d_04.m2", + fileId = "535529", + text = "helm_plate_raidpaladin_k_01_wom.m2", + value = "helm_plate_raidpaladin_k_01_wom.m2", }, { - fileId = "143607", - text = "rshoulder_robe_dungeonmage_a_01.m2", - value = "rshoulder_robe_dungeonmage_a_01.m2", + fileId = "141039", + text = "helm_plate_raidwarrior_a_01_bef.m2", + value = "helm_plate_raidwarrior_a_01_bef.m2", }, { - fileId = "143608", - text = "rshoulder_robe_dungeonmage_b_01.m2", - value = "rshoulder_robe_dungeonmage_b_01.m2", + fileId = "141040", + text = "helm_plate_raidwarrior_a_01_bem.m2", + value = "helm_plate_raidwarrior_a_01_bem.m2", }, { - fileId = "143609", - text = "rshoulder_robe_dungeonpriest_a_01.m2", - value = "rshoulder_robe_dungeonpriest_a_01.m2", + fileId = "141041", + text = "helm_plate_raidwarrior_a_01_drf.m2", + value = "helm_plate_raidwarrior_a_01_drf.m2", }, { - fileId = "143610", - text = "rshoulder_robe_dungeonpriest_b_01.m2", - value = "rshoulder_robe_dungeonpriest_b_01.m2", + fileId = "141042", + text = "helm_plate_raidwarrior_a_01_drm.m2", + value = "helm_plate_raidwarrior_a_01_drm.m2", }, { - fileId = "238485", - text = "rshoulder_robe_dungeonrobe_c_01.m2", - value = "rshoulder_robe_dungeonrobe_c_01.m2", + fileId = "141043", + text = "helm_plate_raidwarrior_a_01_dwf.m2", + value = "helm_plate_raidwarrior_a_01_dwf.m2", }, { - fileId = "341485", - text = "rshoulder_robe_dungeonrobe_c_02.m2", - value = "rshoulder_robe_dungeonrobe_c_02.m2", + fileId = "141044", + text = "helm_plate_raidwarrior_a_01_dwm.m2", + value = "helm_plate_raidwarrior_a_01_dwm.m2", }, { - fileId = "143611", - text = "rshoulder_robe_dungeonwarlock_a_01.m2", - value = "rshoulder_robe_dungeonwarlock_a_01.m2", + fileId = "141045", + text = "helm_plate_raidwarrior_a_01_gnf.m2", + value = "helm_plate_raidwarrior_a_01_gnf.m2", }, { - fileId = "143612", - text = "rshoulder_robe_dungeonwarlock_b_01.m2", - value = "rshoulder_robe_dungeonwarlock_b_01.m2", + fileId = "141046", + text = "helm_plate_raidwarrior_a_01_gnm.m2", + value = "helm_plate_raidwarrior_a_01_gnm.m2", }, { - fileId = "143613", - text = "rshoulder_robe_holiday_summerfest_a_01.m2", - value = "rshoulder_robe_holiday_summerfest_a_01.m2", + fileId = "141047", + text = "helm_plate_raidwarrior_a_01_gof.m2", + value = "helm_plate_raidwarrior_a_01_gof.m2", }, { - fileId = "143614", - text = "rshoulder_robe_horde_a_03.m2", - value = "rshoulder_robe_horde_a_03.m2", + fileId = "141048", + text = "helm_plate_raidwarrior_a_01_gom.m2", + value = "helm_plate_raidwarrior_a_01_gom.m2", }, { - fileId = "143615", - text = "rshoulder_robe_horde_d_01.m2", - value = "rshoulder_robe_horde_d_01.m2", + fileId = "141049", + text = "helm_plate_raidwarrior_a_01_huf.m2", + value = "helm_plate_raidwarrior_a_01_huf.m2", }, { - fileId = "143616", - text = "rshoulder_robe_hyjal_d_04.m2", - value = "rshoulder_robe_hyjal_d_04.m2", + fileId = "141050", + text = "helm_plate_raidwarrior_a_01_hum.m2", + value = "helm_plate_raidwarrior_a_01_hum.m2", }, { - fileId = "143617", - text = "rshoulder_robe_northrend_b_01.m2", - value = "rshoulder_robe_northrend_b_01.m2", + fileId = "141051", + text = "helm_plate_raidwarrior_a_01_nif.m2", + value = "helm_plate_raidwarrior_a_01_nif.m2", }, { - fileId = "238486", - text = "rshoulder_robe_northrend_b_02.m2", - value = "rshoulder_robe_northrend_b_02.m2", + fileId = "141052", + text = "helm_plate_raidwarrior_a_01_nim.m2", + value = "helm_plate_raidwarrior_a_01_nim.m2", }, { - fileId = "143618", - text = "rshoulder_robe_northrend_b_03.m2", - value = "rshoulder_robe_northrend_b_03.m2", + fileId = "141053", + text = "helm_plate_raidwarrior_a_01_orf.m2", + value = "helm_plate_raidwarrior_a_01_orf.m2", }, { - fileId = "143619", - text = "rshoulder_robe_northrend_d_01.m2", - value = "rshoulder_robe_northrend_d_01.m2", + fileId = "141054", + text = "helm_plate_raidwarrior_a_01_orm.m2", + value = "helm_plate_raidwarrior_a_01_orm.m2", }, { - fileId = "238487", - text = "rshoulder_robe_plague_a_01.m2", - value = "rshoulder_robe_plague_a_01.m2", + fileId = "141055", + text = "helm_plate_raidwarrior_a_01_scf.m2", + value = "helm_plate_raidwarrior_a_01_scf.m2", }, { - fileId = "143620", - text = "rshoulder_robe_pvpalliance_a_01.m2", - value = "rshoulder_robe_pvpalliance_a_01.m2", + fileId = "141056", + text = "helm_plate_raidwarrior_a_01_scm.m2", + value = "helm_plate_raidwarrior_a_01_scm.m2", }, { - fileId = "143621", - text = "rshoulder_robe_pvpalliance_c_01.m2", - value = "rshoulder_robe_pvpalliance_c_01.m2", + fileId = "141057", + text = "helm_plate_raidwarrior_a_01_taf.m2", + value = "helm_plate_raidwarrior_a_01_taf.m2", }, { - fileId = "143622", - text = "rshoulder_robe_pvphorde_a_01.m2", - value = "rshoulder_robe_pvphorde_a_01.m2", + fileId = "141058", + text = "helm_plate_raidwarrior_a_01_tam.m2", + value = "helm_plate_raidwarrior_a_01_tam.m2", }, { - fileId = "143623", - text = "rshoulder_robe_pvphorde_c_01.m2", - value = "rshoulder_robe_pvphorde_c_01.m2", + fileId = "141059", + text = "helm_plate_raidwarrior_a_01_trf.m2", + value = "helm_plate_raidwarrior_a_01_trf.m2", }, { - fileId = "238488", - text = "rshoulder_robe_pvpwarlock_b_01.m2", - value = "rshoulder_robe_pvpwarlock_b_01.m2", + fileId = "141060", + text = "helm_plate_raidwarrior_a_01_trm.m2", + value = "helm_plate_raidwarrior_a_01_trm.m2", }, { - fileId = "254169", - text = "rshoulder_robe_pvpwarlock_b_02.m2", - value = "rshoulder_robe_pvpwarlock_b_02.m2", + fileId = "462284", + text = "helm_plate_raidwarrior_a_01_wof.m2", + value = "helm_plate_raidwarrior_a_01_wof.m2", }, { - fileId = "305934", - text = "rshoulder_robe_pvpwarlock_b_03.m2", - value = "rshoulder_robe_pvpwarlock_b_03.m2", + fileId = "430072", + text = "helm_plate_raidwarrior_a_01_wom.m2", + value = "helm_plate_raidwarrior_a_01_wom.m2", }, { - fileId = "350614", - text = "rshoulder_robe_pvpwarlock_b_04.m2", - value = "rshoulder_robe_pvpwarlock_b_04.m2", + fileId = "141066", + text = "helm_plate_raidwarrior_b_01_bef.m2", + value = "helm_plate_raidwarrior_b_01_bef.m2", }, { - fileId = "143624", - text = "rshoulder_robe_raid_a_01.m2", - value = "rshoulder_robe_raid_a_01.m2", + fileId = "141067", + text = "helm_plate_raidwarrior_b_01_bem.m2", + value = "helm_plate_raidwarrior_b_01_bem.m2", }, { - fileId = "143625", - text = "rshoulder_robe_raidmage_a_01.m2", - value = "rshoulder_robe_raidmage_a_01.m2", + fileId = "141068", + text = "helm_plate_raidwarrior_b_01_drf.m2", + value = "helm_plate_raidwarrior_b_01_drf.m2", }, { - fileId = "143626", - text = "rshoulder_robe_raidmage_b_01.m2", - value = "rshoulder_robe_raidmage_b_01.m2", + fileId = "141069", + text = "helm_plate_raidwarrior_b_01_drm.m2", + value = "helm_plate_raidwarrior_b_01_drm.m2", }, { - fileId = "143627", - text = "rshoulder_robe_raidmage_c_01.m2", - value = "rshoulder_robe_raidmage_c_01.m2", + fileId = "141070", + text = "helm_plate_raidwarrior_b_01_dwf.m2", + value = "helm_plate_raidwarrior_b_01_dwf.m2", }, { - fileId = "238489", - text = "rshoulder_robe_raidmage_c_02.m2", - value = "rshoulder_robe_raidmage_c_02.m2", + fileId = "141071", + text = "helm_plate_raidwarrior_b_01_dwm.m2", + value = "helm_plate_raidwarrior_b_01_dwm.m2", }, { - fileId = "143628", - text = "rshoulder_robe_raidmage_d_01.m2", - value = "rshoulder_robe_raidmage_d_01.m2", + fileId = "141072", + text = "helm_plate_raidwarrior_b_01_gnf.m2", + value = "helm_plate_raidwarrior_b_01_gnf.m2", }, { - fileId = "143629", - text = "rshoulder_robe_raidmage_e_01.m2", - value = "rshoulder_robe_raidmage_e_01.m2", + fileId = "141073", + text = "helm_plate_raidwarrior_b_01_gnm.m2", + value = "helm_plate_raidwarrior_b_01_gnm.m2", }, { - fileId = "238490", - text = "rshoulder_robe_raidmage_e_02.m2", - value = "rshoulder_robe_raidmage_e_02.m2", + fileId = "141074", + text = "helm_plate_raidwarrior_b_01_gof.m2", + value = "helm_plate_raidwarrior_b_01_gof.m2", }, { - fileId = "143630", - text = "rshoulder_robe_raidmage_f_01.m2", - value = "rshoulder_robe_raidmage_f_01.m2", + fileId = "141075", + text = "helm_plate_raidwarrior_b_01_gom.m2", + value = "helm_plate_raidwarrior_b_01_gom.m2", }, { - fileId = "143631", - text = "rshoulder_robe_raidmage_g_01.m2", - value = "rshoulder_robe_raidmage_g_01.m2", + fileId = "141076", + text = "helm_plate_raidwarrior_b_01_huf.m2", + value = "helm_plate_raidwarrior_b_01_huf.m2", }, { - fileId = "340076", - text = "rshoulder_robe_raidmage_h_01.m2", - value = "rshoulder_robe_raidmage_h_01.m2", + fileId = "141077", + text = "helm_plate_raidwarrior_b_01_hum.m2", + value = "helm_plate_raidwarrior_b_01_hum.m2", }, { - fileId = "143632", - text = "rshoulder_robe_raidpriest_a_01.m2", - value = "rshoulder_robe_raidpriest_a_01.m2", + fileId = "141078", + text = "helm_plate_raidwarrior_b_01_nif.m2", + value = "helm_plate_raidwarrior_b_01_nif.m2", }, { - fileId = "143633", - text = "rshoulder_robe_raidpriest_b_01.m2", - value = "rshoulder_robe_raidpriest_b_01.m2", + fileId = "141079", + text = "helm_plate_raidwarrior_b_01_nim.m2", + value = "helm_plate_raidwarrior_b_01_nim.m2", }, { - fileId = "143634", - text = "rshoulder_robe_raidpriest_c_01.m2", - value = "rshoulder_robe_raidpriest_c_01.m2", + fileId = "141080", + text = "helm_plate_raidwarrior_b_01_orf.m2", + value = "helm_plate_raidwarrior_b_01_orf.m2", }, { - fileId = "143635", - text = "rshoulder_robe_raidpriest_d_01.m2", - value = "rshoulder_robe_raidpriest_d_01.m2", + fileId = "141081", + text = "helm_plate_raidwarrior_b_01_orm.m2", + value = "helm_plate_raidwarrior_b_01_orm.m2", }, { - fileId = "143636", - text = "rshoulder_robe_raidpriest_e_01.m2", - value = "rshoulder_robe_raidpriest_e_01.m2", + fileId = "141082", + text = "helm_plate_raidwarrior_b_01_scf.m2", + value = "helm_plate_raidwarrior_b_01_scf.m2", }, { - fileId = "143637", - text = "rshoulder_robe_raidpriest_f_01.m2", - value = "rshoulder_robe_raidpriest_f_01.m2", + fileId = "141083", + text = "helm_plate_raidwarrior_b_01_scm.m2", + value = "helm_plate_raidwarrior_b_01_scm.m2", }, { - fileId = "143638", - text = "rshoulder_robe_raidpriest_g_01.m2", - value = "rshoulder_robe_raidpriest_g_01.m2", + fileId = "141084", + text = "helm_plate_raidwarrior_b_01_taf.m2", + value = "helm_plate_raidwarrior_b_01_taf.m2", }, { - fileId = "341800", - text = "rshoulder_robe_raidpriest_h_01.m2", - value = "rshoulder_robe_raidpriest_h_01.m2", + fileId = "141085", + text = "helm_plate_raidwarrior_b_01_tam.m2", + value = "helm_plate_raidwarrior_b_01_tam.m2", }, { - fileId = "143639", - text = "rshoulder_robe_raidshaman_c_01.m2", - value = "rshoulder_robe_raidshaman_c_01.m2", + fileId = "141086", + text = "helm_plate_raidwarrior_b_01_trf.m2", + value = "helm_plate_raidwarrior_b_01_trf.m2", }, { - fileId = "143640", - text = "rshoulder_robe_raidwarlock_a_01.m2", - value = "rshoulder_robe_raidwarlock_a_01.m2", + fileId = "141087", + text = "helm_plate_raidwarrior_b_01_trm.m2", + value = "helm_plate_raidwarrior_b_01_trm.m2", }, { - fileId = "143641", - text = "rshoulder_robe_raidwarlock_b_01.m2", - value = "rshoulder_robe_raidwarlock_b_01.m2", + fileId = "462285", + text = "helm_plate_raidwarrior_b_01_wof.m2", + value = "helm_plate_raidwarrior_b_01_wof.m2", }, { - fileId = "143642", - text = "rshoulder_robe_raidwarlock_c_01.m2", - value = "rshoulder_robe_raidwarlock_c_01.m2", + fileId = "433474", + text = "helm_plate_raidwarrior_b_01_wom.m2", + value = "helm_plate_raidwarrior_b_01_wom.m2", }, { - fileId = "238491", - text = "rshoulder_robe_raidwarlock_c_02.m2", - value = "rshoulder_robe_raidwarlock_c_02.m2", + fileId = "141093", + text = "helm_plate_raidwarrior_c_01_bef.m2", + value = "helm_plate_raidwarrior_c_01_bef.m2", }, { - fileId = "143643", - text = "rshoulder_robe_raidwarlock_d_01.m2", - value = "rshoulder_robe_raidwarlock_d_01.m2", + fileId = "141094", + text = "helm_plate_raidwarrior_c_01_bem.m2", + value = "helm_plate_raidwarrior_c_01_bem.m2", }, { - fileId = "143644", - text = "rshoulder_robe_raidwarlock_e_01.m2", - value = "rshoulder_robe_raidwarlock_e_01.m2", + fileId = "141095", + text = "helm_plate_raidwarrior_c_01_drf.m2", + value = "helm_plate_raidwarrior_c_01_drf.m2", }, { - fileId = "143645", - text = "rshoulder_robe_raidwarlock_f_01.m2", - value = "rshoulder_robe_raidwarlock_f_01.m2", + fileId = "141096", + text = "helm_plate_raidwarrior_c_01_drm.m2", + value = "helm_plate_raidwarrior_c_01_drm.m2", }, { - fileId = "143646", - text = "rshoulder_robe_raidwarlock_g_01.m2", - value = "rshoulder_robe_raidwarlock_g_01.m2", + fileId = "141097", + text = "helm_plate_raidwarrior_c_01_dwf.m2", + value = "helm_plate_raidwarrior_c_01_dwf.m2", }, { - fileId = "339856", - text = "rshoulder_robe_raidwarlock_h_01.m2", - value = "rshoulder_robe_raidwarlock_h_01.m2", + fileId = "141098", + text = "helm_plate_raidwarrior_c_01_dwm.m2", + value = "helm_plate_raidwarrior_c_01_dwm.m2", }, { - fileId = "143647", - text = "rshoulder_robe_sunwell_d_01.m2", - value = "rshoulder_robe_sunwell_d_01.m2", + fileId = "141099", + text = "helm_plate_raidwarrior_c_01_gnf.m2", + value = "helm_plate_raidwarrior_c_01_gnf.m2", }, { - fileId = "143648", - text = "rshoulder_robe_zulaman_d_01.m2", - value = "rshoulder_robe_zulaman_d_01.m2", + fileId = "141100", + text = "helm_plate_raidwarrior_c_01_gnm.m2", + value = "helm_plate_raidwarrior_c_01_gnm.m2", }, { - fileId = "143649", - text = "rshoulder_robe_zulaman_d_03.m2", - value = "rshoulder_robe_zulaman_d_03.m2", - }, - }, - text = "shoulder", - value = "shoulder", - }, - { - children = { - { - fileId = "144326", - text = "1htrollspear01.m2", - value = "1htrollspear01.m2", + fileId = "141101", + text = "helm_plate_raidwarrior_c_01_gof.m2", + value = "helm_plate_raidwarrior_c_01_gof.m2", }, { - fileId = "144340", - text = "ashbringer02.m2", - value = "ashbringer02.m2", + fileId = "141102", + text = "helm_plate_raidwarrior_c_01_gom.m2", + value = "helm_plate_raidwarrior_c_01_gom.m2", }, { - fileId = "144344", - text = "axe_1h_ahnqiraj_d_01.m2", - value = "axe_1h_ahnqiraj_d_01.m2", + fileId = "141103", + text = "helm_plate_raidwarrior_c_01_huf.m2", + value = "helm_plate_raidwarrior_c_01_huf.m2", }, { - fileId = "144345", - text = "axe_1h_ahnqiraj_d_02.m2", - value = "axe_1h_ahnqiraj_d_02.m2", + fileId = "141104", + text = "helm_plate_raidwarrior_c_01_hum.m2", + value = "helm_plate_raidwarrior_c_01_hum.m2", }, { - fileId = "298682", - text = "axe_1h_alliancecovenant_d_01.m2", - value = "axe_1h_alliancecovenant_d_01.m2", + fileId = "141105", + text = "helm_plate_raidwarrior_c_01_nif.m2", + value = "helm_plate_raidwarrior_c_01_nif.m2", }, { - fileId = "294035", - text = "axe_1h_alliancecovenant_d_02.m2", - value = "axe_1h_alliancecovenant_d_02.m2", + fileId = "141106", + text = "helm_plate_raidwarrior_c_01_nim.m2", + value = "helm_plate_raidwarrior_c_01_nim.m2", }, { - fileId = "144347", - text = "axe_1h_blacksmithing_d_01.m2", - value = "axe_1h_blacksmithing_d_01.m2", + fileId = "141107", + text = "helm_plate_raidwarrior_c_01_orf.m2", + value = "helm_plate_raidwarrior_c_01_orf.m2", }, { - fileId = "144349", - text = "axe_1h_blacksmithing_d_02.m2", - value = "axe_1h_blacksmithing_d_02.m2", + fileId = "141108", + text = "helm_plate_raidwarrior_c_01_orm.m2", + value = "helm_plate_raidwarrior_c_01_orm.m2", }, { - fileId = "144351", - text = "axe_1h_blacksmithing_d_03.m2", - value = "axe_1h_blacksmithing_d_03.m2", + fileId = "141109", + text = "helm_plate_raidwarrior_c_01_scf.m2", + value = "helm_plate_raidwarrior_c_01_scf.m2", }, { - fileId = "144353", - text = "axe_1h_blackwing_a_01.m2", - value = "axe_1h_blackwing_a_01.m2", + fileId = "141110", + text = "helm_plate_raidwarrior_c_01_scm.m2", + value = "helm_plate_raidwarrior_c_01_scm.m2", }, { - fileId = "144355", - text = "axe_1h_blackwing_a_02.m2", - value = "axe_1h_blackwing_a_02.m2", + fileId = "141111", + text = "helm_plate_raidwarrior_c_01_taf.m2", + value = "helm_plate_raidwarrior_c_01_taf.m2", }, { - fileId = "144357", - text = "axe_1h_blood_a_01.m2", - value = "axe_1h_blood_a_01.m2", + fileId = "141112", + text = "helm_plate_raidwarrior_c_01_tam.m2", + value = "helm_plate_raidwarrior_c_01_tam.m2", }, { - fileId = "144361", - text = "axe_1h_blood_a_02.m2", - value = "axe_1h_blood_a_02.m2", + fileId = "141113", + text = "helm_plate_raidwarrior_c_01_trf.m2", + value = "helm_plate_raidwarrior_c_01_trf.m2", }, { - fileId = "144367", - text = "axe_1h_blood_a_03.m2", - value = "axe_1h_blood_a_03.m2", + fileId = "141114", + text = "helm_plate_raidwarrior_c_01_trm.m2", + value = "helm_plate_raidwarrior_c_01_trm.m2", }, { - fileId = "144372", - text = "axe_1h_dalaran_d_01.m2", - value = "axe_1h_dalaran_d_01.m2", + fileId = "462286", + text = "helm_plate_raidwarrior_c_01_wof.m2", + value = "helm_plate_raidwarrior_c_01_wof.m2", }, { - fileId = "144388", - text = "axe_1h_draenei_a_01.m2", - value = "axe_1h_draenei_a_01.m2", + fileId = "433475", + text = "helm_plate_raidwarrior_c_01_wom.m2", + value = "helm_plate_raidwarrior_c_01_wom.m2", }, { - fileId = "144393", - text = "axe_1h_draenei_b_01.m2", - value = "axe_1h_draenei_b_01.m2", + fileId = "238226", + text = "helm_plate_raidwarrior_c_02_bef.m2", + value = "helm_plate_raidwarrior_c_02_bef.m2", }, { - fileId = "144398", - text = "axe_1h_draenei_c_01.m2", - value = "axe_1h_draenei_c_01.m2", + fileId = "238227", + text = "helm_plate_raidwarrior_c_02_bem.m2", + value = "helm_plate_raidwarrior_c_02_bem.m2", }, { - fileId = "144403", - text = "axe_1h_draenei_d_01.m2", - value = "axe_1h_draenei_d_01.m2", + fileId = "238228", + text = "helm_plate_raidwarrior_c_02_drf.m2", + value = "helm_plate_raidwarrior_c_02_drf.m2", }, { - fileId = "144408", - text = "axe_1h_draktharon_d_01.m2", - value = "axe_1h_draktharon_d_01.m2", + fileId = "238229", + text = "helm_plate_raidwarrior_c_02_drm.m2", + value = "helm_plate_raidwarrior_c_02_drm.m2", }, { - fileId = "144412", - text = "axe_1h_flint_a_01.m2", - value = "axe_1h_flint_a_01.m2", + fileId = "238230", + text = "helm_plate_raidwarrior_c_02_dwf.m2", + value = "helm_plate_raidwarrior_c_02_dwf.m2", }, { - fileId = "144416", - text = "axe_1h_hatchet_a_01.m2", - value = "axe_1h_hatchet_a_01.m2", + fileId = "238231", + text = "helm_plate_raidwarrior_c_02_dwm.m2", + value = "helm_plate_raidwarrior_c_02_dwm.m2", }, { - fileId = "144420", - text = "axe_1h_hatchet_a_02.m2", - value = "axe_1h_hatchet_a_02.m2", + fileId = "238232", + text = "helm_plate_raidwarrior_c_02_gnf.m2", + value = "helm_plate_raidwarrior_c_02_gnf.m2", }, { - fileId = "144424", - text = "axe_1h_hatchet_a_03.m2", - value = "axe_1h_hatchet_a_03.m2", + fileId = "238233", + text = "helm_plate_raidwarrior_c_02_gnm.m2", + value = "helm_plate_raidwarrior_c_02_gnm.m2", }, { - fileId = "144428", - text = "axe_1h_hatchet_b_01.m2", - value = "axe_1h_hatchet_b_01.m2", + fileId = "238234", + text = "helm_plate_raidwarrior_c_02_gof.m2", + value = "helm_plate_raidwarrior_c_02_gof.m2", }, { - fileId = "144432", - text = "axe_1h_hatchet_b_02.m2", - value = "axe_1h_hatchet_b_02.m2", + fileId = "238235", + text = "helm_plate_raidwarrior_c_02_gom.m2", + value = "helm_plate_raidwarrior_c_02_gom.m2", }, { - fileId = "144436", - text = "axe_1h_hatchet_b_03.m2", - value = "axe_1h_hatchet_b_03.m2", + fileId = "238236", + text = "helm_plate_raidwarrior_c_02_huf.m2", + value = "helm_plate_raidwarrior_c_02_huf.m2", }, { - fileId = "144441", - text = "axe_1h_hatchet_b_04holy.m2", - value = "axe_1h_hatchet_b_04holy.m2", + fileId = "238237", + text = "helm_plate_raidwarrior_c_02_hum.m2", + value = "helm_plate_raidwarrior_c_02_hum.m2", }, { - fileId = "144442", - text = "axe_1h_hatchet_c_01.m2", - value = "axe_1h_hatchet_c_01.m2", + fileId = "238238", + text = "helm_plate_raidwarrior_c_02_nif.m2", + value = "helm_plate_raidwarrior_c_02_nif.m2", }, { - fileId = "144446", - text = "axe_1h_hatchet_c_02.m2", - value = "axe_1h_hatchet_c_02.m2", + fileId = "238239", + text = "helm_plate_raidwarrior_c_02_nim.m2", + value = "helm_plate_raidwarrior_c_02_nim.m2", }, { - fileId = "144450", - text = "axe_1h_hatchet_c_03.m2", - value = "axe_1h_hatchet_c_03.m2", + fileId = "238240", + text = "helm_plate_raidwarrior_c_02_orf.m2", + value = "helm_plate_raidwarrior_c_02_orf.m2", }, { - fileId = "144455", - text = "axe_1h_hatchet_d_01.m2", - value = "axe_1h_hatchet_d_01.m2", + fileId = "238241", + text = "helm_plate_raidwarrior_c_02_orm.m2", + value = "helm_plate_raidwarrior_c_02_orm.m2", }, { - fileId = "144456", - text = "axe_1h_horde_a_01.m2", - value = "axe_1h_horde_a_01.m2", + fileId = "238242", + text = "helm_plate_raidwarrior_c_02_scf.m2", + value = "helm_plate_raidwarrior_c_02_scf.m2", }, { - fileId = "144462", - text = "axe_1h_horde_a_02.m2", - value = "axe_1h_horde_a_02.m2", + fileId = "238243", + text = "helm_plate_raidwarrior_c_02_scm.m2", + value = "helm_plate_raidwarrior_c_02_scm.m2", }, { - fileId = "144464", - text = "axe_1h_horde_a_03.m2", - value = "axe_1h_horde_a_03.m2", + fileId = "238244", + text = "helm_plate_raidwarrior_c_02_taf.m2", + value = "helm_plate_raidwarrior_c_02_taf.m2", }, { - fileId = "144470", - text = "axe_1h_horde_a_04.m2", - value = "axe_1h_horde_a_04.m2", + fileId = "238245", + text = "helm_plate_raidwarrior_c_02_tam.m2", + value = "helm_plate_raidwarrior_c_02_tam.m2", }, { - fileId = "144475", - text = "axe_1h_horde_b_01.m2", - value = "axe_1h_horde_b_01.m2", + fileId = "238246", + text = "helm_plate_raidwarrior_c_02_trf.m2", + value = "helm_plate_raidwarrior_c_02_trf.m2", }, { - fileId = "144478", - text = "axe_1h_horde_b_02.m2", - value = "axe_1h_horde_b_02.m2", + fileId = "238247", + text = "helm_plate_raidwarrior_c_02_trm.m2", + value = "helm_plate_raidwarrior_c_02_trm.m2", }, { - fileId = "144483", - text = "axe_1h_horde_b_03.m2", - value = "axe_1h_horde_b_03.m2", + fileId = "462570", + text = "helm_plate_raidwarrior_c_02_wof.m2", + value = "helm_plate_raidwarrior_c_02_wof.m2", }, { - fileId = "144488", - text = "axe_1h_horde_c_01.m2", - value = "axe_1h_horde_c_01.m2", + fileId = "433560", + text = "helm_plate_raidwarrior_c_02_wom.m2", + value = "helm_plate_raidwarrior_c_02_wom.m2", }, { - fileId = "324988", - text = "axe_1h_horde_c_01alt.m2", - value = "axe_1h_horde_c_01alt.m2", + fileId = "141117", + text = "helm_plate_raidwarrior_d_01_bef.m2", + value = "helm_plate_raidwarrior_d_01_bef.m2", }, { - fileId = "144494", - text = "axe_1h_horde_c_02.m2", - value = "axe_1h_horde_c_02.m2", + fileId = "141118", + text = "helm_plate_raidwarrior_d_01_bem.m2", + value = "helm_plate_raidwarrior_d_01_bem.m2", }, { - fileId = "144500", - text = "axe_1h_horde_c_03.m2", - value = "axe_1h_horde_c_03.m2", + fileId = "141119", + text = "helm_plate_raidwarrior_d_01_drf.m2", + value = "helm_plate_raidwarrior_d_01_drf.m2", }, { - fileId = "144505", - text = "axe_1h_horde_c_04.m2", - value = "axe_1h_horde_c_04.m2", + fileId = "141120", + text = "helm_plate_raidwarrior_d_01_drm.m2", + value = "helm_plate_raidwarrior_d_01_drm.m2", }, { - fileId = "144513", - text = "axe_1h_horde_d_01.m2", - value = "axe_1h_horde_d_01.m2", + fileId = "141121", + text = "helm_plate_raidwarrior_d_01_dwf.m2", + value = "helm_plate_raidwarrior_d_01_dwf.m2", }, { - fileId = "144523", - text = "axe_1h_horde_d_02.m2", - value = "axe_1h_horde_d_02.m2", + fileId = "141122", + text = "helm_plate_raidwarrior_d_01_dwm.m2", + value = "helm_plate_raidwarrior_d_01_dwm.m2", }, { - fileId = "144536", - text = "axe_1h_horde_d_03.m2", - value = "axe_1h_horde_d_03.m2", + fileId = "141123", + text = "helm_plate_raidwarrior_d_01_gnf.m2", + value = "helm_plate_raidwarrior_d_01_gnf.m2", }, { - fileId = "303779", - text = "axe_1h_hordecovenant_d_01.m2", - value = "axe_1h_hordecovenant_d_01.m2", + fileId = "141124", + text = "helm_plate_raidwarrior_d_01_gnm.m2", + value = "helm_plate_raidwarrior_d_01_gnm.m2", }, { - fileId = "303847", - text = "axe_1h_hordecovenant_d_02.m2", - value = "axe_1h_hordecovenant_d_02.m2", + fileId = "141125", + text = "helm_plate_raidwarrior_d_01_gof.m2", + value = "helm_plate_raidwarrior_d_01_gof.m2", }, { - fileId = "315188", - text = "axe_1h_icecrownraid_d_01.m2", - value = "axe_1h_icecrownraid_d_01.m2", + fileId = "141126", + text = "helm_plate_raidwarrior_d_01_gom.m2", + value = "helm_plate_raidwarrior_d_01_gom.m2", }, { - fileId = "238572", - text = "axe_1h_naxx25_d_01.m2", - value = "axe_1h_naxx25_d_01.m2", + fileId = "141127", + text = "helm_plate_raidwarrior_d_01_huf.m2", + value = "helm_plate_raidwarrior_d_01_huf.m2", }, { - fileId = "144546", - text = "axe_1h_nexus_d_01.m2", - value = "axe_1h_nexus_d_01.m2", + fileId = "141128", + text = "helm_plate_raidwarrior_d_01_hum.m2", + value = "helm_plate_raidwarrior_d_01_hum.m2", }, { - fileId = "144553", - text = "axe_1h_northrend_b_01.m2", - value = "axe_1h_northrend_b_01.m2", + fileId = "141129", + text = "helm_plate_raidwarrior_d_01_nif.m2", + value = "helm_plate_raidwarrior_d_01_nif.m2", }, { - fileId = "144559", - text = "axe_1h_northrend_b_02.m2", - value = "axe_1h_northrend_b_02.m2", + fileId = "141130", + text = "helm_plate_raidwarrior_d_01_nim.m2", + value = "helm_plate_raidwarrior_d_01_nim.m2", }, { - fileId = "144566", - text = "axe_1h_northrend_b_03.m2", - value = "axe_1h_northrend_b_03.m2", + fileId = "141131", + text = "helm_plate_raidwarrior_d_01_orf.m2", + value = "helm_plate_raidwarrior_d_01_orf.m2", }, { - fileId = "144572", - text = "axe_1h_northrend_c_01.m2", - value = "axe_1h_northrend_c_01.m2", + fileId = "141132", + text = "helm_plate_raidwarrior_d_01_orm.m2", + value = "helm_plate_raidwarrior_d_01_orm.m2", }, { - fileId = "144577", - text = "axe_1h_northrend_c_02.m2", - value = "axe_1h_northrend_c_02.m2", + fileId = "141133", + text = "helm_plate_raidwarrior_d_01_scf.m2", + value = "helm_plate_raidwarrior_d_01_scf.m2", }, { - fileId = "144582", - text = "axe_1h_northrend_c_03.m2", - value = "axe_1h_northrend_c_03.m2", + fileId = "141134", + text = "helm_plate_raidwarrior_d_01_scm.m2", + value = "helm_plate_raidwarrior_d_01_scm.m2", }, { - fileId = "144588", - text = "axe_1h_northrend_d_01.m2", - value = "axe_1h_northrend_d_01.m2", + fileId = "141135", + text = "helm_plate_raidwarrior_d_01_taf.m2", + value = "helm_plate_raidwarrior_d_01_taf.m2", }, { - fileId = "144593", - text = "axe_1h_outlandraid_d_01.m2", - value = "axe_1h_outlandraid_d_01.m2", + fileId = "141136", + text = "helm_plate_raidwarrior_d_01_tam.m2", + value = "helm_plate_raidwarrior_d_01_tam.m2", }, { - fileId = "144595", - text = "axe_1h_outlandraid_d_02.m2", - value = "axe_1h_outlandraid_d_02.m2", + fileId = "141137", + text = "helm_plate_raidwarrior_d_01_trf.m2", + value = "helm_plate_raidwarrior_d_01_trf.m2", }, { - fileId = "144597", - text = "axe_1h_outlandraid_d_03.m2", - value = "axe_1h_outlandraid_d_03.m2", + fileId = "141138", + text = "helm_plate_raidwarrior_d_01_trm.m2", + value = "helm_plate_raidwarrior_d_01_trm.m2", }, { - fileId = "144599", - text = "axe_1h_outlandraid_d_04.m2", - value = "axe_1h_outlandraid_d_04.m2", + fileId = "462287", + text = "helm_plate_raidwarrior_d_01_wof.m2", + value = "helm_plate_raidwarrior_d_01_wof.m2", }, { - fileId = "144604", - text = "axe_1h_outlandraid_d_05.m2", - value = "axe_1h_outlandraid_d_05.m2", + fileId = "436666", + text = "helm_plate_raidwarrior_d_01_wom.m2", + value = "helm_plate_raidwarrior_d_01_wom.m2", }, { - fileId = "144606", - text = "axe_1h_outlandraid_d_06.m2", - value = "axe_1h_outlandraid_d_06.m2", + fileId = "141141", + text = "helm_plate_raidwarrior_e_01_bef.m2", + value = "helm_plate_raidwarrior_e_01_bef.m2", }, { - fileId = "144607", - text = "axe_1h_pick_a_01.m2", - value = "axe_1h_pick_a_01.m2", + fileId = "141142", + text = "helm_plate_raidwarrior_e_01_bem.m2", + value = "helm_plate_raidwarrior_e_01_bem.m2", }, { - fileId = "252782", - text = "axe_1h_pvealliance_d_01.m2", - value = "axe_1h_pvealliance_d_01.m2", + fileId = "141143", + text = "helm_plate_raidwarrior_e_01_drf.m2", + value = "helm_plate_raidwarrior_e_01_drf.m2", }, { - fileId = "253464", - text = "axe_1h_pvehorde_d_01.m2", - value = "axe_1h_pvehorde_d_01.m2", + fileId = "141144", + text = "helm_plate_raidwarrior_e_01_drm.m2", + value = "helm_plate_raidwarrior_e_01_drm.m2", }, { - fileId = "305618", - text = "axe_1h_pvp320_c_01.m2", - value = "axe_1h_pvp320_c_01.m2", + fileId = "141145", + text = "helm_plate_raidwarrior_e_01_dwf.m2", + value = "helm_plate_raidwarrior_e_01_dwf.m2", }, { - fileId = "326468", - text = "axe_1h_pvp330_d_01.m2", - value = "axe_1h_pvp330_d_01.m2", + fileId = "141146", + text = "helm_plate_raidwarrior_e_01_dwm.m2", + value = "helm_plate_raidwarrior_e_01_dwm.m2", }, { - fileId = "238573", - text = "axe_1h_pvp_c_01.m2", - value = "axe_1h_pvp_c_01.m2", + fileId = "141147", + text = "helm_plate_raidwarrior_e_01_gnf.m2", + value = "helm_plate_raidwarrior_e_01_gnf.m2", }, { - fileId = "144612", - text = "axe_1h_pvpalliance_a_01.m2", - value = "axe_1h_pvpalliance_a_01.m2", + fileId = "141148", + text = "helm_plate_raidwarrior_e_01_gnm.m2", + value = "helm_plate_raidwarrior_e_01_gnm.m2", }, { - fileId = "144615", - text = "axe_1h_pvphorde_a_01.m2", - value = "axe_1h_pvphorde_a_01.m2", + fileId = "141149", + text = "helm_plate_raidwarrior_e_01_gof.m2", + value = "helm_plate_raidwarrior_e_01_gof.m2", }, { - fileId = "144618", - text = "axe_1h_raid_d_01.m2", - value = "axe_1h_raid_d_01.m2", + fileId = "141150", + text = "helm_plate_raidwarrior_e_01_gom.m2", + value = "helm_plate_raidwarrior_e_01_gom.m2", }, { - fileId = "144620", - text = "axe_1h_raid_d_02.m2", - value = "axe_1h_raid_d_02.m2", + fileId = "141151", + text = "helm_plate_raidwarrior_e_01_huf.m2", + value = "helm_plate_raidwarrior_e_01_huf.m2", }, { - fileId = "144622", - text = "axe_1h_raid_d_03.m2", - value = "axe_1h_raid_d_03.m2", + fileId = "141152", + text = "helm_plate_raidwarrior_e_01_hum.m2", + value = "helm_plate_raidwarrior_e_01_hum.m2", }, { - fileId = "144624", - text = "axe_1h_raid_d_04.m2", - value = "axe_1h_raid_d_04.m2", + fileId = "141153", + text = "helm_plate_raidwarrior_e_01_nif.m2", + value = "helm_plate_raidwarrior_e_01_nif.m2", }, { - fileId = "144626", - text = "axe_1h_raid_d_05.m2", - value = "axe_1h_raid_d_05.m2", + fileId = "141154", + text = "helm_plate_raidwarrior_e_01_nim.m2", + value = "helm_plate_raidwarrior_e_01_nim.m2", }, { - fileId = "144628", - text = "axe_1h_raid_d_06.m2", - value = "axe_1h_raid_d_06.m2", + fileId = "141155", + text = "helm_plate_raidwarrior_e_01_orf.m2", + value = "helm_plate_raidwarrior_e_01_orf.m2", }, { - fileId = "144629", - text = "axe_1h_stratholme_d_01.m2", - value = "axe_1h_stratholme_d_01.m2", + fileId = "141156", + text = "helm_plate_raidwarrior_e_01_orm.m2", + value = "helm_plate_raidwarrior_e_01_orm.m2", }, { - fileId = "144631", - text = "axe_1h_troll_b_01.m2", - value = "axe_1h_troll_b_01.m2", + fileId = "141157", + text = "helm_plate_raidwarrior_e_01_scf.m2", + value = "helm_plate_raidwarrior_e_01_scf.m2", }, { - fileId = "238578", - text = "axe_1h_ulduarraid_d_01.m2", - value = "axe_1h_ulduarraid_d_01.m2", + fileId = "141158", + text = "helm_plate_raidwarrior_e_01_scm.m2", + value = "helm_plate_raidwarrior_e_01_scm.m2", }, { - fileId = "144634", - text = "axe_1h_utgarde_d_01.m2", - value = "axe_1h_utgarde_d_01.m2", + fileId = "141159", + text = "helm_plate_raidwarrior_e_01_taf.m2", + value = "helm_plate_raidwarrior_e_01_taf.m2", }, { - fileId = "144639", - text = "axe_1h_zulaman_d_01.m2", - value = "axe_1h_zulaman_d_01.m2", + fileId = "141160", + text = "helm_plate_raidwarrior_e_01_tam.m2", + value = "helm_plate_raidwarrior_e_01_tam.m2", }, { - fileId = "144645", - text = "axe_1h_zulgurub_d_01.m2", - value = "axe_1h_zulgurub_d_01.m2", + fileId = "141161", + text = "helm_plate_raidwarrior_e_01_trf.m2", + value = "helm_plate_raidwarrior_e_01_trf.m2", }, { - fileId = "144647", - text = "axe_2h_ahnqiraj_d_01.m2", - value = "axe_2h_ahnqiraj_d_01.m2", + fileId = "141162", + text = "helm_plate_raidwarrior_e_01_trm.m2", + value = "helm_plate_raidwarrior_e_01_trm.m2", }, { - fileId = "144648", - text = "axe_2h_alliance_c_01.m2", - value = "axe_2h_alliance_c_01.m2", + fileId = "462288", + text = "helm_plate_raidwarrior_e_01_wof.m2", + value = "helm_plate_raidwarrior_e_01_wof.m2", }, { - fileId = "144654", - text = "axe_2h_alliance_c_02.m2", - value = "axe_2h_alliance_c_02.m2", + fileId = "436667", + text = "helm_plate_raidwarrior_e_01_wom.m2", + value = "helm_plate_raidwarrior_e_01_wom.m2", }, { - fileId = "144660", - text = "axe_2h_alliance_c_03.m2", - value = "axe_2h_alliance_c_03.m2", + fileId = "141165", + text = "helm_plate_raidwarrior_f_01_bef.m2", + value = "helm_plate_raidwarrior_f_01_bef.m2", }, { - fileId = "144666", - text = "axe_2h_alliance_d_01.m2", - value = "axe_2h_alliance_d_01.m2", + fileId = "141166", + text = "helm_plate_raidwarrior_f_01_bem.m2", + value = "helm_plate_raidwarrior_f_01_bem.m2", }, { - fileId = "144672", - text = "axe_2h_alliance_d_02.m2", - value = "axe_2h_alliance_d_02.m2", + fileId = "141167", + text = "helm_plate_raidwarrior_f_01_drf.m2", + value = "helm_plate_raidwarrior_f_01_drf.m2", }, { - fileId = "144678", - text = "axe_2h_battle_a_01.m2", - value = "axe_2h_battle_a_01.m2", + fileId = "141168", + text = "helm_plate_raidwarrior_f_01_drm.m2", + value = "helm_plate_raidwarrior_f_01_drm.m2", }, { - fileId = "144682", - text = "axe_2h_battle_a_02.m2", - value = "axe_2h_battle_a_02.m2", + fileId = "141169", + text = "helm_plate_raidwarrior_f_01_dwf.m2", + value = "helm_plate_raidwarrior_f_01_dwf.m2", }, { - fileId = "144686", - text = "axe_2h_battle_a_03.m2", - value = "axe_2h_battle_a_03.m2", + fileId = "141170", + text = "helm_plate_raidwarrior_f_01_dwm.m2", + value = "helm_plate_raidwarrior_f_01_dwm.m2", }, { - fileId = "144692", - text = "axe_2h_battle_b_01.m2", - value = "axe_2h_battle_b_01.m2", + fileId = "141172", + text = "helm_plate_raidwarrior_f_01_gnf.m2", + value = "helm_plate_raidwarrior_f_01_gnf.m2", }, { - fileId = "144693", - text = "axe_2h_battle_b_02holy.m2", - value = "axe_2h_battle_b_02holy.m2", + fileId = "141173", + text = "helm_plate_raidwarrior_f_01_gnm.m2", + value = "helm_plate_raidwarrior_f_01_gnm.m2", }, { - fileId = "144695", - text = "axe_2h_blacksmithing_d_01.m2", - value = "axe_2h_blacksmithing_d_01.m2", + fileId = "141174", + text = "helm_plate_raidwarrior_f_01_gof.m2", + value = "helm_plate_raidwarrior_f_01_gof.m2", }, { - fileId = "144697", - text = "axe_2h_blacksmithing_d_02.m2", - value = "axe_2h_blacksmithing_d_02.m2", + fileId = "141175", + text = "helm_plate_raidwarrior_f_01_gom.m2", + value = "helm_plate_raidwarrior_f_01_gom.m2", }, { - fileId = "144699", - text = "axe_2h_blacksmithing_d_03.m2", - value = "axe_2h_blacksmithing_d_03.m2", + fileId = "141176", + text = "helm_plate_raidwarrior_f_01_huf.m2", + value = "helm_plate_raidwarrior_f_01_huf.m2", }, { - fileId = "144700", - text = "axe_2h_blacktemple_d_01.m2", - value = "axe_2h_blacktemple_d_01.m2", + fileId = "141177", + text = "helm_plate_raidwarrior_f_01_hum.m2", + value = "helm_plate_raidwarrior_f_01_hum.m2", }, { - fileId = "144704", - text = "axe_2h_blackwing_a_01.m2", - value = "axe_2h_blackwing_a_01.m2", + fileId = "141178", + text = "helm_plate_raidwarrior_f_01_nif.m2", + value = "helm_plate_raidwarrior_f_01_nif.m2", }, { - fileId = "144706", - text = "axe_2h_blackwing_a_02.m2", - value = "axe_2h_blackwing_a_02.m2", + fileId = "141179", + text = "helm_plate_raidwarrior_f_01_nim.m2", + value = "helm_plate_raidwarrior_f_01_nim.m2", }, { - fileId = "144708", - text = "axe_2h_blood_a_01.m2", - value = "axe_2h_blood_a_01.m2", + fileId = "141180", + text = "helm_plate_raidwarrior_f_01_orf.m2", + value = "helm_plate_raidwarrior_f_01_orf.m2", }, { - fileId = "144713", - text = "axe_2h_blood_a_02.m2", - value = "axe_2h_blood_a_02.m2", + fileId = "141181", + text = "helm_plate_raidwarrior_f_01_orm.m2", + value = "helm_plate_raidwarrior_f_01_orm.m2", }, { - fileId = "144718", - text = "axe_2h_deathknight_c_01.m2", - value = "axe_2h_deathknight_c_01.m2", + fileId = "141182", + text = "helm_plate_raidwarrior_f_01_scf.m2", + value = "helm_plate_raidwarrior_f_01_scf.m2", }, { - fileId = "144720", - text = "axe_2h_deathknight_c_01_q.m2", - value = "axe_2h_deathknight_c_01_q.m2", + fileId = "141183", + text = "helm_plate_raidwarrior_f_01_scm.m2", + value = "helm_plate_raidwarrior_f_01_scm.m2", }, { - fileId = "144725", - text = "axe_2h_draenei_a_01.m2", - value = "axe_2h_draenei_a_01.m2", + fileId = "141184", + text = "helm_plate_raidwarrior_f_01_taf.m2", + value = "helm_plate_raidwarrior_f_01_taf.m2", }, { - fileId = "144730", - text = "axe_2h_draenei_b_01.m2", - value = "axe_2h_draenei_b_01.m2", + fileId = "141185", + text = "helm_plate_raidwarrior_f_01_tam.m2", + value = "helm_plate_raidwarrior_f_01_tam.m2", }, { - fileId = "144736", - text = "axe_2h_draenei_c_01.m2", - value = "axe_2h_draenei_c_01.m2", + fileId = "141186", + text = "helm_plate_raidwarrior_f_01_trf.m2", + value = "helm_plate_raidwarrior_f_01_trf.m2", }, { - fileId = "144742", - text = "axe_2h_draenei_d_01.m2", - value = "axe_2h_draenei_d_01.m2", + fileId = "141187", + text = "helm_plate_raidwarrior_f_01_trm.m2", + value = "helm_plate_raidwarrior_f_01_trm.m2", }, { - fileId = "144748", - text = "axe_2h_draenei_d_02.m2", - value = "axe_2h_draenei_d_02.m2", + fileId = "462289", + text = "helm_plate_raidwarrior_f_01_wof.m2", + value = "helm_plate_raidwarrior_f_01_wof.m2", }, { - fileId = "144750", - text = "axe_2h_draktharon_d_01.m2", - value = "axe_2h_draktharon_d_01.m2", + fileId = "436668", + text = "helm_plate_raidwarrior_f_01_wom.m2", + value = "helm_plate_raidwarrior_f_01_wom.m2", }, { - fileId = "144759", - text = "axe_2h_gorehowl_c_01.m2", - value = "axe_2h_gorehowl_c_01.m2", + fileId = "251540", + text = "helm_plate_raidwarrior_g_01_bef.m2", + value = "helm_plate_raidwarrior_g_01_bef.m2", }, { - fileId = "144760", - text = "axe_2h_gorehowl_d_01.m2", - value = "axe_2h_gorehowl_d_01.m2", + fileId = "251541", + text = "helm_plate_raidwarrior_g_01_bem.m2", + value = "helm_plate_raidwarrior_g_01_bem.m2", }, { - fileId = "238586", - text = "axe_2h_guitar_c_01.m2", - value = "axe_2h_guitar_c_01.m2", + fileId = "251542", + text = "helm_plate_raidwarrior_g_01_drf.m2", + value = "helm_plate_raidwarrior_g_01_drf.m2", }, { - fileId = "238588", - text = "axe_2h_guitar_c_02.m2", - value = "axe_2h_guitar_c_02.m2", + fileId = "251543", + text = "helm_plate_raidwarrior_g_01_drm.m2", + value = "helm_plate_raidwarrior_g_01_drm.m2", }, { - fileId = "144762", - text = "axe_2h_hellfire_d_01.m2", - value = "axe_2h_hellfire_d_01.m2", + fileId = "251544", + text = "helm_plate_raidwarrior_g_01_dwf.m2", + value = "helm_plate_raidwarrior_g_01_dwf.m2", }, { - fileId = "144763", - text = "axe_2h_horde_a_01.m2", - value = "axe_2h_horde_a_01.m2", + fileId = "251545", + text = "helm_plate_raidwarrior_g_01_dwm.m2", + value = "helm_plate_raidwarrior_g_01_dwm.m2", }, { - fileId = "144770", - text = "axe_2h_horde_a_02.m2", - value = "axe_2h_horde_a_02.m2", + fileId = "251546", + text = "helm_plate_raidwarrior_g_01_gnf.m2", + value = "helm_plate_raidwarrior_g_01_gnf.m2", }, { - fileId = "144776", - text = "axe_2h_horde_a_03.m2", - value = "axe_2h_horde_a_03.m2", + fileId = "251547", + text = "helm_plate_raidwarrior_g_01_gnm.m2", + value = "helm_plate_raidwarrior_g_01_gnm.m2", }, { - fileId = "144782", - text = "axe_2h_horde_a_04.m2", - value = "axe_2h_horde_a_04.m2", + fileId = "251548", + text = "helm_plate_raidwarrior_g_01_gof.m2", + value = "helm_plate_raidwarrior_g_01_gof.m2", }, { - fileId = "144788", - text = "axe_2h_horde_b_01.m2", - value = "axe_2h_horde_b_01.m2", + fileId = "251549", + text = "helm_plate_raidwarrior_g_01_gom.m2", + value = "helm_plate_raidwarrior_g_01_gom.m2", }, { - fileId = "144791", - text = "axe_2h_horde_c_01.m2", - value = "axe_2h_horde_c_01.m2", + fileId = "251550", + text = "helm_plate_raidwarrior_g_01_huf.m2", + value = "helm_plate_raidwarrior_g_01_huf.m2", }, { - fileId = "144798", - text = "axe_2h_horde_c_02.m2", - value = "axe_2h_horde_c_02.m2", + fileId = "251551", + text = "helm_plate_raidwarrior_g_01_hum.m2", + value = "helm_plate_raidwarrior_g_01_hum.m2", }, { - fileId = "144804", - text = "axe_2h_horde_d_01.m2", - value = "axe_2h_horde_d_01.m2", + fileId = "251552", + text = "helm_plate_raidwarrior_g_01_nif.m2", + value = "helm_plate_raidwarrior_g_01_nif.m2", }, { - fileId = "144810", - text = "axe_2h_horde_d_02.m2", - value = "axe_2h_horde_d_02.m2", + fileId = "251553", + text = "helm_plate_raidwarrior_g_01_nim.m2", + value = "helm_plate_raidwarrior_g_01_nim.m2", }, { - fileId = "144813", - text = "axe_2h_horde_d_03.m2", - value = "axe_2h_horde_d_03.m2", + fileId = "251554", + text = "helm_plate_raidwarrior_g_01_orf.m2", + value = "helm_plate_raidwarrior_g_01_orf.m2", }, { - fileId = "144817", - text = "axe_2h_horde_d_04.m2", - value = "axe_2h_horde_d_04.m2", + fileId = "251555", + text = "helm_plate_raidwarrior_g_01_orm.m2", + value = "helm_plate_raidwarrior_g_01_orm.m2", }, { - fileId = "309981", - text = "axe_2h_icecrownraid_d_01.m2", - value = "axe_2h_icecrownraid_d_01.m2", + fileId = "251556", + text = "helm_plate_raidwarrior_g_01_scf.m2", + value = "helm_plate_raidwarrior_g_01_scf.m2", }, { - fileId = "338486", - text = "axe_2h_icecrownraid_d_02.m2", - value = "axe_2h_icecrownraid_d_02.m2", + fileId = "251557", + text = "helm_plate_raidwarrior_g_01_scm.m2", + value = "helm_plate_raidwarrior_g_01_scm.m2", }, { - fileId = "324968", - text = "axe_2h_icecrownraid_e_01.m2", - value = "axe_2h_icecrownraid_e_01.m2", + fileId = "251558", + text = "helm_plate_raidwarrior_g_01_taf.m2", + value = "helm_plate_raidwarrior_g_01_taf.m2", }, { - fileId = "332723", - text = "axe_2h_icecrownraid_e_01alt.m2", - value = "axe_2h_icecrownraid_e_01alt.m2", + fileId = "251559", + text = "helm_plate_raidwarrior_g_01_tam.m2", + value = "helm_plate_raidwarrior_g_01_tam.m2", }, { - fileId = "238590", - text = "axe_2h_naxx25_d_01.m2", - value = "axe_2h_naxx25_d_01.m2", + fileId = "251560", + text = "helm_plate_raidwarrior_g_01_trf.m2", + value = "helm_plate_raidwarrior_g_01_trf.m2", }, { - fileId = "144821", - text = "axe_2h_nexus_d_01.m2", - value = "axe_2h_nexus_d_01.m2", + fileId = "251561", + text = "helm_plate_raidwarrior_g_01_trm.m2", + value = "helm_plate_raidwarrior_g_01_trm.m2", }, { - fileId = "144827", - text = "axe_2h_northrend_b_01.m2", - value = "axe_2h_northrend_b_01.m2", + fileId = "462571", + text = "helm_plate_raidwarrior_g_01_wof.m2", + value = "helm_plate_raidwarrior_g_01_wof.m2", }, { - fileId = "144833", - text = "axe_2h_northrend_b_02.m2", - value = "axe_2h_northrend_b_02.m2", + fileId = "441151", + text = "helm_plate_raidwarrior_g_01_wom.m2", + value = "helm_plate_raidwarrior_g_01_wom.m2", }, { - fileId = "144839", - text = "axe_2h_northrend_c_01.m2", - value = "axe_2h_northrend_c_01.m2", + fileId = "331348", + text = "helm_plate_raidwarrior_h_01_bef.m2", + value = "helm_plate_raidwarrior_h_01_bef.m2", }, { - fileId = "144844", - text = "axe_2h_northrend_c_02.m2", - value = "axe_2h_northrend_c_02.m2", + fileId = "331349", + text = "helm_plate_raidwarrior_h_01_bem.m2", + value = "helm_plate_raidwarrior_h_01_bem.m2", }, { - fileId = "144849", - text = "axe_2h_northrend_c_03.m2", - value = "axe_2h_northrend_c_03.m2", + fileId = "331350", + text = "helm_plate_raidwarrior_h_01_drf.m2", + value = "helm_plate_raidwarrior_h_01_drf.m2", }, { - fileId = "144855", - text = "axe_2h_northrend_d_01.m2", - value = "axe_2h_northrend_d_01.m2", + fileId = "331351", + text = "helm_plate_raidwarrior_h_01_drm.m2", + value = "helm_plate_raidwarrior_h_01_drm.m2", }, { - fileId = "144860", - text = "axe_2h_outlandraid_d_01.m2", - value = "axe_2h_outlandraid_d_01.m2", + fileId = "331352", + text = "helm_plate_raidwarrior_h_01_dwf.m2", + value = "helm_plate_raidwarrior_h_01_dwf.m2", }, { - fileId = "144862", - text = "axe_2h_outlandraid_d_02.m2", - value = "axe_2h_outlandraid_d_02.m2", + fileId = "331353", + text = "helm_plate_raidwarrior_h_01_dwm.m2", + value = "helm_plate_raidwarrior_h_01_dwm.m2", }, { - fileId = "144864", - text = "axe_2h_outlandraid_d_02_green.m2", - value = "axe_2h_outlandraid_d_02_green.m2", + fileId = "331354", + text = "helm_plate_raidwarrior_h_01_gnf.m2", + value = "helm_plate_raidwarrior_h_01_gnf.m2", }, { - fileId = "144865", - text = "axe_2h_outlandraid_d_02_red.m2", - value = "axe_2h_outlandraid_d_02_red.m2", + fileId = "331355", + text = "helm_plate_raidwarrior_h_01_gnm.m2", + value = "helm_plate_raidwarrior_h_01_gnm.m2", }, { - fileId = "144867", - text = "axe_2h_outlandraid_d_03.m2", - value = "axe_2h_outlandraid_d_03.m2", + fileId = "331356", + text = "helm_plate_raidwarrior_h_01_gof.m2", + value = "helm_plate_raidwarrior_h_01_gof.m2", }, { - fileId = "144869", - text = "axe_2h_outlandraid_d_04.m2", - value = "axe_2h_outlandraid_d_04.m2", + fileId = "331357", + text = "helm_plate_raidwarrior_h_01_gom.m2", + value = "helm_plate_raidwarrior_h_01_gom.m2", }, { - fileId = "144871", - text = "axe_2h_outlandraid_d_05.m2", - value = "axe_2h_outlandraid_d_05.m2", + fileId = "331358", + text = "helm_plate_raidwarrior_h_01_huf.m2", + value = "helm_plate_raidwarrior_h_01_huf.m2", }, { - fileId = "144873", - text = "axe_2h_outlandraid_d_06.m2", - value = "axe_2h_outlandraid_d_06.m2", + fileId = "331359", + text = "helm_plate_raidwarrior_h_01_hum.m2", + value = "helm_plate_raidwarrior_h_01_hum.m2", }, { - fileId = "144875", - text = "axe_2h_outlandraid_d_07.m2", - value = "axe_2h_outlandraid_d_07.m2", + fileId = "331360", + text = "helm_plate_raidwarrior_h_01_nif.m2", + value = "helm_plate_raidwarrior_h_01_nif.m2", }, { - fileId = "253361", - text = "axe_2h_pvealliance_d_01.m2", - value = "axe_2h_pvealliance_d_01.m2", + fileId = "331361", + text = "helm_plate_raidwarrior_h_01_nim.m2", + value = "helm_plate_raidwarrior_h_01_nim.m2", }, { - fileId = "254176", - text = "axe_2h_pvehorde_d_01.m2", - value = "axe_2h_pvehorde_d_01.m2", + fileId = "331362", + text = "helm_plate_raidwarrior_h_01_orf.m2", + value = "helm_plate_raidwarrior_h_01_orf.m2", }, { - fileId = "305965", - text = "axe_2h_pvp320_c_01.m2", - value = "axe_2h_pvp320_c_01.m2", + fileId = "331363", + text = "helm_plate_raidwarrior_h_01_orm.m2", + value = "helm_plate_raidwarrior_h_01_orm.m2", }, { - fileId = "327383", - text = "axe_2h_pvp330_d_01.m2", - value = "axe_2h_pvp330_d_01.m2", + fileId = "331364", + text = "helm_plate_raidwarrior_h_01_scf.m2", + value = "helm_plate_raidwarrior_h_01_scf.m2", }, { - fileId = "238595", - text = "axe_2h_pvp_c_01.m2", - value = "axe_2h_pvp_c_01.m2", + fileId = "331365", + text = "helm_plate_raidwarrior_h_01_scm.m2", + value = "helm_plate_raidwarrior_h_01_scm.m2", }, { - fileId = "144880", - text = "axe_2h_pvpalliance_a_01.m2", - value = "axe_2h_pvpalliance_a_01.m2", + fileId = "331366", + text = "helm_plate_raidwarrior_h_01_taf.m2", + value = "helm_plate_raidwarrior_h_01_taf.m2", }, { - fileId = "144883", - text = "axe_2h_pvphorde_a_01.m2", - value = "axe_2h_pvphorde_a_01.m2", + fileId = "331367", + text = "helm_plate_raidwarrior_h_01_tam.m2", + value = "helm_plate_raidwarrior_h_01_tam.m2", }, { - fileId = "144886", - text = "axe_2h_stratholme_d_01.m2", - value = "axe_2h_stratholme_d_01.m2", + fileId = "331368", + text = "helm_plate_raidwarrior_h_01_trf.m2", + value = "helm_plate_raidwarrior_h_01_trf.m2", }, { - fileId = "144888", - text = "axe_2h_sunwell_c_01.m2", - value = "axe_2h_sunwell_c_01.m2", + fileId = "331369", + text = "helm_plate_raidwarrior_h_01_trm.m2", + value = "helm_plate_raidwarrior_h_01_trm.m2", }, { - fileId = "238600", - text = "axe_2h_ulduarraid_d_01.m2", - value = "axe_2h_ulduarraid_d_01.m2", + fileId = "463095", + text = "helm_plate_raidwarrior_h_01_wof.m2", + value = "helm_plate_raidwarrior_h_01_wof.m2", }, { - fileId = "144893", - text = "axe_2h_utgarde_d_01.m2", - value = "axe_2h_utgarde_d_01.m2", + fileId = "441152", + text = "helm_plate_raidwarrior_h_01_wom.m2", + value = "helm_plate_raidwarrior_h_01_wom.m2", }, { - fileId = "144900", - text = "axe_2h_utgarde_d_02.m2", - value = "axe_2h_utgarde_d_02.m2", + fileId = "463778", + text = "helm_plate_raidwarrior_i_01_bef.m2", + value = "helm_plate_raidwarrior_i_01_bef.m2", }, { - fileId = "144906", - text = "axe_2h_war_a_01.m2", - value = "axe_2h_war_a_01.m2", + fileId = "463779", + text = "helm_plate_raidwarrior_i_01_bem.m2", + value = "helm_plate_raidwarrior_i_01_bem.m2", }, { - fileId = "144910", - text = "axe_2h_war_a_02.m2", - value = "axe_2h_war_a_02.m2", + fileId = "463780", + text = "helm_plate_raidwarrior_i_01_drf.m2", + value = "helm_plate_raidwarrior_i_01_drf.m2", }, { - fileId = "144914", - text = "axe_2h_war_a_03.m2", - value = "axe_2h_war_a_03.m2", + fileId = "463781", + text = "helm_plate_raidwarrior_i_01_drm.m2", + value = "helm_plate_raidwarrior_i_01_drm.m2", }, { - fileId = "144918", - text = "axe_2h_war_b_01.m2", - value = "axe_2h_war_b_01.m2", + fileId = "463782", + text = "helm_plate_raidwarrior_i_01_dwf.m2", + value = "helm_plate_raidwarrior_i_01_dwf.m2", }, { - fileId = "144922", - text = "axe_2h_war_b_02.m2", - value = "axe_2h_war_b_02.m2", + fileId = "463783", + text = "helm_plate_raidwarrior_i_01_dwm.m2", + value = "helm_plate_raidwarrior_i_01_dwm.m2", }, { - fileId = "144926", - text = "axe_2h_war_b_03.m2", - value = "axe_2h_war_b_03.m2", + fileId = "463784", + text = "helm_plate_raidwarrior_i_01_gnf.m2", + value = "helm_plate_raidwarrior_i_01_gnf.m2", }, { - fileId = "144930", - text = "axe_2h_war_c_01.m2", - value = "axe_2h_war_c_01.m2", + fileId = "463785", + text = "helm_plate_raidwarrior_i_01_gnm.m2", + value = "helm_plate_raidwarrior_i_01_gnm.m2", }, { - fileId = "144934", - text = "axe_2h_war_d_01.m2", - value = "axe_2h_war_d_01.m2", + fileId = "463786", + text = "helm_plate_raidwarrior_i_01_gof.m2", + value = "helm_plate_raidwarrior_i_01_gof.m2", }, { - fileId = "144936", - text = "axe_2h_zulaman_d_01.m2", - value = "axe_2h_zulaman_d_01.m2", + fileId = "463787", + text = "helm_plate_raidwarrior_i_01_gom.m2", + value = "helm_plate_raidwarrior_i_01_gom.m2", }, { - fileId = "144941", - text = "axe_2h_zulgurub_d_01.m2", - value = "axe_2h_zulgurub_d_01.m2", + fileId = "463788", + text = "helm_plate_raidwarrior_i_01_huf.m2", + value = "helm_plate_raidwarrior_i_01_huf.m2", }, { - fileId = "144952", - text = "bow_1h_advanced_a_01.m2", - value = "bow_1h_advanced_a_01.m2", + fileId = "463789", + text = "helm_plate_raidwarrior_i_01_hum.m2", + value = "helm_plate_raidwarrior_i_01_hum.m2", }, { - fileId = "144953", - text = "bow_1h_advanced_a_02.m2", - value = "bow_1h_advanced_a_02.m2", + fileId = "463790", + text = "helm_plate_raidwarrior_i_01_nif.m2", + value = "helm_plate_raidwarrior_i_01_nif.m2", }, { - fileId = "144954", - text = "bow_1h_advanced_b_01.m2", - value = "bow_1h_advanced_b_01.m2", + fileId = "463791", + text = "helm_plate_raidwarrior_i_01_nim.m2", + value = "helm_plate_raidwarrior_i_01_nim.m2", }, { - fileId = "144955", - text = "bow_1h_advanced_c_01.m2", - value = "bow_1h_advanced_c_01.m2", + fileId = "463792", + text = "helm_plate_raidwarrior_i_01_orf.m2", + value = "helm_plate_raidwarrior_i_01_orf.m2", }, { - fileId = "144956", - text = "bow_1h_advanced_c_02.m2", - value = "bow_1h_advanced_c_02.m2", + fileId = "463793", + text = "helm_plate_raidwarrior_i_01_orm.m2", + value = "helm_plate_raidwarrior_i_01_orm.m2", }, { - fileId = "144957", - text = "bow_1h_advanced_d_01.m2", - value = "bow_1h_advanced_d_01.m2", + fileId = "463794", + text = "helm_plate_raidwarrior_i_01_scf.m2", + value = "helm_plate_raidwarrior_i_01_scf.m2", }, { - fileId = "144958", - text = "bow_1h_advanced_d_02.m2", - value = "bow_1h_advanced_d_02.m2", + fileId = "463795", + text = "helm_plate_raidwarrior_i_01_scm.m2", + value = "helm_plate_raidwarrior_i_01_scm.m2", }, { - fileId = "144961", - text = "bow_1h_ahnqiraj_d_01.m2", - value = "bow_1h_ahnqiraj_d_01.m2", + fileId = "463796", + text = "helm_plate_raidwarrior_i_01_taf.m2", + value = "helm_plate_raidwarrior_i_01_taf.m2", }, { - fileId = "144962", - text = "bow_1h_ahnqiraj_d_02.m2", - value = "bow_1h_ahnqiraj_d_02.m2", + fileId = "463797", + text = "helm_plate_raidwarrior_i_01_tam.m2", + value = "helm_plate_raidwarrior_i_01_tam.m2", }, { - fileId = "144963", - text = "bow_1h_auchindoun_d_01.m2", - value = "bow_1h_auchindoun_d_01.m2", + fileId = "463798", + text = "helm_plate_raidwarrior_i_01_trf.m2", + value = "helm_plate_raidwarrior_i_01_trf.m2", }, { - fileId = "144965", - text = "bow_1h_blacktemple_d_01.m2", - value = "bow_1h_blacktemple_d_01.m2", + fileId = "463799", + text = "helm_plate_raidwarrior_i_01_trm.m2", + value = "helm_plate_raidwarrior_i_01_trm.m2", }, { - fileId = "144971", - text = "bow_1h_blackwing_a_01.m2", - value = "bow_1h_blackwing_a_01.m2", + fileId = "463800", + text = "helm_plate_raidwarrior_i_01_wof.m2", + value = "helm_plate_raidwarrior_i_01_wof.m2", }, { - fileId = "144972", - text = "bow_1h_blood_a_01.m2", - value = "bow_1h_blood_a_01.m2", + fileId = "463801", + text = "helm_plate_raidwarrior_i_01_wom.m2", + value = "helm_plate_raidwarrior_i_01_wom.m2", }, { - fileId = "144978", - text = "bow_1h_blood_a_02.m2", - value = "bow_1h_blood_a_02.m2", + fileId = "520762", + text = "helm_plate_raidwarrior_j_01_bef.m2", + value = "helm_plate_raidwarrior_j_01_bef.m2", }, { - fileId = "144979", - text = "bow_1h_blood_b_01.m2", - value = "bow_1h_blood_b_01.m2", + fileId = "520764", + text = "helm_plate_raidwarrior_j_01_bem.m2", + value = "helm_plate_raidwarrior_j_01_bem.m2", }, { - fileId = "144986", - text = "bow_1h_blood_c_01.m2", - value = "bow_1h_blood_c_01.m2", + fileId = "520766", + text = "helm_plate_raidwarrior_j_01_drf.m2", + value = "helm_plate_raidwarrior_j_01_drf.m2", }, { - fileId = "144992", - text = "bow_1h_blood_d_01.m2", - value = "bow_1h_blood_d_01.m2", + fileId = "520768", + text = "helm_plate_raidwarrior_j_01_drm.m2", + value = "helm_plate_raidwarrior_j_01_drm.m2", }, { - fileId = "144998", - text = "bow_1h_crossbow_a_01.m2", - value = "bow_1h_crossbow_a_01.m2", + fileId = "520770", + text = "helm_plate_raidwarrior_j_01_dwf.m2", + value = "helm_plate_raidwarrior_j_01_dwf.m2", }, { - fileId = "145001", - text = "bow_1h_draktharon_d_01.m2", - value = "bow_1h_draktharon_d_01.m2", + fileId = "520772", + text = "helm_plate_raidwarrior_j_01_dwm.m2", + value = "helm_plate_raidwarrior_j_01_dwm.m2", }, { - fileId = "145006", - text = "bow_1h_draktharon_d_02.m2", - value = "bow_1h_draktharon_d_02.m2", + fileId = "520774", + text = "helm_plate_raidwarrior_j_01_gnf.m2", + value = "helm_plate_raidwarrior_j_01_gnf.m2", }, { - fileId = "145011", - text = "bow_1h_horde_a_01.m2", - value = "bow_1h_horde_a_01.m2", + fileId = "520776", + text = "helm_plate_raidwarrior_j_01_gnm.m2", + value = "helm_plate_raidwarrior_j_01_gnm.m2", }, { - fileId = "145013", - text = "bow_1h_horde_b_01.m2", - value = "bow_1h_horde_b_01.m2", + fileId = "520778", + text = "helm_plate_raidwarrior_j_01_gof.m2", + value = "helm_plate_raidwarrior_j_01_gof.m2", }, { - fileId = "145015", - text = "bow_1h_horde_c_01.m2", - value = "bow_1h_horde_c_01.m2", + fileId = "520780", + text = "helm_plate_raidwarrior_j_01_gom.m2", + value = "helm_plate_raidwarrior_j_01_gom.m2", }, { - fileId = "145018", - text = "bow_1h_hunter_d_01.m2", - value = "bow_1h_hunter_d_01.m2", + fileId = "520782", + text = "helm_plate_raidwarrior_j_01_huf.m2", + value = "helm_plate_raidwarrior_j_01_huf.m2", }, { - fileId = "145019", - text = "bow_1h_hunterepic.m2", - value = "bow_1h_hunterepic.m2", + fileId = "520784", + text = "helm_plate_raidwarrior_j_01_hum.m2", + value = "helm_plate_raidwarrior_j_01_hum.m2", }, { - fileId = "145021", - text = "bow_1h_hyjal_d_01.m2", - value = "bow_1h_hyjal_d_01.m2", + fileId = "520786", + text = "helm_plate_raidwarrior_j_01_nif.m2", + value = "helm_plate_raidwarrior_j_01_nif.m2", }, { - fileId = "310108", - text = "bow_1h_icecrownraid_d_01.m2", - value = "bow_1h_icecrownraid_d_01.m2", + fileId = "520788", + text = "helm_plate_raidwarrior_j_01_nim.m2", + value = "helm_plate_raidwarrior_j_01_nim.m2", }, { - fileId = "145026", - text = "bow_1h_nexus_d_01.m2", - value = "bow_1h_nexus_d_01.m2", + fileId = "520790", + text = "helm_plate_raidwarrior_j_01_orf.m2", + value = "helm_plate_raidwarrior_j_01_orf.m2", }, { - fileId = "145031", - text = "bow_1h_nexus_d_02.m2", - value = "bow_1h_nexus_d_02.m2", + fileId = "520792", + text = "helm_plate_raidwarrior_j_01_orm.m2", + value = "helm_plate_raidwarrior_j_01_orm.m2", }, { - fileId = "145036", - text = "bow_1h_northrend_b_01.m2", - value = "bow_1h_northrend_b_01.m2", + fileId = "520794", + text = "helm_plate_raidwarrior_j_01_scf.m2", + value = "helm_plate_raidwarrior_j_01_scf.m2", }, { - fileId = "145042", - text = "bow_1h_northrend_b_02.m2", - value = "bow_1h_northrend_b_02.m2", + fileId = "520796", + text = "helm_plate_raidwarrior_j_01_scm.m2", + value = "helm_plate_raidwarrior_j_01_scm.m2", }, { - fileId = "145046", - text = "bow_1h_northrend_b_03.m2", - value = "bow_1h_northrend_b_03.m2", + fileId = "520798", + text = "helm_plate_raidwarrior_j_01_taf.m2", + value = "helm_plate_raidwarrior_j_01_taf.m2", }, { - fileId = "145051", - text = "bow_1h_northrend_c_01.m2", - value = "bow_1h_northrend_c_01.m2", + fileId = "520800", + text = "helm_plate_raidwarrior_j_01_tam.m2", + value = "helm_plate_raidwarrior_j_01_tam.m2", }, { - fileId = "145056", - text = "bow_1h_northrend_c_02.m2", - value = "bow_1h_northrend_c_02.m2", + fileId = "520802", + text = "helm_plate_raidwarrior_j_01_trf.m2", + value = "helm_plate_raidwarrior_j_01_trf.m2", }, { - fileId = "145061", - text = "bow_1h_northrend_c_03.m2", - value = "bow_1h_northrend_c_03.m2", + fileId = "520804", + text = "helm_plate_raidwarrior_j_01_trm.m2", + value = "helm_plate_raidwarrior_j_01_trm.m2", }, { - fileId = "145066", - text = "bow_1h_northrend_d_01.m2", - value = "bow_1h_northrend_d_01.m2", + fileId = "520806", + text = "helm_plate_raidwarrior_j_01_wof.m2", + value = "helm_plate_raidwarrior_j_01_wof.m2", }, { - fileId = "145071", - text = "bow_1h_northrend_d_02.m2", - value = "bow_1h_northrend_d_02.m2", + fileId = "520808", + text = "helm_plate_raidwarrior_j_01_wom.m2", + value = "helm_plate_raidwarrior_j_01_wom.m2", }, { - fileId = "145077", - text = "bow_1h_outlandraid_d_01.m2", - value = "bow_1h_outlandraid_d_01.m2", + fileId = "534075", + text = "helm_plate_raidwarrior_k_01_bef.m2", + value = "helm_plate_raidwarrior_k_01_bef.m2", }, { - fileId = "145079", - text = "bow_1h_outlandraid_d_02.m2", - value = "bow_1h_outlandraid_d_02.m2", + fileId = "534077", + text = "helm_plate_raidwarrior_k_01_bem.m2", + value = "helm_plate_raidwarrior_k_01_bem.m2", }, { - fileId = "145081", - text = "bow_1h_outlandraid_d_03.m2", - value = "bow_1h_outlandraid_d_03.m2", + fileId = "534079", + text = "helm_plate_raidwarrior_k_01_drf.m2", + value = "helm_plate_raidwarrior_k_01_drf.m2", }, { - fileId = "145083", - text = "bow_1h_outlandraid_d_03_green.m2", - value = "bow_1h_outlandraid_d_03_green.m2", + fileId = "534081", + text = "helm_plate_raidwarrior_k_01_drm.m2", + value = "helm_plate_raidwarrior_k_01_drm.m2", }, { - fileId = "145085", - text = "bow_1h_outlandraid_d_04.m2", - value = "bow_1h_outlandraid_d_04.m2", + fileId = "534083", + text = "helm_plate_raidwarrior_k_01_dwf.m2", + value = "helm_plate_raidwarrior_k_01_dwf.m2", }, { - fileId = "145087", - text = "bow_1h_outlandraid_d_05.m2", - value = "bow_1h_outlandraid_d_05.m2", + fileId = "534085", + text = "helm_plate_raidwarrior_k_01_dwm.m2", + value = "helm_plate_raidwarrior_k_01_dwm.m2", }, { - fileId = "145089", - text = "bow_1h_outlandraid_d_06.m2", - value = "bow_1h_outlandraid_d_06.m2", + fileId = "534087", + text = "helm_plate_raidwarrior_k_01_gnf.m2", + value = "helm_plate_raidwarrior_k_01_gnf.m2", }, { - fileId = "145090", - text = "bow_1h_outlandraid_d_06_blue.m2", - value = "bow_1h_outlandraid_d_06_blue.m2", + fileId = "534089", + text = "helm_plate_raidwarrior_k_01_gnm.m2", + value = "helm_plate_raidwarrior_k_01_gnm.m2", }, { - fileId = "304630", - text = "bow_1h_pvealliance_d_01.m2", - value = "bow_1h_pvealliance_d_01.m2", + fileId = "534091", + text = "helm_plate_raidwarrior_k_01_gof.m2", + value = "helm_plate_raidwarrior_k_01_gof.m2", }, { - fileId = "305324", - text = "bow_1h_pvehorde_d_01.m2", - value = "bow_1h_pvehorde_d_01.m2", + fileId = "534093", + text = "helm_plate_raidwarrior_k_01_gom.m2", + value = "helm_plate_raidwarrior_k_01_gom.m2", }, { - fileId = "306513", - text = "bow_1h_pvp320_c_01.m2", - value = "bow_1h_pvp320_c_01.m2", + fileId = "534095", + text = "helm_plate_raidwarrior_k_01_huf.m2", + value = "helm_plate_raidwarrior_k_01_huf.m2", }, { - fileId = "326876", - text = "bow_1h_pvp330_d_01.m2", - value = "bow_1h_pvp330_d_01.m2", + fileId = "534097", + text = "helm_plate_raidwarrior_k_01_hum.m2", + value = "helm_plate_raidwarrior_k_01_hum.m2", }, { - fileId = "238606", - text = "bow_1h_pvp_c_01.m2", - value = "bow_1h_pvp_c_01.m2", + fileId = "534099", + text = "helm_plate_raidwarrior_k_01_nif.m2", + value = "helm_plate_raidwarrior_k_01_nif.m2", }, { - fileId = "145092", - text = "bow_1h_pvpalliance_a_01.m2", - value = "bow_1h_pvpalliance_a_01.m2", + fileId = "534101", + text = "helm_plate_raidwarrior_k_01_nim.m2", + value = "helm_plate_raidwarrior_k_01_nim.m2", }, { - fileId = "145094", - text = "bow_1h_pvphorde_a_01.m2", - value = "bow_1h_pvphorde_a_01.m2", + fileId = "534103", + text = "helm_plate_raidwarrior_k_01_orf.m2", + value = "helm_plate_raidwarrior_k_01_orf.m2", }, { - fileId = "145095", - text = "bow_1h_short_a_01.m2", - value = "bow_1h_short_a_01.m2", + fileId = "534105", + text = "helm_plate_raidwarrior_k_01_orm.m2", + value = "helm_plate_raidwarrior_k_01_orm.m2", }, { - fileId = "145097", - text = "bow_1h_standard_a_01.m2", - value = "bow_1h_standard_a_01.m2", + fileId = "534107", + text = "helm_plate_raidwarrior_k_01_scf.m2", + value = "helm_plate_raidwarrior_k_01_scf.m2", }, { - fileId = "145101", - text = "bow_1h_standard_a_02.m2", - value = "bow_1h_standard_a_02.m2", + fileId = "534109", + text = "helm_plate_raidwarrior_k_01_scm.m2", + value = "helm_plate_raidwarrior_k_01_scm.m2", }, { - fileId = "145105", - text = "bow_1h_standard_b_01.m2", - value = "bow_1h_standard_b_01.m2", + fileId = "534111", + text = "helm_plate_raidwarrior_k_01_taf.m2", + value = "helm_plate_raidwarrior_k_01_taf.m2", }, { - fileId = "145109", - text = "bow_1h_standard_b_02.m2", - value = "bow_1h_standard_b_02.m2", + fileId = "534113", + text = "helm_plate_raidwarrior_k_01_tam.m2", + value = "helm_plate_raidwarrior_k_01_tam.m2", }, { - fileId = "145113", - text = "bow_1h_standard_c_01.m2", - value = "bow_1h_standard_c_01.m2", + fileId = "534115", + text = "helm_plate_raidwarrior_k_01_trf.m2", + value = "helm_plate_raidwarrior_k_01_trf.m2", }, { - fileId = "145117", - text = "bow_1h_standard_c_02.m2", - value = "bow_1h_standard_c_02.m2", + fileId = "534117", + text = "helm_plate_raidwarrior_k_01_trm.m2", + value = "helm_plate_raidwarrior_k_01_trm.m2", }, { - fileId = "145122", - text = "bow_1h_stratholme_d_01.m2", - value = "bow_1h_stratholme_d_01.m2", + fileId = "534119", + text = "helm_plate_raidwarrior_k_01_wof.m2", + value = "helm_plate_raidwarrior_k_01_wof.m2", }, { - fileId = "145124", - text = "bow_1h_stratholme_d_02.m2", - value = "bow_1h_stratholme_d_02.m2", + fileId = "534121", + text = "helm_plate_raidwarrior_k_01_wom.m2", + value = "helm_plate_raidwarrior_k_01_wom.m2", }, { - fileId = "145133", - text = "bow_1h_sunwell_d_01.m2", - value = "bow_1h_sunwell_d_01.m2", + fileId = "141194", + text = "helm_plate_sunwell_d_01_bef.m2", + value = "helm_plate_sunwell_d_01_bef.m2", }, { - fileId = "145142", - text = "bow_1h_sunwell_d_02.m2", - value = "bow_1h_sunwell_d_02.m2", + fileId = "141195", + text = "helm_plate_sunwell_d_01_bem.m2", + value = "helm_plate_sunwell_d_01_bem.m2", }, { - fileId = "145145", - text = "bow_1h_sunwell_d_03.m2", - value = "bow_1h_sunwell_d_03.m2", + fileId = "141196", + text = "helm_plate_sunwell_d_01_drf.m2", + value = "helm_plate_sunwell_d_01_drf.m2", }, { - fileId = "238612", - text = "bow_1h_ulduarraid_d_01.m2", - value = "bow_1h_ulduarraid_d_01.m2", + fileId = "141197", + text = "helm_plate_sunwell_d_01_drm.m2", + value = "helm_plate_sunwell_d_01_drm.m2", }, { - fileId = "145150", - text = "bow_1h_utgarde_d_01.m2", - value = "bow_1h_utgarde_d_01.m2", + fileId = "141198", + text = "helm_plate_sunwell_d_01_dwf.m2", + value = "helm_plate_sunwell_d_01_dwf.m2", }, { - fileId = "145156", - text = "bow_1h_utgarde_d_02.m2", - value = "bow_1h_utgarde_d_02.m2", + fileId = "141199", + text = "helm_plate_sunwell_d_01_dwm.m2", + value = "helm_plate_sunwell_d_01_dwm.m2", }, { - fileId = "145162", - text = "bow_1h_zulaman_d_01.m2", - value = "bow_1h_zulaman_d_01.m2", + fileId = "141200", + text = "helm_plate_sunwell_d_01_gnf.m2", + value = "helm_plate_sunwell_d_01_gnf.m2", }, { - fileId = "145167", - text = "bow_1h_zulgurub_d_01.m2", - value = "bow_1h_zulgurub_d_01.m2", + fileId = "141201", + text = "helm_plate_sunwell_d_01_gnm.m2", + value = "helm_plate_sunwell_d_01_gnm.m2", }, { - fileId = "145169", - text = "bow_1h_zulgurub_d_02.m2", - value = "bow_1h_zulgurub_d_02.m2", + fileId = "141202", + text = "helm_plate_sunwell_d_01_gof.m2", + value = "helm_plate_sunwell_d_01_gof.m2", }, { - fileId = "145170", - text = "bow_2h_crossbow_a_01.m2", - value = "bow_2h_crossbow_a_01.m2", + fileId = "141203", + text = "helm_plate_sunwell_d_01_gom.m2", + value = "helm_plate_sunwell_d_01_gom.m2", }, { - fileId = "145173", - text = "bow_2h_crossbow_b_01.m2", - value = "bow_2h_crossbow_b_01.m2", + fileId = "141204", + text = "helm_plate_sunwell_d_01_huf.m2", + value = "helm_plate_sunwell_d_01_huf.m2", }, { - fileId = "145176", - text = "bow_2h_crossbow_blacktemple_d_01.m2", - value = "bow_2h_crossbow_blacktemple_d_01.m2", + fileId = "141205", + text = "helm_plate_sunwell_d_01_hum.m2", + value = "helm_plate_sunwell_d_01_hum.m2", }, { - fileId = "145183", - text = "bow_2h_crossbow_blackwing_a_01.m2", - value = "bow_2h_crossbow_blackwing_a_01.m2", + fileId = "141206", + text = "helm_plate_sunwell_d_01_nif.m2", + value = "helm_plate_sunwell_d_01_nif.m2", }, { - fileId = "145184", - text = "bow_2h_crossbow_c_01.m2", - value = "bow_2h_crossbow_c_01.m2", + fileId = "141207", + text = "helm_plate_sunwell_d_01_nim.m2", + value = "helm_plate_sunwell_d_01_nim.m2", }, { - fileId = "145186", - text = "bow_2h_crossbow_cotstrat_d_01.m2", - value = "bow_2h_crossbow_cotstrat_d_01.m2", + fileId = "141208", + text = "helm_plate_sunwell_d_01_orf.m2", + value = "helm_plate_sunwell_d_01_orf.m2", }, { - fileId = "145190", - text = "bow_2h_crossbow_dalaran_d_01.m2", - value = "bow_2h_crossbow_dalaran_d_01.m2", + fileId = "141209", + text = "helm_plate_sunwell_d_01_orm.m2", + value = "helm_plate_sunwell_d_01_orm.m2", }, { - fileId = "145196", - text = "bow_2h_crossbow_draenei_a_01.m2", - value = "bow_2h_crossbow_draenei_a_01.m2", + fileId = "141210", + text = "helm_plate_sunwell_d_01_scf.m2", + value = "helm_plate_sunwell_d_01_scf.m2", }, { - fileId = "145201", - text = "bow_2h_crossbow_draenei_a_02.m2", - value = "bow_2h_crossbow_draenei_a_02.m2", + fileId = "141211", + text = "helm_plate_sunwell_d_01_scm.m2", + value = "helm_plate_sunwell_d_01_scm.m2", }, { - fileId = "320311", - text = "bow_2h_crossbow_icecrownraid_d_01.m2", - value = "bow_2h_crossbow_icecrownraid_d_01.m2", + fileId = "141212", + text = "helm_plate_sunwell_d_01_taf.m2", + value = "helm_plate_sunwell_d_01_taf.m2", }, { - fileId = "145209", - text = "bow_2h_crossbow_nexus_d_01.m2", - value = "bow_2h_crossbow_nexus_d_01.m2", + fileId = "141213", + text = "helm_plate_sunwell_d_01_tam.m2", + value = "helm_plate_sunwell_d_01_tam.m2", }, { - fileId = "145215", - text = "bow_2h_crossbow_northrend_b_01.m2", - value = "bow_2h_crossbow_northrend_b_01.m2", + fileId = "141214", + text = "helm_plate_sunwell_d_01_trf.m2", + value = "helm_plate_sunwell_d_01_trf.m2", }, { - fileId = "145221", - text = "bow_2h_crossbow_northrend_b_02.m2", - value = "bow_2h_crossbow_northrend_b_02.m2", + fileId = "141215", + text = "helm_plate_sunwell_d_01_trm.m2", + value = "helm_plate_sunwell_d_01_trm.m2", }, { - fileId = "145227", - text = "bow_2h_crossbow_northrend_c_01.m2", - value = "bow_2h_crossbow_northrend_c_01.m2", + fileId = "462365", + text = "helm_plate_sunwell_d_01_wof.m2", + value = "helm_plate_sunwell_d_01_wof.m2", }, { - fileId = "145232", - text = "bow_2h_crossbow_northrend_c_02.m2", - value = "bow_2h_crossbow_northrend_c_02.m2", + fileId = "441153", + text = "helm_plate_sunwell_d_01_wom.m2", + value = "helm_plate_sunwell_d_01_wom.m2", }, { - fileId = "145237", - text = "bow_2h_crossbow_northrend_d_01.m2", - value = "bow_2h_crossbow_northrend_d_01.m2", + fileId = "391359", + text = "helm_plate_twilighthammer_c_01_bef.m2", + value = "helm_plate_twilighthammer_c_01_bef.m2", }, { - fileId = "145243", - text = "bow_2h_crossbow_outlandpvp_d_01.m2", - value = "bow_2h_crossbow_outlandpvp_d_01.m2", + fileId = "391360", + text = "helm_plate_twilighthammer_c_01_bem.m2", + value = "helm_plate_twilighthammer_c_01_bem.m2", }, { - fileId = "145250", - text = "bow_2h_crossbow_outlandraid_d_01.m2", - value = "bow_2h_crossbow_outlandraid_d_01.m2", + fileId = "391361", + text = "helm_plate_twilighthammer_c_01_drf.m2", + value = "helm_plate_twilighthammer_c_01_drf.m2", }, { - fileId = "145252", - text = "bow_2h_crossbow_outlandraid_d_04.m2", - value = "bow_2h_crossbow_outlandraid_d_04.m2", + fileId = "391362", + text = "helm_plate_twilighthammer_c_01_drm.m2", + value = "helm_plate_twilighthammer_c_01_drm.m2", }, { - fileId = "145254", - text = "bow_2h_crossbow_outlandraid_d_05.m2", - value = "bow_2h_crossbow_outlandraid_d_05.m2", + fileId = "391363", + text = "helm_plate_twilighthammer_c_01_dwf.m2", + value = "helm_plate_twilighthammer_c_01_dwf.m2", }, { - fileId = "145256", - text = "bow_2h_crossbow_outlandraid_d_06.m2", - value = "bow_2h_crossbow_outlandraid_d_06.m2", + fileId = "391364", + text = "helm_plate_twilighthammer_c_01_dwm.m2", + value = "helm_plate_twilighthammer_c_01_dwm.m2", }, { - fileId = "304546", - text = "bow_2h_crossbow_pvealliance_d_01.m2", - value = "bow_2h_crossbow_pvealliance_d_01.m2", + fileId = "391365", + text = "helm_plate_twilighthammer_c_01_gnf.m2", + value = "helm_plate_twilighthammer_c_01_gnf.m2", }, { - fileId = "305436", - text = "bow_2h_crossbow_pvehorde_d_01.m2", - value = "bow_2h_crossbow_pvehorde_d_01.m2", + fileId = "391366", + text = "helm_plate_twilighthammer_c_01_gnm.m2", + value = "helm_plate_twilighthammer_c_01_gnm.m2", }, { - fileId = "305939", - text = "bow_2h_crossbow_pvp320_c_01.m2", - value = "bow_2h_crossbow_pvp320_c_01.m2", + fileId = "391367", + text = "helm_plate_twilighthammer_c_01_gof.m2", + value = "helm_plate_twilighthammer_c_01_gof.m2", }, { - fileId = "326881", - text = "bow_2h_crossbow_pvp330_d_01.m2", - value = "bow_2h_crossbow_pvp330_d_01.m2", + fileId = "391368", + text = "helm_plate_twilighthammer_c_01_gom.m2", + value = "helm_plate_twilighthammer_c_01_gom.m2", }, { - fileId = "238616", - text = "bow_2h_crossbow_pvp_c_01.m2", - value = "bow_2h_crossbow_pvp_c_01.m2", + fileId = "391369", + text = "helm_plate_twilighthammer_c_01_huf.m2", + value = "helm_plate_twilighthammer_c_01_huf.m2", }, { - fileId = "145258", - text = "bow_2h_crossbow_pvpalliance_a_01.m2", - value = "bow_2h_crossbow_pvpalliance_a_01.m2", + fileId = "391370", + text = "helm_plate_twilighthammer_c_01_hum.m2", + value = "helm_plate_twilighthammer_c_01_hum.m2", }, { - fileId = "145261", - text = "bow_2h_crossbow_pvphorde_a_01.m2", - value = "bow_2h_crossbow_pvphorde_a_01.m2", + fileId = "391371", + text = "helm_plate_twilighthammer_c_01_nif.m2", + value = "helm_plate_twilighthammer_c_01_nif.m2", }, { - fileId = "145264", - text = "bow_2h_crossbow_stratholme_d_01.m2", - value = "bow_2h_crossbow_stratholme_d_01.m2", + fileId = "391372", + text = "helm_plate_twilighthammer_c_01_nim.m2", + value = "helm_plate_twilighthammer_c_01_nim.m2", }, { - fileId = "145265", - text = "bow_2h_crossbow_sunwell_c_01.m2", - value = "bow_2h_crossbow_sunwell_c_01.m2", + fileId = "391373", + text = "helm_plate_twilighthammer_c_01_orf.m2", + value = "helm_plate_twilighthammer_c_01_orf.m2", }, { - fileId = "145271", - text = "bow_2h_crossbow_ulduar_d_01.m2", - value = "bow_2h_crossbow_ulduar_d_01.m2", + fileId = "391374", + text = "helm_plate_twilighthammer_c_01_orm.m2", + value = "helm_plate_twilighthammer_c_01_orm.m2", }, { - fileId = "249262", - text = "bow_2h_crossbow_ulduarraid_d_01.m2", - value = "bow_2h_crossbow_ulduarraid_d_01.m2", + fileId = "391375", + text = "helm_plate_twilighthammer_c_01_scf.m2", + value = "helm_plate_twilighthammer_c_01_scf.m2", }, { - fileId = "145278", - text = "bow_2h_crossbow_utgarde_d_01.m2", - value = "bow_2h_crossbow_utgarde_d_01.m2", + fileId = "391376", + text = "helm_plate_twilighthammer_c_01_scm.m2", + value = "helm_plate_twilighthammer_c_01_scm.m2", }, { - fileId = "145283", - text = "bow_2h_crossbow_zulgurub_d_01.m2", - value = "bow_2h_crossbow_zulgurub_d_01.m2", + fileId = "391377", + text = "helm_plate_twilighthammer_c_01_taf.m2", + value = "helm_plate_twilighthammer_c_01_taf.m2", }, { - fileId = "145298", - text = "club_1h_cane_a_01.m2", - value = "club_1h_cane_a_01.m2", + fileId = "391378", + text = "helm_plate_twilighthammer_c_01_tam.m2", + value = "helm_plate_twilighthammer_c_01_tam.m2", }, { - fileId = "145300", - text = "club_1h_exotic_a_01.m2", - value = "club_1h_exotic_a_01.m2", + fileId = "391379", + text = "helm_plate_twilighthammer_c_01_trf.m2", + value = "helm_plate_twilighthammer_c_01_trf.m2", }, { - fileId = "145301", - text = "club_1h_spiked_a_01.m2", - value = "club_1h_spiked_a_01.m2", + fileId = "391380", + text = "helm_plate_twilighthammer_c_01_trm.m2", + value = "helm_plate_twilighthammer_c_01_trm.m2", }, { - fileId = "145304", - text = "club_1h_torch_a_01.m2", - value = "club_1h_torch_a_01.m2", + fileId = "391381", + text = "helm_plate_twilighthammer_c_01_wof.m2", + value = "helm_plate_twilighthammer_c_01_wof.m2", }, { - fileId = "145306", - text = "club_1h_torch_a_02.m2", - value = "club_1h_torch_a_02.m2", + fileId = "391382", + text = "helm_plate_twilighthammer_c_01_wom.m2", + value = "helm_plate_twilighthammer_c_01_wom.m2", }, { - fileId = "145307", - text = "club_1h_torch_a_03northrend.m2", - value = "club_1h_torch_a_03northrend.m2", + fileId = "141220", + text = "helm_plate_viking_d_01_bef.m2", + value = "helm_plate_viking_d_01_bef.m2", }, { - fileId = "145308", - text = "club_1h_torch_a_03northrend_light.m2", - value = "club_1h_torch_a_03northrend_light.m2", + fileId = "141221", + text = "helm_plate_viking_d_01_bem.m2", + value = "helm_plate_viking_d_01_bem.m2", }, { - fileId = "238623", - text = "firearm_2h_naxx25_d_01.m2", - value = "firearm_2h_naxx25_d_01.m2", + fileId = "141222", + text = "helm_plate_viking_d_01_drf.m2", + value = "helm_plate_viking_d_01_drf.m2", }, { - fileId = "304290", - text = "firearm_2h_pvealliance_d_01.m2", - value = "firearm_2h_pvealliance_d_01.m2", + fileId = "141223", + text = "helm_plate_viking_d_01_drm.m2", + value = "helm_plate_viking_d_01_drm.m2", }, { - fileId = "304884", - text = "firearm_2h_pvehorde_d_01.m2", - value = "firearm_2h_pvehorde_d_01.m2", + fileId = "141224", + text = "helm_plate_viking_d_01_dwf.m2", + value = "helm_plate_viking_d_01_dwf.m2", }, { - fileId = "238628", - text = "firearm_2h_pvp_c_01.m2", - value = "firearm_2h_pvp_c_01.m2", + fileId = "141225", + text = "helm_plate_viking_d_01_dwm.m2", + value = "helm_plate_viking_d_01_dwm.m2", }, { - fileId = "145319", - text = "firearm_2h_rifle_a_01.m2", - value = "firearm_2h_rifle_a_01.m2", + fileId = "141226", + text = "helm_plate_viking_d_01_gnf.m2", + value = "helm_plate_viking_d_01_gnf.m2", }, { - fileId = "145323", - text = "firearm_2h_rifle_a_02.m2", - value = "firearm_2h_rifle_a_02.m2", + fileId = "141227", + text = "helm_plate_viking_d_01_gnm.m2", + value = "helm_plate_viking_d_01_gnm.m2", }, { - fileId = "145328", - text = "firearm_2h_rifle_a_03.m2", - value = "firearm_2h_rifle_a_03.m2", + fileId = "442282", + text = "helm_plate_viking_d_01_gof.m2", + value = "helm_plate_viking_d_01_gof.m2", }, { - fileId = "145329", - text = "firearm_2h_rifle_a_03scope.m2", - value = "firearm_2h_rifle_a_03scope.m2", + fileId = "442283", + text = "helm_plate_viking_d_01_gom.m2", + value = "helm_plate_viking_d_01_gom.m2", }, { - fileId = "145333", - text = "firearm_2h_rifle_a_04.m2", - value = "firearm_2h_rifle_a_04.m2", + fileId = "141228", + text = "helm_plate_viking_d_01_huf.m2", + value = "helm_plate_viking_d_01_huf.m2", }, { - fileId = "145334", - text = "firearm_2h_rifle_a_04scopesniper.m2", - value = "firearm_2h_rifle_a_04scopesniper.m2", + fileId = "141229", + text = "helm_plate_viking_d_01_hum.m2", + value = "helm_plate_viking_d_01_hum.m2", }, { - fileId = "145335", - text = "firearm_2h_rifle_a_05.m2", - value = "firearm_2h_rifle_a_05.m2", + fileId = "141230", + text = "helm_plate_viking_d_01_nif.m2", + value = "helm_plate_viking_d_01_nif.m2", }, { - fileId = "145346", - text = "firearm_2h_rifle_a_06.m2", - value = "firearm_2h_rifle_a_06.m2", + fileId = "141231", + text = "helm_plate_viking_d_01_nim.m2", + value = "helm_plate_viking_d_01_nim.m2", }, { - fileId = "145348", - text = "firearm_2h_rifle_ahnqiraj_d_01.m2", - value = "firearm_2h_rifle_ahnqiraj_d_01.m2", + fileId = "238249", + text = "helm_plate_viking_d_01_nsm.m2", + value = "helm_plate_viking_d_01_nsm.m2", }, { - fileId = "145350", - text = "firearm_2h_rifle_ahnqiraj_d_02.m2", - value = "firearm_2h_rifle_ahnqiraj_d_02.m2", + fileId = "141232", + text = "helm_plate_viking_d_01_orf.m2", + value = "helm_plate_viking_d_01_orf.m2", }, { - fileId = "304082", - text = "firearm_2h_rifle_alliancecovenant_d_01.m2", - value = "firearm_2h_rifle_alliancecovenant_d_01.m2", + fileId = "141233", + text = "helm_plate_viking_d_01_orm.m2", + value = "helm_plate_viking_d_01_orm.m2", }, { - fileId = "145356", - text = "firearm_2h_rifle_b_01.m2", - value = "firearm_2h_rifle_b_01.m2", + fileId = "141234", + text = "helm_plate_viking_d_01_scf.m2", + value = "helm_plate_viking_d_01_scf.m2", }, { - fileId = "145360", - text = "firearm_2h_rifle_b_02.m2", - value = "firearm_2h_rifle_b_02.m2", + fileId = "141235", + text = "helm_plate_viking_d_01_scm.m2", + value = "helm_plate_viking_d_01_scm.m2", }, { - fileId = "145366", - text = "firearm_2h_rifle_b_03.m2", - value = "firearm_2h_rifle_b_03.m2", + fileId = "141236", + text = "helm_plate_viking_d_01_taf.m2", + value = "helm_plate_viking_d_01_taf.m2", }, { - fileId = "145372", - text = "firearm_2h_rifle_blood_a_01.m2", - value = "firearm_2h_rifle_blood_a_01.m2", + fileId = "141237", + text = "helm_plate_viking_d_01_tam.m2", + value = "helm_plate_viking_d_01_tam.m2", }, { - fileId = "145377", - text = "firearm_2h_rifle_blood_b_01.m2", - value = "firearm_2h_rifle_blood_b_01.m2", + fileId = "141238", + text = "helm_plate_viking_d_01_trf.m2", + value = "helm_plate_viking_d_01_trf.m2", }, { - fileId = "145383", - text = "firearm_2h_rifle_blood_c_01.m2", - value = "firearm_2h_rifle_blood_c_01.m2", + fileId = "141239", + text = "helm_plate_viking_d_01_trm.m2", + value = "helm_plate_viking_d_01_trm.m2", }, { - fileId = "145389", - text = "firearm_2h_rifle_blood_d_01.m2", - value = "firearm_2h_rifle_blood_d_01.m2", + fileId = "442284", + text = "helm_plate_viking_d_01_wom.m2", + value = "helm_plate_viking_d_01_wom.m2", }, { - fileId = "145395", - text = "firearm_2h_rifle_cotstrat_d_01.m2", - value = "firearm_2h_rifle_cotstrat_d_01.m2", + fileId = "238251", + text = "helm_plate_vrykul_01_nsm.m2", + value = "helm_plate_vrykul_01_nsm.m2", }, { - fileId = "238633", - text = "firearm_2h_rifle_dalaran_d_01.m2", - value = "firearm_2h_rifle_dalaran_d_01.m2", + fileId = "238252", + text = "helm_plate_vrykul_01_vrm.m2", + value = "helm_plate_vrykul_01_vrm.m2", }, { - fileId = "145401", - text = "firearm_2h_rifle_draenei_a_01.m2", - value = "firearm_2h_rifle_draenei_a_01.m2", + fileId = "141246", + text = "helm_plate_zulaman_d_01_bef.m2", + value = "helm_plate_zulaman_d_01_bef.m2", }, { - fileId = "145407", - text = "firearm_2h_rifle_engineering_d_01.m2", - value = "firearm_2h_rifle_engineering_d_01.m2", + fileId = "141247", + text = "helm_plate_zulaman_d_01_bem.m2", + value = "helm_plate_zulaman_d_01_bem.m2", }, { - fileId = "145409", - text = "firearm_2h_rifle_hellfire_c_01.m2", - value = "firearm_2h_rifle_hellfire_c_01.m2", + fileId = "141248", + text = "helm_plate_zulaman_d_01_drf.m2", + value = "helm_plate_zulaman_d_01_drf.m2", }, { - fileId = "145411", - text = "firearm_2h_rifle_hellfire_d_01.m2", - value = "firearm_2h_rifle_hellfire_d_01.m2", + fileId = "141249", + text = "helm_plate_zulaman_d_01_drm.m2", + value = "helm_plate_zulaman_d_01_drm.m2", }, { - fileId = "294385", - text = "firearm_2h_rifle_hordecovenant_d_01.m2", - value = "firearm_2h_rifle_hordecovenant_d_01.m2", + fileId = "141250", + text = "helm_plate_zulaman_d_01_dwf.m2", + value = "helm_plate_zulaman_d_01_dwf.m2", }, { - fileId = "145415", - text = "firearm_2h_rifle_hunteralliancelvl20.m2", - value = "firearm_2h_rifle_hunteralliancelvl20.m2", + fileId = "141251", + text = "helm_plate_zulaman_d_01_dwm.m2", + value = "helm_plate_zulaman_d_01_dwm.m2", }, { - fileId = "145416", - text = "firearm_2h_rifle_hunteralliancelvl50.m2", - value = "firearm_2h_rifle_hunteralliancelvl50.m2", + fileId = "141252", + text = "helm_plate_zulaman_d_01_gnf.m2", + value = "helm_plate_zulaman_d_01_gnf.m2", }, { - fileId = "145417", - text = "firearm_2h_rifle_hunterhordelvl20.m2", - value = "firearm_2h_rifle_hunterhordelvl20.m2", + fileId = "141253", + text = "helm_plate_zulaman_d_01_gnm.m2", + value = "helm_plate_zulaman_d_01_gnm.m2", }, { - fileId = "145419", - text = "firearm_2h_rifle_hunterhordelvl50.m2", - value = "firearm_2h_rifle_hunterhordelvl50.m2", + fileId = "141254", + text = "helm_plate_zulaman_d_01_gof.m2", + value = "helm_plate_zulaman_d_01_gof.m2", }, { - fileId = "308322", - text = "firearm_2h_rifle_icecrownraid_d_01.m2", - value = "firearm_2h_rifle_icecrownraid_d_01.m2", + fileId = "141255", + text = "helm_plate_zulaman_d_01_gom.m2", + value = "helm_plate_zulaman_d_01_gom.m2", }, { - fileId = "145422", - text = "firearm_2h_rifle_nexus_d_01.m2", - value = "firearm_2h_rifle_nexus_d_01.m2", + fileId = "141256", + text = "helm_plate_zulaman_d_01_huf.m2", + value = "helm_plate_zulaman_d_01_huf.m2", }, { - fileId = "145447", - text = "firearm_2h_rifle_outlandraid_d_01.m2", - value = "firearm_2h_rifle_outlandraid_d_01.m2", + fileId = "141257", + text = "helm_plate_zulaman_d_01_hum.m2", + value = "helm_plate_zulaman_d_01_hum.m2", }, { - fileId = "145449", - text = "firearm_2h_rifle_outlandraid_d_02.m2", - value = "firearm_2h_rifle_outlandraid_d_02.m2", + fileId = "141258", + text = "helm_plate_zulaman_d_01_nif.m2", + value = "helm_plate_zulaman_d_01_nif.m2", }, { - fileId = "145451", - text = "firearm_2h_rifle_outlandraid_d_03.m2", - value = "firearm_2h_rifle_outlandraid_d_03.m2", + fileId = "141259", + text = "helm_plate_zulaman_d_01_nim.m2", + value = "helm_plate_zulaman_d_01_nim.m2", }, { - fileId = "145453", - text = "firearm_2h_rifle_outlandraid_d_04.m2", - value = "firearm_2h_rifle_outlandraid_d_04.m2", + fileId = "141260", + text = "helm_plate_zulaman_d_01_orf.m2", + value = "helm_plate_zulaman_d_01_orf.m2", }, { - fileId = "145460", - text = "firearm_2h_rifle_outlandraid_d_05.m2", - value = "firearm_2h_rifle_outlandraid_d_05.m2", + fileId = "141261", + text = "helm_plate_zulaman_d_01_orm.m2", + value = "helm_plate_zulaman_d_01_orm.m2", }, { - fileId = "145467", - text = "firearm_2h_rifle_outlandraid_d_06.m2", - value = "firearm_2h_rifle_outlandraid_d_06.m2", + fileId = "141262", + text = "helm_plate_zulaman_d_01_scf.m2", + value = "helm_plate_zulaman_d_01_scf.m2", }, { - fileId = "145473", - text = "firearm_2h_rifle_plague_a_01.m2", - value = "firearm_2h_rifle_plague_a_01.m2", + fileId = "141263", + text = "helm_plate_zulaman_d_01_scm.m2", + value = "helm_plate_zulaman_d_01_scm.m2", }, { - fileId = "307038", - text = "firearm_2h_rifle_pvp320_c_01.m2", - value = "firearm_2h_rifle_pvp320_c_01.m2", + fileId = "141264", + text = "helm_plate_zulaman_d_01_taf.m2", + value = "helm_plate_zulaman_d_01_taf.m2", }, { - fileId = "327384", - text = "firearm_2h_rifle_pvp330_d_01.m2", - value = "firearm_2h_rifle_pvp330_d_01.m2", + fileId = "141265", + text = "helm_plate_zulaman_d_01_tam.m2", + value = "helm_plate_zulaman_d_01_tam.m2", }, { - fileId = "145475", - text = "firearm_2h_rifle_pvpalliance_a_01.m2", - value = "firearm_2h_rifle_pvpalliance_a_01.m2", + fileId = "141266", + text = "helm_plate_zulaman_d_01_trf.m2", + value = "helm_plate_zulaman_d_01_trf.m2", }, { - fileId = "145477", - text = "firearm_2h_rifle_pvphorde_a_01.m2", - value = "firearm_2h_rifle_pvphorde_a_01.m2", + fileId = "141267", + text = "helm_plate_zulaman_d_01_trm.m2", + value = "helm_plate_zulaman_d_01_trm.m2", }, { - fileId = "145479", - text = "firearm_2h_rifle_raid_moltencore.m2", - value = "firearm_2h_rifle_raid_moltencore.m2", + fileId = "462367", + text = "helm_plate_zulaman_d_01_wof.m2", + value = "helm_plate_zulaman_d_01_wof.m2", }, { - fileId = "145482", - text = "firearm_2h_rifle_stratholme_d_01.m2", - value = "firearm_2h_rifle_stratholme_d_01.m2", + fileId = "442285", + text = "helm_plate_zulaman_d_01_wom.m2", + value = "helm_plate_zulaman_d_01_wom.m2", }, { - fileId = "145484", - text = "firearm_2h_rifle_sunwell_d_01.m2", - value = "firearm_2h_rifle_sunwell_d_01.m2", + fileId = "141272", + text = "helm_plate_zulaman_d_02_bef.m2", + value = "helm_plate_zulaman_d_02_bef.m2", }, { - fileId = "145489", - text = "firearm_2h_rifle_ulduar_d_01.m2", - value = "firearm_2h_rifle_ulduar_d_01.m2", + fileId = "141273", + text = "helm_plate_zulaman_d_02_bem.m2", + value = "helm_plate_zulaman_d_02_bem.m2", }, { - fileId = "249271", - text = "firearm_2h_rifle_ulduarraid_d_01.m2", - value = "firearm_2h_rifle_ulduarraid_d_01.m2", + fileId = "141274", + text = "helm_plate_zulaman_d_02_drf.m2", + value = "helm_plate_zulaman_d_02_drf.m2", }, { - fileId = "145495", - text = "firearm_2h_rifle_utgarde_d_01.m2", - value = "firearm_2h_rifle_utgarde_d_01.m2", + fileId = "141275", + text = "helm_plate_zulaman_d_02_drm.m2", + value = "helm_plate_zulaman_d_02_drm.m2", }, { - fileId = "145502", - text = "firearm_2h_rifle_zulaman_d_01.m2", - value = "firearm_2h_rifle_zulaman_d_01.m2", + fileId = "141276", + text = "helm_plate_zulaman_d_02_dwf.m2", + value = "helm_plate_zulaman_d_02_dwf.m2", }, { - fileId = "145507", - text = "firearm_2h_rifle_zulgurub_d_01.m2", - value = "firearm_2h_rifle_zulgurub_d_01.m2", + fileId = "141277", + text = "helm_plate_zulaman_d_02_dwm.m2", + value = "helm_plate_zulaman_d_02_dwm.m2", }, { - fileId = "145508", - text = "firearm_2h_shotgun_b_01.m2", - value = "firearm_2h_shotgun_b_01.m2", + fileId = "141278", + text = "helm_plate_zulaman_d_02_gnf.m2", + value = "helm_plate_zulaman_d_02_gnf.m2", }, { - fileId = "329805", - text = "firearm_2h_shotgun_b_01alt.m2", - value = "firearm_2h_shotgun_b_01alt.m2", + fileId = "141279", + text = "helm_plate_zulaman_d_02_gnm.m2", + value = "helm_plate_zulaman_d_02_gnm.m2", }, { - fileId = "145521", - text = "glave_1h_blood_c_01.m2", - value = "glave_1h_blood_c_01.m2", + fileId = "446942", + text = "helm_plate_zulaman_d_02_gof.m2", + value = "helm_plate_zulaman_d_02_gof.m2", }, { - fileId = "145523", - text = "glave_1h_dualblade_a_01.m2", - value = "glave_1h_dualblade_a_01.m2", + fileId = "446943", + text = "helm_plate_zulaman_d_02_gom.m2", + value = "helm_plate_zulaman_d_02_gom.m2", }, { - fileId = "145527", - text = "glave_1h_dualblade_a_02.m2", - value = "glave_1h_dualblade_a_02.m2", + fileId = "141280", + text = "helm_plate_zulaman_d_02_huf.m2", + value = "helm_plate_zulaman_d_02_huf.m2", }, { - fileId = "145531", - text = "glave_1h_dualblade_a_03.m2", - value = "glave_1h_dualblade_a_03.m2", + fileId = "141281", + text = "helm_plate_zulaman_d_02_hum.m2", + value = "helm_plate_zulaman_d_02_hum.m2", }, { - fileId = "145535", - text = "glave_1h_dualblade_b_01.m2", - value = "glave_1h_dualblade_b_01.m2", + fileId = "141282", + text = "helm_plate_zulaman_d_02_nif.m2", + value = "helm_plate_zulaman_d_02_nif.m2", }, { - fileId = "145539", - text = "glave_1h_dualblade_b_02.m2", - value = "glave_1h_dualblade_b_02.m2", + fileId = "141283", + text = "helm_plate_zulaman_d_02_nim.m2", + value = "helm_plate_zulaman_d_02_nim.m2", }, { - fileId = "145545", - text = "glave_1h_dualblade_b_03.m2", - value = "glave_1h_dualblade_b_03.m2", + fileId = "141284", + text = "helm_plate_zulaman_d_02_orf.m2", + value = "helm_plate_zulaman_d_02_orf.m2", }, { - fileId = "145550", - text = "glave_1h_dualblade_c_01.m2", - value = "glave_1h_dualblade_c_01.m2", + fileId = "141285", + text = "helm_plate_zulaman_d_02_orm.m2", + value = "helm_plate_zulaman_d_02_orm.m2", }, { - fileId = "145554", - text = "glave_1h_dualblade_d_01.m2", - value = "glave_1h_dualblade_d_01.m2", + fileId = "141286", + text = "helm_plate_zulaman_d_02_scf.m2", + value = "helm_plate_zulaman_d_02_scf.m2", }, { - fileId = "145558", - text = "glave_1h_dualblade_d_01left.m2", - value = "glave_1h_dualblade_d_01left.m2", + fileId = "141287", + text = "helm_plate_zulaman_d_02_scm.m2", + value = "helm_plate_zulaman_d_02_scm.m2", }, { - fileId = "145562", - text = "glave_1h_dualblade_d_02.m2", - value = "glave_1h_dualblade_d_02.m2", + fileId = "141288", + text = "helm_plate_zulaman_d_02_taf.m2", + value = "helm_plate_zulaman_d_02_taf.m2", }, { - fileId = "145564", - text = "glave_1h_dualblade_d_02left.m2", - value = "glave_1h_dualblade_d_02left.m2", + fileId = "141289", + text = "helm_plate_zulaman_d_02_tam.m2", + value = "helm_plate_zulaman_d_02_tam.m2", }, { - fileId = "145566", - text = "glave_1h_magtheridon_d_01.m2", - value = "glave_1h_magtheridon_d_01.m2", + fileId = "141290", + text = "helm_plate_zulaman_d_02_trf.m2", + value = "helm_plate_zulaman_d_02_trf.m2", }, { - fileId = "145568", - text = "glave_1h_short_a_01.m2", - value = "glave_1h_short_a_01.m2", + fileId = "141291", + text = "helm_plate_zulaman_d_02_trm.m2", + value = "helm_plate_zulaman_d_02_trm.m2", }, { - fileId = "145573", - text = "glave_1h_short_a_02.m2", - value = "glave_1h_short_a_02.m2", + fileId = "462341", + text = "helm_plate_zulaman_d_02_wof.m2", + value = "helm_plate_zulaman_d_02_wof.m2", }, { - fileId = "145578", - text = "glave_1h_short_a_03.m2", - value = "glave_1h_short_a_03.m2", + fileId = "446146", + text = "helm_plate_zulaman_d_02_wom.m2", + value = "helm_plate_zulaman_d_02_wom.m2", }, { - fileId = "145583", - text = "glave_1h_short_b_01.m2", - value = "glave_1h_short_b_01.m2", + fileId = "141296", + text = "helm_plate_zulaman_d_03_bef.m2", + value = "helm_plate_zulaman_d_03_bef.m2", }, { - fileId = "145588", - text = "glave_1h_short_c_01.m2", - value = "glave_1h_short_c_01.m2", + fileId = "141297", + text = "helm_plate_zulaman_d_03_bem.m2", + value = "helm_plate_zulaman_d_03_bem.m2", }, { - fileId = "145592", - text = "glave_1h_short_c_02.m2", - value = "glave_1h_short_c_02.m2", + fileId = "141298", + text = "helm_plate_zulaman_d_03_drf.m2", + value = "helm_plate_zulaman_d_03_drf.m2", }, { - fileId = "145602", - text = "hammer_1h_epic_d_01.m2", - value = "hammer_1h_epic_d_01.m2", + fileId = "141299", + text = "helm_plate_zulaman_d_03_drm.m2", + value = "helm_plate_zulaman_d_03_drm.m2", }, { - fileId = "238638", - text = "hammer_1h_healer_pvp_c_01.m2", - value = "hammer_1h_healer_pvp_c_01.m2", + fileId = "141300", + text = "helm_plate_zulaman_d_03_dwf.m2", + value = "helm_plate_zulaman_d_03_dwf.m2", }, { - fileId = "145603", - text = "hammer_1h_horde_a_01.m2", - value = "hammer_1h_horde_a_01.m2", + fileId = "141301", + text = "helm_plate_zulaman_d_03_dwm.m2", + value = "helm_plate_zulaman_d_03_dwm.m2", }, { - fileId = "145607", - text = "hammer_1h_horde_a_02.m2", - value = "hammer_1h_horde_a_02.m2", + fileId = "141302", + text = "helm_plate_zulaman_d_03_gnf.m2", + value = "helm_plate_zulaman_d_03_gnf.m2", }, { - fileId = "145612", - text = "hammer_1h_horde_a_03.m2", - value = "hammer_1h_horde_a_03.m2", + fileId = "141303", + text = "helm_plate_zulaman_d_03_gnm.m2", + value = "helm_plate_zulaman_d_03_gnm.m2", }, { - fileId = "145615", - text = "hammer_1h_horde_a_04.m2", - value = "hammer_1h_horde_a_04.m2", + fileId = "141304", + text = "helm_plate_zulaman_d_03_gof.m2", + value = "helm_plate_zulaman_d_03_gof.m2", }, { - fileId = "145621", - text = "hammer_1h_horde_b_01.m2", - value = "hammer_1h_horde_b_01.m2", + fileId = "141305", + text = "helm_plate_zulaman_d_03_gom.m2", + value = "helm_plate_zulaman_d_03_gom.m2", }, { - fileId = "145626", - text = "hammer_1h_horde_b_02.m2", - value = "hammer_1h_horde_b_02.m2", + fileId = "141306", + text = "helm_plate_zulaman_d_03_huf.m2", + value = "helm_plate_zulaman_d_03_huf.m2", }, { - fileId = "145632", - text = "hammer_1h_horde_d_02.m2", - value = "hammer_1h_horde_d_02.m2", + fileId = "141307", + text = "helm_plate_zulaman_d_03_hum.m2", + value = "helm_plate_zulaman_d_03_hum.m2", }, { - fileId = "145634", - text = "hammer_1h_maul_a_01.m2", - value = "hammer_1h_maul_a_01.m2", + fileId = "141308", + text = "helm_plate_zulaman_d_03_nif.m2", + value = "helm_plate_zulaman_d_03_nif.m2", }, { - fileId = "145638", - text = "hammer_1h_maul_a_02.m2", - value = "hammer_1h_maul_a_02.m2", + fileId = "141309", + text = "helm_plate_zulaman_d_03_nim.m2", + value = "helm_plate_zulaman_d_03_nim.m2", }, { - fileId = "145642", - text = "hammer_1h_maul_a_03.m2", - value = "hammer_1h_maul_a_03.m2", + fileId = "141310", + text = "helm_plate_zulaman_d_03_orf.m2", + value = "helm_plate_zulaman_d_03_orf.m2", }, { - fileId = "145646", - text = "hammer_1h_maul_b_01.m2", - value = "hammer_1h_maul_b_01.m2", + fileId = "141311", + text = "helm_plate_zulaman_d_03_orm.m2", + value = "helm_plate_zulaman_d_03_orm.m2", }, { - fileId = "145650", - text = "hammer_1h_maul_b_02.m2", - value = "hammer_1h_maul_b_02.m2", + fileId = "141312", + text = "helm_plate_zulaman_d_03_scf.m2", + value = "helm_plate_zulaman_d_03_scf.m2", }, { - fileId = "145654", - text = "hammer_1h_maul_b_03.m2", - value = "hammer_1h_maul_b_03.m2", + fileId = "141313", + text = "helm_plate_zulaman_d_03_scm.m2", + value = "helm_plate_zulaman_d_03_scm.m2", }, { - fileId = "238643", - text = "hammer_1h_melee_pvp_c_01.m2", - value = "hammer_1h_melee_pvp_c_01.m2", + fileId = "141314", + text = "helm_plate_zulaman_d_03_taf.m2", + value = "helm_plate_zulaman_d_03_taf.m2", }, { - fileId = "145659", - text = "hammer_1h_pvpalliance_a_01.m2", - value = "hammer_1h_pvpalliance_a_01.m2", + fileId = "141315", + text = "helm_plate_zulaman_d_03_tam.m2", + value = "helm_plate_zulaman_d_03_tam.m2", }, { - fileId = "145663", - text = "hammer_1h_pvphorde_a_01.m2", - value = "hammer_1h_pvphorde_a_01.m2", + fileId = "141316", + text = "helm_plate_zulaman_d_03_trf.m2", + value = "helm_plate_zulaman_d_03_trf.m2", }, { - fileId = "145666", - text = "hammer_1h_standard_a_01.m2", - value = "hammer_1h_standard_a_01.m2", + fileId = "141317", + text = "helm_plate_zulaman_d_03_trm.m2", + value = "helm_plate_zulaman_d_03_trm.m2", }, { - fileId = "145670", - text = "hammer_1h_standard_a_02.m2", - value = "hammer_1h_standard_a_02.m2", + fileId = "462342", + text = "helm_plate_zulaman_d_03_wof.m2", + value = "helm_plate_zulaman_d_03_wof.m2", }, { - fileId = "145674", - text = "hammer_1h_standard_a_03.m2", - value = "hammer_1h_standard_a_03.m2", + fileId = "446147", + text = "helm_plate_zulaman_d_03_wom.m2", + value = "helm_plate_zulaman_d_03_wom.m2", }, { - fileId = "145678", - text = "hammer_1h_standard_b_01.m2", - value = "hammer_1h_standard_b_01.m2", + fileId = "141324", + text = "helm_robe_ahnqiraj_a_01_bef.m2", + value = "helm_robe_ahnqiraj_a_01_bef.m2", }, { - fileId = "145682", - text = "hammer_1h_standard_b_02.m2", - value = "hammer_1h_standard_b_02.m2", + fileId = "141325", + text = "helm_robe_ahnqiraj_a_01_bem.m2", + value = "helm_robe_ahnqiraj_a_01_bem.m2", }, { - fileId = "145686", - text = "hammer_1h_standard_b_03.m2", - value = "hammer_1h_standard_b_03.m2", + fileId = "141326", + text = "helm_robe_ahnqiraj_a_01_drf.m2", + value = "helm_robe_ahnqiraj_a_01_drf.m2", }, { - fileId = "145690", - text = "hammer_1h_standard_c_01.m2", - value = "hammer_1h_standard_c_01.m2", + fileId = "141327", + text = "helm_robe_ahnqiraj_a_01_drm.m2", + value = "helm_robe_ahnqiraj_a_01_drm.m2", }, { - fileId = "145695", - text = "hammer_1h_standard_c_03thaurissan.m2", - value = "hammer_1h_standard_c_03thaurissan.m2", + fileId = "141328", + text = "helm_robe_ahnqiraj_a_01_dwf.m2", + value = "helm_robe_ahnqiraj_a_01_dwf.m2", }, { - fileId = "145697", - text = "hammer_1h_standard_e_01.m2", - value = "hammer_1h_standard_e_01.m2", + fileId = "141329", + text = "helm_robe_ahnqiraj_a_01_dwm.m2", + value = "helm_robe_ahnqiraj_a_01_dwm.m2", }, { - fileId = "145699", - text = "hammer_1h_war_b_01holy.m2", - value = "hammer_1h_war_b_01holy.m2", + fileId = "141330", + text = "helm_robe_ahnqiraj_a_01_gnf.m2", + value = "helm_robe_ahnqiraj_a_01_gnf.m2", }, { - fileId = "145700", - text = "hammer_1h_war_d_01.m2", - value = "hammer_1h_war_d_01.m2", + fileId = "141331", + text = "helm_robe_ahnqiraj_a_01_gnm.m2", + value = "helm_robe_ahnqiraj_a_01_gnm.m2", }, { - fileId = "145702", - text = "hammer_2h_crystal_c_01.m2", - value = "hammer_2h_crystal_c_01.m2", + fileId = "141332", + text = "helm_robe_ahnqiraj_a_01_gof.m2", + value = "helm_robe_ahnqiraj_a_01_gof.m2", }, { - fileId = "145707", - text = "hammer_2h_crystal_c_02.m2", - value = "hammer_2h_crystal_c_02.m2", + fileId = "450940", + text = "helm_robe_ahnqiraj_a_01_gom.m2", + value = "helm_robe_ahnqiraj_a_01_gom.m2", }, { - fileId = "145712", - text = "hammer_2h_crystal_c_03.m2", - value = "hammer_2h_crystal_c_03.m2", + fileId = "141333", + text = "helm_robe_ahnqiraj_a_01_huf.m2", + value = "helm_robe_ahnqiraj_a_01_huf.m2", }, { - fileId = "145718", - text = "hammer_2h_horde_a_01.m2", - value = "hammer_2h_horde_a_01.m2", + fileId = "141334", + text = "helm_robe_ahnqiraj_a_01_hum.m2", + value = "helm_robe_ahnqiraj_a_01_hum.m2", }, { - fileId = "145723", - text = "hammer_2h_horde_a_02.m2", - value = "hammer_2h_horde_a_02.m2", + fileId = "141335", + text = "helm_robe_ahnqiraj_a_01_nif.m2", + value = "helm_robe_ahnqiraj_a_01_nif.m2", }, { - fileId = "145725", - text = "hammer_2h_horde_a_03.m2", - value = "hammer_2h_horde_a_03.m2", + fileId = "141336", + text = "helm_robe_ahnqiraj_a_01_nim.m2", + value = "helm_robe_ahnqiraj_a_01_nim.m2", }, { - fileId = "145730", - text = "hammer_2h_horde_a_04.m2", - value = "hammer_2h_horde_a_04.m2", + fileId = "141337", + text = "helm_robe_ahnqiraj_a_01_orf.m2", + value = "helm_robe_ahnqiraj_a_01_orf.m2", }, { - fileId = "145732", - text = "hammer_2h_horde_b_01.m2", - value = "hammer_2h_horde_b_01.m2", + fileId = "141338", + text = "helm_robe_ahnqiraj_a_01_orm.m2", + value = "helm_robe_ahnqiraj_a_01_orm.m2", }, { - fileId = "145737", - text = "hammer_2h_horde_b_02.m2", - value = "hammer_2h_horde_b_02.m2", + fileId = "141339", + text = "helm_robe_ahnqiraj_a_01_scf.m2", + value = "helm_robe_ahnqiraj_a_01_scf.m2", }, { - fileId = "145742", - text = "hammer_2h_horde_b_03.m2", - value = "hammer_2h_horde_b_03.m2", + fileId = "141340", + text = "helm_robe_ahnqiraj_a_01_scm.m2", + value = "helm_robe_ahnqiraj_a_01_scm.m2", }, { - fileId = "145743", - text = "hammer_2h_horde_b_04.m2", - value = "hammer_2h_horde_b_04.m2", + fileId = "141341", + text = "helm_robe_ahnqiraj_a_01_taf.m2", + value = "helm_robe_ahnqiraj_a_01_taf.m2", }, { - fileId = "145745", - text = "hammer_2h_horde_c_01.m2", - value = "hammer_2h_horde_c_01.m2", + fileId = "141342", + text = "helm_robe_ahnqiraj_a_01_tam.m2", + value = "helm_robe_ahnqiraj_a_01_tam.m2", }, { - fileId = "145752", - text = "hammer_2h_horde_c_02.m2", - value = "hammer_2h_horde_c_02.m2", + fileId = "141343", + text = "helm_robe_ahnqiraj_a_01_trf.m2", + value = "helm_robe_ahnqiraj_a_01_trf.m2", }, { - fileId = "145758", - text = "hammer_2h_horde_c_03.m2", - value = "hammer_2h_horde_c_03.m2", + fileId = "141344", + text = "helm_robe_ahnqiraj_a_01_trm.m2", + value = "helm_robe_ahnqiraj_a_01_trm.m2", }, { - fileId = "145760", - text = "hammer_2h_horde_c_04.m2", - value = "hammer_2h_horde_c_04.m2", + fileId = "450941", + text = "helm_robe_ahnqiraj_a_01_wof.m2", + value = "helm_robe_ahnqiraj_a_01_wof.m2", }, { - fileId = "145764", - text = "hammer_2h_maul_a_01.m2", - value = "hammer_2h_maul_a_01.m2", + fileId = "450942", + text = "helm_robe_ahnqiraj_a_01_wom.m2", + value = "helm_robe_ahnqiraj_a_01_wom.m2", }, { - fileId = "145768", - text = "hammer_2h_maul_a_02.m2", - value = "hammer_2h_maul_a_02.m2", + fileId = "314762", + text = "helm_robe_argentalliance_d_01_bef.m2", + value = "helm_robe_argentalliance_d_01_bef.m2", }, { - fileId = "145772", - text = "hammer_2h_maul_a_03.m2", - value = "hammer_2h_maul_a_03.m2", + fileId = "314763", + text = "helm_robe_argentalliance_d_01_bem.m2", + value = "helm_robe_argentalliance_d_01_bem.m2", }, { - fileId = "145776", - text = "hammer_2h_maul_b_01.m2", - value = "hammer_2h_maul_b_01.m2", + fileId = "314764", + text = "helm_robe_argentalliance_d_01_drf.m2", + value = "helm_robe_argentalliance_d_01_drf.m2", }, { - fileId = "145780", - text = "hammer_2h_maul_b_02.m2", - value = "hammer_2h_maul_b_02.m2", + fileId = "314765", + text = "helm_robe_argentalliance_d_01_drm.m2", + value = "helm_robe_argentalliance_d_01_drm.m2", }, { - fileId = "145785", - text = "hammer_2h_maul_b_03.m2", - value = "hammer_2h_maul_b_03.m2", + fileId = "314766", + text = "helm_robe_argentalliance_d_01_dwf.m2", + value = "helm_robe_argentalliance_d_01_dwf.m2", }, { - fileId = "238649", - text = "hammer_2h_pvp_c_01.m2", - value = "hammer_2h_pvp_c_01.m2", + fileId = "314767", + text = "helm_robe_argentalliance_d_01_dwm.m2", + value = "helm_robe_argentalliance_d_01_dwm.m2", }, { - fileId = "145790", - text = "hammer_2h_pvpalliance_a_01.m2", - value = "hammer_2h_pvpalliance_a_01.m2", + fileId = "314768", + text = "helm_robe_argentalliance_d_01_gnf.m2", + value = "helm_robe_argentalliance_d_01_gnf.m2", }, { - fileId = "145794", - text = "hammer_2h_pvphorde_a_01.m2", - value = "hammer_2h_pvphorde_a_01.m2", + fileId = "314769", + text = "helm_robe_argentalliance_d_01_gnm.m2", + value = "helm_robe_argentalliance_d_01_gnm.m2", }, { - fileId = "145797", - text = "hammer_2h_standard_d_01.m2", - value = "hammer_2h_standard_d_01.m2", + fileId = "314770", + text = "helm_robe_argentalliance_d_01_gof.m2", + value = "helm_robe_argentalliance_d_01_gof.m2", }, { - fileId = "145801", - text = "hammer_2h_standard_d_02.m2", - value = "hammer_2h_standard_d_02.m2", + fileId = "314771", + text = "helm_robe_argentalliance_d_01_gom.m2", + value = "helm_robe_argentalliance_d_01_gom.m2", }, { - fileId = "145802", - text = "hammer_2h_standard_d_03.m2", - value = "hammer_2h_standard_d_03.m2", + fileId = "314772", + text = "helm_robe_argentalliance_d_01_huf.m2", + value = "helm_robe_argentalliance_d_01_huf.m2", }, { - fileId = "145809", - text = "hammer_2h_standard_e_01.m2", - value = "hammer_2h_standard_e_01.m2", + fileId = "314773", + text = "helm_robe_argentalliance_d_01_hum.m2", + value = "helm_robe_argentalliance_d_01_hum.m2", }, { - fileId = "145810", - text = "hammer_2h_war_a_01.m2", - value = "hammer_2h_war_a_01.m2", + fileId = "314774", + text = "helm_robe_argentalliance_d_01_nif.m2", + value = "helm_robe_argentalliance_d_01_nif.m2", }, { - fileId = "145815", - text = "hammer_2h_war_b_01holy.m2", - value = "hammer_2h_war_b_01holy.m2", + fileId = "314775", + text = "helm_robe_argentalliance_d_01_nim.m2", + value = "helm_robe_argentalliance_d_01_nim.m2", }, { - fileId = "145817", - text = "hand_1h_ahnqiraj_d_01.m2", - value = "hand_1h_ahnqiraj_d_01.m2", + fileId = "314776", + text = "helm_robe_argentalliance_d_01_orf.m2", + value = "helm_robe_argentalliance_d_01_orf.m2", }, { - fileId = "145819", - text = "hand_1h_ahnqiraj_d_02.m2", - value = "hand_1h_ahnqiraj_d_02.m2", + fileId = "314777", + text = "helm_robe_argentalliance_d_01_orm.m2", + value = "helm_robe_argentalliance_d_01_orm.m2", }, { - fileId = "145821", - text = "hand_1h_ahnqiraj_d_03.m2", - value = "hand_1h_ahnqiraj_d_03.m2", + fileId = "314778", + text = "helm_robe_argentalliance_d_01_scf.m2", + value = "helm_robe_argentalliance_d_01_scf.m2", }, { - fileId = "145824", - text = "hand_1h_auchindoun_d_01left.m2", - value = "hand_1h_auchindoun_d_01left.m2", + fileId = "314779", + text = "helm_robe_argentalliance_d_01_scm.m2", + value = "helm_robe_argentalliance_d_01_scm.m2", }, { - fileId = "145825", - text = "hand_1h_auchindoun_d_01right.m2", - value = "hand_1h_auchindoun_d_01right.m2", + fileId = "314780", + text = "helm_robe_argentalliance_d_01_taf.m2", + value = "helm_robe_argentalliance_d_01_taf.m2", }, { - fileId = "145827", - text = "hand_1h_blackwing_a_01.m2", - value = "hand_1h_blackwing_a_01.m2", + fileId = "314781", + text = "helm_robe_argentalliance_d_01_tam.m2", + value = "helm_robe_argentalliance_d_01_tam.m2", }, { - fileId = "145828", - text = "hand_1h_blackwing_a_01left.m2", - value = "hand_1h_blackwing_a_01left.m2", + fileId = "314782", + text = "helm_robe_argentalliance_d_01_trf.m2", + value = "helm_robe_argentalliance_d_01_trf.m2", }, { - fileId = "145830", - text = "hand_1h_blackwing_a_02.m2", - value = "hand_1h_blackwing_a_02.m2", + fileId = "314783", + text = "helm_robe_argentalliance_d_01_trm.m2", + value = "helm_robe_argentalliance_d_01_trm.m2", }, { - fileId = "145831", - text = "hand_1h_blackwing_a_02left.m2", - value = "hand_1h_blackwing_a_02left.m2", + fileId = "450943", + text = "helm_robe_argentalliance_d_01_wof.m2", + value = "helm_robe_argentalliance_d_01_wof.m2", }, { - fileId = "145832", - text = "hand_1h_claw_a_01.m2", - value = "hand_1h_claw_a_01.m2", + fileId = "450944", + text = "helm_robe_argentalliance_d_01_wom.m2", + value = "helm_robe_argentalliance_d_01_wom.m2", }, { - fileId = "145834", - text = "hand_1h_claw_a_01left.m2", - value = "hand_1h_claw_a_01left.m2", + fileId = "317603", + text = "helm_robe_argenthorde_d_01_bef.m2", + value = "helm_robe_argenthorde_d_01_bef.m2", }, { - fileId = "145837", - text = "hand_1h_claw_a_02.m2", - value = "hand_1h_claw_a_02.m2", + fileId = "317604", + text = "helm_robe_argenthorde_d_01_bem.m2", + value = "helm_robe_argenthorde_d_01_bem.m2", }, { - fileId = "145840", - text = "hand_1h_claw_a_02left.m2", - value = "hand_1h_claw_a_02left.m2", + fileId = "317605", + text = "helm_robe_argenthorde_d_01_drf.m2", + value = "helm_robe_argenthorde_d_01_drf.m2", }, { - fileId = "145842", - text = "hand_1h_claw_b_01.m2", - value = "hand_1h_claw_b_01.m2", + fileId = "317606", + text = "helm_robe_argenthorde_d_01_drm.m2", + value = "helm_robe_argenthorde_d_01_drm.m2", }, { - fileId = "145844", - text = "hand_1h_claw_b_01left.m2", - value = "hand_1h_claw_b_01left.m2", + fileId = "317607", + text = "helm_robe_argenthorde_d_01_dwf.m2", + value = "helm_robe_argenthorde_d_01_dwf.m2", }, { - fileId = "145846", - text = "hand_1h_draktharon_d_01left.m2", - value = "hand_1h_draktharon_d_01left.m2", + fileId = "317608", + text = "helm_robe_argenthorde_d_01_dwm.m2", + value = "helm_robe_argenthorde_d_01_dwm.m2", }, { - fileId = "145847", - text = "hand_1h_draktharon_d_01right.m2", - value = "hand_1h_draktharon_d_01right.m2", + fileId = "317609", + text = "helm_robe_argenthorde_d_01_gnf.m2", + value = "helm_robe_argenthorde_d_01_gnf.m2", }, { - fileId = "238653", - text = "hand_1h_giant_weaponclub.m2", - value = "hand_1h_giant_weaponclub.m2", + fileId = "317610", + text = "helm_robe_argenthorde_d_01_gnm.m2", + value = "helm_robe_argenthorde_d_01_gnm.m2", }, { - fileId = "308099", - text = "hand_1h_icecrownraid_d_01left.m2", - value = "hand_1h_icecrownraid_d_01left.m2", + fileId = "317611", + text = "helm_robe_argenthorde_d_01_gof.m2", + value = "helm_robe_argenthorde_d_01_gof.m2", }, { - fileId = "308100", - text = "hand_1h_icecrownraid_d_01right.m2", - value = "hand_1h_icecrownraid_d_01right.m2", + fileId = "317612", + text = "helm_robe_argenthorde_d_01_gom.m2", + value = "helm_robe_argenthorde_d_01_gom.m2", }, { - fileId = "311346", - text = "hand_1h_icecrownraid_d_02left.m2", - value = "hand_1h_icecrownraid_d_02left.m2", + fileId = "317613", + text = "helm_robe_argenthorde_d_01_huf.m2", + value = "helm_robe_argenthorde_d_01_huf.m2", }, { - fileId = "311349", - text = "hand_1h_icecrownraid_d_02right.m2", - value = "hand_1h_icecrownraid_d_02right.m2", + fileId = "317614", + text = "helm_robe_argenthorde_d_01_hum.m2", + value = "helm_robe_argenthorde_d_01_hum.m2", }, { - fileId = "145850", - text = "hand_1h_kargath_d_01left.m2", - value = "hand_1h_kargath_d_01left.m2", + fileId = "317615", + text = "helm_robe_argenthorde_d_01_nif.m2", + value = "helm_robe_argenthorde_d_01_nif.m2", }, { - fileId = "145853", - text = "hand_1h_kargath_d_01right.m2", - value = "hand_1h_kargath_d_01right.m2", + fileId = "317616", + text = "helm_robe_argenthorde_d_01_nim.m2", + value = "helm_robe_argenthorde_d_01_nim.m2", }, { - fileId = "145855", - text = "hand_1h_knuckle_a_01.m2", - value = "hand_1h_knuckle_a_01.m2", + fileId = "317617", + text = "helm_robe_argenthorde_d_01_orf.m2", + value = "helm_robe_argenthorde_d_01_orf.m2", }, { - fileId = "145859", - text = "hand_1h_knuckle_b_01.m2", - value = "hand_1h_knuckle_b_01.m2", + fileId = "317618", + text = "helm_robe_argenthorde_d_01_orm.m2", + value = "helm_robe_argenthorde_d_01_orm.m2", }, { - fileId = "238659", - text = "hand_1h_naxx25_d_01.m2", - value = "hand_1h_naxx25_d_01.m2", + fileId = "317619", + text = "helm_robe_argenthorde_d_01_scf.m2", + value = "helm_robe_argenthorde_d_01_scf.m2", }, { - fileId = "238661", - text = "hand_1h_naxx25_d_02.m2", - value = "hand_1h_naxx25_d_02.m2", + fileId = "317620", + text = "helm_robe_argenthorde_d_01_scm.m2", + value = "helm_robe_argenthorde_d_01_scm.m2", }, { - fileId = "238664", - text = "hand_1h_naxx25_d_02left.m2", - value = "hand_1h_naxx25_d_02left.m2", + fileId = "317621", + text = "helm_robe_argenthorde_d_01_taf.m2", + value = "helm_robe_argenthorde_d_01_taf.m2", }, { - fileId = "238667", - text = "hand_1h_naxx25_d_02right.m2", - value = "hand_1h_naxx25_d_02right.m2", + fileId = "317622", + text = "helm_robe_argenthorde_d_01_tam.m2", + value = "helm_robe_argenthorde_d_01_tam.m2", }, { - fileId = "145864", - text = "hand_1h_naxxramas_d_01.m2", - value = "hand_1h_naxxramas_d_01.m2", + fileId = "317623", + text = "helm_robe_argenthorde_d_01_trf.m2", + value = "helm_robe_argenthorde_d_01_trf.m2", }, { - fileId = "238668", - text = "hand_1h_naxxramas_d_01right.m2", - value = "hand_1h_naxxramas_d_01right.m2", + fileId = "317624", + text = "helm_robe_argenthorde_d_01_trm.m2", + value = "helm_robe_argenthorde_d_01_trm.m2", }, { - fileId = "145867", - text = "hand_1h_nexus_d_01left.m2", - value = "hand_1h_nexus_d_01left.m2", + fileId = "450945", + text = "helm_robe_argenthorde_d_01_wof.m2", + value = "helm_robe_argenthorde_d_01_wof.m2", }, { - fileId = "145870", - text = "hand_1h_nexus_d_01right.m2", - value = "hand_1h_nexus_d_01right.m2", + fileId = "450946", + text = "helm_robe_argenthorde_d_01_wom.m2", + value = "helm_robe_argenthorde_d_01_wom.m2", }, { - fileId = "145873", - text = "hand_1h_outlandpvp_d_01left.m2", - value = "hand_1h_outlandpvp_d_01left.m2", + fileId = "141348", + text = "helm_robe_brewfest_a_01_bef.m2", + value = "helm_robe_brewfest_a_01_bef.m2", }, { - fileId = "145877", - text = "hand_1h_outlandpvp_d_01right.m2", - value = "hand_1h_outlandpvp_d_01right.m2", + fileId = "141349", + text = "helm_robe_brewfest_a_01_bem.m2", + value = "helm_robe_brewfest_a_01_bem.m2", }, { - fileId = "145882", - text = "hand_1h_outlandraid_d_01left.m2", - value = "hand_1h_outlandraid_d_01left.m2", + fileId = "141350", + text = "helm_robe_brewfest_a_01_drf.m2", + value = "helm_robe_brewfest_a_01_drf.m2", }, { - fileId = "145883", - text = "hand_1h_outlandraid_d_01right.m2", - value = "hand_1h_outlandraid_d_01right.m2", + fileId = "141351", + text = "helm_robe_brewfest_a_01_drm.m2", + value = "helm_robe_brewfest_a_01_drm.m2", }, { - fileId = "145885", - text = "hand_1h_outlandraid_d_02left.m2", - value = "hand_1h_outlandraid_d_02left.m2", + fileId = "141352", + text = "helm_robe_brewfest_a_01_dwf.m2", + value = "helm_robe_brewfest_a_01_dwf.m2", }, { - fileId = "145889", - text = "hand_1h_outlandraid_d_02right.m2", - value = "hand_1h_outlandraid_d_02right.m2", + fileId = "141353", + text = "helm_robe_brewfest_a_01_dwm.m2", + value = "helm_robe_brewfest_a_01_dwm.m2", }, { - fileId = "145894", - text = "hand_1h_outlandraid_d_03left.m2", - value = "hand_1h_outlandraid_d_03left.m2", + fileId = "141354", + text = "helm_robe_brewfest_a_01_gnf.m2", + value = "helm_robe_brewfest_a_01_gnf.m2", }, { - fileId = "145896", - text = "hand_1h_outlandraid_d_03right.m2", - value = "hand_1h_outlandraid_d_03right.m2", + fileId = "141355", + text = "helm_robe_brewfest_a_01_gnm.m2", + value = "helm_robe_brewfest_a_01_gnm.m2", }, { - fileId = "145901", - text = "hand_1h_outlandraid_d_04left.m2", - value = "hand_1h_outlandraid_d_04left.m2", + fileId = "141356", + text = "helm_robe_brewfest_a_01_gof.m2", + value = "helm_robe_brewfest_a_01_gof.m2", }, { - fileId = "145902", - text = "hand_1h_outlandraid_d_04right.m2", - value = "hand_1h_outlandraid_d_04right.m2", + fileId = "141357", + text = "helm_robe_brewfest_a_01_gom.m2", + value = "helm_robe_brewfest_a_01_gom.m2", }, { - fileId = "145904", - text = "hand_1h_outlandraid_d_05left.m2", - value = "hand_1h_outlandraid_d_05left.m2", + fileId = "141358", + text = "helm_robe_brewfest_a_01_huf.m2", + value = "helm_robe_brewfest_a_01_huf.m2", }, { - fileId = "145905", - text = "hand_1h_outlandraid_d_05right.m2", - value = "hand_1h_outlandraid_d_05right.m2", + fileId = "141359", + text = "helm_robe_brewfest_a_01_hum.m2", + value = "helm_robe_brewfest_a_01_hum.m2", }, { - fileId = "304828", - text = "hand_1h_pvealliance_d_01left.m2", - value = "hand_1h_pvealliance_d_01left.m2", + fileId = "141360", + text = "helm_robe_brewfest_a_01_nif.m2", + value = "helm_robe_brewfest_a_01_nif.m2", }, { - fileId = "304829", - text = "hand_1h_pvealliance_d_01right.m2", - value = "hand_1h_pvealliance_d_01right.m2", + fileId = "141361", + text = "helm_robe_brewfest_a_01_nim.m2", + value = "helm_robe_brewfest_a_01_nim.m2", }, { - fileId = "305704", - text = "hand_1h_pvehorde_d_01left.m2", - value = "hand_1h_pvehorde_d_01left.m2", + fileId = "141362", + text = "helm_robe_brewfest_a_01_orf.m2", + value = "helm_robe_brewfest_a_01_orf.m2", }, { - fileId = "305708", - text = "hand_1h_pvehorde_d_01right.m2", - value = "hand_1h_pvehorde_d_01right.m2", + fileId = "141363", + text = "helm_robe_brewfest_a_01_orm.m2", + value = "helm_robe_brewfest_a_01_orm.m2", }, { - fileId = "306521", - text = "hand_1h_pvp320_c_01left.m2", - value = "hand_1h_pvp320_c_01left.m2", + fileId = "141364", + text = "helm_robe_brewfest_a_01_scf.m2", + value = "helm_robe_brewfest_a_01_scf.m2", }, { - fileId = "306522", - text = "hand_1h_pvp320_c_01right.m2", - value = "hand_1h_pvp320_c_01right.m2", + fileId = "141365", + text = "helm_robe_brewfest_a_01_scm.m2", + value = "helm_robe_brewfest_a_01_scm.m2", }, { - fileId = "326809", - text = "hand_1h_pvp330_d_01left.m2", - value = "hand_1h_pvp330_d_01left.m2", + fileId = "141366", + text = "helm_robe_brewfest_a_01_taf.m2", + value = "helm_robe_brewfest_a_01_taf.m2", }, { - fileId = "326811", - text = "hand_1h_pvp330_d_01right.m2", - value = "hand_1h_pvp330_d_01right.m2", + fileId = "141367", + text = "helm_robe_brewfest_a_01_tam.m2", + value = "helm_robe_brewfest_a_01_tam.m2", }, { - fileId = "238672", - text = "hand_1h_pvp_c_01left.m2", - value = "hand_1h_pvp_c_01left.m2", + fileId = "141368", + text = "helm_robe_brewfest_a_01_trf.m2", + value = "helm_robe_brewfest_a_01_trf.m2", }, { - fileId = "238674", - text = "hand_1h_pvp_c_01right.m2", - value = "hand_1h_pvp_c_01right.m2", + fileId = "141369", + text = "helm_robe_brewfest_a_01_trm.m2", + value = "helm_robe_brewfest_a_01_trm.m2", }, { - fileId = "145907", - text = "hand_1h_pvpalliance_a_01.m2", - value = "hand_1h_pvpalliance_a_01.m2", + fileId = "450947", + text = "helm_robe_brewfest_a_01_wof.m2", + value = "helm_robe_brewfest_a_01_wof.m2", }, { - fileId = "145908", - text = "hand_1h_pvpalliance_a_01left.m2", - value = "hand_1h_pvpalliance_a_01left.m2", + fileId = "450948", + text = "helm_robe_brewfest_a_01_wom.m2", + value = "helm_robe_brewfest_a_01_wom.m2", }, { - fileId = "145916", - text = "hand_1h_raid_d_01left.m2", - value = "hand_1h_raid_d_01left.m2", + fileId = "141374", + text = "helm_robe_c_01_bef.m2", + value = "helm_robe_c_01_bef.m2", }, { - fileId = "145917", - text = "hand_1h_raid_d_01right.m2", - value = "hand_1h_raid_d_01right.m2", + fileId = "141375", + text = "helm_robe_c_01_bem.m2", + value = "helm_robe_c_01_bem.m2", }, { - fileId = "145924", - text = "hand_1h_raid_d_02left.m2", - value = "hand_1h_raid_d_02left.m2", + fileId = "141376", + text = "helm_robe_c_01_drf.m2", + value = "helm_robe_c_01_drf.m2", }, { - fileId = "145925", - text = "hand_1h_raid_d_02right.m2", - value = "hand_1h_raid_d_02right.m2", + fileId = "141377", + text = "helm_robe_c_01_drm.m2", + value = "helm_robe_c_01_drm.m2", }, { - fileId = "145931", - text = "hand_1h_raid_d_03left.m2", - value = "hand_1h_raid_d_03left.m2", + fileId = "141378", + text = "helm_robe_c_01_dwf.m2", + value = "helm_robe_c_01_dwf.m2", }, { - fileId = "145932", - text = "hand_1h_raid_d_03right.m2", - value = "hand_1h_raid_d_03right.m2", + fileId = "141379", + text = "helm_robe_c_01_dwm.m2", + value = "helm_robe_c_01_dwm.m2", }, { - fileId = "145936", - text = "hand_1h_shaman_d_01left.m2", - value = "hand_1h_shaman_d_01left.m2", + fileId = "141380", + text = "helm_robe_c_01_gnf.m2", + value = "helm_robe_c_01_gnf.m2", }, { - fileId = "145938", - text = "hand_1h_shaman_d_01right.m2", - value = "hand_1h_shaman_d_01right.m2", + fileId = "141381", + text = "helm_robe_c_01_gnm.m2", + value = "helm_robe_c_01_gnm.m2", }, { - fileId = "145939", - text = "hand_1h_sunwell_c_01.m2", - value = "hand_1h_sunwell_c_01.m2", + fileId = "141382", + text = "helm_robe_c_01_gof.m2", + value = "helm_robe_c_01_gof.m2", }, { - fileId = "145941", - text = "hand_1h_sunwell_c_01left.m2", - value = "hand_1h_sunwell_c_01left.m2", + fileId = "141383", + text = "helm_robe_c_01_gom.m2", + value = "helm_robe_c_01_gom.m2", }, { - fileId = "145944", - text = "hand_1h_sunwell_c_01right.m2", - value = "hand_1h_sunwell_c_01right.m2", + fileId = "141384", + text = "helm_robe_c_01_huf.m2", + value = "helm_robe_c_01_huf.m2", }, { - fileId = "145950", - text = "hand_1h_sunwell_d_01left.m2", - value = "hand_1h_sunwell_d_01left.m2", + fileId = "141385", + text = "helm_robe_c_01_hum.m2", + value = "helm_robe_c_01_hum.m2", }, { - fileId = "145951", - text = "hand_1h_sunwell_d_01right.m2", - value = "hand_1h_sunwell_d_01right.m2", + fileId = "141386", + text = "helm_robe_c_01_nif.m2", + value = "helm_robe_c_01_nif.m2", }, { - fileId = "145957", - text = "hand_1h_sunwell_d_02left.m2", - value = "hand_1h_sunwell_d_02left.m2", + fileId = "141387", + text = "helm_robe_c_01_nim.m2", + value = "helm_robe_c_01_nim.m2", }, { - fileId = "145958", - text = "hand_1h_sunwell_d_02right.m2", - value = "hand_1h_sunwell_d_02right.m2", + fileId = "141388", + text = "helm_robe_c_01_orf.m2", + value = "helm_robe_c_01_orf.m2", }, { - fileId = "238678", - text = "hand_1h_ulduarraid_d_01left.m2", - value = "hand_1h_ulduarraid_d_01left.m2", + fileId = "141389", + text = "helm_robe_c_01_orm.m2", + value = "helm_robe_c_01_orm.m2", }, { - fileId = "238680", - text = "hand_1h_ulduarraid_d_01right.m2", - value = "hand_1h_ulduarraid_d_01right.m2", + fileId = "141390", + text = "helm_robe_c_01_scf.m2", + value = "helm_robe_c_01_scf.m2", }, { - fileId = "238685", - text = "hand_1h_ulduarraid_d_02left.m2", - value = "hand_1h_ulduarraid_d_02left.m2", + fileId = "141391", + text = "helm_robe_c_01_scm.m2", + value = "helm_robe_c_01_scm.m2", }, { - fileId = "238687", - text = "hand_1h_ulduarraid_d_02right.m2", - value = "hand_1h_ulduarraid_d_02right.m2", + fileId = "141392", + text = "helm_robe_c_01_taf.m2", + value = "helm_robe_c_01_taf.m2", }, { - fileId = "145962", - text = "hand_1h_utgarde_d_01left.m2", - value = "hand_1h_utgarde_d_01left.m2", + fileId = "141393", + text = "helm_robe_c_01_tam.m2", + value = "helm_robe_c_01_tam.m2", }, { - fileId = "145964", - text = "hand_1h_utgarde_d_01right.m2", - value = "hand_1h_utgarde_d_01right.m2", + fileId = "141394", + text = "helm_robe_c_01_trf.m2", + value = "helm_robe_c_01_trf.m2", }, { - fileId = "145966", - text = "hand_1h_zulaman_d_01left.m2", - value = "hand_1h_zulaman_d_01left.m2", + fileId = "141395", + text = "helm_robe_c_01_trm.m2", + value = "helm_robe_c_01_trm.m2", }, { - fileId = "145968", - text = "hand_1h_zulaman_d_01right.m2", - value = "hand_1h_zulaman_d_01right.m2", + fileId = "454785", + text = "helm_robe_c_01_wof.m2", + value = "helm_robe_c_01_wof.m2", }, { - fileId = "145971", - text = "hand_1h_zulaman_d_02left.m2", - value = "hand_1h_zulaman_d_02left.m2", + fileId = "454786", + text = "helm_robe_c_01_wom.m2", + value = "helm_robe_c_01_wom.m2", }, { - fileId = "145974", - text = "hand_1h_zulaman_d_02right.m2", - value = "hand_1h_zulaman_d_02right.m2", + fileId = "141405", + text = "helm_robe_c_02_bef.m2", + value = "helm_robe_c_02_bef.m2", }, { - fileId = "145976", - text = "hand_1h_zulgurub_d_01.m2", - value = "hand_1h_zulgurub_d_01.m2", + fileId = "141406", + text = "helm_robe_c_02_bem.m2", + value = "helm_robe_c_02_bem.m2", }, { - fileId = "145977", - text = "hand_1h_zulgurub_d_01left.m2", - value = "hand_1h_zulgurub_d_01left.m2", + fileId = "141407", + text = "helm_robe_c_02_drf.m2", + value = "helm_robe_c_02_drf.m2", }, { - fileId = "145978", - text = "hand_1h_zulgurub_d_02.m2", - value = "hand_1h_zulgurub_d_02.m2", + fileId = "141408", + text = "helm_robe_c_02_drm.m2", + value = "helm_robe_c_02_drm.m2", }, { - fileId = "145980", - text = "hand_1h_zulgurub_d_02left.m2", - value = "hand_1h_zulgurub_d_02left.m2", + fileId = "141409", + text = "helm_robe_c_02_dwf.m2", + value = "helm_robe_c_02_dwf.m2", }, { - fileId = "145982", - text = "hand_lh_pvphorde_a_01.m2", - value = "hand_lh_pvphorde_a_01.m2", + fileId = "141410", + text = "helm_robe_c_02_dwm.m2", + value = "helm_robe_c_02_dwm.m2", }, { - fileId = "145983", - text = "hand_rh_pvphorde_a_01.m2", - value = "hand_rh_pvphorde_a_01.m2", + fileId = "141411", + text = "helm_robe_c_02_gnf.m2", + value = "helm_robe_c_02_gnf.m2", }, { - fileId = "145994", - text = "knife_1h_ahnqiraj_d_01.m2", - value = "knife_1h_ahnqiraj_d_01.m2", + fileId = "141412", + text = "helm_robe_c_02_gnm.m2", + value = "helm_robe_c_02_gnm.m2", }, { - fileId = "145995", - text = "knife_1h_ahnqiraj_d_02.m2", - value = "knife_1h_ahnqiraj_d_02.m2", + fileId = "141413", + text = "helm_robe_c_02_gof.m2", + value = "helm_robe_c_02_gof.m2", }, { - fileId = "145996", - text = "knife_1h_ahnqiraj_d_03.m2", - value = "knife_1h_ahnqiraj_d_03.m2", + fileId = "141414", + text = "helm_robe_c_02_gom.m2", + value = "helm_robe_c_02_gom.m2", }, { - fileId = "145997", - text = "knife_1h_ahnqiraj_d_04.m2", - value = "knife_1h_ahnqiraj_d_04.m2", + fileId = "141415", + text = "helm_robe_c_02_huf.m2", + value = "helm_robe_c_02_huf.m2", }, { - fileId = "294003", - text = "knife_1h_alliancecovenant_d_01.m2", - value = "knife_1h_alliancecovenant_d_01.m2", + fileId = "141416", + text = "helm_robe_c_02_hum.m2", + value = "helm_robe_c_02_hum.m2", }, { - fileId = "145998", - text = "knife_1h_blacktemple_d_01.m2", - value = "knife_1h_blacktemple_d_01.m2", + fileId = "141417", + text = "helm_robe_c_02_nif.m2", + value = "helm_robe_c_02_nif.m2", }, { - fileId = "146003", - text = "knife_1h_blacktemple_d_02.m2", - value = "knife_1h_blacktemple_d_02.m2", + fileId = "141418", + text = "helm_robe_c_02_nim.m2", + value = "helm_robe_c_02_nim.m2", }, { - fileId = "146007", - text = "knife_1h_blacktemple_d_03.m2", - value = "knife_1h_blacktemple_d_03.m2", + fileId = "141419", + text = "helm_robe_c_02_orf.m2", + value = "helm_robe_c_02_orf.m2", }, { - fileId = "146009", - text = "knife_1h_blackwing_a_01.m2", - value = "knife_1h_blackwing_a_01.m2", + fileId = "141420", + text = "helm_robe_c_02_orm.m2", + value = "helm_robe_c_02_orm.m2", }, { - fileId = "146011", - text = "knife_1h_blackwing_a_02.m2", - value = "knife_1h_blackwing_a_02.m2", + fileId = "141421", + text = "helm_robe_c_02_scf.m2", + value = "helm_robe_c_02_scf.m2", }, { - fileId = "146013", - text = "knife_1h_blood_a_01.m2", - value = "knife_1h_blood_a_01.m2", + fileId = "141422", + text = "helm_robe_c_02_scm.m2", + value = "helm_robe_c_02_scm.m2", }, { - fileId = "146018", - text = "knife_1h_blood_a_02.m2", - value = "knife_1h_blood_a_02.m2", + fileId = "141423", + text = "helm_robe_c_02_taf.m2", + value = "helm_robe_c_02_taf.m2", }, { - fileId = "146021", - text = "knife_1h_blood_a_03.m2", - value = "knife_1h_blood_a_03.m2", + fileId = "141424", + text = "helm_robe_c_02_tam.m2", + value = "helm_robe_c_02_tam.m2", }, { - fileId = "146025", - text = "knife_1h_blood_a_04.m2", - value = "knife_1h_blood_a_04.m2", + fileId = "141425", + text = "helm_robe_c_02_trf.m2", + value = "helm_robe_c_02_trf.m2", }, { - fileId = "146029", - text = "knife_1h_blood_a_05.m2", - value = "knife_1h_blood_a_05.m2", + fileId = "141426", + text = "helm_robe_c_02_trm.m2", + value = "helm_robe_c_02_trm.m2", }, { - fileId = "146033", - text = "knife_1h_blood_b_01.m2", - value = "knife_1h_blood_b_01.m2", + fileId = "454281", + text = "helm_robe_c_02_wof.m2", + value = "helm_robe_c_02_wof.m2", }, { - fileId = "146037", - text = "knife_1h_blood_b_02.m2", - value = "knife_1h_blood_b_02.m2", + fileId = "454282", + text = "helm_robe_c_02_wom.m2", + value = "helm_robe_c_02_wom.m2", }, { - fileId = "238688", - text = "knife_1h_caster_pvp_c_01.m2", - value = "knife_1h_caster_pvp_c_01.m2", + fileId = "141434", + text = "helm_robe_c_03_bef.m2", + value = "helm_robe_c_03_bef.m2", }, { - fileId = "146042", - text = "knife_1h_caverns_d_01.m2", - value = "knife_1h_caverns_d_01.m2", + fileId = "141435", + text = "helm_robe_c_03_bem.m2", + value = "helm_robe_c_03_bem.m2", }, { - fileId = "146043", - text = "knife_1h_cleaver_a_01.m2", - value = "knife_1h_cleaver_a_01.m2", + fileId = "141436", + text = "helm_robe_c_03_drf.m2", + value = "helm_robe_c_03_drf.m2", }, { - fileId = "146046", - text = "knife_1h_coilfang_d_01.m2", - value = "knife_1h_coilfang_d_01.m2", + fileId = "141437", + text = "helm_robe_c_03_drm.m2", + value = "helm_robe_c_03_drm.m2", }, { - fileId = "146052", - text = "knife_1h_coilfang_d_02.m2", - value = "knife_1h_coilfang_d_02.m2", + fileId = "141438", + text = "helm_robe_c_03_dwf.m2", + value = "helm_robe_c_03_dwf.m2", }, { - fileId = "146053", - text = "knife_1h_cotstrat_d_01.m2", - value = "knife_1h_cotstrat_d_01.m2", + fileId = "141439", + text = "helm_robe_c_03_dwm.m2", + value = "helm_robe_c_03_dwm.m2", }, { - fileId = "146058", - text = "knife_1h_cotstrat_d_02.m2", - value = "knife_1h_cotstrat_d_02.m2", + fileId = "141440", + text = "helm_robe_c_03_gnf.m2", + value = "helm_robe_c_03_gnf.m2", }, { - fileId = "146063", - text = "knife_1h_cotstrat_d_03.m2", - value = "knife_1h_cotstrat_d_03.m2", + fileId = "141441", + text = "helm_robe_c_03_gnm.m2", + value = "helm_robe_c_03_gnm.m2", }, { - fileId = "146068", - text = "knife_1h_dagger_a_01.m2", - value = "knife_1h_dagger_a_01.m2", + fileId = "141442", + text = "helm_robe_c_03_gof.m2", + value = "helm_robe_c_03_gof.m2", }, { - fileId = "146072", - text = "knife_1h_dagger_a_02.m2", - value = "knife_1h_dagger_a_02.m2", + fileId = "141443", + text = "helm_robe_c_03_gom.m2", + value = "helm_robe_c_03_gom.m2", }, { - fileId = "146076", - text = "knife_1h_dagger_a_03.m2", - value = "knife_1h_dagger_a_03.m2", + fileId = "141444", + text = "helm_robe_c_03_huf.m2", + value = "helm_robe_c_03_huf.m2", }, { - fileId = "146081", - text = "knife_1h_dagger_a_04.m2", - value = "knife_1h_dagger_a_04.m2", + fileId = "141445", + text = "helm_robe_c_03_hum.m2", + value = "helm_robe_c_03_hum.m2", }, { - fileId = "146086", - text = "knife_1h_dagger_b_01.m2", - value = "knife_1h_dagger_b_01.m2", + fileId = "141446", + text = "helm_robe_c_03_nif.m2", + value = "helm_robe_c_03_nif.m2", }, { - fileId = "146090", - text = "knife_1h_dagger_b_02.m2", - value = "knife_1h_dagger_b_02.m2", + fileId = "141447", + text = "helm_robe_c_03_nim.m2", + value = "helm_robe_c_03_nim.m2", }, { - fileId = "146094", - text = "knife_1h_dagger_b_03.m2", - value = "knife_1h_dagger_b_03.m2", + fileId = "141448", + text = "helm_robe_c_03_orf.m2", + value = "helm_robe_c_03_orf.m2", }, { - fileId = "146101", - text = "knife_1h_dagger_b_04.m2", - value = "knife_1h_dagger_b_04.m2", + fileId = "141449", + text = "helm_robe_c_03_orm.m2", + value = "helm_robe_c_03_orm.m2", }, { - fileId = "146107", - text = "knife_1h_dagger_b_05.m2", - value = "knife_1h_dagger_b_05.m2", + fileId = "141450", + text = "helm_robe_c_03_scf.m2", + value = "helm_robe_c_03_scf.m2", }, { - fileId = "146112", - text = "knife_1h_dagger_b_06.m2", - value = "knife_1h_dagger_b_06.m2", + fileId = "141451", + text = "helm_robe_c_03_scm.m2", + value = "helm_robe_c_03_scm.m2", }, { - fileId = "146117", - text = "knife_1h_dalaran_d_01.m2", - value = "knife_1h_dalaran_d_01.m2", + fileId = "141452", + text = "helm_robe_c_03_taf.m2", + value = "helm_robe_c_03_taf.m2", }, { - fileId = "146122", - text = "knife_1h_draenei_a_01.m2", - value = "knife_1h_draenei_a_01.m2", + fileId = "141453", + text = "helm_robe_c_03_tam.m2", + value = "helm_robe_c_03_tam.m2", }, { - fileId = "146128", - text = "knife_1h_draenei_a_02.m2", - value = "knife_1h_draenei_a_02.m2", + fileId = "141454", + text = "helm_robe_c_03_trf.m2", + value = "helm_robe_c_03_trf.m2", }, { - fileId = "146134", - text = "knife_1h_draenei_a_03.m2", - value = "knife_1h_draenei_a_03.m2", + fileId = "141455", + text = "helm_robe_c_03_trm.m2", + value = "helm_robe_c_03_trm.m2", }, { - fileId = "238693", - text = "knife_1h_draktharon_d_01.m2", - value = "knife_1h_draktharon_d_01.m2", + fileId = "454283", + text = "helm_robe_c_03_wof.m2", + value = "helm_robe_c_03_wof.m2", }, { - fileId = "146143", - text = "knife_1h_epic_a_03.m2", - value = "knife_1h_epic_a_03.m2", + fileId = "454284", + text = "helm_robe_c_03_wom.m2", + value = "helm_robe_c_03_wom.m2", }, { - fileId = "146144", - text = "knife_1h_epic_a_04.m2", - value = "knife_1h_epic_a_04.m2", + fileId = "141458", + text = "helm_robe_c_04_bef.m2", + value = "helm_robe_c_04_bef.m2", }, { - fileId = "146146", - text = "knife_1h_epic_a_05.m2", - value = "knife_1h_epic_a_05.m2", + fileId = "141459", + text = "helm_robe_c_04_bem.m2", + value = "helm_robe_c_04_bem.m2", }, { - fileId = "322908", - text = "knife_1h_epic_a_05alt.m2", - value = "knife_1h_epic_a_05alt.m2", + fileId = "141460", + text = "helm_robe_c_04_drf.m2", + value = "helm_robe_c_04_drf.m2", }, { - fileId = "146148", - text = "knife_1h_exotic_a_01.m2", - value = "knife_1h_exotic_a_01.m2", + fileId = "141461", + text = "helm_robe_c_04_drm.m2", + value = "helm_robe_c_04_drm.m2", }, { - fileId = "146152", - text = "knife_1h_exotic_a_02.m2", - value = "knife_1h_exotic_a_02.m2", + fileId = "141462", + text = "helm_robe_c_04_dwf.m2", + value = "helm_robe_c_04_dwf.m2", }, { - fileId = "146156", - text = "knife_1h_exotic_b_01.m2", - value = "knife_1h_exotic_b_01.m2", + fileId = "141463", + text = "helm_robe_c_04_dwm.m2", + value = "helm_robe_c_04_dwm.m2", }, { - fileId = "146160", - text = "knife_1h_exotic_b_02.m2", - value = "knife_1h_exotic_b_02.m2", + fileId = "141464", + text = "helm_robe_c_04_gnf.m2", + value = "helm_robe_c_04_gnf.m2", }, { - fileId = "146164", - text = "knife_1h_hellfire_c_01.m2", - value = "knife_1h_hellfire_c_01.m2", + fileId = "141465", + text = "helm_robe_c_04_gnm.m2", + value = "helm_robe_c_04_gnm.m2", }, { - fileId = "146170", - text = "knife_1h_horde_a_01.m2", - value = "knife_1h_horde_a_01.m2", + fileId = "141466", + text = "helm_robe_c_04_gof.m2", + value = "helm_robe_c_04_gof.m2", }, { - fileId = "294042", - text = "knife_1h_hordecovenant_d_01.m2", - value = "knife_1h_hordecovenant_d_01.m2", + fileId = "141467", + text = "helm_robe_c_04_gom.m2", + value = "helm_robe_c_04_gom.m2", }, { - fileId = "146174", - text = "knife_1h_hotpoker_a_01.m2", - value = "knife_1h_hotpoker_a_01.m2", + fileId = "141468", + text = "helm_robe_c_04_huf.m2", + value = "helm_robe_c_04_huf.m2", }, { - fileId = "146176", - text = "knife_1h_hunting_a_01.m2", - value = "knife_1h_hunting_a_01.m2", + fileId = "141469", + text = "helm_robe_c_04_hum.m2", + value = "helm_robe_c_04_hum.m2", }, { - fileId = "146180", - text = "knife_1h_hunting_a_02.m2", - value = "knife_1h_hunting_a_02.m2", + fileId = "141470", + text = "helm_robe_c_04_nif.m2", + value = "helm_robe_c_04_nif.m2", }, { - fileId = "146184", - text = "knife_1h_hunting_b_01.m2", - value = "knife_1h_hunting_b_01.m2", + fileId = "141471", + text = "helm_robe_c_04_nim.m2", + value = "helm_robe_c_04_nim.m2", }, { - fileId = "146188", - text = "knife_1h_hunting_b_02.m2", - value = "knife_1h_hunting_b_02.m2", + fileId = "141472", + text = "helm_robe_c_04_orf.m2", + value = "helm_robe_c_04_orf.m2", }, { - fileId = "146192", - text = "knife_1h_hyjal_d_01.m2", - value = "knife_1h_hyjal_d_01.m2", + fileId = "141473", + text = "helm_robe_c_04_orm.m2", + value = "helm_robe_c_04_orm.m2", }, { - fileId = "146197", - text = "knife_1h_hyjal_d_02.m2", - value = "knife_1h_hyjal_d_02.m2", + fileId = "141474", + text = "helm_robe_c_04_scf.m2", + value = "helm_robe_c_04_scf.m2", }, { - fileId = "314890", - text = "knife_1h_icecrownraid_d_01.m2", - value = "knife_1h_icecrownraid_d_01.m2", + fileId = "141475", + text = "helm_robe_c_04_scm.m2", + value = "helm_robe_c_04_scm.m2", }, { - fileId = "311604", - text = "knife_1h_icecrownraid_d_02.m2", - value = "knife_1h_icecrownraid_d_02.m2", + fileId = "141476", + text = "helm_robe_c_04_taf.m2", + value = "helm_robe_c_04_taf.m2", }, { - fileId = "322121", - text = "knife_1h_icecrownraid_d_03.m2", - value = "knife_1h_icecrownraid_d_03.m2", + fileId = "141477", + text = "helm_robe_c_04_tam.m2", + value = "helm_robe_c_04_tam.m2", }, { - fileId = "319210", - text = "knife_1h_icecrownraid_d_04.m2", - value = "knife_1h_icecrownraid_d_04.m2", + fileId = "141478", + text = "helm_robe_c_04_trf.m2", + value = "helm_robe_c_04_trf.m2", }, { - fileId = "324971", - text = "knife_1h_icecrownraid_d_05.m2", - value = "knife_1h_icecrownraid_d_05.m2", + fileId = "141479", + text = "helm_robe_c_04_trm.m2", + value = "helm_robe_c_04_trm.m2", }, { - fileId = "146203", - text = "knife_1h_katana_a_01.m2", - value = "knife_1h_katana_a_01.m2", + fileId = "454787", + text = "helm_robe_c_04_wof.m2", + value = "helm_robe_c_04_wof.m2", }, { - fileId = "146207", - text = "knife_1h_katana_b_01.m2", - value = "knife_1h_katana_b_01.m2", + fileId = "454788", + text = "helm_robe_c_04_wom.m2", + value = "helm_robe_c_04_wom.m2", }, { - fileId = "146211", - text = "knife_1h_korean_a_01.m2", - value = "knife_1h_korean_a_01.m2", + fileId = "356247", + text = "helm_robe_common_b_01_bef.m2", + value = "helm_robe_common_b_01_bef.m2", }, { - fileId = "146216", - text = "knife_1h_mage_d_01.m2", - value = "knife_1h_mage_d_01.m2", + fileId = "356248", + text = "helm_robe_common_b_01_bem.m2", + value = "helm_robe_common_b_01_bem.m2", }, { - fileId = "238699", - text = "knife_1h_naxx25_d_01.m2", - value = "knife_1h_naxx25_d_01.m2", + fileId = "356249", + text = "helm_robe_common_b_01_drf.m2", + value = "helm_robe_common_b_01_drf.m2", }, { - fileId = "146221", - text = "knife_1h_naxxramas_d_01.m2", - value = "knife_1h_naxxramas_d_01.m2", + fileId = "356250", + text = "helm_robe_common_b_01_drm.m2", + value = "helm_robe_common_b_01_drm.m2", }, { - fileId = "146222", - text = "knife_1h_nexus_d_01.m2", - value = "knife_1h_nexus_d_01.m2", + fileId = "356251", + text = "helm_robe_common_b_01_dwf.m2", + value = "helm_robe_common_b_01_dwf.m2", }, { - fileId = "146226", - text = "knife_1h_nexus_d_02.m2", - value = "knife_1h_nexus_d_02.m2", + fileId = "356252", + text = "helm_robe_common_b_01_dwm.m2", + value = "helm_robe_common_b_01_dwm.m2", }, { - fileId = "146231", - text = "knife_1h_nexus_d_03.m2", - value = "knife_1h_nexus_d_03.m2", + fileId = "356253", + text = "helm_robe_common_b_01_gnf.m2", + value = "helm_robe_common_b_01_gnf.m2", }, { - fileId = "146236", - text = "knife_1h_northrend_b_01.m2", - value = "knife_1h_northrend_b_01.m2", + fileId = "356254", + text = "helm_robe_common_b_01_gnm.m2", + value = "helm_robe_common_b_01_gnm.m2", }, { - fileId = "146241", - text = "knife_1h_northrend_b_02.m2", - value = "knife_1h_northrend_b_02.m2", + fileId = "356255", + text = "helm_robe_common_b_01_gof.m2", + value = "helm_robe_common_b_01_gof.m2", }, { - fileId = "146246", - text = "knife_1h_northrend_b_03.m2", - value = "knife_1h_northrend_b_03.m2", + fileId = "356256", + text = "helm_robe_common_b_01_gom.m2", + value = "helm_robe_common_b_01_gom.m2", }, { - fileId = "146251", - text = "knife_1h_northrend_c_01.m2", - value = "knife_1h_northrend_c_01.m2", + fileId = "356257", + text = "helm_robe_common_b_01_huf.m2", + value = "helm_robe_common_b_01_huf.m2", }, { - fileId = "146256", - text = "knife_1h_northrend_c_02.m2", - value = "knife_1h_northrend_c_02.m2", + fileId = "356258", + text = "helm_robe_common_b_01_hum.m2", + value = "helm_robe_common_b_01_hum.m2", }, { - fileId = "146258", - text = "knife_1h_northrend_c_03.m2", - value = "knife_1h_northrend_c_03.m2", + fileId = "356259", + text = "helm_robe_common_b_01_nif.m2", + value = "helm_robe_common_b_01_nif.m2", }, { - fileId = "146262", - text = "knife_1h_northrend_d_01.m2", - value = "knife_1h_northrend_d_01.m2", + fileId = "356260", + text = "helm_robe_common_b_01_nim.m2", + value = "helm_robe_common_b_01_nim.m2", }, { - fileId = "146268", - text = "knife_1h_northrend_d_02.m2", - value = "knife_1h_northrend_d_02.m2", + fileId = "356261", + text = "helm_robe_common_b_01_orf.m2", + value = "helm_robe_common_b_01_orf.m2", }, { - fileId = "325206", - text = "knife_1h_onyxia_a_01alt.m2", - value = "knife_1h_onyxia_a_01alt.m2", + fileId = "356262", + text = "helm_robe_common_b_01_orm.m2", + value = "helm_robe_common_b_01_orm.m2", }, { - fileId = "146273", - text = "knife_1h_outlandraid_d_01.m2", - value = "knife_1h_outlandraid_d_01.m2", + fileId = "356263", + text = "helm_robe_common_b_01_scf.m2", + value = "helm_robe_common_b_01_scf.m2", }, { - fileId = "252192", - text = "knife_1h_pvealliance_d_01.m2", - value = "knife_1h_pvealliance_d_01.m2", + fileId = "356264", + text = "helm_robe_common_b_01_scm.m2", + value = "helm_robe_common_b_01_scm.m2", }, { - fileId = "304423", - text = "knife_1h_pvealliance_d_02.m2", - value = "knife_1h_pvealliance_d_02.m2", + fileId = "356265", + text = "helm_robe_common_b_01_taf.m2", + value = "helm_robe_common_b_01_taf.m2", }, { - fileId = "250124", - text = "knife_1h_pvehorde_d_01.m2", - value = "knife_1h_pvehorde_d_01.m2", + fileId = "356266", + text = "helm_robe_common_b_01_tam.m2", + value = "helm_robe_common_b_01_tam.m2", }, { - fileId = "250648", - text = "knife_1h_pvehorde_d_02.m2", - value = "knife_1h_pvehorde_d_02.m2", + fileId = "356267", + text = "helm_robe_common_b_01_trf.m2", + value = "helm_robe_common_b_01_trf.m2", }, { - fileId = "307043", - text = "knife_1h_pvp320_c_01.m2", - value = "knife_1h_pvp320_c_01.m2", + fileId = "356268", + text = "helm_robe_common_b_01_trm.m2", + value = "helm_robe_common_b_01_trm.m2", }, { - fileId = "307369", - text = "knife_1h_pvp320_c_02.m2", - value = "knife_1h_pvp320_c_02.m2", + fileId = "454777", + text = "helm_robe_common_b_01_wof.m2", + value = "helm_robe_common_b_01_wof.m2", }, { - fileId = "326812", - text = "knife_1h_pvp330_d_01.m2", - value = "knife_1h_pvp330_d_01.m2", + fileId = "454778", + text = "helm_robe_common_b_01_wom.m2", + value = "helm_robe_common_b_01_wom.m2", }, { - fileId = "326885", - text = "knife_1h_pvp330_d_02.m2", - value = "knife_1h_pvp330_d_02.m2", + fileId = "362044", + text = "helm_robe_common_b_02_bef.m2", + value = "helm_robe_common_b_02_bef.m2", }, { - fileId = "146279", - text = "knife_1h_pvpalliance_a_01.m2", - value = "knife_1h_pvpalliance_a_01.m2", + fileId = "362045", + text = "helm_robe_common_b_02_bem.m2", + value = "helm_robe_common_b_02_bem.m2", }, { - fileId = "146284", - text = "knife_1h_pvphorde_a_01.m2", - value = "knife_1h_pvphorde_a_01.m2", + fileId = "362046", + text = "helm_robe_common_b_02_drf.m2", + value = "helm_robe_common_b_02_drf.m2", }, { - fileId = "146291", - text = "knife_1h_raid_d_01.m2", - value = "knife_1h_raid_d_01.m2", + fileId = "362047", + text = "helm_robe_common_b_02_drm.m2", + value = "helm_robe_common_b_02_drm.m2", }, { - fileId = "146293", - text = "knife_1h_raid_d_02.m2", - value = "knife_1h_raid_d_02.m2", + fileId = "362048", + text = "helm_robe_common_b_02_dwf.m2", + value = "helm_robe_common_b_02_dwf.m2", }, { - fileId = "146295", - text = "knife_1h_raid_d_03.m2", - value = "knife_1h_raid_d_03.m2", + fileId = "362049", + text = "helm_robe_common_b_02_dwm.m2", + value = "helm_robe_common_b_02_dwm.m2", }, { - fileId = "146297", - text = "knife_1h_raid_d_04.m2", - value = "knife_1h_raid_d_04.m2", + fileId = "362050", + text = "helm_robe_common_b_02_gnf.m2", + value = "helm_robe_common_b_02_gnf.m2", }, { - fileId = "146299", - text = "knife_1h_raid_d_05.m2", - value = "knife_1h_raid_d_05.m2", + fileId = "362051", + text = "helm_robe_common_b_02_gnm.m2", + value = "helm_robe_common_b_02_gnm.m2", }, { - fileId = "146301", - text = "knife_1h_rogue_d_01.m2", - value = "knife_1h_rogue_d_01.m2", + fileId = "362052", + text = "helm_robe_common_b_02_gof.m2", + value = "helm_robe_common_b_02_gof.m2", }, { - fileId = "238704", - text = "knife_1h_rogue_pvp_c_01.m2", - value = "knife_1h_rogue_pvp_c_01.m2", + fileId = "362053", + text = "helm_robe_common_b_02_gom.m2", + value = "helm_robe_common_b_02_gom.m2", }, { - fileId = "146306", - text = "knife_1h_standard_a_01.m2", - value = "knife_1h_standard_a_01.m2", + fileId = "362054", + text = "helm_robe_common_b_02_huf.m2", + value = "helm_robe_common_b_02_huf.m2", }, { - fileId = "146309", - text = "knife_1h_stratholme_d_01.m2", - value = "knife_1h_stratholme_d_01.m2", + fileId = "362055", + text = "helm_robe_common_b_02_hum.m2", + value = "helm_robe_common_b_02_hum.m2", }, { - fileId = "146311", - text = "knife_1h_stratholme_d_02.m2", - value = "knife_1h_stratholme_d_02.m2", + fileId = "362056", + text = "helm_robe_common_b_02_nif.m2", + value = "helm_robe_common_b_02_nif.m2", }, { - fileId = "146313", - text = "knife_1h_stratholme_d_03.m2", - value = "knife_1h_stratholme_d_03.m2", + fileId = "362057", + text = "helm_robe_common_b_02_nim.m2", + value = "helm_robe_common_b_02_nim.m2", }, { - fileId = "146315", - text = "knife_1h_sunwell_c_01.m2", - value = "knife_1h_sunwell_c_01.m2", + fileId = "362058", + text = "helm_robe_common_b_02_orf.m2", + value = "helm_robe_common_b_02_orf.m2", }, { - fileId = "146319", - text = "knife_1h_sunwell_c_02.m2", - value = "knife_1h_sunwell_c_02.m2", + fileId = "362059", + text = "helm_robe_common_b_02_orm.m2", + value = "helm_robe_common_b_02_orm.m2", }, { - fileId = "146324", - text = "knife_1h_sunwell_d_01.m2", - value = "knife_1h_sunwell_d_01.m2", + fileId = "362060", + text = "helm_robe_common_b_02_scf.m2", + value = "helm_robe_common_b_02_scf.m2", }, { - fileId = "146330", - text = "knife_1h_sunwell_d_02.m2", - value = "knife_1h_sunwell_d_02.m2", + fileId = "362061", + text = "helm_robe_common_b_02_scm.m2", + value = "helm_robe_common_b_02_scm.m2", }, { - fileId = "146335", - text = "knife_1h_sunwell_d_03.m2", - value = "knife_1h_sunwell_d_03.m2", + fileId = "362062", + text = "helm_robe_common_b_02_taf.m2", + value = "helm_robe_common_b_02_taf.m2", }, { - fileId = "146340", - text = "knife_1h_sunwell_d_04.m2", - value = "knife_1h_sunwell_d_04.m2", + fileId = "362063", + text = "helm_robe_common_b_02_tam.m2", + value = "helm_robe_common_b_02_tam.m2", }, { - fileId = "146345", - text = "knife_1h_tarantula_b_01.m2", - value = "knife_1h_tarantula_b_01.m2", + fileId = "362064", + text = "helm_robe_common_b_02_trf.m2", + value = "helm_robe_common_b_02_trf.m2", }, { - fileId = "146351", - text = "knife_1h_tuskarr_b_01.m2", - value = "knife_1h_tuskarr_b_01.m2", + fileId = "362065", + text = "helm_robe_common_b_02_trm.m2", + value = "helm_robe_common_b_02_trm.m2", }, { - fileId = "238709", - text = "knife_1h_ulduarraid_d_01.m2", - value = "knife_1h_ulduarraid_d_01.m2", + fileId = "454779", + text = "helm_robe_common_b_02_wof.m2", + value = "helm_robe_common_b_02_wof.m2", }, { - fileId = "238714", - text = "knife_1h_ulduarraid_d_02.m2", - value = "knife_1h_ulduarraid_d_02.m2", + fileId = "454780", + text = "helm_robe_common_b_02_wom.m2", + value = "helm_robe_common_b_02_wom.m2", }, { - fileId = "238720", - text = "knife_1h_ulduarraid_d_03.m2", - value = "knife_1h_ulduarraid_d_03.m2", + fileId = "361647", + text = "helm_robe_common_b_03_bef.m2", + value = "helm_robe_common_b_03_bef.m2", }, { - fileId = "238725", - text = "knife_1h_ulduarraid_d_04.m2", - value = "knife_1h_ulduarraid_d_04.m2", + fileId = "361648", + text = "helm_robe_common_b_03_bem.m2", + value = "helm_robe_common_b_03_bem.m2", }, { - fileId = "238726", - text = "knife_1h_ulduarraid_d_05.m2", - value = "knife_1h_ulduarraid_d_05.m2", + fileId = "361649", + text = "helm_robe_common_b_03_drf.m2", + value = "helm_robe_common_b_03_drf.m2", }, { - fileId = "146354", - text = "knife_1h_utgarde_d_01.m2", - value = "knife_1h_utgarde_d_01.m2", + fileId = "361650", + text = "helm_robe_common_b_03_drm.m2", + value = "helm_robe_common_b_03_drm.m2", }, { - fileId = "146359", - text = "knife_1h_utgarde_d_02.m2", - value = "knife_1h_utgarde_d_02.m2", + fileId = "361651", + text = "helm_robe_common_b_03_dwf.m2", + value = "helm_robe_common_b_03_dwf.m2", }, { - fileId = "146364", - text = "knife_1h_utgarde_d_03.m2", - value = "knife_1h_utgarde_d_03.m2", + fileId = "361652", + text = "helm_robe_common_b_03_dwm.m2", + value = "helm_robe_common_b_03_dwm.m2", }, { - fileId = "146369", - text = "knife_1h_vulture_a_01.m2", - value = "knife_1h_vulture_a_01.m2", + fileId = "361653", + text = "helm_robe_common_b_03_gnf.m2", + value = "helm_robe_common_b_03_gnf.m2", }, { - fileId = "146376", - text = "knife_1h_zulaman_d_01.m2", - value = "knife_1h_zulaman_d_01.m2", + fileId = "361654", + text = "helm_robe_common_b_03_gnm.m2", + value = "helm_robe_common_b_03_gnm.m2", }, { - fileId = "146381", - text = "knife_1h_zulaman_d_02.m2", - value = "knife_1h_zulaman_d_02.m2", + fileId = "454781", + text = "helm_robe_common_b_03_gof.m2", + value = "helm_robe_common_b_03_gof.m2", }, { - fileId = "146386", - text = "knife_1h_zulaman_d_03.m2", - value = "knife_1h_zulaman_d_03.m2", + fileId = "454782", + text = "helm_robe_common_b_03_gom.m2", + value = "helm_robe_common_b_03_gom.m2", }, { - fileId = "146392", - text = "knife_1h_zulaman_d_04.m2", - value = "knife_1h_zulaman_d_04.m2", + fileId = "361655", + text = "helm_robe_common_b_03_huf.m2", + value = "helm_robe_common_b_03_huf.m2", }, { - fileId = "146398", - text = "knife_1h_zulgurub_d_01.m2", - value = "knife_1h_zulgurub_d_01.m2", + fileId = "361656", + text = "helm_robe_common_b_03_hum.m2", + value = "helm_robe_common_b_03_hum.m2", }, { - fileId = "146404", - text = "knife_1h_zulgurub_d_02.m2", - value = "knife_1h_zulgurub_d_02.m2", + fileId = "361657", + text = "helm_robe_common_b_03_nif.m2", + value = "helm_robe_common_b_03_nif.m2", }, { - fileId = "146409", - text = "knife_outlandraid_d_02.m2", - value = "knife_outlandraid_d_02.m2", + fileId = "361658", + text = "helm_robe_common_b_03_nim.m2", + value = "helm_robe_common_b_03_nim.m2", }, { - fileId = "146415", - text = "knife_outlandraid_d_03.m2", - value = "knife_outlandraid_d_03.m2", + fileId = "361659", + text = "helm_robe_common_b_03_orf.m2", + value = "helm_robe_common_b_03_orf.m2", }, { - fileId = "146421", - text = "knife_outlandraid_d_04.m2", - value = "knife_outlandraid_d_04.m2", + fileId = "361660", + text = "helm_robe_common_b_03_orm.m2", + value = "helm_robe_common_b_03_orm.m2", }, { - fileId = "146429", - text = "knife_outlandraid_d_05.m2", - value = "knife_outlandraid_d_05.m2", + fileId = "361661", + text = "helm_robe_common_b_03_scf.m2", + value = "helm_robe_common_b_03_scf.m2", }, { - fileId = "146436", - text = "knife_outlandraid_d_06.m2", - value = "knife_outlandraid_d_06.m2", + fileId = "361662", + text = "helm_robe_common_b_03_scm.m2", + value = "helm_robe_common_b_03_scm.m2", }, { - fileId = "146442", - text = "knife_outlandraid_d_07.m2", - value = "knife_outlandraid_d_07.m2", + fileId = "361663", + text = "helm_robe_common_b_03_taf.m2", + value = "helm_robe_common_b_03_taf.m2", }, { - fileId = "146448", - text = "knife_outlandraid_d_08.m2", - value = "knife_outlandraid_d_08.m2", + fileId = "361664", + text = "helm_robe_common_b_03_tam.m2", + value = "helm_robe_common_b_03_tam.m2", }, { - fileId = "146464", - text = "mace_1h_ahnqiraj_d_01.m2", - value = "mace_1h_ahnqiraj_d_01.m2", + fileId = "361665", + text = "helm_robe_common_b_03_trf.m2", + value = "helm_robe_common_b_03_trf.m2", }, { - fileId = "146466", - text = "mace_1h_ahnqiraj_d_02.m2", - value = "mace_1h_ahnqiraj_d_02.m2", + fileId = "361666", + text = "helm_robe_common_b_03_trm.m2", + value = "helm_robe_common_b_03_trm.m2", }, { - fileId = "146468", - text = "mace_1h_ahnqiraj_d_03.m2", - value = "mace_1h_ahnqiraj_d_03.m2", + fileId = "454783", + text = "helm_robe_common_b_03_wof.m2", + value = "helm_robe_common_b_03_wof.m2", }, { - fileId = "293757", - text = "mace_1h_alliancecovenant_d_01.m2", - value = "mace_1h_alliancecovenant_d_01.m2", + fileId = "454784", + text = "helm_robe_common_b_03_wom.m2", + value = "helm_robe_common_b_03_wom.m2", }, { - fileId = "238727", - text = "mace_1h_aspects_d_01.m2", - value = "mace_1h_aspects_d_01.m2", + fileId = "427953", + text = "helm_robe_common_c_01_bef.m2", + value = "helm_robe_common_c_01_bef.m2", }, { - fileId = "146470", - text = "mace_1h_auchindoun_d_01.m2", - value = "mace_1h_auchindoun_d_01.m2", + fileId = "427954", + text = "helm_robe_common_c_01_bem.m2", + value = "helm_robe_common_c_01_bem.m2", }, { - fileId = "146472", - text = "mace_1h_blacksmithing_d_01.m2", - value = "mace_1h_blacksmithing_d_01.m2", + fileId = "428022", + text = "helm_robe_common_c_01_drf.m2", + value = "helm_robe_common_c_01_drf.m2", }, { - fileId = "146477", - text = "mace_1h_blacksmithing_d_02.m2", - value = "mace_1h_blacksmithing_d_02.m2", + fileId = "428023", + text = "helm_robe_common_c_01_drm.m2", + value = "helm_robe_common_c_01_drm.m2", }, { - fileId = "146482", - text = "mace_1h_blacksmithing_d_03.m2", - value = "mace_1h_blacksmithing_d_03.m2", + fileId = "428024", + text = "helm_robe_common_c_01_dwf.m2", + value = "helm_robe_common_c_01_dwf.m2", }, { - fileId = "146486", - text = "mace_1h_blacktemple_d_01.m2", - value = "mace_1h_blacktemple_d_01.m2", + fileId = "428025", + text = "helm_robe_common_c_01_dwm.m2", + value = "helm_robe_common_c_01_dwm.m2", }, { - fileId = "146491", - text = "mace_1h_blacktemple_d_02.m2", - value = "mace_1h_blacktemple_d_02.m2", + fileId = "428026", + text = "helm_robe_common_c_01_gnf.m2", + value = "helm_robe_common_c_01_gnf.m2", }, { - fileId = "146494", - text = "mace_1h_blackwing_a_01.m2", - value = "mace_1h_blackwing_a_01.m2", + fileId = "428027", + text = "helm_robe_common_c_01_gnm.m2", + value = "helm_robe_common_c_01_gnm.m2", }, { - fileId = "146497", - text = "mace_1h_blackwing_a_02.m2", - value = "mace_1h_blackwing_a_02.m2", + fileId = "428028", + text = "helm_robe_common_c_01_gof.m2", + value = "helm_robe_common_c_01_gof.m2", }, { - fileId = "146499", - text = "mace_1h_blood_a_01.m2", - value = "mace_1h_blood_a_01.m2", + fileId = "428029", + text = "helm_robe_common_c_01_gom.m2", + value = "helm_robe_common_c_01_gom.m2", }, { - fileId = "146501", - text = "mace_1h_blood_a_02.m2", - value = "mace_1h_blood_a_02.m2", + fileId = "427955", + text = "helm_robe_common_c_01_huf.m2", + value = "helm_robe_common_c_01_huf.m2", }, { - fileId = "350857", - text = "mace_1h_bloodqueen_d_01.m2", - value = "mace_1h_bloodqueen_d_01.m2", + fileId = "427956", + text = "helm_robe_common_c_01_hum.m2", + value = "helm_robe_common_c_01_hum.m2", }, { - fileId = "146504", - text = "mace_1h_coilfang_d_01.m2", - value = "mace_1h_coilfang_d_01.m2", + fileId = "428030", + text = "helm_robe_common_c_01_nif.m2", + value = "helm_robe_common_c_01_nif.m2", }, { - fileId = "146506", - text = "mace_1h_cotstrat_d_01.m2", - value = "mace_1h_cotstrat_d_01.m2", + fileId = "428031", + text = "helm_robe_common_c_01_nim.m2", + value = "helm_robe_common_c_01_nim.m2", }, { - fileId = "146516", - text = "mace_1h_doomhammer_d_01.m2", - value = "mace_1h_doomhammer_d_01.m2", + fileId = "428032", + text = "helm_robe_common_c_01_orf.m2", + value = "helm_robe_common_c_01_orf.m2", }, { - fileId = "146519", - text = "mace_1h_draenei_a_01.m2", - value = "mace_1h_draenei_a_01.m2", + fileId = "428033", + text = "helm_robe_common_c_01_orm.m2", + value = "helm_robe_common_c_01_orm.m2", }, { - fileId = "146525", - text = "mace_1h_draenei_a_02.m2", - value = "mace_1h_draenei_a_02.m2", + fileId = "428034", + text = "helm_robe_common_c_01_scf.m2", + value = "helm_robe_common_c_01_scf.m2", }, { - fileId = "238735", - text = "mace_1h_draktharon_d_01.m2", - value = "mace_1h_draktharon_d_01.m2", + fileId = "428035", + text = "helm_robe_common_c_01_scm.m2", + value = "helm_robe_common_c_01_scm.m2", }, { - fileId = "238742", - text = "mace_1h_draktharon_d_02.m2", - value = "mace_1h_draktharon_d_02.m2", + fileId = "428036", + text = "helm_robe_common_c_01_taf.m2", + value = "helm_robe_common_c_01_taf.m2", }, { - fileId = "146531", - text = "mace_1h_flanged_a_01.m2", - value = "mace_1h_flanged_a_01.m2", + fileId = "428037", + text = "helm_robe_common_c_01_tam.m2", + value = "helm_robe_common_c_01_tam.m2", }, { - fileId = "146533", - text = "mace_1h_flanged_a_02.m2", - value = "mace_1h_flanged_a_02.m2", + fileId = "428038", + text = "helm_robe_common_c_01_trf.m2", + value = "helm_robe_common_c_01_trf.m2", }, { - fileId = "146537", - text = "mace_1h_flanged_a_03.m2", - value = "mace_1h_flanged_a_03.m2", + fileId = "428039", + text = "helm_robe_common_c_01_trm.m2", + value = "helm_robe_common_c_01_trm.m2", }, { - fileId = "146541", - text = "mace_1h_flanged_b_01.m2", - value = "mace_1h_flanged_b_01.m2", + fileId = "428040", + text = "helm_robe_common_c_01_wof.m2", + value = "helm_robe_common_c_01_wof.m2", }, { - fileId = "146543", - text = "mace_1h_flanged_b_02.m2", - value = "mace_1h_flanged_b_02.m2", + fileId = "428041", + text = "helm_robe_common_c_01_wom.m2", + value = "helm_robe_common_c_01_wom.m2", }, { - fileId = "146546", - text = "mace_1h_flanged_d_01.m2", - value = "mace_1h_flanged_d_01.m2", + fileId = "141483", + text = "helm_robe_d_04_bef.m2", + value = "helm_robe_d_04_bef.m2", }, { - fileId = "238747", - text = "mace_1h_frostgiant.m2", - value = "mace_1h_frostgiant.m2", + fileId = "141484", + text = "helm_robe_d_04_bem.m2", + value = "helm_robe_d_04_bem.m2", }, { - fileId = "146549", - text = "mace_1h_hellfire_d_01.m2", - value = "mace_1h_hellfire_d_01.m2", + fileId = "141485", + text = "helm_robe_d_04_drf.m2", + value = "helm_robe_d_04_drf.m2", }, { - fileId = "294484", - text = "mace_1h_hordecovenant_d_01.m2", - value = "mace_1h_hordecovenant_d_01.m2", + fileId = "141486", + text = "helm_robe_d_04_drm.m2", + value = "helm_robe_d_04_drm.m2", }, { - fileId = "146550", - text = "mace_1h_hyjal_d_01.m2", - value = "mace_1h_hyjal_d_01.m2", + fileId = "141487", + text = "helm_robe_d_04_dwf.m2", + value = "helm_robe_d_04_dwf.m2", }, { - fileId = "312464", - text = "mace_1h_icecrownraid_d_01.m2", - value = "mace_1h_icecrownraid_d_01.m2", + fileId = "141488", + text = "helm_robe_d_04_dwm.m2", + value = "helm_robe_d_04_dwm.m2", }, { - fileId = "312469", - text = "mace_1h_icecrownraid_d_02.m2", - value = "mace_1h_icecrownraid_d_02.m2", + fileId = "141489", + text = "helm_robe_d_04_gnf.m2", + value = "helm_robe_d_04_gnf.m2", }, { - fileId = "321299", - text = "mace_1h_icecrownraid_d_03.m2", - value = "mace_1h_icecrownraid_d_03.m2", + fileId = "141490", + text = "helm_robe_d_04_gnm.m2", + value = "helm_robe_d_04_gnm.m2", }, { - fileId = "312952", - text = "mace_1h_icecrownraid_d_04.m2", - value = "mace_1h_icecrownraid_d_04.m2", + fileId = "141491", + text = "helm_robe_d_04_gof.m2", + value = "helm_robe_d_04_gof.m2", }, { - fileId = "238749", - text = "mace_1h_microphone_c_01.m2", - value = "mace_1h_microphone_c_01.m2", + fileId = "141492", + text = "helm_robe_d_04_gom.m2", + value = "helm_robe_d_04_gom.m2", }, { - fileId = "305441", - text = "mace_1h_misc_d_01.m2", - value = "mace_1h_misc_d_01.m2", + fileId = "141493", + text = "helm_robe_d_04_huf.m2", + value = "helm_robe_d_04_huf.m2", }, { - fileId = "146557", - text = "mace_1h_naxxramas_d_01.m2", - value = "mace_1h_naxxramas_d_01.m2", + fileId = "141494", + text = "helm_robe_d_04_hum.m2", + value = "helm_robe_d_04_hum.m2", }, { - fileId = "146559", - text = "mace_1h_naxxramas_d_02.m2", - value = "mace_1h_naxxramas_d_02.m2", + fileId = "141495", + text = "helm_robe_d_04_nif.m2", + value = "helm_robe_d_04_nif.m2", }, { - fileId = "146561", - text = "mace_1h_naxxramas_d_03.m2", - value = "mace_1h_naxxramas_d_03.m2", + fileId = "141496", + text = "helm_robe_d_04_nim.m2", + value = "helm_robe_d_04_nim.m2", }, { - fileId = "146563", - text = "mace_1h_nexus_d_01.m2", - value = "mace_1h_nexus_d_01.m2", + fileId = "141497", + text = "helm_robe_d_04_orf.m2", + value = "helm_robe_d_04_orf.m2", }, { - fileId = "146568", - text = "mace_1h_nexus_d_02.m2", - value = "mace_1h_nexus_d_02.m2", + fileId = "141498", + text = "helm_robe_d_04_orm.m2", + value = "helm_robe_d_04_orm.m2", }, { - fileId = "146574", - text = "mace_1h_northrend_b_01.m2", - value = "mace_1h_northrend_b_01.m2", + fileId = "141499", + text = "helm_robe_d_04_scf.m2", + value = "helm_robe_d_04_scf.m2", }, { - fileId = "146580", - text = "mace_1h_northrend_b_02.m2", - value = "mace_1h_northrend_b_02.m2", + fileId = "141500", + text = "helm_robe_d_04_scm.m2", + value = "helm_robe_d_04_scm.m2", }, { - fileId = "146587", - text = "mace_1h_northrend_b_03.m2", - value = "mace_1h_northrend_b_03.m2", + fileId = "141501", + text = "helm_robe_d_04_taf.m2", + value = "helm_robe_d_04_taf.m2", }, { - fileId = "146592", - text = "mace_1h_northrend_c_01.m2", - value = "mace_1h_northrend_c_01.m2", + fileId = "141502", + text = "helm_robe_d_04_tam.m2", + value = "helm_robe_d_04_tam.m2", }, { - fileId = "146597", - text = "mace_1h_northrend_c_02.m2", - value = "mace_1h_northrend_c_02.m2", + fileId = "141503", + text = "helm_robe_d_04_trf.m2", + value = "helm_robe_d_04_trf.m2", }, { - fileId = "146598", - text = "mace_1h_northrend_c_03.m2", - value = "mace_1h_northrend_c_03.m2", + fileId = "141504", + text = "helm_robe_d_04_trm.m2", + value = "helm_robe_d_04_trm.m2", }, { - fileId = "146603", - text = "mace_1h_northrend_d_01.m2", - value = "mace_1h_northrend_d_01.m2", + fileId = "454510", + text = "helm_robe_d_04_wof.m2", + value = "helm_robe_d_04_wof.m2", }, { - fileId = "146608", - text = "mace_1h_outlandpvp_d_01.m2", - value = "mace_1h_outlandpvp_d_01.m2", + fileId = "454511", + text = "helm_robe_d_04_wom.m2", + value = "helm_robe_d_04_wom.m2", }, { - fileId = "146615", - text = "mace_1h_outlandraid_d_01.m2", - value = "mace_1h_outlandraid_d_01.m2", + fileId = "141505", + text = "helm_robe_dungeonmage_a_01_bef.m2", + value = "helm_robe_dungeonmage_a_01_bef.m2", }, { - fileId = "146617", - text = "mace_1h_outlandraid_d_02.m2", - value = "mace_1h_outlandraid_d_02.m2", + fileId = "141506", + text = "helm_robe_dungeonmage_a_01_bem.m2", + value = "helm_robe_dungeonmage_a_01_bem.m2", }, { - fileId = "146619", - text = "mace_1h_outlandraid_d_03.m2", - value = "mace_1h_outlandraid_d_03.m2", + fileId = "141507", + text = "helm_robe_dungeonmage_a_01_drf.m2", + value = "helm_robe_dungeonmage_a_01_drf.m2", }, { - fileId = "146621", - text = "mace_1h_outlandraid_d_04.m2", - value = "mace_1h_outlandraid_d_04.m2", + fileId = "141508", + text = "helm_robe_dungeonmage_a_01_drm.m2", + value = "helm_robe_dungeonmage_a_01_drm.m2", }, { - fileId = "146622", - text = "mace_1h_outlandraid_d_05.m2", - value = "mace_1h_outlandraid_d_05.m2", + fileId = "141509", + text = "helm_robe_dungeonmage_a_01_dwf.m2", + value = "helm_robe_dungeonmage_a_01_dwf.m2", }, { - fileId = "146624", - text = "mace_1h_outlandraid_d_06.m2", - value = "mace_1h_outlandraid_d_06.m2", + fileId = "141510", + text = "helm_robe_dungeonmage_a_01_dwm.m2", + value = "helm_robe_dungeonmage_a_01_dwm.m2", }, { - fileId = "146625", - text = "mace_1h_outlandraid_d_07.m2", - value = "mace_1h_outlandraid_d_07.m2", + fileId = "141511", + text = "helm_robe_dungeonmage_a_01_gnf.m2", + value = "helm_robe_dungeonmage_a_01_gnf.m2", }, { - fileId = "146630", - text = "mace_1h_outlandraid_d_08.m2", - value = "mace_1h_outlandraid_d_08.m2", + fileId = "141512", + text = "helm_robe_dungeonmage_a_01_gnm.m2", + value = "helm_robe_dungeonmage_a_01_gnm.m2", }, { - fileId = "146636", - text = "mace_1h_outlandraid_d_09.m2", - value = "mace_1h_outlandraid_d_09.m2", + fileId = "141513", + text = "helm_robe_dungeonmage_a_01_gof.m2", + value = "helm_robe_dungeonmage_a_01_gof.m2", }, { - fileId = "146637", - text = "mace_1h_outlandraid_d_10.m2", - value = "mace_1h_outlandraid_d_10.m2", + fileId = "141514", + text = "helm_robe_dungeonmage_a_01_gom.m2", + value = "helm_robe_dungeonmage_a_01_gom.m2", }, { - fileId = "146639", - text = "mace_1h_paladin_d_01.m2", - value = "mace_1h_paladin_d_01.m2", + fileId = "141515", + text = "helm_robe_dungeonmage_a_01_huf.m2", + value = "helm_robe_dungeonmage_a_01_huf.m2", }, { - fileId = "304334", - text = "mace_1h_pvealliance_d_01.m2", - value = "mace_1h_pvealliance_d_01.m2", + fileId = "141516", + text = "helm_robe_dungeonmage_a_01_hum.m2", + value = "helm_robe_dungeonmage_a_01_hum.m2", }, { - fileId = "305165", - text = "mace_1h_pvealliance_d_02.m2", - value = "mace_1h_pvealliance_d_02.m2", + fileId = "141517", + text = "helm_robe_dungeonmage_a_01_nif.m2", + value = "helm_robe_dungeonmage_a_01_nif.m2", }, { - fileId = "294391", - text = "mace_1h_pvehorde_d_01.m2", - value = "mace_1h_pvehorde_d_01.m2", + fileId = "141518", + text = "helm_robe_dungeonmage_a_01_nim.m2", + value = "helm_robe_dungeonmage_a_01_nim.m2", }, { - fileId = "303692", - text = "mace_1h_pvehorde_d_02.m2", - value = "mace_1h_pvehorde_d_02.m2", + fileId = "141519", + text = "helm_robe_dungeonmage_a_01_orf.m2", + value = "helm_robe_dungeonmage_a_01_orf.m2", }, { - fileId = "306523", - text = "mace_1h_pvp320_c_01.m2", - value = "mace_1h_pvp320_c_01.m2", + fileId = "141520", + text = "helm_robe_dungeonmage_a_01_orm.m2", + value = "helm_robe_dungeonmage_a_01_orm.m2", }, { - fileId = "306141", - text = "mace_1h_pvp320_c_02.m2", - value = "mace_1h_pvp320_c_02.m2", + fileId = "141521", + text = "helm_robe_dungeonmage_a_01_scf.m2", + value = "helm_robe_dungeonmage_a_01_scf.m2", }, { - fileId = "326447", - text = "mace_1h_pvp330_d_01.m2", - value = "mace_1h_pvp330_d_01.m2", + fileId = "141522", + text = "helm_robe_dungeonmage_a_01_scm.m2", + value = "helm_robe_dungeonmage_a_01_scm.m2", }, { - fileId = "327161", - text = "mace_1h_pvp330_d_02.m2", - value = "mace_1h_pvp330_d_02.m2", + fileId = "141523", + text = "helm_robe_dungeonmage_a_01_taf.m2", + value = "helm_robe_dungeonmage_a_01_taf.m2", }, { - fileId = "146643", - text = "mace_1h_spiked_a_01.m2", - value = "mace_1h_spiked_a_01.m2", + fileId = "141524", + text = "helm_robe_dungeonmage_a_01_tam.m2", + value = "helm_robe_dungeonmage_a_01_tam.m2", }, { - fileId = "146645", - text = "mace_1h_spiked_a_02.m2", - value = "mace_1h_spiked_a_02.m2", + fileId = "141525", + text = "helm_robe_dungeonmage_a_01_trf.m2", + value = "helm_robe_dungeonmage_a_01_trf.m2", }, { - fileId = "146649", - text = "mace_1h_spiked_a_03.m2", - value = "mace_1h_spiked_a_03.m2", + fileId = "141526", + text = "helm_robe_dungeonmage_a_01_trm.m2", + value = "helm_robe_dungeonmage_a_01_trm.m2", }, { - fileId = "146654", - text = "mace_1h_spiked_b_01.m2", - value = "mace_1h_spiked_b_01.m2", + fileId = "454500", + text = "helm_robe_dungeonmage_a_01_wof.m2", + value = "helm_robe_dungeonmage_a_01_wof.m2", }, { - fileId = "146657", - text = "mace_1h_spiked_b_02.m2", - value = "mace_1h_spiked_b_02.m2", + fileId = "454501", + text = "helm_robe_dungeonmage_a_01_wom.m2", + value = "helm_robe_dungeonmage_a_01_wom.m2", }, { - fileId = "146659", - text = "mace_1h_standard_a_01.m2", - value = "mace_1h_standard_a_01.m2", + fileId = "141532", + text = "helm_robe_dungeonmage_b_01_bef.m2", + value = "helm_robe_dungeonmage_b_01_bef.m2", }, { - fileId = "146661", - text = "mace_1h_standard_a_02.m2", - value = "mace_1h_standard_a_02.m2", + fileId = "141533", + text = "helm_robe_dungeonmage_b_01_bem.m2", + value = "helm_robe_dungeonmage_b_01_bem.m2", }, { - fileId = "146662", - text = "mace_1h_standard_b_01.m2", - value = "mace_1h_standard_b_01.m2", + fileId = "141534", + text = "helm_robe_dungeonmage_b_01_drf.m2", + value = "helm_robe_dungeonmage_b_01_drf.m2", }, { - fileId = "146665", - text = "mace_1h_stratholme_d_01.m2", - value = "mace_1h_stratholme_d_01.m2", + fileId = "141535", + text = "helm_robe_dungeonmage_b_01_drm.m2", + value = "helm_robe_dungeonmage_b_01_drm.m2", }, { - fileId = "146667", - text = "mace_1h_stratholme_d_02.m2", - value = "mace_1h_stratholme_d_02.m2", + fileId = "141536", + text = "helm_robe_dungeonmage_b_01_dwf.m2", + value = "helm_robe_dungeonmage_b_01_dwf.m2", }, { - fileId = "146669", - text = "mace_1h_sunwell_c_01.m2", - value = "mace_1h_sunwell_c_01.m2", + fileId = "141537", + text = "helm_robe_dungeonmage_b_01_dwm.m2", + value = "helm_robe_dungeonmage_b_01_dwm.m2", }, { - fileId = "146674", - text = "mace_1h_sunwell_c_02.m2", - value = "mace_1h_sunwell_c_02.m2", + fileId = "141538", + text = "helm_robe_dungeonmage_b_01_gnf.m2", + value = "helm_robe_dungeonmage_b_01_gnf.m2", }, { - fileId = "146678", - text = "mace_1h_sunwell_d_01.m2", - value = "mace_1h_sunwell_d_01.m2", + fileId = "141539", + text = "helm_robe_dungeonmage_b_01_gnm.m2", + value = "helm_robe_dungeonmage_b_01_gnm.m2", }, { - fileId = "146683", - text = "mace_1h_sunwell_d_02.m2", - value = "mace_1h_sunwell_d_02.m2", + fileId = "141540", + text = "helm_robe_dungeonmage_b_01_gof.m2", + value = "helm_robe_dungeonmage_b_01_gof.m2", }, { - fileId = "146688", - text = "mace_1h_sunwell_d_03.m2", - value = "mace_1h_sunwell_d_03.m2", + fileId = "141541", + text = "helm_robe_dungeonmage_b_01_gom.m2", + value = "helm_robe_dungeonmage_b_01_gom.m2", }, { - fileId = "146694", - text = "mace_1h_tauren_b_01.m2", - value = "mace_1h_tauren_b_01.m2", + fileId = "141542", + text = "helm_robe_dungeonmage_b_01_huf.m2", + value = "helm_robe_dungeonmage_b_01_huf.m2", }, { - fileId = "146696", - text = "mace_1h_tauren_b_02.m2", - value = "mace_1h_tauren_b_02.m2", + fileId = "141543", + text = "helm_robe_dungeonmage_b_01_hum.m2", + value = "helm_robe_dungeonmage_b_01_hum.m2", }, { - fileId = "238751", - text = "mace_1h_ulduarraid_d_01.m2", - value = "mace_1h_ulduarraid_d_01.m2", + fileId = "141544", + text = "helm_robe_dungeonmage_b_01_nif.m2", + value = "helm_robe_dungeonmage_b_01_nif.m2", }, { - fileId = "238757", - text = "mace_1h_ulduarraid_d_02.m2", - value = "mace_1h_ulduarraid_d_02.m2", + fileId = "141545", + text = "helm_robe_dungeonmage_b_01_nim.m2", + value = "helm_robe_dungeonmage_b_01_nim.m2", }, { - fileId = "238762", - text = "mace_1h_ulduarraid_d_03.m2", - value = "mace_1h_ulduarraid_d_03.m2", + fileId = "141546", + text = "helm_robe_dungeonmage_b_01_orf.m2", + value = "helm_robe_dungeonmage_b_01_orf.m2", }, { - fileId = "238767", - text = "mace_1h_ulduarraid_d_04.m2", - value = "mace_1h_ulduarraid_d_04.m2", + fileId = "141547", + text = "helm_robe_dungeonmage_b_01_orm.m2", + value = "helm_robe_dungeonmage_b_01_orm.m2", }, { - fileId = "253423", - text = "mace_1h_ulduarraid_e_01.m2", - value = "mace_1h_ulduarraid_e_01.m2", + fileId = "141548", + text = "helm_robe_dungeonmage_b_01_scf.m2", + value = "helm_robe_dungeonmage_b_01_scf.m2", }, { - fileId = "303788", - text = "mace_1h_ulduarraidnotskinable_d_01.m2", - value = "mace_1h_ulduarraidnotskinable_d_01.m2", + fileId = "141549", + text = "helm_robe_dungeonmage_b_01_scm.m2", + value = "helm_robe_dungeonmage_b_01_scm.m2", }, { - fileId = "146698", - text = "mace_1h_utgarde_d_01.m2", - value = "mace_1h_utgarde_d_01.m2", + fileId = "141550", + text = "helm_robe_dungeonmage_b_01_taf.m2", + value = "helm_robe_dungeonmage_b_01_taf.m2", }, { - fileId = "146703", - text = "mace_1h_utgarde_d_02.m2", - value = "mace_1h_utgarde_d_02.m2", + fileId = "141551", + text = "helm_robe_dungeonmage_b_01_tam.m2", + value = "helm_robe_dungeonmage_b_01_tam.m2", }, { - fileId = "146708", - text = "mace_1h_utgarde_d_03.m2", - value = "mace_1h_utgarde_d_03.m2", + fileId = "141552", + text = "helm_robe_dungeonmage_b_01_trf.m2", + value = "helm_robe_dungeonmage_b_01_trf.m2", }, { - fileId = "146714", - text = "mace_1h_zulaman_d_01.m2", - value = "mace_1h_zulaman_d_01.m2", + fileId = "141553", + text = "helm_robe_dungeonmage_b_01_trm.m2", + value = "helm_robe_dungeonmage_b_01_trm.m2", }, { - fileId = "146719", - text = "mace_1h_zulaman_d_02.m2", - value = "mace_1h_zulaman_d_02.m2", + fileId = "454502", + text = "helm_robe_dungeonmage_b_01_wof.m2", + value = "helm_robe_dungeonmage_b_01_wof.m2", }, { - fileId = "146725", - text = "mace_1h_zulgurub_d_01.m2", - value = "mace_1h_zulgurub_d_01.m2", + fileId = "454503", + text = "helm_robe_dungeonmage_b_01_wom.m2", + value = "helm_robe_dungeonmage_b_01_wom.m2", }, { - fileId = "146727", - text = "mace_1h_zulgurub_d_02.m2", - value = "mace_1h_zulgurub_d_02.m2", + fileId = "141558", + text = "helm_robe_dungeonpriest_a_01_bef.m2", + value = "helm_robe_dungeonpriest_a_01_bef.m2", }, { - fileId = "146729", - text = "mace_2h_ahnqiraj_d_01.m2", - value = "mace_2h_ahnqiraj_d_01.m2", + fileId = "141559", + text = "helm_robe_dungeonpriest_a_01_bem.m2", + value = "helm_robe_dungeonpriest_a_01_bem.m2", }, { - fileId = "238775", - text = "mace_2h_aspects_d_01.m2", - value = "mace_2h_aspects_d_01.m2", + fileId = "141560", + text = "helm_robe_dungeonpriest_a_01_drf.m2", + value = "helm_robe_dungeonpriest_a_01_drf.m2", }, { - fileId = "146735", - text = "mace_2h_auchindoun_d_01.m2", - value = "mace_2h_auchindoun_d_01.m2", + fileId = "141561", + text = "helm_robe_dungeonpriest_a_01_drm.m2", + value = "helm_robe_dungeonpriest_a_01_drm.m2", }, { - fileId = "146737", - text = "mace_2h_blacksmithing_d_01.m2", - value = "mace_2h_blacksmithing_d_01.m2", + fileId = "141562", + text = "helm_robe_dungeonpriest_a_01_dwf.m2", + value = "helm_robe_dungeonpriest_a_01_dwf.m2", }, { - fileId = "146742", - text = "mace_2h_blacksmithing_d_02.m2", - value = "mace_2h_blacksmithing_d_02.m2", + fileId = "141563", + text = "helm_robe_dungeonpriest_a_01_dwm.m2", + value = "helm_robe_dungeonpriest_a_01_dwm.m2", }, { - fileId = "146747", - text = "mace_2h_blacksmithing_d_03.m2", - value = "mace_2h_blacksmithing_d_03.m2", + fileId = "141564", + text = "helm_robe_dungeonpriest_a_01_gnf.m2", + value = "helm_robe_dungeonpriest_a_01_gnf.m2", }, { - fileId = "146752", - text = "mace_2h_blackwing_a_01.m2", - value = "mace_2h_blackwing_a_01.m2", + fileId = "141565", + text = "helm_robe_dungeonpriest_a_01_gnm.m2", + value = "helm_robe_dungeonpriest_a_01_gnm.m2", }, { - fileId = "146754", - text = "mace_2h_blackwing_a_02.m2", - value = "mace_2h_blackwing_a_02.m2", + fileId = "141566", + text = "helm_robe_dungeonpriest_a_01_gof.m2", + value = "helm_robe_dungeonpriest_a_01_gof.m2", }, { - fileId = "146756", - text = "mace_2h_blood_a_01.m2", - value = "mace_2h_blood_a_01.m2", + fileId = "141567", + text = "helm_robe_dungeonpriest_a_01_gom.m2", + value = "helm_robe_dungeonpriest_a_01_gom.m2", }, { - fileId = "146762", - text = "mace_2h_blood_a_02.m2", - value = "mace_2h_blood_a_02.m2", + fileId = "141568", + text = "helm_robe_dungeonpriest_a_01_huf.m2", + value = "helm_robe_dungeonpriest_a_01_huf.m2", }, { - fileId = "146769", - text = "mace_2h_dalaran_d_01.m2", - value = "mace_2h_dalaran_d_01.m2", + fileId = "141569", + text = "helm_robe_dungeonpriest_a_01_hum.m2", + value = "helm_robe_dungeonpriest_a_01_hum.m2", }, { - fileId = "146779", - text = "mace_2h_draenei_a_01.m2", - value = "mace_2h_draenei_a_01.m2", + fileId = "141570", + text = "helm_robe_dungeonpriest_a_01_nif.m2", + value = "helm_robe_dungeonpriest_a_01_nif.m2", }, { - fileId = "146785", - text = "mace_2h_draenei_a_02.m2", - value = "mace_2h_draenei_a_02.m2", + fileId = "141571", + text = "helm_robe_dungeonpriest_a_01_nim.m2", + value = "helm_robe_dungeonpriest_a_01_nim.m2", }, { - fileId = "146790", - text = "mace_2h_flanged_a_01.m2", - value = "mace_2h_flanged_a_01.m2", + fileId = "141572", + text = "helm_robe_dungeonpriest_a_01_orf.m2", + value = "helm_robe_dungeonpriest_a_01_orf.m2", }, { - fileId = "146794", - text = "mace_2h_flanged_a_02.m2", - value = "mace_2h_flanged_a_02.m2", + fileId = "141573", + text = "helm_robe_dungeonpriest_a_01_orm.m2", + value = "helm_robe_dungeonpriest_a_01_orm.m2", }, { - fileId = "146798", - text = "mace_2h_flanged_c_01.m2", - value = "mace_2h_flanged_c_01.m2", + fileId = "141574", + text = "helm_robe_dungeonpriest_a_01_scf.m2", + value = "helm_robe_dungeonpriest_a_01_scf.m2", }, { - fileId = "146800", - text = "mace_2h_flanged_c_02.m2", - value = "mace_2h_flanged_c_02.m2", + fileId = "141575", + text = "helm_robe_dungeonpriest_a_01_scm.m2", + value = "helm_robe_dungeonpriest_a_01_scm.m2", }, { - fileId = "146802", - text = "mace_2h_hellfire_c_01.m2", - value = "mace_2h_hellfire_c_01.m2", + fileId = "141576", + text = "helm_robe_dungeonpriest_a_01_taf.m2", + value = "helm_robe_dungeonpriest_a_01_taf.m2", }, { - fileId = "146808", - text = "mace_2h_hellfire_d_01.m2", - value = "mace_2h_hellfire_d_01.m2", + fileId = "141577", + text = "helm_robe_dungeonpriest_a_01_tam.m2", + value = "helm_robe_dungeonpriest_a_01_tam.m2", }, { - fileId = "146809", - text = "mace_2h_horde_a_01.m2", - value = "mace_2h_horde_a_01.m2", + fileId = "141578", + text = "helm_robe_dungeonpriest_a_01_trf.m2", + value = "helm_robe_dungeonpriest_a_01_trf.m2", }, { - fileId = "146810", - text = "mace_2h_horde_b_01.m2", - value = "mace_2h_horde_b_01.m2", + fileId = "141579", + text = "helm_robe_dungeonpriest_a_01_trm.m2", + value = "helm_robe_dungeonpriest_a_01_trm.m2", }, { - fileId = "146811", - text = "mace_2h_horde_c_02.m2", - value = "mace_2h_horde_c_02.m2", + fileId = "454504", + text = "helm_robe_dungeonpriest_a_01_wof.m2", + value = "helm_robe_dungeonpriest_a_01_wof.m2", }, { - fileId = "318123", - text = "mace_2h_icecrownraid_d_01.m2", - value = "mace_2h_icecrownraid_d_01.m2", + fileId = "454505", + text = "helm_robe_dungeonpriest_a_01_wom.m2", + value = "helm_robe_dungeonpriest_a_01_wom.m2", }, { - fileId = "305442", - text = "mace_2h_misc_d_01.m2", - value = "mace_2h_misc_d_01.m2", + fileId = "141585", + text = "helm_robe_dungeonpriest_b_01_bef.m2", + value = "helm_robe_dungeonpriest_b_01_bef.m2", }, { - fileId = "238782", - text = "mace_2h_naxx25_d_01.m2", - value = "mace_2h_naxx25_d_01.m2", + fileId = "141586", + text = "helm_robe_dungeonpriest_b_01_bem.m2", + value = "helm_robe_dungeonpriest_b_01_bem.m2", }, { - fileId = "146812", - text = "mace_2h_nexus_d_01.m2", - value = "mace_2h_nexus_d_01.m2", + fileId = "141587", + text = "helm_robe_dungeonpriest_b_01_drf.m2", + value = "helm_robe_dungeonpriest_b_01_drf.m2", }, { - fileId = "146824", - text = "mace_2h_northrend_b_01.m2", - value = "mace_2h_northrend_b_01.m2", + fileId = "141588", + text = "helm_robe_dungeonpriest_b_01_drm.m2", + value = "helm_robe_dungeonpriest_b_01_drm.m2", }, { - fileId = "146829", - text = "mace_2h_northrend_b_02.m2", - value = "mace_2h_northrend_b_02.m2", + fileId = "141589", + text = "helm_robe_dungeonpriest_b_01_dwf.m2", + value = "helm_robe_dungeonpriest_b_01_dwf.m2", }, { - fileId = "146836", - text = "mace_2h_northrend_b_03.m2", - value = "mace_2h_northrend_b_03.m2", + fileId = "141590", + text = "helm_robe_dungeonpriest_b_01_dwm.m2", + value = "helm_robe_dungeonpriest_b_01_dwm.m2", }, { - fileId = "146841", - text = "mace_2h_northrend_c_01.m2", - value = "mace_2h_northrend_c_01.m2", + fileId = "141591", + text = "helm_robe_dungeonpriest_b_01_gnf.m2", + value = "helm_robe_dungeonpriest_b_01_gnf.m2", }, { - fileId = "146846", - text = "mace_2h_northrend_c_02.m2", - value = "mace_2h_northrend_c_02.m2", + fileId = "141592", + text = "helm_robe_dungeonpriest_b_01_gnm.m2", + value = "helm_robe_dungeonpriest_b_01_gnm.m2", }, { - fileId = "146851", - text = "mace_2h_northrend_c_03.m2", - value = "mace_2h_northrend_c_03.m2", + fileId = "141593", + text = "helm_robe_dungeonpriest_b_01_gof.m2", + value = "helm_robe_dungeonpriest_b_01_gof.m2", }, { - fileId = "146856", - text = "mace_2h_northrend_d_01.m2", - value = "mace_2h_northrend_d_01.m2", + fileId = "141594", + text = "helm_robe_dungeonpriest_b_01_gom.m2", + value = "helm_robe_dungeonpriest_b_01_gom.m2", }, { - fileId = "146861", - text = "mace_2h_outlandraid_d_01.m2", - value = "mace_2h_outlandraid_d_01.m2", + fileId = "141595", + text = "helm_robe_dungeonpriest_b_01_huf.m2", + value = "helm_robe_dungeonpriest_b_01_huf.m2", }, { - fileId = "146863", - text = "mace_2h_outlandraid_d_02.m2", - value = "mace_2h_outlandraid_d_02.m2", + fileId = "141596", + text = "helm_robe_dungeonpriest_b_01_hum.m2", + value = "helm_robe_dungeonpriest_b_01_hum.m2", }, { - fileId = "146865", - text = "mace_2h_outlandraid_d_03.m2", - value = "mace_2h_outlandraid_d_03.m2", + fileId = "141597", + text = "helm_robe_dungeonpriest_b_01_nif.m2", + value = "helm_robe_dungeonpriest_b_01_nif.m2", }, { - fileId = "146867", - text = "mace_2h_outlandraid_d_04.m2", - value = "mace_2h_outlandraid_d_04.m2", + fileId = "141598", + text = "helm_robe_dungeonpriest_b_01_nim.m2", + value = "helm_robe_dungeonpriest_b_01_nim.m2", }, { - fileId = "146870", - text = "mace_2h_outlandraid_d_05.m2", - value = "mace_2h_outlandraid_d_05.m2", + fileId = "141599", + text = "helm_robe_dungeonpriest_b_01_orf.m2", + value = "helm_robe_dungeonpriest_b_01_orf.m2", }, { - fileId = "146872", - text = "mace_2h_outlandraid_d_06.m2", - value = "mace_2h_outlandraid_d_06.m2", + fileId = "141600", + text = "helm_robe_dungeonpriest_b_01_orm.m2", + value = "helm_robe_dungeonpriest_b_01_orm.m2", }, { - fileId = "146873", - text = "mace_2h_outlandraid_d_07.m2", - value = "mace_2h_outlandraid_d_07.m2", + fileId = "141601", + text = "helm_robe_dungeonpriest_b_01_scf.m2", + value = "helm_robe_dungeonpriest_b_01_scf.m2", }, { - fileId = "146880", - text = "mace_2h_paladin_d_01.m2", - value = "mace_2h_paladin_d_01.m2", + fileId = "141602", + text = "helm_robe_dungeonpriest_b_01_scm.m2", + value = "helm_robe_dungeonpriest_b_01_scm.m2", }, { - fileId = "304782", - text = "mace_2h_pvealliance_d_01.m2", - value = "mace_2h_pvealliance_d_01.m2", + fileId = "141603", + text = "helm_robe_dungeonpriest_b_01_taf.m2", + value = "helm_robe_dungeonpriest_b_01_taf.m2", }, { - fileId = "303906", - text = "mace_2h_pvehorde_d_01.m2", - value = "mace_2h_pvehorde_d_01.m2", + fileId = "141604", + text = "helm_robe_dungeonpriest_b_01_tam.m2", + value = "helm_robe_dungeonpriest_b_01_tam.m2", }, { - fileId = "306797", - text = "mace_2h_pvp320_c_01.m2", - value = "mace_2h_pvp320_c_01.m2", + fileId = "141605", + text = "helm_robe_dungeonpriest_b_01_trf.m2", + value = "helm_robe_dungeonpriest_b_01_trf.m2", }, { - fileId = "326819", - text = "mace_2h_pvp330_d_01.m2", - value = "mace_2h_pvp330_d_01.m2", + fileId = "141606", + text = "helm_robe_dungeonpriest_b_01_trm.m2", + value = "helm_robe_dungeonpriest_b_01_trm.m2", }, { - fileId = "146881", - text = "mace_2h_spiked_a_01.m2", - value = "mace_2h_spiked_a_01.m2", + fileId = "454506", + text = "helm_robe_dungeonpriest_b_01_wof.m2", + value = "helm_robe_dungeonpriest_b_01_wof.m2", }, { - fileId = "146883", - text = "mace_2h_spiked_a_02.m2", - value = "mace_2h_spiked_a_02.m2", + fileId = "454507", + text = "helm_robe_dungeonpriest_b_01_wom.m2", + value = "helm_robe_dungeonpriest_b_01_wom.m2", }, { - fileId = "146887", - text = "mace_2h_spiked_a_03.m2", - value = "mace_2h_spiked_a_03.m2", + fileId = "238255", + text = "helm_robe_dungeonrobe_c_01_bef.m2", + value = "helm_robe_dungeonrobe_c_01_bef.m2", }, { - fileId = "146891", - text = "mace_2h_spiked_b_01.m2", - value = "mace_2h_spiked_b_01.m2", + fileId = "238256", + text = "helm_robe_dungeonrobe_c_01_bem.m2", + value = "helm_robe_dungeonrobe_c_01_bem.m2", }, { - fileId = "146893", - text = "mace_2h_spiked_b_02.m2", - value = "mace_2h_spiked_b_02.m2", + fileId = "238257", + text = "helm_robe_dungeonrobe_c_01_drf.m2", + value = "helm_robe_dungeonrobe_c_01_drf.m2", }, { - fileId = "146897", - text = "mace_2h_standard_a_01.m2", - value = "mace_2h_standard_a_01.m2", + fileId = "238258", + text = "helm_robe_dungeonrobe_c_01_drm.m2", + value = "helm_robe_dungeonrobe_c_01_drm.m2", }, { - fileId = "146899", - text = "mace_2h_standard_a_02.m2", - value = "mace_2h_standard_a_02.m2", + fileId = "238259", + text = "helm_robe_dungeonrobe_c_01_dwf.m2", + value = "helm_robe_dungeonrobe_c_01_dwf.m2", }, { - fileId = "146903", - text = "mace_2h_standard_a_03.m2", - value = "mace_2h_standard_a_03.m2", + fileId = "238260", + text = "helm_robe_dungeonrobe_c_01_dwm.m2", + value = "helm_robe_dungeonrobe_c_01_dwm.m2", }, { - fileId = "146907", - text = "mace_2h_stratholme_d_01.m2", - value = "mace_2h_stratholme_d_01.m2", + fileId = "238261", + text = "helm_robe_dungeonrobe_c_01_gnf.m2", + value = "helm_robe_dungeonrobe_c_01_gnf.m2", }, { - fileId = "146909", - text = "mace_2h_stratholme_d_02.m2", - value = "mace_2h_stratholme_d_02.m2", + fileId = "238262", + text = "helm_robe_dungeonrobe_c_01_gnm.m2", + value = "helm_robe_dungeonrobe_c_01_gnm.m2", }, { - fileId = "238789", - text = "mace_2h_ulduarraid_d_01.m2", - value = "mace_2h_ulduarraid_d_01.m2", + fileId = "238263", + text = "helm_robe_dungeonrobe_c_01_gof.m2", + value = "helm_robe_dungeonrobe_c_01_gof.m2", }, { - fileId = "146911", - text = "mace_2h_utgarde_d_01.m2", - value = "mace_2h_utgarde_d_01.m2", + fileId = "238264", + text = "helm_robe_dungeonrobe_c_01_gom.m2", + value = "helm_robe_dungeonrobe_c_01_gom.m2", }, { - fileId = "146916", - text = "mace_2h_zulgurub_d_01.m2", - value = "mace_2h_zulgurub_d_01.m2", + fileId = "238265", + text = "helm_robe_dungeonrobe_c_01_huf.m2", + value = "helm_robe_dungeonrobe_c_01_huf.m2", }, { - fileId = "146919", - text = "misc_1h_bag_a_01.m2", - value = "misc_1h_bag_a_01.m2", + fileId = "238266", + text = "helm_robe_dungeonrobe_c_01_hum.m2", + value = "helm_robe_dungeonrobe_c_01_hum.m2", }, { - fileId = "146926", - text = "misc_1h_bone_a_01.m2", - value = "misc_1h_bone_a_01.m2", + fileId = "238267", + text = "helm_robe_dungeonrobe_c_01_nif.m2", + value = "helm_robe_dungeonrobe_c_01_nif.m2", }, { - fileId = "146930", - text = "misc_1h_book_a_01.m2", - value = "misc_1h_book_a_01.m2", + fileId = "238268", + text = "helm_robe_dungeonrobe_c_01_nim.m2", + value = "helm_robe_dungeonrobe_c_01_nim.m2", }, { - fileId = "146934", - text = "misc_1h_book_b_01.m2", - value = "misc_1h_book_b_01.m2", + fileId = "238269", + text = "helm_robe_dungeonrobe_c_01_orf.m2", + value = "helm_robe_dungeonrobe_c_01_orf.m2", }, { - fileId = "146940", - text = "misc_1h_book_b_02.m2", - value = "misc_1h_book_b_02.m2", + fileId = "238270", + text = "helm_robe_dungeonrobe_c_01_orm.m2", + value = "helm_robe_dungeonrobe_c_01_orm.m2", }, { - fileId = "146943", - text = "misc_1h_book_c_01.m2", - value = "misc_1h_book_c_01.m2", + fileId = "238271", + text = "helm_robe_dungeonrobe_c_01_scf.m2", + value = "helm_robe_dungeonrobe_c_01_scf.m2", }, { - fileId = "146947", - text = "misc_1h_book_c_02.m2", - value = "misc_1h_book_c_02.m2", + fileId = "238272", + text = "helm_robe_dungeonrobe_c_01_scm.m2", + value = "helm_robe_dungeonrobe_c_01_scm.m2", }, { - fileId = "146950", - text = "misc_1h_bottle_a_01.m2", - value = "misc_1h_bottle_a_01.m2", + fileId = "238273", + text = "helm_robe_dungeonrobe_c_01_taf.m2", + value = "helm_robe_dungeonrobe_c_01_taf.m2", }, { - fileId = "146955", - text = "misc_1h_bottle_a_02.m2", - value = "misc_1h_bottle_a_02.m2", + fileId = "238274", + text = "helm_robe_dungeonrobe_c_01_tam.m2", + value = "helm_robe_dungeonrobe_c_01_tam.m2", }, { - fileId = "146956", - text = "misc_1h_bread_a_01.m2", - value = "misc_1h_bread_a_01.m2", + fileId = "238275", + text = "helm_robe_dungeonrobe_c_01_trf.m2", + value = "helm_robe_dungeonrobe_c_01_trf.m2", }, { - fileId = "146960", - text = "misc_1h_bread_a_02.m2", - value = "misc_1h_bread_a_02.m2", + fileId = "238276", + text = "helm_robe_dungeonrobe_c_01_trm.m2", + value = "helm_robe_dungeonrobe_c_01_trm.m2", }, { - fileId = "146961", - text = "misc_1h_bucket_a_01.m2", - value = "misc_1h_bucket_a_01.m2", + fileId = "454789", + text = "helm_robe_dungeonrobe_c_01_wof.m2", + value = "helm_robe_dungeonrobe_c_01_wof.m2", }, { - fileId = "146965", - text = "misc_1h_fish_a_01.m2", - value = "misc_1h_fish_a_01.m2", + fileId = "454790", + text = "helm_robe_dungeonrobe_c_01_wom.m2", + value = "helm_robe_dungeonrobe_c_01_wom.m2", }, { - fileId = "146970", - text = "misc_1h_flower_a_01.m2", - value = "misc_1h_flower_a_01.m2", + fileId = "341465", + text = "helm_robe_dungeonrobe_c_02_bef.m2", + value = "helm_robe_dungeonrobe_c_02_bef.m2", }, { - fileId = "146974", - text = "misc_1h_flower_a_02.m2", - value = "misc_1h_flower_a_02.m2", + fileId = "341466", + text = "helm_robe_dungeonrobe_c_02_bem.m2", + value = "helm_robe_dungeonrobe_c_02_bem.m2", }, { - fileId = "146978", - text = "misc_1h_flower_a_03.m2", - value = "misc_1h_flower_a_03.m2", + fileId = "341467", + text = "helm_robe_dungeonrobe_c_02_drf.m2", + value = "helm_robe_dungeonrobe_c_02_drf.m2", }, { - fileId = "146982", - text = "misc_1h_flower_a_04.m2", - value = "misc_1h_flower_a_04.m2", + fileId = "341468", + text = "helm_robe_dungeonrobe_c_02_drm.m2", + value = "helm_robe_dungeonrobe_c_02_drm.m2", }, { - fileId = "146986", - text = "misc_1h_flower_b_01.m2", - value = "misc_1h_flower_b_01.m2", + fileId = "341469", + text = "helm_robe_dungeonrobe_c_02_dwf.m2", + value = "helm_robe_dungeonrobe_c_02_dwf.m2", }, { - fileId = "146990", - text = "misc_1h_flower_b_02.m2", - value = "misc_1h_flower_b_02.m2", + fileId = "341470", + text = "helm_robe_dungeonrobe_c_02_dwm.m2", + value = "helm_robe_dungeonrobe_c_02_dwm.m2", }, { - fileId = "252196", - text = "misc_1h_flower_c_01.m2", - value = "misc_1h_flower_c_01.m2", + fileId = "341471", + text = "helm_robe_dungeonrobe_c_02_gnf.m2", + value = "helm_robe_dungeonrobe_c_02_gnf.m2", }, { - fileId = "252197", - text = "misc_1h_flower_c_02.m2", - value = "misc_1h_flower_c_02.m2", + fileId = "341472", + text = "helm_robe_dungeonrobe_c_02_gnm.m2", + value = "helm_robe_dungeonrobe_c_02_gnm.m2", }, { - fileId = "252198", - text = "misc_1h_flower_c_03.m2", - value = "misc_1h_flower_c_03.m2", + fileId = "341473", + text = "helm_robe_dungeonrobe_c_02_gof.m2", + value = "helm_robe_dungeonrobe_c_02_gof.m2", }, { - fileId = "252199", - text = "misc_1h_flower_c_04.m2", - value = "misc_1h_flower_c_04.m2", + fileId = "341474", + text = "helm_robe_dungeonrobe_c_02_gom.m2", + value = "helm_robe_dungeonrobe_c_02_gom.m2", }, { - fileId = "310106", - text = "misc_1h_flower_c_05.m2", - value = "misc_1h_flower_c_05.m2", + fileId = "341475", + text = "helm_robe_dungeonrobe_c_02_huf.m2", + value = "helm_robe_dungeonrobe_c_02_huf.m2", }, { - fileId = "146991", - text = "misc_1h_gizmo_a_01.m2", - value = "misc_1h_gizmo_a_01.m2", + fileId = "341476", + text = "helm_robe_dungeonrobe_c_02_hum.m2", + value = "helm_robe_dungeonrobe_c_02_hum.m2", }, { - fileId = "146995", - text = "misc_1h_glass_a_01.m2", - value = "misc_1h_glass_a_01.m2", + fileId = "341477", + text = "helm_robe_dungeonrobe_c_02_nif.m2", + value = "helm_robe_dungeonrobe_c_02_nif.m2", }, { - fileId = "146998", - text = "misc_1h_glass_a_02.m2", - value = "misc_1h_glass_a_02.m2", + fileId = "341478", + text = "helm_robe_dungeonrobe_c_02_nim.m2", + value = "helm_robe_dungeonrobe_c_02_nim.m2", }, { - fileId = "147000", - text = "misc_1h_holysymbol_a_01.m2", - value = "misc_1h_holysymbol_a_01.m2", + fileId = "341479", + text = "helm_robe_dungeonrobe_c_02_orf.m2", + value = "helm_robe_dungeonrobe_c_02_orf.m2", }, { - fileId = "147001", - text = "misc_1h_lantern_a_01.m2", - value = "misc_1h_lantern_a_01.m2", + fileId = "341480", + text = "helm_robe_dungeonrobe_c_02_orm.m2", + value = "helm_robe_dungeonrobe_c_02_orm.m2", }, { - fileId = "147003", - text = "misc_1h_lantern_b_01.m2", - value = "misc_1h_lantern_b_01.m2", + fileId = "341240", + text = "helm_robe_dungeonrobe_c_02_scf.m2", + value = "helm_robe_dungeonrobe_c_02_scf.m2", }, { - fileId = "147005", - text = "misc_1h_mutton_a_01.m2", - value = "misc_1h_mutton_a_01.m2", + fileId = "341241", + text = "helm_robe_dungeonrobe_c_02_scm.m2", + value = "helm_robe_dungeonrobe_c_02_scm.m2", }, { - fileId = "147008", - text = "misc_1h_mutton_a_02.m2", - value = "misc_1h_mutton_a_02.m2", + fileId = "341242", + text = "helm_robe_dungeonrobe_c_02_taf.m2", + value = "helm_robe_dungeonrobe_c_02_taf.m2", }, { - fileId = "147009", - text = "misc_1h_mutton_b_01.m2", - value = "misc_1h_mutton_b_01.m2", + fileId = "341243", + text = "helm_robe_dungeonrobe_c_02_tam.m2", + value = "helm_robe_dungeonrobe_c_02_tam.m2", }, { - fileId = "147011", - text = "misc_1h_mutton_b_02.m2", - value = "misc_1h_mutton_b_02.m2", + fileId = "341244", + text = "helm_robe_dungeonrobe_c_02_trf.m2", + value = "helm_robe_dungeonrobe_c_02_trf.m2", }, { - fileId = "147013", - text = "misc_1h_orb_a_01.m2", - value = "misc_1h_orb_a_01.m2", + fileId = "341245", + text = "helm_robe_dungeonrobe_c_02_trm.m2", + value = "helm_robe_dungeonrobe_c_02_trm.m2", }, { - fileId = "147020", - text = "misc_1h_orb_a_02.m2", - value = "misc_1h_orb_a_02.m2", + fileId = "454791", + text = "helm_robe_dungeonrobe_c_02_wof.m2", + value = "helm_robe_dungeonrobe_c_02_wof.m2", }, { - fileId = "147027", - text = "misc_1h_orb_c_01.m2", - value = "misc_1h_orb_c_01.m2", + fileId = "454792", + text = "helm_robe_dungeonrobe_c_02_wom.m2", + value = "helm_robe_dungeonrobe_c_02_wom.m2", }, { - fileId = "147029", - text = "misc_1h_potion_a_01.m2", - value = "misc_1h_potion_a_01.m2", + fileId = "422635", + text = "helm_robe_dungeonrobe_c_03_bef.m2", + value = "helm_robe_dungeonrobe_c_03_bef.m2", }, { - fileId = "147035", - text = "misc_1h_potion_b_01.m2", - value = "misc_1h_potion_b_01.m2", + fileId = "422636", + text = "helm_robe_dungeonrobe_c_03_bem.m2", + value = "helm_robe_dungeonrobe_c_03_bem.m2", }, { - fileId = "147039", - text = "misc_1h_rollingpin_a_01.m2", - value = "misc_1h_rollingpin_a_01.m2", + fileId = "422637", + text = "helm_robe_dungeonrobe_c_03_drf.m2", + value = "helm_robe_dungeonrobe_c_03_drf.m2", }, { - fileId = "147042", - text = "misc_1h_seal_a_01.m2", - value = "misc_1h_seal_a_01.m2", + fileId = "422638", + text = "helm_robe_dungeonrobe_c_03_drm.m2", + value = "helm_robe_dungeonrobe_c_03_drm.m2", }, { - fileId = "147043", - text = "misc_1h_seal_b_01.m2", - value = "misc_1h_seal_b_01.m2", + fileId = "422639", + text = "helm_robe_dungeonrobe_c_03_dwf.m2", + value = "helm_robe_dungeonrobe_c_03_dwf.m2", }, { - fileId = "147046", - text = "misc_1h_seal_c_01.m2", - value = "misc_1h_seal_c_01.m2", + fileId = "422640", + text = "helm_robe_dungeonrobe_c_03_dwm.m2", + value = "helm_robe_dungeonrobe_c_03_dwm.m2", }, { - fileId = "147051", - text = "misc_1h_skull_b_01.m2", - value = "misc_1h_skull_b_01.m2", + fileId = "422641", + text = "helm_robe_dungeonrobe_c_03_gnf.m2", + value = "helm_robe_dungeonrobe_c_03_gnf.m2", }, { - fileId = "147057", - text = "misc_1h_sparkler_a_01blue.m2", - value = "misc_1h_sparkler_a_01blue.m2", + fileId = "422642", + text = "helm_robe_dungeonrobe_c_03_gnm.m2", + value = "helm_robe_dungeonrobe_c_03_gnm.m2", }, { - fileId = "147058", - text = "misc_1h_sparkler_a_01red.m2", - value = "misc_1h_sparkler_a_01red.m2", + fileId = "422643", + text = "helm_robe_dungeonrobe_c_03_gof.m2", + value = "helm_robe_dungeonrobe_c_03_gof.m2", }, { - fileId = "147059", - text = "misc_1h_sparkler_a_01white.m2", - value = "misc_1h_sparkler_a_01white.m2", + fileId = "422644", + text = "helm_robe_dungeonrobe_c_03_gom.m2", + value = "helm_robe_dungeonrobe_c_03_gom.m2", }, { - fileId = "147060", - text = "misc_1h_tankard_a_01.m2", - value = "misc_1h_tankard_a_01.m2", + fileId = "422645", + text = "helm_robe_dungeonrobe_c_03_huf.m2", + value = "helm_robe_dungeonrobe_c_03_huf.m2", }, { - fileId = "311947", - text = "misc_1h_tankard_b_01.m2", - value = "misc_1h_tankard_b_01.m2", + fileId = "422646", + text = "helm_robe_dungeonrobe_c_03_hum.m2", + value = "helm_robe_dungeonrobe_c_03_hum.m2", }, { - fileId = "147066", - text = "misc_1h_waterwand_a_01.m2", - value = "misc_1h_waterwand_a_01.m2", + fileId = "422647", + text = "helm_robe_dungeonrobe_c_03_nif.m2", + value = "helm_robe_dungeonrobe_c_03_nif.m2", }, { - fileId = "147068", - text = "misc_1h_wrench_a_01.m2", - value = "misc_1h_wrench_a_01.m2", + fileId = "422648", + text = "helm_robe_dungeonrobe_c_03_nim.m2", + value = "helm_robe_dungeonrobe_c_03_nim.m2", }, { - fileId = "147069", - text = "misc_1h_zulgurub_d_01.m2", - value = "misc_1h_zulgurub_d_01.m2", + fileId = "422649", + text = "helm_robe_dungeonrobe_c_03_orf.m2", + value = "helm_robe_dungeonrobe_c_03_orf.m2", }, { - fileId = "147073", - text = "misc_1h_zulgurub_d_02.m2", - value = "misc_1h_zulgurub_d_02.m2", + fileId = "422650", + text = "helm_robe_dungeonrobe_c_03_orm.m2", + value = "helm_robe_dungeonrobe_c_03_orm.m2", }, { - fileId = "147074", - text = "misc_2h_brewfest_a_01.m2", - value = "misc_2h_brewfest_a_01.m2", + fileId = "422651", + text = "helm_robe_dungeonrobe_c_03_scf.m2", + value = "helm_robe_dungeonrobe_c_03_scf.m2", }, { - fileId = "147080", - text = "misc_2h_broom_a_01.m2", - value = "misc_2h_broom_a_01.m2", + fileId = "422652", + text = "helm_robe_dungeonrobe_c_03_scm.m2", + value = "helm_robe_dungeonrobe_c_03_scm.m2", }, { - fileId = "147082", - text = "misc_2h_broom_a_02.m2", - value = "misc_2h_broom_a_02.m2", + fileId = "422653", + text = "helm_robe_dungeonrobe_c_03_taf.m2", + value = "helm_robe_dungeonrobe_c_03_taf.m2", }, { - fileId = "147084", - text = "misc_2h_fishingpole_a_01.m2", - value = "misc_2h_fishingpole_a_01.m2", + fileId = "422654", + text = "helm_robe_dungeonrobe_c_03_tam.m2", + value = "helm_robe_dungeonrobe_c_03_tam.m2", }, { - fileId = "147087", - text = "misc_2h_harpoon_b_01.m2", - value = "misc_2h_harpoon_b_01.m2", + fileId = "422655", + text = "helm_robe_dungeonrobe_c_03_trf.m2", + value = "helm_robe_dungeonrobe_c_03_trf.m2", }, { - fileId = "238795", - text = "misc_2h_jeweledfishingpole_a_01.m2", - value = "misc_2h_jeweledfishingpole_a_01.m2", + fileId = "422656", + text = "helm_robe_dungeonrobe_c_03_trm.m2", + value = "helm_robe_dungeonrobe_c_03_trm.m2", }, { - fileId = "147089", - text = "misc_2h_pitchfork_a_01.m2", - value = "misc_2h_pitchfork_a_01.m2", + fileId = "454793", + text = "helm_robe_dungeonrobe_c_03_wof.m2", + value = "helm_robe_dungeonrobe_c_03_wof.m2", }, { - fileId = "147091", - text = "misc_2h_shovel_a_01.m2", - value = "misc_2h_shovel_a_01.m2", + fileId = "422657", + text = "helm_robe_dungeonrobe_c_03_wom.m2", + value = "helm_robe_dungeonrobe_c_03_wom.m2", }, { - fileId = "238798", - text = "misc_2h_skullfishingpole_a_01.m2", - value = "misc_2h_skullfishingpole_a_01.m2", + fileId = "412521", + text = "helm_robe_dungeonrobe_c_04_bef.m2", + value = "helm_robe_dungeonrobe_c_04_bef.m2", }, { - fileId = "147094", - text = "misc_2h_tuskarfishingpole_a_01.m2", - value = "misc_2h_tuskarfishingpole_a_01.m2", + fileId = "412522", + text = "helm_robe_dungeonrobe_c_04_bem.m2", + value = "helm_robe_dungeonrobe_c_04_bem.m2", }, { - fileId = "251568", - text = "misc_2h_twigfishingpole_a_01.m2", - value = "misc_2h_twigfishingpole_a_01.m2", + fileId = "412523", + text = "helm_robe_dungeonrobe_c_04_drf.m2", + value = "helm_robe_dungeonrobe_c_04_drf.m2", }, { - fileId = "305326", - text = "offhand_1h_pvp320_c_01.m2", - value = "offhand_1h_pvp320_c_01.m2", + fileId = "412524", + text = "helm_robe_dungeonrobe_c_04_drm.m2", + value = "helm_robe_dungeonrobe_c_04_drm.m2", }, { - fileId = "327385", - text = "offhand_1h_pvp330_d_01.m2", - value = "offhand_1h_pvp330_d_01.m2", + fileId = "412525", + text = "helm_robe_dungeonrobe_c_04_dwf.m2", + value = "helm_robe_dungeonrobe_c_04_dwf.m2", }, { - fileId = "329514", - text = "offhand_1h_pvp330_d_02.m2", - value = "offhand_1h_pvp330_d_02.m2", + fileId = "412526", + text = "helm_robe_dungeonrobe_c_04_dwm.m2", + value = "helm_robe_dungeonrobe_c_04_dwm.m2", }, { - fileId = "238799", - text = "offhand_1h_ulduarraid_d_01.m2", - value = "offhand_1h_ulduarraid_d_01.m2", + fileId = "412527", + text = "helm_robe_dungeonrobe_c_04_gnf.m2", + value = "helm_robe_dungeonrobe_c_04_gnf.m2", }, { - fileId = "238801", - text = "offhand_1h_ulduarraid_d_02.m2", - value = "offhand_1h_ulduarraid_d_02.m2", + fileId = "412528", + text = "helm_robe_dungeonrobe_c_04_gnm.m2", + value = "helm_robe_dungeonrobe_c_04_gnm.m2", }, { - fileId = "238806", - text = "offhand_1h_ulduarraid_d_03.m2", - value = "offhand_1h_ulduarraid_d_03.m2", + fileId = "412529", + text = "helm_robe_dungeonrobe_c_04_gof.m2", + value = "helm_robe_dungeonrobe_c_04_gof.m2", }, { - fileId = "147104", - text = "offhand_blackwing_a_01.m2", - value = "offhand_blackwing_a_01.m2", + fileId = "412530", + text = "helm_robe_dungeonrobe_c_04_gom.m2", + value = "helm_robe_dungeonrobe_c_04_gom.m2", }, { - fileId = "147105", - text = "offhand_blood_a_01.m2", - value = "offhand_blood_a_01.m2", + fileId = "412531", + text = "helm_robe_dungeonrobe_c_04_huf.m2", + value = "helm_robe_dungeonrobe_c_04_huf.m2", }, { - fileId = "147110", - text = "offhand_blood_a_02.m2", - value = "offhand_blood_a_02.m2", + fileId = "412532", + text = "helm_robe_dungeonrobe_c_04_hum.m2", + value = "helm_robe_dungeonrobe_c_04_hum.m2", }, { - fileId = "238811", - text = "offhand_dalaran_d_01.m2", - value = "offhand_dalaran_d_01.m2", + fileId = "412533", + text = "helm_robe_dungeonrobe_c_04_nif.m2", + value = "helm_robe_dungeonrobe_c_04_nif.m2", }, { - fileId = "147116", - text = "offhand_draenei_a_01.m2", - value = "offhand_draenei_a_01.m2", + fileId = "412534", + text = "helm_robe_dungeonrobe_c_04_nim.m2", + value = "helm_robe_dungeonrobe_c_04_nim.m2", }, { - fileId = "147122", - text = "offhand_draenei_a_02.m2", - value = "offhand_draenei_a_02.m2", + fileId = "412535", + text = "helm_robe_dungeonrobe_c_04_orf.m2", + value = "helm_robe_dungeonrobe_c_04_orf.m2", }, { - fileId = "238817", - text = "offhand_easter_a_01.m2", - value = "offhand_easter_a_01.m2", + fileId = "412536", + text = "helm_robe_dungeonrobe_c_04_orm.m2", + value = "helm_robe_dungeonrobe_c_04_orm.m2", }, { - fileId = "147128", - text = "offhand_hyjal_d_01.m2", - value = "offhand_hyjal_d_01.m2", + fileId = "412537", + text = "helm_robe_dungeonrobe_c_04_scf.m2", + value = "helm_robe_dungeonrobe_c_04_scf.m2", }, { - fileId = "147133", - text = "offhand_naxxramas_d_01.m2", - value = "offhand_naxxramas_d_01.m2", + fileId = "412538", + text = "helm_robe_dungeonrobe_c_04_scm.m2", + value = "helm_robe_dungeonrobe_c_04_scm.m2", }, { - fileId = "147135", - text = "offhand_naxxramas_d_02.m2", - value = "offhand_naxxramas_d_02.m2", + fileId = "412539", + text = "helm_robe_dungeonrobe_c_04_taf.m2", + value = "helm_robe_dungeonrobe_c_04_taf.m2", }, { - fileId = "147137", - text = "offhand_naxxramas_d_03.m2", - value = "offhand_naxxramas_d_03.m2", + fileId = "412540", + text = "helm_robe_dungeonrobe_c_04_tam.m2", + value = "helm_robe_dungeonrobe_c_04_tam.m2", }, { - fileId = "147139", - text = "offhand_naxxramas_d_04.m2", - value = "offhand_naxxramas_d_04.m2", + fileId = "412541", + text = "helm_robe_dungeonrobe_c_04_trf.m2", + value = "helm_robe_dungeonrobe_c_04_trf.m2", }, { - fileId = "147141", - text = "offhand_outlandraid_d_01.m2", - value = "offhand_outlandraid_d_01.m2", + fileId = "412542", + text = "helm_robe_dungeonrobe_c_04_trm.m2", + value = "helm_robe_dungeonrobe_c_04_trm.m2", }, { - fileId = "147143", - text = "offhand_outlandraid_d_02.m2", - value = "offhand_outlandraid_d_02.m2", + fileId = "468674", + text = "helm_robe_dungeonrobe_c_04_wof.m2", + value = "helm_robe_dungeonrobe_c_04_wof.m2", }, { - fileId = "147145", - text = "offhand_outlandraid_d_03blue.m2", - value = "offhand_outlandraid_d_03blue.m2", + fileId = "412543", + text = "helm_robe_dungeonrobe_c_04_wom.m2", + value = "helm_robe_dungeonrobe_c_04_wom.m2", }, { - fileId = "147147", - text = "offhand_outlandraid_d_03orange.m2", - value = "offhand_outlandraid_d_03orange.m2", + fileId = "531979", + text = "helm_robe_dungeonrobe_c_05_bef.m2", + value = "helm_robe_dungeonrobe_c_05_bef.m2", }, { - fileId = "147149", - text = "offhand_outlandraid_d_03white.m2", - value = "offhand_outlandraid_d_03white.m2", + fileId = "531981", + text = "helm_robe_dungeonrobe_c_05_bem.m2", + value = "helm_robe_dungeonrobe_c_05_bem.m2", }, { - fileId = "305167", - text = "offhand_pvealliance_d_01.m2", - value = "offhand_pvealliance_d_01.m2", + fileId = "531983", + text = "helm_robe_dungeonrobe_c_05_drf.m2", + value = "helm_robe_dungeonrobe_c_05_drf.m2", }, { - fileId = "305727", - text = "offhand_pvehorde_d_01.m2", - value = "offhand_pvehorde_d_01.m2", + fileId = "531985", + text = "helm_robe_dungeonrobe_c_05_drm.m2", + value = "helm_robe_dungeonrobe_c_05_drm.m2", }, { - fileId = "147150", - text = "offhand_rose_a_01.m2", - value = "offhand_rose_a_01.m2", + fileId = "531987", + text = "helm_robe_dungeonrobe_c_05_dwf.m2", + value = "helm_robe_dungeonrobe_c_05_dwf.m2", }, { - fileId = "147151", - text = "offhand_rosebouquet_a_01.m2", - value = "offhand_rosebouquet_a_01.m2", + fileId = "531989", + text = "helm_robe_dungeonrobe_c_05_dwm.m2", + value = "helm_robe_dungeonrobe_c_05_dwm.m2", }, { - fileId = "147153", - text = "offhand_stratholme_a_01.m2", - value = "offhand_stratholme_a_01.m2", + fileId = "531991", + text = "helm_robe_dungeonrobe_c_05_gnf.m2", + value = "helm_robe_dungeonrobe_c_05_gnf.m2", }, { - fileId = "147155", - text = "offhand_stratholme_a_02.m2", - value = "offhand_stratholme_a_02.m2", + fileId = "531993", + text = "helm_robe_dungeonrobe_c_05_gnm.m2", + value = "helm_robe_dungeonrobe_c_05_gnm.m2", }, { - fileId = "147157", - text = "offhand_sunwell_d_01.m2", - value = "offhand_sunwell_d_01.m2", + fileId = "531995", + text = "helm_robe_dungeonrobe_c_05_gof.m2", + value = "helm_robe_dungeonrobe_c_05_gof.m2", }, { - fileId = "147162", - text = "offhand_sunwell_d_02.m2", - value = "offhand_sunwell_d_02.m2", + fileId = "531997", + text = "helm_robe_dungeonrobe_c_05_gom.m2", + value = "helm_robe_dungeonrobe_c_05_gom.m2", }, { - fileId = "147167", - text = "offhand_utgarde_d_01.m2", - value = "offhand_utgarde_d_01.m2", + fileId = "531999", + text = "helm_robe_dungeonrobe_c_05_huf.m2", + value = "helm_robe_dungeonrobe_c_05_huf.m2", }, { - fileId = "147173", - text = "offhand_zulaman_d_01.m2", - value = "offhand_zulaman_d_01.m2", + fileId = "532001", + text = "helm_robe_dungeonrobe_c_05_hum.m2", + value = "helm_robe_dungeonrobe_c_05_hum.m2", }, { - fileId = "147178", - text = "offhand_zulaman_d_02.m2", - value = "offhand_zulaman_d_02.m2", + fileId = "532003", + text = "helm_robe_dungeonrobe_c_05_nif.m2", + value = "helm_robe_dungeonrobe_c_05_nif.m2", }, { - fileId = "147186", - text = "polearm_2h_ahnqiraj_d_01.m2", - value = "polearm_2h_ahnqiraj_d_01.m2", + fileId = "532005", + text = "helm_robe_dungeonrobe_c_05_nim.m2", + value = "helm_robe_dungeonrobe_c_05_nim.m2", }, { - fileId = "147191", - text = "polearm_2h_aspects_d_01.m2", - value = "polearm_2h_aspects_d_01.m2", + fileId = "532007", + text = "helm_robe_dungeonrobe_c_05_orf.m2", + value = "helm_robe_dungeonrobe_c_05_orf.m2", }, { - fileId = "147202", - text = "polearm_2h_blacktemple_d_01.m2", - value = "polearm_2h_blacktemple_d_01.m2", + fileId = "532009", + text = "helm_robe_dungeonrobe_c_05_orm.m2", + value = "helm_robe_dungeonrobe_c_05_orm.m2", }, { - fileId = "147208", - text = "polearm_2h_bladed_a_01.m2", - value = "polearm_2h_bladed_a_01.m2", + fileId = "532011", + text = "helm_robe_dungeonrobe_c_05_scf.m2", + value = "helm_robe_dungeonrobe_c_05_scf.m2", }, { - fileId = "147211", - text = "polearm_2h_bladed_a_02.m2", - value = "polearm_2h_bladed_a_02.m2", + fileId = "532013", + text = "helm_robe_dungeonrobe_c_05_scm.m2", + value = "helm_robe_dungeonrobe_c_05_scm.m2", }, { - fileId = "147216", - text = "polearm_2h_bladed_b_01.m2", - value = "polearm_2h_bladed_b_01.m2", + fileId = "532015", + text = "helm_robe_dungeonrobe_c_05_taf.m2", + value = "helm_robe_dungeonrobe_c_05_taf.m2", }, { - fileId = "147219", - text = "polearm_2h_bladed_b_02.m2", - value = "polearm_2h_bladed_b_02.m2", + fileId = "532017", + text = "helm_robe_dungeonrobe_c_05_tam.m2", + value = "helm_robe_dungeonrobe_c_05_tam.m2", }, { - fileId = "147224", - text = "polearm_2h_bladed_c_01.m2", - value = "polearm_2h_bladed_c_01.m2", + fileId = "532019", + text = "helm_robe_dungeonrobe_c_05_trf.m2", + value = "helm_robe_dungeonrobe_c_05_trf.m2", }, { - fileId = "147227", - text = "polearm_2h_bladed_d_01.m2", - value = "polearm_2h_bladed_d_01.m2", + fileId = "532021", + text = "helm_robe_dungeonrobe_c_05_trm.m2", + value = "helm_robe_dungeonrobe_c_05_trm.m2", }, { - fileId = "147228", - text = "polearm_2h_bladed_d_03.m2", - value = "polearm_2h_bladed_d_03.m2", + fileId = "532023", + text = "helm_robe_dungeonrobe_c_05_wof.m2", + value = "helm_robe_dungeonrobe_c_05_wof.m2", }, { - fileId = "147230", - text = "polearm_2h_blood_elf_d_01.m2", - value = "polearm_2h_blood_elf_d_01.m2", + fileId = "532025", + text = "helm_robe_dungeonrobe_c_05_wom.m2", + value = "helm_robe_dungeonrobe_c_05_wom.m2", }, { - fileId = "238818", - text = "polearm_2h_dalaran_d_01.m2", - value = "polearm_2h_dalaran_d_01.m2", + fileId = "141611", + text = "helm_robe_dungeonwarlock_a_01_bef.m2", + value = "helm_robe_dungeonwarlock_a_01_bef.m2", }, { - fileId = "147233", - text = "polearm_2h_draktharon_d_01.m2", - value = "polearm_2h_draktharon_d_01.m2", + fileId = "141612", + text = "helm_robe_dungeonwarlock_a_01_bem.m2", + value = "helm_robe_dungeonwarlock_a_01_bem.m2", }, { - fileId = "147239", - text = "polearm_2h_epic_d_01.m2", - value = "polearm_2h_epic_d_01.m2", + fileId = "141613", + text = "helm_robe_dungeonwarlock_a_01_drf.m2", + value = "helm_robe_dungeonwarlock_a_01_drf.m2", }, { - fileId = "147241", - text = "polearm_2h_epic_d_02.m2", - value = "polearm_2h_epic_d_02.m2", + fileId = "141614", + text = "helm_robe_dungeonwarlock_a_01_drm.m2", + value = "helm_robe_dungeonwarlock_a_01_drm.m2", }, { - fileId = "147243", - text = "polearm_2h_epic_d_03.m2", - value = "polearm_2h_epic_d_03.m2", + fileId = "141615", + text = "helm_robe_dungeonwarlock_a_01_dwf.m2", + value = "helm_robe_dungeonwarlock_a_01_dwf.m2", }, { - fileId = "147245", - text = "polearm_2h_epic_d_04.m2", - value = "polearm_2h_epic_d_04.m2", + fileId = "141616", + text = "helm_robe_dungeonwarlock_a_01_dwm.m2", + value = "helm_robe_dungeonwarlock_a_01_dwm.m2", }, { - fileId = "147247", - text = "polearm_2h_epic_d_05.m2", - value = "polearm_2h_epic_d_05.m2", + fileId = "141617", + text = "helm_robe_dungeonwarlock_a_01_gnf.m2", + value = "helm_robe_dungeonwarlock_a_01_gnf.m2", }, { - fileId = "147249", - text = "polearm_2h_epic_d_06.m2", - value = "polearm_2h_epic_d_06.m2", + fileId = "141618", + text = "helm_robe_dungeonwarlock_a_01_gnm.m2", + value = "helm_robe_dungeonwarlock_a_01_gnm.m2", }, { - fileId = "349167", - text = "polearm_2h_epic_d_07.m2", - value = "polearm_2h_epic_d_07.m2", + fileId = "141619", + text = "helm_robe_dungeonwarlock_a_01_gof.m2", + value = "helm_robe_dungeonwarlock_a_01_gof.m2", }, { - fileId = "238823", - text = "polearm_2h_frostgiant.m2", - value = "polearm_2h_frostgiant.m2", + fileId = "141620", + text = "helm_robe_dungeonwarlock_a_01_gom.m2", + value = "helm_robe_dungeonwarlock_a_01_gom.m2", }, { - fileId = "147251", - text = "polearm_2h_hellfire_d_01.m2", - value = "polearm_2h_hellfire_d_01.m2", + fileId = "141621", + text = "helm_robe_dungeonwarlock_a_01_huf.m2", + value = "helm_robe_dungeonwarlock_a_01_huf.m2", }, { - fileId = "147257", - text = "polearm_2h_hellfire_d_01green.m2", - value = "polearm_2h_hellfire_d_01green.m2", + fileId = "141622", + text = "helm_robe_dungeonwarlock_a_01_hum.m2", + value = "helm_robe_dungeonwarlock_a_01_hum.m2", }, { - fileId = "313723", - text = "polearm_2h_icecrownraid_d_01.m2", - value = "polearm_2h_icecrownraid_d_01.m2", + fileId = "141623", + text = "helm_robe_dungeonwarlock_a_01_nif.m2", + value = "helm_robe_dungeonwarlock_a_01_nif.m2", }, { - fileId = "294450", - text = "polearm_2h_lance_a_01.m2", - value = "polearm_2h_lance_a_01.m2", + fileId = "141624", + text = "helm_robe_dungeonwarlock_a_01_nim.m2", + value = "helm_robe_dungeonwarlock_a_01_nim.m2", }, { - fileId = "147260", - text = "polearm_2h_nexus_d_01.m2", - value = "polearm_2h_nexus_d_01.m2", + fileId = "141625", + text = "helm_robe_dungeonwarlock_a_01_orf.m2", + value = "helm_robe_dungeonwarlock_a_01_orf.m2", }, { - fileId = "147266", - text = "polearm_2h_northrend_b_01.m2", - value = "polearm_2h_northrend_b_01.m2", + fileId = "141626", + text = "helm_robe_dungeonwarlock_a_01_orm.m2", + value = "helm_robe_dungeonwarlock_a_01_orm.m2", }, { - fileId = "147271", - text = "polearm_2h_northrend_b_02.m2", - value = "polearm_2h_northrend_b_02.m2", + fileId = "141627", + text = "helm_robe_dungeonwarlock_a_01_scf.m2", + value = "helm_robe_dungeonwarlock_a_01_scf.m2", }, { - fileId = "147277", - text = "polearm_2h_northrend_b_03.m2", - value = "polearm_2h_northrend_b_03.m2", + fileId = "141628", + text = "helm_robe_dungeonwarlock_a_01_scm.m2", + value = "helm_robe_dungeonwarlock_a_01_scm.m2", }, { - fileId = "147283", - text = "polearm_2h_northrend_c_01.m2", - value = "polearm_2h_northrend_c_01.m2", + fileId = "141629", + text = "helm_robe_dungeonwarlock_a_01_taf.m2", + value = "helm_robe_dungeonwarlock_a_01_taf.m2", }, { - fileId = "147288", - text = "polearm_2h_northrend_c_02.m2", - value = "polearm_2h_northrend_c_02.m2", + fileId = "141630", + text = "helm_robe_dungeonwarlock_a_01_tam.m2", + value = "helm_robe_dungeonwarlock_a_01_tam.m2", }, { - fileId = "147294", - text = "polearm_2h_northrend_c_03.m2", - value = "polearm_2h_northrend_c_03.m2", + fileId = "141631", + text = "helm_robe_dungeonwarlock_a_01_trf.m2", + value = "helm_robe_dungeonwarlock_a_01_trf.m2", }, { - fileId = "147298", - text = "polearm_2h_northrend_c_04.m2", - value = "polearm_2h_northrend_c_04.m2", + fileId = "141632", + text = "helm_robe_dungeonwarlock_a_01_trm.m2", + value = "helm_robe_dungeonwarlock_a_01_trm.m2", }, { - fileId = "147304", - text = "polearm_2h_northrend_d_01.m2", - value = "polearm_2h_northrend_d_01.m2", + fileId = "454508", + text = "helm_robe_dungeonwarlock_a_01_wof.m2", + value = "helm_robe_dungeonwarlock_a_01_wof.m2", }, { - fileId = "147310", - text = "polearm_2h_northrend_d_02.m2", - value = "polearm_2h_northrend_d_02.m2", + fileId = "454509", + text = "helm_robe_dungeonwarlock_a_01_wom.m2", + value = "helm_robe_dungeonwarlock_a_01_wom.m2", }, { - fileId = "147316", - text = "polearm_2h_northrend_d_03.m2", - value = "polearm_2h_northrend_d_03.m2", + fileId = "141640", + text = "helm_robe_dungeonwarlock_b_01_bef.m2", + value = "helm_robe_dungeonwarlock_b_01_bef.m2", }, { - fileId = "305363", - text = "polearm_2h_pvealliance_d_01.m2", - value = "polearm_2h_pvealliance_d_01.m2", + fileId = "141641", + text = "helm_robe_dungeonwarlock_b_01_bem.m2", + value = "helm_robe_dungeonwarlock_b_01_bem.m2", }, { - fileId = "304386", - text = "polearm_2h_pvehorde_d_01.m2", - value = "polearm_2h_pvehorde_d_01.m2", + fileId = "141642", + text = "helm_robe_dungeonwarlock_b_01_drf.m2", + value = "helm_robe_dungeonwarlock_b_01_drf.m2", }, { - fileId = "306734", - text = "polearm_2h_pvp320_c_01.m2", - value = "polearm_2h_pvp320_c_01.m2", + fileId = "141643", + text = "helm_robe_dungeonwarlock_b_01_drm.m2", + value = "helm_robe_dungeonwarlock_b_01_drm.m2", }, { - fileId = "327743", - text = "polearm_2h_pvp330_d_01.m2", - value = "polearm_2h_pvp330_d_01.m2", + fileId = "141644", + text = "helm_robe_dungeonwarlock_b_01_dwf.m2", + value = "helm_robe_dungeonwarlock_b_01_dwf.m2", }, { - fileId = "238825", - text = "polearm_2h_pvp_c_01.m2", - value = "polearm_2h_pvp_c_01.m2", + fileId = "141645", + text = "helm_robe_dungeonwarlock_b_01_dwm.m2", + value = "helm_robe_dungeonwarlock_b_01_dwm.m2", }, { - fileId = "147317", - text = "polearm_2h_pvpalliance_a_01.m2", - value = "polearm_2h_pvpalliance_a_01.m2", + fileId = "141646", + text = "helm_robe_dungeonwarlock_b_01_gnf.m2", + value = "helm_robe_dungeonwarlock_b_01_gnf.m2", }, { - fileId = "147320", - text = "polearm_2h_pvphorde_a_01.m2", - value = "polearm_2h_pvphorde_a_01.m2", + fileId = "141647", + text = "helm_robe_dungeonwarlock_b_01_gnm.m2", + value = "helm_robe_dungeonwarlock_b_01_gnm.m2", }, { - fileId = "147323", - text = "polearm_2h_stratholme_d_01.m2", - value = "polearm_2h_stratholme_d_01.m2", + fileId = "141648", + text = "helm_robe_dungeonwarlock_b_01_gof.m2", + value = "helm_robe_dungeonwarlock_b_01_gof.m2", }, { - fileId = "147325", - text = "polearm_2h_sunwell_d_01.m2", - value = "polearm_2h_sunwell_d_01.m2", + fileId = "141649", + text = "helm_robe_dungeonwarlock_b_01_gom.m2", + value = "helm_robe_dungeonwarlock_b_01_gom.m2", }, { - fileId = "147330", - text = "polearm_2h_trident_a_01.m2", - value = "polearm_2h_trident_a_01.m2", + fileId = "141650", + text = "helm_robe_dungeonwarlock_b_01_huf.m2", + value = "helm_robe_dungeonwarlock_b_01_huf.m2", }, { - fileId = "147334", - text = "polearm_2h_trident_a_02.m2", - value = "polearm_2h_trident_a_02.m2", + fileId = "141651", + text = "helm_robe_dungeonwarlock_b_01_hum.m2", + value = "helm_robe_dungeonwarlock_b_01_hum.m2", }, { - fileId = "147339", - text = "polearm_2h_trident_b_01.m2", - value = "polearm_2h_trident_b_01.m2", + fileId = "141652", + text = "helm_robe_dungeonwarlock_b_01_nif.m2", + value = "helm_robe_dungeonwarlock_b_01_nif.m2", }, { - fileId = "147344", - text = "polearm_2h_trident_b_02.m2", - value = "polearm_2h_trident_b_02.m2", + fileId = "141653", + text = "helm_robe_dungeonwarlock_b_01_nim.m2", + value = "helm_robe_dungeonwarlock_b_01_nim.m2", }, { - fileId = "147345", - text = "polearm_2h_trident_c_01.m2", - value = "polearm_2h_trident_c_01.m2", + fileId = "141654", + text = "helm_robe_dungeonwarlock_b_01_orf.m2", + value = "helm_robe_dungeonwarlock_b_01_orf.m2", }, { - fileId = "328177", - text = "polearm_2h_trident_c_01alt.m2", - value = "polearm_2h_trident_c_01alt.m2", + fileId = "141655", + text = "helm_robe_dungeonwarlock_b_01_orm.m2", + value = "helm_robe_dungeonwarlock_b_01_orm.m2", }, { - fileId = "238830", - text = "polearm_2h_ulduarraid_d_01.m2", - value = "polearm_2h_ulduarraid_d_01.m2", + fileId = "141656", + text = "helm_robe_dungeonwarlock_b_01_scf.m2", + value = "helm_robe_dungeonwarlock_b_01_scf.m2", }, { - fileId = "147351", - text = "polearm_2h_utgarde_d_01.m2", - value = "polearm_2h_utgarde_d_01.m2", + fileId = "141657", + text = "helm_robe_dungeonwarlock_b_01_scm.m2", + value = "helm_robe_dungeonwarlock_b_01_scm.m2", }, { - fileId = "147357", - text = "polearm_2h_vrykul_d_01.m2", - value = "polearm_2h_vrykul_d_01.m2", + fileId = "141658", + text = "helm_robe_dungeonwarlock_b_01_taf.m2", + value = "helm_robe_dungeonwarlock_b_01_taf.m2", }, { - fileId = "147363", - text = "polearm_2h_zulgurub_d_01.m2", - value = "polearm_2h_zulgurub_d_01.m2", + fileId = "141659", + text = "helm_robe_dungeonwarlock_b_01_tam.m2", + value = "helm_robe_dungeonwarlock_b_01_tam.m2", }, { - fileId = "147382", - text = "stave_2h_ahnqiraj_d_01.m2", - value = "stave_2h_ahnqiraj_d_01.m2", + fileId = "141660", + text = "helm_robe_dungeonwarlock_b_01_trf.m2", + value = "helm_robe_dungeonwarlock_b_01_trf.m2", }, { - fileId = "147384", - text = "stave_2h_ahnqiraj_d_02.m2", - value = "stave_2h_ahnqiraj_d_02.m2", + fileId = "141661", + text = "helm_robe_dungeonwarlock_b_01_trm.m2", + value = "helm_robe_dungeonwarlock_b_01_trm.m2", }, { - fileId = "147386", - text = "stave_2h_ahnqiraj_d_03.m2", - value = "stave_2h_ahnqiraj_d_03.m2", + fileId = "454285", + text = "helm_robe_dungeonwarlock_b_01_wof.m2", + value = "helm_robe_dungeonwarlock_b_01_wof.m2", }, { - fileId = "147387", - text = "stave_2h_ahnqiraj_d_04.m2", - value = "stave_2h_ahnqiraj_d_04.m2", + fileId = "454286", + text = "helm_robe_dungeonwarlock_b_01_wom.m2", + value = "helm_robe_dungeonwarlock_b_01_wom.m2", }, { - fileId = "304087", - text = "stave_2h_alliancecovenant_d_01.m2", - value = "stave_2h_alliancecovenant_d_01.m2", + fileId = "141667", + text = "helm_robe_holiday_summerfest_a_01_bef.m2", + value = "helm_robe_holiday_summerfest_a_01_bef.m2", }, { - fileId = "147390", - text = "stave_2h_auchindoun_d_01.m2", - value = "stave_2h_auchindoun_d_01.m2", + fileId = "141668", + text = "helm_robe_holiday_summerfest_a_01_bem.m2", + value = "helm_robe_holiday_summerfest_a_01_bem.m2", }, { - fileId = "147392", - text = "stave_2h_auchindoun_d_02.m2", - value = "stave_2h_auchindoun_d_02.m2", + fileId = "141669", + text = "helm_robe_holiday_summerfest_a_01_drf.m2", + value = "helm_robe_holiday_summerfest_a_01_drf.m2", }, { - fileId = "147393", - text = "stave_2h_blacktemple_d_01.m2", - value = "stave_2h_blacktemple_d_01.m2", + fileId = "141670", + text = "helm_robe_holiday_summerfest_a_01_drm.m2", + value = "helm_robe_holiday_summerfest_a_01_drm.m2", }, { - fileId = "147399", - text = "stave_2h_blackwing_a_01.m2", - value = "stave_2h_blackwing_a_01.m2", + fileId = "141671", + text = "helm_robe_holiday_summerfest_a_01_dwf.m2", + value = "helm_robe_holiday_summerfest_a_01_dwf.m2", }, { - fileId = "147402", - text = "stave_2h_blackwing_a_02.m2", - value = "stave_2h_blackwing_a_02.m2", + fileId = "141672", + text = "helm_robe_holiday_summerfest_a_01_dwm.m2", + value = "helm_robe_holiday_summerfest_a_01_dwm.m2", }, { - fileId = "147405", - text = "stave_2h_blood_a_01.m2", - value = "stave_2h_blood_a_01.m2", + fileId = "141673", + text = "helm_robe_holiday_summerfest_a_01_gnf.m2", + value = "helm_robe_holiday_summerfest_a_01_gnf.m2", }, { - fileId = "147409", - text = "stave_2h_blood_a_02.m2", - value = "stave_2h_blood_a_02.m2", + fileId = "141674", + text = "helm_robe_holiday_summerfest_a_01_gnm.m2", + value = "helm_robe_holiday_summerfest_a_01_gnm.m2", }, { - fileId = "238839", - text = "stave_2h_caster_pvp_c_01.m2", - value = "stave_2h_caster_pvp_c_01.m2", + fileId = "141675", + text = "helm_robe_holiday_summerfest_a_01_gof.m2", + value = "helm_robe_holiday_summerfest_a_01_gof.m2", }, { - fileId = "147413", - text = "stave_2h_cotstrat_d_01.m2", - value = "stave_2h_cotstrat_d_01.m2", + fileId = "141676", + text = "helm_robe_holiday_summerfest_a_01_gom.m2", + value = "helm_robe_holiday_summerfest_a_01_gom.m2", }, { - fileId = "147418", - text = "stave_2h_cotstrat_d_02.m2", - value = "stave_2h_cotstrat_d_02.m2", + fileId = "141677", + text = "helm_robe_holiday_summerfest_a_01_huf.m2", + value = "helm_robe_holiday_summerfest_a_01_huf.m2", }, { - fileId = "147424", - text = "stave_2h_dalaran_d_01.m2", - value = "stave_2h_dalaran_d_01.m2", + fileId = "141678", + text = "helm_robe_holiday_summerfest_a_01_hum.m2", + value = "helm_robe_holiday_summerfest_a_01_hum.m2", }, { - fileId = "147431", - text = "stave_2h_draenei_a_01.m2", - value = "stave_2h_draenei_a_01.m2", + fileId = "141679", + text = "helm_robe_holiday_summerfest_a_01_nif.m2", + value = "helm_robe_holiday_summerfest_a_01_nif.m2", }, { - fileId = "147437", - text = "stave_2h_draenei_a_02.m2", - value = "stave_2h_draenei_a_02.m2", + fileId = "141680", + text = "helm_robe_holiday_summerfest_a_01_nim.m2", + value = "helm_robe_holiday_summerfest_a_01_nim.m2", }, { - fileId = "147444", - text = "stave_2h_draenei_a_03.m2", - value = "stave_2h_draenei_a_03.m2", + fileId = "141681", + text = "helm_robe_holiday_summerfest_a_01_orf.m2", + value = "helm_robe_holiday_summerfest_a_01_orf.m2", }, { - fileId = "147451", - text = "stave_2h_draktharon_d_01.m2", - value = "stave_2h_draktharon_d_01.m2", + fileId = "141682", + text = "helm_robe_holiday_summerfest_a_01_orm.m2", + value = "helm_robe_holiday_summerfest_a_01_orm.m2", }, { - fileId = "147458", - text = "stave_2h_druid_d_01.m2", - value = "stave_2h_druid_d_01.m2", + fileId = "141683", + text = "helm_robe_holiday_summerfest_a_01_scf.m2", + value = "helm_robe_holiday_summerfest_a_01_scf.m2", }, { - fileId = "147464", - text = "stave_2h_epic_a_01.m2", - value = "stave_2h_epic_a_01.m2", + fileId = "141684", + text = "helm_robe_holiday_summerfest_a_01_scm.m2", + value = "helm_robe_holiday_summerfest_a_01_scm.m2", }, { - fileId = "147466", - text = "stave_2h_etherial_a_01.m2", - value = "stave_2h_etherial_a_01.m2", + fileId = "141685", + text = "helm_robe_holiday_summerfest_a_01_taf.m2", + value = "helm_robe_holiday_summerfest_a_01_taf.m2", }, { - fileId = "147473", - text = "stave_2h_feral_d_01.m2", - value = "stave_2h_feral_d_01.m2", + fileId = "141686", + text = "helm_robe_holiday_summerfest_a_01_tam.m2", + value = "helm_robe_holiday_summerfest_a_01_tam.m2", }, { - fileId = "147480", - text = "stave_2h_feral_d_02.m2", - value = "stave_2h_feral_d_02.m2", + fileId = "141687", + text = "helm_robe_holiday_summerfest_a_01_trf.m2", + value = "helm_robe_holiday_summerfest_a_01_trf.m2", }, { - fileId = "147486", - text = "stave_2h_feral_d_03.m2", - value = "stave_2h_feral_d_03.m2", + fileId = "141688", + text = "helm_robe_holiday_summerfest_a_01_trm.m2", + value = "helm_robe_holiday_summerfest_a_01_trm.m2", }, { - fileId = "238845", - text = "stave_2h_feral_pvp_c_01.m2", - value = "stave_2h_feral_pvp_c_01.m2", + fileId = "454287", + text = "helm_robe_holiday_summerfest_a_01_wof.m2", + value = "helm_robe_holiday_summerfest_a_01_wof.m2", }, { - fileId = "147491", - text = "stave_2h_flaming_d_01.m2", - value = "stave_2h_flaming_d_01.m2", + fileId = "454288", + text = "helm_robe_holiday_summerfest_a_01_wom.m2", + value = "helm_robe_holiday_summerfest_a_01_wom.m2", }, { - fileId = "238852", - text = "stave_2h_guitar_c_01.m2", - value = "stave_2h_guitar_c_01.m2", + fileId = "141689", + text = "helm_robe_holiday_summerfest_a_02_bef.m2", + value = "helm_robe_holiday_summerfest_a_02_bef.m2", }, { - fileId = "147492", - text = "stave_2h_hellfire_c_01.m2", - value = "stave_2h_hellfire_c_01.m2", + fileId = "141690", + text = "helm_robe_holiday_summerfest_a_02_bem.m2", + value = "helm_robe_holiday_summerfest_a_02_bem.m2", }, { - fileId = "147498", - text = "stave_2h_hellfire_d_01.m2", - value = "stave_2h_hellfire_d_01.m2", + fileId = "577331", + text = "helm_robe_holiday_summerfest_a_02_drf.m2", + value = "helm_robe_holiday_summerfest_a_02_drf.m2", }, { - fileId = "147502", - text = "stave_2h_hellfire_d_02.m2", - value = "stave_2h_hellfire_d_02.m2", + fileId = "577333", + text = "helm_robe_holiday_summerfest_a_02_drm.m2", + value = "helm_robe_holiday_summerfest_a_02_drm.m2", }, { - fileId = "304260", - text = "stave_2h_hordecovenant_d_01.m2", - value = "stave_2h_hordecovenant_d_01.m2", + fileId = "141691", + text = "helm_robe_holiday_summerfest_a_02_dwf.m2", + value = "helm_robe_holiday_summerfest_a_02_dwf.m2", }, { - fileId = "147504", - text = "stave_2h_hunterepic_d_01.m2", - value = "stave_2h_hunterepic_d_01.m2", + fileId = "141692", + text = "helm_robe_holiday_summerfest_a_02_dwm.m2", + value = "helm_robe_holiday_summerfest_a_02_dwm.m2", }, { - fileId = "308704", - text = "stave_2h_icecrownraid_d_01.m2", - value = "stave_2h_icecrownraid_d_01.m2", + fileId = "141693", + text = "helm_robe_holiday_summerfest_a_02_gnf.m2", + value = "helm_robe_holiday_summerfest_a_02_gnf.m2", }, { - fileId = "309673", - text = "stave_2h_icecrownraid_d_02.m2", - value = "stave_2h_icecrownraid_d_02.m2", + fileId = "141694", + text = "helm_robe_holiday_summerfest_a_02_gnm.m2", + value = "helm_robe_holiday_summerfest_a_02_gnm.m2", }, { - fileId = "308645", - text = "stave_2h_icecrownraid_d_03.m2", - value = "stave_2h_icecrownraid_d_03.m2", + fileId = "454289", + text = "helm_robe_holiday_summerfest_a_02_gof.m2", + value = "helm_robe_holiday_summerfest_a_02_gof.m2", }, { - fileId = "315625", - text = "stave_2h_icecrownraid_d_04.m2", - value = "stave_2h_icecrownraid_d_04.m2", + fileId = "141695", + text = "helm_robe_holiday_summerfest_a_02_gom.m2", + value = "helm_robe_holiday_summerfest_a_02_gom.m2", }, { - fileId = "147505", - text = "stave_2h_jeweled_a_01.m2", - value = "stave_2h_jeweled_a_01.m2", + fileId = "141696", + text = "helm_robe_holiday_summerfest_a_02_huf.m2", + value = "helm_robe_holiday_summerfest_a_02_huf.m2", }, { - fileId = "147509", - text = "stave_2h_jeweled_a_02.m2", - value = "stave_2h_jeweled_a_02.m2", + fileId = "141697", + text = "helm_robe_holiday_summerfest_a_02_hum.m2", + value = "helm_robe_holiday_summerfest_a_02_hum.m2", }, { - fileId = "147513", - text = "stave_2h_jeweled_a_03.m2", - value = "stave_2h_jeweled_a_03.m2", + fileId = "141698", + text = "helm_robe_holiday_summerfest_a_02_nif.m2", + value = "helm_robe_holiday_summerfest_a_02_nif.m2", }, { - fileId = "147517", - text = "stave_2h_jeweled_b_01.m2", - value = "stave_2h_jeweled_b_01.m2", + fileId = "141699", + text = "helm_robe_holiday_summerfest_a_02_nim.m2", + value = "helm_robe_holiday_summerfest_a_02_nim.m2", }, { - fileId = "147521", - text = "stave_2h_jeweled_b_02.m2", - value = "stave_2h_jeweled_b_02.m2", + fileId = "141700", + text = "helm_robe_holiday_summerfest_a_02_orf.m2", + value = "helm_robe_holiday_summerfest_a_02_orf.m2", }, { - fileId = "147525", - text = "stave_2h_jeweled_c_01.m2", - value = "stave_2h_jeweled_c_01.m2", + fileId = "141701", + text = "helm_robe_holiday_summerfest_a_02_orm.m2", + value = "helm_robe_holiday_summerfest_a_02_orm.m2", }, { - fileId = "147527", - text = "stave_2h_jeweled_d_01.m2", - value = "stave_2h_jeweled_d_01.m2", + fileId = "141702", + text = "helm_robe_holiday_summerfest_a_02_scf.m2", + value = "helm_robe_holiday_summerfest_a_02_scf.m2", }, { - fileId = "147530", - text = "stave_2h_long_a_01.m2", - value = "stave_2h_long_a_01.m2", + fileId = "141703", + text = "helm_robe_holiday_summerfest_a_02_scm.m2", + value = "helm_robe_holiday_summerfest_a_02_scm.m2", }, { - fileId = "147534", - text = "stave_2h_long_a_02.m2", - value = "stave_2h_long_a_02.m2", + fileId = "141704", + text = "helm_robe_holiday_summerfest_a_02_taf.m2", + value = "helm_robe_holiday_summerfest_a_02_taf.m2", }, { - fileId = "147538", - text = "stave_2h_long_a_03.m2", - value = "stave_2h_long_a_03.m2", + fileId = "141705", + text = "helm_robe_holiday_summerfest_a_02_tam.m2", + value = "helm_robe_holiday_summerfest_a_02_tam.m2", }, { - fileId = "147542", - text = "stave_2h_long_a_04.m2", - value = "stave_2h_long_a_04.m2", + fileId = "141706", + text = "helm_robe_holiday_summerfest_a_02_trf.m2", + value = "helm_robe_holiday_summerfest_a_02_trf.m2", }, { - fileId = "147547", - text = "stave_2h_long_b_01.m2", - value = "stave_2h_long_b_01.m2", + fileId = "141707", + text = "helm_robe_holiday_summerfest_a_02_trm.m2", + value = "helm_robe_holiday_summerfest_a_02_trm.m2", }, { - fileId = "147552", - text = "stave_2h_long_b_02holy.m2", - value = "stave_2h_long_b_02holy.m2", + fileId = "454290", + text = "helm_robe_holiday_summerfest_a_02_wof.m2", + value = "helm_robe_holiday_summerfest_a_02_wof.m2", }, { - fileId = "147553", - text = "stave_2h_long_b_03.m2", - value = "stave_2h_long_b_03.m2", + fileId = "454291", + text = "helm_robe_holiday_summerfest_a_02_wom.m2", + value = "helm_robe_holiday_summerfest_a_02_wom.m2", }, { - fileId = "147557", - text = "stave_2h_long_b_04.m2", - value = "stave_2h_long_b_04.m2", + fileId = "141710", + text = "helm_robe_horde_b_03earthenring_bef.m2", + value = "helm_robe_horde_b_03earthenring_bef.m2", }, { - fileId = "147563", - text = "stave_2h_long_c_01.m2", - value = "stave_2h_long_c_01.m2", + fileId = "141711", + text = "helm_robe_horde_b_03earthenring_bem.m2", + value = "helm_robe_horde_b_03earthenring_bem.m2", }, { - fileId = "147565", - text = "stave_2h_long_c_02.m2", - value = "stave_2h_long_c_02.m2", + fileId = "141712", + text = "helm_robe_horde_b_03earthenring_drf.m2", + value = "helm_robe_horde_b_03earthenring_drf.m2", }, { - fileId = "147567", - text = "stave_2h_long_d_01.m2", - value = "stave_2h_long_d_01.m2", + fileId = "141713", + text = "helm_robe_horde_b_03earthenring_drm.m2", + value = "helm_robe_horde_b_03earthenring_drm.m2", }, { - fileId = "147574", - text = "stave_2h_long_d_04.m2", - value = "stave_2h_long_d_04.m2", + fileId = "141714", + text = "helm_robe_horde_b_03earthenring_dwf.m2", + value = "helm_robe_horde_b_03earthenring_dwf.m2", }, { - fileId = "147576", - text = "stave_2h_long_d_05.m2", - value = "stave_2h_long_d_05.m2", + fileId = "141715", + text = "helm_robe_horde_b_03earthenring_dwm.m2", + value = "helm_robe_horde_b_03earthenring_dwm.m2", }, { - fileId = "147578", - text = "stave_2h_long_epicpriest01.m2", - value = "stave_2h_long_epicpriest01.m2", + fileId = "141716", + text = "helm_robe_horde_b_03earthenring_gnf.m2", + value = "helm_robe_horde_b_03earthenring_gnf.m2", }, { - fileId = "147579", - text = "stave_2h_long_epicpriest02.m2", - value = "stave_2h_long_epicpriest02.m2", + fileId = "141717", + text = "helm_robe_horde_b_03earthenring_gnm.m2", + value = "helm_robe_horde_b_03earthenring_gnm.m2", }, { - fileId = "147581", - text = "stave_2h_medivh_d_01.m2", - value = "stave_2h_medivh_d_01.m2", + fileId = "141718", + text = "helm_robe_horde_b_03earthenring_gof.m2", + value = "helm_robe_horde_b_03earthenring_gof.m2", }, { - fileId = "147585", - text = "stave_2h_naga_d_01.m2", - value = "stave_2h_naga_d_01.m2", + fileId = "141719", + text = "helm_robe_horde_b_03earthenring_gom.m2", + value = "helm_robe_horde_b_03earthenring_gom.m2", }, { - fileId = "238854", - text = "stave_2h_naxx25_d_01.m2", - value = "stave_2h_naxx25_d_01.m2", + fileId = "141720", + text = "helm_robe_horde_b_03earthenring_huf.m2", + value = "helm_robe_horde_b_03earthenring_huf.m2", }, { - fileId = "238860", - text = "stave_2h_naxx25_d_02.m2", - value = "stave_2h_naxx25_d_02.m2", + fileId = "141721", + text = "helm_robe_horde_b_03earthenring_hum.m2", + value = "helm_robe_horde_b_03earthenring_hum.m2", }, { - fileId = "238866", - text = "stave_2h_naxx25_d_03.m2", - value = "stave_2h_naxx25_d_03.m2", + fileId = "141722", + text = "helm_robe_horde_b_03earthenring_nif.m2", + value = "helm_robe_horde_b_03earthenring_nif.m2", }, { - fileId = "147588", - text = "stave_2h_nexus_d_01.m2", - value = "stave_2h_nexus_d_01.m2", + fileId = "141723", + text = "helm_robe_horde_b_03earthenring_nim.m2", + value = "helm_robe_horde_b_03earthenring_nim.m2", }, { - fileId = "147593", - text = "stave_2h_nexus_d_02.m2", - value = "stave_2h_nexus_d_02.m2", + fileId = "141724", + text = "helm_robe_horde_b_03earthenring_orf.m2", + value = "helm_robe_horde_b_03earthenring_orf.m2", }, { - fileId = "147599", - text = "stave_2h_northrend_b_01.m2", - value = "stave_2h_northrend_b_01.m2", + fileId = "141725", + text = "helm_robe_horde_b_03earthenring_orm.m2", + value = "helm_robe_horde_b_03earthenring_orm.m2", }, { - fileId = "147605", - text = "stave_2h_northrend_b_02.m2", - value = "stave_2h_northrend_b_02.m2", + fileId = "141726", + text = "helm_robe_horde_b_03earthenring_scf.m2", + value = "helm_robe_horde_b_03earthenring_scf.m2", }, { - fileId = "147611", - text = "stave_2h_northrend_b_03.m2", - value = "stave_2h_northrend_b_03.m2", - }, - { - fileId = "147616", - text = "stave_2h_northrend_c_01.m2", - value = "stave_2h_northrend_c_01.m2", + fileId = "141727", + text = "helm_robe_horde_b_03earthenring_scm.m2", + value = "helm_robe_horde_b_03earthenring_scm.m2", }, { - fileId = "147621", - text = "stave_2h_northrend_c_03.m2", - value = "stave_2h_northrend_c_03.m2", + fileId = "141728", + text = "helm_robe_horde_b_03earthenring_taf.m2", + value = "helm_robe_horde_b_03earthenring_taf.m2", }, { - fileId = "147626", - text = "stave_2h_northrend_d_01.m2", - value = "stave_2h_northrend_d_01.m2", + fileId = "141729", + text = "helm_robe_horde_b_03earthenring_tam.m2", + value = "helm_robe_horde_b_03earthenring_tam.m2", }, { - fileId = "147631", - text = "stave_2h_northrend_d_02.m2", - value = "stave_2h_northrend_d_02.m2", + fileId = "141730", + text = "helm_robe_horde_b_03earthenring_trf.m2", + value = "helm_robe_horde_b_03earthenring_trf.m2", }, { - fileId = "147633", - text = "stave_2h_northrend_d_03.m2", - value = "stave_2h_northrend_d_03.m2", + fileId = "141731", + text = "helm_robe_horde_b_03earthenring_trm.m2", + value = "helm_robe_horde_b_03earthenring_trm.m2", }, { - fileId = "147637", - text = "stave_2h_other_a_01.m2", - value = "stave_2h_other_a_01.m2", + fileId = "454794", + text = "helm_robe_horde_b_03earthenring_wof.m2", + value = "helm_robe_horde_b_03earthenring_wof.m2", }, { - fileId = "147641", - text = "stave_2h_other_b_01.m2", - value = "stave_2h_other_b_01.m2", + fileId = "454795", + text = "helm_robe_horde_b_03earthenring_wom.m2", + value = "helm_robe_horde_b_03earthenring_wom.m2", }, { - fileId = "147645", - text = "stave_2h_other_c_01.m2", - value = "stave_2h_other_c_01.m2", + fileId = "141740", + text = "helm_robe_northrend_b_01_bef.m2", + value = "helm_robe_northrend_b_01_bef.m2", }, { - fileId = "147652", - text = "stave_2h_other_c_02.m2", - value = "stave_2h_other_c_02.m2", + fileId = "141741", + text = "helm_robe_northrend_b_01_bem.m2", + value = "helm_robe_northrend_b_01_bem.m2", }, { - fileId = "147654", - text = "stave_2h_other_c_03.m2", - value = "stave_2h_other_c_03.m2", + fileId = "141742", + text = "helm_robe_northrend_b_01_drf.m2", + value = "helm_robe_northrend_b_01_drf.m2", }, { - fileId = "147656", - text = "stave_2h_other_d_01.m2", - value = "stave_2h_other_d_01.m2", + fileId = "141743", + text = "helm_robe_northrend_b_01_drm.m2", + value = "helm_robe_northrend_b_01_drm.m2", }, { - fileId = "147659", - text = "stave_2h_outlandraid_d_01.m2", - value = "stave_2h_outlandraid_d_01.m2", + fileId = "141744", + text = "helm_robe_northrend_b_01_dwf.m2", + value = "helm_robe_northrend_b_01_dwf.m2", }, { - fileId = "147660", - text = "stave_2h_outlandraid_d_01_blue.m2", - value = "stave_2h_outlandraid_d_01_blue.m2", + fileId = "141745", + text = "helm_robe_northrend_b_01_dwm.m2", + value = "helm_robe_northrend_b_01_dwm.m2", }, { - fileId = "147661", - text = "stave_2h_outlandraid_d_01_red.m2", - value = "stave_2h_outlandraid_d_01_red.m2", + fileId = "141746", + text = "helm_robe_northrend_b_01_gnf.m2", + value = "helm_robe_northrend_b_01_gnf.m2", }, { - fileId = "147663", - text = "stave_2h_outlandraid_d_02_blue.m2", - value = "stave_2h_outlandraid_d_02_blue.m2", + fileId = "141747", + text = "helm_robe_northrend_b_01_gnm.m2", + value = "helm_robe_northrend_b_01_gnm.m2", }, { - fileId = "147664", - text = "stave_2h_outlandraid_d_02_red.m2", - value = "stave_2h_outlandraid_d_02_red.m2", + fileId = "454292", + text = "helm_robe_northrend_b_01_gof.m2", + value = "helm_robe_northrend_b_01_gof.m2", }, { - fileId = "147666", - text = "stave_2h_outlandraid_d_03.m2", - value = "stave_2h_outlandraid_d_03.m2", + fileId = "454293", + text = "helm_robe_northrend_b_01_gom.m2", + value = "helm_robe_northrend_b_01_gom.m2", }, { - fileId = "147667", - text = "stave_2h_outlandraid_d_03_blue.m2", - value = "stave_2h_outlandraid_d_03_blue.m2", + fileId = "141748", + text = "helm_robe_northrend_b_01_huf.m2", + value = "helm_robe_northrend_b_01_huf.m2", }, { - fileId = "147668", - text = "stave_2h_outlandraid_d_03_red.m2", - value = "stave_2h_outlandraid_d_03_red.m2", + fileId = "141749", + text = "helm_robe_northrend_b_01_hum.m2", + value = "helm_robe_northrend_b_01_hum.m2", }, { - fileId = "147670", - text = "stave_2h_outlandraid_d_04.m2", - value = "stave_2h_outlandraid_d_04.m2", + fileId = "141750", + text = "helm_robe_northrend_b_01_nif.m2", + value = "helm_robe_northrend_b_01_nif.m2", }, { - fileId = "147674", - text = "stave_2h_outlandraid_d_05.m2", - value = "stave_2h_outlandraid_d_05.m2", + fileId = "141751", + text = "helm_robe_northrend_b_01_nim.m2", + value = "helm_robe_northrend_b_01_nim.m2", }, { - fileId = "147680", - text = "stave_2h_outlandraid_d_06.m2", - value = "stave_2h_outlandraid_d_06.m2", + fileId = "141752", + text = "helm_robe_northrend_b_01_orf.m2", + value = "helm_robe_northrend_b_01_orf.m2", }, { - fileId = "147682", - text = "stave_2h_outlandraid_d_06_blue.m2", - value = "stave_2h_outlandraid_d_06_blue.m2", + fileId = "141753", + text = "helm_robe_northrend_b_01_orm.m2", + value = "helm_robe_northrend_b_01_orm.m2", }, { - fileId = "147684", - text = "stave_2h_priest_d_01.m2", - value = "stave_2h_priest_d_01.m2", + fileId = "141754", + text = "helm_robe_northrend_b_01_scf.m2", + value = "helm_robe_northrend_b_01_scf.m2", }, { - fileId = "304295", - text = "stave_2h_pvealliance_d_01.m2", - value = "stave_2h_pvealliance_d_01.m2", + fileId = "141755", + text = "helm_robe_northrend_b_01_scm.m2", + value = "helm_robe_northrend_b_01_scm.m2", }, { - fileId = "305168", - text = "stave_2h_pvealliance_d_02.m2", - value = "stave_2h_pvealliance_d_02.m2", + fileId = "141756", + text = "helm_robe_northrend_b_01_taf.m2", + value = "helm_robe_northrend_b_01_taf.m2", }, { - fileId = "304300", - text = "stave_2h_pvehorde_d_01.m2", - value = "stave_2h_pvehorde_d_01.m2", + fileId = "141757", + text = "helm_robe_northrend_b_01_tam.m2", + value = "helm_robe_northrend_b_01_tam.m2", }, { - fileId = "306149", - text = "stave_2h_pvehorde_d_02.m2", - value = "stave_2h_pvehorde_d_02.m2", + fileId = "141758", + text = "helm_robe_northrend_b_01_trf.m2", + value = "helm_robe_northrend_b_01_trf.m2", }, { - fileId = "306740", - text = "stave_2h_pvp320_c_01.m2", - value = "stave_2h_pvp320_c_01.m2", + fileId = "141759", + text = "helm_robe_northrend_b_01_trm.m2", + value = "helm_robe_northrend_b_01_trm.m2", }, { - fileId = "306324", - text = "stave_2h_pvp320_c_02.m2", - value = "stave_2h_pvp320_c_02.m2", + fileId = "454294", + text = "helm_robe_northrend_b_01_wof.m2", + value = "helm_robe_northrend_b_01_wof.m2", }, { - fileId = "327748", - text = "stave_2h_pvp330_d_01.m2", - value = "stave_2h_pvp330_d_01.m2", + fileId = "454295", + text = "helm_robe_northrend_b_01_wom.m2", + value = "helm_robe_northrend_b_01_wom.m2", }, { - fileId = "327845", - text = "stave_2h_pvp330_d_02.m2", - value = "stave_2h_pvp330_d_02.m2", + fileId = "141764", + text = "helm_robe_northrend_b_02_bef.m2", + value = "helm_robe_northrend_b_02_bef.m2", }, { - fileId = "147688", - text = "stave_2h_pvpalliance_a_01.m2", - value = "stave_2h_pvpalliance_a_01.m2", + fileId = "141765", + text = "helm_robe_northrend_b_02_bem.m2", + value = "helm_robe_northrend_b_02_bem.m2", }, { - fileId = "147692", - text = "stave_2h_pvphorde_a_01.m2", - value = "stave_2h_pvphorde_a_01.m2", + fileId = "141766", + text = "helm_robe_northrend_b_02_drf.m2", + value = "helm_robe_northrend_b_02_drf.m2", }, { - fileId = "147697", - text = "stave_2h_scythe_c_03.m2", - value = "stave_2h_scythe_c_03.m2", + fileId = "141767", + text = "helm_robe_northrend_b_02_drm.m2", + value = "helm_robe_northrend_b_02_drm.m2", }, { - fileId = "147699", - text = "stave_2h_stratholme_d_01.m2", - value = "stave_2h_stratholme_d_01.m2", + fileId = "141768", + text = "helm_robe_northrend_b_02_dwf.m2", + value = "helm_robe_northrend_b_02_dwf.m2", }, { - fileId = "147701", - text = "stave_2h_stratholme_d_02.m2", - value = "stave_2h_stratholme_d_02.m2", + fileId = "141769", + text = "helm_robe_northrend_b_02_dwm.m2", + value = "helm_robe_northrend_b_02_dwm.m2", }, { - fileId = "147703", - text = "stave_2h_stratholme_d_03.m2", - value = "stave_2h_stratholme_d_03.m2", + fileId = "141770", + text = "helm_robe_northrend_b_02_gnf.m2", + value = "helm_robe_northrend_b_02_gnf.m2", }, { - fileId = "147704", - text = "stave_2h_sunwell_c_01.m2", - value = "stave_2h_sunwell_c_01.m2", + fileId = "141771", + text = "helm_robe_northrend_b_02_gnm.m2", + value = "helm_robe_northrend_b_02_gnm.m2", }, { - fileId = "147710", - text = "stave_2h_sunwell_d_01.m2", - value = "stave_2h_sunwell_d_01.m2", + fileId = "454296", + text = "helm_robe_northrend_b_02_gof.m2", + value = "helm_robe_northrend_b_02_gof.m2", }, { - fileId = "147715", - text = "stave_2h_sunwell_d_02.m2", - value = "stave_2h_sunwell_d_02.m2", + fileId = "454297", + text = "helm_robe_northrend_b_02_gom.m2", + value = "helm_robe_northrend_b_02_gom.m2", }, { - fileId = "147720", - text = "stave_2h_sunwell_d_03.m2", - value = "stave_2h_sunwell_d_03.m2", + fileId = "141772", + text = "helm_robe_northrend_b_02_huf.m2", + value = "helm_robe_northrend_b_02_huf.m2", }, { - fileId = "238871", - text = "stave_2h_ulduarraid_d_01.m2", - value = "stave_2h_ulduarraid_d_01.m2", + fileId = "141773", + text = "helm_robe_northrend_b_02_hum.m2", + value = "helm_robe_northrend_b_02_hum.m2", }, { - fileId = "238877", - text = "stave_2h_ulduarraid_d_02.m2", - value = "stave_2h_ulduarraid_d_02.m2", + fileId = "141774", + text = "helm_robe_northrend_b_02_nif.m2", + value = "helm_robe_northrend_b_02_nif.m2", }, { - fileId = "238883", - text = "stave_2h_ulduarraid_d_03.m2", - value = "stave_2h_ulduarraid_d_03.m2", + fileId = "141775", + text = "helm_robe_northrend_b_02_nim.m2", + value = "helm_robe_northrend_b_02_nim.m2", }, { - fileId = "249276", - text = "stave_2h_ulduarraid_d_04.m2", - value = "stave_2h_ulduarraid_d_04.m2", + fileId = "141776", + text = "helm_robe_northrend_b_02_orf.m2", + value = "helm_robe_northrend_b_02_orf.m2", }, { - fileId = "147725", - text = "stave_2h_utgarde_d_01.m2", - value = "stave_2h_utgarde_d_01.m2", + fileId = "141777", + text = "helm_robe_northrend_b_02_orm.m2", + value = "helm_robe_northrend_b_02_orm.m2", }, { - fileId = "147731", - text = "stave_2h_utgarde_d_02.m2", - value = "stave_2h_utgarde_d_02.m2", + fileId = "141778", + text = "helm_robe_northrend_b_02_scf.m2", + value = "helm_robe_northrend_b_02_scf.m2", }, { - fileId = "147737", - text = "stave_2h_warlock_d_01.m2", - value = "stave_2h_warlock_d_01.m2", + fileId = "141779", + text = "helm_robe_northrend_b_02_scm.m2", + value = "helm_robe_northrend_b_02_scm.m2", }, { - fileId = "147741", - text = "stave_2h_zulaman_d_01.m2", - value = "stave_2h_zulaman_d_01.m2", + fileId = "141780", + text = "helm_robe_northrend_b_02_taf.m2", + value = "helm_robe_northrend_b_02_taf.m2", }, { - fileId = "147746", - text = "stave_2h_zulaman_d_02.m2", - value = "stave_2h_zulaman_d_02.m2", + fileId = "141781", + text = "helm_robe_northrend_b_02_tam.m2", + value = "helm_robe_northrend_b_02_tam.m2", }, { - fileId = "147751", - text = "stave_2h_zulaman_d_03.m2", - value = "stave_2h_zulaman_d_03.m2", + fileId = "141782", + text = "helm_robe_northrend_b_02_trf.m2", + value = "helm_robe_northrend_b_02_trf.m2", }, { - fileId = "147757", - text = "stave_2h_zulgurub_d_01.m2", - value = "stave_2h_zulgurub_d_01.m2", + fileId = "141783", + text = "helm_robe_northrend_b_02_trm.m2", + value = "helm_robe_northrend_b_02_trm.m2", }, { - fileId = "147759", - text = "stave_2h_zulgurub_d_02.m2", - value = "stave_2h_zulgurub_d_02.m2", + fileId = "454298", + text = "helm_robe_northrend_b_02_wof.m2", + value = "helm_robe_northrend_b_02_wof.m2", }, { - fileId = "147761", - text = "stave_2h_zulgurub_d_03.m2", - value = "stave_2h_zulgurub_d_03.m2", + fileId = "454299", + text = "helm_robe_northrend_b_02_wom.m2", + value = "helm_robe_northrend_b_02_wom.m2", }, { - fileId = "147764", - text = "sword_1h_ahnqiraj_d_01.m2", - value = "sword_1h_ahnqiraj_d_01.m2", + fileId = "141790", + text = "helm_robe_northrend_b_03_bef.m2", + value = "helm_robe_northrend_b_03_bef.m2", }, { - fileId = "147767", - text = "sword_1h_ahnqiraj_d_02.m2", - value = "sword_1h_ahnqiraj_d_02.m2", + fileId = "141791", + text = "helm_robe_northrend_b_03_bem.m2", + value = "helm_robe_northrend_b_03_bem.m2", }, { - fileId = "147770", - text = "sword_1h_ahnqiraj_d_03.m2", - value = "sword_1h_ahnqiraj_d_03.m2", + fileId = "141792", + text = "helm_robe_northrend_b_03_drf.m2", + value = "helm_robe_northrend_b_03_drf.m2", }, { - fileId = "147772", - text = "sword_1h_akama_d_01.m2", - value = "sword_1h_akama_d_01.m2", + fileId = "141793", + text = "helm_robe_northrend_b_03_drm.m2", + value = "helm_robe_northrend_b_03_drm.m2", }, { - fileId = "298704", - text = "sword_1h_alliancecovenant_d_01.m2", - value = "sword_1h_alliancecovenant_d_01.m2", + fileId = "141794", + text = "helm_robe_northrend_b_03_dwf.m2", + value = "helm_robe_northrend_b_03_dwf.m2", }, { - fileId = "147775", - text = "sword_1h_auchindoun_d_01.m2", - value = "sword_1h_auchindoun_d_01.m2", + fileId = "141795", + text = "helm_robe_northrend_b_03_dwm.m2", + value = "helm_robe_northrend_b_03_dwm.m2", }, { - fileId = "147777", - text = "sword_1h_blacksmithing_d_01.m2", - value = "sword_1h_blacksmithing_d_01.m2", + fileId = "141796", + text = "helm_robe_northrend_b_03_gnf.m2", + value = "helm_robe_northrend_b_03_gnf.m2", }, { - fileId = "147779", - text = "sword_1h_blacksmithing_d_02.m2", - value = "sword_1h_blacksmithing_d_02.m2", + fileId = "141797", + text = "helm_robe_northrend_b_03_gnm.m2", + value = "helm_robe_northrend_b_03_gnm.m2", }, { - fileId = "147781", - text = "sword_1h_blacksmithing_d_03.m2", - value = "sword_1h_blacksmithing_d_03.m2", + fileId = "454512", + text = "helm_robe_northrend_b_03_gof.m2", + value = "helm_robe_northrend_b_03_gof.m2", }, { - fileId = "147783", - text = "sword_1h_blackwing_a_01.m2", - value = "sword_1h_blackwing_a_01.m2", + fileId = "454513", + text = "helm_robe_northrend_b_03_gom.m2", + value = "helm_robe_northrend_b_03_gom.m2", }, { - fileId = "147785", - text = "sword_1h_blackwing_a_02.m2", - value = "sword_1h_blackwing_a_02.m2", + fileId = "141798", + text = "helm_robe_northrend_b_03_huf.m2", + value = "helm_robe_northrend_b_03_huf.m2", }, { - fileId = "147787", - text = "sword_1h_blood_a_01.m2", - value = "sword_1h_blood_a_01.m2", + fileId = "141799", + text = "helm_robe_northrend_b_03_hum.m2", + value = "helm_robe_northrend_b_03_hum.m2", }, { - fileId = "147790", - text = "sword_1h_blood_a_02.m2", - value = "sword_1h_blood_a_02.m2", + fileId = "141800", + text = "helm_robe_northrend_b_03_nif.m2", + value = "helm_robe_northrend_b_03_nif.m2", }, { - fileId = "147793", - text = "sword_1h_blood_a_03.m2", - value = "sword_1h_blood_a_03.m2", + fileId = "141801", + text = "helm_robe_northrend_b_03_nim.m2", + value = "helm_robe_northrend_b_03_nim.m2", }, { - fileId = "147800", - text = "sword_1h_caverns_d_01.m2", - value = "sword_1h_caverns_d_01.m2", + fileId = "141802", + text = "helm_robe_northrend_b_03_orf.m2", + value = "helm_robe_northrend_b_03_orf.m2", }, { - fileId = "147801", - text = "sword_1h_cotstrat_d_01.m2", - value = "sword_1h_cotstrat_d_01.m2", + fileId = "141803", + text = "helm_robe_northrend_b_03_orm.m2", + value = "helm_robe_northrend_b_03_orm.m2", }, { - fileId = "147806", - text = "sword_1h_crystal_c_01.m2", - value = "sword_1h_crystal_c_01.m2", + fileId = "141804", + text = "helm_robe_northrend_b_03_scf.m2", + value = "helm_robe_northrend_b_03_scf.m2", }, { - fileId = "147812", - text = "sword_1h_crystal_c_02.m2", - value = "sword_1h_crystal_c_02.m2", + fileId = "141805", + text = "helm_robe_northrend_b_03_scm.m2", + value = "helm_robe_northrend_b_03_scm.m2", }, { - fileId = "147818", - text = "sword_1h_crystal_c_03.m2", - value = "sword_1h_crystal_c_03.m2", + fileId = "141806", + text = "helm_robe_northrend_b_03_taf.m2", + value = "helm_robe_northrend_b_03_taf.m2", }, { - fileId = "238889", - text = "sword_1h_dalaran_d_01.m2", - value = "sword_1h_dalaran_d_01.m2", + fileId = "141807", + text = "helm_robe_northrend_b_03_tam.m2", + value = "helm_robe_northrend_b_03_tam.m2", }, { - fileId = "147824", - text = "sword_1h_draenei_a_01.m2", - value = "sword_1h_draenei_a_01.m2", + fileId = "141808", + text = "helm_robe_northrend_b_03_trf.m2", + value = "helm_robe_northrend_b_03_trf.m2", }, { - fileId = "147830", - text = "sword_1h_draenei_a_02.m2", - value = "sword_1h_draenei_a_02.m2", + fileId = "141809", + text = "helm_robe_northrend_b_03_trm.m2", + value = "helm_robe_northrend_b_03_trm.m2", }, { - fileId = "147836", - text = "sword_1h_draenei_a_03.m2", - value = "sword_1h_draenei_a_03.m2", + fileId = "454514", + text = "helm_robe_northrend_b_03_wof.m2", + value = "helm_robe_northrend_b_03_wof.m2", }, { - fileId = "147842", - text = "sword_1h_draenei_b_01.m2", - value = "sword_1h_draenei_b_01.m2", + fileId = "454515", + text = "helm_robe_northrend_b_03_wom.m2", + value = "helm_robe_northrend_b_03_wom.m2", }, { - fileId = "147849", - text = "sword_1h_draenei_c_01.m2", - value = "sword_1h_draenei_c_01.m2", + fileId = "141814", + text = "helm_robe_northrend_d_01_bef.m2", + value = "helm_robe_northrend_d_01_bef.m2", }, { - fileId = "147856", - text = "sword_1h_draenei_d_01.m2", - value = "sword_1h_draenei_d_01.m2", + fileId = "141815", + text = "helm_robe_northrend_d_01_bem.m2", + value = "helm_robe_northrend_d_01_bem.m2", }, { - fileId = "147860", - text = "sword_1h_fire_a_01.m2", - value = "sword_1h_fire_a_01.m2", + fileId = "141816", + text = "helm_robe_northrend_d_01_drf.m2", + value = "helm_robe_northrend_d_01_drf.m2", }, { - fileId = "147862", - text = "sword_1h_haremmatron_d_01.m2", - value = "sword_1h_haremmatron_d_01.m2", + fileId = "141817", + text = "helm_robe_northrend_d_01_drm.m2", + value = "helm_robe_northrend_d_01_drm.m2", }, { - fileId = "147864", - text = "sword_1h_hellfire_d_01.m2", - value = "sword_1h_hellfire_d_01.m2", + fileId = "141818", + text = "helm_robe_northrend_d_01_dwf.m2", + value = "helm_robe_northrend_d_01_dwf.m2", }, { - fileId = "147867", - text = "sword_1h_horde_a_01.m2", - value = "sword_1h_horde_a_01.m2", + fileId = "141819", + text = "helm_robe_northrend_d_01_dwm.m2", + value = "helm_robe_northrend_d_01_dwm.m2", }, { - fileId = "147872", - text = "sword_1h_horde_a_02.m2", - value = "sword_1h_horde_a_02.m2", + fileId = "141820", + text = "helm_robe_northrend_d_01_gnf.m2", + value = "helm_robe_northrend_d_01_gnf.m2", }, { - fileId = "147877", - text = "sword_1h_horde_a_03.m2", - value = "sword_1h_horde_a_03.m2", + fileId = "141821", + text = "helm_robe_northrend_d_01_gnm.m2", + value = "helm_robe_northrend_d_01_gnm.m2", }, { - fileId = "147878", - text = "sword_1h_horde_a_04.m2", - value = "sword_1h_horde_a_04.m2", + fileId = "454300", + text = "helm_robe_northrend_d_01_gof.m2", + value = "helm_robe_northrend_d_01_gof.m2", }, { - fileId = "147879", - text = "sword_1h_horde_b_01.m2", - value = "sword_1h_horde_b_01.m2", + fileId = "454301", + text = "helm_robe_northrend_d_01_gom.m2", + value = "helm_robe_northrend_d_01_gom.m2", }, { - fileId = "147885", - text = "sword_1h_horde_b_02.m2", - value = "sword_1h_horde_b_02.m2", + fileId = "141822", + text = "helm_robe_northrend_d_01_huf.m2", + value = "helm_robe_northrend_d_01_huf.m2", }, { - fileId = "147891", - text = "sword_1h_horde_b_03.m2", - value = "sword_1h_horde_b_03.m2", + fileId = "141823", + text = "helm_robe_northrend_d_01_hum.m2", + value = "helm_robe_northrend_d_01_hum.m2", }, { - fileId = "147897", - text = "sword_1h_horde_b_04.m2", - value = "sword_1h_horde_b_04.m2", + fileId = "141824", + text = "helm_robe_northrend_d_01_nif.m2", + value = "helm_robe_northrend_d_01_nif.m2", }, { - fileId = "147903", - text = "sword_1h_horde_b_05.m2", - value = "sword_1h_horde_b_05.m2", + fileId = "141825", + text = "helm_robe_northrend_d_01_nim.m2", + value = "helm_robe_northrend_d_01_nim.m2", }, { - fileId = "147909", - text = "sword_1h_horde_c_01.m2", - value = "sword_1h_horde_c_01.m2", - }, - { - fileId = "147915", - text = "sword_1h_horde_c_02.m2", - value = "sword_1h_horde_c_02.m2", + fileId = "141826", + text = "helm_robe_northrend_d_01_orf.m2", + value = "helm_robe_northrend_d_01_orf.m2", }, { - fileId = "322941", - text = "sword_1h_horde_c_02alt.m2", - value = "sword_1h_horde_c_02alt.m2", + fileId = "141827", + text = "helm_robe_northrend_d_01_orm.m2", + value = "helm_robe_northrend_d_01_orm.m2", }, { - fileId = "303874", - text = "sword_1h_hordecovenant_d_01.m2", - value = "sword_1h_hordecovenant_d_01.m2", + fileId = "141828", + text = "helm_robe_northrend_d_01_scf.m2", + value = "helm_robe_northrend_d_01_scf.m2", }, { - fileId = "147922", - text = "sword_1h_hyjal_d_01.m2", - value = "sword_1h_hyjal_d_01.m2", + fileId = "141829", + text = "helm_robe_northrend_d_01_scm.m2", + value = "helm_robe_northrend_d_01_scm.m2", }, { - fileId = "147927", - text = "sword_1h_hyjal_d_02.m2", - value = "sword_1h_hyjal_d_02.m2", + fileId = "141830", + text = "helm_robe_northrend_d_01_taf.m2", + value = "helm_robe_northrend_d_01_taf.m2", }, { - fileId = "147932", - text = "sword_1h_hyjal_d_03.m2", - value = "sword_1h_hyjal_d_03.m2", + fileId = "141831", + text = "helm_robe_northrend_d_01_tam.m2", + value = "helm_robe_northrend_d_01_tam.m2", }, { - fileId = "309424", - text = "sword_1h_icecrownraid_d_01.m2", - value = "sword_1h_icecrownraid_d_01.m2", + fileId = "141832", + text = "helm_robe_northrend_d_01_trf.m2", + value = "helm_robe_northrend_d_01_trf.m2", }, { - fileId = "319747", - text = "sword_1h_icecrownraid_d_02.m2", - value = "sword_1h_icecrownraid_d_02.m2", + fileId = "141833", + text = "helm_robe_northrend_d_01_trm.m2", + value = "helm_robe_northrend_d_01_trm.m2", }, { - fileId = "309429", - text = "sword_1h_icecrownraid_d_03.m2", - value = "sword_1h_icecrownraid_d_03.m2", + fileId = "454302", + text = "helm_robe_northrend_d_01_wof.m2", + value = "helm_robe_northrend_d_01_wof.m2", }, { - fileId = "315154", - text = "sword_1h_icecrownraid_d_04.m2", - value = "sword_1h_icecrownraid_d_04.m2", + fileId = "454303", + text = "helm_robe_northrend_d_01_wom.m2", + value = "helm_robe_northrend_d_01_wom.m2", }, { - fileId = "147937", - text = "sword_1h_katana_a_01.m2", - value = "sword_1h_katana_a_01.m2", + fileId = "141837", + text = "helm_robe_pvpalliance_a_01_bef.m2", + value = "helm_robe_pvpalliance_a_01_bef.m2", }, { - fileId = "147941", - text = "sword_1h_katana_a_02.m2", - value = "sword_1h_katana_a_02.m2", + fileId = "141838", + text = "helm_robe_pvpalliance_a_01_bem.m2", + value = "helm_robe_pvpalliance_a_01_bem.m2", }, { - fileId = "147945", - text = "sword_1h_katana_b_01.m2", - value = "sword_1h_katana_b_01.m2", + fileId = "141839", + text = "helm_robe_pvpalliance_a_01_drf.m2", + value = "helm_robe_pvpalliance_a_01_drf.m2", }, { - fileId = "147949", - text = "sword_1h_katana_b_02.m2", - value = "sword_1h_katana_b_02.m2", + fileId = "141840", + text = "helm_robe_pvpalliance_a_01_drm.m2", + value = "helm_robe_pvpalliance_a_01_drm.m2", }, { - fileId = "147953", - text = "sword_1h_long_a_01.m2", - value = "sword_1h_long_a_01.m2", + fileId = "141841", + text = "helm_robe_pvpalliance_a_01_dwf.m2", + value = "helm_robe_pvpalliance_a_01_dwf.m2", }, { - fileId = "147955", - text = "sword_1h_long_a_02.m2", - value = "sword_1h_long_a_02.m2", + fileId = "141842", + text = "helm_robe_pvpalliance_a_01_dwm.m2", + value = "helm_robe_pvpalliance_a_01_dwm.m2", }, { - fileId = "147959", - text = "sword_1h_long_a_03.m2", - value = "sword_1h_long_a_03.m2", + fileId = "141843", + text = "helm_robe_pvpalliance_a_01_gnf.m2", + value = "helm_robe_pvpalliance_a_01_gnf.m2", }, { - fileId = "147963", - text = "sword_1h_long_b_01.m2", - value = "sword_1h_long_b_01.m2", + fileId = "141844", + text = "helm_robe_pvpalliance_a_01_gnm.m2", + value = "helm_robe_pvpalliance_a_01_gnm.m2", }, { - fileId = "324990", - text = "sword_1h_long_b_01alt.m2", - value = "sword_1h_long_b_01alt.m2", + fileId = "141845", + text = "helm_robe_pvpalliance_a_01_gof.m2", + value = "helm_robe_pvpalliance_a_01_gof.m2", }, { - fileId = "147965", - text = "sword_1h_long_b_02.m2", - value = "sword_1h_long_b_02.m2", + fileId = "141846", + text = "helm_robe_pvpalliance_a_01_gom.m2", + value = "helm_robe_pvpalliance_a_01_gom.m2", }, { - fileId = "147969", - text = "sword_1h_long_b_03.m2", - value = "sword_1h_long_b_03.m2", + fileId = "141847", + text = "helm_robe_pvpalliance_a_01_huf.m2", + value = "helm_robe_pvpalliance_a_01_huf.m2", }, { - fileId = "147973", - text = "sword_1h_long_c_01.m2", - value = "sword_1h_long_c_01.m2", + fileId = "141848", + text = "helm_robe_pvpalliance_a_01_hum.m2", + value = "helm_robe_pvpalliance_a_01_hum.m2", }, { - fileId = "147975", - text = "sword_1h_long_d_01.m2", - value = "sword_1h_long_d_01.m2", + fileId = "141849", + text = "helm_robe_pvpalliance_a_01_nif.m2", + value = "helm_robe_pvpalliance_a_01_nif.m2", }, { - fileId = "147977", - text = "sword_1h_long_d_02.m2", - value = "sword_1h_long_d_02.m2", + fileId = "141850", + text = "helm_robe_pvpalliance_a_01_nim.m2", + value = "helm_robe_pvpalliance_a_01_nim.m2", }, { - fileId = "147984", - text = "sword_1h_long_d_03.m2", - value = "sword_1h_long_d_03.m2", + fileId = "141851", + text = "helm_robe_pvpalliance_a_01_orf.m2", + value = "helm_robe_pvpalliance_a_01_orf.m2", }, { - fileId = "147986", - text = "sword_1h_machete_a_01.m2", - value = "sword_1h_machete_a_01.m2", + fileId = "141852", + text = "helm_robe_pvpalliance_a_01_orm.m2", + value = "helm_robe_pvpalliance_a_01_orm.m2", }, { - fileId = "147988", - text = "sword_1h_machete_b_01.m2", - value = "sword_1h_machete_b_01.m2", + fileId = "141853", + text = "helm_robe_pvpalliance_a_01_scf.m2", + value = "helm_robe_pvpalliance_a_01_scf.m2", }, { - fileId = "147990", - text = "sword_1h_machete_c_01.m2", - value = "sword_1h_machete_c_01.m2", + fileId = "141854", + text = "helm_robe_pvpalliance_a_01_scm.m2", + value = "helm_robe_pvpalliance_a_01_scm.m2", }, { - fileId = "147992", - text = "sword_1h_machete_d_01.m2", - value = "sword_1h_machete_d_01.m2", + fileId = "141855", + text = "helm_robe_pvpalliance_a_01_taf.m2", + value = "helm_robe_pvpalliance_a_01_taf.m2", }, { - fileId = "147994", - text = "sword_1h_mage_d_01.m2", - value = "sword_1h_mage_d_01.m2", + fileId = "141856", + text = "helm_robe_pvpalliance_a_01_tam.m2", + value = "helm_robe_pvpalliance_a_01_tam.m2", }, { - fileId = "147996", - text = "sword_1h_miev_d_01.m2", - value = "sword_1h_miev_d_01.m2", + fileId = "141857", + text = "helm_robe_pvpalliance_a_01_trf.m2", + value = "helm_robe_pvpalliance_a_01_trf.m2", }, { - fileId = "238895", - text = "sword_1h_naxx25_d_01.m2", - value = "sword_1h_naxx25_d_01.m2", + fileId = "141858", + text = "helm_robe_pvpalliance_a_01_trm.m2", + value = "helm_robe_pvpalliance_a_01_trm.m2", }, { - fileId = "147998", - text = "sword_1h_naxxramas_d_01.m2", - value = "sword_1h_naxxramas_d_01.m2", + fileId = "454304", + text = "helm_robe_pvpalliance_a_01_wof.m2", + value = "helm_robe_pvpalliance_a_01_wof.m2", }, { - fileId = "148000", - text = "sword_1h_nexus_d_01.m2", - value = "sword_1h_nexus_d_01.m2", + fileId = "432030", + text = "helm_robe_pvpalliance_a_01_wom.m2", + value = "helm_robe_pvpalliance_a_01_wom.m2", }, { - fileId = "148006", - text = "sword_1h_nexus_d_02.m2", - value = "sword_1h_nexus_d_02.m2", + fileId = "141862", + text = "helm_robe_pvpalliance_b_01_drf.m2", + value = "helm_robe_pvpalliance_b_01_drf.m2", }, { - fileId = "148012", - text = "sword_1h_nexus_d_03.m2", - value = "sword_1h_nexus_d_03.m2", + fileId = "141863", + text = "helm_robe_pvpalliance_b_01_drm.m2", + value = "helm_robe_pvpalliance_b_01_drm.m2", }, { - fileId = "148018", - text = "sword_1h_northrend_b_01.m2", - value = "sword_1h_northrend_b_01.m2", + fileId = "141864", + text = "helm_robe_pvpalliance_b_01_gof.m2", + value = "helm_robe_pvpalliance_b_01_gof.m2", }, { - fileId = "148023", - text = "sword_1h_northrend_b_02.m2", - value = "sword_1h_northrend_b_02.m2", + fileId = "141865", + text = "helm_robe_pvpalliance_b_01_gom.m2", + value = "helm_robe_pvpalliance_b_01_gom.m2", }, { - fileId = "148030", - text = "sword_1h_northrend_b_03.m2", - value = "sword_1h_northrend_b_03.m2", + fileId = "141866", + text = "helm_robe_pvpalliance_c_01_bef.m2", + value = "helm_robe_pvpalliance_c_01_bef.m2", }, { - fileId = "148038", - text = "sword_1h_northrend_c_01.m2", - value = "sword_1h_northrend_c_01.m2", + fileId = "141867", + text = "helm_robe_pvpalliance_c_01_bem.m2", + value = "helm_robe_pvpalliance_c_01_bem.m2", }, { - fileId = "148045", - text = "sword_1h_northrend_c_02.m2", - value = "sword_1h_northrend_c_02.m2", + fileId = "141868", + text = "helm_robe_pvpalliance_c_01_drf.m2", + value = "helm_robe_pvpalliance_c_01_drf.m2", }, { - fileId = "148050", - text = "sword_1h_northrend_c_03.m2", - value = "sword_1h_northrend_c_03.m2", + fileId = "141869", + text = "helm_robe_pvpalliance_c_01_drm.m2", + value = "helm_robe_pvpalliance_c_01_drm.m2", }, { - fileId = "148055", - text = "sword_1h_northrend_d_01.m2", - value = "sword_1h_northrend_d_01.m2", + fileId = "141870", + text = "helm_robe_pvpalliance_c_01_dwf.m2", + value = "helm_robe_pvpalliance_c_01_dwf.m2", }, { - fileId = "148059", - text = "sword_1h_northrend_d_02.m2", - value = "sword_1h_northrend_d_02.m2", + fileId = "141871", + text = "helm_robe_pvpalliance_c_01_dwm.m2", + value = "helm_robe_pvpalliance_c_01_dwm.m2", }, { - fileId = "148065", - text = "sword_1h_northrend_d_03.m2", - value = "sword_1h_northrend_d_03.m2", + fileId = "141872", + text = "helm_robe_pvpalliance_c_01_gnf.m2", + value = "helm_robe_pvpalliance_c_01_gnf.m2", }, { - fileId = "304092", - text = "sword_1h_pvealliance_d_01.m2", - value = "sword_1h_pvealliance_d_01.m2", + fileId = "141873", + text = "helm_robe_pvpalliance_c_01_gnm.m2", + value = "helm_robe_pvpalliance_c_01_gnm.m2", }, { - fileId = "304306", - text = "sword_1h_pvealliance_d_02.m2", - value = "sword_1h_pvealliance_d_02.m2", + fileId = "432031", + text = "helm_robe_pvpalliance_c_01_gof.m2", + value = "helm_robe_pvpalliance_c_01_gof.m2", }, { - fileId = "251942", - text = "sword_1h_pvehorde_d_01.m2", - value = "sword_1h_pvehorde_d_01.m2", + fileId = "432032", + text = "helm_robe_pvpalliance_c_01_gom.m2", + value = "helm_robe_pvpalliance_c_01_gom.m2", }, { - fileId = "252224", - text = "sword_1h_pvehorde_d_02.m2", - value = "sword_1h_pvehorde_d_02.m2", + fileId = "141874", + text = "helm_robe_pvpalliance_c_01_huf.m2", + value = "helm_robe_pvpalliance_c_01_huf.m2", }, { - fileId = "306153", - text = "sword_1h_pvp320_c_01.m2", - value = "sword_1h_pvp320_c_01.m2", + fileId = "141875", + text = "helm_robe_pvpalliance_c_01_hum.m2", + value = "helm_robe_pvpalliance_c_01_hum.m2", }, { - fileId = "327851", - text = "sword_1h_pvp330_d_01.m2", - value = "sword_1h_pvp330_d_01.m2", + fileId = "141876", + text = "helm_robe_pvpalliance_c_01_nif.m2", + value = "helm_robe_pvpalliance_c_01_nif.m2", }, { - fileId = "238900", - text = "sword_1h_pvp_c_01.m2", - value = "sword_1h_pvp_c_01.m2", + fileId = "141877", + text = "helm_robe_pvpalliance_c_01_nim.m2", + value = "helm_robe_pvpalliance_c_01_nim.m2", }, { - fileId = "148070", - text = "sword_1h_pvpalliance_a_01.m2", - value = "sword_1h_pvpalliance_a_01.m2", + fileId = "141878", + text = "helm_robe_pvpalliance_c_01_orf.m2", + value = "helm_robe_pvpalliance_c_01_orf.m2", }, { - fileId = "148075", - text = "sword_1h_pvphorde_a_01.m2", - value = "sword_1h_pvphorde_a_01.m2", + fileId = "141879", + text = "helm_robe_pvpalliance_c_01_orm.m2", + value = "helm_robe_pvpalliance_c_01_orm.m2", }, { - fileId = "326453", - text = "sword_1h_queldelar_d_01.m2", - value = "sword_1h_queldelar_d_01.m2", + fileId = "141880", + text = "helm_robe_pvpalliance_c_01_scf.m2", + value = "helm_robe_pvpalliance_c_01_scf.m2", }, { - fileId = "148079", - text = "sword_1h_raid_d_01.m2", - value = "sword_1h_raid_d_01.m2", + fileId = "141881", + text = "helm_robe_pvpalliance_c_01_scm.m2", + value = "helm_robe_pvpalliance_c_01_scm.m2", }, { - fileId = "148081", - text = "sword_1h_raid_d_02.m2", - value = "sword_1h_raid_d_02.m2", + fileId = "141882", + text = "helm_robe_pvpalliance_c_01_taf.m2", + value = "helm_robe_pvpalliance_c_01_taf.m2", }, { - fileId = "148083", - text = "sword_1h_raid_d_03.m2", - value = "sword_1h_raid_d_03.m2", + fileId = "141883", + text = "helm_robe_pvpalliance_c_01_tam.m2", + value = "helm_robe_pvpalliance_c_01_tam.m2", }, { - fileId = "148085", - text = "sword_1h_raid_d_04.m2", - value = "sword_1h_raid_d_04.m2", + fileId = "141884", + text = "helm_robe_pvpalliance_c_01_trf.m2", + value = "helm_robe_pvpalliance_c_01_trf.m2", }, { - fileId = "148087", - text = "sword_1h_raid_d_05.m2", - value = "sword_1h_raid_d_05.m2", + fileId = "141885", + text = "helm_robe_pvpalliance_c_01_trm.m2", + value = "helm_robe_pvpalliance_c_01_trm.m2", }, { - fileId = "148089", - text = "sword_1h_raid_d_06.m2", - value = "sword_1h_raid_d_06.m2", + fileId = "454305", + text = "helm_robe_pvpalliance_c_01_wof.m2", + value = "helm_robe_pvpalliance_c_01_wof.m2", }, { - fileId = "148090", - text = "sword_1h_rapier_a_01.m2", - value = "sword_1h_rapier_a_01.m2", + fileId = "432033", + text = "helm_robe_pvpalliance_c_01_wom.m2", + value = "helm_robe_pvpalliance_c_01_wom.m2", }, { - fileId = "148095", - text = "sword_1h_sabre_a_01.m2", - value = "sword_1h_sabre_a_01.m2", + fileId = "141889", + text = "helm_robe_pvphorde_a_01_bef.m2", + value = "helm_robe_pvphorde_a_01_bef.m2", }, { - fileId = "148099", - text = "sword_1h_sabre_a_02.m2", - value = "sword_1h_sabre_a_02.m2", + fileId = "141890", + text = "helm_robe_pvphorde_a_01_bem.m2", + value = "helm_robe_pvphorde_a_01_bem.m2", }, { - fileId = "148103", - text = "sword_1h_sabre_a_03.m2", - value = "sword_1h_sabre_a_03.m2", + fileId = "141891", + text = "helm_robe_pvphorde_a_01_drf.m2", + value = "helm_robe_pvphorde_a_01_drf.m2", }, { - fileId = "148107", - text = "sword_1h_sabre_b_01.m2", - value = "sword_1h_sabre_b_01.m2", + fileId = "141892", + text = "helm_robe_pvphorde_a_01_drm.m2", + value = "helm_robe_pvphorde_a_01_drm.m2", }, { - fileId = "148111", - text = "sword_1h_sabre_b_02.m2", - value = "sword_1h_sabre_b_02.m2", + fileId = "141893", + text = "helm_robe_pvphorde_a_01_dwf.m2", + value = "helm_robe_pvphorde_a_01_dwf.m2", }, { - fileId = "148115", - text = "sword_1h_sabre_b_03.m2", - value = "sword_1h_sabre_b_03.m2", + fileId = "141894", + text = "helm_robe_pvphorde_a_01_dwm.m2", + value = "helm_robe_pvphorde_a_01_dwm.m2", }, { - fileId = "148119", - text = "sword_1h_sabre_c_01.m2", - value = "sword_1h_sabre_c_01.m2", + fileId = "141895", + text = "helm_robe_pvphorde_a_01_gnf.m2", + value = "helm_robe_pvphorde_a_01_gnf.m2", }, { - fileId = "148120", - text = "sword_1h_scimitar_a_02.m2", - value = "sword_1h_scimitar_a_02.m2", + fileId = "141896", + text = "helm_robe_pvphorde_a_01_gnm.m2", + value = "helm_robe_pvphorde_a_01_gnm.m2", }, { - fileId = "148127", - text = "sword_1h_shivan_d_01.m2", - value = "sword_1h_shivan_d_01.m2", + fileId = "141897", + text = "helm_robe_pvphorde_a_01_gof.m2", + value = "helm_robe_pvphorde_a_01_gof.m2", }, { - fileId = "148128", - text = "sword_1h_short_a_01.m2", - value = "sword_1h_short_a_01.m2", + fileId = "432034", + text = "helm_robe_pvphorde_a_01_gom.m2", + value = "helm_robe_pvphorde_a_01_gom.m2", }, { - fileId = "148132", - text = "sword_1h_short_a_02.m2", - value = "sword_1h_short_a_02.m2", + fileId = "141898", + text = "helm_robe_pvphorde_a_01_huf.m2", + value = "helm_robe_pvphorde_a_01_huf.m2", }, { - fileId = "148136", - text = "sword_1h_short_a_03.m2", - value = "sword_1h_short_a_03.m2", + fileId = "141899", + text = "helm_robe_pvphorde_a_01_hum.m2", + value = "helm_robe_pvphorde_a_01_hum.m2", }, { - fileId = "148140", - text = "sword_1h_short_b_01.m2", - value = "sword_1h_short_b_01.m2", + fileId = "141900", + text = "helm_robe_pvphorde_a_01_nif.m2", + value = "helm_robe_pvphorde_a_01_nif.m2", }, { - fileId = "148144", - text = "sword_1h_short_b_02.m2", - value = "sword_1h_short_b_02.m2", + fileId = "141901", + text = "helm_robe_pvphorde_a_01_nim.m2", + value = "helm_robe_pvphorde_a_01_nim.m2", }, { - fileId = "148148", - text = "sword_1h_short_b_03.m2", - value = "sword_1h_short_b_03.m2", + fileId = "141902", + text = "helm_robe_pvphorde_a_01_orf.m2", + value = "helm_robe_pvphorde_a_01_orf.m2", }, { - fileId = "148152", - text = "sword_1h_short_c_01.m2", - value = "sword_1h_short_c_01.m2", + fileId = "141903", + text = "helm_robe_pvphorde_a_01_orm.m2", + value = "helm_robe_pvphorde_a_01_orm.m2", }, { - fileId = "148154", - text = "sword_1h_short_c_02.m2", - value = "sword_1h_short_c_02.m2", + fileId = "141904", + text = "helm_robe_pvphorde_a_01_scf.m2", + value = "helm_robe_pvphorde_a_01_scf.m2", }, { - fileId = "148156", - text = "sword_1h_stratholme_d_01.m2", - value = "sword_1h_stratholme_d_01.m2", + fileId = "141905", + text = "helm_robe_pvphorde_a_01_scm.m2", + value = "helm_robe_pvphorde_a_01_scm.m2", }, { - fileId = "148157", - text = "sword_1h_stratholme_d_02.m2", - value = "sword_1h_stratholme_d_02.m2", + fileId = "141906", + text = "helm_robe_pvphorde_a_01_taf.m2", + value = "helm_robe_pvphorde_a_01_taf.m2", }, { - fileId = "148158", - text = "sword_1h_stratholme_d_03.m2", - value = "sword_1h_stratholme_d_03.m2", + fileId = "141907", + text = "helm_robe_pvphorde_a_01_tam.m2", + value = "helm_robe_pvphorde_a_01_tam.m2", }, { - fileId = "148160", - text = "sword_1h_sunwell_d_01.m2", - value = "sword_1h_sunwell_d_01.m2", + fileId = "141908", + text = "helm_robe_pvphorde_a_01_trf.m2", + value = "helm_robe_pvphorde_a_01_trf.m2", }, { - fileId = "148165", - text = "sword_1h_sunwell_d_02.m2", - value = "sword_1h_sunwell_d_02.m2", + fileId = "141909", + text = "helm_robe_pvphorde_a_01_trm.m2", + value = "helm_robe_pvphorde_a_01_trm.m2", }, { - fileId = "148169", - text = "sword_1h_thunderblade_a_01.m2", - value = "sword_1h_thunderblade_a_01.m2", + fileId = "454306", + text = "helm_robe_pvphorde_a_01_wof.m2", + value = "helm_robe_pvphorde_a_01_wof.m2", }, { - fileId = "148171", - text = "sword_1h_troll_b_01.m2", - value = "sword_1h_troll_b_01.m2", + fileId = "432035", + text = "helm_robe_pvphorde_a_01_wom.m2", + value = "helm_robe_pvphorde_a_01_wom.m2", }, { - fileId = "148172", - text = "sword_1h_ulduar_d_01.m2", - value = "sword_1h_ulduar_d_01.m2", + fileId = "141913", + text = "helm_robe_pvphorde_b_01_bef.m2", + value = "helm_robe_pvphorde_b_01_bef.m2", }, { - fileId = "148178", - text = "sword_1h_ulduar_d_03.m2", - value = "sword_1h_ulduar_d_03.m2", + fileId = "141914", + text = "helm_robe_pvphorde_b_01_bem.m2", + value = "helm_robe_pvphorde_b_01_bem.m2", }, { - fileId = "238906", - text = "sword_1h_ulduarraid_d_01.m2", - value = "sword_1h_ulduarraid_d_01.m2", + fileId = "141915", + text = "helm_robe_pvphorde_b_01_drf.m2", + value = "helm_robe_pvphorde_b_01_drf.m2", }, { - fileId = "238912", - text = "sword_1h_ulduarraid_d_02.m2", - value = "sword_1h_ulduarraid_d_02.m2", + fileId = "141916", + text = "helm_robe_pvphorde_b_01_drm.m2", + value = "helm_robe_pvphorde_b_01_drm.m2", }, { - fileId = "238918", - text = "sword_1h_ulduarraid_d_03.m2", - value = "sword_1h_ulduarraid_d_03.m2", - }, - { - fileId = "238924", - text = "sword_1h_ulduarraid_d_04.m2", - value = "sword_1h_ulduarraid_d_04.m2", + fileId = "141917", + text = "helm_robe_pvphorde_b_01_gof.m2", + value = "helm_robe_pvphorde_b_01_gof.m2", }, { - fileId = "148185", - text = "sword_1h_utgarde_d_01.m2", - value = "sword_1h_utgarde_d_01.m2", + fileId = "141918", + text = "helm_robe_pvphorde_c_01_bef.m2", + value = "helm_robe_pvphorde_c_01_bef.m2", }, { - fileId = "148191", - text = "sword_1h_utgarde_d_02.m2", - value = "sword_1h_utgarde_d_02.m2", + fileId = "141919", + text = "helm_robe_pvphorde_c_01_bem.m2", + value = "helm_robe_pvphorde_c_01_bem.m2", }, { - fileId = "249283", - text = "sword_1h_varian_d_01.m2", - value = "sword_1h_varian_d_01.m2", + fileId = "141920", + text = "helm_robe_pvphorde_c_01_drf.m2", + value = "helm_robe_pvphorde_c_01_drf.m2", }, { - fileId = "148198", - text = "sword_1h_warlock_d_01.m2", - value = "sword_1h_warlock_d_01.m2", + fileId = "141921", + text = "helm_robe_pvphorde_c_01_drm.m2", + value = "helm_robe_pvphorde_c_01_drm.m2", }, { - fileId = "148203", - text = "sword_1h_warrior_d_01.m2", - value = "sword_1h_warrior_d_01.m2", + fileId = "141922", + text = "helm_robe_pvphorde_c_01_dwf.m2", + value = "helm_robe_pvphorde_c_01_dwf.m2", }, { - fileId = "148209", - text = "sword_1h_zulaman_d_01.m2", - value = "sword_1h_zulaman_d_01.m2", + fileId = "141923", + text = "helm_robe_pvphorde_c_01_dwm.m2", + value = "helm_robe_pvphorde_c_01_dwm.m2", }, { - fileId = "148213", - text = "sword_1h_zulaman_d_02.m2", - value = "sword_1h_zulaman_d_02.m2", + fileId = "141924", + text = "helm_robe_pvphorde_c_01_gnf.m2", + value = "helm_robe_pvphorde_c_01_gnf.m2", }, { - fileId = "148218", - text = "sword_1h_zulaman_d_03.m2", - value = "sword_1h_zulaman_d_03.m2", + fileId = "141925", + text = "helm_robe_pvphorde_c_01_gnm.m2", + value = "helm_robe_pvphorde_c_01_gnm.m2", }, { - fileId = "148224", - text = "sword_1h_zulgurub_d_01.m2", - value = "sword_1h_zulgurub_d_01.m2", + fileId = "432036", + text = "helm_robe_pvphorde_c_01_gof.m2", + value = "helm_robe_pvphorde_c_01_gof.m2", }, { - fileId = "148226", - text = "sword_1h_zulgurub_d_02.m2", - value = "sword_1h_zulgurub_d_02.m2", + fileId = "141926", + text = "helm_robe_pvphorde_c_01_gom.m2", + value = "helm_robe_pvphorde_c_01_gom.m2", }, { - fileId = "148228", - text = "sword_2h_ahnqiraj_d_01.m2", - value = "sword_2h_ahnqiraj_d_01.m2", + fileId = "141927", + text = "helm_robe_pvphorde_c_01_huf.m2", + value = "helm_robe_pvphorde_c_01_huf.m2", }, { - fileId = "148231", - text = "sword_2h_ahnqiraj_d_02.m2", - value = "sword_2h_ahnqiraj_d_02.m2", + fileId = "141928", + text = "helm_robe_pvphorde_c_01_hum.m2", + value = "helm_robe_pvphorde_c_01_hum.m2", }, { - fileId = "303908", - text = "sword_2h_alliancecovenant_d_01.m2", - value = "sword_2h_alliancecovenant_d_01.m2", + fileId = "141929", + text = "helm_robe_pvphorde_c_01_nif.m2", + value = "helm_robe_pvphorde_c_01_nif.m2", }, { - fileId = "148233", - text = "sword_2h_ashbringer.m2", - value = "sword_2h_ashbringer.m2", + fileId = "141930", + text = "helm_robe_pvphorde_c_01_nim.m2", + value = "helm_robe_pvphorde_c_01_nim.m2", }, { - fileId = "148234", - text = "sword_2h_ashbringer02.m2", - value = "sword_2h_ashbringer02.m2", + fileId = "141931", + text = "helm_robe_pvphorde_c_01_orf.m2", + value = "helm_robe_pvphorde_c_01_orf.m2", }, { - fileId = "148235", - text = "sword_2h_ashbringer_a_01.m2", - value = "sword_2h_ashbringer_a_01.m2", + fileId = "141932", + text = "helm_robe_pvphorde_c_01_orm.m2", + value = "helm_robe_pvphorde_c_01_orm.m2", }, { - fileId = "148238", - text = "sword_2h_ashbringercorrupt.m2", - value = "sword_2h_ashbringercorrupt.m2", + fileId = "141933", + text = "helm_robe_pvphorde_c_01_scf.m2", + value = "helm_robe_pvphorde_c_01_scf.m2", }, { - fileId = "148240", - text = "sword_2h_auchindoun_d_01.m2", - value = "sword_2h_auchindoun_d_01.m2", + fileId = "141934", + text = "helm_robe_pvphorde_c_01_scm.m2", + value = "helm_robe_pvphorde_c_01_scm.m2", }, { - fileId = "148241", - text = "sword_2h_bastard_d_01.m2", - value = "sword_2h_bastard_d_01.m2", + fileId = "141935", + text = "helm_robe_pvphorde_c_01_taf.m2", + value = "helm_robe_pvphorde_c_01_taf.m2", }, { - fileId = "148244", - text = "sword_2h_blacksmithing_d_01.m2", - value = "sword_2h_blacksmithing_d_01.m2", + fileId = "141936", + text = "helm_robe_pvphorde_c_01_tam.m2", + value = "helm_robe_pvphorde_c_01_tam.m2", }, { - fileId = "148246", - text = "sword_2h_blacksmithing_d_02.m2", - value = "sword_2h_blacksmithing_d_02.m2", + fileId = "141937", + text = "helm_robe_pvphorde_c_01_trf.m2", + value = "helm_robe_pvphorde_c_01_trf.m2", }, { - fileId = "148248", - text = "sword_2h_blacksmithing_d_03.m2", - value = "sword_2h_blacksmithing_d_03.m2", + fileId = "141938", + text = "helm_robe_pvphorde_c_01_trm.m2", + value = "helm_robe_pvphorde_c_01_trm.m2", }, { - fileId = "148250", - text = "sword_2h_blackwing_a_01.m2", - value = "sword_2h_blackwing_a_01.m2", + fileId = "454307", + text = "helm_robe_pvphorde_c_01_wof.m2", + value = "helm_robe_pvphorde_c_01_wof.m2", }, { - fileId = "148252", - text = "sword_2h_blackwing_a_02.m2", - value = "sword_2h_blackwing_a_02.m2", + fileId = "432037", + text = "helm_robe_pvphorde_c_01_wom.m2", + value = "helm_robe_pvphorde_c_01_wom.m2", }, { - fileId = "148254", - text = "sword_2h_blood_a_01.m2", - value = "sword_2h_blood_a_01.m2", + fileId = "532335", + text = "helm_robe_pvpmage_d_01_bef.m2", + value = "helm_robe_pvpmage_d_01_bef.m2", }, { - fileId = "148259", - text = "sword_2h_blood_a_02.m2", - value = "sword_2h_blood_a_02.m2", + fileId = "532337", + text = "helm_robe_pvpmage_d_01_bem.m2", + value = "helm_robe_pvpmage_d_01_bem.m2", }, { - fileId = "148263", - text = "sword_2h_blood_b_01.m2", - value = "sword_2h_blood_b_01.m2", + fileId = "532339", + text = "helm_robe_pvpmage_d_01_drf.m2", + value = "helm_robe_pvpmage_d_01_drf.m2", }, { - fileId = "148268", - text = "sword_2h_blood_b_02.m2", - value = "sword_2h_blood_b_02.m2", + fileId = "532341", + text = "helm_robe_pvpmage_d_01_drm.m2", + value = "helm_robe_pvpmage_d_01_drm.m2", }, { - fileId = "148272", - text = "sword_2h_blood_c_01.m2", - value = "sword_2h_blood_c_01.m2", + fileId = "532343", + text = "helm_robe_pvpmage_d_01_dwf.m2", + value = "helm_robe_pvpmage_d_01_dwf.m2", }, { - fileId = "148277", - text = "sword_2h_blood_c_02.m2", - value = "sword_2h_blood_c_02.m2", + fileId = "532345", + text = "helm_robe_pvpmage_d_01_dwm.m2", + value = "helm_robe_pvpmage_d_01_dwm.m2", }, { - fileId = "148281", - text = "sword_2h_blood_c_03.m2", - value = "sword_2h_blood_c_03.m2", + fileId = "532347", + text = "helm_robe_pvpmage_d_01_gnf.m2", + value = "helm_robe_pvpmage_d_01_gnf.m2", }, { - fileId = "148286", - text = "sword_2h_broadsword_a_01.m2", - value = "sword_2h_broadsword_a_01.m2", + fileId = "532349", + text = "helm_robe_pvpmage_d_01_gnm.m2", + value = "helm_robe_pvpmage_d_01_gnm.m2", }, { - fileId = "148287", - text = "sword_2h_broadsword_a_02.m2", - value = "sword_2h_broadsword_a_02.m2", + fileId = "532351", + text = "helm_robe_pvpmage_d_01_gof.m2", + value = "helm_robe_pvpmage_d_01_gof.m2", }, { - fileId = "148291", - text = "sword_2h_broadsword_a_03.m2", - value = "sword_2h_broadsword_a_03.m2", + fileId = "532353", + text = "helm_robe_pvpmage_d_01_gom.m2", + value = "helm_robe_pvpmage_d_01_gom.m2", }, { - fileId = "148295", - text = "sword_2h_broadsword_b_01.m2", - value = "sword_2h_broadsword_b_01.m2", + fileId = "532355", + text = "helm_robe_pvpmage_d_01_huf.m2", + value = "helm_robe_pvpmage_d_01_huf.m2", }, { - fileId = "148296", - text = "sword_2h_claymore_a_01.m2", - value = "sword_2h_claymore_a_01.m2", + fileId = "532357", + text = "helm_robe_pvpmage_d_01_hum.m2", + value = "helm_robe_pvpmage_d_01_hum.m2", }, { - fileId = "148302", - text = "sword_2h_claymore_a_02.m2", - value = "sword_2h_claymore_a_02.m2", + fileId = "532359", + text = "helm_robe_pvpmage_d_01_nif.m2", + value = "helm_robe_pvpmage_d_01_nif.m2", }, { - fileId = "148307", - text = "sword_2h_claymore_b_01.m2", - value = "sword_2h_claymore_b_01.m2", + fileId = "532361", + text = "helm_robe_pvpmage_d_01_nim.m2", + value = "helm_robe_pvpmage_d_01_nim.m2", }, { - fileId = "148311", - text = "sword_2h_claymore_b_02.m2", - value = "sword_2h_claymore_b_02.m2", + fileId = "532363", + text = "helm_robe_pvpmage_d_01_orf.m2", + value = "helm_robe_pvpmage_d_01_orf.m2", }, { - fileId = "148315", - text = "sword_2h_claymore_c_01.m2", - value = "sword_2h_claymore_c_01.m2", + fileId = "532365", + text = "helm_robe_pvpmage_d_01_orm.m2", + value = "helm_robe_pvpmage_d_01_orm.m2", }, { - fileId = "148317", - text = "sword_2h_cotstrat_d_01.m2", - value = "sword_2h_cotstrat_d_01.m2", + fileId = "532367", + text = "helm_robe_pvpmage_d_01_scf.m2", + value = "helm_robe_pvpmage_d_01_scf.m2", }, { - fileId = "148322", - text = "sword_2h_crystal_c_01.m2", - value = "sword_2h_crystal_c_01.m2", + fileId = "532369", + text = "helm_robe_pvpmage_d_01_scm.m2", + value = "helm_robe_pvpmage_d_01_scm.m2", }, { - fileId = "148327", - text = "sword_2h_crystal_c_02.m2", - value = "sword_2h_crystal_c_02.m2", + fileId = "532371", + text = "helm_robe_pvpmage_d_01_taf.m2", + value = "helm_robe_pvpmage_d_01_taf.m2", }, { - fileId = "148332", - text = "sword_2h_crystal_c_03.m2", - value = "sword_2h_crystal_c_03.m2", + fileId = "532373", + text = "helm_robe_pvpmage_d_01_tam.m2", + value = "helm_robe_pvpmage_d_01_tam.m2", }, { - fileId = "238930", - text = "sword_2h_dalaran_d_01.m2", - value = "sword_2h_dalaran_d_01.m2", + fileId = "532375", + text = "helm_robe_pvpmage_d_01_trf.m2", + value = "helm_robe_pvpmage_d_01_trf.m2", }, { - fileId = "148338", - text = "sword_2h_deathknight_b_01.m2", - value = "sword_2h_deathknight_b_01.m2", + fileId = "532377", + text = "helm_robe_pvpmage_d_01_trm.m2", + value = "helm_robe_pvpmage_d_01_trm.m2", }, { - fileId = "148339", - text = "sword_2h_deathknight_b_01_q.m2", - value = "sword_2h_deathknight_b_01_q.m2", + fileId = "532379", + text = "helm_robe_pvpmage_d_01_wof.m2", + value = "helm_robe_pvpmage_d_01_wof.m2", }, { - fileId = "148345", - text = "sword_2h_demonblade_d_01.m2", - value = "sword_2h_demonblade_d_01.m2", + fileId = "532381", + text = "helm_robe_pvpmage_d_01_wom.m2", + value = "helm_robe_pvpmage_d_01_wom.m2", }, { - fileId = "148347", - text = "sword_2h_draenei_a_01.m2", - value = "sword_2h_draenei_a_01.m2", + fileId = "531839", + text = "helm_robe_pvppriest_d_01_bef.m2", + value = "helm_robe_pvppriest_d_01_bef.m2", }, { - fileId = "148353", - text = "sword_2h_draenei_a_02.m2", - value = "sword_2h_draenei_a_02.m2", + fileId = "531841", + text = "helm_robe_pvppriest_d_01_bem.m2", + value = "helm_robe_pvppriest_d_01_bem.m2", }, { - fileId = "148360", - text = "sword_2h_epic_a_03.m2", - value = "sword_2h_epic_a_03.m2", + fileId = "531843", + text = "helm_robe_pvppriest_d_01_drf.m2", + value = "helm_robe_pvppriest_d_01_drf.m2", }, { - fileId = "327825", - text = "sword_2h_epic_a_03alt.m2", - value = "sword_2h_epic_a_03alt.m2", + fileId = "531845", + text = "helm_robe_pvppriest_d_01_drm.m2", + value = "helm_robe_pvppriest_d_01_drm.m2", }, { - fileId = "252284", - text = "sword_2h_foam_a_01.m2", - value = "sword_2h_foam_a_01.m2", + fileId = "531847", + text = "helm_robe_pvppriest_d_01_dwf.m2", + value = "helm_robe_pvppriest_d_01_dwf.m2", }, { - fileId = "148362", - text = "sword_2h_frostmourne_d_01.m2", - value = "sword_2h_frostmourne_d_01.m2", + fileId = "531849", + text = "helm_robe_pvppriest_d_01_dwm.m2", + value = "helm_robe_pvppriest_d_01_dwm.m2", }, { - fileId = "340549", - text = "sword_2h_frostmourne_d_02.m2", - value = "sword_2h_frostmourne_d_02.m2", + fileId = "531851", + text = "helm_robe_pvppriest_d_01_gnf.m2", + value = "helm_robe_pvppriest_d_01_gnf.m2", }, { - fileId = "345733", - text = "sword_2h_frostmourne_d_02_broken.m2", - value = "sword_2h_frostmourne_d_02_broken.m2", + fileId = "531853", + text = "helm_robe_pvppriest_d_01_gnm.m2", + value = "helm_robe_pvppriest_d_01_gnm.m2", }, { - fileId = "148364", - text = "sword_2h_horde_a_01.m2", - value = "sword_2h_horde_a_01.m2", + fileId = "531855", + text = "helm_robe_pvppriest_d_01_gof.m2", + value = "helm_robe_pvppriest_d_01_gof.m2", }, { - fileId = "148365", - text = "sword_2h_horde_a_02.m2", - value = "sword_2h_horde_a_02.m2", + fileId = "531857", + text = "helm_robe_pvppriest_d_01_gom.m2", + value = "helm_robe_pvppriest_d_01_gom.m2", }, { - fileId = "148367", - text = "sword_2h_horde_b_03.m2", - value = "sword_2h_horde_b_03.m2", + fileId = "531859", + text = "helm_robe_pvppriest_d_01_huf.m2", + value = "helm_robe_pvppriest_d_01_huf.m2", }, { - fileId = "148373", - text = "sword_2h_horde_c_01.m2", - value = "sword_2h_horde_c_01.m2", + fileId = "531861", + text = "helm_robe_pvppriest_d_01_hum.m2", + value = "helm_robe_pvppriest_d_01_hum.m2", }, { - fileId = "148379", - text = "sword_2h_horde_c_02.m2", - value = "sword_2h_horde_c_02.m2", + fileId = "531863", + text = "helm_robe_pvppriest_d_01_nif.m2", + value = "helm_robe_pvppriest_d_01_nif.m2", }, { - fileId = "148385", - text = "sword_2h_horde_c_03.m2", - value = "sword_2h_horde_c_03.m2", + fileId = "531865", + text = "helm_robe_pvppriest_d_01_nim.m2", + value = "helm_robe_pvppriest_d_01_nim.m2", }, { - fileId = "148393", - text = "sword_2h_horde_d_01.m2", - value = "sword_2h_horde_d_01.m2", + fileId = "531867", + text = "helm_robe_pvppriest_d_01_orf.m2", + value = "helm_robe_pvppriest_d_01_orf.m2", }, { - fileId = "148397", - text = "sword_2h_horde_d_02.m2", - value = "sword_2h_horde_d_02.m2", + fileId = "531869", + text = "helm_robe_pvppriest_d_01_orm.m2", + value = "helm_robe_pvppriest_d_01_orm.m2", }, { - fileId = "304031", - text = "sword_2h_hordecovenant_d_01.m2", - value = "sword_2h_hordecovenant_d_01.m2", + fileId = "531871", + text = "helm_robe_pvppriest_d_01_scf.m2", + value = "helm_robe_pvppriest_d_01_scf.m2", }, { - fileId = "148401", - text = "sword_2h_hyjal_d_01.m2", - value = "sword_2h_hyjal_d_01.m2", + fileId = "531873", + text = "helm_robe_pvppriest_d_01_scm.m2", + value = "helm_robe_pvppriest_d_01_scm.m2", }, { - fileId = "318525", - text = "sword_2h_icecrownraid_d_01.m2", - value = "sword_2h_icecrownraid_d_01.m2", + fileId = "531875", + text = "helm_robe_pvppriest_d_01_taf.m2", + value = "helm_robe_pvppriest_d_01_taf.m2", }, { - fileId = "148406", - text = "sword_2h_katana_a_01.m2", - value = "sword_2h_katana_a_01.m2", + fileId = "531877", + text = "helm_robe_pvppriest_d_01_tam.m2", + value = "helm_robe_pvppriest_d_01_tam.m2", }, { - fileId = "148410", - text = "sword_2h_katana_b_01.m2", - value = "sword_2h_katana_b_01.m2", + fileId = "531879", + text = "helm_robe_pvppriest_d_01_trf.m2", + value = "helm_robe_pvppriest_d_01_trf.m2", }, { - fileId = "148414", - text = "sword_2h_katana_b_02.m2", - value = "sword_2h_katana_b_02.m2", + fileId = "531881", + text = "helm_robe_pvppriest_d_01_trm.m2", + value = "helm_robe_pvppriest_d_01_trm.m2", }, { - fileId = "148418", - text = "sword_2h_korean_a_01.m2", - value = "sword_2h_korean_a_01.m2", + fileId = "531883", + text = "helm_robe_pvppriest_d_01_wof.m2", + value = "helm_robe_pvppriest_d_01_wof.m2", }, { - fileId = "148420", - text = "sword_2h_korean_c_01.m2", - value = "sword_2h_korean_c_01.m2", + fileId = "531885", + text = "helm_robe_pvppriest_d_01_wom.m2", + value = "helm_robe_pvppriest_d_01_wom.m2", }, { - fileId = "148423", - text = "sword_2h_nexus_d_01.m2", - value = "sword_2h_nexus_d_01.m2", + fileId = "238281", + text = "helm_robe_pvpwarlock_b_01_bef.m2", + value = "helm_robe_pvpwarlock_b_01_bef.m2", }, { - fileId = "148429", - text = "sword_2h_northrend_b_01.m2", - value = "sword_2h_northrend_b_01.m2", + fileId = "238282", + text = "helm_robe_pvpwarlock_b_01_bem.m2", + value = "helm_robe_pvpwarlock_b_01_bem.m2", }, { - fileId = "148436", - text = "sword_2h_northrend_b_02.m2", - value = "sword_2h_northrend_b_02.m2", + fileId = "238283", + text = "helm_robe_pvpwarlock_b_01_drf.m2", + value = "helm_robe_pvpwarlock_b_01_drf.m2", }, { - fileId = "148443", - text = "sword_2h_northrend_c_01.m2", - value = "sword_2h_northrend_c_01.m2", + fileId = "238284", + text = "helm_robe_pvpwarlock_b_01_drm.m2", + value = "helm_robe_pvpwarlock_b_01_drm.m2", }, { - fileId = "148448", - text = "sword_2h_northrend_c_02.m2", - value = "sword_2h_northrend_c_02.m2", + fileId = "238285", + text = "helm_robe_pvpwarlock_b_01_dwf.m2", + value = "helm_robe_pvpwarlock_b_01_dwf.m2", }, { - fileId = "148453", - text = "sword_2h_northrend_c_03.m2", - value = "sword_2h_northrend_c_03.m2", + fileId = "238286", + text = "helm_robe_pvpwarlock_b_01_dwm.m2", + value = "helm_robe_pvpwarlock_b_01_dwm.m2", }, { - fileId = "148458", - text = "sword_2h_northrend_d_01.m2", - value = "sword_2h_northrend_d_01.m2", + fileId = "238287", + text = "helm_robe_pvpwarlock_b_01_gnf.m2", + value = "helm_robe_pvpwarlock_b_01_gnf.m2", }, { - fileId = "148462", - text = "sword_2h_northrend_d_02.m2", - value = "sword_2h_northrend_d_02.m2", + fileId = "238288", + text = "helm_robe_pvpwarlock_b_01_gnm.m2", + value = "helm_robe_pvpwarlock_b_01_gnm.m2", }, { - fileId = "148469", - text = "sword_2h_northrend_d_03.m2", - value = "sword_2h_northrend_d_03.m2", + fileId = "238289", + text = "helm_robe_pvpwarlock_b_01_gof.m2", + value = "helm_robe_pvpwarlock_b_01_gof.m2", }, { - fileId = "148474", - text = "sword_2h_northrend_d_04.m2", - value = "sword_2h_northrend_d_04.m2", + fileId = "238290", + text = "helm_robe_pvpwarlock_b_01_gom.m2", + value = "helm_robe_pvpwarlock_b_01_gom.m2", }, { - fileId = "148480", - text = "sword_2h_northrend_d_05.m2", - value = "sword_2h_northrend_d_05.m2", + fileId = "238291", + text = "helm_robe_pvpwarlock_b_01_huf.m2", + value = "helm_robe_pvpwarlock_b_01_huf.m2", }, { - fileId = "254942", - text = "sword_2h_pvealliance_d_01.m2", - value = "sword_2h_pvealliance_d_01.m2", + fileId = "238292", + text = "helm_robe_pvpwarlock_b_01_hum.m2", + value = "helm_robe_pvpwarlock_b_01_hum.m2", }, { - fileId = "252783", - text = "sword_2h_pvehorde_d_01.m2", - value = "sword_2h_pvehorde_d_01.m2", + fileId = "238293", + text = "helm_robe_pvpwarlock_b_01_nif.m2", + value = "helm_robe_pvpwarlock_b_01_nif.m2", }, { - fileId = "307048", - text = "sword_2h_pvp320_c_01.m2", - value = "sword_2h_pvp320_c_01.m2", + fileId = "238294", + text = "helm_robe_pvpwarlock_b_01_nim.m2", + value = "helm_robe_pvpwarlock_b_01_nim.m2", }, { - fileId = "327855", - text = "sword_2h_pvp330_d_01.m2", - value = "sword_2h_pvp330_d_01.m2", + fileId = "238295", + text = "helm_robe_pvpwarlock_b_01_orf.m2", + value = "helm_robe_pvpwarlock_b_01_orf.m2", }, { - fileId = "238936", - text = "sword_2h_pvp_c_01.m2", - value = "sword_2h_pvp_c_01.m2", + fileId = "238296", + text = "helm_robe_pvpwarlock_b_01_orm.m2", + value = "helm_robe_pvpwarlock_b_01_orm.m2", }, { - fileId = "148485", - text = "sword_2h_pvpalliance_a_01.m2", - value = "sword_2h_pvpalliance_a_01.m2", + fileId = "238297", + text = "helm_robe_pvpwarlock_b_01_scf.m2", + value = "helm_robe_pvpwarlock_b_01_scf.m2", }, { - fileId = "148487", - text = "sword_2h_pvphorde_a_01.m2", - value = "sword_2h_pvphorde_a_01.m2", + fileId = "238298", + text = "helm_robe_pvpwarlock_b_01_scm.m2", + value = "helm_robe_pvpwarlock_b_01_scm.m2", }, { - fileId = "148490", - text = "sword_2h_raid_d_01.m2", - value = "sword_2h_raid_d_01.m2", + fileId = "238299", + text = "helm_robe_pvpwarlock_b_01_taf.m2", + value = "helm_robe_pvpwarlock_b_01_taf.m2", }, { - fileId = "148492", - text = "sword_2h_raid_d_02.m2", - value = "sword_2h_raid_d_02.m2", + fileId = "238300", + text = "helm_robe_pvpwarlock_b_01_tam.m2", + value = "helm_robe_pvpwarlock_b_01_tam.m2", }, { - fileId = "148494", - text = "sword_2h_raid_d_03.m2", - value = "sword_2h_raid_d_03.m2", + fileId = "238301", + text = "helm_robe_pvpwarlock_b_01_trf.m2", + value = "helm_robe_pvpwarlock_b_01_trf.m2", }, { - fileId = "148496", - text = "sword_2h_raid_d_04.m2", - value = "sword_2h_raid_d_04.m2", + fileId = "238302", + text = "helm_robe_pvpwarlock_b_01_trm.m2", + value = "helm_robe_pvpwarlock_b_01_trm.m2", }, { - fileId = "148498", - text = "sword_2h_raid_d_05.m2", - value = "sword_2h_raid_d_05.m2", + fileId = "454308", + text = "helm_robe_pvpwarlock_b_01_wof.m2", + value = "helm_robe_pvpwarlock_b_01_wof.m2", }, { - fileId = "148500", - text = "sword_2h_raid_d_06.m2", - value = "sword_2h_raid_d_06.m2", + fileId = "454309", + text = "helm_robe_pvpwarlock_b_01_wom.m2", + value = "helm_robe_pvpwarlock_b_01_wom.m2", }, { - fileId = "148502", - text = "sword_2h_stratholme_d_01.m2", - value = "sword_2h_stratholme_d_01.m2", + fileId = "254143", + text = "helm_robe_pvpwarlock_b_02_bef.m2", + value = "helm_robe_pvpwarlock_b_02_bef.m2", }, { - fileId = "148504", - text = "sword_2h_stratholme_d_02.m2", - value = "sword_2h_stratholme_d_02.m2", + fileId = "254144", + text = "helm_robe_pvpwarlock_b_02_bem.m2", + value = "helm_robe_pvpwarlock_b_02_bem.m2", }, { - fileId = "148507", - text = "sword_2h_sunwell_d_01.m2", - value = "sword_2h_sunwell_d_01.m2", + fileId = "254145", + text = "helm_robe_pvpwarlock_b_02_drf.m2", + value = "helm_robe_pvpwarlock_b_02_drf.m2", }, { - fileId = "148513", - text = "sword_2h_tauren_b_01.m2", - value = "sword_2h_tauren_b_01.m2", + fileId = "254146", + text = "helm_robe_pvpwarlock_b_02_drm.m2", + value = "helm_robe_pvpwarlock_b_02_drm.m2", }, { - fileId = "148514", - text = "sword_2h_ulduar_d_01.m2", - value = "sword_2h_ulduar_d_01.m2", + fileId = "254147", + text = "helm_robe_pvpwarlock_b_02_dwf.m2", + value = "helm_robe_pvpwarlock_b_02_dwf.m2", }, { - fileId = "238944", - text = "sword_2h_ulduarraid_d_01.m2", - value = "sword_2h_ulduarraid_d_01.m2", + fileId = "254148", + text = "helm_robe_pvpwarlock_b_02_dwm.m2", + value = "helm_robe_pvpwarlock_b_02_dwm.m2", }, { - fileId = "148520", - text = "sword_2h_utgarde_d_01.m2", - value = "sword_2h_utgarde_d_01.m2", + fileId = "254149", + text = "helm_robe_pvpwarlock_b_02_gnf.m2", + value = "helm_robe_pvpwarlock_b_02_gnf.m2", }, { - fileId = "148525", - text = "sword_2h_zulaman_d_01.m2", - value = "sword_2h_zulaman_d_01.m2", + fileId = "254150", + text = "helm_robe_pvpwarlock_b_02_gnm.m2", + value = "helm_robe_pvpwarlock_b_02_gnm.m2", }, { - fileId = "148530", - text = "sword_2h_zulgurub_d_01.m2", - value = "sword_2h_zulgurub_d_01.m2", + fileId = "254151", + text = "helm_robe_pvpwarlock_b_02_gof.m2", + value = "helm_robe_pvpwarlock_b_02_gof.m2", }, { - fileId = "148534", - text = "thrown_1h_axe_a_01.m2", - value = "thrown_1h_axe_a_01.m2", + fileId = "254152", + text = "helm_robe_pvpwarlock_b_02_gom.m2", + value = "helm_robe_pvpwarlock_b_02_gom.m2", }, { - fileId = "148538", - text = "thrown_1h_axe_a_02.m2", - value = "thrown_1h_axe_a_02.m2", + fileId = "254153", + text = "helm_robe_pvpwarlock_b_02_huf.m2", + value = "helm_robe_pvpwarlock_b_02_huf.m2", }, { - fileId = "148542", - text = "thrown_1h_axe_b_01.m2", - value = "thrown_1h_axe_b_01.m2", + fileId = "254154", + text = "helm_robe_pvpwarlock_b_02_hum.m2", + value = "helm_robe_pvpwarlock_b_02_hum.m2", }, { - fileId = "250653", - text = "thrown_1h_bomb_c_01.m2", - value = "thrown_1h_bomb_c_01.m2", + fileId = "254155", + text = "helm_robe_pvpwarlock_b_02_nif.m2", + value = "helm_robe_pvpwarlock_b_02_nif.m2", }, { - fileId = "148546", - text = "thrown_1h_boomerang_a_01.m2", - value = "thrown_1h_boomerang_a_01.m2", + fileId = "254156", + text = "helm_robe_pvpwarlock_b_02_nim.m2", + value = "helm_robe_pvpwarlock_b_02_nim.m2", }, { - fileId = "148553", - text = "thrown_1h_coilfang_dagger_d_01.m2", - value = "thrown_1h_coilfang_dagger_d_01.m2", + fileId = "254157", + text = "helm_robe_pvpwarlock_b_02_orf.m2", + value = "helm_robe_pvpwarlock_b_02_orf.m2", }, { - fileId = "148554", - text = "thrown_1h_dagger_a_01.m2", - value = "thrown_1h_dagger_a_01.m2", + fileId = "254158", + text = "helm_robe_pvpwarlock_b_02_orm.m2", + value = "helm_robe_pvpwarlock_b_02_orm.m2", }, { - fileId = "148558", - text = "thrown_1h_dagger_a_02.m2", - value = "thrown_1h_dagger_a_02.m2", + fileId = "254159", + text = "helm_robe_pvpwarlock_b_02_scf.m2", + value = "helm_robe_pvpwarlock_b_02_scf.m2", }, { - fileId = "148562", - text = "thrown_1h_dagger_b_01.m2", - value = "thrown_1h_dagger_b_01.m2", + fileId = "254160", + text = "helm_robe_pvpwarlock_b_02_scm.m2", + value = "helm_robe_pvpwarlock_b_02_scm.m2", }, { - fileId = "148566", - text = "thrown_1h_dynamite_a_01.m2", - value = "thrown_1h_dynamite_a_01.m2", + fileId = "254161", + text = "helm_robe_pvpwarlock_b_02_taf.m2", + value = "helm_robe_pvpwarlock_b_02_taf.m2", }, { - fileId = "148568", - text = "thrown_1h_dynamite_a_02.m2", - value = "thrown_1h_dynamite_a_02.m2", + fileId = "254162", + text = "helm_robe_pvpwarlock_b_02_tam.m2", + value = "helm_robe_pvpwarlock_b_02_tam.m2", }, { - fileId = "148569", - text = "thrown_1h_fan_a_01.m2", - value = "thrown_1h_fan_a_01.m2", + fileId = "254163", + text = "helm_robe_pvpwarlock_b_02_trf.m2", + value = "helm_robe_pvpwarlock_b_02_trf.m2", }, { - fileId = "238950", - text = "thrown_1h_giant_weaponboulder.m2", - value = "thrown_1h_giant_weaponboulder.m2", + fileId = "254164", + text = "helm_robe_pvpwarlock_b_02_trm.m2", + value = "helm_robe_pvpwarlock_b_02_trm.m2", }, { - fileId = "148570", - text = "thrown_1h_hammer_c_01.m2", - value = "thrown_1h_hammer_c_01.m2", + fileId = "454310", + text = "helm_robe_pvpwarlock_b_02_wof.m2", + value = "helm_robe_pvpwarlock_b_02_wof.m2", }, { - fileId = "148572", - text = "thrown_1h_harpoon_d_01.m2", - value = "thrown_1h_harpoon_d_01.m2", + fileId = "454311", + text = "helm_robe_pvpwarlock_b_02_wom.m2", + value = "helm_robe_pvpwarlock_b_02_wom.m2", }, { - fileId = "148574", - text = "thrown_1h_molotov_a_01.m2", - value = "thrown_1h_molotov_a_01.m2", + fileId = "305841", + text = "helm_robe_pvpwarlock_b_03_bef.m2", + value = "helm_robe_pvpwarlock_b_03_bef.m2", }, { - fileId = "238951", - text = "thrown_1h_naxx25_d_01.m2", - value = "thrown_1h_naxx25_d_01.m2", + fileId = "305845", + text = "helm_robe_pvpwarlock_b_03_bem.m2", + value = "helm_robe_pvpwarlock_b_03_bem.m2", }, { - fileId = "306924", - text = "thrown_1h_pvp320_c_01.m2", - value = "thrown_1h_pvp320_c_01.m2", + fileId = "305849", + text = "helm_robe_pvpwarlock_b_03_drf.m2", + value = "helm_robe_pvpwarlock_b_03_drf.m2", }, { - fileId = "328485", - text = "thrown_1h_pvp330_d_01.m2", - value = "thrown_1h_pvp330_d_01.m2", + fileId = "305853", + text = "helm_robe_pvpwarlock_b_03_drm.m2", + value = "helm_robe_pvpwarlock_b_03_drm.m2", }, { - fileId = "148575", - text = "thrown_1h_shuriken_a_01.m2", - value = "thrown_1h_shuriken_a_01.m2", + fileId = "305857", + text = "helm_robe_pvpwarlock_b_03_dwf.m2", + value = "helm_robe_pvpwarlock_b_03_dwf.m2", }, { - fileId = "148579", - text = "thrown_1h_shuriken_a_02.m2", - value = "thrown_1h_shuriken_a_02.m2", + fileId = "305861", + text = "helm_robe_pvpwarlock_b_03_dwm.m2", + value = "helm_robe_pvpwarlock_b_03_dwm.m2", }, { - fileId = "148583", - text = "thrown_1h_shuriken_b_01.m2", - value = "thrown_1h_shuriken_b_01.m2", + fileId = "305865", + text = "helm_robe_pvpwarlock_b_03_gnf.m2", + value = "helm_robe_pvpwarlock_b_03_gnf.m2", }, { - fileId = "148587", - text = "thrown_1h_sunwell_d_01.m2", - value = "thrown_1h_sunwell_d_01.m2", + fileId = "305869", + text = "helm_robe_pvpwarlock_b_03_gnm.m2", + value = "helm_robe_pvpwarlock_b_03_gnm.m2", }, { - fileId = "148593", - text = "totem_2h_carved_b_01.m2", - value = "totem_2h_carved_b_01.m2", + fileId = "305873", + text = "helm_robe_pvpwarlock_b_03_gof.m2", + value = "helm_robe_pvpwarlock_b_03_gof.m2", }, { - fileId = "148595", - text = "totem_2h_carved_d_01.m2", - value = "totem_2h_carved_d_01.m2", + fileId = "305877", + text = "helm_robe_pvpwarlock_b_03_gom.m2", + value = "helm_robe_pvpwarlock_b_03_gom.m2", }, { - fileId = "148598", - text = "wand_1h_ahnqiraj_d_01.m2", - value = "wand_1h_ahnqiraj_d_01.m2", + fileId = "305881", + text = "helm_robe_pvpwarlock_b_03_huf.m2", + value = "helm_robe_pvpwarlock_b_03_huf.m2", }, { - fileId = "148603", - text = "wand_1h_ahnqiraj_d_02.m2", - value = "wand_1h_ahnqiraj_d_02.m2", + fileId = "305885", + text = "helm_robe_pvpwarlock_b_03_hum.m2", + value = "helm_robe_pvpwarlock_b_03_hum.m2", }, { - fileId = "148608", - text = "wand_1h_auchindoun_d_01.m2", - value = "wand_1h_auchindoun_d_01.m2", + fileId = "305889", + text = "helm_robe_pvpwarlock_b_03_nif.m2", + value = "helm_robe_pvpwarlock_b_03_nif.m2", }, { - fileId = "148610", - text = "wand_1h_blackwing_a_01.m2", - value = "wand_1h_blackwing_a_01.m2", + fileId = "305893", + text = "helm_robe_pvpwarlock_b_03_nim.m2", + value = "helm_robe_pvpwarlock_b_03_nim.m2", }, { - fileId = "148611", - text = "wand_1h_blood_a_01.m2", - value = "wand_1h_blood_a_01.m2", + fileId = "305897", + text = "helm_robe_pvpwarlock_b_03_orf.m2", + value = "helm_robe_pvpwarlock_b_03_orf.m2", }, { - fileId = "148617", - text = "wand_1h_draenei_a_01.m2", - value = "wand_1h_draenei_a_01.m2", + fileId = "305901", + text = "helm_robe_pvpwarlock_b_03_orm.m2", + value = "helm_robe_pvpwarlock_b_03_orm.m2", }, { - fileId = "148623", - text = "wand_1h_horde_a_01.m2", - value = "wand_1h_horde_a_01.m2", + fileId = "305905", + text = "helm_robe_pvpwarlock_b_03_scf.m2", + value = "helm_robe_pvpwarlock_b_03_scf.m2", }, { - fileId = "148628", - text = "wand_1h_horde_a_02.m2", - value = "wand_1h_horde_a_02.m2", + fileId = "305909", + text = "helm_robe_pvpwarlock_b_03_scm.m2", + value = "helm_robe_pvpwarlock_b_03_scm.m2", }, { - fileId = "148634", - text = "wand_1h_horde_a_03.m2", - value = "wand_1h_horde_a_03.m2", + fileId = "305913", + text = "helm_robe_pvpwarlock_b_03_taf.m2", + value = "helm_robe_pvpwarlock_b_03_taf.m2", }, { - fileId = "148640", - text = "wand_1h_horde_b_01.m2", - value = "wand_1h_horde_b_01.m2", + fileId = "305917", + text = "helm_robe_pvpwarlock_b_03_tam.m2", + value = "helm_robe_pvpwarlock_b_03_tam.m2", }, { - fileId = "148646", - text = "wand_1h_horde_b_02.m2", - value = "wand_1h_horde_b_02.m2", + fileId = "305921", + text = "helm_robe_pvpwarlock_b_03_trf.m2", + value = "helm_robe_pvpwarlock_b_03_trf.m2", }, { - fileId = "319752", - text = "wand_1h_icecrownraid_d_01.m2", - value = "wand_1h_icecrownraid_d_01.m2", + fileId = "305925", + text = "helm_robe_pvpwarlock_b_03_trm.m2", + value = "helm_robe_pvpwarlock_b_03_trm.m2", }, { - fileId = "317066", - text = "wand_1h_icecrownraid_d_02.m2", - value = "wand_1h_icecrownraid_d_02.m2", + fileId = "454312", + text = "helm_robe_pvpwarlock_b_03_wof.m2", + value = "helm_robe_pvpwarlock_b_03_wof.m2", }, { - fileId = "148652", - text = "wand_1h_jeweled_b_01.m2", - value = "wand_1h_jeweled_b_01.m2", + fileId = "454313", + text = "helm_robe_pvpwarlock_b_03_wom.m2", + value = "helm_robe_pvpwarlock_b_03_wom.m2", }, { - fileId = "148657", - text = "wand_1h_jeweled_b_02.m2", - value = "wand_1h_jeweled_b_02.m2", + fileId = "350589", + text = "helm_robe_pvpwarlock_b_04_bef.m2", + value = "helm_robe_pvpwarlock_b_04_bef.m2", }, { - fileId = "148663", - text = "wand_1h_outlandraid_d_01.m2", - value = "wand_1h_outlandraid_d_01.m2", + fileId = "350590", + text = "helm_robe_pvpwarlock_b_04_bem.m2", + value = "helm_robe_pvpwarlock_b_04_bem.m2", }, { - fileId = "148669", - text = "wand_1h_outlandraid_d_02.m2", - value = "wand_1h_outlandraid_d_02.m2", + fileId = "350591", + text = "helm_robe_pvpwarlock_b_04_drf.m2", + value = "helm_robe_pvpwarlock_b_04_drf.m2", }, { - fileId = "148674", - text = "wand_1h_outlandraid_d_03.m2", - value = "wand_1h_outlandraid_d_03.m2", + fileId = "350592", + text = "helm_robe_pvpwarlock_b_04_drm.m2", + value = "helm_robe_pvpwarlock_b_04_drm.m2", }, { - fileId = "148680", - text = "wand_1h_outlandraid_d_04.m2", - value = "wand_1h_outlandraid_d_04.m2", + fileId = "350593", + text = "helm_robe_pvpwarlock_b_04_dwf.m2", + value = "helm_robe_pvpwarlock_b_04_dwf.m2", }, { - fileId = "148685", - text = "wand_1h_outlandraid_d_05.m2", - value = "wand_1h_outlandraid_d_05.m2", + fileId = "350594", + text = "helm_robe_pvpwarlock_b_04_dwm.m2", + value = "helm_robe_pvpwarlock_b_04_dwm.m2", }, { - fileId = "148689", - text = "wand_1h_outlandraid_d_06.m2", - value = "wand_1h_outlandraid_d_06.m2", + fileId = "350595", + text = "helm_robe_pvpwarlock_b_04_gnf.m2", + value = "helm_robe_pvpwarlock_b_04_gnf.m2", }, { - fileId = "305731", - text = "wand_1h_pvealliance_d_01.m2", - value = "wand_1h_pvealliance_d_01.m2", + fileId = "350596", + text = "helm_robe_pvpwarlock_b_04_gnm.m2", + value = "helm_robe_pvpwarlock_b_04_gnm.m2", }, { - fileId = "305333", - text = "wand_1h_pvealliance_d_02.m2", - value = "wand_1h_pvealliance_d_02.m2", + fileId = "350597", + text = "helm_robe_pvpwarlock_b_04_gof.m2", + value = "helm_robe_pvpwarlock_b_04_gof.m2", }, { - fileId = "254864", - text = "wand_1h_pvehorde_d_01.m2", - value = "wand_1h_pvehorde_d_01.m2", + fileId = "350598", + text = "helm_robe_pvpwarlock_b_04_gom.m2", + value = "helm_robe_pvpwarlock_b_04_gom.m2", }, { - fileId = "293763", - text = "wand_1h_pvehorde_d_02.m2", - value = "wand_1h_pvehorde_d_02.m2", + fileId = "350599", + text = "helm_robe_pvpwarlock_b_04_huf.m2", + value = "helm_robe_pvpwarlock_b_04_huf.m2", }, { - fileId = "307202", - text = "wand_1h_pvp320_c_01.m2", - value = "wand_1h_pvp320_c_01.m2", + fileId = "350600", + text = "helm_robe_pvpwarlock_b_04_hum.m2", + value = "helm_robe_pvpwarlock_b_04_hum.m2", }, { - fileId = "328249", - text = "wand_1h_pvp330_d_01.m2", - value = "wand_1h_pvp330_d_01.m2", + fileId = "350601", + text = "helm_robe_pvpwarlock_b_04_nif.m2", + value = "helm_robe_pvpwarlock_b_04_nif.m2", }, { - fileId = "238959", - text = "wand_1h_pvp_c_01.m2", - value = "wand_1h_pvp_c_01.m2", + fileId = "350602", + text = "helm_robe_pvpwarlock_b_04_nim.m2", + value = "helm_robe_pvpwarlock_b_04_nim.m2", }, { - fileId = "148694", - text = "wand_1h_romancandle_a_01.m2", - value = "wand_1h_romancandle_a_01.m2", + fileId = "350603", + text = "helm_robe_pvpwarlock_b_04_orf.m2", + value = "helm_robe_pvpwarlock_b_04_orf.m2", }, { - fileId = "148695", - text = "wand_1h_standard_a_01.m2", - value = "wand_1h_standard_a_01.m2", + fileId = "350604", + text = "helm_robe_pvpwarlock_b_04_orm.m2", + value = "helm_robe_pvpwarlock_b_04_orm.m2", }, { - fileId = "148699", - text = "wand_1h_standard_a_02.m2", - value = "wand_1h_standard_a_02.m2", + fileId = "350605", + text = "helm_robe_pvpwarlock_b_04_scf.m2", + value = "helm_robe_pvpwarlock_b_04_scf.m2", }, { - fileId = "148706", - text = "wand_1h_stratholme_d_01.m2", - value = "wand_1h_stratholme_d_01.m2", + fileId = "350606", + text = "helm_robe_pvpwarlock_b_04_scm.m2", + value = "helm_robe_pvpwarlock_b_04_scm.m2", }, { - fileId = "148708", - text = "wand_1h_stratholme_d_02.m2", - value = "wand_1h_stratholme_d_02.m2", + fileId = "350607", + text = "helm_robe_pvpwarlock_b_04_taf.m2", + value = "helm_robe_pvpwarlock_b_04_taf.m2", }, { - fileId = "148709", - text = "wand_1h_sunwell_d_01.m2", - value = "wand_1h_sunwell_d_01.m2", + fileId = "350608", + text = "helm_robe_pvpwarlock_b_04_tam.m2", + value = "helm_robe_pvpwarlock_b_04_tam.m2", }, { - fileId = "148714", - text = "wand_1h_sunwell_d_02.m2", - value = "wand_1h_sunwell_d_02.m2", + fileId = "350609", + text = "helm_robe_pvpwarlock_b_04_trf.m2", + value = "helm_robe_pvpwarlock_b_04_trf.m2", }, { - fileId = "249285", - text = "wand_1h_ulduarraid_d_01.m2", - value = "wand_1h_ulduarraid_d_01.m2", + fileId = "350610", + text = "helm_robe_pvpwarlock_b_04_trm.m2", + value = "helm_robe_pvpwarlock_b_04_trm.m2", }, { - fileId = "249937", - text = "wand_1h_ulduarraid_d_02.m2", - value = "wand_1h_ulduarraid_d_02.m2", + fileId = "454314", + text = "helm_robe_pvpwarlock_b_04_wof.m2", + value = "helm_robe_pvpwarlock_b_04_wof.m2", }, { - fileId = "148719", - text = "wand_1h_utgarde_d_01.m2", - value = "wand_1h_utgarde_d_01.m2", + fileId = "454315", + text = "helm_robe_pvpwarlock_b_04_wom.m2", + value = "helm_robe_pvpwarlock_b_04_wom.m2", }, { - fileId = "148725", - text = "wand_1h_zulaman_d_01.m2", - value = "wand_1h_zulaman_d_01.m2", + fileId = "530754", + text = "helm_robe_pvpwarlock_d_01_bef.m2", + value = "helm_robe_pvpwarlock_d_01_bef.m2", }, { - fileId = "148730", - text = "wand_1h_zulaman_d_02.m2", - value = "wand_1h_zulaman_d_02.m2", + fileId = "530756", + text = "helm_robe_pvpwarlock_d_01_bem.m2", + value = "helm_robe_pvpwarlock_d_01_bem.m2", }, { - fileId = "148734", - text = "wand_1h_zulgurub_d_01.m2", - value = "wand_1h_zulgurub_d_01.m2", + fileId = "530758", + text = "helm_robe_pvpwarlock_d_01_drf.m2", + value = "helm_robe_pvpwarlock_d_01_drf.m2", }, { - fileId = "148735", - text = "wand_1h_zulgurub_d_02.m2", - value = "wand_1h_zulgurub_d_02.m2", + fileId = "530760", + text = "helm_robe_pvpwarlock_d_01_drm.m2", + value = "helm_robe_pvpwarlock_d_01_drm.m2", }, { - fileId = "148736", - text = "wand_1h_zulgurub_d_03.m2", - value = "wand_1h_zulgurub_d_03.m2", + fileId = "530762", + text = "helm_robe_pvpwarlock_d_01_dwf.m2", + value = "helm_robe_pvpwarlock_d_01_dwf.m2", }, - }, - text = "weapon", - value = "weapon", - }, - }, - text = "objectcomponents", - value = "objectcomponents", - }, - }, - text = "item", - value = "item", - }, - { - children = { - { - children = { - { - fileId = "165398", - text = "bloodspurt.m2", - value = "bloodspurt.m2", - }, - { - fileId = "165399", - text = "bloodspurtblack.m2", - value = "bloodspurtblack.m2", - }, - { - fileId = "165400", - text = "bloodspurtblacklarge.m2", - value = "bloodspurtblacklarge.m2", - }, - { - fileId = "165401", - text = "bloodspurtblue.m2", - value = "bloodspurtblue.m2", - }, - { - fileId = "165402", - text = "bloodspurtbluelarge.m2", - value = "bloodspurtbluelarge.m2", - }, - { - fileId = "165404", - text = "bloodspurtgreen.m2", - value = "bloodspurtgreen.m2", - }, - { - fileId = "165405", - text = "bloodspurtgreenlarge.m2", - value = "bloodspurtgreenlarge.m2", - }, - { - fileId = "165407", - text = "bloodspurtlarge.m2", - value = "bloodspurtlarge.m2", - }, - }, - text = "bloodspurts", - value = "bloodspurts", - }, - { - fileId = "165411", - text = "bubbles.m2", - value = "bubbles.m2", - }, - { - fileId = "165412", - text = "coldbreath.m2", - value = "coldbreath.m2", - }, - { - fileId = "165415", - text = "ember_trail.m2", - value = "ember_trail.m2", - }, - { - fileId = "165417", - text = "footstepspraydirt.m2", - value = "footstepspraydirt.m2", - }, - { - fileId = "165418", - text = "footstepspraydirtwalk.m2", - value = "footstepspraydirtwalk.m2", - }, - { - fileId = "165419", - text = "footstepspraysnow.m2", - value = "footstepspraysnow.m2", - }, - { - fileId = "165420", - text = "footstepspraysnowwalk.m2", - value = "footstepspraysnowwalk.m2", - }, - { - fileId = "165421", - text = "footstepspraywater.m2", - value = "footstepspraywater.m2", - }, - { - fileId = "165422", - text = "footstepspraywaterwalk.m2", - value = "footstepspraywaterwalk.m2", - }, - { - fileId = "165427", - text = "greenleaves.m2", - value = "greenleaves.m2", - }, - { - fileId = "165433", - text = "loginfx.m2", - value = "loginfx.m2", - }, - { - fileId = "165434", - text = "lootfx.m2", - value = "lootfx.m2", - }, - { - fileId = "2198654", - text = "moltenblast_missile.m2", - value = "moltenblast_missile.m2", - }, - { - fileId = "165436", - text = "morphfx.m2", - value = "morphfx.m2", - }, - { - fileId = "165437", - text = "pick_spellobject.m2", - value = "pick_spellobject.m2", - }, - { - fileId = "2198578", - text = "stunswirl_state_head.m2", - value = "stunswirl_state_head.m2", - }, - }, - text = "particles", - value = "particles", - }, - { - children = { - { - fileId = "165528", - text = "sonicboom_impactdd_uber_chest.m2", - value = "sonicboom_impactdd_uber_chest.m2", - }, - }, - text = "spell", - value = "spell", - }, - { - children = { - { - fileId = "165529", - text = "abolishmagic_base.m2", - value = "abolishmagic_base.m2", - }, - { - fileId = "165530", - text = "abyssal_ball.m2", - value = "abyssal_ball.m2", - }, + { + fileId = "530764", + text = "helm_robe_pvpwarlock_d_01_dwm.m2", + value = "helm_robe_pvpwarlock_d_01_dwm.m2", + }, + { + fileId = "530766", + text = "helm_robe_pvpwarlock_d_01_gnf.m2", + value = "helm_robe_pvpwarlock_d_01_gnf.m2", + }, + { + fileId = "530768", + text = "helm_robe_pvpwarlock_d_01_gnm.m2", + value = "helm_robe_pvpwarlock_d_01_gnm.m2", + }, + { + fileId = "530770", + text = "helm_robe_pvpwarlock_d_01_gof.m2", + value = "helm_robe_pvpwarlock_d_01_gof.m2", + }, + { + fileId = "530772", + text = "helm_robe_pvpwarlock_d_01_gom.m2", + value = "helm_robe_pvpwarlock_d_01_gom.m2", + }, + { + fileId = "531209", + text = "helm_robe_pvpwarlock_d_01_huf.m2", + value = "helm_robe_pvpwarlock_d_01_huf.m2", + }, + { + fileId = "531211", + text = "helm_robe_pvpwarlock_d_01_hum.m2", + value = "helm_robe_pvpwarlock_d_01_hum.m2", + }, + { + fileId = "530774", + text = "helm_robe_pvpwarlock_d_01_nif.m2", + value = "helm_robe_pvpwarlock_d_01_nif.m2", + }, + { + fileId = "530776", + text = "helm_robe_pvpwarlock_d_01_nim.m2", + value = "helm_robe_pvpwarlock_d_01_nim.m2", + }, + { + fileId = "530778", + text = "helm_robe_pvpwarlock_d_01_orf.m2", + value = "helm_robe_pvpwarlock_d_01_orf.m2", + }, + { + fileId = "530780", + text = "helm_robe_pvpwarlock_d_01_orm.m2", + value = "helm_robe_pvpwarlock_d_01_orm.m2", + }, + { + fileId = "530782", + text = "helm_robe_pvpwarlock_d_01_scf.m2", + value = "helm_robe_pvpwarlock_d_01_scf.m2", + }, + { + fileId = "530784", + text = "helm_robe_pvpwarlock_d_01_scm.m2", + value = "helm_robe_pvpwarlock_d_01_scm.m2", + }, + { + fileId = "530786", + text = "helm_robe_pvpwarlock_d_01_taf.m2", + value = "helm_robe_pvpwarlock_d_01_taf.m2", + }, + { + fileId = "530788", + text = "helm_robe_pvpwarlock_d_01_tam.m2", + value = "helm_robe_pvpwarlock_d_01_tam.m2", + }, + { + fileId = "530790", + text = "helm_robe_pvpwarlock_d_01_trf.m2", + value = "helm_robe_pvpwarlock_d_01_trf.m2", + }, + { + fileId = "530792", + text = "helm_robe_pvpwarlock_d_01_trm.m2", + value = "helm_robe_pvpwarlock_d_01_trm.m2", + }, + { + fileId = "530794", + text = "helm_robe_pvpwarlock_d_01_wof.m2", + value = "helm_robe_pvpwarlock_d_01_wof.m2", + }, + { + fileId = "530796", + text = "helm_robe_pvpwarlock_d_01_wom.m2", + value = "helm_robe_pvpwarlock_d_01_wom.m2", + }, + { + fileId = "141942", + text = "helm_robe_raid_a_01_bef.m2", + value = "helm_robe_raid_a_01_bef.m2", + }, + { + fileId = "141943", + text = "helm_robe_raid_a_01_bem.m2", + value = "helm_robe_raid_a_01_bem.m2", + }, + { + fileId = "141944", + text = "helm_robe_raid_a_01_drf.m2", + value = "helm_robe_raid_a_01_drf.m2", + }, + { + fileId = "141945", + text = "helm_robe_raid_a_01_drm.m2", + value = "helm_robe_raid_a_01_drm.m2", + }, + { + fileId = "141946", + text = "helm_robe_raid_a_01_gof.m2", + value = "helm_robe_raid_a_01_gof.m2", + }, + { + fileId = "141948", + text = "helm_robe_raidmage_a_01_bef.m2", + value = "helm_robe_raidmage_a_01_bef.m2", + }, + { + fileId = "141949", + text = "helm_robe_raidmage_a_01_bem.m2", + value = "helm_robe_raidmage_a_01_bem.m2", + }, + { + fileId = "141950", + text = "helm_robe_raidmage_a_01_drf.m2", + value = "helm_robe_raidmage_a_01_drf.m2", + }, + { + fileId = "141951", + text = "helm_robe_raidmage_a_01_drm.m2", + value = "helm_robe_raidmage_a_01_drm.m2", + }, + { + fileId = "141952", + text = "helm_robe_raidmage_a_01_dwf.m2", + value = "helm_robe_raidmage_a_01_dwf.m2", + }, + { + fileId = "141953", + text = "helm_robe_raidmage_a_01_dwm.m2", + value = "helm_robe_raidmage_a_01_dwm.m2", + }, + { + fileId = "141954", + text = "helm_robe_raidmage_a_01_gnf.m2", + value = "helm_robe_raidmage_a_01_gnf.m2", + }, + { + fileId = "141955", + text = "helm_robe_raidmage_a_01_gnm.m2", + value = "helm_robe_raidmage_a_01_gnm.m2", + }, + { + fileId = "141956", + text = "helm_robe_raidmage_a_01_gof.m2", + value = "helm_robe_raidmage_a_01_gof.m2", + }, + { + fileId = "141957", + text = "helm_robe_raidmage_a_01_gom.m2", + value = "helm_robe_raidmage_a_01_gom.m2", + }, + { + fileId = "141958", + text = "helm_robe_raidmage_a_01_huf.m2", + value = "helm_robe_raidmage_a_01_huf.m2", + }, + { + fileId = "141959", + text = "helm_robe_raidmage_a_01_hum.m2", + value = "helm_robe_raidmage_a_01_hum.m2", + }, + { + fileId = "141960", + text = "helm_robe_raidmage_a_01_nif.m2", + value = "helm_robe_raidmage_a_01_nif.m2", + }, + { + fileId = "141961", + text = "helm_robe_raidmage_a_01_nim.m2", + value = "helm_robe_raidmage_a_01_nim.m2", + }, + { + fileId = "141962", + text = "helm_robe_raidmage_a_01_orf.m2", + value = "helm_robe_raidmage_a_01_orf.m2", + }, + { + fileId = "141963", + text = "helm_robe_raidmage_a_01_orm.m2", + value = "helm_robe_raidmage_a_01_orm.m2", + }, + { + fileId = "141964", + text = "helm_robe_raidmage_a_01_scf.m2", + value = "helm_robe_raidmage_a_01_scf.m2", + }, + { + fileId = "141965", + text = "helm_robe_raidmage_a_01_scm.m2", + value = "helm_robe_raidmage_a_01_scm.m2", + }, + { + fileId = "141966", + text = "helm_robe_raidmage_a_01_taf.m2", + value = "helm_robe_raidmage_a_01_taf.m2", + }, + { + fileId = "141967", + text = "helm_robe_raidmage_a_01_tam.m2", + value = "helm_robe_raidmage_a_01_tam.m2", + }, + { + fileId = "141968", + text = "helm_robe_raidmage_a_01_trf.m2", + value = "helm_robe_raidmage_a_01_trf.m2", + }, + { + fileId = "141969", + text = "helm_robe_raidmage_a_01_trm.m2", + value = "helm_robe_raidmage_a_01_trm.m2", + }, + { + fileId = "454516", + text = "helm_robe_raidmage_a_01_wof.m2", + value = "helm_robe_raidmage_a_01_wof.m2", + }, + { + fileId = "442286", + text = "helm_robe_raidmage_a_01_wom.m2", + value = "helm_robe_raidmage_a_01_wom.m2", + }, + { + fileId = "141974", + text = "helm_robe_raidmage_b_01_bef.m2", + value = "helm_robe_raidmage_b_01_bef.m2", + }, + { + fileId = "141975", + text = "helm_robe_raidmage_b_01_bem.m2", + value = "helm_robe_raidmage_b_01_bem.m2", + }, + { + fileId = "141976", + text = "helm_robe_raidmage_b_01_drf.m2", + value = "helm_robe_raidmage_b_01_drf.m2", + }, + { + fileId = "141977", + text = "helm_robe_raidmage_b_01_drm.m2", + value = "helm_robe_raidmage_b_01_drm.m2", + }, + { + fileId = "141978", + text = "helm_robe_raidmage_b_01_dwf.m2", + value = "helm_robe_raidmage_b_01_dwf.m2", + }, + { + fileId = "141979", + text = "helm_robe_raidmage_b_01_dwm.m2", + value = "helm_robe_raidmage_b_01_dwm.m2", + }, + { + fileId = "141980", + text = "helm_robe_raidmage_b_01_gnf.m2", + value = "helm_robe_raidmage_b_01_gnf.m2", + }, + { + fileId = "141981", + text = "helm_robe_raidmage_b_01_gnm.m2", + value = "helm_robe_raidmage_b_01_gnm.m2", + }, + { + fileId = "141982", + text = "helm_robe_raidmage_b_01_gof.m2", + value = "helm_robe_raidmage_b_01_gof.m2", + }, + { + fileId = "141983", + text = "helm_robe_raidmage_b_01_gom.m2", + value = "helm_robe_raidmage_b_01_gom.m2", + }, + { + fileId = "141984", + text = "helm_robe_raidmage_b_01_huf.m2", + value = "helm_robe_raidmage_b_01_huf.m2", + }, + { + fileId = "141985", + text = "helm_robe_raidmage_b_01_hum.m2", + value = "helm_robe_raidmage_b_01_hum.m2", + }, + { + fileId = "141986", + text = "helm_robe_raidmage_b_01_nif.m2", + value = "helm_robe_raidmage_b_01_nif.m2", + }, + { + fileId = "141987", + text = "helm_robe_raidmage_b_01_nim.m2", + value = "helm_robe_raidmage_b_01_nim.m2", + }, + { + fileId = "141988", + text = "helm_robe_raidmage_b_01_orf.m2", + value = "helm_robe_raidmage_b_01_orf.m2", + }, + { + fileId = "141989", + text = "helm_robe_raidmage_b_01_orm.m2", + value = "helm_robe_raidmage_b_01_orm.m2", + }, + { + fileId = "141990", + text = "helm_robe_raidmage_b_01_scf.m2", + value = "helm_robe_raidmage_b_01_scf.m2", + }, + { + fileId = "141991", + text = "helm_robe_raidmage_b_01_scm.m2", + value = "helm_robe_raidmage_b_01_scm.m2", + }, + { + fileId = "141992", + text = "helm_robe_raidmage_b_01_taf.m2", + value = "helm_robe_raidmage_b_01_taf.m2", + }, + { + fileId = "141993", + text = "helm_robe_raidmage_b_01_tam.m2", + value = "helm_robe_raidmage_b_01_tam.m2", + }, + { + fileId = "141994", + text = "helm_robe_raidmage_b_01_trf.m2", + value = "helm_robe_raidmage_b_01_trf.m2", + }, + { + fileId = "141995", + text = "helm_robe_raidmage_b_01_trm.m2", + value = "helm_robe_raidmage_b_01_trm.m2", + }, + { + fileId = "454517", + text = "helm_robe_raidmage_b_01_wof.m2", + value = "helm_robe_raidmage_b_01_wof.m2", + }, + { + fileId = "445519", + text = "helm_robe_raidmage_b_01_wom.m2", + value = "helm_robe_raidmage_b_01_wom.m2", + }, + { + fileId = "142001", + text = "helm_robe_raidmage_c_01_bef.m2", + value = "helm_robe_raidmage_c_01_bef.m2", + }, + { + fileId = "142002", + text = "helm_robe_raidmage_c_01_bem.m2", + value = "helm_robe_raidmage_c_01_bem.m2", + }, + { + fileId = "142003", + text = "helm_robe_raidmage_c_01_drf.m2", + value = "helm_robe_raidmage_c_01_drf.m2", + }, + { + fileId = "142004", + text = "helm_robe_raidmage_c_01_drm.m2", + value = "helm_robe_raidmage_c_01_drm.m2", + }, + { + fileId = "142005", + text = "helm_robe_raidmage_c_01_dwf.m2", + value = "helm_robe_raidmage_c_01_dwf.m2", + }, + { + fileId = "142006", + text = "helm_robe_raidmage_c_01_dwm.m2", + value = "helm_robe_raidmage_c_01_dwm.m2", + }, + { + fileId = "142007", + text = "helm_robe_raidmage_c_01_gnf.m2", + value = "helm_robe_raidmage_c_01_gnf.m2", + }, + { + fileId = "142008", + text = "helm_robe_raidmage_c_01_gnm.m2", + value = "helm_robe_raidmage_c_01_gnm.m2", + }, + { + fileId = "142009", + text = "helm_robe_raidmage_c_01_gof.m2", + value = "helm_robe_raidmage_c_01_gof.m2", + }, + { + fileId = "142010", + text = "helm_robe_raidmage_c_01_gom.m2", + value = "helm_robe_raidmage_c_01_gom.m2", + }, + { + fileId = "142011", + text = "helm_robe_raidmage_c_01_huf.m2", + value = "helm_robe_raidmage_c_01_huf.m2", + }, + { + fileId = "142012", + text = "helm_robe_raidmage_c_01_hum.m2", + value = "helm_robe_raidmage_c_01_hum.m2", + }, + { + fileId = "142013", + text = "helm_robe_raidmage_c_01_nif.m2", + value = "helm_robe_raidmage_c_01_nif.m2", + }, + { + fileId = "142014", + text = "helm_robe_raidmage_c_01_nim.m2", + value = "helm_robe_raidmage_c_01_nim.m2", + }, + { + fileId = "142015", + text = "helm_robe_raidmage_c_01_orf.m2", + value = "helm_robe_raidmage_c_01_orf.m2", + }, + { + fileId = "142016", + text = "helm_robe_raidmage_c_01_orm.m2", + value = "helm_robe_raidmage_c_01_orm.m2", + }, + { + fileId = "142017", + text = "helm_robe_raidmage_c_01_scf.m2", + value = "helm_robe_raidmage_c_01_scf.m2", + }, + { + fileId = "142018", + text = "helm_robe_raidmage_c_01_scm.m2", + value = "helm_robe_raidmage_c_01_scm.m2", + }, + { + fileId = "142019", + text = "helm_robe_raidmage_c_01_taf.m2", + value = "helm_robe_raidmage_c_01_taf.m2", + }, + { + fileId = "142020", + text = "helm_robe_raidmage_c_01_tam.m2", + value = "helm_robe_raidmage_c_01_tam.m2", + }, + { + fileId = "142021", + text = "helm_robe_raidmage_c_01_trf.m2", + value = "helm_robe_raidmage_c_01_trf.m2", + }, + { + fileId = "142022", + text = "helm_robe_raidmage_c_01_trm.m2", + value = "helm_robe_raidmage_c_01_trm.m2", + }, + { + fileId = "454316", + text = "helm_robe_raidmage_c_01_wof.m2", + value = "helm_robe_raidmage_c_01_wof.m2", + }, + { + fileId = "446944", + text = "helm_robe_raidmage_c_01_wom.m2", + value = "helm_robe_raidmage_c_01_wom.m2", + }, + { + fileId = "238306", + text = "helm_robe_raidmage_c_02_bef.m2", + value = "helm_robe_raidmage_c_02_bef.m2", + }, + { + fileId = "238307", + text = "helm_robe_raidmage_c_02_bem.m2", + value = "helm_robe_raidmage_c_02_bem.m2", + }, + { + fileId = "238308", + text = "helm_robe_raidmage_c_02_drf.m2", + value = "helm_robe_raidmage_c_02_drf.m2", + }, + { + fileId = "238309", + text = "helm_robe_raidmage_c_02_drm.m2", + value = "helm_robe_raidmage_c_02_drm.m2", + }, + { + fileId = "238310", + text = "helm_robe_raidmage_c_02_dwf.m2", + value = "helm_robe_raidmage_c_02_dwf.m2", + }, + { + fileId = "238311", + text = "helm_robe_raidmage_c_02_dwm.m2", + value = "helm_robe_raidmage_c_02_dwm.m2", + }, + { + fileId = "238312", + text = "helm_robe_raidmage_c_02_gnf.m2", + value = "helm_robe_raidmage_c_02_gnf.m2", + }, + { + fileId = "238313", + text = "helm_robe_raidmage_c_02_gnm.m2", + value = "helm_robe_raidmage_c_02_gnm.m2", + }, + { + fileId = "238314", + text = "helm_robe_raidmage_c_02_gof.m2", + value = "helm_robe_raidmage_c_02_gof.m2", + }, + { + fileId = "238315", + text = "helm_robe_raidmage_c_02_gom.m2", + value = "helm_robe_raidmage_c_02_gom.m2", + }, + { + fileId = "238316", + text = "helm_robe_raidmage_c_02_huf.m2", + value = "helm_robe_raidmage_c_02_huf.m2", + }, + { + fileId = "238317", + text = "helm_robe_raidmage_c_02_hum.m2", + value = "helm_robe_raidmage_c_02_hum.m2", + }, + { + fileId = "238318", + text = "helm_robe_raidmage_c_02_nif.m2", + value = "helm_robe_raidmage_c_02_nif.m2", + }, + { + fileId = "238319", + text = "helm_robe_raidmage_c_02_nim.m2", + value = "helm_robe_raidmage_c_02_nim.m2", + }, + { + fileId = "238320", + text = "helm_robe_raidmage_c_02_orf.m2", + value = "helm_robe_raidmage_c_02_orf.m2", + }, + { + fileId = "238321", + text = "helm_robe_raidmage_c_02_orm.m2", + value = "helm_robe_raidmage_c_02_orm.m2", + }, + { + fileId = "238322", + text = "helm_robe_raidmage_c_02_scf.m2", + value = "helm_robe_raidmage_c_02_scf.m2", + }, + { + fileId = "238323", + text = "helm_robe_raidmage_c_02_scm.m2", + value = "helm_robe_raidmage_c_02_scm.m2", + }, + { + fileId = "238324", + text = "helm_robe_raidmage_c_02_taf.m2", + value = "helm_robe_raidmage_c_02_taf.m2", + }, + { + fileId = "238325", + text = "helm_robe_raidmage_c_02_tam.m2", + value = "helm_robe_raidmage_c_02_tam.m2", + }, + { + fileId = "238326", + text = "helm_robe_raidmage_c_02_trf.m2", + value = "helm_robe_raidmage_c_02_trf.m2", + }, + { + fileId = "238327", + text = "helm_robe_raidmage_c_02_trm.m2", + value = "helm_robe_raidmage_c_02_trm.m2", + }, + { + fileId = "454317", + text = "helm_robe_raidmage_c_02_wof.m2", + value = "helm_robe_raidmage_c_02_wof.m2", + }, + { + fileId = "446945", + text = "helm_robe_raidmage_c_02_wom.m2", + value = "helm_robe_raidmage_c_02_wom.m2", + }, + { + fileId = "142024", + text = "helm_robe_raidmage_d_01_bef.m2", + value = "helm_robe_raidmage_d_01_bef.m2", + }, + { + fileId = "142025", + text = "helm_robe_raidmage_d_01_bem.m2", + value = "helm_robe_raidmage_d_01_bem.m2", + }, + { + fileId = "142026", + text = "helm_robe_raidmage_d_01_drf.m2", + value = "helm_robe_raidmage_d_01_drf.m2", + }, + { + fileId = "142027", + text = "helm_robe_raidmage_d_01_drm.m2", + value = "helm_robe_raidmage_d_01_drm.m2", + }, + { + fileId = "142028", + text = "helm_robe_raidmage_d_01_dwf.m2", + value = "helm_robe_raidmage_d_01_dwf.m2", + }, + { + fileId = "142029", + text = "helm_robe_raidmage_d_01_dwm.m2", + value = "helm_robe_raidmage_d_01_dwm.m2", + }, + { + fileId = "142030", + text = "helm_robe_raidmage_d_01_gnf.m2", + value = "helm_robe_raidmage_d_01_gnf.m2", + }, + { + fileId = "142031", + text = "helm_robe_raidmage_d_01_gnm.m2", + value = "helm_robe_raidmage_d_01_gnm.m2", + }, + { + fileId = "142032", + text = "helm_robe_raidmage_d_01_gof.m2", + value = "helm_robe_raidmage_d_01_gof.m2", + }, + { + fileId = "142033", + text = "helm_robe_raidmage_d_01_gom.m2", + value = "helm_robe_raidmage_d_01_gom.m2", + }, + { + fileId = "142034", + text = "helm_robe_raidmage_d_01_huf.m2", + value = "helm_robe_raidmage_d_01_huf.m2", + }, + { + fileId = "142035", + text = "helm_robe_raidmage_d_01_hum.m2", + value = "helm_robe_raidmage_d_01_hum.m2", + }, + { + fileId = "142036", + text = "helm_robe_raidmage_d_01_nif.m2", + value = "helm_robe_raidmage_d_01_nif.m2", + }, + { + fileId = "142037", + text = "helm_robe_raidmage_d_01_nim.m2", + value = "helm_robe_raidmage_d_01_nim.m2", + }, + { + fileId = "142038", + text = "helm_robe_raidmage_d_01_orf.m2", + value = "helm_robe_raidmage_d_01_orf.m2", + }, + { + fileId = "142039", + text = "helm_robe_raidmage_d_01_orm.m2", + value = "helm_robe_raidmage_d_01_orm.m2", + }, + { + fileId = "142040", + text = "helm_robe_raidmage_d_01_scf.m2", + value = "helm_robe_raidmage_d_01_scf.m2", + }, + { + fileId = "142041", + text = "helm_robe_raidmage_d_01_scm.m2", + value = "helm_robe_raidmage_d_01_scm.m2", + }, + { + fileId = "142042", + text = "helm_robe_raidmage_d_01_taf.m2", + value = "helm_robe_raidmage_d_01_taf.m2", + }, + { + fileId = "142043", + text = "helm_robe_raidmage_d_01_tam.m2", + value = "helm_robe_raidmage_d_01_tam.m2", + }, + { + fileId = "142044", + text = "helm_robe_raidmage_d_01_trf.m2", + value = "helm_robe_raidmage_d_01_trf.m2", + }, + { + fileId = "142045", + text = "helm_robe_raidmage_d_01_trm.m2", + value = "helm_robe_raidmage_d_01_trm.m2", + }, + { + fileId = "433594", + text = "helm_robe_raidmage_d_01_wof.m2", + value = "helm_robe_raidmage_d_01_wof.m2", + }, + { + fileId = "433595", + text = "helm_robe_raidmage_d_01_wom.m2", + value = "helm_robe_raidmage_d_01_wom.m2", + }, + { + fileId = "142048", + text = "helm_robe_raidmage_e_01_bef.m2", + value = "helm_robe_raidmage_e_01_bef.m2", + }, + { + fileId = "142049", + text = "helm_robe_raidmage_e_01_bem.m2", + value = "helm_robe_raidmage_e_01_bem.m2", + }, + { + fileId = "142050", + text = "helm_robe_raidmage_e_01_drf.m2", + value = "helm_robe_raidmage_e_01_drf.m2", + }, + { + fileId = "142051", + text = "helm_robe_raidmage_e_01_drm.m2", + value = "helm_robe_raidmage_e_01_drm.m2", + }, + { + fileId = "142052", + text = "helm_robe_raidmage_e_01_dwf.m2", + value = "helm_robe_raidmage_e_01_dwf.m2", + }, + { + fileId = "142053", + text = "helm_robe_raidmage_e_01_dwm.m2", + value = "helm_robe_raidmage_e_01_dwm.m2", + }, + { + fileId = "142054", + text = "helm_robe_raidmage_e_01_gnf.m2", + value = "helm_robe_raidmage_e_01_gnf.m2", + }, + { + fileId = "142055", + text = "helm_robe_raidmage_e_01_gnm.m2", + value = "helm_robe_raidmage_e_01_gnm.m2", + }, + { + fileId = "142056", + text = "helm_robe_raidmage_e_01_gof.m2", + value = "helm_robe_raidmage_e_01_gof.m2", + }, + { + fileId = "142057", + text = "helm_robe_raidmage_e_01_gom.m2", + value = "helm_robe_raidmage_e_01_gom.m2", + }, + { + fileId = "142058", + text = "helm_robe_raidmage_e_01_huf.m2", + value = "helm_robe_raidmage_e_01_huf.m2", + }, + { + fileId = "142059", + text = "helm_robe_raidmage_e_01_hum.m2", + value = "helm_robe_raidmage_e_01_hum.m2", + }, + { + fileId = "142060", + text = "helm_robe_raidmage_e_01_nif.m2", + value = "helm_robe_raidmage_e_01_nif.m2", + }, + { + fileId = "142061", + text = "helm_robe_raidmage_e_01_nim.m2", + value = "helm_robe_raidmage_e_01_nim.m2", + }, + { + fileId = "142062", + text = "helm_robe_raidmage_e_01_orf.m2", + value = "helm_robe_raidmage_e_01_orf.m2", + }, + { + fileId = "142063", + text = "helm_robe_raidmage_e_01_orm.m2", + value = "helm_robe_raidmage_e_01_orm.m2", + }, + { + fileId = "142064", + text = "helm_robe_raidmage_e_01_scf.m2", + value = "helm_robe_raidmage_e_01_scf.m2", + }, + { + fileId = "142065", + text = "helm_robe_raidmage_e_01_scm.m2", + value = "helm_robe_raidmage_e_01_scm.m2", + }, + { + fileId = "142066", + text = "helm_robe_raidmage_e_01_taf.m2", + value = "helm_robe_raidmage_e_01_taf.m2", + }, + { + fileId = "142067", + text = "helm_robe_raidmage_e_01_tam.m2", + value = "helm_robe_raidmage_e_01_tam.m2", + }, + { + fileId = "142068", + text = "helm_robe_raidmage_e_01_trf.m2", + value = "helm_robe_raidmage_e_01_trf.m2", + }, + { + fileId = "142069", + text = "helm_robe_raidmage_e_01_trm.m2", + value = "helm_robe_raidmage_e_01_trm.m2", + }, + { + fileId = "433629", + text = "helm_robe_raidmage_e_01_wof.m2", + value = "helm_robe_raidmage_e_01_wof.m2", + }, + { + fileId = "433630", + text = "helm_robe_raidmage_e_01_wom.m2", + value = "helm_robe_raidmage_e_01_wom.m2", + }, + { + fileId = "142073", + text = "helm_robe_raidmage_f_01_bef.m2", + value = "helm_robe_raidmage_f_01_bef.m2", + }, + { + fileId = "142074", + text = "helm_robe_raidmage_f_01_bem.m2", + value = "helm_robe_raidmage_f_01_bem.m2", + }, + { + fileId = "142075", + text = "helm_robe_raidmage_f_01_drf.m2", + value = "helm_robe_raidmage_f_01_drf.m2", + }, + { + fileId = "142076", + text = "helm_robe_raidmage_f_01_drm.m2", + value = "helm_robe_raidmage_f_01_drm.m2", + }, + { + fileId = "142077", + text = "helm_robe_raidmage_f_01_dwf.m2", + value = "helm_robe_raidmage_f_01_dwf.m2", + }, + { + fileId = "142078", + text = "helm_robe_raidmage_f_01_dwm.m2", + value = "helm_robe_raidmage_f_01_dwm.m2", + }, + { + fileId = "142079", + text = "helm_robe_raidmage_f_01_gnf.m2", + value = "helm_robe_raidmage_f_01_gnf.m2", + }, + { + fileId = "142080", + text = "helm_robe_raidmage_f_01_gnm.m2", + value = "helm_robe_raidmage_f_01_gnm.m2", + }, + { + fileId = "142081", + text = "helm_robe_raidmage_f_01_gof.m2", + value = "helm_robe_raidmage_f_01_gof.m2", + }, + { + fileId = "142082", + text = "helm_robe_raidmage_f_01_gom.m2", + value = "helm_robe_raidmage_f_01_gom.m2", + }, + { + fileId = "142083", + text = "helm_robe_raidmage_f_01_huf.m2", + value = "helm_robe_raidmage_f_01_huf.m2", + }, + { + fileId = "142084", + text = "helm_robe_raidmage_f_01_hum.m2", + value = "helm_robe_raidmage_f_01_hum.m2", + }, + { + fileId = "142085", + text = "helm_robe_raidmage_f_01_nif.m2", + value = "helm_robe_raidmage_f_01_nif.m2", + }, + { + fileId = "142086", + text = "helm_robe_raidmage_f_01_nim.m2", + value = "helm_robe_raidmage_f_01_nim.m2", + }, + { + fileId = "142087", + text = "helm_robe_raidmage_f_01_orf.m2", + value = "helm_robe_raidmage_f_01_orf.m2", + }, + { + fileId = "142088", + text = "helm_robe_raidmage_f_01_orm.m2", + value = "helm_robe_raidmage_f_01_orm.m2", + }, + { + fileId = "142089", + text = "helm_robe_raidmage_f_01_scf.m2", + value = "helm_robe_raidmage_f_01_scf.m2", + }, + { + fileId = "142090", + text = "helm_robe_raidmage_f_01_scm.m2", + value = "helm_robe_raidmage_f_01_scm.m2", + }, + { + fileId = "142091", + text = "helm_robe_raidmage_f_01_taf.m2", + value = "helm_robe_raidmage_f_01_taf.m2", + }, + { + fileId = "142092", + text = "helm_robe_raidmage_f_01_tam.m2", + value = "helm_robe_raidmage_f_01_tam.m2", + }, + { + fileId = "142093", + text = "helm_robe_raidmage_f_01_trf.m2", + value = "helm_robe_raidmage_f_01_trf.m2", + }, + { + fileId = "142094", + text = "helm_robe_raidmage_f_01_trm.m2", + value = "helm_robe_raidmage_f_01_trm.m2", + }, + { + fileId = "433631", + text = "helm_robe_raidmage_f_01_wof.m2", + value = "helm_robe_raidmage_f_01_wof.m2", + }, + { + fileId = "433632", + text = "helm_robe_raidmage_f_01_wom.m2", + value = "helm_robe_raidmage_f_01_wom.m2", + }, + { + fileId = "142101", + text = "helm_robe_raidmage_g_01_bef.m2", + value = "helm_robe_raidmage_g_01_bef.m2", + }, + { + fileId = "142102", + text = "helm_robe_raidmage_g_01_bem.m2", + value = "helm_robe_raidmage_g_01_bem.m2", + }, + { + fileId = "142103", + text = "helm_robe_raidmage_g_01_drf.m2", + value = "helm_robe_raidmage_g_01_drf.m2", + }, + { + fileId = "142104", + text = "helm_robe_raidmage_g_01_drm.m2", + value = "helm_robe_raidmage_g_01_drm.m2", + }, + { + fileId = "142105", + text = "helm_robe_raidmage_g_01_dwf.m2", + value = "helm_robe_raidmage_g_01_dwf.m2", + }, + { + fileId = "142106", + text = "helm_robe_raidmage_g_01_dwm.m2", + value = "helm_robe_raidmage_g_01_dwm.m2", + }, + { + fileId = "142107", + text = "helm_robe_raidmage_g_01_gnf.m2", + value = "helm_robe_raidmage_g_01_gnf.m2", + }, + { + fileId = "142108", + text = "helm_robe_raidmage_g_01_gnm.m2", + value = "helm_robe_raidmage_g_01_gnm.m2", + }, + { + fileId = "142109", + text = "helm_robe_raidmage_g_01_gof.m2", + value = "helm_robe_raidmage_g_01_gof.m2", + }, + { + fileId = "142110", + text = "helm_robe_raidmage_g_01_gom.m2", + value = "helm_robe_raidmage_g_01_gom.m2", + }, + { + fileId = "142111", + text = "helm_robe_raidmage_g_01_huf.m2", + value = "helm_robe_raidmage_g_01_huf.m2", + }, + { + fileId = "142112", + text = "helm_robe_raidmage_g_01_hum.m2", + value = "helm_robe_raidmage_g_01_hum.m2", + }, + { + fileId = "142113", + text = "helm_robe_raidmage_g_01_nif.m2", + value = "helm_robe_raidmage_g_01_nif.m2", + }, + { + fileId = "142114", + text = "helm_robe_raidmage_g_01_nim.m2", + value = "helm_robe_raidmage_g_01_nim.m2", + }, + { + fileId = "142115", + text = "helm_robe_raidmage_g_01_orf.m2", + value = "helm_robe_raidmage_g_01_orf.m2", + }, + { + fileId = "142116", + text = "helm_robe_raidmage_g_01_orm.m2", + value = "helm_robe_raidmage_g_01_orm.m2", + }, + { + fileId = "142117", + text = "helm_robe_raidmage_g_01_scf.m2", + value = "helm_robe_raidmage_g_01_scf.m2", + }, + { + fileId = "142118", + text = "helm_robe_raidmage_g_01_scm.m2", + value = "helm_robe_raidmage_g_01_scm.m2", + }, + { + fileId = "142119", + text = "helm_robe_raidmage_g_01_taf.m2", + value = "helm_robe_raidmage_g_01_taf.m2", + }, + { + fileId = "142120", + text = "helm_robe_raidmage_g_01_tam.m2", + value = "helm_robe_raidmage_g_01_tam.m2", + }, + { + fileId = "142121", + text = "helm_robe_raidmage_g_01_trf.m2", + value = "helm_robe_raidmage_g_01_trf.m2", + }, + { + fileId = "142122", + text = "helm_robe_raidmage_g_01_trm.m2", + value = "helm_robe_raidmage_g_01_trm.m2", + }, + { + fileId = "433633", + text = "helm_robe_raidmage_g_01_wof.m2", + value = "helm_robe_raidmage_g_01_wof.m2", + }, + { + fileId = "433634", + text = "helm_robe_raidmage_g_01_wom.m2", + value = "helm_robe_raidmage_g_01_wom.m2", + }, + { + fileId = "340051", + text = "helm_robe_raidmage_h_01_bef.m2", + value = "helm_robe_raidmage_h_01_bef.m2", + }, + { + fileId = "340052", + text = "helm_robe_raidmage_h_01_bem.m2", + value = "helm_robe_raidmage_h_01_bem.m2", + }, + { + fileId = "340053", + text = "helm_robe_raidmage_h_01_drf.m2", + value = "helm_robe_raidmage_h_01_drf.m2", + }, + { + fileId = "340054", + text = "helm_robe_raidmage_h_01_drm.m2", + value = "helm_robe_raidmage_h_01_drm.m2", + }, + { + fileId = "340055", + text = "helm_robe_raidmage_h_01_dwf.m2", + value = "helm_robe_raidmage_h_01_dwf.m2", + }, + { + fileId = "340056", + text = "helm_robe_raidmage_h_01_dwm.m2", + value = "helm_robe_raidmage_h_01_dwm.m2", + }, + { + fileId = "340057", + text = "helm_robe_raidmage_h_01_gnf.m2", + value = "helm_robe_raidmage_h_01_gnf.m2", + }, + { + fileId = "340058", + text = "helm_robe_raidmage_h_01_gnm.m2", + value = "helm_robe_raidmage_h_01_gnm.m2", + }, + { + fileId = "432038", + text = "helm_robe_raidmage_h_01_gof.m2", + value = "helm_robe_raidmage_h_01_gof.m2", + }, + { + fileId = "432039", + text = "helm_robe_raidmage_h_01_gom.m2", + value = "helm_robe_raidmage_h_01_gom.m2", + }, + { + fileId = "340059", + text = "helm_robe_raidmage_h_01_huf.m2", + value = "helm_robe_raidmage_h_01_huf.m2", + }, + { + fileId = "340060", + text = "helm_robe_raidmage_h_01_hum.m2", + value = "helm_robe_raidmage_h_01_hum.m2", + }, + { + fileId = "340061", + text = "helm_robe_raidmage_h_01_nif.m2", + value = "helm_robe_raidmage_h_01_nif.m2", + }, + { + fileId = "340062", + text = "helm_robe_raidmage_h_01_nim.m2", + value = "helm_robe_raidmage_h_01_nim.m2", + }, + { + fileId = "340063", + text = "helm_robe_raidmage_h_01_orf.m2", + value = "helm_robe_raidmage_h_01_orf.m2", + }, + { + fileId = "340064", + text = "helm_robe_raidmage_h_01_orm.m2", + value = "helm_robe_raidmage_h_01_orm.m2", + }, + { + fileId = "340065", + text = "helm_robe_raidmage_h_01_scf.m2", + value = "helm_robe_raidmage_h_01_scf.m2", + }, + { + fileId = "340066", + text = "helm_robe_raidmage_h_01_scm.m2", + value = "helm_robe_raidmage_h_01_scm.m2", + }, + { + fileId = "340067", + text = "helm_robe_raidmage_h_01_taf.m2", + value = "helm_robe_raidmage_h_01_taf.m2", + }, + { + fileId = "340068", + text = "helm_robe_raidmage_h_01_tam.m2", + value = "helm_robe_raidmage_h_01_tam.m2", + }, + { + fileId = "340069", + text = "helm_robe_raidmage_h_01_trf.m2", + value = "helm_robe_raidmage_h_01_trf.m2", + }, + { + fileId = "340070", + text = "helm_robe_raidmage_h_01_trm.m2", + value = "helm_robe_raidmage_h_01_trm.m2", + }, + { + fileId = "454318", + text = "helm_robe_raidmage_h_01_wof.m2", + value = "helm_robe_raidmage_h_01_wof.m2", + }, + { + fileId = "432040", + text = "helm_robe_raidmage_h_01_wom.m2", + value = "helm_robe_raidmage_h_01_wom.m2", + }, + { + fileId = "464693", + text = "helm_robe_raidmage_i_01_bef.m2", + value = "helm_robe_raidmage_i_01_bef.m2", + }, + { + fileId = "464694", + text = "helm_robe_raidmage_i_01_bem.m2", + value = "helm_robe_raidmage_i_01_bem.m2", + }, + { + fileId = "464695", + text = "helm_robe_raidmage_i_01_drf.m2", + value = "helm_robe_raidmage_i_01_drf.m2", + }, + { + fileId = "464696", + text = "helm_robe_raidmage_i_01_drm.m2", + value = "helm_robe_raidmage_i_01_drm.m2", + }, + { + fileId = "464697", + text = "helm_robe_raidmage_i_01_dwf.m2", + value = "helm_robe_raidmage_i_01_dwf.m2", + }, + { + fileId = "464698", + text = "helm_robe_raidmage_i_01_dwm.m2", + value = "helm_robe_raidmage_i_01_dwm.m2", + }, + { + fileId = "464699", + text = "helm_robe_raidmage_i_01_gnf.m2", + value = "helm_robe_raidmage_i_01_gnf.m2", + }, + { + fileId = "464700", + text = "helm_robe_raidmage_i_01_gnm.m2", + value = "helm_robe_raidmage_i_01_gnm.m2", + }, + { + fileId = "464701", + text = "helm_robe_raidmage_i_01_gof.m2", + value = "helm_robe_raidmage_i_01_gof.m2", + }, + { + fileId = "464702", + text = "helm_robe_raidmage_i_01_gom.m2", + value = "helm_robe_raidmage_i_01_gom.m2", + }, + { + fileId = "464703", + text = "helm_robe_raidmage_i_01_huf.m2", + value = "helm_robe_raidmage_i_01_huf.m2", + }, + { + fileId = "464704", + text = "helm_robe_raidmage_i_01_hum.m2", + value = "helm_robe_raidmage_i_01_hum.m2", + }, + { + fileId = "464705", + text = "helm_robe_raidmage_i_01_nif.m2", + value = "helm_robe_raidmage_i_01_nif.m2", + }, + { + fileId = "464706", + text = "helm_robe_raidmage_i_01_nim.m2", + value = "helm_robe_raidmage_i_01_nim.m2", + }, + { + fileId = "464707", + text = "helm_robe_raidmage_i_01_orf.m2", + value = "helm_robe_raidmage_i_01_orf.m2", + }, + { + fileId = "464708", + text = "helm_robe_raidmage_i_01_orm.m2", + value = "helm_robe_raidmage_i_01_orm.m2", + }, + { + fileId = "464709", + text = "helm_robe_raidmage_i_01_scf.m2", + value = "helm_robe_raidmage_i_01_scf.m2", + }, + { + fileId = "464710", + text = "helm_robe_raidmage_i_01_scm.m2", + value = "helm_robe_raidmage_i_01_scm.m2", + }, + { + fileId = "464711", + text = "helm_robe_raidmage_i_01_taf.m2", + value = "helm_robe_raidmage_i_01_taf.m2", + }, + { + fileId = "464712", + text = "helm_robe_raidmage_i_01_tam.m2", + value = "helm_robe_raidmage_i_01_tam.m2", + }, + { + fileId = "464713", + text = "helm_robe_raidmage_i_01_trf.m2", + value = "helm_robe_raidmage_i_01_trf.m2", + }, + { + fileId = "464714", + text = "helm_robe_raidmage_i_01_trm.m2", + value = "helm_robe_raidmage_i_01_trm.m2", + }, + { + fileId = "464715", + text = "helm_robe_raidmage_i_01_wof.m2", + value = "helm_robe_raidmage_i_01_wof.m2", + }, + { + fileId = "464716", + text = "helm_robe_raidmage_i_01_wom.m2", + value = "helm_robe_raidmage_i_01_wom.m2", + }, + { + fileId = "521225", + text = "helm_robe_raidmage_j_01_bef.m2", + value = "helm_robe_raidmage_j_01_bef.m2", + }, + { + fileId = "521227", + text = "helm_robe_raidmage_j_01_bem.m2", + value = "helm_robe_raidmage_j_01_bem.m2", + }, + { + fileId = "521229", + text = "helm_robe_raidmage_j_01_drf.m2", + value = "helm_robe_raidmage_j_01_drf.m2", + }, + { + fileId = "521231", + text = "helm_robe_raidmage_j_01_drm.m2", + value = "helm_robe_raidmage_j_01_drm.m2", + }, + { + fileId = "521233", + text = "helm_robe_raidmage_j_01_dwf.m2", + value = "helm_robe_raidmage_j_01_dwf.m2", + }, + { + fileId = "521235", + text = "helm_robe_raidmage_j_01_dwm.m2", + value = "helm_robe_raidmage_j_01_dwm.m2", + }, + { + fileId = "521237", + text = "helm_robe_raidmage_j_01_gnf.m2", + value = "helm_robe_raidmage_j_01_gnf.m2", + }, + { + fileId = "521239", + text = "helm_robe_raidmage_j_01_gnm.m2", + value = "helm_robe_raidmage_j_01_gnm.m2", + }, + { + fileId = "521241", + text = "helm_robe_raidmage_j_01_gof.m2", + value = "helm_robe_raidmage_j_01_gof.m2", + }, + { + fileId = "521243", + text = "helm_robe_raidmage_j_01_gom.m2", + value = "helm_robe_raidmage_j_01_gom.m2", + }, + { + fileId = "521245", + text = "helm_robe_raidmage_j_01_huf.m2", + value = "helm_robe_raidmage_j_01_huf.m2", + }, + { + fileId = "521247", + text = "helm_robe_raidmage_j_01_hum.m2", + value = "helm_robe_raidmage_j_01_hum.m2", + }, + { + fileId = "521249", + text = "helm_robe_raidmage_j_01_nif.m2", + value = "helm_robe_raidmage_j_01_nif.m2", + }, + { + fileId = "521251", + text = "helm_robe_raidmage_j_01_nim.m2", + value = "helm_robe_raidmage_j_01_nim.m2", + }, + { + fileId = "521253", + text = "helm_robe_raidmage_j_01_orf.m2", + value = "helm_robe_raidmage_j_01_orf.m2", + }, + { + fileId = "521255", + text = "helm_robe_raidmage_j_01_orm.m2", + value = "helm_robe_raidmage_j_01_orm.m2", + }, + { + fileId = "521257", + text = "helm_robe_raidmage_j_01_scf.m2", + value = "helm_robe_raidmage_j_01_scf.m2", + }, + { + fileId = "521259", + text = "helm_robe_raidmage_j_01_scm.m2", + value = "helm_robe_raidmage_j_01_scm.m2", + }, + { + fileId = "521261", + text = "helm_robe_raidmage_j_01_taf.m2", + value = "helm_robe_raidmage_j_01_taf.m2", + }, + { + fileId = "521263", + text = "helm_robe_raidmage_j_01_tam.m2", + value = "helm_robe_raidmage_j_01_tam.m2", + }, + { + fileId = "521265", + text = "helm_robe_raidmage_j_01_trf.m2", + value = "helm_robe_raidmage_j_01_trf.m2", + }, + { + fileId = "521267", + text = "helm_robe_raidmage_j_01_trm.m2", + value = "helm_robe_raidmage_j_01_trm.m2", + }, + { + fileId = "521269", + text = "helm_robe_raidmage_j_01_wof.m2", + value = "helm_robe_raidmage_j_01_wof.m2", + }, + { + fileId = "521271", + text = "helm_robe_raidmage_j_01_wom.m2", + value = "helm_robe_raidmage_j_01_wom.m2", + }, + { + fileId = "533586", + text = "helm_robe_raidmage_k_01_bef.m2", + value = "helm_robe_raidmage_k_01_bef.m2", + }, + { + fileId = "533588", + text = "helm_robe_raidmage_k_01_bem.m2", + value = "helm_robe_raidmage_k_01_bem.m2", + }, + { + fileId = "533590", + text = "helm_robe_raidmage_k_01_drf.m2", + value = "helm_robe_raidmage_k_01_drf.m2", + }, + { + fileId = "533592", + text = "helm_robe_raidmage_k_01_drm.m2", + value = "helm_robe_raidmage_k_01_drm.m2", + }, + { + fileId = "533594", + text = "helm_robe_raidmage_k_01_dwf.m2", + value = "helm_robe_raidmage_k_01_dwf.m2", + }, + { + fileId = "533596", + text = "helm_robe_raidmage_k_01_dwm.m2", + value = "helm_robe_raidmage_k_01_dwm.m2", + }, + { + fileId = "533598", + text = "helm_robe_raidmage_k_01_gnf.m2", + value = "helm_robe_raidmage_k_01_gnf.m2", + }, + { + fileId = "533600", + text = "helm_robe_raidmage_k_01_gnm.m2", + value = "helm_robe_raidmage_k_01_gnm.m2", + }, + { + fileId = "533602", + text = "helm_robe_raidmage_k_01_gof.m2", + value = "helm_robe_raidmage_k_01_gof.m2", + }, + { + fileId = "533604", + text = "helm_robe_raidmage_k_01_gom.m2", + value = "helm_robe_raidmage_k_01_gom.m2", + }, + { + fileId = "533606", + text = "helm_robe_raidmage_k_01_huf.m2", + value = "helm_robe_raidmage_k_01_huf.m2", + }, + { + fileId = "533608", + text = "helm_robe_raidmage_k_01_hum.m2", + value = "helm_robe_raidmage_k_01_hum.m2", + }, + { + fileId = "533610", + text = "helm_robe_raidmage_k_01_nif.m2", + value = "helm_robe_raidmage_k_01_nif.m2", + }, + { + fileId = "533612", + text = "helm_robe_raidmage_k_01_nim.m2", + value = "helm_robe_raidmage_k_01_nim.m2", + }, + { + fileId = "533614", + text = "helm_robe_raidmage_k_01_orf.m2", + value = "helm_robe_raidmage_k_01_orf.m2", + }, + { + fileId = "533616", + text = "helm_robe_raidmage_k_01_orm.m2", + value = "helm_robe_raidmage_k_01_orm.m2", + }, + { + fileId = "533619", + text = "helm_robe_raidmage_k_01_scf.m2", + value = "helm_robe_raidmage_k_01_scf.m2", + }, + { + fileId = "533621", + text = "helm_robe_raidmage_k_01_scm.m2", + value = "helm_robe_raidmage_k_01_scm.m2", + }, + { + fileId = "533623", + text = "helm_robe_raidmage_k_01_taf.m2", + value = "helm_robe_raidmage_k_01_taf.m2", + }, + { + fileId = "533625", + text = "helm_robe_raidmage_k_01_tam.m2", + value = "helm_robe_raidmage_k_01_tam.m2", + }, + { + fileId = "533627", + text = "helm_robe_raidmage_k_01_trf.m2", + value = "helm_robe_raidmage_k_01_trf.m2", + }, + { + fileId = "533629", + text = "helm_robe_raidmage_k_01_trm.m2", + value = "helm_robe_raidmage_k_01_trm.m2", + }, + { + fileId = "533631", + text = "helm_robe_raidmage_k_01_wof.m2", + value = "helm_robe_raidmage_k_01_wof.m2", + }, + { + fileId = "533633", + text = "helm_robe_raidmage_k_01_wom.m2", + value = "helm_robe_raidmage_k_01_wom.m2", + }, + { + fileId = "142126", + text = "helm_robe_raidpriest_a_01_bef.m2", + value = "helm_robe_raidpriest_a_01_bef.m2", + }, + { + fileId = "142127", + text = "helm_robe_raidpriest_a_01_bem.m2", + value = "helm_robe_raidpriest_a_01_bem.m2", + }, + { + fileId = "142128", + text = "helm_robe_raidpriest_a_01_drf.m2", + value = "helm_robe_raidpriest_a_01_drf.m2", + }, + { + fileId = "142129", + text = "helm_robe_raidpriest_a_01_drm.m2", + value = "helm_robe_raidpriest_a_01_drm.m2", + }, + { + fileId = "142130", + text = "helm_robe_raidpriest_a_01_dwf.m2", + value = "helm_robe_raidpriest_a_01_dwf.m2", + }, + { + fileId = "142131", + text = "helm_robe_raidpriest_a_01_dwm.m2", + value = "helm_robe_raidpriest_a_01_dwm.m2", + }, + { + fileId = "142132", + text = "helm_robe_raidpriest_a_01_gnf.m2", + value = "helm_robe_raidpriest_a_01_gnf.m2", + }, + { + fileId = "142133", + text = "helm_robe_raidpriest_a_01_gnm.m2", + value = "helm_robe_raidpriest_a_01_gnm.m2", + }, + { + fileId = "142134", + text = "helm_robe_raidpriest_a_01_gof.m2", + value = "helm_robe_raidpriest_a_01_gof.m2", + }, + { + fileId = "142135", + text = "helm_robe_raidpriest_a_01_gom.m2", + value = "helm_robe_raidpriest_a_01_gom.m2", + }, + { + fileId = "142136", + text = "helm_robe_raidpriest_a_01_huf.m2", + value = "helm_robe_raidpriest_a_01_huf.m2", + }, + { + fileId = "142137", + text = "helm_robe_raidpriest_a_01_hum.m2", + value = "helm_robe_raidpriest_a_01_hum.m2", + }, + { + fileId = "142138", + text = "helm_robe_raidpriest_a_01_nif.m2", + value = "helm_robe_raidpriest_a_01_nif.m2", + }, + { + fileId = "142139", + text = "helm_robe_raidpriest_a_01_nim.m2", + value = "helm_robe_raidpriest_a_01_nim.m2", + }, + { + fileId = "142140", + text = "helm_robe_raidpriest_a_01_orf.m2", + value = "helm_robe_raidpriest_a_01_orf.m2", + }, + { + fileId = "142141", + text = "helm_robe_raidpriest_a_01_orm.m2", + value = "helm_robe_raidpriest_a_01_orm.m2", + }, + { + fileId = "142142", + text = "helm_robe_raidpriest_a_01_scf.m2", + value = "helm_robe_raidpriest_a_01_scf.m2", + }, + { + fileId = "142143", + text = "helm_robe_raidpriest_a_01_scm.m2", + value = "helm_robe_raidpriest_a_01_scm.m2", + }, + { + fileId = "142144", + text = "helm_robe_raidpriest_a_01_taf.m2", + value = "helm_robe_raidpriest_a_01_taf.m2", + }, + { + fileId = "142145", + text = "helm_robe_raidpriest_a_01_tam.m2", + value = "helm_robe_raidpriest_a_01_tam.m2", + }, + { + fileId = "142146", + text = "helm_robe_raidpriest_a_01_trf.m2", + value = "helm_robe_raidpriest_a_01_trf.m2", + }, + { + fileId = "142147", + text = "helm_robe_raidpriest_a_01_trm.m2", + value = "helm_robe_raidpriest_a_01_trm.m2", + }, + { + fileId = "432041", + text = "helm_robe_raidpriest_a_01_wof.m2", + value = "helm_robe_raidpriest_a_01_wof.m2", + }, + { + fileId = "432042", + text = "helm_robe_raidpriest_a_01_wom.m2", + value = "helm_robe_raidpriest_a_01_wom.m2", + }, + { + fileId = "142153", + text = "helm_robe_raidpriest_b_01_bef.m2", + value = "helm_robe_raidpriest_b_01_bef.m2", + }, + { + fileId = "142154", + text = "helm_robe_raidpriest_b_01_bem.m2", + value = "helm_robe_raidpriest_b_01_bem.m2", + }, + { + fileId = "142155", + text = "helm_robe_raidpriest_b_01_drf.m2", + value = "helm_robe_raidpriest_b_01_drf.m2", + }, + { + fileId = "142156", + text = "helm_robe_raidpriest_b_01_drm.m2", + value = "helm_robe_raidpriest_b_01_drm.m2", + }, + { + fileId = "142157", + text = "helm_robe_raidpriest_b_01_dwf.m2", + value = "helm_robe_raidpriest_b_01_dwf.m2", + }, + { + fileId = "142158", + text = "helm_robe_raidpriest_b_01_dwm.m2", + value = "helm_robe_raidpriest_b_01_dwm.m2", + }, + { + fileId = "142159", + text = "helm_robe_raidpriest_b_01_gnf.m2", + value = "helm_robe_raidpriest_b_01_gnf.m2", + }, + { + fileId = "142160", + text = "helm_robe_raidpriest_b_01_gnm.m2", + value = "helm_robe_raidpriest_b_01_gnm.m2", + }, + { + fileId = "142161", + text = "helm_robe_raidpriest_b_01_gof.m2", + value = "helm_robe_raidpriest_b_01_gof.m2", + }, + { + fileId = "142162", + text = "helm_robe_raidpriest_b_01_gom.m2", + value = "helm_robe_raidpriest_b_01_gom.m2", + }, + { + fileId = "142163", + text = "helm_robe_raidpriest_b_01_huf.m2", + value = "helm_robe_raidpriest_b_01_huf.m2", + }, + { + fileId = "142164", + text = "helm_robe_raidpriest_b_01_hum.m2", + value = "helm_robe_raidpriest_b_01_hum.m2", + }, + { + fileId = "142165", + text = "helm_robe_raidpriest_b_01_nif.m2", + value = "helm_robe_raidpriest_b_01_nif.m2", + }, + { + fileId = "142166", + text = "helm_robe_raidpriest_b_01_nim.m2", + value = "helm_robe_raidpriest_b_01_nim.m2", + }, + { + fileId = "142167", + text = "helm_robe_raidpriest_b_01_orf.m2", + value = "helm_robe_raidpriest_b_01_orf.m2", + }, + { + fileId = "142168", + text = "helm_robe_raidpriest_b_01_orm.m2", + value = "helm_robe_raidpriest_b_01_orm.m2", + }, + { + fileId = "142169", + text = "helm_robe_raidpriest_b_01_scf.m2", + value = "helm_robe_raidpriest_b_01_scf.m2", + }, + { + fileId = "142170", + text = "helm_robe_raidpriest_b_01_scm.m2", + value = "helm_robe_raidpriest_b_01_scm.m2", + }, + { + fileId = "142171", + text = "helm_robe_raidpriest_b_01_taf.m2", + value = "helm_robe_raidpriest_b_01_taf.m2", + }, + { + fileId = "142172", + text = "helm_robe_raidpriest_b_01_tam.m2", + value = "helm_robe_raidpriest_b_01_tam.m2", + }, + { + fileId = "142173", + text = "helm_robe_raidpriest_b_01_trf.m2", + value = "helm_robe_raidpriest_b_01_trf.m2", + }, + { + fileId = "142174", + text = "helm_robe_raidpriest_b_01_trm.m2", + value = "helm_robe_raidpriest_b_01_trm.m2", + }, + { + fileId = "454319", + text = "helm_robe_raidpriest_b_01_wof.m2", + value = "helm_robe_raidpriest_b_01_wof.m2", + }, + { + fileId = "432043", + text = "helm_robe_raidpriest_b_01_wom.m2", + value = "helm_robe_raidpriest_b_01_wom.m2", + }, + { + fileId = "142178", + text = "helm_robe_raidpriest_c_01_bef.m2", + value = "helm_robe_raidpriest_c_01_bef.m2", + }, + { + fileId = "142179", + text = "helm_robe_raidpriest_c_01_bem.m2", + value = "helm_robe_raidpriest_c_01_bem.m2", + }, + { + fileId = "142180", + text = "helm_robe_raidpriest_c_01_drf.m2", + value = "helm_robe_raidpriest_c_01_drf.m2", + }, + { + fileId = "142181", + text = "helm_robe_raidpriest_c_01_drm.m2", + value = "helm_robe_raidpriest_c_01_drm.m2", + }, + { + fileId = "142182", + text = "helm_robe_raidpriest_c_01_dwf.m2", + value = "helm_robe_raidpriest_c_01_dwf.m2", + }, + { + fileId = "142183", + text = "helm_robe_raidpriest_c_01_dwm.m2", + value = "helm_robe_raidpriest_c_01_dwm.m2", + }, + { + fileId = "142184", + text = "helm_robe_raidpriest_c_01_gnf.m2", + value = "helm_robe_raidpriest_c_01_gnf.m2", + }, + { + fileId = "142185", + text = "helm_robe_raidpriest_c_01_gnm.m2", + value = "helm_robe_raidpriest_c_01_gnm.m2", + }, + { + fileId = "142186", + text = "helm_robe_raidpriest_c_01_gof.m2", + value = "helm_robe_raidpriest_c_01_gof.m2", + }, + { + fileId = "142187", + text = "helm_robe_raidpriest_c_01_gom.m2", + value = "helm_robe_raidpriest_c_01_gom.m2", + }, + { + fileId = "142188", + text = "helm_robe_raidpriest_c_01_huf.m2", + value = "helm_robe_raidpriest_c_01_huf.m2", + }, + { + fileId = "142189", + text = "helm_robe_raidpriest_c_01_hum.m2", + value = "helm_robe_raidpriest_c_01_hum.m2", + }, + { + fileId = "142190", + text = "helm_robe_raidpriest_c_01_nif.m2", + value = "helm_robe_raidpriest_c_01_nif.m2", + }, + { + fileId = "142191", + text = "helm_robe_raidpriest_c_01_nim.m2", + value = "helm_robe_raidpriest_c_01_nim.m2", + }, + { + fileId = "142192", + text = "helm_robe_raidpriest_c_01_orf.m2", + value = "helm_robe_raidpriest_c_01_orf.m2", + }, + { + fileId = "142193", + text = "helm_robe_raidpriest_c_01_orm.m2", + value = "helm_robe_raidpriest_c_01_orm.m2", + }, + { + fileId = "142194", + text = "helm_robe_raidpriest_c_01_scf.m2", + value = "helm_robe_raidpriest_c_01_scf.m2", + }, + { + fileId = "142195", + text = "helm_robe_raidpriest_c_01_scm.m2", + value = "helm_robe_raidpriest_c_01_scm.m2", + }, + { + fileId = "142196", + text = "helm_robe_raidpriest_c_01_taf.m2", + value = "helm_robe_raidpriest_c_01_taf.m2", + }, + { + fileId = "142197", + text = "helm_robe_raidpriest_c_01_tam.m2", + value = "helm_robe_raidpriest_c_01_tam.m2", + }, + { + fileId = "142198", + text = "helm_robe_raidpriest_c_01_trf.m2", + value = "helm_robe_raidpriest_c_01_trf.m2", + }, + { + fileId = "142199", + text = "helm_robe_raidpriest_c_01_trm.m2", + value = "helm_robe_raidpriest_c_01_trm.m2", + }, + { + fileId = "432044", + text = "helm_robe_raidpriest_c_01_wof.m2", + value = "helm_robe_raidpriest_c_01_wof.m2", + }, + { + fileId = "432045", + text = "helm_robe_raidpriest_c_01_wom.m2", + value = "helm_robe_raidpriest_c_01_wom.m2", + }, + { + fileId = "142201", + text = "helm_robe_raidpriest_d_01_bef.m2", + value = "helm_robe_raidpriest_d_01_bef.m2", + }, + { + fileId = "142202", + text = "helm_robe_raidpriest_d_01_bem.m2", + value = "helm_robe_raidpriest_d_01_bem.m2", + }, + { + fileId = "142203", + text = "helm_robe_raidpriest_d_01_drf.m2", + value = "helm_robe_raidpriest_d_01_drf.m2", + }, + { + fileId = "142204", + text = "helm_robe_raidpriest_d_01_drm.m2", + value = "helm_robe_raidpriest_d_01_drm.m2", + }, + { + fileId = "142205", + text = "helm_robe_raidpriest_d_01_dwf.m2", + value = "helm_robe_raidpriest_d_01_dwf.m2", + }, + { + fileId = "142206", + text = "helm_robe_raidpriest_d_01_dwm.m2", + value = "helm_robe_raidpriest_d_01_dwm.m2", + }, + { + fileId = "142207", + text = "helm_robe_raidpriest_d_01_gnf.m2", + value = "helm_robe_raidpriest_d_01_gnf.m2", + }, + { + fileId = "142208", + text = "helm_robe_raidpriest_d_01_gnm.m2", + value = "helm_robe_raidpriest_d_01_gnm.m2", + }, + { + fileId = "142209", + text = "helm_robe_raidpriest_d_01_gof.m2", + value = "helm_robe_raidpriest_d_01_gof.m2", + }, + { + fileId = "142210", + text = "helm_robe_raidpriest_d_01_gom.m2", + value = "helm_robe_raidpriest_d_01_gom.m2", + }, + { + fileId = "142211", + text = "helm_robe_raidpriest_d_01_huf.m2", + value = "helm_robe_raidpriest_d_01_huf.m2", + }, + { + fileId = "142212", + text = "helm_robe_raidpriest_d_01_hum.m2", + value = "helm_robe_raidpriest_d_01_hum.m2", + }, + { + fileId = "142213", + text = "helm_robe_raidpriest_d_01_nif.m2", + value = "helm_robe_raidpriest_d_01_nif.m2", + }, + { + fileId = "142214", + text = "helm_robe_raidpriest_d_01_nim.m2", + value = "helm_robe_raidpriest_d_01_nim.m2", + }, + { + fileId = "142215", + text = "helm_robe_raidpriest_d_01_orf.m2", + value = "helm_robe_raidpriest_d_01_orf.m2", + }, + { + fileId = "142216", + text = "helm_robe_raidpriest_d_01_orm.m2", + value = "helm_robe_raidpriest_d_01_orm.m2", + }, + { + fileId = "142217", + text = "helm_robe_raidpriest_d_01_scf.m2", + value = "helm_robe_raidpriest_d_01_scf.m2", + }, + { + fileId = "142218", + text = "helm_robe_raidpriest_d_01_scm.m2", + value = "helm_robe_raidpriest_d_01_scm.m2", + }, + { + fileId = "142219", + text = "helm_robe_raidpriest_d_01_taf.m2", + value = "helm_robe_raidpriest_d_01_taf.m2", + }, + { + fileId = "142220", + text = "helm_robe_raidpriest_d_01_tam.m2", + value = "helm_robe_raidpriest_d_01_tam.m2", + }, + { + fileId = "142221", + text = "helm_robe_raidpriest_d_01_trf.m2", + value = "helm_robe_raidpriest_d_01_trf.m2", + }, + { + fileId = "142222", + text = "helm_robe_raidpriest_d_01_trm.m2", + value = "helm_robe_raidpriest_d_01_trm.m2", + }, + { + fileId = "454796", + text = "helm_robe_raidpriest_d_01_wof.m2", + value = "helm_robe_raidpriest_d_01_wof.m2", + }, + { + fileId = "442287", + text = "helm_robe_raidpriest_d_01_wom.m2", + value = "helm_robe_raidpriest_d_01_wom.m2", + }, + { + fileId = "142224", + text = "helm_robe_raidpriest_e_01_bef.m2", + value = "helm_robe_raidpriest_e_01_bef.m2", + }, + { + fileId = "142225", + text = "helm_robe_raidpriest_e_01_bem.m2", + value = "helm_robe_raidpriest_e_01_bem.m2", + }, + { + fileId = "142226", + text = "helm_robe_raidpriest_e_01_drf.m2", + value = "helm_robe_raidpriest_e_01_drf.m2", + }, + { + fileId = "142227", + text = "helm_robe_raidpriest_e_01_drm.m2", + value = "helm_robe_raidpriest_e_01_drm.m2", + }, + { + fileId = "142228", + text = "helm_robe_raidpriest_e_01_dwf.m2", + value = "helm_robe_raidpriest_e_01_dwf.m2", + }, + { + fileId = "142229", + text = "helm_robe_raidpriest_e_01_dwm.m2", + value = "helm_robe_raidpriest_e_01_dwm.m2", + }, + { + fileId = "142230", + text = "helm_robe_raidpriest_e_01_gnf.m2", + value = "helm_robe_raidpriest_e_01_gnf.m2", + }, + { + fileId = "142231", + text = "helm_robe_raidpriest_e_01_gnm.m2", + value = "helm_robe_raidpriest_e_01_gnm.m2", + }, + { + fileId = "442745", + text = "helm_robe_raidpriest_e_01_gof.m2", + value = "helm_robe_raidpriest_e_01_gof.m2", + }, + { + fileId = "442288", + text = "helm_robe_raidpriest_e_01_gom.m2", + value = "helm_robe_raidpriest_e_01_gom.m2", + }, + { + fileId = "142232", + text = "helm_robe_raidpriest_e_01_huf.m2", + value = "helm_robe_raidpriest_e_01_huf.m2", + }, + { + fileId = "142233", + text = "helm_robe_raidpriest_e_01_hum.m2", + value = "helm_robe_raidpriest_e_01_hum.m2", + }, + { + fileId = "142234", + text = "helm_robe_raidpriest_e_01_nif.m2", + value = "helm_robe_raidpriest_e_01_nif.m2", + }, + { + fileId = "142235", + text = "helm_robe_raidpriest_e_01_nim.m2", + value = "helm_robe_raidpriest_e_01_nim.m2", + }, + { + fileId = "142236", + text = "helm_robe_raidpriest_e_01_orf.m2", + value = "helm_robe_raidpriest_e_01_orf.m2", + }, + { + fileId = "142237", + text = "helm_robe_raidpriest_e_01_orm.m2", + value = "helm_robe_raidpriest_e_01_orm.m2", + }, + { + fileId = "142238", + text = "helm_robe_raidpriest_e_01_scf.m2", + value = "helm_robe_raidpriest_e_01_scf.m2", + }, + { + fileId = "142239", + text = "helm_robe_raidpriest_e_01_scm.m2", + value = "helm_robe_raidpriest_e_01_scm.m2", + }, + { + fileId = "142240", + text = "helm_robe_raidpriest_e_01_taf.m2", + value = "helm_robe_raidpriest_e_01_taf.m2", + }, + { + fileId = "142241", + text = "helm_robe_raidpriest_e_01_tam.m2", + value = "helm_robe_raidpriest_e_01_tam.m2", + }, + { + fileId = "142242", + text = "helm_robe_raidpriest_e_01_trf.m2", + value = "helm_robe_raidpriest_e_01_trf.m2", + }, + { + fileId = "142243", + text = "helm_robe_raidpriest_e_01_trm.m2", + value = "helm_robe_raidpriest_e_01_trm.m2", + }, + { + fileId = "464138", + text = "helm_robe_raidpriest_e_01_wof.m2", + value = "helm_robe_raidpriest_e_01_wof.m2", + }, + { + fileId = "463097", + text = "helm_robe_raidpriest_e_01_wom.m2", + value = "helm_robe_raidpriest_e_01_wom.m2", + }, + { + fileId = "142246", + text = "helm_robe_raidpriest_f_01_bef.m2", + value = "helm_robe_raidpriest_f_01_bef.m2", + }, + { + fileId = "142247", + text = "helm_robe_raidpriest_f_01_bem.m2", + value = "helm_robe_raidpriest_f_01_bem.m2", + }, + { + fileId = "142248", + text = "helm_robe_raidpriest_f_01_drf.m2", + value = "helm_robe_raidpriest_f_01_drf.m2", + }, + { + fileId = "142249", + text = "helm_robe_raidpriest_f_01_drm.m2", + value = "helm_robe_raidpriest_f_01_drm.m2", + }, + { + fileId = "142250", + text = "helm_robe_raidpriest_f_01_dwf.m2", + value = "helm_robe_raidpriest_f_01_dwf.m2", + }, + { + fileId = "142251", + text = "helm_robe_raidpriest_f_01_dwm.m2", + value = "helm_robe_raidpriest_f_01_dwm.m2", + }, + { + fileId = "142252", + text = "helm_robe_raidpriest_f_01_gnf.m2", + value = "helm_robe_raidpriest_f_01_gnf.m2", + }, + { + fileId = "142253", + text = "helm_robe_raidpriest_f_01_gnm.m2", + value = "helm_robe_raidpriest_f_01_gnm.m2", + }, + { + fileId = "442746", + text = "helm_robe_raidpriest_f_01_gof.m2", + value = "helm_robe_raidpriest_f_01_gof.m2", + }, + { + fileId = "142254", + text = "helm_robe_raidpriest_f_01_gom.m2", + value = "helm_robe_raidpriest_f_01_gom.m2", + }, + { + fileId = "142255", + text = "helm_robe_raidpriest_f_01_huf.m2", + value = "helm_robe_raidpriest_f_01_huf.m2", + }, + { + fileId = "142256", + text = "helm_robe_raidpriest_f_01_hum.m2", + value = "helm_robe_raidpriest_f_01_hum.m2", + }, + { + fileId = "142257", + text = "helm_robe_raidpriest_f_01_nif.m2", + value = "helm_robe_raidpriest_f_01_nif.m2", + }, + { + fileId = "142258", + text = "helm_robe_raidpriest_f_01_nim.m2", + value = "helm_robe_raidpriest_f_01_nim.m2", + }, + { + fileId = "142259", + text = "helm_robe_raidpriest_f_01_orf.m2", + value = "helm_robe_raidpriest_f_01_orf.m2", + }, + { + fileId = "142260", + text = "helm_robe_raidpriest_f_01_orm.m2", + value = "helm_robe_raidpriest_f_01_orm.m2", + }, + { + fileId = "142261", + text = "helm_robe_raidpriest_f_01_scf.m2", + value = "helm_robe_raidpriest_f_01_scf.m2", + }, + { + fileId = "142262", + text = "helm_robe_raidpriest_f_01_scm.m2", + value = "helm_robe_raidpriest_f_01_scm.m2", + }, + { + fileId = "142263", + text = "helm_robe_raidpriest_f_01_taf.m2", + value = "helm_robe_raidpriest_f_01_taf.m2", + }, + { + fileId = "142264", + text = "helm_robe_raidpriest_f_01_tam.m2", + value = "helm_robe_raidpriest_f_01_tam.m2", + }, + { + fileId = "142265", + text = "helm_robe_raidpriest_f_01_trf.m2", + value = "helm_robe_raidpriest_f_01_trf.m2", + }, + { + fileId = "142266", + text = "helm_robe_raidpriest_f_01_trm.m2", + value = "helm_robe_raidpriest_f_01_trm.m2", + }, + { + fileId = "454797", + text = "helm_robe_raidpriest_f_01_wof.m2", + value = "helm_robe_raidpriest_f_01_wof.m2", + }, + { + fileId = "442747", + text = "helm_robe_raidpriest_f_01_wom.m2", + value = "helm_robe_raidpriest_f_01_wom.m2", + }, + { + fileId = "142274", + text = "helm_robe_raidpriest_g_01_bef.m2", + value = "helm_robe_raidpriest_g_01_bef.m2", + }, + { + fileId = "142275", + text = "helm_robe_raidpriest_g_01_bem.m2", + value = "helm_robe_raidpriest_g_01_bem.m2", + }, + { + fileId = "142276", + text = "helm_robe_raidpriest_g_01_drf.m2", + value = "helm_robe_raidpriest_g_01_drf.m2", + }, + { + fileId = "142277", + text = "helm_robe_raidpriest_g_01_drm.m2", + value = "helm_robe_raidpriest_g_01_drm.m2", + }, + { + fileId = "142278", + text = "helm_robe_raidpriest_g_01_dwf.m2", + value = "helm_robe_raidpriest_g_01_dwf.m2", + }, + { + fileId = "142279", + text = "helm_robe_raidpriest_g_01_dwm.m2", + value = "helm_robe_raidpriest_g_01_dwm.m2", + }, + { + fileId = "142280", + text = "helm_robe_raidpriest_g_01_gnf.m2", + value = "helm_robe_raidpriest_g_01_gnf.m2", + }, + { + fileId = "142281", + text = "helm_robe_raidpriest_g_01_gnm.m2", + value = "helm_robe_raidpriest_g_01_gnm.m2", + }, + { + fileId = "142282", + text = "helm_robe_raidpriest_g_01_gof.m2", + value = "helm_robe_raidpriest_g_01_gof.m2", + }, + { + fileId = "142283", + text = "helm_robe_raidpriest_g_01_gom.m2", + value = "helm_robe_raidpriest_g_01_gom.m2", + }, + { + fileId = "142284", + text = "helm_robe_raidpriest_g_01_huf.m2", + value = "helm_robe_raidpriest_g_01_huf.m2", + }, + { + fileId = "142285", + text = "helm_robe_raidpriest_g_01_hum.m2", + value = "helm_robe_raidpriest_g_01_hum.m2", + }, + { + fileId = "142286", + text = "helm_robe_raidpriest_g_01_nif.m2", + value = "helm_robe_raidpriest_g_01_nif.m2", + }, + { + fileId = "142287", + text = "helm_robe_raidpriest_g_01_nim.m2", + value = "helm_robe_raidpriest_g_01_nim.m2", + }, + { + fileId = "142288", + text = "helm_robe_raidpriest_g_01_orf.m2", + value = "helm_robe_raidpriest_g_01_orf.m2", + }, + { + fileId = "142289", + text = "helm_robe_raidpriest_g_01_orm.m2", + value = "helm_robe_raidpriest_g_01_orm.m2", + }, + { + fileId = "142290", + text = "helm_robe_raidpriest_g_01_scf.m2", + value = "helm_robe_raidpriest_g_01_scf.m2", + }, + { + fileId = "142291", + text = "helm_robe_raidpriest_g_01_scm.m2", + value = "helm_robe_raidpriest_g_01_scm.m2", + }, + { + fileId = "142292", + text = "helm_robe_raidpriest_g_01_taf.m2", + value = "helm_robe_raidpriest_g_01_taf.m2", + }, + { + fileId = "142293", + text = "helm_robe_raidpriest_g_01_tam.m2", + value = "helm_robe_raidpriest_g_01_tam.m2", + }, + { + fileId = "142294", + text = "helm_robe_raidpriest_g_01_trf.m2", + value = "helm_robe_raidpriest_g_01_trf.m2", + }, + { + fileId = "142295", + text = "helm_robe_raidpriest_g_01_trm.m2", + value = "helm_robe_raidpriest_g_01_trm.m2", + }, + { + fileId = "454320", + text = "helm_robe_raidpriest_g_01_wof.m2", + value = "helm_robe_raidpriest_g_01_wof.m2", + }, + { + fileId = "442748", + text = "helm_robe_raidpriest_g_01_wom.m2", + value = "helm_robe_raidpriest_g_01_wom.m2", + }, + { + fileId = "341777", + text = "helm_robe_raidpriest_h_01_bef.m2", + value = "helm_robe_raidpriest_h_01_bef.m2", + }, + { + fileId = "341778", + text = "helm_robe_raidpriest_h_01_bem.m2", + value = "helm_robe_raidpriest_h_01_bem.m2", + }, + { + fileId = "341779", + text = "helm_robe_raidpriest_h_01_drf.m2", + value = "helm_robe_raidpriest_h_01_drf.m2", + }, + { + fileId = "341780", + text = "helm_robe_raidpriest_h_01_drm.m2", + value = "helm_robe_raidpriest_h_01_drm.m2", + }, + { + fileId = "341781", + text = "helm_robe_raidpriest_h_01_dwf.m2", + value = "helm_robe_raidpriest_h_01_dwf.m2", + }, + { + fileId = "341782", + text = "helm_robe_raidpriest_h_01_dwm.m2", + value = "helm_robe_raidpriest_h_01_dwm.m2", + }, + { + fileId = "341783", + text = "helm_robe_raidpriest_h_01_gnf.m2", + value = "helm_robe_raidpriest_h_01_gnf.m2", + }, + { + fileId = "341784", + text = "helm_robe_raidpriest_h_01_gnm.m2", + value = "helm_robe_raidpriest_h_01_gnm.m2", + }, + { + fileId = "341785", + text = "helm_robe_raidpriest_h_01_gof.m2", + value = "helm_robe_raidpriest_h_01_gof.m2", + }, + { + fileId = "341786", + text = "helm_robe_raidpriest_h_01_gom.m2", + value = "helm_robe_raidpriest_h_01_gom.m2", + }, + { + fileId = "341787", + text = "helm_robe_raidpriest_h_01_huf.m2", + value = "helm_robe_raidpriest_h_01_huf.m2", + }, + { + fileId = "341788", + text = "helm_robe_raidpriest_h_01_hum.m2", + value = "helm_robe_raidpriest_h_01_hum.m2", + }, + { + fileId = "341789", + text = "helm_robe_raidpriest_h_01_nif.m2", + value = "helm_robe_raidpriest_h_01_nif.m2", + }, + { + fileId = "341790", + text = "helm_robe_raidpriest_h_01_nim.m2", + value = "helm_robe_raidpriest_h_01_nim.m2", + }, + { + fileId = "341791", + text = "helm_robe_raidpriest_h_01_orf.m2", + value = "helm_robe_raidpriest_h_01_orf.m2", + }, + { + fileId = "341792", + text = "helm_robe_raidpriest_h_01_orm.m2", + value = "helm_robe_raidpriest_h_01_orm.m2", + }, + { + fileId = "341793", + text = "helm_robe_raidpriest_h_01_scf.m2", + value = "helm_robe_raidpriest_h_01_scf.m2", + }, + { + fileId = "341794", + text = "helm_robe_raidpriest_h_01_scm.m2", + value = "helm_robe_raidpriest_h_01_scm.m2", + }, + { + fileId = "341795", + text = "helm_robe_raidpriest_h_01_taf.m2", + value = "helm_robe_raidpriest_h_01_taf.m2", + }, + { + fileId = "341796", + text = "helm_robe_raidpriest_h_01_tam.m2", + value = "helm_robe_raidpriest_h_01_tam.m2", + }, + { + fileId = "341797", + text = "helm_robe_raidpriest_h_01_trf.m2", + value = "helm_robe_raidpriest_h_01_trf.m2", + }, + { + fileId = "341798", + text = "helm_robe_raidpriest_h_01_trm.m2", + value = "helm_robe_raidpriest_h_01_trm.m2", + }, + { + fileId = "454518", + text = "helm_robe_raidpriest_h_01_wof.m2", + value = "helm_robe_raidpriest_h_01_wof.m2", + }, + { + fileId = "454519", + text = "helm_robe_raidpriest_h_01_wom.m2", + value = "helm_robe_raidpriest_h_01_wom.m2", + }, + { + fileId = "516428", + text = "helm_robe_raidpriest_j_01_bef.m2", + value = "helm_robe_raidpriest_j_01_bef.m2", + }, + { + fileId = "516430", + text = "helm_robe_raidpriest_j_01_bem.m2", + value = "helm_robe_raidpriest_j_01_bem.m2", + }, + { + fileId = "516432", + text = "helm_robe_raidpriest_j_01_drf.m2", + value = "helm_robe_raidpriest_j_01_drf.m2", + }, + { + fileId = "516434", + text = "helm_robe_raidpriest_j_01_drm.m2", + value = "helm_robe_raidpriest_j_01_drm.m2", + }, + { + fileId = "516436", + text = "helm_robe_raidpriest_j_01_dwf.m2", + value = "helm_robe_raidpriest_j_01_dwf.m2", + }, + { + fileId = "516438", + text = "helm_robe_raidpriest_j_01_dwm.m2", + value = "helm_robe_raidpriest_j_01_dwm.m2", + }, + { + fileId = "516440", + text = "helm_robe_raidpriest_j_01_gnf.m2", + value = "helm_robe_raidpriest_j_01_gnf.m2", + }, + { + fileId = "516442", + text = "helm_robe_raidpriest_j_01_gnm.m2", + value = "helm_robe_raidpriest_j_01_gnm.m2", + }, + { + fileId = "516444", + text = "helm_robe_raidpriest_j_01_gof.m2", + value = "helm_robe_raidpriest_j_01_gof.m2", + }, + { + fileId = "516446", + text = "helm_robe_raidpriest_j_01_gom.m2", + value = "helm_robe_raidpriest_j_01_gom.m2", + }, + { + fileId = "516448", + text = "helm_robe_raidpriest_j_01_huf.m2", + value = "helm_robe_raidpriest_j_01_huf.m2", + }, + { + fileId = "516450", + text = "helm_robe_raidpriest_j_01_hum.m2", + value = "helm_robe_raidpriest_j_01_hum.m2", + }, + { + fileId = "516452", + text = "helm_robe_raidpriest_j_01_nif.m2", + value = "helm_robe_raidpriest_j_01_nif.m2", + }, + { + fileId = "516454", + text = "helm_robe_raidpriest_j_01_nim.m2", + value = "helm_robe_raidpriest_j_01_nim.m2", + }, + { + fileId = "516456", + text = "helm_robe_raidpriest_j_01_orf.m2", + value = "helm_robe_raidpriest_j_01_orf.m2", + }, + { + fileId = "516458", + text = "helm_robe_raidpriest_j_01_orm.m2", + value = "helm_robe_raidpriest_j_01_orm.m2", + }, + { + fileId = "516460", + text = "helm_robe_raidpriest_j_01_scf.m2", + value = "helm_robe_raidpriest_j_01_scf.m2", + }, + { + fileId = "516462", + text = "helm_robe_raidpriest_j_01_scm.m2", + value = "helm_robe_raidpriest_j_01_scm.m2", + }, + { + fileId = "516464", + text = "helm_robe_raidpriest_j_01_taf.m2", + value = "helm_robe_raidpriest_j_01_taf.m2", + }, + { + fileId = "516466", + text = "helm_robe_raidpriest_j_01_tam.m2", + value = "helm_robe_raidpriest_j_01_tam.m2", + }, + { + fileId = "516468", + text = "helm_robe_raidpriest_j_01_trf.m2", + value = "helm_robe_raidpriest_j_01_trf.m2", + }, + { + fileId = "516470", + text = "helm_robe_raidpriest_j_01_trm.m2", + value = "helm_robe_raidpriest_j_01_trm.m2", + }, + { + fileId = "516472", + text = "helm_robe_raidpriest_j_01_wof.m2", + value = "helm_robe_raidpriest_j_01_wof.m2", + }, + { + fileId = "516474", + text = "helm_robe_raidpriest_j_01_wom.m2", + value = "helm_robe_raidpriest_j_01_wom.m2", + }, + { + fileId = "538246", + text = "helm_robe_raidpriest_k_01_bef.m2", + value = "helm_robe_raidpriest_k_01_bef.m2", + }, + { + fileId = "538248", + text = "helm_robe_raidpriest_k_01_bem.m2", + value = "helm_robe_raidpriest_k_01_bem.m2", + }, + { + fileId = "538250", + text = "helm_robe_raidpriest_k_01_drf.m2", + value = "helm_robe_raidpriest_k_01_drf.m2", + }, + { + fileId = "538252", + text = "helm_robe_raidpriest_k_01_drm.m2", + value = "helm_robe_raidpriest_k_01_drm.m2", + }, + { + fileId = "538254", + text = "helm_robe_raidpriest_k_01_dwf.m2", + value = "helm_robe_raidpriest_k_01_dwf.m2", + }, + { + fileId = "538256", + text = "helm_robe_raidpriest_k_01_dwm.m2", + value = "helm_robe_raidpriest_k_01_dwm.m2", + }, + { + fileId = "538258", + text = "helm_robe_raidpriest_k_01_gnf.m2", + value = "helm_robe_raidpriest_k_01_gnf.m2", + }, + { + fileId = "538260", + text = "helm_robe_raidpriest_k_01_gnm.m2", + value = "helm_robe_raidpriest_k_01_gnm.m2", + }, + { + fileId = "538262", + text = "helm_robe_raidpriest_k_01_gof.m2", + value = "helm_robe_raidpriest_k_01_gof.m2", + }, + { + fileId = "538264", + text = "helm_robe_raidpriest_k_01_gom.m2", + value = "helm_robe_raidpriest_k_01_gom.m2", + }, + { + fileId = "538266", + text = "helm_robe_raidpriest_k_01_huf.m2", + value = "helm_robe_raidpriest_k_01_huf.m2", + }, + { + fileId = "538268", + text = "helm_robe_raidpriest_k_01_hum.m2", + value = "helm_robe_raidpriest_k_01_hum.m2", + }, + { + fileId = "538270", + text = "helm_robe_raidpriest_k_01_nif.m2", + value = "helm_robe_raidpriest_k_01_nif.m2", + }, + { + fileId = "538272", + text = "helm_robe_raidpriest_k_01_nim.m2", + value = "helm_robe_raidpriest_k_01_nim.m2", + }, + { + fileId = "538274", + text = "helm_robe_raidpriest_k_01_orf.m2", + value = "helm_robe_raidpriest_k_01_orf.m2", + }, + { + fileId = "538276", + text = "helm_robe_raidpriest_k_01_orm.m2", + value = "helm_robe_raidpriest_k_01_orm.m2", + }, + { + fileId = "538278", + text = "helm_robe_raidpriest_k_01_scf.m2", + value = "helm_robe_raidpriest_k_01_scf.m2", + }, + { + fileId = "538280", + text = "helm_robe_raidpriest_k_01_scm.m2", + value = "helm_robe_raidpriest_k_01_scm.m2", + }, + { + fileId = "538282", + text = "helm_robe_raidpriest_k_01_taf.m2", + value = "helm_robe_raidpriest_k_01_taf.m2", + }, + { + fileId = "538284", + text = "helm_robe_raidpriest_k_01_tam.m2", + value = "helm_robe_raidpriest_k_01_tam.m2", + }, + { + fileId = "538286", + text = "helm_robe_raidpriest_k_01_trf.m2", + value = "helm_robe_raidpriest_k_01_trf.m2", + }, + { + fileId = "538288", + text = "helm_robe_raidpriest_k_01_trm.m2", + value = "helm_robe_raidpriest_k_01_trm.m2", + }, + { + fileId = "538290", + text = "helm_robe_raidpriest_k_01_wof.m2", + value = "helm_robe_raidpriest_k_01_wof.m2", + }, + { + fileId = "538292", + text = "helm_robe_raidpriest_k_01_wom.m2", + value = "helm_robe_raidpriest_k_01_wom.m2", + }, + { + fileId = "142300", + text = "helm_robe_raidshaman_c_01_bef.m2", + value = "helm_robe_raidshaman_c_01_bef.m2", + }, + { + fileId = "142301", + text = "helm_robe_raidshaman_c_01_bem.m2", + value = "helm_robe_raidshaman_c_01_bem.m2", + }, + { + fileId = "142302", + text = "helm_robe_raidshaman_c_01_drf.m2", + value = "helm_robe_raidshaman_c_01_drf.m2", + }, + { + fileId = "142303", + text = "helm_robe_raidshaman_c_01_drm.m2", + value = "helm_robe_raidshaman_c_01_drm.m2", + }, + { + fileId = "142304", + text = "helm_robe_raidshaman_c_01_dwf.m2", + value = "helm_robe_raidshaman_c_01_dwf.m2", + }, + { + fileId = "142305", + text = "helm_robe_raidshaman_c_01_dwm.m2", + value = "helm_robe_raidshaman_c_01_dwm.m2", + }, + { + fileId = "142306", + text = "helm_robe_raidshaman_c_01_gnf.m2", + value = "helm_robe_raidshaman_c_01_gnf.m2", + }, + { + fileId = "142307", + text = "helm_robe_raidshaman_c_01_gnm.m2", + value = "helm_robe_raidshaman_c_01_gnm.m2", + }, + { + fileId = "142308", + text = "helm_robe_raidshaman_c_01_gof.m2", + value = "helm_robe_raidshaman_c_01_gof.m2", + }, + { + fileId = "142309", + text = "helm_robe_raidshaman_c_01_gom.m2", + value = "helm_robe_raidshaman_c_01_gom.m2", + }, + { + fileId = "142310", + text = "helm_robe_raidshaman_c_01_huf.m2", + value = "helm_robe_raidshaman_c_01_huf.m2", + }, + { + fileId = "142311", + text = "helm_robe_raidshaman_c_01_hum.m2", + value = "helm_robe_raidshaman_c_01_hum.m2", + }, + { + fileId = "142312", + text = "helm_robe_raidshaman_c_01_nif.m2", + value = "helm_robe_raidshaman_c_01_nif.m2", + }, + { + fileId = "142313", + text = "helm_robe_raidshaman_c_01_nim.m2", + value = "helm_robe_raidshaman_c_01_nim.m2", + }, + { + fileId = "142314", + text = "helm_robe_raidshaman_c_01_orf.m2", + value = "helm_robe_raidshaman_c_01_orf.m2", + }, + { + fileId = "142315", + text = "helm_robe_raidshaman_c_01_orm.m2", + value = "helm_robe_raidshaman_c_01_orm.m2", + }, + { + fileId = "142316", + text = "helm_robe_raidshaman_c_01_scf.m2", + value = "helm_robe_raidshaman_c_01_scf.m2", + }, + { + fileId = "142317", + text = "helm_robe_raidshaman_c_01_scm.m2", + value = "helm_robe_raidshaman_c_01_scm.m2", + }, + { + fileId = "142318", + text = "helm_robe_raidshaman_c_01_taf.m2", + value = "helm_robe_raidshaman_c_01_taf.m2", + }, + { + fileId = "142319", + text = "helm_robe_raidshaman_c_01_tam.m2", + value = "helm_robe_raidshaman_c_01_tam.m2", + }, + { + fileId = "142320", + text = "helm_robe_raidshaman_c_01_trf.m2", + value = "helm_robe_raidshaman_c_01_trf.m2", + }, + { + fileId = "142321", + text = "helm_robe_raidshaman_c_01_trm.m2", + value = "helm_robe_raidshaman_c_01_trm.m2", + }, + { + fileId = "454520", + text = "helm_robe_raidshaman_c_01_wof.m2", + value = "helm_robe_raidshaman_c_01_wof.m2", + }, + { + fileId = "454521", + text = "helm_robe_raidshaman_c_01_wom.m2", + value = "helm_robe_raidshaman_c_01_wom.m2", + }, + { + fileId = "142322", + text = "helm_robe_raidwarlock_a_01_bef.m2", + value = "helm_robe_raidwarlock_a_01_bef.m2", + }, + { + fileId = "142323", + text = "helm_robe_raidwarlock_a_01_bem.m2", + value = "helm_robe_raidwarlock_a_01_bem.m2", + }, + { + fileId = "142324", + text = "helm_robe_raidwarlock_a_01_drf.m2", + value = "helm_robe_raidwarlock_a_01_drf.m2", + }, + { + fileId = "142325", + text = "helm_robe_raidwarlock_a_01_drm.m2", + value = "helm_robe_raidwarlock_a_01_drm.m2", + }, + { + fileId = "142326", + text = "helm_robe_raidwarlock_a_01_dwf.m2", + value = "helm_robe_raidwarlock_a_01_dwf.m2", + }, + { + fileId = "142327", + text = "helm_robe_raidwarlock_a_01_dwm.m2", + value = "helm_robe_raidwarlock_a_01_dwm.m2", + }, + { + fileId = "142328", + text = "helm_robe_raidwarlock_a_01_gnf.m2", + value = "helm_robe_raidwarlock_a_01_gnf.m2", + }, + { + fileId = "142329", + text = "helm_robe_raidwarlock_a_01_gnm.m2", + value = "helm_robe_raidwarlock_a_01_gnm.m2", + }, + { + fileId = "142330", + text = "helm_robe_raidwarlock_a_01_gof.m2", + value = "helm_robe_raidwarlock_a_01_gof.m2", + }, + { + fileId = "142331", + text = "helm_robe_raidwarlock_a_01_gom.m2", + value = "helm_robe_raidwarlock_a_01_gom.m2", + }, + { + fileId = "142332", + text = "helm_robe_raidwarlock_a_01_huf.m2", + value = "helm_robe_raidwarlock_a_01_huf.m2", + }, + { + fileId = "142333", + text = "helm_robe_raidwarlock_a_01_hum.m2", + value = "helm_robe_raidwarlock_a_01_hum.m2", + }, + { + fileId = "142334", + text = "helm_robe_raidwarlock_a_01_nif.m2", + value = "helm_robe_raidwarlock_a_01_nif.m2", + }, + { + fileId = "142335", + text = "helm_robe_raidwarlock_a_01_nim.m2", + value = "helm_robe_raidwarlock_a_01_nim.m2", + }, + { + fileId = "142336", + text = "helm_robe_raidwarlock_a_01_orf.m2", + value = "helm_robe_raidwarlock_a_01_orf.m2", + }, + { + fileId = "142337", + text = "helm_robe_raidwarlock_a_01_orm.m2", + value = "helm_robe_raidwarlock_a_01_orm.m2", + }, + { + fileId = "142338", + text = "helm_robe_raidwarlock_a_01_scf.m2", + value = "helm_robe_raidwarlock_a_01_scf.m2", + }, + { + fileId = "142339", + text = "helm_robe_raidwarlock_a_01_scm.m2", + value = "helm_robe_raidwarlock_a_01_scm.m2", + }, + { + fileId = "142340", + text = "helm_robe_raidwarlock_a_01_taf.m2", + value = "helm_robe_raidwarlock_a_01_taf.m2", + }, + { + fileId = "142341", + text = "helm_robe_raidwarlock_a_01_tam.m2", + value = "helm_robe_raidwarlock_a_01_tam.m2", + }, + { + fileId = "142342", + text = "helm_robe_raidwarlock_a_01_trf.m2", + value = "helm_robe_raidwarlock_a_01_trf.m2", + }, + { + fileId = "142343", + text = "helm_robe_raidwarlock_a_01_trm.m2", + value = "helm_robe_raidwarlock_a_01_trm.m2", + }, + { + fileId = "454522", + text = "helm_robe_raidwarlock_a_01_wof.m2", + value = "helm_robe_raidwarlock_a_01_wof.m2", + }, + { + fileId = "454523", + text = "helm_robe_raidwarlock_a_01_wom.m2", + value = "helm_robe_raidwarlock_a_01_wom.m2", + }, + { + fileId = "142349", + text = "helm_robe_raidwarlock_b_01_bef.m2", + value = "helm_robe_raidwarlock_b_01_bef.m2", + }, + { + fileId = "142350", + text = "helm_robe_raidwarlock_b_01_bem.m2", + value = "helm_robe_raidwarlock_b_01_bem.m2", + }, + { + fileId = "142351", + text = "helm_robe_raidwarlock_b_01_drf.m2", + value = "helm_robe_raidwarlock_b_01_drf.m2", + }, + { + fileId = "142352", + text = "helm_robe_raidwarlock_b_01_drm.m2", + value = "helm_robe_raidwarlock_b_01_drm.m2", + }, + { + fileId = "142353", + text = "helm_robe_raidwarlock_b_01_dwf.m2", + value = "helm_robe_raidwarlock_b_01_dwf.m2", + }, + { + fileId = "142354", + text = "helm_robe_raidwarlock_b_01_dwm.m2", + value = "helm_robe_raidwarlock_b_01_dwm.m2", + }, + { + fileId = "142355", + text = "helm_robe_raidwarlock_b_01_gnf.m2", + value = "helm_robe_raidwarlock_b_01_gnf.m2", + }, + { + fileId = "142356", + text = "helm_robe_raidwarlock_b_01_gnm.m2", + value = "helm_robe_raidwarlock_b_01_gnm.m2", + }, + { + fileId = "142357", + text = "helm_robe_raidwarlock_b_01_gof.m2", + value = "helm_robe_raidwarlock_b_01_gof.m2", + }, + { + fileId = "142358", + text = "helm_robe_raidwarlock_b_01_gom.m2", + value = "helm_robe_raidwarlock_b_01_gom.m2", + }, + { + fileId = "142359", + text = "helm_robe_raidwarlock_b_01_huf.m2", + value = "helm_robe_raidwarlock_b_01_huf.m2", + }, + { + fileId = "142360", + text = "helm_robe_raidwarlock_b_01_hum.m2", + value = "helm_robe_raidwarlock_b_01_hum.m2", + }, + { + fileId = "142361", + text = "helm_robe_raidwarlock_b_01_nif.m2", + value = "helm_robe_raidwarlock_b_01_nif.m2", + }, + { + fileId = "142362", + text = "helm_robe_raidwarlock_b_01_nim.m2", + value = "helm_robe_raidwarlock_b_01_nim.m2", + }, + { + fileId = "142363", + text = "helm_robe_raidwarlock_b_01_orf.m2", + value = "helm_robe_raidwarlock_b_01_orf.m2", + }, + { + fileId = "142364", + text = "helm_robe_raidwarlock_b_01_orm.m2", + value = "helm_robe_raidwarlock_b_01_orm.m2", + }, + { + fileId = "142365", + text = "helm_robe_raidwarlock_b_01_scf.m2", + value = "helm_robe_raidwarlock_b_01_scf.m2", + }, + { + fileId = "142366", + text = "helm_robe_raidwarlock_b_01_scm.m2", + value = "helm_robe_raidwarlock_b_01_scm.m2", + }, + { + fileId = "142367", + text = "helm_robe_raidwarlock_b_01_taf.m2", + value = "helm_robe_raidwarlock_b_01_taf.m2", + }, + { + fileId = "142368", + text = "helm_robe_raidwarlock_b_01_tam.m2", + value = "helm_robe_raidwarlock_b_01_tam.m2", + }, + { + fileId = "142369", + text = "helm_robe_raidwarlock_b_01_trf.m2", + value = "helm_robe_raidwarlock_b_01_trf.m2", + }, + { + fileId = "142370", + text = "helm_robe_raidwarlock_b_01_trm.m2", + value = "helm_robe_raidwarlock_b_01_trm.m2", + }, + { + fileId = "454524", + text = "helm_robe_raidwarlock_b_01_wof.m2", + value = "helm_robe_raidwarlock_b_01_wof.m2", + }, + { + fileId = "454525", + text = "helm_robe_raidwarlock_b_01_wom.m2", + value = "helm_robe_raidwarlock_b_01_wom.m2", + }, + { + fileId = "142375", + text = "helm_robe_raidwarlock_c_01_bef.m2", + value = "helm_robe_raidwarlock_c_01_bef.m2", + }, + { + fileId = "142376", + text = "helm_robe_raidwarlock_c_01_bem.m2", + value = "helm_robe_raidwarlock_c_01_bem.m2", + }, + { + fileId = "142377", + text = "helm_robe_raidwarlock_c_01_drf.m2", + value = "helm_robe_raidwarlock_c_01_drf.m2", + }, + { + fileId = "142378", + text = "helm_robe_raidwarlock_c_01_drm.m2", + value = "helm_robe_raidwarlock_c_01_drm.m2", + }, + { + fileId = "142379", + text = "helm_robe_raidwarlock_c_01_dwf.m2", + value = "helm_robe_raidwarlock_c_01_dwf.m2", + }, + { + fileId = "142380", + text = "helm_robe_raidwarlock_c_01_dwm.m2", + value = "helm_robe_raidwarlock_c_01_dwm.m2", + }, + { + fileId = "142381", + text = "helm_robe_raidwarlock_c_01_gnf.m2", + value = "helm_robe_raidwarlock_c_01_gnf.m2", + }, + { + fileId = "142382", + text = "helm_robe_raidwarlock_c_01_gnm.m2", + value = "helm_robe_raidwarlock_c_01_gnm.m2", + }, + { + fileId = "142383", + text = "helm_robe_raidwarlock_c_01_gof.m2", + value = "helm_robe_raidwarlock_c_01_gof.m2", + }, + { + fileId = "142384", + text = "helm_robe_raidwarlock_c_01_gom.m2", + value = "helm_robe_raidwarlock_c_01_gom.m2", + }, + { + fileId = "142385", + text = "helm_robe_raidwarlock_c_01_huf.m2", + value = "helm_robe_raidwarlock_c_01_huf.m2", + }, + { + fileId = "142386", + text = "helm_robe_raidwarlock_c_01_hum.m2", + value = "helm_robe_raidwarlock_c_01_hum.m2", + }, + { + fileId = "142387", + text = "helm_robe_raidwarlock_c_01_nif.m2", + value = "helm_robe_raidwarlock_c_01_nif.m2", + }, + { + fileId = "142388", + text = "helm_robe_raidwarlock_c_01_nim.m2", + value = "helm_robe_raidwarlock_c_01_nim.m2", + }, + { + fileId = "142389", + text = "helm_robe_raidwarlock_c_01_orf.m2", + value = "helm_robe_raidwarlock_c_01_orf.m2", + }, + { + fileId = "142390", + text = "helm_robe_raidwarlock_c_01_orm.m2", + value = "helm_robe_raidwarlock_c_01_orm.m2", + }, + { + fileId = "142391", + text = "helm_robe_raidwarlock_c_01_scf.m2", + value = "helm_robe_raidwarlock_c_01_scf.m2", + }, + { + fileId = "142392", + text = "helm_robe_raidwarlock_c_01_scm.m2", + value = "helm_robe_raidwarlock_c_01_scm.m2", + }, + { + fileId = "142393", + text = "helm_robe_raidwarlock_c_01_taf.m2", + value = "helm_robe_raidwarlock_c_01_taf.m2", + }, + { + fileId = "142394", + text = "helm_robe_raidwarlock_c_01_tam.m2", + value = "helm_robe_raidwarlock_c_01_tam.m2", + }, + { + fileId = "142395", + text = "helm_robe_raidwarlock_c_01_trf.m2", + value = "helm_robe_raidwarlock_c_01_trf.m2", + }, + { + fileId = "142396", + text = "helm_robe_raidwarlock_c_01_trm.m2", + value = "helm_robe_raidwarlock_c_01_trm.m2", + }, + { + fileId = "454321", + text = "helm_robe_raidwarlock_c_01_wof.m2", + value = "helm_robe_raidwarlock_c_01_wof.m2", + }, + { + fileId = "463098", + text = "helm_robe_raidwarlock_c_01_wom.m2", + value = "helm_robe_raidwarlock_c_01_wom.m2", + }, + { + fileId = "142398", + text = "helm_robe_raidwarlock_d_01_bef.m2", + value = "helm_robe_raidwarlock_d_01_bef.m2", + }, + { + fileId = "142399", + text = "helm_robe_raidwarlock_d_01_bem.m2", + value = "helm_robe_raidwarlock_d_01_bem.m2", + }, + { + fileId = "142400", + text = "helm_robe_raidwarlock_d_01_drf.m2", + value = "helm_robe_raidwarlock_d_01_drf.m2", + }, + { + fileId = "142401", + text = "helm_robe_raidwarlock_d_01_drm.m2", + value = "helm_robe_raidwarlock_d_01_drm.m2", + }, + { + fileId = "142402", + text = "helm_robe_raidwarlock_d_01_dwf.m2", + value = "helm_robe_raidwarlock_d_01_dwf.m2", + }, + { + fileId = "142403", + text = "helm_robe_raidwarlock_d_01_dwm.m2", + value = "helm_robe_raidwarlock_d_01_dwm.m2", + }, + { + fileId = "142404", + text = "helm_robe_raidwarlock_d_01_gnf.m2", + value = "helm_robe_raidwarlock_d_01_gnf.m2", + }, + { + fileId = "142405", + text = "helm_robe_raidwarlock_d_01_gnm.m2", + value = "helm_robe_raidwarlock_d_01_gnm.m2", + }, + { + fileId = "142406", + text = "helm_robe_raidwarlock_d_01_gof.m2", + value = "helm_robe_raidwarlock_d_01_gof.m2", + }, + { + fileId = "142407", + text = "helm_robe_raidwarlock_d_01_gom.m2", + value = "helm_robe_raidwarlock_d_01_gom.m2", + }, + { + fileId = "142408", + text = "helm_robe_raidwarlock_d_01_huf.m2", + value = "helm_robe_raidwarlock_d_01_huf.m2", + }, + { + fileId = "142409", + text = "helm_robe_raidwarlock_d_01_hum.m2", + value = "helm_robe_raidwarlock_d_01_hum.m2", + }, + { + fileId = "142410", + text = "helm_robe_raidwarlock_d_01_nif.m2", + value = "helm_robe_raidwarlock_d_01_nif.m2", + }, + { + fileId = "142411", + text = "helm_robe_raidwarlock_d_01_nim.m2", + value = "helm_robe_raidwarlock_d_01_nim.m2", + }, + { + fileId = "142412", + text = "helm_robe_raidwarlock_d_01_orf.m2", + value = "helm_robe_raidwarlock_d_01_orf.m2", + }, + { + fileId = "142413", + text = "helm_robe_raidwarlock_d_01_orm.m2", + value = "helm_robe_raidwarlock_d_01_orm.m2", + }, + { + fileId = "142414", + text = "helm_robe_raidwarlock_d_01_scf.m2", + value = "helm_robe_raidwarlock_d_01_scf.m2", + }, + { + fileId = "142415", + text = "helm_robe_raidwarlock_d_01_scm.m2", + value = "helm_robe_raidwarlock_d_01_scm.m2", + }, + { + fileId = "142416", + text = "helm_robe_raidwarlock_d_01_taf.m2", + value = "helm_robe_raidwarlock_d_01_taf.m2", + }, + { + fileId = "142417", + text = "helm_robe_raidwarlock_d_01_tam.m2", + value = "helm_robe_raidwarlock_d_01_tam.m2", + }, + { + fileId = "142418", + text = "helm_robe_raidwarlock_d_01_trf.m2", + value = "helm_robe_raidwarlock_d_01_trf.m2", + }, + { + fileId = "142419", + text = "helm_robe_raidwarlock_d_01_trm.m2", + value = "helm_robe_raidwarlock_d_01_trm.m2", + }, + { + fileId = "454322", + text = "helm_robe_raidwarlock_d_01_wof.m2", + value = "helm_robe_raidwarlock_d_01_wof.m2", + }, + { + fileId = "431688", + text = "helm_robe_raidwarlock_d_01_wom.m2", + value = "helm_robe_raidwarlock_d_01_wom.m2", + }, + { + fileId = "142422", + text = "helm_robe_raidwarlock_e_01_bef.m2", + value = "helm_robe_raidwarlock_e_01_bef.m2", + }, + { + fileId = "142423", + text = "helm_robe_raidwarlock_e_01_bem.m2", + value = "helm_robe_raidwarlock_e_01_bem.m2", + }, + { + fileId = "142424", + text = "helm_robe_raidwarlock_e_01_drf.m2", + value = "helm_robe_raidwarlock_e_01_drf.m2", + }, + { + fileId = "142425", + text = "helm_robe_raidwarlock_e_01_drm.m2", + value = "helm_robe_raidwarlock_e_01_drm.m2", + }, + { + fileId = "142426", + text = "helm_robe_raidwarlock_e_01_dwf.m2", + value = "helm_robe_raidwarlock_e_01_dwf.m2", + }, + { + fileId = "142427", + text = "helm_robe_raidwarlock_e_01_dwm.m2", + value = "helm_robe_raidwarlock_e_01_dwm.m2", + }, + { + fileId = "142428", + text = "helm_robe_raidwarlock_e_01_gnf.m2", + value = "helm_robe_raidwarlock_e_01_gnf.m2", + }, + { + fileId = "142429", + text = "helm_robe_raidwarlock_e_01_gnm.m2", + value = "helm_robe_raidwarlock_e_01_gnm.m2", + }, + { + fileId = "142430", + text = "helm_robe_raidwarlock_e_01_gof.m2", + value = "helm_robe_raidwarlock_e_01_gof.m2", + }, + { + fileId = "142431", + text = "helm_robe_raidwarlock_e_01_gom.m2", + value = "helm_robe_raidwarlock_e_01_gom.m2", + }, + { + fileId = "142432", + text = "helm_robe_raidwarlock_e_01_huf.m2", + value = "helm_robe_raidwarlock_e_01_huf.m2", + }, + { + fileId = "142433", + text = "helm_robe_raidwarlock_e_01_hum.m2", + value = "helm_robe_raidwarlock_e_01_hum.m2", + }, + { + fileId = "142434", + text = "helm_robe_raidwarlock_e_01_nif.m2", + value = "helm_robe_raidwarlock_e_01_nif.m2", + }, + { + fileId = "142435", + text = "helm_robe_raidwarlock_e_01_nim.m2", + value = "helm_robe_raidwarlock_e_01_nim.m2", + }, + { + fileId = "142436", + text = "helm_robe_raidwarlock_e_01_orf.m2", + value = "helm_robe_raidwarlock_e_01_orf.m2", + }, + { + fileId = "142437", + text = "helm_robe_raidwarlock_e_01_orm.m2", + value = "helm_robe_raidwarlock_e_01_orm.m2", + }, + { + fileId = "142438", + text = "helm_robe_raidwarlock_e_01_scf.m2", + value = "helm_robe_raidwarlock_e_01_scf.m2", + }, + { + fileId = "142439", + text = "helm_robe_raidwarlock_e_01_scm.m2", + value = "helm_robe_raidwarlock_e_01_scm.m2", + }, + { + fileId = "142440", + text = "helm_robe_raidwarlock_e_01_taf.m2", + value = "helm_robe_raidwarlock_e_01_taf.m2", + }, + { + fileId = "142441", + text = "helm_robe_raidwarlock_e_01_tam.m2", + value = "helm_robe_raidwarlock_e_01_tam.m2", + }, + { + fileId = "142442", + text = "helm_robe_raidwarlock_e_01_trf.m2", + value = "helm_robe_raidwarlock_e_01_trf.m2", + }, + { + fileId = "142443", + text = "helm_robe_raidwarlock_e_01_trm.m2", + value = "helm_robe_raidwarlock_e_01_trm.m2", + }, + { + fileId = "454323", + text = "helm_robe_raidwarlock_e_01_wof.m2", + value = "helm_robe_raidwarlock_e_01_wof.m2", + }, + { + fileId = "431690", + text = "helm_robe_raidwarlock_e_01_wom.m2", + value = "helm_robe_raidwarlock_e_01_wom.m2", + }, + { + fileId = "142447", + text = "helm_robe_raidwarlock_f_01_bef.m2", + value = "helm_robe_raidwarlock_f_01_bef.m2", + }, + { + fileId = "142448", + text = "helm_robe_raidwarlock_f_01_bem.m2", + value = "helm_robe_raidwarlock_f_01_bem.m2", + }, + { + fileId = "142449", + text = "helm_robe_raidwarlock_f_01_drf.m2", + value = "helm_robe_raidwarlock_f_01_drf.m2", + }, + { + fileId = "142450", + text = "helm_robe_raidwarlock_f_01_drm.m2", + value = "helm_robe_raidwarlock_f_01_drm.m2", + }, + { + fileId = "142451", + text = "helm_robe_raidwarlock_f_01_dwf.m2", + value = "helm_robe_raidwarlock_f_01_dwf.m2", + }, + { + fileId = "142452", + text = "helm_robe_raidwarlock_f_01_dwm.m2", + value = "helm_robe_raidwarlock_f_01_dwm.m2", + }, + { + fileId = "142453", + text = "helm_robe_raidwarlock_f_01_gnf.m2", + value = "helm_robe_raidwarlock_f_01_gnf.m2", + }, + { + fileId = "142454", + text = "helm_robe_raidwarlock_f_01_gnm.m2", + value = "helm_robe_raidwarlock_f_01_gnm.m2", + }, + { + fileId = "463099", + text = "helm_robe_raidwarlock_f_01_gof.m2", + value = "helm_robe_raidwarlock_f_01_gof.m2", + }, + { + fileId = "463100", + text = "helm_robe_raidwarlock_f_01_gom.m2", + value = "helm_robe_raidwarlock_f_01_gom.m2", + }, + { + fileId = "142455", + text = "helm_robe_raidwarlock_f_01_huf.m2", + value = "helm_robe_raidwarlock_f_01_huf.m2", + }, + { + fileId = "142456", + text = "helm_robe_raidwarlock_f_01_hum.m2", + value = "helm_robe_raidwarlock_f_01_hum.m2", + }, + { + fileId = "142457", + text = "helm_robe_raidwarlock_f_01_nif.m2", + value = "helm_robe_raidwarlock_f_01_nif.m2", + }, + { + fileId = "142458", + text = "helm_robe_raidwarlock_f_01_nim.m2", + value = "helm_robe_raidwarlock_f_01_nim.m2", + }, + { + fileId = "142459", + text = "helm_robe_raidwarlock_f_01_orf.m2", + value = "helm_robe_raidwarlock_f_01_orf.m2", + }, + { + fileId = "142460", + text = "helm_robe_raidwarlock_f_01_orm.m2", + value = "helm_robe_raidwarlock_f_01_orm.m2", + }, + { + fileId = "142461", + text = "helm_robe_raidwarlock_f_01_scf.m2", + value = "helm_robe_raidwarlock_f_01_scf.m2", + }, + { + fileId = "142462", + text = "helm_robe_raidwarlock_f_01_scm.m2", + value = "helm_robe_raidwarlock_f_01_scm.m2", + }, + { + fileId = "142463", + text = "helm_robe_raidwarlock_f_01_taf.m2", + value = "helm_robe_raidwarlock_f_01_taf.m2", + }, + { + fileId = "142464", + text = "helm_robe_raidwarlock_f_01_tam.m2", + value = "helm_robe_raidwarlock_f_01_tam.m2", + }, + { + fileId = "142465", + text = "helm_robe_raidwarlock_f_01_trf.m2", + value = "helm_robe_raidwarlock_f_01_trf.m2", + }, + { + fileId = "142466", + text = "helm_robe_raidwarlock_f_01_trm.m2", + value = "helm_robe_raidwarlock_f_01_trm.m2", + }, + { + fileId = "454324", + text = "helm_robe_raidwarlock_f_01_wof.m2", + value = "helm_robe_raidwarlock_f_01_wof.m2", + }, + { + fileId = "431767", + text = "helm_robe_raidwarlock_f_01_wom.m2", + value = "helm_robe_raidwarlock_f_01_wom.m2", + }, + { + fileId = "142471", + text = "helm_robe_raidwarlock_g_01_bef.m2", + value = "helm_robe_raidwarlock_g_01_bef.m2", + }, + { + fileId = "142472", + text = "helm_robe_raidwarlock_g_01_bem.m2", + value = "helm_robe_raidwarlock_g_01_bem.m2", + }, + { + fileId = "142473", + text = "helm_robe_raidwarlock_g_01_drf.m2", + value = "helm_robe_raidwarlock_g_01_drf.m2", + }, + { + fileId = "142474", + text = "helm_robe_raidwarlock_g_01_drm.m2", + value = "helm_robe_raidwarlock_g_01_drm.m2", + }, + { + fileId = "142475", + text = "helm_robe_raidwarlock_g_01_dwf.m2", + value = "helm_robe_raidwarlock_g_01_dwf.m2", + }, + { + fileId = "142476", + text = "helm_robe_raidwarlock_g_01_dwm.m2", + value = "helm_robe_raidwarlock_g_01_dwm.m2", + }, + { + fileId = "142477", + text = "helm_robe_raidwarlock_g_01_gnf.m2", + value = "helm_robe_raidwarlock_g_01_gnf.m2", + }, + { + fileId = "142478", + text = "helm_robe_raidwarlock_g_01_gnm.m2", + value = "helm_robe_raidwarlock_g_01_gnm.m2", + }, + { + fileId = "142479", + text = "helm_robe_raidwarlock_g_01_gof.m2", + value = "helm_robe_raidwarlock_g_01_gof.m2", + }, + { + fileId = "142480", + text = "helm_robe_raidwarlock_g_01_gom.m2", + value = "helm_robe_raidwarlock_g_01_gom.m2", + }, + { + fileId = "142481", + text = "helm_robe_raidwarlock_g_01_huf.m2", + value = "helm_robe_raidwarlock_g_01_huf.m2", + }, + { + fileId = "142482", + text = "helm_robe_raidwarlock_g_01_hum.m2", + value = "helm_robe_raidwarlock_g_01_hum.m2", + }, + { + fileId = "142483", + text = "helm_robe_raidwarlock_g_01_nif.m2", + value = "helm_robe_raidwarlock_g_01_nif.m2", + }, + { + fileId = "142484", + text = "helm_robe_raidwarlock_g_01_nim.m2", + value = "helm_robe_raidwarlock_g_01_nim.m2", + }, + { + fileId = "142485", + text = "helm_robe_raidwarlock_g_01_orf.m2", + value = "helm_robe_raidwarlock_g_01_orf.m2", + }, + { + fileId = "142486", + text = "helm_robe_raidwarlock_g_01_orm.m2", + value = "helm_robe_raidwarlock_g_01_orm.m2", + }, + { + fileId = "142487", + text = "helm_robe_raidwarlock_g_01_scf.m2", + value = "helm_robe_raidwarlock_g_01_scf.m2", + }, + { + fileId = "142488", + text = "helm_robe_raidwarlock_g_01_scm.m2", + value = "helm_robe_raidwarlock_g_01_scm.m2", + }, + { + fileId = "142489", + text = "helm_robe_raidwarlock_g_01_taf.m2", + value = "helm_robe_raidwarlock_g_01_taf.m2", + }, + { + fileId = "142490", + text = "helm_robe_raidwarlock_g_01_tam.m2", + value = "helm_robe_raidwarlock_g_01_tam.m2", + }, + { + fileId = "142491", + text = "helm_robe_raidwarlock_g_01_trf.m2", + value = "helm_robe_raidwarlock_g_01_trf.m2", + }, + { + fileId = "142492", + text = "helm_robe_raidwarlock_g_01_trm.m2", + value = "helm_robe_raidwarlock_g_01_trm.m2", + }, + { + fileId = "454798", + text = "helm_robe_raidwarlock_g_01_wof.m2", + value = "helm_robe_raidwarlock_g_01_wof.m2", + }, + { + fileId = "454799", + text = "helm_robe_raidwarlock_g_01_wom.m2", + value = "helm_robe_raidwarlock_g_01_wom.m2", + }, + { + fileId = "339828", + text = "helm_robe_raidwarlock_h_01_bef.m2", + value = "helm_robe_raidwarlock_h_01_bef.m2", + }, + { + fileId = "339829", + text = "helm_robe_raidwarlock_h_01_bem.m2", + value = "helm_robe_raidwarlock_h_01_bem.m2", + }, + { + fileId = "339830", + text = "helm_robe_raidwarlock_h_01_drf.m2", + value = "helm_robe_raidwarlock_h_01_drf.m2", + }, + { + fileId = "339831", + text = "helm_robe_raidwarlock_h_01_drm.m2", + value = "helm_robe_raidwarlock_h_01_drm.m2", + }, + { + fileId = "339832", + text = "helm_robe_raidwarlock_h_01_dwf.m2", + value = "helm_robe_raidwarlock_h_01_dwf.m2", + }, + { + fileId = "339833", + text = "helm_robe_raidwarlock_h_01_dwm.m2", + value = "helm_robe_raidwarlock_h_01_dwm.m2", + }, + { + fileId = "339834", + text = "helm_robe_raidwarlock_h_01_gnf.m2", + value = "helm_robe_raidwarlock_h_01_gnf.m2", + }, + { + fileId = "339835", + text = "helm_robe_raidwarlock_h_01_gnm.m2", + value = "helm_robe_raidwarlock_h_01_gnm.m2", + }, + { + fileId = "339836", + text = "helm_robe_raidwarlock_h_01_gof.m2", + value = "helm_robe_raidwarlock_h_01_gof.m2", + }, + { + fileId = "339837", + text = "helm_robe_raidwarlock_h_01_gom.m2", + value = "helm_robe_raidwarlock_h_01_gom.m2", + }, + { + fileId = "339838", + text = "helm_robe_raidwarlock_h_01_huf.m2", + value = "helm_robe_raidwarlock_h_01_huf.m2", + }, + { + fileId = "339839", + text = "helm_robe_raidwarlock_h_01_hum.m2", + value = "helm_robe_raidwarlock_h_01_hum.m2", + }, + { + fileId = "339840", + text = "helm_robe_raidwarlock_h_01_nif.m2", + value = "helm_robe_raidwarlock_h_01_nif.m2", + }, + { + fileId = "339841", + text = "helm_robe_raidwarlock_h_01_nim.m2", + value = "helm_robe_raidwarlock_h_01_nim.m2", + }, + { + fileId = "339842", + text = "helm_robe_raidwarlock_h_01_orf.m2", + value = "helm_robe_raidwarlock_h_01_orf.m2", + }, + { + fileId = "339843", + text = "helm_robe_raidwarlock_h_01_orm.m2", + value = "helm_robe_raidwarlock_h_01_orm.m2", + }, + { + fileId = "339844", + text = "helm_robe_raidwarlock_h_01_scf.m2", + value = "helm_robe_raidwarlock_h_01_scf.m2", + }, + { + fileId = "339845", + text = "helm_robe_raidwarlock_h_01_scm.m2", + value = "helm_robe_raidwarlock_h_01_scm.m2", + }, + { + fileId = "339846", + text = "helm_robe_raidwarlock_h_01_taf.m2", + value = "helm_robe_raidwarlock_h_01_taf.m2", + }, + { + fileId = "339847", + text = "helm_robe_raidwarlock_h_01_tam.m2", + value = "helm_robe_raidwarlock_h_01_tam.m2", + }, + { + fileId = "339848", + text = "helm_robe_raidwarlock_h_01_trf.m2", + value = "helm_robe_raidwarlock_h_01_trf.m2", + }, + { + fileId = "339849", + text = "helm_robe_raidwarlock_h_01_trm.m2", + value = "helm_robe_raidwarlock_h_01_trm.m2", + }, + { + fileId = "454325", + text = "helm_robe_raidwarlock_h_01_wof.m2", + value = "helm_robe_raidwarlock_h_01_wof.m2", + }, + { + fileId = "454326", + text = "helm_robe_raidwarlock_h_01_wom.m2", + value = "helm_robe_raidwarlock_h_01_wom.m2", + }, + { + fileId = "525946", + text = "helm_robe_raidwarlock_j_01_bef.m2", + value = "helm_robe_raidwarlock_j_01_bef.m2", + }, + { + fileId = "525948", + text = "helm_robe_raidwarlock_j_01_bem.m2", + value = "helm_robe_raidwarlock_j_01_bem.m2", + }, + { + fileId = "525950", + text = "helm_robe_raidwarlock_j_01_drf.m2", + value = "helm_robe_raidwarlock_j_01_drf.m2", + }, + { + fileId = "525952", + text = "helm_robe_raidwarlock_j_01_drm.m2", + value = "helm_robe_raidwarlock_j_01_drm.m2", + }, + { + fileId = "525954", + text = "helm_robe_raidwarlock_j_01_dwf.m2", + value = "helm_robe_raidwarlock_j_01_dwf.m2", + }, + { + fileId = "525956", + text = "helm_robe_raidwarlock_j_01_dwm.m2", + value = "helm_robe_raidwarlock_j_01_dwm.m2", + }, + { + fileId = "525958", + text = "helm_robe_raidwarlock_j_01_gnf.m2", + value = "helm_robe_raidwarlock_j_01_gnf.m2", + }, + { + fileId = "525960", + text = "helm_robe_raidwarlock_j_01_gnm.m2", + value = "helm_robe_raidwarlock_j_01_gnm.m2", + }, + { + fileId = "525962", + text = "helm_robe_raidwarlock_j_01_gof.m2", + value = "helm_robe_raidwarlock_j_01_gof.m2", + }, + { + fileId = "525964", + text = "helm_robe_raidwarlock_j_01_gom.m2", + value = "helm_robe_raidwarlock_j_01_gom.m2", + }, + { + fileId = "525967", + text = "helm_robe_raidwarlock_j_01_huf.m2", + value = "helm_robe_raidwarlock_j_01_huf.m2", + }, + { + fileId = "525969", + text = "helm_robe_raidwarlock_j_01_hum.m2", + value = "helm_robe_raidwarlock_j_01_hum.m2", + }, + { + fileId = "525971", + text = "helm_robe_raidwarlock_j_01_nif.m2", + value = "helm_robe_raidwarlock_j_01_nif.m2", + }, + { + fileId = "525973", + text = "helm_robe_raidwarlock_j_01_nim.m2", + value = "helm_robe_raidwarlock_j_01_nim.m2", + }, + { + fileId = "525976", + text = "helm_robe_raidwarlock_j_01_orf.m2", + value = "helm_robe_raidwarlock_j_01_orf.m2", + }, + { + fileId = "525978", + text = "helm_robe_raidwarlock_j_01_orm.m2", + value = "helm_robe_raidwarlock_j_01_orm.m2", + }, + { + fileId = "525981", + text = "helm_robe_raidwarlock_j_01_scf.m2", + value = "helm_robe_raidwarlock_j_01_scf.m2", + }, + { + fileId = "525983", + text = "helm_robe_raidwarlock_j_01_scm.m2", + value = "helm_robe_raidwarlock_j_01_scm.m2", + }, + { + fileId = "525985", + text = "helm_robe_raidwarlock_j_01_taf.m2", + value = "helm_robe_raidwarlock_j_01_taf.m2", + }, + { + fileId = "525987", + text = "helm_robe_raidwarlock_j_01_tam.m2", + value = "helm_robe_raidwarlock_j_01_tam.m2", + }, + { + fileId = "525989", + text = "helm_robe_raidwarlock_j_01_trf.m2", + value = "helm_robe_raidwarlock_j_01_trf.m2", + }, + { + fileId = "525991", + text = "helm_robe_raidwarlock_j_01_trm.m2", + value = "helm_robe_raidwarlock_j_01_trm.m2", + }, + { + fileId = "525993", + text = "helm_robe_raidwarlock_j_01_wof.m2", + value = "helm_robe_raidwarlock_j_01_wof.m2", + }, + { + fileId = "525995", + text = "helm_robe_raidwarlock_j_01_wom.m2", + value = "helm_robe_raidwarlock_j_01_wom.m2", + }, + { + fileId = "532630", + text = "helm_robe_raidwarlock_k_01_bef.m2", + value = "helm_robe_raidwarlock_k_01_bef.m2", + }, + { + fileId = "532632", + text = "helm_robe_raidwarlock_k_01_bem.m2", + value = "helm_robe_raidwarlock_k_01_bem.m2", + }, + { + fileId = "532634", + text = "helm_robe_raidwarlock_k_01_drf.m2", + value = "helm_robe_raidwarlock_k_01_drf.m2", + }, + { + fileId = "532636", + text = "helm_robe_raidwarlock_k_01_drm.m2", + value = "helm_robe_raidwarlock_k_01_drm.m2", + }, + { + fileId = "532638", + text = "helm_robe_raidwarlock_k_01_dwf.m2", + value = "helm_robe_raidwarlock_k_01_dwf.m2", + }, + { + fileId = "532640", + text = "helm_robe_raidwarlock_k_01_dwm.m2", + value = "helm_robe_raidwarlock_k_01_dwm.m2", + }, + { + fileId = "532642", + text = "helm_robe_raidwarlock_k_01_gnf.m2", + value = "helm_robe_raidwarlock_k_01_gnf.m2", + }, + { + fileId = "532644", + text = "helm_robe_raidwarlock_k_01_gnm.m2", + value = "helm_robe_raidwarlock_k_01_gnm.m2", + }, + { + fileId = "532646", + text = "helm_robe_raidwarlock_k_01_gof.m2", + value = "helm_robe_raidwarlock_k_01_gof.m2", + }, + { + fileId = "532648", + text = "helm_robe_raidwarlock_k_01_gom.m2", + value = "helm_robe_raidwarlock_k_01_gom.m2", + }, + { + fileId = "532650", + text = "helm_robe_raidwarlock_k_01_huf.m2", + value = "helm_robe_raidwarlock_k_01_huf.m2", + }, + { + fileId = "532652", + text = "helm_robe_raidwarlock_k_01_hum.m2", + value = "helm_robe_raidwarlock_k_01_hum.m2", + }, + { + fileId = "532654", + text = "helm_robe_raidwarlock_k_01_nif.m2", + value = "helm_robe_raidwarlock_k_01_nif.m2", + }, + { + fileId = "532656", + text = "helm_robe_raidwarlock_k_01_nim.m2", + value = "helm_robe_raidwarlock_k_01_nim.m2", + }, + { + fileId = "532658", + text = "helm_robe_raidwarlock_k_01_orf.m2", + value = "helm_robe_raidwarlock_k_01_orf.m2", + }, + { + fileId = "532660", + text = "helm_robe_raidwarlock_k_01_orm.m2", + value = "helm_robe_raidwarlock_k_01_orm.m2", + }, + { + fileId = "532662", + text = "helm_robe_raidwarlock_k_01_scf.m2", + value = "helm_robe_raidwarlock_k_01_scf.m2", + }, + { + fileId = "532664", + text = "helm_robe_raidwarlock_k_01_scm.m2", + value = "helm_robe_raidwarlock_k_01_scm.m2", + }, + { + fileId = "532666", + text = "helm_robe_raidwarlock_k_01_taf.m2", + value = "helm_robe_raidwarlock_k_01_taf.m2", + }, + { + fileId = "532668", + text = "helm_robe_raidwarlock_k_01_tam.m2", + value = "helm_robe_raidwarlock_k_01_tam.m2", + }, + { + fileId = "532670", + text = "helm_robe_raidwarlock_k_01_trf.m2", + value = "helm_robe_raidwarlock_k_01_trf.m2", + }, + { + fileId = "532672", + text = "helm_robe_raidwarlock_k_01_trm.m2", + value = "helm_robe_raidwarlock_k_01_trm.m2", + }, + { + fileId = "532674", + text = "helm_robe_raidwarlock_k_01_wof.m2", + value = "helm_robe_raidwarlock_k_01_wof.m2", + }, + { + fileId = "532676", + text = "helm_robe_raidwarlock_k_01_wom.m2", + value = "helm_robe_raidwarlock_k_01_wom.m2", + }, + { + fileId = "142497", + text = "helm_robe_sunwell_d_01_bef.m2", + value = "helm_robe_sunwell_d_01_bef.m2", + }, + { + fileId = "142498", + text = "helm_robe_sunwell_d_01_bem.m2", + value = "helm_robe_sunwell_d_01_bem.m2", + }, + { + fileId = "142499", + text = "helm_robe_sunwell_d_01_drf.m2", + value = "helm_robe_sunwell_d_01_drf.m2", + }, + { + fileId = "142500", + text = "helm_robe_sunwell_d_01_drm.m2", + value = "helm_robe_sunwell_d_01_drm.m2", + }, + { + fileId = "142501", + text = "helm_robe_sunwell_d_01_dwf.m2", + value = "helm_robe_sunwell_d_01_dwf.m2", + }, + { + fileId = "142502", + text = "helm_robe_sunwell_d_01_dwm.m2", + value = "helm_robe_sunwell_d_01_dwm.m2", + }, + { + fileId = "142503", + text = "helm_robe_sunwell_d_01_gnf.m2", + value = "helm_robe_sunwell_d_01_gnf.m2", + }, + { + fileId = "142504", + text = "helm_robe_sunwell_d_01_gnm.m2", + value = "helm_robe_sunwell_d_01_gnm.m2", + }, + { + fileId = "142505", + text = "helm_robe_sunwell_d_01_gof.m2", + value = "helm_robe_sunwell_d_01_gof.m2", + }, + { + fileId = "142506", + text = "helm_robe_sunwell_d_01_gom.m2", + value = "helm_robe_sunwell_d_01_gom.m2", + }, + { + fileId = "142507", + text = "helm_robe_sunwell_d_01_huf.m2", + value = "helm_robe_sunwell_d_01_huf.m2", + }, + { + fileId = "142508", + text = "helm_robe_sunwell_d_01_hum.m2", + value = "helm_robe_sunwell_d_01_hum.m2", + }, + { + fileId = "142509", + text = "helm_robe_sunwell_d_01_nif.m2", + value = "helm_robe_sunwell_d_01_nif.m2", + }, + { + fileId = "142510", + text = "helm_robe_sunwell_d_01_nim.m2", + value = "helm_robe_sunwell_d_01_nim.m2", + }, + { + fileId = "142511", + text = "helm_robe_sunwell_d_01_orf.m2", + value = "helm_robe_sunwell_d_01_orf.m2", + }, + { + fileId = "142512", + text = "helm_robe_sunwell_d_01_orm.m2", + value = "helm_robe_sunwell_d_01_orm.m2", + }, + { + fileId = "142513", + text = "helm_robe_sunwell_d_01_scf.m2", + value = "helm_robe_sunwell_d_01_scf.m2", + }, + { + fileId = "142514", + text = "helm_robe_sunwell_d_01_scm.m2", + value = "helm_robe_sunwell_d_01_scm.m2", + }, + { + fileId = "142515", + text = "helm_robe_sunwell_d_01_taf.m2", + value = "helm_robe_sunwell_d_01_taf.m2", + }, + { + fileId = "142516", + text = "helm_robe_sunwell_d_01_tam.m2", + value = "helm_robe_sunwell_d_01_tam.m2", + }, + { + fileId = "142517", + text = "helm_robe_sunwell_d_01_trf.m2", + value = "helm_robe_sunwell_d_01_trf.m2", + }, + { + fileId = "142518", + text = "helm_robe_sunwell_d_01_trm.m2", + value = "helm_robe_sunwell_d_01_trm.m2", + }, + { + fileId = "454327", + text = "helm_robe_sunwell_d_01_wof.m2", + value = "helm_robe_sunwell_d_01_wof.m2", + }, + { + fileId = "454328", + text = "helm_robe_sunwell_d_01_wom.m2", + value = "helm_robe_sunwell_d_01_wom.m2", + }, + { + fileId = "142527", + text = "helm_robe_zulaman_d_01_bef.m2", + value = "helm_robe_zulaman_d_01_bef.m2", + }, + { + fileId = "142528", + text = "helm_robe_zulaman_d_01_bem.m2", + value = "helm_robe_zulaman_d_01_bem.m2", + }, + { + fileId = "142529", + text = "helm_robe_zulaman_d_01_drf.m2", + value = "helm_robe_zulaman_d_01_drf.m2", + }, + { + fileId = "142530", + text = "helm_robe_zulaman_d_01_drm.m2", + value = "helm_robe_zulaman_d_01_drm.m2", + }, + { + fileId = "142531", + text = "helm_robe_zulaman_d_01_dwf.m2", + value = "helm_robe_zulaman_d_01_dwf.m2", + }, + { + fileId = "142532", + text = "helm_robe_zulaman_d_01_dwm.m2", + value = "helm_robe_zulaman_d_01_dwm.m2", + }, + { + fileId = "142533", + text = "helm_robe_zulaman_d_01_gnf.m2", + value = "helm_robe_zulaman_d_01_gnf.m2", + }, + { + fileId = "142534", + text = "helm_robe_zulaman_d_01_gnm.m2", + value = "helm_robe_zulaman_d_01_gnm.m2", + }, + { + fileId = "142535", + text = "helm_robe_zulaman_d_01_gof.m2", + value = "helm_robe_zulaman_d_01_gof.m2", + }, + { + fileId = "142536", + text = "helm_robe_zulaman_d_01_gom.m2", + value = "helm_robe_zulaman_d_01_gom.m2", + }, + { + fileId = "142537", + text = "helm_robe_zulaman_d_01_huf.m2", + value = "helm_robe_zulaman_d_01_huf.m2", + }, + { + fileId = "142538", + text = "helm_robe_zulaman_d_01_hum.m2", + value = "helm_robe_zulaman_d_01_hum.m2", + }, + { + fileId = "142539", + text = "helm_robe_zulaman_d_01_nif.m2", + value = "helm_robe_zulaman_d_01_nif.m2", + }, + { + fileId = "142540", + text = "helm_robe_zulaman_d_01_nim.m2", + value = "helm_robe_zulaman_d_01_nim.m2", + }, + { + fileId = "142541", + text = "helm_robe_zulaman_d_01_orf.m2", + value = "helm_robe_zulaman_d_01_orf.m2", + }, + { + fileId = "142542", + text = "helm_robe_zulaman_d_01_orm.m2", + value = "helm_robe_zulaman_d_01_orm.m2", + }, + { + fileId = "142543", + text = "helm_robe_zulaman_d_01_scf.m2", + value = "helm_robe_zulaman_d_01_scf.m2", + }, + { + fileId = "142544", + text = "helm_robe_zulaman_d_01_scm.m2", + value = "helm_robe_zulaman_d_01_scm.m2", + }, + { + fileId = "142545", + text = "helm_robe_zulaman_d_01_taf.m2", + value = "helm_robe_zulaman_d_01_taf.m2", + }, + { + fileId = "142546", + text = "helm_robe_zulaman_d_01_tam.m2", + value = "helm_robe_zulaman_d_01_tam.m2", + }, + { + fileId = "142547", + text = "helm_robe_zulaman_d_01_trf.m2", + value = "helm_robe_zulaman_d_01_trf.m2", + }, + { + fileId = "142548", + text = "helm_robe_zulaman_d_01_trm.m2", + value = "helm_robe_zulaman_d_01_trm.m2", + }, + { + fileId = "454329", + text = "helm_robe_zulaman_d_01_wof.m2", + value = "helm_robe_zulaman_d_01_wof.m2", + }, + { + fileId = "454330", + text = "helm_robe_zulaman_d_01_wom.m2", + value = "helm_robe_zulaman_d_01_wom.m2", + }, + { + fileId = "446946", + text = "helm_spectacles_a_01_bef.m2", + value = "helm_spectacles_a_01_bef.m2", + }, + { + fileId = "446947", + text = "helm_spectacles_a_01_bem.m2", + value = "helm_spectacles_a_01_bem.m2", + }, + { + fileId = "446948", + text = "helm_spectacles_a_01_drf.m2", + value = "helm_spectacles_a_01_drf.m2", + }, + { + fileId = "446949", + text = "helm_spectacles_a_01_drm.m2", + value = "helm_spectacles_a_01_drm.m2", + }, + { + fileId = "446950", + text = "helm_spectacles_a_01_dwf.m2", + value = "helm_spectacles_a_01_dwf.m2", + }, + { + fileId = "446951", + text = "helm_spectacles_a_01_dwm.m2", + value = "helm_spectacles_a_01_dwm.m2", + }, + { + fileId = "446952", + text = "helm_spectacles_a_01_gnf.m2", + value = "helm_spectacles_a_01_gnf.m2", + }, + { + fileId = "446953", + text = "helm_spectacles_a_01_gnm.m2", + value = "helm_spectacles_a_01_gnm.m2", + }, + { + fileId = "446954", + text = "helm_spectacles_a_01_gof.m2", + value = "helm_spectacles_a_01_gof.m2", + }, + { + fileId = "446955", + text = "helm_spectacles_a_01_gom.m2", + value = "helm_spectacles_a_01_gom.m2", + }, + { + fileId = "446956", + text = "helm_spectacles_a_01_huf.m2", + value = "helm_spectacles_a_01_huf.m2", + }, + { + fileId = "436670", + text = "helm_spectacles_a_01_hum.m2", + value = "helm_spectacles_a_01_hum.m2", + }, + { + fileId = "446957", + text = "helm_spectacles_a_01_nif.m2", + value = "helm_spectacles_a_01_nif.m2", + }, + { + fileId = "446958", + text = "helm_spectacles_a_01_nim.m2", + value = "helm_spectacles_a_01_nim.m2", + }, + { + fileId = "446959", + text = "helm_spectacles_a_01_orf.m2", + value = "helm_spectacles_a_01_orf.m2", + }, + { + fileId = "446960", + text = "helm_spectacles_a_01_orm.m2", + value = "helm_spectacles_a_01_orm.m2", + }, + { + fileId = "446961", + text = "helm_spectacles_a_01_scf.m2", + value = "helm_spectacles_a_01_scf.m2", + }, + { + fileId = "446962", + text = "helm_spectacles_a_01_scm.m2", + value = "helm_spectacles_a_01_scm.m2", + }, + { + fileId = "446963", + text = "helm_spectacles_a_01_taf.m2", + value = "helm_spectacles_a_01_taf.m2", + }, + { + fileId = "446964", + text = "helm_spectacles_a_01_tam.m2", + value = "helm_spectacles_a_01_tam.m2", + }, + { + fileId = "446965", + text = "helm_spectacles_a_01_trf.m2", + value = "helm_spectacles_a_01_trf.m2", + }, + { + fileId = "446966", + text = "helm_spectacles_a_01_trm.m2", + value = "helm_spectacles_a_01_trm.m2", + }, + { + fileId = "446967", + text = "helm_spectacles_a_01_wof.m2", + value = "helm_spectacles_a_01_wof.m2", + }, + { + fileId = "446968", + text = "helm_spectacles_a_01_wom.m2", + value = "helm_spectacles_a_01_wom.m2", + }, + { + fileId = "436669", + text = "helm_spectacleshat_a_01_hum.m2", + value = "helm_spectacleshat_a_01_hum.m2", + }, + { + fileId = "437113", + text = "helm_spectacleshat_a_01green_hum.m2", + value = "helm_spectacleshat_a_01green_hum.m2", + }, + { + fileId = "357818", + text = "helm_sunglasses_a_01_bef.m2", + value = "helm_sunglasses_a_01_bef.m2", + }, + { + fileId = "357819", + text = "helm_sunglasses_a_01_bem.m2", + value = "helm_sunglasses_a_01_bem.m2", + }, + { + fileId = "357820", + text = "helm_sunglasses_a_01_drf.m2", + value = "helm_sunglasses_a_01_drf.m2", + }, + { + fileId = "357821", + text = "helm_sunglasses_a_01_drm.m2", + value = "helm_sunglasses_a_01_drm.m2", + }, + { + fileId = "357822", + text = "helm_sunglasses_a_01_dwf.m2", + value = "helm_sunglasses_a_01_dwf.m2", + }, + { + fileId = "357823", + text = "helm_sunglasses_a_01_dwm.m2", + value = "helm_sunglasses_a_01_dwm.m2", + }, + { + fileId = "357824", + text = "helm_sunglasses_a_01_gnf.m2", + value = "helm_sunglasses_a_01_gnf.m2", + }, + { + fileId = "357825", + text = "helm_sunglasses_a_01_gnm.m2", + value = "helm_sunglasses_a_01_gnm.m2", + }, + { + fileId = "357826", + text = "helm_sunglasses_a_01_gof.m2", + value = "helm_sunglasses_a_01_gof.m2", + }, + { + fileId = "357827", + text = "helm_sunglasses_a_01_gom.m2", + value = "helm_sunglasses_a_01_gom.m2", + }, + { + fileId = "357828", + text = "helm_sunglasses_a_01_huf.m2", + value = "helm_sunglasses_a_01_huf.m2", + }, + { + fileId = "357829", + text = "helm_sunglasses_a_01_hum.m2", + value = "helm_sunglasses_a_01_hum.m2", + }, + { + fileId = "357830", + text = "helm_sunglasses_a_01_nif.m2", + value = "helm_sunglasses_a_01_nif.m2", + }, + { + fileId = "357831", + text = "helm_sunglasses_a_01_nim.m2", + value = "helm_sunglasses_a_01_nim.m2", + }, + { + fileId = "357832", + text = "helm_sunglasses_a_01_orf.m2", + value = "helm_sunglasses_a_01_orf.m2", + }, + { + fileId = "357833", + text = "helm_sunglasses_a_01_orm.m2", + value = "helm_sunglasses_a_01_orm.m2", + }, + { + fileId = "357834", + text = "helm_sunglasses_a_01_scf.m2", + value = "helm_sunglasses_a_01_scf.m2", + }, + { + fileId = "357835", + text = "helm_sunglasses_a_01_scm.m2", + value = "helm_sunglasses_a_01_scm.m2", + }, + { + fileId = "357836", + text = "helm_sunglasses_a_01_taf.m2", + value = "helm_sunglasses_a_01_taf.m2", + }, + { + fileId = "357837", + text = "helm_sunglasses_a_01_tam.m2", + value = "helm_sunglasses_a_01_tam.m2", + }, + { + fileId = "357838", + text = "helm_sunglasses_a_01_trf.m2", + value = "helm_sunglasses_a_01_trf.m2", + }, + { + fileId = "357839", + text = "helm_sunglasses_a_01_trm.m2", + value = "helm_sunglasses_a_01_trm.m2", + }, + { + fileId = "454331", + text = "helm_sunglasses_a_01_wof.m2", + value = "helm_sunglasses_a_01_wof.m2", + }, + { + fileId = "454332", + text = "helm_sunglasses_a_01_wom.m2", + value = "helm_sunglasses_a_01_wom.m2", + }, + { + fileId = "142552", + text = "helmet_robe_d_04_dwf.m2", + value = "helmet_robe_d_04_dwf.m2", + }, + { + fileId = "142553", + text = "helmet_robe_d_04_dwm.m2", + value = "helmet_robe_d_04_dwm.m2", + }, + { + fileId = "142554", + text = "helmet_robe_d_04_gnf.m2", + value = "helmet_robe_d_04_gnf.m2", + }, + { + fileId = "142555", + text = "helmet_robe_d_04_gnm.m2", + value = "helmet_robe_d_04_gnm.m2", + }, + { + fileId = "142556", + text = "helmet_robe_d_04_huf.m2", + value = "helmet_robe_d_04_huf.m2", + }, + { + fileId = "142557", + text = "helmet_robe_d_04_hum.m2", + value = "helmet_robe_d_04_hum.m2", + }, + { + fileId = "142558", + text = "helmet_robe_d_04_nif.m2", + value = "helmet_robe_d_04_nif.m2", + }, + { + fileId = "142559", + text = "helmet_robe_d_04_nim.m2", + value = "helmet_robe_d_04_nim.m2", + }, + { + fileId = "142560", + text = "helmet_robe_d_04_orf.m2", + value = "helmet_robe_d_04_orf.m2", + }, + { + fileId = "142561", + text = "helmet_robe_d_04_orm.m2", + value = "helmet_robe_d_04_orm.m2", + }, + { + fileId = "142562", + text = "helmet_robe_d_04_scf.m2", + value = "helmet_robe_d_04_scf.m2", + }, + { + fileId = "142563", + text = "helmet_robe_d_04_scm.m2", + value = "helmet_robe_d_04_scm.m2", + }, + { + fileId = "142564", + text = "helmet_robe_d_04_taf.m2", + value = "helmet_robe_d_04_taf.m2", + }, + { + fileId = "142565", + text = "helmet_robe_d_04_tam.m2", + value = "helmet_robe_d_04_tam.m2", + }, + { + fileId = "142566", + text = "helmet_robe_d_04_trf.m2", + value = "helmet_robe_d_04_trf.m2", + }, + { + fileId = "142567", + text = "helmet_robe_d_04_trm.m2", + value = "helmet_robe_d_04_trm.m2", + }, + }, + text = "head", + value = "head", + }, + { + children = { + { + fileId = "2351788", + text = "pouch_alliance_a_01.m2", + value = "pouch_alliance_a_01.m2", + }, + { + fileId = "2351697", + text = "pouch_alliance_a_02.m2", + value = "pouch_alliance_a_02.m2", + }, + { + fileId = "2351743", + text = "pouch_horde_a_01.m2", + value = "pouch_horde_a_01.m2", + }, + { + fileId = "2351703", + text = "pouch_horde_a_02.m2", + value = "pouch_horde_a_02.m2", + }, + }, + text = "pouch", + value = "pouch", + }, + { + children = { + { + fileId = "142631", + text = "quiver_a.m2", + value = "quiver_a.m2", + }, + { + fileId = "142667", + text = "quiver_bolt_a_01.m2", + value = "quiver_bolt_a_01.m2", + }, + { + fileId = "142693", + text = "quiver_horde_a_01.m2", + value = "quiver_horde_a_01.m2", + }, + }, + text = "quiver", + value = "quiver", + }, + { + children = { + { + fileId = "512439", + text = "player_scroll_animated.m2", + value = "player_scroll_animated.m2", + }, + { + fileId = "527132", + text = "xmas_player_scroll_animated.m2", + value = "xmas_player_scroll_animated.m2", + }, + }, + text = "scroll", + value = "scroll", + }, + { + children = { + { + fileId = "142733", + text = "buckler_damaged_a_01.m2", + value = "buckler_damaged_a_01.m2", + }, + { + fileId = "142737", + text = "buckler_damaged_a_02.m2", + value = "buckler_damaged_a_02.m2", + }, + { + fileId = "142741", + text = "buckler_oval_a_01.m2", + value = "buckler_oval_a_01.m2", + }, + { + fileId = "142745", + text = "buckler_round_a_01.m2", + value = "buckler_round_a_01.m2", + }, + { + fileId = "142754", + text = "shield_2h_outlandraid_d_01.m2", + value = "shield_2h_outlandraid_d_01.m2", + }, + { + fileId = "142756", + text = "shield_2h_outlandraid_d_02.m2", + value = "shield_2h_outlandraid_d_02.m2", + }, + { + fileId = "142758", + text = "shield_2h_outlandraid_d_03.m2", + value = "shield_2h_outlandraid_d_03.m2", + }, + { + fileId = "142760", + text = "shield_2h_outlandraid_d_04.m2", + value = "shield_2h_outlandraid_d_04.m2", + }, + { + fileId = "142762", + text = "shield_2h_outlandraid_d_05.m2", + value = "shield_2h_outlandraid_d_05.m2", + }, + { + fileId = "142765", + text = "shield_2h_outlandraid_d_06.m2", + value = "shield_2h_outlandraid_d_06.m2", + }, + { + fileId = "142767", + text = "shield_2h_outlandraid_d_07.m2", + value = "shield_2h_outlandraid_d_07.m2", + }, + { + fileId = "142772", + text = "shield_2h_outlandraid_d_08.m2", + value = "shield_2h_outlandraid_d_08.m2", + }, + { + fileId = "536024", + text = "shield_430future_c_01.m2", + value = "shield_430future_c_01.m2", + }, + { + fileId = "536701", + text = "shield_430oldgod_c_01.m2", + value = "shield_430oldgod_c_01.m2", + }, + { + fileId = "142779", + text = "shield_ahnqiraj_d_01.m2", + value = "shield_ahnqiraj_d_01.m2", + }, + { + fileId = "142781", + text = "shield_ahnqiraj_d_02.m2", + value = "shield_ahnqiraj_d_02.m2", + }, + { + fileId = "142783", + text = "shield_ahnqiraj_d_03.m2", + value = "shield_ahnqiraj_d_03.m2", + }, + { + fileId = "238343", + text = "shield_argentcrusade_c_01.m2", + value = "shield_argentcrusade_c_01.m2", + }, + { + fileId = "142785", + text = "shield_blackwing_drakeadon.m2", + value = "shield_blackwing_drakeadon.m2", + }, + { + fileId = "142787", + text = "shield_blackwing_reddragon.m2", + value = "shield_blackwing_reddragon.m2", + }, + { + fileId = "142789", + text = "shield_blood_a_01.m2", + value = "shield_blood_a_01.m2", + }, + { + fileId = "142791", + text = "shield_blood_a_02.m2", + value = "shield_blood_a_02.m2", + }, + { + fileId = "142793", + text = "shield_blood_a_03.m2", + value = "shield_blood_a_03.m2", + }, + { + fileId = "142795", + text = "shield_bloodknight_b_01.m2", + value = "shield_bloodknight_b_01.m2", + }, + { + fileId = "142797", + text = "shield_bloodknight_d_01.m2", + value = "shield_bloodknight_d_01.m2", + }, + { + fileId = "396547", + text = "shield_bwdraid_d_01.m2", + value = "shield_bwdraid_d_01.m2", + }, + { + fileId = "399935", + text = "shield_bwdraid_d_02.m2", + value = "shield_bwdraid_d_02.m2", + }, + { + fileId = "376836", + text = "shield_cataclysm_b_01.m2", + value = "shield_cataclysm_b_01.m2", + }, + { + fileId = "380536", + text = "shield_cataclysm_b_02.m2", + value = "shield_cataclysm_b_02.m2", + }, + { + fileId = "463101", + text = "shield_cataclysm_c_01.m2", + value = "shield_cataclysm_c_01.m2", + }, + { + fileId = "142798", + text = "shield_cotstrat_d_01.m2", + value = "shield_cotstrat_d_01.m2", + }, + { + fileId = "142799", + text = "shield_cotstrat_d_02.m2", + value = "shield_cotstrat_d_02.m2", + }, + { + fileId = "142804", + text = "shield_crest_a_01.m2", + value = "shield_crest_a_01.m2", + }, + { + fileId = "142809", + text = "shield_crest_a_02.m2", + value = "shield_crest_a_02.m2", + }, + { + fileId = "142813", + text = "shield_crest_b_01.m2", + value = "shield_crest_b_01.m2", + }, + { + fileId = "142816", + text = "shield_crest_b_02.m2", + value = "shield_crest_b_02.m2", + }, + { + fileId = "142826", + text = "shield_crest_b_03.m2", + value = "shield_crest_b_03.m2", + }, + { + fileId = "238344", + text = "shield_dalaran_d_01.m2", + value = "shield_dalaran_d_01.m2", + }, + { + fileId = "535305", + text = "shield_deathwingraid_d_01.m2", + value = "shield_deathwingraid_d_01.m2", + }, + { + fileId = "533359", + text = "shield_deathwingraid_d_02.m2", + value = "shield_deathwingraid_d_02.m2", + }, + { + fileId = "142849", + text = "shield_draenei_a_01.m2", + value = "shield_draenei_a_01.m2", + }, + { + fileId = "142855", + text = "shield_draenei_a_02.m2", + value = "shield_draenei_a_02.m2", + }, + { + fileId = "142862", + text = "shield_draktharon_d_01.m2", + value = "shield_draktharon_d_01.m2", + }, + { + fileId = "142867", + text = "shield_engineer_a_01.m2", + value = "shield_engineer_a_01.m2", + }, + { + fileId = "142869", + text = "shield_engineer_b_01.m2", + value = "shield_engineer_b_01.m2", + }, + { + fileId = "142871", + text = "shield_engineer_c_01.m2", + value = "shield_engineer_c_01.m2", + }, + { + fileId = "142873", + text = "shield_epic_a_01.m2", + value = "shield_epic_a_01.m2", + }, + { + fileId = "142875", + text = "shield_epic_a_02.m2", + value = "shield_epic_a_02.m2", + }, + { + fileId = "142876", + text = "shield_epic_b_01.m2", + value = "shield_epic_b_01.m2", + }, + { + fileId = "510889", + text = "shield_firelandsraid_d_01.m2", + value = "shield_firelandsraid_d_01.m2", + }, + { + fileId = "510759", + text = "shield_firelandsraid_d_02.m2", + value = "shield_firelandsraid_d_02.m2", + }, + { + fileId = "331439", + text = "shield_goblin_b_01.m2", + value = "shield_goblin_b_01.m2", + }, + { + fileId = "405410", + text = "shield_grimbatolraid_d_01.m2", + value = "shield_grimbatolraid_d_01.m2", + }, + { + fileId = "402661", + text = "shield_grimbatolraid_d_02.m2", + value = "shield_grimbatolraid_d_02.m2", + }, + { + fileId = "238350", + text = "shield_healer_pvp_c_01.m2", + value = "shield_healer_pvp_c_01.m2", + }, + { + fileId = "142878", + text = "shield_horde_a_01.m2", + value = "shield_horde_a_01.m2", + }, + { + fileId = "142885", + text = "shield_horde_a_02.m2", + value = "shield_horde_a_02.m2", + }, + { + fileId = "142893", + text = "shield_horde_a_03.m2", + value = "shield_horde_a_03.m2", + }, + { + fileId = "142900", + text = "shield_horde_a_04.m2", + value = "shield_horde_a_04.m2", + }, + { + fileId = "142907", + text = "shield_horde_b_01.m2", + value = "shield_horde_b_01.m2", + }, + { + fileId = "142909", + text = "shield_horde_b_02.m2", + value = "shield_horde_b_02.m2", + }, + { + fileId = "142911", + text = "shield_horde_b_03.m2", + value = "shield_horde_b_03.m2", + }, + { + fileId = "142914", + text = "shield_horde_b_04.m2", + value = "shield_horde_b_04.m2", + }, + { + fileId = "238356", + text = "shield_horde_b_05.m2", + value = "shield_horde_b_05.m2", + }, + { + fileId = "142916", + text = "shield_horde_c_02.m2", + value = "shield_horde_c_02.m2", + }, + { + fileId = "142918", + text = "shield_horde_c_03.m2", + value = "shield_horde_c_03.m2", + }, + { + fileId = "142920", + text = "shield_hyjal_d_01.m2", + value = "shield_hyjal_d_01.m2", + }, + { + fileId = "142924", + text = "shield_hyjal_d_02.m2", + value = "shield_hyjal_d_02.m2", + }, + { + fileId = "142930", + text = "shield_hyjal_d_03.m2", + value = "shield_hyjal_d_03.m2", + }, + { + fileId = "307952", + text = "shield_icecrownraid_d_01.m2", + value = "shield_icecrownraid_d_01.m2", + }, + { + fileId = "307690", + text = "shield_icecrownraid_d_02.m2", + value = "shield_icecrownraid_d_02.m2", + }, + { + fileId = "307691", + text = "shield_icecrownraid_d_03.m2", + value = "shield_icecrownraid_d_03.m2", + }, + { + fileId = "308487", + text = "shield_icecrownraid_d_04.m2", + value = "shield_icecrownraid_d_04.m2", + }, + { + fileId = "142934", + text = "shield_illidan_d_01.m2", + value = "shield_illidan_d_01.m2", + }, + { + fileId = "142939", + text = "shield_lion_a_01.m2", + value = "shield_lion_a_01.m2", + }, + { + fileId = "238359", + text = "shield_melee_pvp_c_01.m2", + value = "shield_melee_pvp_c_01.m2", + }, + { + fileId = "142940", + text = "shield_militia_a_01.m2", + value = "shield_militia_a_01.m2", + }, + { + fileId = "238364", + text = "shield_naxx25_d_01.m2", + value = "shield_naxx25_d_01.m2", + }, + { + fileId = "238369", + text = "shield_naxx25_d_02.m2", + value = "shield_naxx25_d_02.m2", + }, + { + fileId = "142946", + text = "shield_naxxramas_d_01.m2", + value = "shield_naxxramas_d_01.m2", + }, + { + fileId = "142948", + text = "shield_naxxramas_d_02.m2", + value = "shield_naxxramas_d_02.m2", + }, + { + fileId = "142950", + text = "shield_naxxramas_d_03.m2", + value = "shield_naxxramas_d_03.m2", + }, + { + fileId = "142951", + text = "shield_nexus_d_01.m2", + value = "shield_nexus_d_01.m2", + }, + { + fileId = "142956", + text = "shield_northrend_b_01.m2", + value = "shield_northrend_b_01.m2", + }, + { + fileId = "142957", + text = "shield_northrend_b_02.m2", + value = "shield_northrend_b_02.m2", + }, + { + fileId = "142958", + text = "shield_northrend_b_03.m2", + value = "shield_northrend_b_03.m2", + }, + { + fileId = "142959", + text = "shield_northrend_b_04.m2", + value = "shield_northrend_b_04.m2", + }, + { + fileId = "142960", + text = "shield_northrend_c_01.m2", + value = "shield_northrend_c_01.m2", + }, + { + fileId = "142965", + text = "shield_northrend_c_02.m2", + value = "shield_northrend_c_02.m2", + }, + { + fileId = "142970", + text = "shield_northrend_c_03.m2", + value = "shield_northrend_c_03.m2", + }, + { + fileId = "142975", + text = "shield_northrend_c_04.m2", + value = "shield_northrend_c_04.m2", + }, + { + fileId = "142979", + text = "shield_northrend_d_01.m2", + value = "shield_northrend_d_01.m2", + }, + { + fileId = "142984", + text = "shield_oval_a_01.m2", + value = "shield_oval_a_01.m2", + }, + { + fileId = "446149", + text = "shield_paladin_a_01avengingangel.m2", + value = "shield_paladin_a_01avengingangel.m2", + }, + { + fileId = "304736", + text = "shield_pvealliance_d_01.m2", + value = "shield_pvealliance_d_01.m2", + }, + { + fileId = "305181", + text = "shield_pvealliance_d_02.m2", + value = "shield_pvealliance_d_02.m2", + }, + { + fileId = "306624", + text = "shield_pvehorde_d_01.m2", + value = "shield_pvehorde_d_01.m2", + }, + { + fileId = "306564", + text = "shield_pvehorde_d_02.m2", + value = "shield_pvehorde_d_02.m2", + }, + { + fileId = "329350", + text = "shield_pvp330_d_01.m2", + value = "shield_pvp330_d_01.m2", + }, + { + fileId = "464822", + text = "shield_pvp400_c_01.m2", + value = "shield_pvp400_c_01.m2", + }, + { + fileId = "514465", + text = "shield_pvp410_c_01.m2", + value = "shield_pvp410_c_01.m2", + }, + { + fileId = "517072", + text = "shield_pvp410_c_02.m2", + value = "shield_pvp410_c_02.m2", + }, + { + fileId = "142989", + text = "shield_pvpalliance_a_01.m2", + value = "shield_pvpalliance_a_01.m2", + }, + { + fileId = "571775", + text = "shield_pvpcataclysms3_c_01.m2", + value = "shield_pvpcataclysms3_c_01.m2", + }, + { + fileId = "528725", + text = "shield_pvpcataclysms3_c_02.m2", + value = "shield_pvpcataclysms3_c_02.m2", + }, + { + fileId = "142991", + text = "shield_pvphorde_a_01.m2", + value = "shield_pvphorde_a_01.m2", + }, + { + fileId = "142992", + text = "shield_rectangle_a_01.m2", + value = "shield_rectangle_a_01.m2", + }, + { + fileId = "142997", + text = "shield_rectangle_b_01.m2", + value = "shield_rectangle_b_01.m2", + }, + { + fileId = "143001", + text = "shield_round_a_01.m2", + value = "shield_round_a_01.m2", + }, + { + fileId = "143005", + text = "shield_round_b_01.m2", + value = "shield_round_b_01.m2", + }, + { + fileId = "143029", + text = "shield_stratholme_d_01.m2", + value = "shield_stratholme_d_01.m2", + }, + { + fileId = "143031", + text = "shield_stratholme_d_02.m2", + value = "shield_stratholme_d_02.m2", + }, + { + fileId = "143032", + text = "shield_sunshatter_d_01.m2", + value = "shield_sunshatter_d_01.m2", + }, + { + fileId = "143038", + text = "shield_sunwell_d_01.m2", + value = "shield_sunwell_d_01.m2", + }, + { + fileId = "143043", + text = "shield_sunwell_d_02.m2", + value = "shield_sunwell_d_02.m2", + }, + { + fileId = "143047", + text = "shield_sunwell_d_03.m2", + value = "shield_sunwell_d_03.m2", + }, + { + fileId = "335412", + text = "shield_twilighthammer_c_01.m2", + value = "shield_twilighthammer_c_01.m2", + }, + { + fileId = "238386", + text = "shield_ulduarraid_d_01.m2", + value = "shield_ulduarraid_d_01.m2", + }, + { + fileId = "249238", + text = "shield_ulduarraid_d_02.m2", + value = "shield_ulduarraid_d_02.m2", + }, + { + fileId = "238393", + text = "shield_ulduarraid_d_03.m2", + value = "shield_ulduarraid_d_03.m2", + }, + { + fileId = "238399", + text = "shield_ulduarraid_d_04.m2", + value = "shield_ulduarraid_d_04.m2", + }, + { + fileId = "143052", + text = "shield_utgarde_d_01.m2", + value = "shield_utgarde_d_01.m2", + }, + { + fileId = "143057", + text = "shield_utgarde_d_02.m2", + value = "shield_utgarde_d_02.m2", + }, + { + fileId = "143063", + text = "shield_wheel_b_01.m2", + value = "shield_wheel_b_01.m2", + }, + { + fileId = "331049", + text = "shield_worgen_b_01.m2", + value = "shield_worgen_b_01.m2", + }, + { + fileId = "143065", + text = "shield_zulaman_d_01.m2", + value = "shield_zulaman_d_01.m2", + }, + { + fileId = "143069", + text = "shield_zulaman_d_02.m2", + value = "shield_zulaman_d_02.m2", + }, + { + fileId = "143075", + text = "shield_zulgurub_d_01.m2", + value = "shield_zulgurub_d_01.m2", + }, + { + fileId = "143077", + text = "shield_zulgurub_d_02.m2", + value = "shield_zulgurub_d_02.m2", + }, + }, + text = "shield", + value = "shield", + }, + { + children = { + { + fileId = "424798", + text = "lshoulder_cloth_cataclysm_b_01.m2", + value = "lshoulder_cloth_cataclysm_b_01.m2", + }, + { + fileId = "433480", + text = "lshoulder_cloth_cataclysm_b_02.m2", + value = "lshoulder_cloth_cataclysm_b_02.m2", + }, + { + fileId = "238415", + text = "lshoulder_cloth_pvpmage_b_01.m2", + value = "lshoulder_cloth_pvpmage_b_01.m2", + }, + { + fileId = "255263", + text = "lshoulder_cloth_pvpmage_b_02.m2", + value = "lshoulder_cloth_pvpmage_b_02.m2", + }, + { + fileId = "305321", + text = "lshoulder_cloth_pvpmage_b_03.m2", + value = "lshoulder_cloth_pvpmage_b_03.m2", + }, + { + fileId = "343976", + text = "lshoulder_cloth_pvpmage_b_04.m2", + value = "lshoulder_cloth_pvpmage_b_04.m2", + }, + { + fileId = "426165", + text = "lshoulder_cloth_pvpmage_c_01.m2", + value = "lshoulder_cloth_pvpmage_c_01.m2", + }, + { + fileId = "469085", + text = "lshoulder_cloth_pvpmage_c_02.m2", + value = "lshoulder_cloth_pvpmage_c_02.m2", + }, + { + fileId = "238416", + text = "lshoulder_cloth_pvppriest_b_01.m2", + value = "lshoulder_cloth_pvppriest_b_01.m2", + }, + { + fileId = "293956", + text = "lshoulder_cloth_pvppriest_b_02.m2", + value = "lshoulder_cloth_pvppriest_b_02.m2", + }, + { + fileId = "347765", + text = "lshoulder_cloth_pvppriest_b_04.m2", + value = "lshoulder_cloth_pvppriest_b_04.m2", + }, + { + fileId = "413729", + text = "lshoulder_cloth_pvppriest_c_01.m2", + value = "lshoulder_cloth_pvppriest_c_01.m2", + }, + { + fileId = "469224", + text = "lshoulder_cloth_pvppriest_c_02.m2", + value = "lshoulder_cloth_pvppriest_c_02.m2", + }, + { + fileId = "367019", + text = "lshoulder_cloth_pvpwarlock_c_01.m2", + value = "lshoulder_cloth_pvpwarlock_c_01.m2", + }, + { + fileId = "469272", + text = "lshoulder_cloth_pvpwarlock_c_02.m2", + value = "lshoulder_cloth_pvpwarlock_c_02.m2", + }, + { + fileId = "465142", + text = "lshoulder_cloth_raidpriest_i_01.m2", + value = "lshoulder_cloth_raidpriest_i_01.m2", + }, + { + fileId = "462572", + text = "lshoulder_cloth_raidwarlock_i_01.m2", + value = "lshoulder_cloth_raidwarlock_i_01.m2", + }, + { + fileId = "143132", + text = "lshoulder_leather_a_01.m2", + value = "lshoulder_leather_a_01.m2", + }, + { + fileId = "143133", + text = "lshoulder_leather_a_02.m2", + value = "lshoulder_leather_a_02.m2", + }, + { + fileId = "143134", + text = "lshoulder_leather_a_03.m2", + value = "lshoulder_leather_a_03.m2", + }, + { + fileId = "143135", + text = "lshoulder_leather_a_03defias.m2", + value = "lshoulder_leather_a_03defias.m2", + }, + { + fileId = "143136", + text = "lshoulder_leather_a_04.m2", + value = "lshoulder_leather_a_04.m2", + }, + { + fileId = "143137", + text = "lshoulder_leather_a_05.m2", + value = "lshoulder_leather_a_05.m2", + }, + { + fileId = "143138", + text = "lshoulder_leather_ahnqiraj_a_01.m2", + value = "lshoulder_leather_ahnqiraj_a_01.m2", + }, + { + fileId = "316666", + text = "lshoulder_leather_argentalliance_d_01.m2", + value = "lshoulder_leather_argentalliance_d_01.m2", + }, + { + fileId = "312784", + text = "lshoulder_leather_argenthorde_d_01.m2", + value = "lshoulder_leather_argenthorde_d_01.m2", + }, + { + fileId = "143139", + text = "lshoulder_leather_b_01.m2", + value = "lshoulder_leather_b_01.m2", + }, + { + fileId = "143140", + text = "lshoulder_leather_b_02.m2", + value = "lshoulder_leather_b_02.m2", + }, + { + fileId = "143141", + text = "lshoulder_leather_b_03.m2", + value = "lshoulder_leather_b_03.m2", + }, + { + fileId = "143142", + text = "lshoulder_leather_b_04.m2", + value = "lshoulder_leather_b_04.m2", + }, + { + fileId = "143143", + text = "lshoulder_leather_blood_b_01.m2", + value = "lshoulder_leather_blood_b_01.m2", + }, + { + fileId = "143144", + text = "lshoulder_leather_c_01.m2", + value = "lshoulder_leather_c_01.m2", + }, + { + fileId = "143145", + text = "lshoulder_leather_c_02.m2", + value = "lshoulder_leather_c_02.m2", + }, + { + fileId = "143146", + text = "lshoulder_leather_c_03.m2", + value = "lshoulder_leather_c_03.m2", + }, + { + fileId = "426534", + text = "lshoulder_leather_cataclysm_b_01.m2", + value = "lshoulder_leather_cataclysm_b_01.m2", + }, + { + fileId = "461642", + text = "lshoulder_leather_cataclysm_b_02.m2", + value = "lshoulder_leather_cataclysm_b_02.m2", + }, + { + fileId = "357187", + text = "lshoulder_leather_common_b_01.m2", + value = "lshoulder_leather_common_b_01.m2", + }, + { + fileId = "360658", + text = "lshoulder_leather_common_b_02.m2", + value = "lshoulder_leather_common_b_02.m2", + }, + { + fileId = "361400", + text = "lshoulder_leather_common_b_03.m2", + value = "lshoulder_leather_common_b_03.m2", + }, + { + fileId = "364385", + text = "lshoulder_leather_common_c_01.m2", + value = "lshoulder_leather_common_c_01.m2", + }, + { + fileId = "143147", + text = "lshoulder_leather_d_01.m2", + value = "lshoulder_leather_d_01.m2", + }, + { + fileId = "143148", + text = "lshoulder_leather_d_02.m2", + value = "lshoulder_leather_d_02.m2", + }, + { + fileId = "143149", + text = "lshoulder_leather_d_03.m2", + value = "lshoulder_leather_d_03.m2", + }, + { + fileId = "143150", + text = "lshoulder_leather_draenei_b_01.m2", + value = "lshoulder_leather_draenei_b_01.m2", + }, + { + fileId = "143151", + text = "lshoulder_leather_draenei_b_02.m2", + value = "lshoulder_leather_draenei_b_02.m2", + }, + { + fileId = "143152", + text = "lshoulder_leather_dungeondruid_a_01.m2", + value = "lshoulder_leather_dungeondruid_a_01.m2", + }, + { + fileId = "143153", + text = "lshoulder_leather_dungeondruid_b_01.m2", + value = "lshoulder_leather_dungeondruid_b_01.m2", + }, + { + fileId = "2199316", + text = "lshoulder_leather_dungeonhunter_a_01.m2", + value = "lshoulder_leather_dungeonhunter_a_01.m2", + }, + { + fileId = "238417", + text = "lshoulder_leather_dungeonleather_c_01.m2", + value = "lshoulder_leather_dungeonleather_c_01.m2", + }, + { + fileId = "340375", + text = "lshoulder_leather_dungeonleather_c_02.m2", + value = "lshoulder_leather_dungeonleather_c_02.m2", + }, + { + fileId = "436847", + text = "lshoulder_leather_dungeonleather_c_03.m2", + value = "lshoulder_leather_dungeonleather_c_03.m2", + }, + { + fileId = "446969", + text = "lshoulder_leather_dungeonleather_c_04.m2", + value = "lshoulder_leather_dungeonleather_c_04.m2", + }, + { + fileId = "537861", + text = "lshoulder_leather_dungeonleather_c_05.m2", + value = "lshoulder_leather_dungeonleather_c_05.m2", + }, + { + fileId = "143155", + text = "lshoulder_leather_dungeonrogue_b_01.m2", + value = "lshoulder_leather_dungeonrogue_b_01.m2", + }, + { + fileId = "514392", + text = "lshoulder_leather_firelandsdruid_d_01.m2", + value = "lshoulder_leather_firelandsdruid_d_01.m2", + }, + { + fileId = "143156", + text = "lshoulder_leather_horde_a_05.m2", + value = "lshoulder_leather_horde_a_05.m2", + }, + { + fileId = "143157", + text = "lshoulder_leather_horde_b_03.m2", + value = "lshoulder_leather_horde_b_03.m2", + }, + { + fileId = "143158", + text = "lshoulder_leather_northrend_b_01.m2", + value = "lshoulder_leather_northrend_b_01.m2", + }, + { + fileId = "143159", + text = "lshoulder_leather_northrend_b_02.m2", + value = "lshoulder_leather_northrend_b_02.m2", + }, + { + fileId = "143160", + text = "lshoulder_leather_northrend_b_03.m2", + value = "lshoulder_leather_northrend_b_03.m2", + }, + { + fileId = "143161", + text = "lshoulder_leather_northrend_c_01.m2", + value = "lshoulder_leather_northrend_c_01.m2", + }, + { + fileId = "143162", + text = "lshoulder_leather_northrend_c_02.m2", + value = "lshoulder_leather_northrend_c_02.m2", + }, + { + fileId = "143163", + text = "lshoulder_leather_northrend_d_01.m2", + value = "lshoulder_leather_northrend_d_01.m2", + }, + { + fileId = "143164", + text = "lshoulder_leather_pvpalliance_a_01.m2", + value = "lshoulder_leather_pvpalliance_a_01.m2", + }, + { + fileId = "238418", + text = "lshoulder_leather_pvpdruid_b_01.m2", + value = "lshoulder_leather_pvpdruid_b_01.m2", + }, + { + fileId = "294395", + text = "lshoulder_leather_pvpdruid_b_02.m2", + value = "lshoulder_leather_pvpdruid_b_02.m2", + }, + { + fileId = "304543", + text = "lshoulder_leather_pvpdruid_b_03.m2", + value = "lshoulder_leather_pvpdruid_b_03.m2", + }, + { + fileId = "348778", + text = "lshoulder_leather_pvpdruid_b_04.m2", + value = "lshoulder_leather_pvpdruid_b_04.m2", + }, + { + fileId = "459077", + text = "lshoulder_leather_pvpdruid_c_01.m2", + value = "lshoulder_leather_pvpdruid_c_01.m2", + }, + { + fileId = "469662", + text = "lshoulder_leather_pvpdruid_c_02.m2", + value = "lshoulder_leather_pvpdruid_c_02.m2", + }, + { + fileId = "536707", + text = "lshoulder_leather_pvpdruid_d_01.m2", + value = "lshoulder_leather_pvpdruid_d_01.m2", + }, + { + fileId = "143165", + text = "lshoulder_leather_pvphorde_a_01.m2", + value = "lshoulder_leather_pvphorde_a_01.m2", + }, + { + fileId = "143166", + text = "lshoulder_leather_pvphorde_c_01.m2", + value = "lshoulder_leather_pvphorde_c_01.m2", + }, + { + fileId = "238419", + text = "lshoulder_leather_pvprogue_b_01.m2", + value = "lshoulder_leather_pvprogue_b_01.m2", + }, + { + fileId = "254606", + text = "lshoulder_leather_pvprogue_b_02.m2", + value = "lshoulder_leather_pvprogue_b_02.m2", + }, + { + fileId = "304492", + text = "lshoulder_leather_pvprogue_b_03.m2", + value = "lshoulder_leather_pvprogue_b_03.m2", + }, + { + fileId = "346077", + text = "lshoulder_leather_pvprogue_b_04.m2", + value = "lshoulder_leather_pvprogue_b_04.m2", + }, + { + fileId = "368892", + text = "lshoulder_leather_pvprogue_c_01.m2", + value = "lshoulder_leather_pvprogue_c_01.m2", + }, + { + fileId = "469515", + text = "lshoulder_leather_pvprogue_c_02.m2", + value = "lshoulder_leather_pvprogue_c_02.m2", + }, + { + fileId = "535531", + text = "lshoulder_leather_pvprogue_d_01.m2", + value = "lshoulder_leather_pvprogue_d_01.m2", + }, + { + fileId = "143167", + text = "lshoulder_leather_raiddruid_a_01.m2", + value = "lshoulder_leather_raiddruid_a_01.m2", + }, + { + fileId = "143168", + text = "lshoulder_leather_raiddruid_b_01.m2", + value = "lshoulder_leather_raiddruid_b_01.m2", + }, + { + fileId = "143169", + text = "lshoulder_leather_raiddruid_c_01.m2", + value = "lshoulder_leather_raiddruid_c_01.m2", + }, + { + fileId = "238420", + text = "lshoulder_leather_raiddruid_c_02.m2", + value = "lshoulder_leather_raiddruid_c_02.m2", + }, + { + fileId = "143170", + text = "lshoulder_leather_raiddruid_d_01.m2", + value = "lshoulder_leather_raiddruid_d_01.m2", + }, + { + fileId = "143171", + text = "lshoulder_leather_raiddruid_e_01.m2", + value = "lshoulder_leather_raiddruid_e_01.m2", + }, + { + fileId = "143172", + text = "lshoulder_leather_raiddruid_f_01.m2", + value = "lshoulder_leather_raiddruid_f_01.m2", + }, + { + fileId = "249248", + text = "lshoulder_leather_raiddruid_g_01.m2", + value = "lshoulder_leather_raiddruid_g_01.m2", + }, + { + fileId = "336852", + text = "lshoulder_leather_raiddruid_h_01.m2", + value = "lshoulder_leather_raiddruid_h_01.m2", + }, + { + fileId = "460949", + text = "lshoulder_leather_raiddruid_i_01.m2", + value = "lshoulder_leather_raiddruid_i_01.m2", + }, + { + fileId = "526006", + text = "lshoulder_leather_raiddruid_j_01.m2", + value = "lshoulder_leather_raiddruid_j_01.m2", + }, + { + fileId = "533364", + text = "lshoulder_leather_raiddruid_k_01.m2", + value = "lshoulder_leather_raiddruid_k_01.m2", + }, + { + fileId = "143173", + text = "lshoulder_leather_raidrogue_a_01.m2", + value = "lshoulder_leather_raidrogue_a_01.m2", + }, + { + fileId = "143174", + text = "lshoulder_leather_raidrogue_b_01.m2", + value = "lshoulder_leather_raidrogue_b_01.m2", + }, + { + fileId = "143175", + text = "lshoulder_leather_raidrogue_c_01.m2", + value = "lshoulder_leather_raidrogue_c_01.m2", + }, + { + fileId = "238421", + text = "lshoulder_leather_raidrogue_c_02.m2", + value = "lshoulder_leather_raidrogue_c_02.m2", + }, + { + fileId = "143176", + text = "lshoulder_leather_raidrogue_d_01.m2", + value = "lshoulder_leather_raidrogue_d_01.m2", + }, + { + fileId = "143177", + text = "lshoulder_leather_raidrogue_e_01.m2", + value = "lshoulder_leather_raidrogue_e_01.m2", + }, + { + fileId = "143178", + text = "lshoulder_leather_raidrogue_f_01.m2", + value = "lshoulder_leather_raidrogue_f_01.m2", + }, + { + fileId = "143179", + text = "lshoulder_leather_raidrogue_g_01.m2", + value = "lshoulder_leather_raidrogue_g_01.m2", + }, + { + fileId = "336853", + text = "lshoulder_leather_raidrogue_h_01.m2", + value = "lshoulder_leather_raidrogue_h_01.m2", + }, + { + fileId = "461643", + text = "lshoulder_leather_raidrogue_i_01.m2", + value = "lshoulder_leather_raidrogue_i_01.m2", + }, + { + fileId = "517117", + text = "lshoulder_leather_raidrogue_j_01.m2", + value = "lshoulder_leather_raidrogue_j_01.m2", + }, + { + fileId = "534376", + text = "lshoulder_leather_raidrogue_k_01.m2", + value = "lshoulder_leather_raidrogue_k_01.m2", + }, + { + fileId = "143180", + text = "lshoulder_leather_sunwell_d_01.m2", + value = "lshoulder_leather_sunwell_d_01.m2", + }, + { + fileId = "143181", + text = "lshoulder_leather_zulaman_d_01.m2", + value = "lshoulder_leather_zulaman_d_01.m2", + }, + { + fileId = "143182", + text = "lshoulder_leather_zulaman_d_03.m2", + value = "lshoulder_leather_zulaman_d_03.m2", + }, + { + fileId = "143183", + text = "lshoulder_mail_a_01.m2", + value = "lshoulder_mail_a_01.m2", + }, + { + fileId = "143184", + text = "lshoulder_mail_a_02.m2", + value = "lshoulder_mail_a_02.m2", + }, + { + fileId = "143185", + text = "lshoulder_mail_a_03.m2", + value = "lshoulder_mail_a_03.m2", + }, + { + fileId = "143186", + text = "lshoulder_mail_ahnqiraj_a_01.m2", + value = "lshoulder_mail_ahnqiraj_a_01.m2", + }, + { + fileId = "317487", + text = "lshoulder_mail_argentalliance_d_01.m2", + value = "lshoulder_mail_argentalliance_d_01.m2", + }, + { + fileId = "315305", + text = "lshoulder_mail_argenthorde_d_01.m2", + value = "lshoulder_mail_argenthorde_d_01.m2", + }, + { + fileId = "143187", + text = "lshoulder_mail_b_01.m2", + value = "lshoulder_mail_b_01.m2", + }, + { + fileId = "143188", + text = "lshoulder_mail_b_02.m2", + value = "lshoulder_mail_b_02.m2", + }, + { + fileId = "143189", + text = "lshoulder_mail_b_03.m2", + value = "lshoulder_mail_b_03.m2", + }, + { + fileId = "143190", + text = "lshoulder_mail_b_05.m2", + value = "lshoulder_mail_b_05.m2", + }, + { + fileId = "143191", + text = "lshoulder_mail_blood_b_01.m2", + value = "lshoulder_mail_blood_b_01.m2", + }, + { + fileId = "143192", + text = "lshoulder_mail_c_01.m2", + value = "lshoulder_mail_c_01.m2", + }, + { + fileId = "143193", + text = "lshoulder_mail_c_02.m2", + value = "lshoulder_mail_c_02.m2", + }, + { + fileId = "143194", + text = "lshoulder_mail_c_03.m2", + value = "lshoulder_mail_c_03.m2", + }, + { + fileId = "143195", + text = "lshoulder_mail_c_04.m2", + value = "lshoulder_mail_c_04.m2", + }, + { + fileId = "422659", + text = "lshoulder_mail_cataclysm_b_01.m2", + value = "lshoulder_mail_cataclysm_b_01.m2", + }, + { + fileId = "460950", + text = "lshoulder_mail_cataclysm_b_02.m2", + value = "lshoulder_mail_cataclysm_b_02.m2", + }, + { + fileId = "356529", + text = "lshoulder_mail_common_b_01.m2", + value = "lshoulder_mail_common_b_01.m2", + }, + { + fileId = "359737", + text = "lshoulder_mail_common_b_02.m2", + value = "lshoulder_mail_common_b_02.m2", + }, + { + fileId = "364386", + text = "lshoulder_mail_common_b_03.m2", + value = "lshoulder_mail_common_b_03.m2", + }, + { + fileId = "366279", + text = "lshoulder_mail_common_c_01.m2", + value = "lshoulder_mail_common_c_01.m2", + }, + { + fileId = "143196", + text = "lshoulder_mail_d_01.m2", + value = "lshoulder_mail_d_01.m2", + }, + { + fileId = "143197", + text = "lshoulder_mail_d_02.m2", + value = "lshoulder_mail_d_02.m2", + }, + { + fileId = "143198", + text = "lshoulder_mail_draenei_b_01.m2", + value = "lshoulder_mail_draenei_b_01.m2", + }, + { + fileId = "143199", + text = "lshoulder_mail_draenei_b_02.m2", + value = "lshoulder_mail_draenei_b_02.m2", + }, + { + fileId = "143200", + text = "lshoulder_mail_dungeonhunter_a_01.m2", + value = "lshoulder_mail_dungeonhunter_a_01.m2", + }, + { + fileId = "143201", + text = "lshoulder_mail_dungeonhunter_b_02.m2", + value = "lshoulder_mail_dungeonhunter_b_02.m2", + }, + { + fileId = "238422", + text = "lshoulder_mail_dungeonmail_c_01.m2", + value = "lshoulder_mail_dungeonmail_c_01.m2", + }, + { + fileId = "342403", + text = "lshoulder_mail_dungeonmail_c_02.m2", + value = "lshoulder_mail_dungeonmail_c_02.m2", + }, + { + fileId = "431004", + text = "lshoulder_mail_dungeonmail_c_03.m2", + value = "lshoulder_mail_dungeonmail_c_03.m2", + }, + { + fileId = "458358", + text = "lshoulder_mail_dungeonmail_c_04.m2", + value = "lshoulder_mail_dungeonmail_c_04.m2", + }, + { + fileId = "537592", + text = "lshoulder_mail_dungeonmail_c_05.m2", + value = "lshoulder_mail_dungeonmail_c_05.m2", + }, + { + fileId = "143202", + text = "lshoulder_mail_dungeonshaman_a_01.m2", + value = "lshoulder_mail_dungeonshaman_a_01.m2", + }, + { + fileId = "143203", + text = "lshoulder_mail_dungeonshaman_b_01.m2", + value = "lshoulder_mail_dungeonshaman_b_01.m2", + }, + { + fileId = "143204", + text = "lshoulder_mail_northrend_b_01.m2", + value = "lshoulder_mail_northrend_b_01.m2", + }, + { + fileId = "143205", + text = "lshoulder_mail_northrend_b_02.m2", + value = "lshoulder_mail_northrend_b_02.m2", + }, + { + fileId = "143206", + text = "lshoulder_mail_northrend_b_03.m2", + value = "lshoulder_mail_northrend_b_03.m2", + }, + { + fileId = "143207", + text = "lshoulder_mail_northrend_b_04.m2", + value = "lshoulder_mail_northrend_b_04.m2", + }, + { + fileId = "143208", + text = "lshoulder_mail_northrend_d_01.m2", + value = "lshoulder_mail_northrend_d_01.m2", + }, + { + fileId = "143209", + text = "lshoulder_mail_pvpalliance_a_01.m2", + value = "lshoulder_mail_pvpalliance_a_01.m2", + }, + { + fileId = "143210", + text = "lshoulder_mail_pvpalliance_c_01.m2", + value = "lshoulder_mail_pvpalliance_c_01.m2", + }, + { + fileId = "143211", + text = "lshoulder_mail_pvphorde_a_01.m2", + value = "lshoulder_mail_pvphorde_a_01.m2", + }, + { + fileId = "143212", + text = "lshoulder_mail_pvphorde_c_01.m2", + value = "lshoulder_mail_pvphorde_c_01.m2", + }, + { + fileId = "238423", + text = "lshoulder_mail_pvphunter_b_01.m2", + value = "lshoulder_mail_pvphunter_b_01.m2", + }, + { + fileId = "254165", + text = "lshoulder_mail_pvphunter_b_02.m2", + value = "lshoulder_mail_pvphunter_b_02.m2", + }, + { + fileId = "307200", + text = "lshoulder_mail_pvphunter_b_03.m2", + value = "lshoulder_mail_pvphunter_b_03.m2", + }, + { + fileId = "344347", + text = "lshoulder_mail_pvphunter_b_04.m2", + value = "lshoulder_mail_pvphunter_b_04.m2", + }, + { + fileId = "463107", + text = "lshoulder_mail_pvphunter_c_01.m2", + value = "lshoulder_mail_pvphunter_c_01.m2", + }, + { + fileId = "469086", + text = "lshoulder_mail_pvphunter_c_02.m2", + value = "lshoulder_mail_pvphunter_c_02.m2", + }, + { + fileId = "531648", + text = "lshoulder_mail_pvphunter_d_01.m2", + value = "lshoulder_mail_pvphunter_d_01.m2", + }, + { + fileId = "238424", + text = "lshoulder_mail_pvpshaman_b_01.m2", + value = "lshoulder_mail_pvpshaman_b_01.m2", + }, + { + fileId = "298610", + text = "lshoulder_mail_pvpshaman_b_02.m2", + value = "lshoulder_mail_pvpshaman_b_02.m2", + }, + { + fileId = "306733", + text = "lshoulder_mail_pvpshaman_b_03.m2", + value = "lshoulder_mail_pvpshaman_b_03.m2", + }, + { + fileId = "349984", + text = "lshoulder_mail_pvpshaman_b_04.m2", + value = "lshoulder_mail_pvpshaman_b_04.m2", + }, + { + fileId = "464224", + text = "lshoulder_mail_pvpshaman_c_01.m2", + value = "lshoulder_mail_pvpshaman_c_01.m2", + }, + { + fileId = "468896", + text = "lshoulder_mail_pvpshaman_c_02.m2", + value = "lshoulder_mail_pvpshaman_c_02.m2", + }, + { + fileId = "532591", + text = "lshoulder_mail_pvpshaman_d_01.m2", + value = "lshoulder_mail_pvpshaman_d_01.m2", + }, + { + fileId = "143213", + text = "lshoulder_mail_raidhunter_a_01.m2", + value = "lshoulder_mail_raidhunter_a_01.m2", + }, + { + fileId = "143214", + text = "lshoulder_mail_raidhunter_b_01.m2", + value = "lshoulder_mail_raidhunter_b_01.m2", + }, + { + fileId = "143215", + text = "lshoulder_mail_raidhunter_c_01.m2", + value = "lshoulder_mail_raidhunter_c_01.m2", + }, + { + fileId = "238425", + text = "lshoulder_mail_raidhunter_c_02.m2", + value = "lshoulder_mail_raidhunter_c_02.m2", + }, + { + fileId = "143216", + text = "lshoulder_mail_raidhunter_d_01.m2", + value = "lshoulder_mail_raidhunter_d_01.m2", + }, + { + fileId = "143217", + text = "lshoulder_mail_raidhunter_e_01.m2", + value = "lshoulder_mail_raidhunter_e_01.m2", + }, + { + fileId = "143218", + text = "lshoulder_mail_raidhunter_f_01.m2", + value = "lshoulder_mail_raidhunter_f_01.m2", + }, + { + fileId = "143219", + text = "lshoulder_mail_raidhunter_g_01.m2", + value = "lshoulder_mail_raidhunter_g_01.m2", + }, + { + fileId = "337191", + text = "lshoulder_mail_raidhunter_h_01.m2", + value = "lshoulder_mail_raidhunter_h_01.m2", + }, + { + fileId = "466356", + text = "lshoulder_mail_raidhunter_i_01.m2", + value = "lshoulder_mail_raidhunter_i_01.m2", + }, + { + fileId = "519177", + text = "lshoulder_mail_raidhunter_j_01.m2", + value = "lshoulder_mail_raidhunter_j_01.m2", + }, + { + fileId = "535665", + text = "lshoulder_mail_raidhunter_k_01.m2", + value = "lshoulder_mail_raidhunter_k_01.m2", + }, + { + fileId = "143220", + text = "lshoulder_mail_raidshaman_a_01.m2", + value = "lshoulder_mail_raidshaman_a_01.m2", + }, + { + fileId = "143221", + text = "lshoulder_mail_raidshaman_b_01.m2", + value = "lshoulder_mail_raidshaman_b_01.m2", + }, + { + fileId = "238426", + text = "lshoulder_mail_raidshaman_c_02.m2", + value = "lshoulder_mail_raidshaman_c_02.m2", + }, + { + fileId = "143222", + text = "lshoulder_mail_raidshaman_d_01.m2", + value = "lshoulder_mail_raidshaman_d_01.m2", + }, + { + fileId = "143223", + text = "lshoulder_mail_raidshaman_e_01.m2", + value = "lshoulder_mail_raidshaman_e_01.m2", + }, + { + fileId = "143224", + text = "lshoulder_mail_raidshaman_f_01.m2", + value = "lshoulder_mail_raidshaman_f_01.m2", + }, + { + fileId = "249249", + text = "lshoulder_mail_raidshaman_g_01.m2", + value = "lshoulder_mail_raidshaman_g_01.m2", + }, + { + fileId = "349163", + text = "lshoulder_mail_raidshaman_h_01.m2", + value = "lshoulder_mail_raidshaman_h_01.m2", + }, + { + fileId = "353036", + text = "lshoulder_mail_raidshaman_h_02.m2", + value = "lshoulder_mail_raidshaman_h_02.m2", + }, + { + fileId = "465017", + text = "lshoulder_mail_raidshaman_i_01.m2", + value = "lshoulder_mail_raidshaman_i_01.m2", + }, + { + fileId = "526009", + text = "lshoulder_mail_raidshaman_j_01.m2", + value = "lshoulder_mail_raidshaman_j_01.m2", + }, + { + fileId = "534178", + text = "lshoulder_mail_raidshaman_k_01.m2", + value = "lshoulder_mail_raidshaman_k_01.m2", + }, + { + fileId = "143225", + text = "lshoulder_mail_sunwell_d_01.m2", + value = "lshoulder_mail_sunwell_d_01.m2", + }, + { + fileId = "143226", + text = "lshoulder_mail_zulaman_d_01.m2", + value = "lshoulder_mail_zulaman_d_01.m2", + }, + { + fileId = "143227", + text = "lshoulder_mail_zulaman_d_03.m2", + value = "lshoulder_mail_zulaman_d_03.m2", + }, + { + fileId = "143228", + text = "lshoulder_plate_a_01.m2", + value = "lshoulder_plate_a_01.m2", + }, + { + fileId = "143229", + text = "lshoulder_plate_a_02.m2", + value = "lshoulder_plate_a_02.m2", + }, + { + fileId = "143230", + text = "lshoulder_plate_a_02ironforgeguard.m2", + value = "lshoulder_plate_a_02ironforgeguard.m2", + }, + { + fileId = "143231", + text = "lshoulder_plate_a_03.m2", + value = "lshoulder_plate_a_03.m2", + }, + { + fileId = "143232", + text = "lshoulder_plate_a_04.m2", + value = "lshoulder_plate_a_04.m2", + }, + { + fileId = "143233", + text = "lshoulder_plate_a_05.m2", + value = "lshoulder_plate_a_05.m2", + }, + { + fileId = "143234", + text = "lshoulder_plate_ahnqiraj_a_01.m2", + value = "lshoulder_plate_ahnqiraj_a_01.m2", + }, + { + fileId = "311765", + text = "lshoulder_plate_argentalliance_d_01.m2", + value = "lshoulder_plate_argentalliance_d_01.m2", + }, + { + fileId = "315691", + text = "lshoulder_plate_argenthorde_d_01.m2", + value = "lshoulder_plate_argenthorde_d_01.m2", + }, + { + fileId = "143235", + text = "lshoulder_plate_b_01.m2", + value = "lshoulder_plate_b_01.m2", + }, + { + fileId = "143236", + text = "lshoulder_plate_b_02.m2", + value = "lshoulder_plate_b_02.m2", + }, + { + fileId = "143237", + text = "lshoulder_plate_b_03.m2", + value = "lshoulder_plate_b_03.m2", + }, + { + fileId = "143238", + text = "lshoulder_plate_b_04.m2", + value = "lshoulder_plate_b_04.m2", + }, + { + fileId = "143239", + text = "lshoulder_plate_b_05.m2", + value = "lshoulder_plate_b_05.m2", + }, + { + fileId = "143240", + text = "lshoulder_plate_bloodknight_d_02.m2", + value = "lshoulder_plate_bloodknight_d_02.m2", + }, + { + fileId = "143241", + text = "lshoulder_plate_c_01.m2", + value = "lshoulder_plate_c_01.m2", + }, + { + fileId = "143242", + text = "lshoulder_plate_c_03.m2", + value = "lshoulder_plate_c_03.m2", + }, + { + fileId = "143243", + text = "lshoulder_plate_c_04.m2", + value = "lshoulder_plate_c_04.m2", + }, + { + fileId = "143244", + text = "lshoulder_plate_c_05.m2", + value = "lshoulder_plate_c_05.m2", + }, + { + fileId = "411691", + text = "lshoulder_plate_cataclysm_b_01.m2", + value = "lshoulder_plate_cataclysm_b_01.m2", + }, + { + fileId = "463385", + text = "lshoulder_plate_cataclysm_b_02.m2", + value = "lshoulder_plate_cataclysm_b_02.m2", + }, + { + fileId = "356269", + text = "lshoulder_plate_common_b_01.m2", + value = "lshoulder_plate_common_b_01.m2", + }, + { + fileId = "359530", + text = "lshoulder_plate_common_b_02.m2", + value = "lshoulder_plate_common_b_02.m2", + }, + { + fileId = "364387", + text = "lshoulder_plate_common_b_03.m2", + value = "lshoulder_plate_common_b_03.m2", + }, + { + fileId = "366863", + text = "lshoulder_plate_common_c_01.m2", + value = "lshoulder_plate_common_c_01.m2", + }, + { + fileId = "143245", + text = "lshoulder_plate_d_01.m2", + value = "lshoulder_plate_d_01.m2", + }, + { + fileId = "143246", + text = "lshoulder_plate_d_02.m2", + value = "lshoulder_plate_d_02.m2", + }, + { + fileId = "143247", + text = "lshoulder_plate_d_03.m2", + value = "lshoulder_plate_d_03.m2", + }, + { + fileId = "143248", + text = "lshoulder_plate_d_04.m2", + value = "lshoulder_plate_d_04.m2", + }, + { + fileId = "143249", + text = "lshoulder_plate_d_05.m2", + value = "lshoulder_plate_d_05.m2", + }, + { + fileId = "143250", + text = "lshoulder_plate_d_06.m2", + value = "lshoulder_plate_d_06.m2", + }, + { + fileId = "238427", + text = "lshoulder_plate_deathknight_b_01.m2", + value = "lshoulder_plate_deathknight_b_01.m2", + }, + { + fileId = "143251", + text = "lshoulder_plate_draeneiguard_a_01.m2", + value = "lshoulder_plate_draeneiguard_a_01.m2", + }, + { + fileId = "143252", + text = "lshoulder_plate_draeneiguard_b_01.m2", + value = "lshoulder_plate_draeneiguard_b_01.m2", + }, + { + fileId = "143253", + text = "lshoulder_plate_dungeonpaladin_a_01.m2", + value = "lshoulder_plate_dungeonpaladin_a_01.m2", + }, + { + fileId = "143254", + text = "lshoulder_plate_dungeonpaladin_b_01.m2", + value = "lshoulder_plate_dungeonpaladin_b_01.m2", + }, + { + fileId = "143255", + text = "lshoulder_plate_dungeonplate_c_01.m2", + value = "lshoulder_plate_dungeonplate_c_01.m2", + }, + { + fileId = "343647", + text = "lshoulder_plate_dungeonplate_c_02.m2", + value = "lshoulder_plate_dungeonplate_c_02.m2", + }, + { + fileId = "427206", + text = "lshoulder_plate_dungeonplate_c_03.m2", + value = "lshoulder_plate_dungeonplate_c_03.m2", + }, + { + fileId = "454333", + text = "lshoulder_plate_dungeonplate_c_04.m2", + value = "lshoulder_plate_dungeonplate_c_04.m2", + }, + { + fileId = "522800", + text = "lshoulder_plate_dungeonplate_c_05.m2", + value = "lshoulder_plate_dungeonplate_c_05.m2", + }, + { + fileId = "533810", + text = "lshoulder_plate_dungeonplate_c_06.m2", + value = "lshoulder_plate_dungeonplate_c_06.m2", + }, + { + fileId = "143256", + text = "lshoulder_plate_dungeonwarrior_a_01.m2", + value = "lshoulder_plate_dungeonwarrior_a_01.m2", + }, + { + fileId = "143257", + text = "lshoulder_plate_dungeonwarrior_b_01.m2", + value = "lshoulder_plate_dungeonwarrior_b_01.m2", + }, + { + fileId = "520810", + text = "lshoulder_plate_firelands_d_01.m2", + value = "lshoulder_plate_firelands_d_01.m2", + }, + { + fileId = "522365", + text = "lshoulder_plate_firelandsrags_j_01.m2", + value = "lshoulder_plate_firelandsrags_j_01.m2", + }, + { + fileId = "143258", + text = "lshoulder_plate_haremmatron_d_01.m2", + value = "lshoulder_plate_haremmatron_d_01.m2", + }, + { + fileId = "143259", + text = "lshoulder_plate_horde_c_05.m2", + value = "lshoulder_plate_horde_c_05.m2", + }, + { + fileId = "143260", + text = "lshoulder_plate_horde_d_02.m2", + value = "lshoulder_plate_horde_d_02.m2", + }, + { + fileId = "143262", + text = "lshoulder_plate_hyjal_d_04.m2", + value = "lshoulder_plate_hyjal_d_04.m2", + }, + { + fileId = "143265", + text = "lshoulder_plate_hyjal_d_05.m2", + value = "lshoulder_plate_hyjal_d_05.m2", + }, + { + fileId = "143266", + text = "lshoulder_plate_northrend_b_01.m2", + value = "lshoulder_plate_northrend_b_01.m2", + }, + { + fileId = "143267", + text = "lshoulder_plate_northrend_b_02.m2", + value = "lshoulder_plate_northrend_b_02.m2", + }, + { + fileId = "143268", + text = "lshoulder_plate_northrend_b_03.m2", + value = "lshoulder_plate_northrend_b_03.m2", + }, + { + fileId = "143269", + text = "lshoulder_plate_northrend_c_01.m2", + value = "lshoulder_plate_northrend_c_01.m2", + }, + { + fileId = "143270", + text = "lshoulder_plate_northrend_d_01.m2", + value = "lshoulder_plate_northrend_d_01.m2", + }, + { + fileId = "143271", + text = "lshoulder_plate_pvpalliance_a_01.m2", + value = "lshoulder_plate_pvpalliance_a_01.m2", + }, + { + fileId = "238428", + text = "lshoulder_plate_pvpdeathknight_b_01.m2", + value = "lshoulder_plate_pvpdeathknight_b_01.m2", + }, + { + fileId = "254904", + text = "lshoulder_plate_pvpdeathknight_b_02.m2", + value = "lshoulder_plate_pvpdeathknight_b_02.m2", + }, + { + fileId = "304741", + text = "lshoulder_plate_pvpdeathknight_b_03.m2", + value = "lshoulder_plate_pvpdeathknight_b_03.m2", + }, + { + fileId = "343845", + text = "lshoulder_plate_pvpdeathknight_b_04.m2", + value = "lshoulder_plate_pvpdeathknight_b_04.m2", + }, + { + fileId = "366944", + text = "lshoulder_plate_pvpdeathknight_c_01.m2", + value = "lshoulder_plate_pvpdeathknight_c_01.m2", + }, + { + fileId = "469279", + text = "lshoulder_plate_pvpdeathknight_c_02.m2", + value = "lshoulder_plate_pvpdeathknight_c_02.m2", + }, + { + fileId = "532194", + text = "lshoulder_plate_pvpdeathknight_d_01.m2", + value = "lshoulder_plate_pvpdeathknight_d_01.m2", + }, + { + fileId = "143272", + text = "lshoulder_plate_pvphorde_a_01.m2", + value = "lshoulder_plate_pvphorde_a_01.m2", + }, + { + fileId = "238429", + text = "lshoulder_plate_pvppaladin_b_01.m2", + value = "lshoulder_plate_pvppaladin_b_01.m2", + }, + { + fileId = "254759", + text = "lshoulder_plate_pvppaladin_b_02.m2", + value = "lshoulder_plate_pvppaladin_b_02.m2", + }, + { + fileId = "304824", + text = "lshoulder_plate_pvppaladin_b_03.m2", + value = "lshoulder_plate_pvppaladin_b_03.m2", + }, + { + fileId = "346078", + text = "lshoulder_plate_pvppaladin_b_04.m2", + value = "lshoulder_plate_pvppaladin_b_04.m2", + }, + { + fileId = "463108", + text = "lshoulder_plate_pvppaladin_c_01.m2", + value = "lshoulder_plate_pvppaladin_c_01.m2", + }, + { + fileId = "468897", + text = "lshoulder_plate_pvppaladin_c_02.m2", + value = "lshoulder_plate_pvppaladin_c_02.m2", + }, + { + fileId = "538061", + text = "lshoulder_plate_pvppaladin_d_01.m2", + value = "lshoulder_plate_pvppaladin_d_01.m2", + }, + { + fileId = "238430", + text = "lshoulder_plate_pvpwarrior_b_01.m2", + value = "lshoulder_plate_pvpwarrior_b_01.m2", + }, + { + fileId = "254358", + text = "lshoulder_plate_pvpwarrior_b_02.m2", + value = "lshoulder_plate_pvpwarrior_b_02.m2", + }, + { + fileId = "304450", + text = "lshoulder_plate_pvpwarrior_b_03.m2", + value = "lshoulder_plate_pvpwarrior_b_03.m2", + }, + { + fileId = "345729", + text = "lshoulder_plate_pvpwarrior_b_04.m2", + value = "lshoulder_plate_pvpwarrior_b_04.m2", + }, + { + fileId = "436671", + text = "lshoulder_plate_pvpwarrior_c_01.m2", + value = "lshoulder_plate_pvpwarrior_c_01.m2", + }, + { + fileId = "238431", + text = "lshoulder_plate_pvpwarrior_c_02.m2", + value = "lshoulder_plate_pvpwarrior_c_02.m2", + }, + { + fileId = "529935", + text = "lshoulder_plate_pvpwarrior_d_01.m2", + value = "lshoulder_plate_pvpwarrior_d_01.m2", + }, + { + fileId = "238432", + text = "lshoulder_plate_raiddeathknight_c_02.m2", + value = "lshoulder_plate_raiddeathknight_c_02.m2", + }, + { + fileId = "143273", + text = "lshoulder_plate_raiddeathknight_g_01.m2", + value = "lshoulder_plate_raiddeathknight_g_01.m2", + }, + { + fileId = "337700", + text = "lshoulder_plate_raiddeathknight_h_01.m2", + value = "lshoulder_plate_raiddeathknight_h_01.m2", + }, + { + fileId = "465924", + text = "lshoulder_plate_raiddeathknight_i_01.m2", + value = "lshoulder_plate_raiddeathknight_i_01.m2", + }, + { + fileId = "522917", + text = "lshoulder_plate_raiddeathknight_j_01.m2", + value = "lshoulder_plate_raiddeathknight_j_01.m2", + }, + { + fileId = "575876", + text = "lshoulder_plate_raiddeathknight_k_01.m2", + value = "lshoulder_plate_raiddeathknight_k_01.m2", + }, + { + fileId = "143274", + text = "lshoulder_plate_raidpaladin_a_01.m2", + value = "lshoulder_plate_raidpaladin_a_01.m2", + }, + { + fileId = "143275", + text = "lshoulder_plate_raidpaladin_b_01.m2", + value = "lshoulder_plate_raidpaladin_b_01.m2", + }, + { + fileId = "143276", + text = "lshoulder_plate_raidpaladin_c_01.m2", + value = "lshoulder_plate_raidpaladin_c_01.m2", + }, + { + fileId = "143277", + text = "lshoulder_plate_raidpaladin_d_01.m2", + value = "lshoulder_plate_raidpaladin_d_01.m2", + }, + { + fileId = "143278", + text = "lshoulder_plate_raidpaladin_e_01.m2", + value = "lshoulder_plate_raidpaladin_e_01.m2", + }, + { + fileId = "143279", + text = "lshoulder_plate_raidpaladin_f_01.m2", + value = "lshoulder_plate_raidpaladin_f_01.m2", + }, + { + fileId = "238433", + text = "lshoulder_plate_raidpaladin_g_01.m2", + value = "lshoulder_plate_raidpaladin_g_01.m2", + }, + { + fileId = "341246", + text = "lshoulder_plate_raidpaladin_h_01.m2", + value = "lshoulder_plate_raidpaladin_h_01.m2", + }, + { + fileId = "466357", + text = "lshoulder_plate_raidpaladin_i_01.m2", + value = "lshoulder_plate_raidpaladin_i_01.m2", + }, + { + fileId = "514186", + text = "lshoulder_plate_raidpaladin_j_01.m2", + value = "lshoulder_plate_raidpaladin_j_01.m2", + }, + { + fileId = "535533", + text = "lshoulder_plate_raidpaladin_k_01.m2", + value = "lshoulder_plate_raidpaladin_k_01.m2", + }, + { + fileId = "143284", + text = "lshoulder_plate_raidwarrior_a_01.m2", + value = "lshoulder_plate_raidwarrior_a_01.m2", + }, + { + fileId = "143285", + text = "lshoulder_plate_raidwarrior_b_01.m2", + value = "lshoulder_plate_raidwarrior_b_01.m2", + }, + { + fileId = "143286", + text = "lshoulder_plate_raidwarrior_c_01.m2", + value = "lshoulder_plate_raidwarrior_c_01.m2", + }, + { + fileId = "456298", + text = "lshoulder_plate_raidwarrior_c_02.m2", + value = "lshoulder_plate_raidwarrior_c_02.m2", + }, + { + fileId = "143287", + text = "lshoulder_plate_raidwarrior_d_01.m2", + value = "lshoulder_plate_raidwarrior_d_01.m2", + }, + { + fileId = "143288", + text = "lshoulder_plate_raidwarrior_e_01.m2", + value = "lshoulder_plate_raidwarrior_e_01.m2", + }, + { + fileId = "143289", + text = "lshoulder_plate_raidwarrior_f_01.m2", + value = "lshoulder_plate_raidwarrior_f_01.m2", + }, + { + fileId = "251562", + text = "lshoulder_plate_raidwarrior_g_01.m2", + value = "lshoulder_plate_raidwarrior_g_01.m2", + }, + { + fileId = "331370", + text = "lshoulder_plate_raidwarrior_h_01.m2", + value = "lshoulder_plate_raidwarrior_h_01.m2", + }, + { + fileId = "463934", + text = "lshoulder_plate_raidwarrior_i_01.m2", + value = "lshoulder_plate_raidwarrior_i_01.m2", + }, + { + fileId = "520812", + text = "lshoulder_plate_raidwarrior_j_01.m2", + value = "lshoulder_plate_raidwarrior_j_01.m2", + }, + { + fileId = "533968", + text = "lshoulder_plate_raidwarrior_k_01.m2", + value = "lshoulder_plate_raidwarrior_k_01.m2", + }, + { + fileId = "143290", + text = "lshoulder_plate_sunwell_c_01.m2", + value = "lshoulder_plate_sunwell_c_01.m2", + }, + { + fileId = "143291", + text = "lshoulder_plate_sunwell_d_01.m2", + value = "lshoulder_plate_sunwell_d_01.m2", + }, + { + fileId = "391383", + text = "lshoulder_plate_twilighthammer_c_01.m2", + value = "lshoulder_plate_twilighthammer_c_01.m2", + }, + { + fileId = "143292", + text = "lshoulder_plate_zulaman_d_01.m2", + value = "lshoulder_plate_zulaman_d_01.m2", + }, + { + fileId = "143293", + text = "lshoulder_plate_zulaman_d_03.m2", + value = "lshoulder_plate_zulaman_d_03.m2", + }, + { + fileId = "306510", + text = "lshoulder_pvppriest_b_03.m2", + value = "lshoulder_pvppriest_b_03.m2", + }, + { + fileId = "143294", + text = "lshoulder_raiddruid_b_01.m2", + value = "lshoulder_raiddruid_b_01.m2", + }, + { + fileId = "143295", + text = "lshoulder_robe_a_01.m2", + value = "lshoulder_robe_a_01.m2", + }, + { + fileId = "143296", + text = "lshoulder_robe_a_02.m2", + value = "lshoulder_robe_a_02.m2", + }, + { + fileId = "143297", + text = "lshoulder_robe_a_03.m2", + value = "lshoulder_robe_a_03.m2", + }, + { + fileId = "143298", + text = "lshoulder_robe_ahnqiraj_a_01.m2", + value = "lshoulder_robe_ahnqiraj_a_01.m2", + }, + { + fileId = "314971", + text = "lshoulder_robe_argentalliance_d_01.m2", + value = "lshoulder_robe_argentalliance_d_01.m2", + }, + { + fileId = "317628", + text = "lshoulder_robe_argenthorde_d_01.m2", + value = "lshoulder_robe_argenthorde_d_01.m2", + }, + { + fileId = "143299", + text = "lshoulder_robe_b_01.m2", + value = "lshoulder_robe_b_01.m2", + }, + { + fileId = "143300", + text = "lshoulder_robe_b_02.m2", + value = "lshoulder_robe_b_02.m2", + }, + { + fileId = "143301", + text = "lshoulder_robe_b_03.m2", + value = "lshoulder_robe_b_03.m2", + }, + { + fileId = "143302", + text = "lshoulder_robe_b_04.m2", + value = "lshoulder_robe_b_04.m2", + }, + { + fileId = "143303", + text = "lshoulder_robe_c_01.m2", + value = "lshoulder_robe_c_01.m2", + }, + { + fileId = "143304", + text = "lshoulder_robe_c_02.m2", + value = "lshoulder_robe_c_02.m2", + }, + { + fileId = "143305", + text = "lshoulder_robe_c_03.m2", + value = "lshoulder_robe_c_03.m2", + }, + { + fileId = "356270", + text = "lshoulder_robe_common_b_01.m2", + value = "lshoulder_robe_common_b_01.m2", + }, + { + fileId = "362066", + text = "lshoulder_robe_common_b_02.m2", + value = "lshoulder_robe_common_b_02.m2", + }, + { + fileId = "361613", + text = "lshoulder_robe_common_b_03.m2", + value = "lshoulder_robe_common_b_03.m2", + }, + { + fileId = "427957", + text = "lshoulder_robe_common_c_01.m2", + value = "lshoulder_robe_common_c_01.m2", + }, + { + fileId = "143306", + text = "lshoulder_robe_d_01.m2", + value = "lshoulder_robe_d_01.m2", + }, + { + fileId = "143307", + text = "lshoulder_robe_d_04.m2", + value = "lshoulder_robe_d_04.m2", + }, + { + fileId = "143308", + text = "lshoulder_robe_dungeonmage_a_01.m2", + value = "lshoulder_robe_dungeonmage_a_01.m2", + }, + { + fileId = "143309", + text = "lshoulder_robe_dungeonmage_b_01.m2", + value = "lshoulder_robe_dungeonmage_b_01.m2", + }, + { + fileId = "143310", + text = "lshoulder_robe_dungeonpriest_a_01.m2", + value = "lshoulder_robe_dungeonpriest_a_01.m2", + }, + { + fileId = "143311", + text = "lshoulder_robe_dungeonpriest_b_01.m2", + value = "lshoulder_robe_dungeonpriest_b_01.m2", + }, + { + fileId = "238434", + text = "lshoulder_robe_dungeonrobe_c_01.m2", + value = "lshoulder_robe_dungeonrobe_c_01.m2", + }, + { + fileId = "341481", + text = "lshoulder_robe_dungeonrobe_c_02.m2", + value = "lshoulder_robe_dungeonrobe_c_02.m2", + }, + { + fileId = "422660", + text = "lshoulder_robe_dungeonrobe_c_03.m2", + value = "lshoulder_robe_dungeonrobe_c_03.m2", + }, + { + fileId = "412547", + text = "lshoulder_robe_dungeonrobe_c_04.m2", + value = "lshoulder_robe_dungeonrobe_c_04.m2", + }, + { + fileId = "532027", + text = "lshoulder_robe_dungeonrobe_c_05.m2", + value = "lshoulder_robe_dungeonrobe_c_05.m2", + }, + { + fileId = "143312", + text = "lshoulder_robe_dungeonwarlock_a_01.m2", + value = "lshoulder_robe_dungeonwarlock_a_01.m2", + }, + { + fileId = "143313", + text = "lshoulder_robe_dungeonwarlock_b_01.m2", + value = "lshoulder_robe_dungeonwarlock_b_01.m2", + }, + { + fileId = "143314", + text = "lshoulder_robe_holiday_summerfest_a_01.m2", + value = "lshoulder_robe_holiday_summerfest_a_01.m2", + }, + { + fileId = "143315", + text = "lshoulder_robe_horde_a_03.m2", + value = "lshoulder_robe_horde_a_03.m2", + }, + { + fileId = "143316", + text = "lshoulder_robe_horde_d_01.m2", + value = "lshoulder_robe_horde_d_01.m2", + }, + { + fileId = "143317", + text = "lshoulder_robe_hyjal_d_04.m2", + value = "lshoulder_robe_hyjal_d_04.m2", + }, + { + fileId = "143318", + text = "lshoulder_robe_northrend_b_01.m2", + value = "lshoulder_robe_northrend_b_01.m2", + }, + { + fileId = "238435", + text = "lshoulder_robe_northrend_b_02.m2", + value = "lshoulder_robe_northrend_b_02.m2", + }, + { + fileId = "143319", + text = "lshoulder_robe_northrend_b_03.m2", + value = "lshoulder_robe_northrend_b_03.m2", + }, + { + fileId = "143320", + text = "lshoulder_robe_northrend_d_01.m2", + value = "lshoulder_robe_northrend_d_01.m2", + }, + { + fileId = "238436", + text = "lshoulder_robe_plague_a_01.m2", + value = "lshoulder_robe_plague_a_01.m2", + }, + { + fileId = "143321", + text = "lshoulder_robe_pvpalliance_a_01.m2", + value = "lshoulder_robe_pvpalliance_a_01.m2", + }, + { + fileId = "143322", + text = "lshoulder_robe_pvpalliance_c_01.m2", + value = "lshoulder_robe_pvpalliance_c_01.m2", + }, + { + fileId = "143323", + text = "lshoulder_robe_pvphorde_a_01.m2", + value = "lshoulder_robe_pvphorde_a_01.m2", + }, + { + fileId = "143324", + text = "lshoulder_robe_pvphorde_c_01.m2", + value = "lshoulder_robe_pvphorde_c_01.m2", + }, + { + fileId = "532290", + text = "lshoulder_robe_pvpmage_d_01.m2", + value = "lshoulder_robe_pvpmage_d_01.m2", + }, + { + fileId = "531887", + text = "lshoulder_robe_pvppriest_d_01.m2", + value = "lshoulder_robe_pvppriest_d_01.m2", + }, + { + fileId = "238437", + text = "lshoulder_robe_pvpwarlock_b_01.m2", + value = "lshoulder_robe_pvpwarlock_b_01.m2", + }, + { + fileId = "254166", + text = "lshoulder_robe_pvpwarlock_b_02.m2", + value = "lshoulder_robe_pvpwarlock_b_02.m2", + }, + { + fileId = "305929", + text = "lshoulder_robe_pvpwarlock_b_03.m2", + value = "lshoulder_robe_pvpwarlock_b_03.m2", + }, + { + fileId = "350611", + text = "lshoulder_robe_pvpwarlock_b_04.m2", + value = "lshoulder_robe_pvpwarlock_b_04.m2", + }, + { + fileId = "530810", + text = "lshoulder_robe_pvpwarlock_d_01.m2", + value = "lshoulder_robe_pvpwarlock_d_01.m2", + }, + { + fileId = "143325", + text = "lshoulder_robe_raid_a_01.m2", + value = "lshoulder_robe_raid_a_01.m2", + }, + { + fileId = "143326", + text = "lshoulder_robe_raidmage_a_01.m2", + value = "lshoulder_robe_raidmage_a_01.m2", + }, + { + fileId = "143327", + text = "lshoulder_robe_raidmage_b_01.m2", + value = "lshoulder_robe_raidmage_b_01.m2", + }, + { + fileId = "143328", + text = "lshoulder_robe_raidmage_c_01.m2", + value = "lshoulder_robe_raidmage_c_01.m2", + }, + { + fileId = "238438", + text = "lshoulder_robe_raidmage_c_02.m2", + value = "lshoulder_robe_raidmage_c_02.m2", + }, + { + fileId = "143329", + text = "lshoulder_robe_raidmage_d_01.m2", + value = "lshoulder_robe_raidmage_d_01.m2", + }, + { + fileId = "143330", + text = "lshoulder_robe_raidmage_e_01.m2", + value = "lshoulder_robe_raidmage_e_01.m2", + }, + { + fileId = "238439", + text = "lshoulder_robe_raidmage_e_02.m2", + value = "lshoulder_robe_raidmage_e_02.m2", + }, + { + fileId = "143331", + text = "lshoulder_robe_raidmage_f_01.m2", + value = "lshoulder_robe_raidmage_f_01.m2", + }, + { + fileId = "143332", + text = "lshoulder_robe_raidmage_g_01.m2", + value = "lshoulder_robe_raidmage_g_01.m2", + }, + { + fileId = "340071", + text = "lshoulder_robe_raidmage_h_01.m2", + value = "lshoulder_robe_raidmage_h_01.m2", + }, + { + fileId = "464717", + text = "lshoulder_robe_raidmage_i_01.m2", + value = "lshoulder_robe_raidmage_i_01.m2", + }, + { + fileId = "521273", + text = "lshoulder_robe_raidmage_j_01.m2", + value = "lshoulder_robe_raidmage_j_01.m2", + }, + { + fileId = "533636", + text = "lshoulder_robe_raidmage_k_01.m2", + value = "lshoulder_robe_raidmage_k_01.m2", + }, + { + fileId = "143333", + text = "lshoulder_robe_raidpriest_a_01.m2", + value = "lshoulder_robe_raidpriest_a_01.m2", + }, + { + fileId = "143334", + text = "lshoulder_robe_raidpriest_b_01.m2", + value = "lshoulder_robe_raidpriest_b_01.m2", + }, + { + fileId = "143335", + text = "lshoulder_robe_raidpriest_c_01.m2", + value = "lshoulder_robe_raidpriest_c_01.m2", + }, + { + fileId = "143336", + text = "lshoulder_robe_raidpriest_d_01.m2", + value = "lshoulder_robe_raidpriest_d_01.m2", + }, + { + fileId = "143337", + text = "lshoulder_robe_raidpriest_e_01.m2", + value = "lshoulder_robe_raidpriest_e_01.m2", + }, + { + fileId = "143338", + text = "lshoulder_robe_raidpriest_f_01.m2", + value = "lshoulder_robe_raidpriest_f_01.m2", + }, + { + fileId = "143339", + text = "lshoulder_robe_raidpriest_g_01.m2", + value = "lshoulder_robe_raidpriest_g_01.m2", + }, + { + fileId = "341799", + text = "lshoulder_robe_raidpriest_h_01.m2", + value = "lshoulder_robe_raidpriest_h_01.m2", + }, + { + fileId = "516476", + text = "lshoulder_robe_raidpriest_j_01.m2", + value = "lshoulder_robe_raidpriest_j_01.m2", + }, + { + fileId = "538294", + text = "lshoulder_robe_raidpriest_k_01.m2", + value = "lshoulder_robe_raidpriest_k_01.m2", + }, + { + fileId = "143340", + text = "lshoulder_robe_raidshaman_c_01.m2", + value = "lshoulder_robe_raidshaman_c_01.m2", + }, + { + fileId = "143341", + text = "lshoulder_robe_raidwarlock_a_01.m2", + value = "lshoulder_robe_raidwarlock_a_01.m2", + }, + { + fileId = "143342", + text = "lshoulder_robe_raidwarlock_b_01.m2", + value = "lshoulder_robe_raidwarlock_b_01.m2", + }, + { + fileId = "143343", + text = "lshoulder_robe_raidwarlock_c_01.m2", + value = "lshoulder_robe_raidwarlock_c_01.m2", + }, + { + fileId = "238440", + text = "lshoulder_robe_raidwarlock_c_02.m2", + value = "lshoulder_robe_raidwarlock_c_02.m2", + }, + { + fileId = "143344", + text = "lshoulder_robe_raidwarlock_d_01.m2", + value = "lshoulder_robe_raidwarlock_d_01.m2", + }, + { + fileId = "143345", + text = "lshoulder_robe_raidwarlock_e_01.m2", + value = "lshoulder_robe_raidwarlock_e_01.m2", + }, + { + fileId = "143346", + text = "lshoulder_robe_raidwarlock_f_01.m2", + value = "lshoulder_robe_raidwarlock_f_01.m2", + }, + { + fileId = "143347", + text = "lshoulder_robe_raidwarlock_g_01.m2", + value = "lshoulder_robe_raidwarlock_g_01.m2", + }, + { + fileId = "339851", + text = "lshoulder_robe_raidwarlock_h_01.m2", + value = "lshoulder_robe_raidwarlock_h_01.m2", + }, + { + fileId = "525999", + text = "lshoulder_robe_raidwarlock_j_01.m2", + value = "lshoulder_robe_raidwarlock_j_01.m2", + }, + { + fileId = "532679", + text = "lshoulder_robe_raidwarlock_k_01.m2", + value = "lshoulder_robe_raidwarlock_k_01.m2", + }, + { + fileId = "143348", + text = "lshoulder_robe_sunwell_d_01.m2", + value = "lshoulder_robe_sunwell_d_01.m2", + }, + { + fileId = "143349", + text = "lshoulder_robe_zulaman_d_01.m2", + value = "lshoulder_robe_zulaman_d_01.m2", + }, + { + fileId = "143350", + text = "lshoulder_robe_zulaman_d_03.m2", + value = "lshoulder_robe_zulaman_d_03.m2", + }, + { + fileId = "424799", + text = "rshoulder_cloth_cataclysm_b_01.m2", + value = "rshoulder_cloth_cataclysm_b_01.m2", + }, + { + fileId = "433481", + text = "rshoulder_cloth_cataclysm_b_02.m2", + value = "rshoulder_cloth_cataclysm_b_02.m2", + }, + { + fileId = "238466", + text = "rshoulder_cloth_pvpmage_b_01.m2", + value = "rshoulder_cloth_pvpmage_b_01.m2", + }, + { + fileId = "255264", + text = "rshoulder_cloth_pvpmage_b_02.m2", + value = "rshoulder_cloth_pvpmage_b_02.m2", + }, + { + fileId = "305322", + text = "rshoulder_cloth_pvpmage_b_03.m2", + value = "rshoulder_cloth_pvpmage_b_03.m2", + }, + { + fileId = "343977", + text = "rshoulder_cloth_pvpmage_b_04.m2", + value = "rshoulder_cloth_pvpmage_b_04.m2", + }, + { + fileId = "426166", + text = "rshoulder_cloth_pvpmage_c_01.m2", + value = "rshoulder_cloth_pvpmage_c_01.m2", + }, + { + fileId = "469087", + text = "rshoulder_cloth_pvpmage_c_02.m2", + value = "rshoulder_cloth_pvpmage_c_02.m2", + }, + { + fileId = "238467", + text = "rshoulder_cloth_pvppriest_b_01.m2", + value = "rshoulder_cloth_pvppriest_b_01.m2", + }, + { + fileId = "293957", + text = "rshoulder_cloth_pvppriest_b_02.m2", + value = "rshoulder_cloth_pvppriest_b_02.m2", + }, + { + fileId = "347766", + text = "rshoulder_cloth_pvppriest_b_04.m2", + value = "rshoulder_cloth_pvppriest_b_04.m2", + }, + { + fileId = "413730", + text = "rshoulder_cloth_pvppriest_c_01.m2", + value = "rshoulder_cloth_pvppriest_c_01.m2", + }, + { + fileId = "469225", + text = "rshoulder_cloth_pvppriest_c_02.m2", + value = "rshoulder_cloth_pvppriest_c_02.m2", + }, + { + fileId = "367020", + text = "rshoulder_cloth_pvpwarlock_c_01.m2", + value = "rshoulder_cloth_pvpwarlock_c_01.m2", + }, + { + fileId = "469273", + text = "rshoulder_cloth_pvpwarlock_c_02.m2", + value = "rshoulder_cloth_pvpwarlock_c_02.m2", + }, + { + fileId = "465143", + text = "rshoulder_cloth_raidpriest_i_01.m2", + value = "rshoulder_cloth_raidpriest_i_01.m2", + }, + { + fileId = "462573", + text = "rshoulder_cloth_raidwarlock_i_01.m2", + value = "rshoulder_cloth_raidwarlock_i_01.m2", + }, + { + fileId = "143436", + text = "rshoulder_leather_a_01.m2", + value = "rshoulder_leather_a_01.m2", + }, + { + fileId = "143437", + text = "rshoulder_leather_a_02.m2", + value = "rshoulder_leather_a_02.m2", + }, + { + fileId = "143438", + text = "rshoulder_leather_a_03.m2", + value = "rshoulder_leather_a_03.m2", + }, + { + fileId = "143439", + text = "rshoulder_leather_a_03defias.m2", + value = "rshoulder_leather_a_03defias.m2", + }, + { + fileId = "143440", + text = "rshoulder_leather_a_04.m2", + value = "rshoulder_leather_a_04.m2", + }, + { + fileId = "143441", + text = "rshoulder_leather_a_05.m2", + value = "rshoulder_leather_a_05.m2", + }, + { + fileId = "143442", + text = "rshoulder_leather_ahnqiraj_a_01.m2", + value = "rshoulder_leather_ahnqiraj_a_01.m2", + }, + { + fileId = "316667", + text = "rshoulder_leather_argentalliance_d_01.m2", + value = "rshoulder_leather_argentalliance_d_01.m2", + }, + { + fileId = "312785", + text = "rshoulder_leather_argenthorde_d_01.m2", + value = "rshoulder_leather_argenthorde_d_01.m2", + }, + { + fileId = "143443", + text = "rshoulder_leather_b_01.m2", + value = "rshoulder_leather_b_01.m2", + }, + { + fileId = "143444", + text = "rshoulder_leather_b_02.m2", + value = "rshoulder_leather_b_02.m2", + }, + { + fileId = "143445", + text = "rshoulder_leather_b_03.m2", + value = "rshoulder_leather_b_03.m2", + }, + { + fileId = "143446", + text = "rshoulder_leather_b_04.m2", + value = "rshoulder_leather_b_04.m2", + }, + { + fileId = "143447", + text = "rshoulder_leather_blood_b_01.m2", + value = "rshoulder_leather_blood_b_01.m2", + }, + { + fileId = "143448", + text = "rshoulder_leather_c_01.m2", + value = "rshoulder_leather_c_01.m2", + }, + { + fileId = "143449", + text = "rshoulder_leather_c_02.m2", + value = "rshoulder_leather_c_02.m2", + }, + { + fileId = "143450", + text = "rshoulder_leather_c_03.m2", + value = "rshoulder_leather_c_03.m2", + }, + { + fileId = "426535", + text = "rshoulder_leather_cataclysm_b_01.m2", + value = "rshoulder_leather_cataclysm_b_01.m2", + }, + { + fileId = "461644", + text = "rshoulder_leather_cataclysm_b_02.m2", + value = "rshoulder_leather_cataclysm_b_02.m2", + }, + { + fileId = "360659", + text = "rshoulder_leather_common_b_02.m2", + value = "rshoulder_leather_common_b_02.m2", + }, + { + fileId = "361401", + text = "rshoulder_leather_common_b_03.m2", + value = "rshoulder_leather_common_b_03.m2", + }, + { + fileId = "364388", + text = "rshoulder_leather_common_c_01.m2", + value = "rshoulder_leather_common_c_01.m2", + }, + { + fileId = "143451", + text = "rshoulder_leather_d_01.m2", + value = "rshoulder_leather_d_01.m2", + }, + { + fileId = "143452", + text = "rshoulder_leather_d_02.m2", + value = "rshoulder_leather_d_02.m2", + }, + { + fileId = "143453", + text = "rshoulder_leather_d_03.m2", + value = "rshoulder_leather_d_03.m2", + }, + { + fileId = "143454", + text = "rshoulder_leather_draenei_b_01.m2", + value = "rshoulder_leather_draenei_b_01.m2", + }, + { + fileId = "143455", + text = "rshoulder_leather_draenei_b_02.m2", + value = "rshoulder_leather_draenei_b_02.m2", + }, + { + fileId = "143456", + text = "rshoulder_leather_dungeondruid_a_01.m2", + value = "rshoulder_leather_dungeondruid_a_01.m2", + }, + { + fileId = "143457", + text = "rshoulder_leather_dungeondruid_b_01.m2", + value = "rshoulder_leather_dungeondruid_b_01.m2", + }, + { + fileId = "238468", + text = "rshoulder_leather_dungeonleather_c_01.m2", + value = "rshoulder_leather_dungeonleather_c_01.m2", + }, + { + fileId = "340376", + text = "rshoulder_leather_dungeonleather_c_02.m2", + value = "rshoulder_leather_dungeonleather_c_02.m2", + }, + { + fileId = "436848", + text = "rshoulder_leather_dungeonleather_c_03.m2", + value = "rshoulder_leather_dungeonleather_c_03.m2", + }, + { + fileId = "446970", + text = "rshoulder_leather_dungeonleather_c_04.m2", + value = "rshoulder_leather_dungeonleather_c_04.m2", + }, + { + fileId = "537863", + text = "rshoulder_leather_dungeonleather_c_05.m2", + value = "rshoulder_leather_dungeonleather_c_05.m2", + }, + { + fileId = "143458", + text = "rshoulder_leather_dungeonrogue_b_01.m2", + value = "rshoulder_leather_dungeonrogue_b_01.m2", + }, + { + fileId = "514394", + text = "rshoulder_leather_firelandsdruid_d_01.m2", + value = "rshoulder_leather_firelandsdruid_d_01.m2", + }, + { + fileId = "143459", + text = "rshoulder_leather_horde_a_05.m2", + value = "rshoulder_leather_horde_a_05.m2", + }, + { + fileId = "143460", + text = "rshoulder_leather_horde_b_03.m2", + value = "rshoulder_leather_horde_b_03.m2", + }, + { + fileId = "143461", + text = "rshoulder_leather_northrend_b_01.m2", + value = "rshoulder_leather_northrend_b_01.m2", + }, + { + fileId = "143462", + text = "rshoulder_leather_northrend_b_02.m2", + value = "rshoulder_leather_northrend_b_02.m2", + }, + { + fileId = "143463", + text = "rshoulder_leather_northrend_b_03.m2", + value = "rshoulder_leather_northrend_b_03.m2", + }, + { + fileId = "143464", + text = "rshoulder_leather_northrend_c_01.m2", + value = "rshoulder_leather_northrend_c_01.m2", + }, + { + fileId = "143465", + text = "rshoulder_leather_northrend_c_02.m2", + value = "rshoulder_leather_northrend_c_02.m2", + }, + { + fileId = "143466", + text = "rshoulder_leather_northrend_d_01.m2", + value = "rshoulder_leather_northrend_d_01.m2", + }, + { + fileId = "143467", + text = "rshoulder_leather_pvpalliance_a_01.m2", + value = "rshoulder_leather_pvpalliance_a_01.m2", + }, + { + fileId = "238469", + text = "rshoulder_leather_pvpdruid_b_01.m2", + value = "rshoulder_leather_pvpdruid_b_01.m2", + }, + { + fileId = "294396", + text = "rshoulder_leather_pvpdruid_b_02.m2", + value = "rshoulder_leather_pvpdruid_b_02.m2", + }, + { + fileId = "304544", + text = "rshoulder_leather_pvpdruid_b_03.m2", + value = "rshoulder_leather_pvpdruid_b_03.m2", + }, + { + fileId = "348779", + text = "rshoulder_leather_pvpdruid_b_04.m2", + value = "rshoulder_leather_pvpdruid_b_04.m2", + }, + { + fileId = "459078", + text = "rshoulder_leather_pvpdruid_c_01.m2", + value = "rshoulder_leather_pvpdruid_c_01.m2", + }, + { + fileId = "469663", + text = "rshoulder_leather_pvpdruid_c_02.m2", + value = "rshoulder_leather_pvpdruid_c_02.m2", + }, + { + fileId = "536709", + text = "rshoulder_leather_pvpdruid_d_01.m2", + value = "rshoulder_leather_pvpdruid_d_01.m2", + }, + { + fileId = "143468", + text = "rshoulder_leather_pvphorde_a_01.m2", + value = "rshoulder_leather_pvphorde_a_01.m2", + }, + { + fileId = "143469", + text = "rshoulder_leather_pvphorde_c_01.m2", + value = "rshoulder_leather_pvphorde_c_01.m2", + }, + { + fileId = "238470", + text = "rshoulder_leather_pvprogue_b_01.m2", + value = "rshoulder_leather_pvprogue_b_01.m2", + }, + { + fileId = "254607", + text = "rshoulder_leather_pvprogue_b_02.m2", + value = "rshoulder_leather_pvprogue_b_02.m2", + }, + { + fileId = "304493", + text = "rshoulder_leather_pvprogue_b_03.m2", + value = "rshoulder_leather_pvprogue_b_03.m2", + }, + { + fileId = "346080", + text = "rshoulder_leather_pvprogue_b_04.m2", + value = "rshoulder_leather_pvprogue_b_04.m2", + }, + { + fileId = "465019", + text = "rshoulder_leather_pvprogue_c_01.m2", + value = "rshoulder_leather_pvprogue_c_01.m2", + }, + { + fileId = "469516", + text = "rshoulder_leather_pvprogue_c_02.m2", + value = "rshoulder_leather_pvprogue_c_02.m2", + }, + { + fileId = "535535", + text = "rshoulder_leather_pvprogue_d_01.m2", + value = "rshoulder_leather_pvprogue_d_01.m2", + }, + { + fileId = "143470", + text = "rshoulder_leather_raiddruid_a_01.m2", + value = "rshoulder_leather_raiddruid_a_01.m2", + }, + { + fileId = "143471", + text = "rshoulder_leather_raiddruid_b_01.m2", + value = "rshoulder_leather_raiddruid_b_01.m2", + }, + { + fileId = "143472", + text = "rshoulder_leather_raiddruid_c_01.m2", + value = "rshoulder_leather_raiddruid_c_01.m2", + }, + { + fileId = "238471", + text = "rshoulder_leather_raiddruid_c_02.m2", + value = "rshoulder_leather_raiddruid_c_02.m2", + }, + { + fileId = "143473", + text = "rshoulder_leather_raiddruid_d_01.m2", + value = "rshoulder_leather_raiddruid_d_01.m2", + }, + { + fileId = "143474", + text = "rshoulder_leather_raiddruid_e_01.m2", + value = "rshoulder_leather_raiddruid_e_01.m2", + }, + { + fileId = "143475", + text = "rshoulder_leather_raiddruid_f_01.m2", + value = "rshoulder_leather_raiddruid_f_01.m2", + }, + { + fileId = "249250", + text = "rshoulder_leather_raiddruid_g_01.m2", + value = "rshoulder_leather_raiddruid_g_01.m2", + }, + { + fileId = "336854", + text = "rshoulder_leather_raiddruid_h_01.m2", + value = "rshoulder_leather_raiddruid_h_01.m2", + }, + { + fileId = "460951", + text = "rshoulder_leather_raiddruid_i_01.m2", + value = "rshoulder_leather_raiddruid_i_01.m2", + }, + { + fileId = "526011", + text = "rshoulder_leather_raiddruid_j_01.m2", + value = "rshoulder_leather_raiddruid_j_01.m2", + }, + { + fileId = "533366", + text = "rshoulder_leather_raiddruid_k_01.m2", + value = "rshoulder_leather_raiddruid_k_01.m2", + }, + { + fileId = "143476", + text = "rshoulder_leather_raidrogue_a_01.m2", + value = "rshoulder_leather_raidrogue_a_01.m2", + }, + { + fileId = "143477", + text = "rshoulder_leather_raidrogue_b_01.m2", + value = "rshoulder_leather_raidrogue_b_01.m2", + }, + { + fileId = "143478", + text = "rshoulder_leather_raidrogue_c_01.m2", + value = "rshoulder_leather_raidrogue_c_01.m2", + }, + { + fileId = "238472", + text = "rshoulder_leather_raidrogue_c_02.m2", + value = "rshoulder_leather_raidrogue_c_02.m2", + }, + { + fileId = "143479", + text = "rshoulder_leather_raidrogue_d_01.m2", + value = "rshoulder_leather_raidrogue_d_01.m2", + }, + { + fileId = "143480", + text = "rshoulder_leather_raidrogue_e_01.m2", + value = "rshoulder_leather_raidrogue_e_01.m2", + }, + { + fileId = "143481", + text = "rshoulder_leather_raidrogue_f_01.m2", + value = "rshoulder_leather_raidrogue_f_01.m2", + }, + { + fileId = "143482", + text = "rshoulder_leather_raidrogue_g_01.m2", + value = "rshoulder_leather_raidrogue_g_01.m2", + }, + { + fileId = "335617", + text = "rshoulder_leather_raidrogue_h_01.m2", + value = "rshoulder_leather_raidrogue_h_01.m2", + }, + { + fileId = "461645", + text = "rshoulder_leather_raidrogue_i_01.m2", + value = "rshoulder_leather_raidrogue_i_01.m2", + }, + { + fileId = "517119", + text = "rshoulder_leather_raidrogue_j_01.m2", + value = "rshoulder_leather_raidrogue_j_01.m2", + }, + { + fileId = "534378", + text = "rshoulder_leather_raidrogue_k_01.m2", + value = "rshoulder_leather_raidrogue_k_01.m2", + }, + { + fileId = "143483", + text = "rshoulder_leather_sunwell_d_01.m2", + value = "rshoulder_leather_sunwell_d_01.m2", + }, + { + fileId = "143484", + text = "rshoulder_leather_zulaman_d_01.m2", + value = "rshoulder_leather_zulaman_d_01.m2", + }, + { + fileId = "143485", + text = "rshoulder_leather_zulaman_d_03.m2", + value = "rshoulder_leather_zulaman_d_03.m2", + }, + { + fileId = "143486", + text = "rshoulder_mail_a_01.m2", + value = "rshoulder_mail_a_01.m2", + }, + { + fileId = "143487", + text = "rshoulder_mail_a_02.m2", + value = "rshoulder_mail_a_02.m2", + }, + { + fileId = "143488", + text = "rshoulder_mail_a_03.m2", + value = "rshoulder_mail_a_03.m2", + }, + { + fileId = "143489", + text = "rshoulder_mail_ahnqiraj_a_01.m2", + value = "rshoulder_mail_ahnqiraj_a_01.m2", + }, + { + fileId = "317488", + text = "rshoulder_mail_argentalliance_d_01.m2", + value = "rshoulder_mail_argentalliance_d_01.m2", + }, + { + fileId = "315306", + text = "rshoulder_mail_argenthorde_d_01.m2", + value = "rshoulder_mail_argenthorde_d_01.m2", + }, + { + fileId = "143490", + text = "rshoulder_mail_b_01.m2", + value = "rshoulder_mail_b_01.m2", + }, + { + fileId = "143491", + text = "rshoulder_mail_b_02.m2", + value = "rshoulder_mail_b_02.m2", + }, + { + fileId = "143492", + text = "rshoulder_mail_b_03.m2", + value = "rshoulder_mail_b_03.m2", + }, + { + fileId = "143493", + text = "rshoulder_mail_b_05.m2", + value = "rshoulder_mail_b_05.m2", + }, + { + fileId = "143494", + text = "rshoulder_mail_blood_b_01.m2", + value = "rshoulder_mail_blood_b_01.m2", + }, + { + fileId = "143495", + text = "rshoulder_mail_c_01.m2", + value = "rshoulder_mail_c_01.m2", + }, + { + fileId = "143496", + text = "rshoulder_mail_c_02.m2", + value = "rshoulder_mail_c_02.m2", + }, + { + fileId = "143497", + text = "rshoulder_mail_c_03.m2", + value = "rshoulder_mail_c_03.m2", + }, + { + fileId = "143498", + text = "rshoulder_mail_c_04.m2", + value = "rshoulder_mail_c_04.m2", + }, + { + fileId = "422666", + text = "rshoulder_mail_cataclysm_b_01.m2", + value = "rshoulder_mail_cataclysm_b_01.m2", + }, + { + fileId = "428247", + text = "rshoulder_mail_cataclysm_b_02.m2", + value = "rshoulder_mail_cataclysm_b_02.m2", + }, + { + fileId = "356530", + text = "rshoulder_mail_common_b_01.m2", + value = "rshoulder_mail_common_b_01.m2", + }, + { + fileId = "359738", + text = "rshoulder_mail_common_b_02.m2", + value = "rshoulder_mail_common_b_02.m2", + }, + { + fileId = "364389", + text = "rshoulder_mail_common_b_03.m2", + value = "rshoulder_mail_common_b_03.m2", + }, + { + fileId = "366280", + text = "rshoulder_mail_common_c_01.m2", + value = "rshoulder_mail_common_c_01.m2", + }, + { + fileId = "143499", + text = "rshoulder_mail_d_01.m2", + value = "rshoulder_mail_d_01.m2", + }, + { + fileId = "143500", + text = "rshoulder_mail_d_02.m2", + value = "rshoulder_mail_d_02.m2", + }, + { + fileId = "143501", + text = "rshoulder_mail_draenei_b_01.m2", + value = "rshoulder_mail_draenei_b_01.m2", + }, + { + fileId = "143502", + text = "rshoulder_mail_draenei_b_02.m2", + value = "rshoulder_mail_draenei_b_02.m2", + }, + { + fileId = "143503", + text = "rshoulder_mail_dungeonhunter_a_01.m2", + value = "rshoulder_mail_dungeonhunter_a_01.m2", + }, + { + fileId = "143504", + text = "rshoulder_mail_dungeonhunter_b_02.m2", + value = "rshoulder_mail_dungeonhunter_b_02.m2", + }, + { + fileId = "238473", + text = "rshoulder_mail_dungeonmail_c_01.m2", + value = "rshoulder_mail_dungeonmail_c_01.m2", + }, + { + fileId = "342404", + text = "rshoulder_mail_dungeonmail_c_02.m2", + value = "rshoulder_mail_dungeonmail_c_02.m2", + }, + { + fileId = "431006", + text = "rshoulder_mail_dungeonmail_c_03.m2", + value = "rshoulder_mail_dungeonmail_c_03.m2", + }, + { + fileId = "458360", + text = "rshoulder_mail_dungeonmail_c_04.m2", + value = "rshoulder_mail_dungeonmail_c_04.m2", + }, + { + fileId = "537594", + text = "rshoulder_mail_dungeonmail_c_05.m2", + value = "rshoulder_mail_dungeonmail_c_05.m2", + }, + { + fileId = "143505", + text = "rshoulder_mail_dungeonshaman_a_01.m2", + value = "rshoulder_mail_dungeonshaman_a_01.m2", + }, + { + fileId = "143506", + text = "rshoulder_mail_dungeonshaman_b_01.m2", + value = "rshoulder_mail_dungeonshaman_b_01.m2", + }, + { + fileId = "143507", + text = "rshoulder_mail_northrend_b_01.m2", + value = "rshoulder_mail_northrend_b_01.m2", + }, + { + fileId = "143508", + text = "rshoulder_mail_northrend_b_02.m2", + value = "rshoulder_mail_northrend_b_02.m2", + }, + { + fileId = "143509", + text = "rshoulder_mail_northrend_b_03.m2", + value = "rshoulder_mail_northrend_b_03.m2", + }, + { + fileId = "143510", + text = "rshoulder_mail_northrend_b_04.m2", + value = "rshoulder_mail_northrend_b_04.m2", + }, + { + fileId = "143511", + text = "rshoulder_mail_northrend_d_01.m2", + value = "rshoulder_mail_northrend_d_01.m2", + }, + { + fileId = "143512", + text = "rshoulder_mail_pvpalliance_a_01.m2", + value = "rshoulder_mail_pvpalliance_a_01.m2", + }, + { + fileId = "143513", + text = "rshoulder_mail_pvpalliance_c_01.m2", + value = "rshoulder_mail_pvpalliance_c_01.m2", + }, + { + fileId = "143514", + text = "rshoulder_mail_pvphorde_a_01.m2", + value = "rshoulder_mail_pvphorde_a_01.m2", + }, + { + fileId = "143515", + text = "rshoulder_mail_pvphorde_c_01.m2", + value = "rshoulder_mail_pvphorde_c_01.m2", + }, + { + fileId = "238474", + text = "rshoulder_mail_pvphunter_b_01.m2", + value = "rshoulder_mail_pvphunter_b_01.m2", + }, + { + fileId = "254168", + text = "rshoulder_mail_pvphunter_b_02.m2", + value = "rshoulder_mail_pvphunter_b_02.m2", + }, + { + fileId = "307201", + text = "rshoulder_mail_pvphunter_b_03.m2", + value = "rshoulder_mail_pvphunter_b_03.m2", + }, + { + fileId = "344348", + text = "rshoulder_mail_pvphunter_b_04.m2", + value = "rshoulder_mail_pvphunter_b_04.m2", + }, + { + fileId = "463109", + text = "rshoulder_mail_pvphunter_c_01.m2", + value = "rshoulder_mail_pvphunter_c_01.m2", + }, + { + fileId = "469088", + text = "rshoulder_mail_pvphunter_c_02.m2", + value = "rshoulder_mail_pvphunter_c_02.m2", + }, + { + fileId = "531650", + text = "rshoulder_mail_pvphunter_d_01.m2", + value = "rshoulder_mail_pvphunter_d_01.m2", + }, + { + fileId = "238475", + text = "rshoulder_mail_pvpshaman_b_01.m2", + value = "rshoulder_mail_pvpshaman_b_01.m2", + }, + { + fileId = "298611", + text = "rshoulder_mail_pvpshaman_b_02.m2", + value = "rshoulder_mail_pvpshaman_b_02.m2", + }, + { + fileId = "313413", + text = "rshoulder_mail_pvpshaman_b_03.m2", + value = "rshoulder_mail_pvpshaman_b_03.m2", + }, + { + fileId = "349985", + text = "rshoulder_mail_pvpshaman_b_04.m2", + value = "rshoulder_mail_pvpshaman_b_04.m2", + }, + { + fileId = "464225", + text = "rshoulder_mail_pvpshaman_c_01.m2", + value = "rshoulder_mail_pvpshaman_c_01.m2", + }, + { + fileId = "468898", + text = "rshoulder_mail_pvpshaman_c_02.m2", + value = "rshoulder_mail_pvpshaman_c_02.m2", + }, + { + fileId = "532593", + text = "rshoulder_mail_pvpshaman_d_01.m2", + value = "rshoulder_mail_pvpshaman_d_01.m2", + }, + { + fileId = "143516", + text = "rshoulder_mail_raidhunter_a_01.m2", + value = "rshoulder_mail_raidhunter_a_01.m2", + }, + { + fileId = "143517", + text = "rshoulder_mail_raidhunter_b_01.m2", + value = "rshoulder_mail_raidhunter_b_01.m2", + }, + { + fileId = "143518", + text = "rshoulder_mail_raidhunter_c_01.m2", + value = "rshoulder_mail_raidhunter_c_01.m2", + }, + { + fileId = "238476", + text = "rshoulder_mail_raidhunter_c_02.m2", + value = "rshoulder_mail_raidhunter_c_02.m2", + }, + { + fileId = "143519", + text = "rshoulder_mail_raidhunter_d_01.m2", + value = "rshoulder_mail_raidhunter_d_01.m2", + }, + { + fileId = "143520", + text = "rshoulder_mail_raidhunter_e_01.m2", + value = "rshoulder_mail_raidhunter_e_01.m2", + }, + { + fileId = "143521", + text = "rshoulder_mail_raidhunter_f_01.m2", + value = "rshoulder_mail_raidhunter_f_01.m2", + }, + { + fileId = "143522", + text = "rshoulder_mail_raidhunter_g_01.m2", + value = "rshoulder_mail_raidhunter_g_01.m2", + }, + { + fileId = "337192", + text = "rshoulder_mail_raidhunter_h_01.m2", + value = "rshoulder_mail_raidhunter_h_01.m2", + }, + { + fileId = "466361", + text = "rshoulder_mail_raidhunter_i_01.m2", + value = "rshoulder_mail_raidhunter_i_01.m2", + }, + { + fileId = "519179", + text = "rshoulder_mail_raidhunter_j_01.m2", + value = "rshoulder_mail_raidhunter_j_01.m2", + }, + { + fileId = "535667", + text = "rshoulder_mail_raidhunter_k_01.m2", + value = "rshoulder_mail_raidhunter_k_01.m2", + }, + { + fileId = "143523", + text = "rshoulder_mail_raidshaman_a_01.m2", + value = "rshoulder_mail_raidshaman_a_01.m2", + }, + { + fileId = "143524", + text = "rshoulder_mail_raidshaman_b_01.m2", + value = "rshoulder_mail_raidshaman_b_01.m2", + }, + { + fileId = "238477", + text = "rshoulder_mail_raidshaman_c_02.m2", + value = "rshoulder_mail_raidshaman_c_02.m2", + }, + { + fileId = "143525", + text = "rshoulder_mail_raidshaman_d_01.m2", + value = "rshoulder_mail_raidshaman_d_01.m2", + }, + { + fileId = "143526", + text = "rshoulder_mail_raidshaman_e_01.m2", + value = "rshoulder_mail_raidshaman_e_01.m2", + }, + { + fileId = "143527", + text = "rshoulder_mail_raidshaman_f_01.m2", + value = "rshoulder_mail_raidshaman_f_01.m2", + }, + { + fileId = "249251", + text = "rshoulder_mail_raidshaman_g_01.m2", + value = "rshoulder_mail_raidshaman_g_01.m2", + }, + { + fileId = "349164", + text = "rshoulder_mail_raidshaman_h_01.m2", + value = "rshoulder_mail_raidshaman_h_01.m2", + }, + { + fileId = "353040", + text = "rshoulder_mail_raidshaman_h_02.m2", + value = "rshoulder_mail_raidshaman_h_02.m2", + }, + { + fileId = "465021", + text = "rshoulder_mail_raidshaman_i_01.m2", + value = "rshoulder_mail_raidshaman_i_01.m2", + }, + { + fileId = "526013", + text = "rshoulder_mail_raidshaman_j_01.m2", + value = "rshoulder_mail_raidshaman_j_01.m2", + }, + { + fileId = "534180", + text = "rshoulder_mail_raidshaman_k_01.m2", + value = "rshoulder_mail_raidshaman_k_01.m2", + }, + { + fileId = "143528", + text = "rshoulder_mail_sunwell_d_01.m2", + value = "rshoulder_mail_sunwell_d_01.m2", + }, + { + fileId = "143529", + text = "rshoulder_mail_zulaman_d_01.m2", + value = "rshoulder_mail_zulaman_d_01.m2", + }, + { + fileId = "143530", + text = "rshoulder_mail_zulaman_d_03.m2", + value = "rshoulder_mail_zulaman_d_03.m2", + }, + { + fileId = "143531", + text = "rshoulder_plate_a_01.m2", + value = "rshoulder_plate_a_01.m2", + }, + { + fileId = "143532", + text = "rshoulder_plate_a_02.m2", + value = "rshoulder_plate_a_02.m2", + }, + { + fileId = "143533", + text = "rshoulder_plate_a_02ironforgeguard.m2", + value = "rshoulder_plate_a_02ironforgeguard.m2", + }, + { + fileId = "143534", + text = "rshoulder_plate_a_03.m2", + value = "rshoulder_plate_a_03.m2", + }, + { + fileId = "143535", + text = "rshoulder_plate_a_04.m2", + value = "rshoulder_plate_a_04.m2", + }, + { + fileId = "143536", + text = "rshoulder_plate_ahnqiraj_a_01.m2", + value = "rshoulder_plate_ahnqiraj_a_01.m2", + }, + { + fileId = "311766", + text = "rshoulder_plate_argentalliance_d_01.m2", + value = "rshoulder_plate_argentalliance_d_01.m2", + }, + { + fileId = "315692", + text = "rshoulder_plate_argenthorde_d_01.m2", + value = "rshoulder_plate_argenthorde_d_01.m2", + }, + { + fileId = "143537", + text = "rshoulder_plate_b_01.m2", + value = "rshoulder_plate_b_01.m2", + }, + { + fileId = "143538", + text = "rshoulder_plate_b_02.m2", + value = "rshoulder_plate_b_02.m2", + }, + { + fileId = "143539", + text = "rshoulder_plate_b_03.m2", + value = "rshoulder_plate_b_03.m2", + }, + { + fileId = "143540", + text = "rshoulder_plate_b_04.m2", + value = "rshoulder_plate_b_04.m2", + }, + { + fileId = "143541", + text = "rshoulder_plate_b_05.m2", + value = "rshoulder_plate_b_05.m2", + }, + { + fileId = "143542", + text = "rshoulder_plate_bloodknight_d_02.m2", + value = "rshoulder_plate_bloodknight_d_02.m2", + }, + { + fileId = "143543", + text = "rshoulder_plate_c_01.m2", + value = "rshoulder_plate_c_01.m2", + }, + { + fileId = "143544", + text = "rshoulder_plate_c_03.m2", + value = "rshoulder_plate_c_03.m2", + }, + { + fileId = "143545", + text = "rshoulder_plate_c_04.m2", + value = "rshoulder_plate_c_04.m2", + }, + { + fileId = "143546", + text = "rshoulder_plate_c_05.m2", + value = "rshoulder_plate_c_05.m2", + }, + { + fileId = "411692", + text = "rshoulder_plate_cataclysm_b_01.m2", + value = "rshoulder_plate_cataclysm_b_01.m2", + }, + { + fileId = "463386", + text = "rshoulder_plate_cataclysm_b_02.m2", + value = "rshoulder_plate_cataclysm_b_02.m2", + }, + { + fileId = "356271", + text = "rshoulder_plate_common_b_01.m2", + value = "rshoulder_plate_common_b_01.m2", + }, + { + fileId = "359536", + text = "rshoulder_plate_common_b_02.m2", + value = "rshoulder_plate_common_b_02.m2", + }, + { + fileId = "364390", + text = "rshoulder_plate_common_b_03.m2", + value = "rshoulder_plate_common_b_03.m2", + }, + { + fileId = "366868", + text = "rshoulder_plate_common_c_01.m2", + value = "rshoulder_plate_common_c_01.m2", + }, + { + fileId = "143547", + text = "rshoulder_plate_d_01.m2", + value = "rshoulder_plate_d_01.m2", + }, + { + fileId = "143548", + text = "rshoulder_plate_d_02.m2", + value = "rshoulder_plate_d_02.m2", + }, + { + fileId = "143549", + text = "rshoulder_plate_d_03.m2", + value = "rshoulder_plate_d_03.m2", + }, + { + fileId = "143550", + text = "rshoulder_plate_d_04.m2", + value = "rshoulder_plate_d_04.m2", + }, + { + fileId = "143551", + text = "rshoulder_plate_d_05.m2", + value = "rshoulder_plate_d_05.m2", + }, + { + fileId = "143552", + text = "rshoulder_plate_d_06.m2", + value = "rshoulder_plate_d_06.m2", + }, + { + fileId = "238478", + text = "rshoulder_plate_deathknight_b_01.m2", + value = "rshoulder_plate_deathknight_b_01.m2", + }, + { + fileId = "143553", + text = "rshoulder_plate_draeneiguard_a_01.m2", + value = "rshoulder_plate_draeneiguard_a_01.m2", + }, + { + fileId = "143554", + text = "rshoulder_plate_draeneiguard_b_01.m2", + value = "rshoulder_plate_draeneiguard_b_01.m2", + }, + { + fileId = "143555", + text = "rshoulder_plate_dungeonpaladin_a_01.m2", + value = "rshoulder_plate_dungeonpaladin_a_01.m2", + }, + { + fileId = "143556", + text = "rshoulder_plate_dungeonpaladin_b_01.m2", + value = "rshoulder_plate_dungeonpaladin_b_01.m2", + }, + { + fileId = "143557", + text = "rshoulder_plate_dungeonplate_c_01.m2", + value = "rshoulder_plate_dungeonplate_c_01.m2", + }, + { + fileId = "343648", + text = "rshoulder_plate_dungeonplate_c_02.m2", + value = "rshoulder_plate_dungeonplate_c_02.m2", + }, + { + fileId = "427207", + text = "rshoulder_plate_dungeonplate_c_03.m2", + value = "rshoulder_plate_dungeonplate_c_03.m2", + }, + { + fileId = "454334", + text = "rshoulder_plate_dungeonplate_c_04.m2", + value = "rshoulder_plate_dungeonplate_c_04.m2", + }, + { + fileId = "522802", + text = "rshoulder_plate_dungeonplate_c_05.m2", + value = "rshoulder_plate_dungeonplate_c_05.m2", + }, + { + fileId = "533812", + text = "rshoulder_plate_dungeonplate_c_06.m2", + value = "rshoulder_plate_dungeonplate_c_06.m2", + }, + { + fileId = "143558", + text = "rshoulder_plate_dungeonwarrior_a_01.m2", + value = "rshoulder_plate_dungeonwarrior_a_01.m2", + }, + { + fileId = "143559", + text = "rshoulder_plate_dungeonwarrior_b_01.m2", + value = "rshoulder_plate_dungeonwarrior_b_01.m2", + }, + { + fileId = "521013", + text = "rshoulder_plate_firelands_d_01.m2", + value = "rshoulder_plate_firelands_d_01.m2", + }, + { + fileId = "522367", + text = "rshoulder_plate_firelandsrags_j_01.m2", + value = "rshoulder_plate_firelandsrags_j_01.m2", + }, + { + fileId = "143560", + text = "rshoulder_plate_haremmatron_d_01.m2", + value = "rshoulder_plate_haremmatron_d_01.m2", + }, + { + fileId = "143561", + text = "rshoulder_plate_horde_c_05.m2", + value = "rshoulder_plate_horde_c_05.m2", + }, + { + fileId = "143562", + text = "rshoulder_plate_horde_d_02.m2", + value = "rshoulder_plate_horde_d_02.m2", + }, + { + fileId = "143563", + text = "rshoulder_plate_hyjal_d_04.m2", + value = "rshoulder_plate_hyjal_d_04.m2", + }, + { + fileId = "143564", + text = "rshoulder_plate_hyjal_d_05.m2", + value = "rshoulder_plate_hyjal_d_05.m2", + }, + { + fileId = "143565", + text = "rshoulder_plate_northrend_b_01.m2", + value = "rshoulder_plate_northrend_b_01.m2", + }, + { + fileId = "143566", + text = "rshoulder_plate_northrend_b_02.m2", + value = "rshoulder_plate_northrend_b_02.m2", + }, + { + fileId = "143567", + text = "rshoulder_plate_northrend_b_03.m2", + value = "rshoulder_plate_northrend_b_03.m2", + }, + { + fileId = "143568", + text = "rshoulder_plate_northrend_c_01.m2", + value = "rshoulder_plate_northrend_c_01.m2", + }, + { + fileId = "143569", + text = "rshoulder_plate_northrend_d_01.m2", + value = "rshoulder_plate_northrend_d_01.m2", + }, + { + fileId = "143570", + text = "rshoulder_plate_pvpalliance_a_01.m2", + value = "rshoulder_plate_pvpalliance_a_01.m2", + }, + { + fileId = "238479", + text = "rshoulder_plate_pvpdeathknight_b_01.m2", + value = "rshoulder_plate_pvpdeathknight_b_01.m2", + }, + { + fileId = "254906", + text = "rshoulder_plate_pvpdeathknight_b_02.m2", + value = "rshoulder_plate_pvpdeathknight_b_02.m2", + }, + { + fileId = "304743", + text = "rshoulder_plate_pvpdeathknight_b_03.m2", + value = "rshoulder_plate_pvpdeathknight_b_03.m2", + }, + { + fileId = "343846", + text = "rshoulder_plate_pvpdeathknight_b_04.m2", + value = "rshoulder_plate_pvpdeathknight_b_04.m2", + }, + { + fileId = "366949", + text = "rshoulder_plate_pvpdeathknight_c_01.m2", + value = "rshoulder_plate_pvpdeathknight_c_01.m2", + }, + { + fileId = "469283", + text = "rshoulder_plate_pvpdeathknight_c_02.m2", + value = "rshoulder_plate_pvpdeathknight_c_02.m2", + }, + { + fileId = "532196", + text = "rshoulder_plate_pvpdeathknight_d_01.m2", + value = "rshoulder_plate_pvpdeathknight_d_01.m2", + }, + { + fileId = "143571", + text = "rshoulder_plate_pvphorde_a_01.m2", + value = "rshoulder_plate_pvphorde_a_01.m2", + }, + { + fileId = "238480", + text = "rshoulder_plate_pvppaladin_b_01.m2", + value = "rshoulder_plate_pvppaladin_b_01.m2", + }, + { + fileId = "254760", + text = "rshoulder_plate_pvppaladin_b_02.m2", + value = "rshoulder_plate_pvppaladin_b_02.m2", + }, + { + fileId = "304826", + text = "rshoulder_plate_pvppaladin_b_03.m2", + value = "rshoulder_plate_pvppaladin_b_03.m2", + }, + { + fileId = "346081", + text = "rshoulder_plate_pvppaladin_b_04.m2", + value = "rshoulder_plate_pvppaladin_b_04.m2", + }, + { + fileId = "463110", + text = "rshoulder_plate_pvppaladin_c_01.m2", + value = "rshoulder_plate_pvppaladin_c_01.m2", + }, + { + fileId = "468899", + text = "rshoulder_plate_pvppaladin_c_02.m2", + value = "rshoulder_plate_pvppaladin_c_02.m2", + }, + { + fileId = "538063", + text = "rshoulder_plate_pvppaladin_d_01.m2", + value = "rshoulder_plate_pvppaladin_d_01.m2", + }, + { + fileId = "238481", + text = "rshoulder_plate_pvpwarrior_b_01.m2", + value = "rshoulder_plate_pvpwarrior_b_01.m2", + }, + { + fileId = "254359", + text = "rshoulder_plate_pvpwarrior_b_02.m2", + value = "rshoulder_plate_pvpwarrior_b_02.m2", + }, + { + fileId = "304451", + text = "rshoulder_plate_pvpwarrior_b_03.m2", + value = "rshoulder_plate_pvpwarrior_b_03.m2", + }, + { + fileId = "345730", + text = "rshoulder_plate_pvpwarrior_b_04.m2", + value = "rshoulder_plate_pvpwarrior_b_04.m2", + }, + { + fileId = "436672", + text = "rshoulder_plate_pvpwarrior_c_01.m2", + value = "rshoulder_plate_pvpwarrior_c_01.m2", + }, + { + fileId = "238482", + text = "rshoulder_plate_pvpwarrior_c_02.m2", + value = "rshoulder_plate_pvpwarrior_c_02.m2", + }, + { + fileId = "529937", + text = "rshoulder_plate_pvpwarrior_d_01.m2", + value = "rshoulder_plate_pvpwarrior_d_01.m2", + }, + { + fileId = "238483", + text = "rshoulder_plate_raiddeathknight_c_02.m2", + value = "rshoulder_plate_raiddeathknight_c_02.m2", + }, + { + fileId = "143572", + text = "rshoulder_plate_raiddeathknight_g_01.m2", + value = "rshoulder_plate_raiddeathknight_g_01.m2", + }, + { + fileId = "337701", + text = "rshoulder_plate_raiddeathknight_h_01.m2", + value = "rshoulder_plate_raiddeathknight_h_01.m2", + }, + { + fileId = "465927", + text = "rshoulder_plate_raiddeathknight_i_01.m2", + value = "rshoulder_plate_raiddeathknight_i_01.m2", + }, + { + fileId = "522919", + text = "rshoulder_plate_raiddeathknight_j_01.m2", + value = "rshoulder_plate_raiddeathknight_j_01.m2", + }, + { + fileId = "575881", + text = "rshoulder_plate_raiddeathknight_k_01.m2", + value = "rshoulder_plate_raiddeathknight_k_01.m2", + }, + { + fileId = "143573", + text = "rshoulder_plate_raidpaladin_a_01.m2", + value = "rshoulder_plate_raidpaladin_a_01.m2", + }, + { + fileId = "143574", + text = "rshoulder_plate_raidpaladin_b_01.m2", + value = "rshoulder_plate_raidpaladin_b_01.m2", + }, + { + fileId = "143575", + text = "rshoulder_plate_raidpaladin_c_01.m2", + value = "rshoulder_plate_raidpaladin_c_01.m2", + }, + { + fileId = "143576", + text = "rshoulder_plate_raidpaladin_d_01.m2", + value = "rshoulder_plate_raidpaladin_d_01.m2", + }, + { + fileId = "143577", + text = "rshoulder_plate_raidpaladin_e_01.m2", + value = "rshoulder_plate_raidpaladin_e_01.m2", + }, + { + fileId = "143578", + text = "rshoulder_plate_raidpaladin_f_01.m2", + value = "rshoulder_plate_raidpaladin_f_01.m2", + }, + { + fileId = "238484", + text = "rshoulder_plate_raidpaladin_g_01.m2", + value = "rshoulder_plate_raidpaladin_g_01.m2", + }, + { + fileId = "341247", + text = "rshoulder_plate_raidpaladin_h_01.m2", + value = "rshoulder_plate_raidpaladin_h_01.m2", + }, + { + fileId = "466362", + text = "rshoulder_plate_raidpaladin_i_01.m2", + value = "rshoulder_plate_raidpaladin_i_01.m2", + }, + { + fileId = "514188", + text = "rshoulder_plate_raidpaladin_j_01.m2", + value = "rshoulder_plate_raidpaladin_j_01.m2", + }, + { + fileId = "535537", + text = "rshoulder_plate_raidpaladin_k_01.m2", + value = "rshoulder_plate_raidpaladin_k_01.m2", + }, + { + fileId = "143583", + text = "rshoulder_plate_raidwarrior_a_01.m2", + value = "rshoulder_plate_raidwarrior_a_01.m2", + }, + { + fileId = "143584", + text = "rshoulder_plate_raidwarrior_b_01.m2", + value = "rshoulder_plate_raidwarrior_b_01.m2", + }, + { + fileId = "143585", + text = "rshoulder_plate_raidwarrior_c_01.m2", + value = "rshoulder_plate_raidwarrior_c_01.m2", + }, + { + fileId = "456299", + text = "rshoulder_plate_raidwarrior_c_02.m2", + value = "rshoulder_plate_raidwarrior_c_02.m2", + }, + { + fileId = "143586", + text = "rshoulder_plate_raidwarrior_d_01.m2", + value = "rshoulder_plate_raidwarrior_d_01.m2", + }, + { + fileId = "143587", + text = "rshoulder_plate_raidwarrior_e_01.m2", + value = "rshoulder_plate_raidwarrior_e_01.m2", + }, + { + fileId = "143588", + text = "rshoulder_plate_raidwarrior_f_01.m2", + value = "rshoulder_plate_raidwarrior_f_01.m2", + }, + { + fileId = "251563", + text = "rshoulder_plate_raidwarrior_g_01.m2", + value = "rshoulder_plate_raidwarrior_g_01.m2", + }, + { + fileId = "331371", + text = "rshoulder_plate_raidwarrior_h_01.m2", + value = "rshoulder_plate_raidwarrior_h_01.m2", + }, + { + fileId = "463935", + text = "rshoulder_plate_raidwarrior_i_01.m2", + value = "rshoulder_plate_raidwarrior_i_01.m2", + }, + { + fileId = "520817", + text = "rshoulder_plate_raidwarrior_j_01.m2", + value = "rshoulder_plate_raidwarrior_j_01.m2", + }, + { + fileId = "533970", + text = "rshoulder_plate_raidwarrior_k_01.m2", + value = "rshoulder_plate_raidwarrior_k_01.m2", + }, + { + fileId = "143589", + text = "rshoulder_plate_sunwell_c_01.m2", + value = "rshoulder_plate_sunwell_c_01.m2", + }, + { + fileId = "143590", + text = "rshoulder_plate_sunwell_d_01.m2", + value = "rshoulder_plate_sunwell_d_01.m2", + }, + { + fileId = "391384", + text = "rshoulder_plate_twilighthammer_c_01.m2", + value = "rshoulder_plate_twilighthammer_c_01.m2", + }, + { + fileId = "143591", + text = "rshoulder_plate_zulaman_d_01.m2", + value = "rshoulder_plate_zulaman_d_01.m2", + }, + { + fileId = "143592", + text = "rshoulder_plate_zulaman_d_03.m2", + value = "rshoulder_plate_zulaman_d_03.m2", + }, + { + fileId = "306511", + text = "rshoulder_pvppriest_b_03.m2", + value = "rshoulder_pvppriest_b_03.m2", + }, + { + fileId = "143593", + text = "rshoulder_raiddruid_b_01.m2", + value = "rshoulder_raiddruid_b_01.m2", + }, + { + fileId = "143594", + text = "rshoulder_robe_a_01.m2", + value = "rshoulder_robe_a_01.m2", + }, + { + fileId = "143595", + text = "rshoulder_robe_a_02.m2", + value = "rshoulder_robe_a_02.m2", + }, + { + fileId = "143596", + text = "rshoulder_robe_a_03.m2", + value = "rshoulder_robe_a_03.m2", + }, + { + fileId = "143597", + text = "rshoulder_robe_ahnqiraj_a_01.m2", + value = "rshoulder_robe_ahnqiraj_a_01.m2", + }, + { + fileId = "314972", + text = "rshoulder_robe_argentalliance_d_01.m2", + value = "rshoulder_robe_argentalliance_d_01.m2", + }, + { + fileId = "317629", + text = "rshoulder_robe_argenthorde_d_01.m2", + value = "rshoulder_robe_argenthorde_d_01.m2", + }, + { + fileId = "143598", + text = "rshoulder_robe_b_01.m2", + value = "rshoulder_robe_b_01.m2", + }, + { + fileId = "143599", + text = "rshoulder_robe_b_02.m2", + value = "rshoulder_robe_b_02.m2", + }, + { + fileId = "143600", + text = "rshoulder_robe_b_03.m2", + value = "rshoulder_robe_b_03.m2", + }, + { + fileId = "143601", + text = "rshoulder_robe_b_04.m2", + value = "rshoulder_robe_b_04.m2", + }, + { + fileId = "143602", + text = "rshoulder_robe_c_01.m2", + value = "rshoulder_robe_c_01.m2", + }, + { + fileId = "143603", + text = "rshoulder_robe_c_02.m2", + value = "rshoulder_robe_c_02.m2", + }, + { + fileId = "143604", + text = "rshoulder_robe_c_03.m2", + value = "rshoulder_robe_c_03.m2", + }, + { + fileId = "356272", + text = "rshoulder_robe_common_b_01.m2", + value = "rshoulder_robe_common_b_01.m2", + }, + { + fileId = "362067", + text = "rshoulder_robe_common_b_02.m2", + value = "rshoulder_robe_common_b_02.m2", + }, + { + fileId = "361614", + text = "rshoulder_robe_common_b_03.m2", + value = "rshoulder_robe_common_b_03.m2", + }, + { + fileId = "427958", + text = "rshoulder_robe_common_c_01.m2", + value = "rshoulder_robe_common_c_01.m2", + }, + { + fileId = "143605", + text = "rshoulder_robe_d_01.m2", + value = "rshoulder_robe_d_01.m2", + }, + { + fileId = "143606", + text = "rshoulder_robe_d_04.m2", + value = "rshoulder_robe_d_04.m2", + }, + { + fileId = "143607", + text = "rshoulder_robe_dungeonmage_a_01.m2", + value = "rshoulder_robe_dungeonmage_a_01.m2", + }, + { + fileId = "143608", + text = "rshoulder_robe_dungeonmage_b_01.m2", + value = "rshoulder_robe_dungeonmage_b_01.m2", + }, + { + fileId = "143609", + text = "rshoulder_robe_dungeonpriest_a_01.m2", + value = "rshoulder_robe_dungeonpriest_a_01.m2", + }, + { + fileId = "143610", + text = "rshoulder_robe_dungeonpriest_b_01.m2", + value = "rshoulder_robe_dungeonpriest_b_01.m2", + }, + { + fileId = "238485", + text = "rshoulder_robe_dungeonrobe_c_01.m2", + value = "rshoulder_robe_dungeonrobe_c_01.m2", + }, + { + fileId = "341485", + text = "rshoulder_robe_dungeonrobe_c_02.m2", + value = "rshoulder_robe_dungeonrobe_c_02.m2", + }, + { + fileId = "422667", + text = "rshoulder_robe_dungeonrobe_c_03.m2", + value = "rshoulder_robe_dungeonrobe_c_03.m2", + }, + { + fileId = "412548", + text = "rshoulder_robe_dungeonrobe_c_04.m2", + value = "rshoulder_robe_dungeonrobe_c_04.m2", + }, + { + fileId = "532029", + text = "rshoulder_robe_dungeonrobe_c_05.m2", + value = "rshoulder_robe_dungeonrobe_c_05.m2", + }, + { + fileId = "143611", + text = "rshoulder_robe_dungeonwarlock_a_01.m2", + value = "rshoulder_robe_dungeonwarlock_a_01.m2", + }, + { + fileId = "143612", + text = "rshoulder_robe_dungeonwarlock_b_01.m2", + value = "rshoulder_robe_dungeonwarlock_b_01.m2", + }, + { + fileId = "143613", + text = "rshoulder_robe_holiday_summerfest_a_01.m2", + value = "rshoulder_robe_holiday_summerfest_a_01.m2", + }, + { + fileId = "143614", + text = "rshoulder_robe_horde_a_03.m2", + value = "rshoulder_robe_horde_a_03.m2", + }, + { + fileId = "143615", + text = "rshoulder_robe_horde_d_01.m2", + value = "rshoulder_robe_horde_d_01.m2", + }, + { + fileId = "143616", + text = "rshoulder_robe_hyjal_d_04.m2", + value = "rshoulder_robe_hyjal_d_04.m2", + }, + { + fileId = "143617", + text = "rshoulder_robe_northrend_b_01.m2", + value = "rshoulder_robe_northrend_b_01.m2", + }, + { + fileId = "238486", + text = "rshoulder_robe_northrend_b_02.m2", + value = "rshoulder_robe_northrend_b_02.m2", + }, + { + fileId = "143618", + text = "rshoulder_robe_northrend_b_03.m2", + value = "rshoulder_robe_northrend_b_03.m2", + }, + { + fileId = "143619", + text = "rshoulder_robe_northrend_d_01.m2", + value = "rshoulder_robe_northrend_d_01.m2", + }, + { + fileId = "238487", + text = "rshoulder_robe_plague_a_01.m2", + value = "rshoulder_robe_plague_a_01.m2", + }, + { + fileId = "143620", + text = "rshoulder_robe_pvpalliance_a_01.m2", + value = "rshoulder_robe_pvpalliance_a_01.m2", + }, + { + fileId = "143621", + text = "rshoulder_robe_pvpalliance_c_01.m2", + value = "rshoulder_robe_pvpalliance_c_01.m2", + }, + { + fileId = "143622", + text = "rshoulder_robe_pvphorde_a_01.m2", + value = "rshoulder_robe_pvphorde_a_01.m2", + }, + { + fileId = "143623", + text = "rshoulder_robe_pvphorde_c_01.m2", + value = "rshoulder_robe_pvphorde_c_01.m2", + }, + { + fileId = "532292", + text = "rshoulder_robe_pvpmage_d_01.m2", + value = "rshoulder_robe_pvpmage_d_01.m2", + }, + { + fileId = "531889", + text = "rshoulder_robe_pvppriest_d_01.m2", + value = "rshoulder_robe_pvppriest_d_01.m2", + }, + { + fileId = "238488", + text = "rshoulder_robe_pvpwarlock_b_01.m2", + value = "rshoulder_robe_pvpwarlock_b_01.m2", + }, + { + fileId = "254169", + text = "rshoulder_robe_pvpwarlock_b_02.m2", + value = "rshoulder_robe_pvpwarlock_b_02.m2", + }, + { + fileId = "305934", + text = "rshoulder_robe_pvpwarlock_b_03.m2", + value = "rshoulder_robe_pvpwarlock_b_03.m2", + }, + { + fileId = "350614", + text = "rshoulder_robe_pvpwarlock_b_04.m2", + value = "rshoulder_robe_pvpwarlock_b_04.m2", + }, + { + fileId = "530815", + text = "rshoulder_robe_pvpwarlock_d_01.m2", + value = "rshoulder_robe_pvpwarlock_d_01.m2", + }, + { + fileId = "143624", + text = "rshoulder_robe_raid_a_01.m2", + value = "rshoulder_robe_raid_a_01.m2", + }, + { + fileId = "143625", + text = "rshoulder_robe_raidmage_a_01.m2", + value = "rshoulder_robe_raidmage_a_01.m2", + }, + { + fileId = "143626", + text = "rshoulder_robe_raidmage_b_01.m2", + value = "rshoulder_robe_raidmage_b_01.m2", + }, + { + fileId = "143627", + text = "rshoulder_robe_raidmage_c_01.m2", + value = "rshoulder_robe_raidmage_c_01.m2", + }, + { + fileId = "238489", + text = "rshoulder_robe_raidmage_c_02.m2", + value = "rshoulder_robe_raidmage_c_02.m2", + }, + { + fileId = "143628", + text = "rshoulder_robe_raidmage_d_01.m2", + value = "rshoulder_robe_raidmage_d_01.m2", + }, + { + fileId = "143629", + text = "rshoulder_robe_raidmage_e_01.m2", + value = "rshoulder_robe_raidmage_e_01.m2", + }, + { + fileId = "238490", + text = "rshoulder_robe_raidmage_e_02.m2", + value = "rshoulder_robe_raidmage_e_02.m2", + }, + { + fileId = "143630", + text = "rshoulder_robe_raidmage_f_01.m2", + value = "rshoulder_robe_raidmage_f_01.m2", + }, + { + fileId = "143631", + text = "rshoulder_robe_raidmage_g_01.m2", + value = "rshoulder_robe_raidmage_g_01.m2", + }, + { + fileId = "340076", + text = "rshoulder_robe_raidmage_h_01.m2", + value = "rshoulder_robe_raidmage_h_01.m2", + }, + { + fileId = "464718", + text = "rshoulder_robe_raidmage_i_01.m2", + value = "rshoulder_robe_raidmage_i_01.m2", + }, + { + fileId = "521275", + text = "rshoulder_robe_raidmage_j_01.m2", + value = "rshoulder_robe_raidmage_j_01.m2", + }, + { + fileId = "533638", + text = "rshoulder_robe_raidmage_k_01.m2", + value = "rshoulder_robe_raidmage_k_01.m2", + }, + { + fileId = "143632", + text = "rshoulder_robe_raidpriest_a_01.m2", + value = "rshoulder_robe_raidpriest_a_01.m2", + }, + { + fileId = "143633", + text = "rshoulder_robe_raidpriest_b_01.m2", + value = "rshoulder_robe_raidpriest_b_01.m2", + }, + { + fileId = "143634", + text = "rshoulder_robe_raidpriest_c_01.m2", + value = "rshoulder_robe_raidpriest_c_01.m2", + }, + { + fileId = "143635", + text = "rshoulder_robe_raidpriest_d_01.m2", + value = "rshoulder_robe_raidpriest_d_01.m2", + }, + { + fileId = "143636", + text = "rshoulder_robe_raidpriest_e_01.m2", + value = "rshoulder_robe_raidpriest_e_01.m2", + }, + { + fileId = "143637", + text = "rshoulder_robe_raidpriest_f_01.m2", + value = "rshoulder_robe_raidpriest_f_01.m2", + }, + { + fileId = "143638", + text = "rshoulder_robe_raidpriest_g_01.m2", + value = "rshoulder_robe_raidpriest_g_01.m2", + }, + { + fileId = "341800", + text = "rshoulder_robe_raidpriest_h_01.m2", + value = "rshoulder_robe_raidpriest_h_01.m2", + }, + { + fileId = "516478", + text = "rshoulder_robe_raidpriest_j_01.m2", + value = "rshoulder_robe_raidpriest_j_01.m2", + }, + { + fileId = "538296", + text = "rshoulder_robe_raidpriest_k_01.m2", + value = "rshoulder_robe_raidpriest_k_01.m2", + }, + { + fileId = "143639", + text = "rshoulder_robe_raidshaman_c_01.m2", + value = "rshoulder_robe_raidshaman_c_01.m2", + }, + { + fileId = "143640", + text = "rshoulder_robe_raidwarlock_a_01.m2", + value = "rshoulder_robe_raidwarlock_a_01.m2", + }, + { + fileId = "143641", + text = "rshoulder_robe_raidwarlock_b_01.m2", + value = "rshoulder_robe_raidwarlock_b_01.m2", + }, + { + fileId = "143642", + text = "rshoulder_robe_raidwarlock_c_01.m2", + value = "rshoulder_robe_raidwarlock_c_01.m2", + }, + { + fileId = "238491", + text = "rshoulder_robe_raidwarlock_c_02.m2", + value = "rshoulder_robe_raidwarlock_c_02.m2", + }, + { + fileId = "143643", + text = "rshoulder_robe_raidwarlock_d_01.m2", + value = "rshoulder_robe_raidwarlock_d_01.m2", + }, + { + fileId = "143644", + text = "rshoulder_robe_raidwarlock_e_01.m2", + value = "rshoulder_robe_raidwarlock_e_01.m2", + }, + { + fileId = "143645", + text = "rshoulder_robe_raidwarlock_f_01.m2", + value = "rshoulder_robe_raidwarlock_f_01.m2", + }, + { + fileId = "143646", + text = "rshoulder_robe_raidwarlock_g_01.m2", + value = "rshoulder_robe_raidwarlock_g_01.m2", + }, + { + fileId = "339856", + text = "rshoulder_robe_raidwarlock_h_01.m2", + value = "rshoulder_robe_raidwarlock_h_01.m2", + }, + { + fileId = "526001", + text = "rshoulder_robe_raidwarlock_j_01.m2", + value = "rshoulder_robe_raidwarlock_j_01.m2", + }, + { + fileId = "532681", + text = "rshoulder_robe_raidwarlock_k_01.m2", + value = "rshoulder_robe_raidwarlock_k_01.m2", + }, + { + fileId = "143647", + text = "rshoulder_robe_sunwell_d_01.m2", + value = "rshoulder_robe_sunwell_d_01.m2", + }, + { + fileId = "143648", + text = "rshoulder_robe_zulaman_d_01.m2", + value = "rshoulder_robe_zulaman_d_01.m2", + }, + { + fileId = "143649", + text = "rshoulder_robe_zulaman_d_03.m2", + value = "rshoulder_robe_zulaman_d_03.m2", + }, + }, + text = "shoulder", + value = "shoulder", + }, + { + children = { + { + fileId = "144326", + text = "1htrollspear01.m2", + value = "1htrollspear01.m2", + }, + { + fileId = "144340", + text = "ashbringer02.m2", + value = "ashbringer02.m2", + }, + { + fileId = "531362", + text = "axe_1h_430nightelf_c_01.m2", + value = "axe_1h_430nightelf_c_01.m2", + }, + { + fileId = "535253", + text = "axe_1h_430nightelf_c_02.m2", + value = "axe_1h_430nightelf_c_02.m2", + }, + { + fileId = "144344", + text = "axe_1h_ahnqiraj_d_01.m2", + value = "axe_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "144345", + text = "axe_1h_ahnqiraj_d_02.m2", + value = "axe_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "298682", + text = "axe_1h_alliancecovenant_d_01.m2", + value = "axe_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "294035", + text = "axe_1h_alliancecovenant_d_02.m2", + value = "axe_1h_alliancecovenant_d_02.m2", + }, + { + fileId = "409018", + text = "axe_1h_axe_a_01.m2", + value = "axe_1h_axe_a_01.m2", + }, + { + fileId = "144347", + text = "axe_1h_blacksmithing_d_01.m2", + value = "axe_1h_blacksmithing_d_01.m2", + }, + { + fileId = "144349", + text = "axe_1h_blacksmithing_d_02.m2", + value = "axe_1h_blacksmithing_d_02.m2", + }, + { + fileId = "144351", + text = "axe_1h_blacksmithing_d_03.m2", + value = "axe_1h_blacksmithing_d_03.m2", + }, + { + fileId = "144353", + text = "axe_1h_blackwing_a_01.m2", + value = "axe_1h_blackwing_a_01.m2", + }, + { + fileId = "144355", + text = "axe_1h_blackwing_a_02.m2", + value = "axe_1h_blackwing_a_02.m2", + }, + { + fileId = "144357", + text = "axe_1h_blood_a_01.m2", + value = "axe_1h_blood_a_01.m2", + }, + { + fileId = "144361", + text = "axe_1h_blood_a_02.m2", + value = "axe_1h_blood_a_02.m2", + }, + { + fileId = "144367", + text = "axe_1h_blood_a_03.m2", + value = "axe_1h_blood_a_03.m2", + }, + { + fileId = "369282", + text = "axe_1h_bwdraid_d_01.m2", + value = "axe_1h_bwdraid_d_01.m2", + }, + { + fileId = "377991", + text = "axe_1h_cataclysm_b_01.m2", + value = "axe_1h_cataclysm_b_01.m2", + }, + { + fileId = "383692", + text = "axe_1h_cataclysm_b_02.m2", + value = "axe_1h_cataclysm_b_02.m2", + }, + { + fileId = "433483", + text = "axe_1h_cataclysm_c_01.m2", + value = "axe_1h_cataclysm_c_01.m2", + }, + { + fileId = "144372", + text = "axe_1h_dalaran_d_01.m2", + value = "axe_1h_dalaran_d_01.m2", + }, + { + fileId = "536066", + text = "axe_1h_deathwingraid_d_01.m2", + value = "axe_1h_deathwingraid_d_01.m2", + }, + { + fileId = "534217", + text = "axe_1h_deathwingraid_d_02.m2", + value = "axe_1h_deathwingraid_d_02.m2", + }, + { + fileId = "535543", + text = "axe_1h_deathwingraiddw_d_01.m2", + value = "axe_1h_deathwingraiddw_d_01.m2", + }, + { + fileId = "144388", + text = "axe_1h_draenei_a_01.m2", + value = "axe_1h_draenei_a_01.m2", + }, + { + fileId = "144393", + text = "axe_1h_draenei_b_01.m2", + value = "axe_1h_draenei_b_01.m2", + }, + { + fileId = "144398", + text = "axe_1h_draenei_c_01.m2", + value = "axe_1h_draenei_c_01.m2", + }, + { + fileId = "144403", + text = "axe_1h_draenei_d_01.m2", + value = "axe_1h_draenei_d_01.m2", + }, + { + fileId = "144408", + text = "axe_1h_draktharon_d_01.m2", + value = "axe_1h_draktharon_d_01.m2", + }, + { + fileId = "509968", + text = "axe_1h_firelandsraid_d_01.m2", + value = "axe_1h_firelandsraid_d_01.m2", + }, + { + fileId = "518972", + text = "axe_1h_firelandsraid_d_02.m2", + value = "axe_1h_firelandsraid_d_02.m2", + }, + { + fileId = "144412", + text = "axe_1h_flint_a_01.m2", + value = "axe_1h_flint_a_01.m2", + }, + { + fileId = "330542", + text = "axe_1h_goblin_b_01.m2", + value = "axe_1h_goblin_b_01.m2", + }, + { + fileId = "144416", + text = "axe_1h_hatchet_a_01.m2", + value = "axe_1h_hatchet_a_01.m2", + }, + { + fileId = "144420", + text = "axe_1h_hatchet_a_02.m2", + value = "axe_1h_hatchet_a_02.m2", + }, + { + fileId = "144424", + text = "axe_1h_hatchet_a_03.m2", + value = "axe_1h_hatchet_a_03.m2", + }, + { + fileId = "144428", + text = "axe_1h_hatchet_b_01.m2", + value = "axe_1h_hatchet_b_01.m2", + }, + { + fileId = "144432", + text = "axe_1h_hatchet_b_02.m2", + value = "axe_1h_hatchet_b_02.m2", + }, + { + fileId = "144436", + text = "axe_1h_hatchet_b_03.m2", + value = "axe_1h_hatchet_b_03.m2", + }, + { + fileId = "144441", + text = "axe_1h_hatchet_b_04holy.m2", + value = "axe_1h_hatchet_b_04holy.m2", + }, + { + fileId = "144442", + text = "axe_1h_hatchet_c_01.m2", + value = "axe_1h_hatchet_c_01.m2", + }, + { + fileId = "144446", + text = "axe_1h_hatchet_c_02.m2", + value = "axe_1h_hatchet_c_02.m2", + }, + { + fileId = "144450", + text = "axe_1h_hatchet_c_03.m2", + value = "axe_1h_hatchet_c_03.m2", + }, + { + fileId = "144455", + text = "axe_1h_hatchet_d_01.m2", + value = "axe_1h_hatchet_d_01.m2", + }, + { + fileId = "144456", + text = "axe_1h_horde_a_01.m2", + value = "axe_1h_horde_a_01.m2", + }, + { + fileId = "144462", + text = "axe_1h_horde_a_02.m2", + value = "axe_1h_horde_a_02.m2", + }, + { + fileId = "144464", + text = "axe_1h_horde_a_03.m2", + value = "axe_1h_horde_a_03.m2", + }, + { + fileId = "144470", + text = "axe_1h_horde_a_04.m2", + value = "axe_1h_horde_a_04.m2", + }, + { + fileId = "144475", + text = "axe_1h_horde_b_01.m2", + value = "axe_1h_horde_b_01.m2", + }, + { + fileId = "144478", + text = "axe_1h_horde_b_02.m2", + value = "axe_1h_horde_b_02.m2", + }, + { + fileId = "144483", + text = "axe_1h_horde_b_03.m2", + value = "axe_1h_horde_b_03.m2", + }, + { + fileId = "144488", + text = "axe_1h_horde_c_01.m2", + value = "axe_1h_horde_c_01.m2", + }, + { + fileId = "324988", + text = "axe_1h_horde_c_01alt.m2", + value = "axe_1h_horde_c_01alt.m2", + }, + { + fileId = "144494", + text = "axe_1h_horde_c_02.m2", + value = "axe_1h_horde_c_02.m2", + }, + { + fileId = "144500", + text = "axe_1h_horde_c_03.m2", + value = "axe_1h_horde_c_03.m2", + }, + { + fileId = "144505", + text = "axe_1h_horde_c_04.m2", + value = "axe_1h_horde_c_04.m2", + }, + { + fileId = "144513", + text = "axe_1h_horde_d_01.m2", + value = "axe_1h_horde_d_01.m2", + }, + { + fileId = "144523", + text = "axe_1h_horde_d_02.m2", + value = "axe_1h_horde_d_02.m2", + }, + { + fileId = "144536", + text = "axe_1h_horde_d_03.m2", + value = "axe_1h_horde_d_03.m2", + }, + { + fileId = "515996", + text = "axe_1h_horde_d_04.m2", + value = "axe_1h_horde_d_04.m2", + }, + { + fileId = "303779", + text = "axe_1h_hordecovenant_d_01.m2", + value = "axe_1h_hordecovenant_d_01.m2", + }, + { + fileId = "303847", + text = "axe_1h_hordecovenant_d_02.m2", + value = "axe_1h_hordecovenant_d_02.m2", + }, + { + fileId = "315188", + text = "axe_1h_icecrownraid_d_01.m2", + value = "axe_1h_icecrownraid_d_01.m2", + }, + { + fileId = "238572", + text = "axe_1h_naxx25_d_01.m2", + value = "axe_1h_naxx25_d_01.m2", + }, + { + fileId = "144546", + text = "axe_1h_nexus_d_01.m2", + value = "axe_1h_nexus_d_01.m2", + }, + { + fileId = "144553", + text = "axe_1h_northrend_b_01.m2", + value = "axe_1h_northrend_b_01.m2", + }, + { + fileId = "144559", + text = "axe_1h_northrend_b_02.m2", + value = "axe_1h_northrend_b_02.m2", + }, + { + fileId = "144566", + text = "axe_1h_northrend_b_03.m2", + value = "axe_1h_northrend_b_03.m2", + }, + { + fileId = "144572", + text = "axe_1h_northrend_c_01.m2", + value = "axe_1h_northrend_c_01.m2", + }, + { + fileId = "144577", + text = "axe_1h_northrend_c_02.m2", + value = "axe_1h_northrend_c_02.m2", + }, + { + fileId = "144582", + text = "axe_1h_northrend_c_03.m2", + value = "axe_1h_northrend_c_03.m2", + }, + { + fileId = "144588", + text = "axe_1h_northrend_d_01.m2", + value = "axe_1h_northrend_d_01.m2", + }, + { + fileId = "144593", + text = "axe_1h_outlandraid_d_01.m2", + value = "axe_1h_outlandraid_d_01.m2", + }, + { + fileId = "144595", + text = "axe_1h_outlandraid_d_02.m2", + value = "axe_1h_outlandraid_d_02.m2", + }, + { + fileId = "144597", + text = "axe_1h_outlandraid_d_03.m2", + value = "axe_1h_outlandraid_d_03.m2", + }, + { + fileId = "144599", + text = "axe_1h_outlandraid_d_04.m2", + value = "axe_1h_outlandraid_d_04.m2", + }, + { + fileId = "144604", + text = "axe_1h_outlandraid_d_05.m2", + value = "axe_1h_outlandraid_d_05.m2", + }, + { + fileId = "144606", + text = "axe_1h_outlandraid_d_06.m2", + value = "axe_1h_outlandraid_d_06.m2", + }, + { + fileId = "144607", + text = "axe_1h_pick_a_01.m2", + value = "axe_1h_pick_a_01.m2", + }, + { + fileId = "252782", + text = "axe_1h_pvealliance_d_01.m2", + value = "axe_1h_pvealliance_d_01.m2", + }, + { + fileId = "253464", + text = "axe_1h_pvehorde_d_01.m2", + value = "axe_1h_pvehorde_d_01.m2", + }, + { + fileId = "305618", + text = "axe_1h_pvp320_c_01.m2", + value = "axe_1h_pvp320_c_01.m2", + }, + { + fileId = "326468", + text = "axe_1h_pvp330_d_01.m2", + value = "axe_1h_pvp330_d_01.m2", + }, + { + fileId = "464083", + text = "axe_1h_pvp400_c_01.m2", + value = "axe_1h_pvp400_c_01.m2", + }, + { + fileId = "514846", + text = "axe_1h_pvp410_c_01.m2", + value = "axe_1h_pvp410_c_01.m2", + }, + { + fileId = "238573", + text = "axe_1h_pvp_c_01.m2", + value = "axe_1h_pvp_c_01.m2", + }, + { + fileId = "144612", + text = "axe_1h_pvpalliance_a_01.m2", + value = "axe_1h_pvpalliance_a_01.m2", + }, + { + fileId = "527837", + text = "axe_1h_pvpcataclysms3_c_01.m2", + value = "axe_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "144615", + text = "axe_1h_pvphorde_a_01.m2", + value = "axe_1h_pvphorde_a_01.m2", + }, + { + fileId = "144618", + text = "axe_1h_raid_d_01.m2", + value = "axe_1h_raid_d_01.m2", + }, + { + fileId = "144620", + text = "axe_1h_raid_d_02.m2", + value = "axe_1h_raid_d_02.m2", + }, + { + fileId = "144622", + text = "axe_1h_raid_d_03.m2", + value = "axe_1h_raid_d_03.m2", + }, + { + fileId = "144624", + text = "axe_1h_raid_d_04.m2", + value = "axe_1h_raid_d_04.m2", + }, + { + fileId = "144626", + text = "axe_1h_raid_d_05.m2", + value = "axe_1h_raid_d_05.m2", + }, + { + fileId = "144628", + text = "axe_1h_raid_d_06.m2", + value = "axe_1h_raid_d_06.m2", + }, + { + fileId = "144629", + text = "axe_1h_stratholme_d_01.m2", + value = "axe_1h_stratholme_d_01.m2", + }, + { + fileId = "352659", + text = "axe_1h_tradeskill_c_01.m2", + value = "axe_1h_tradeskill_c_01.m2", + }, + { + fileId = "144631", + text = "axe_1h_troll_b_01.m2", + value = "axe_1h_troll_b_01.m2", + }, + { + fileId = "342425", + text = "axe_1h_twilighthammer_c_01.m2", + value = "axe_1h_twilighthammer_c_01.m2", + }, + { + fileId = "238578", + text = "axe_1h_ulduarraid_d_01.m2", + value = "axe_1h_ulduarraid_d_01.m2", + }, + { + fileId = "144634", + text = "axe_1h_utgarde_d_01.m2", + value = "axe_1h_utgarde_d_01.m2", + }, + { + fileId = "330549", + text = "axe_1h_worgen_b_01.m2", + value = "axe_1h_worgen_b_01.m2", + }, + { + fileId = "144639", + text = "axe_1h_zulaman_d_01.m2", + value = "axe_1h_zulaman_d_01.m2", + }, + { + fileId = "144645", + text = "axe_1h_zulgurub_d_01.m2", + value = "axe_1h_zulgurub_d_01.m2", + }, + { + fileId = "535992", + text = "axe_2h_430future_c_01.m2", + value = "axe_2h_430future_c_01.m2", + }, + { + fileId = "144647", + text = "axe_2h_ahnqiraj_d_01.m2", + value = "axe_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "514680", + text = "axe_2h_ahnqiraj_d_02.m2", + value = "axe_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "144648", + text = "axe_2h_alliance_c_01.m2", + value = "axe_2h_alliance_c_01.m2", + }, + { + fileId = "144654", + text = "axe_2h_alliance_c_02.m2", + value = "axe_2h_alliance_c_02.m2", + }, + { + fileId = "144660", + text = "axe_2h_alliance_c_03.m2", + value = "axe_2h_alliance_c_03.m2", + }, + { + fileId = "144666", + text = "axe_2h_alliance_d_01.m2", + value = "axe_2h_alliance_d_01.m2", + }, + { + fileId = "144672", + text = "axe_2h_alliance_d_02.m2", + value = "axe_2h_alliance_d_02.m2", + }, + { + fileId = "144678", + text = "axe_2h_battle_a_01.m2", + value = "axe_2h_battle_a_01.m2", + }, + { + fileId = "144682", + text = "axe_2h_battle_a_02.m2", + value = "axe_2h_battle_a_02.m2", + }, + { + fileId = "144686", + text = "axe_2h_battle_a_03.m2", + value = "axe_2h_battle_a_03.m2", + }, + { + fileId = "144692", + text = "axe_2h_battle_b_01.m2", + value = "axe_2h_battle_b_01.m2", + }, + { + fileId = "144693", + text = "axe_2h_battle_b_02holy.m2", + value = "axe_2h_battle_b_02holy.m2", + }, + { + fileId = "144695", + text = "axe_2h_blacksmithing_d_01.m2", + value = "axe_2h_blacksmithing_d_01.m2", + }, + { + fileId = "144697", + text = "axe_2h_blacksmithing_d_02.m2", + value = "axe_2h_blacksmithing_d_02.m2", + }, + { + fileId = "144699", + text = "axe_2h_blacksmithing_d_03.m2", + value = "axe_2h_blacksmithing_d_03.m2", + }, + { + fileId = "144700", + text = "axe_2h_blacktemple_d_01.m2", + value = "axe_2h_blacktemple_d_01.m2", + }, + { + fileId = "144704", + text = "axe_2h_blackwing_a_01.m2", + value = "axe_2h_blackwing_a_01.m2", + }, + { + fileId = "144706", + text = "axe_2h_blackwing_a_02.m2", + value = "axe_2h_blackwing_a_02.m2", + }, + { + fileId = "144708", + text = "axe_2h_blood_a_01.m2", + value = "axe_2h_blood_a_01.m2", + }, + { + fileId = "144713", + text = "axe_2h_blood_a_02.m2", + value = "axe_2h_blood_a_02.m2", + }, + { + fileId = "394713", + text = "axe_2h_bwdraid_d_02.m2", + value = "axe_2h_bwdraid_d_02.m2", + }, + { + fileId = "382693", + text = "axe_2h_cataclysm_b_01.m2", + value = "axe_2h_cataclysm_b_01.m2", + }, + { + fileId = "383959", + text = "axe_2h_cataclysm_b_02.m2", + value = "axe_2h_cataclysm_b_02.m2", + }, + { + fileId = "438773", + text = "axe_2h_cataclysm_c_01.m2", + value = "axe_2h_cataclysm_c_01.m2", + }, + { + fileId = "144718", + text = "axe_2h_deathknight_c_01.m2", + value = "axe_2h_deathknight_c_01.m2", + }, + { + fileId = "144720", + text = "axe_2h_deathknight_c_01_q.m2", + value = "axe_2h_deathknight_c_01_q.m2", + }, + { + fileId = "530226", + text = "axe_2h_deathwingraid_d_01.m2", + value = "axe_2h_deathwingraid_d_01.m2", + }, + { + fileId = "144725", + text = "axe_2h_draenei_a_01.m2", + value = "axe_2h_draenei_a_01.m2", + }, + { + fileId = "144730", + text = "axe_2h_draenei_b_01.m2", + value = "axe_2h_draenei_b_01.m2", + }, + { + fileId = "144736", + text = "axe_2h_draenei_c_01.m2", + value = "axe_2h_draenei_c_01.m2", + }, + { + fileId = "144742", + text = "axe_2h_draenei_d_01.m2", + value = "axe_2h_draenei_d_01.m2", + }, + { + fileId = "144748", + text = "axe_2h_draenei_d_02.m2", + value = "axe_2h_draenei_d_02.m2", + }, + { + fileId = "144750", + text = "axe_2h_draktharon_d_01.m2", + value = "axe_2h_draktharon_d_01.m2", + }, + { + fileId = "488609", + text = "axe_2h_firelandsraid_d_01.m2", + value = "axe_2h_firelandsraid_d_01.m2", + }, + { + fileId = "144759", + text = "axe_2h_gorehowl_c_01.m2", + value = "axe_2h_gorehowl_c_01.m2", + }, + { + fileId = "144760", + text = "axe_2h_gorehowl_d_01.m2", + value = "axe_2h_gorehowl_d_01.m2", + }, + { + fileId = "371396", + text = "axe_2h_grimbatolraid_d_01.m2", + value = "axe_2h_grimbatolraid_d_01.m2", + }, + { + fileId = "238586", + text = "axe_2h_guitar_c_01.m2", + value = "axe_2h_guitar_c_01.m2", + }, + { + fileId = "238588", + text = "axe_2h_guitar_c_02.m2", + value = "axe_2h_guitar_c_02.m2", + }, + { + fileId = "144762", + text = "axe_2h_hellfire_d_01.m2", + value = "axe_2h_hellfire_d_01.m2", + }, + { + fileId = "144763", + text = "axe_2h_horde_a_01.m2", + value = "axe_2h_horde_a_01.m2", + }, + { + fileId = "144770", + text = "axe_2h_horde_a_02.m2", + value = "axe_2h_horde_a_02.m2", + }, + { + fileId = "144776", + text = "axe_2h_horde_a_03.m2", + value = "axe_2h_horde_a_03.m2", + }, + { + fileId = "144782", + text = "axe_2h_horde_a_04.m2", + value = "axe_2h_horde_a_04.m2", + }, + { + fileId = "144788", + text = "axe_2h_horde_b_01.m2", + value = "axe_2h_horde_b_01.m2", + }, + { + fileId = "144791", + text = "axe_2h_horde_c_01.m2", + value = "axe_2h_horde_c_01.m2", + }, + { + fileId = "144798", + text = "axe_2h_horde_c_02.m2", + value = "axe_2h_horde_c_02.m2", + }, + { + fileId = "144804", + text = "axe_2h_horde_d_01.m2", + value = "axe_2h_horde_d_01.m2", + }, + { + fileId = "144810", + text = "axe_2h_horde_d_02.m2", + value = "axe_2h_horde_d_02.m2", + }, + { + fileId = "144813", + text = "axe_2h_horde_d_03.m2", + value = "axe_2h_horde_d_03.m2", + }, + { + fileId = "144817", + text = "axe_2h_horde_d_04.m2", + value = "axe_2h_horde_d_04.m2", + }, + { + fileId = "309981", + text = "axe_2h_icecrownraid_d_01.m2", + value = "axe_2h_icecrownraid_d_01.m2", + }, + { + fileId = "338486", + text = "axe_2h_icecrownraid_d_02.m2", + value = "axe_2h_icecrownraid_d_02.m2", + }, + { + fileId = "324968", + text = "axe_2h_icecrownraid_e_01.m2", + value = "axe_2h_icecrownraid_e_01.m2", + }, + { + fileId = "332723", + text = "axe_2h_icecrownraid_e_01alt.m2", + value = "axe_2h_icecrownraid_e_01alt.m2", + }, + { + fileId = "238590", + text = "axe_2h_naxx25_d_01.m2", + value = "axe_2h_naxx25_d_01.m2", + }, + { + fileId = "144821", + text = "axe_2h_nexus_d_01.m2", + value = "axe_2h_nexus_d_01.m2", + }, + { + fileId = "144827", + text = "axe_2h_northrend_b_01.m2", + value = "axe_2h_northrend_b_01.m2", + }, + { + fileId = "144833", + text = "axe_2h_northrend_b_02.m2", + value = "axe_2h_northrend_b_02.m2", + }, + { + fileId = "144839", + text = "axe_2h_northrend_c_01.m2", + value = "axe_2h_northrend_c_01.m2", + }, + { + fileId = "144844", + text = "axe_2h_northrend_c_02.m2", + value = "axe_2h_northrend_c_02.m2", + }, + { + fileId = "144849", + text = "axe_2h_northrend_c_03.m2", + value = "axe_2h_northrend_c_03.m2", + }, + { + fileId = "144855", + text = "axe_2h_northrend_d_01.m2", + value = "axe_2h_northrend_d_01.m2", + }, + { + fileId = "144860", + text = "axe_2h_outlandraid_d_01.m2", + value = "axe_2h_outlandraid_d_01.m2", + }, + { + fileId = "144862", + text = "axe_2h_outlandraid_d_02.m2", + value = "axe_2h_outlandraid_d_02.m2", + }, + { + fileId = "144864", + text = "axe_2h_outlandraid_d_02_green.m2", + value = "axe_2h_outlandraid_d_02_green.m2", + }, + { + fileId = "144865", + text = "axe_2h_outlandraid_d_02_red.m2", + value = "axe_2h_outlandraid_d_02_red.m2", + }, + { + fileId = "144867", + text = "axe_2h_outlandraid_d_03.m2", + value = "axe_2h_outlandraid_d_03.m2", + }, + { + fileId = "144869", + text = "axe_2h_outlandraid_d_04.m2", + value = "axe_2h_outlandraid_d_04.m2", + }, + { + fileId = "144871", + text = "axe_2h_outlandraid_d_05.m2", + value = "axe_2h_outlandraid_d_05.m2", + }, + { + fileId = "144873", + text = "axe_2h_outlandraid_d_06.m2", + value = "axe_2h_outlandraid_d_06.m2", + }, + { + fileId = "144875", + text = "axe_2h_outlandraid_d_07.m2", + value = "axe_2h_outlandraid_d_07.m2", + }, + { + fileId = "253361", + text = "axe_2h_pvealliance_d_01.m2", + value = "axe_2h_pvealliance_d_01.m2", + }, + { + fileId = "254176", + text = "axe_2h_pvehorde_d_01.m2", + value = "axe_2h_pvehorde_d_01.m2", + }, + { + fileId = "305965", + text = "axe_2h_pvp320_c_01.m2", + value = "axe_2h_pvp320_c_01.m2", + }, + { + fileId = "327383", + text = "axe_2h_pvp330_d_01.m2", + value = "axe_2h_pvp330_d_01.m2", + }, + { + fileId = "464085", + text = "axe_2h_pvp400_c_01.m2", + value = "axe_2h_pvp400_c_01.m2", + }, + { + fileId = "514852", + text = "axe_2h_pvp410_c_01.m2", + value = "axe_2h_pvp410_c_01.m2", + }, + { + fileId = "238595", + text = "axe_2h_pvp_c_01.m2", + value = "axe_2h_pvp_c_01.m2", + }, + { + fileId = "144880", + text = "axe_2h_pvpalliance_a_01.m2", + value = "axe_2h_pvpalliance_a_01.m2", + }, + { + fileId = "533335", + text = "axe_2h_pvpcataclysms3_c_01.m2", + value = "axe_2h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "144883", + text = "axe_2h_pvphorde_a_01.m2", + value = "axe_2h_pvphorde_a_01.m2", + }, + { + fileId = "144886", + text = "axe_2h_stratholme_d_01.m2", + value = "axe_2h_stratholme_d_01.m2", + }, + { + fileId = "144888", + text = "axe_2h_sunwell_c_01.m2", + value = "axe_2h_sunwell_c_01.m2", + }, + { + fileId = "333223", + text = "axe_2h_twilighthammer_c_01.m2", + value = "axe_2h_twilighthammer_c_01.m2", + }, + { + fileId = "238600", + text = "axe_2h_ulduarraid_d_01.m2", + value = "axe_2h_ulduarraid_d_01.m2", + }, + { + fileId = "144893", + text = "axe_2h_utgarde_d_01.m2", + value = "axe_2h_utgarde_d_01.m2", + }, + { + fileId = "144900", + text = "axe_2h_utgarde_d_02.m2", + value = "axe_2h_utgarde_d_02.m2", + }, + { + fileId = "144906", + text = "axe_2h_war_a_01.m2", + value = "axe_2h_war_a_01.m2", + }, + { + fileId = "144910", + text = "axe_2h_war_a_02.m2", + value = "axe_2h_war_a_02.m2", + }, + { + fileId = "144914", + text = "axe_2h_war_a_03.m2", + value = "axe_2h_war_a_03.m2", + }, + { + fileId = "144918", + text = "axe_2h_war_b_01.m2", + value = "axe_2h_war_b_01.m2", + }, + { + fileId = "144922", + text = "axe_2h_war_b_02.m2", + value = "axe_2h_war_b_02.m2", + }, + { + fileId = "144926", + text = "axe_2h_war_b_03.m2", + value = "axe_2h_war_b_03.m2", + }, + { + fileId = "144930", + text = "axe_2h_war_c_01.m2", + value = "axe_2h_war_c_01.m2", + }, + { + fileId = "144934", + text = "axe_2h_war_d_01.m2", + value = "axe_2h_war_d_01.m2", + }, + { + fileId = "144936", + text = "axe_2h_zulaman_d_01.m2", + value = "axe_2h_zulaman_d_01.m2", + }, + { + fileId = "144941", + text = "axe_2h_zulgurub_d_01.m2", + value = "axe_2h_zulgurub_d_01.m2", + }, + { + fileId = "375782", + text = "blowdart_pygmy.m2", + value = "blowdart_pygmy.m2", + }, + { + fileId = "536805", + text = "bow_1h_430future_c_01.m2", + value = "bow_1h_430future_c_01.m2", + }, + { + fileId = "524474", + text = "bow_1h_430nightelf_c_01.m2", + value = "bow_1h_430nightelf_c_01.m2", + }, + { + fileId = "144952", + text = "bow_1h_advanced_a_01.m2", + value = "bow_1h_advanced_a_01.m2", + }, + { + fileId = "144953", + text = "bow_1h_advanced_a_02.m2", + value = "bow_1h_advanced_a_02.m2", + }, + { + fileId = "144954", + text = "bow_1h_advanced_b_01.m2", + value = "bow_1h_advanced_b_01.m2", + }, + { + fileId = "144955", + text = "bow_1h_advanced_c_01.m2", + value = "bow_1h_advanced_c_01.m2", + }, + { + fileId = "144956", + text = "bow_1h_advanced_c_02.m2", + value = "bow_1h_advanced_c_02.m2", + }, + { + fileId = "144957", + text = "bow_1h_advanced_d_01.m2", + value = "bow_1h_advanced_d_01.m2", + }, + { + fileId = "144958", + text = "bow_1h_advanced_d_02.m2", + value = "bow_1h_advanced_d_02.m2", + }, + { + fileId = "144961", + text = "bow_1h_ahnqiraj_d_01.m2", + value = "bow_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "144962", + text = "bow_1h_ahnqiraj_d_02.m2", + value = "bow_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "144963", + text = "bow_1h_auchindoun_d_01.m2", + value = "bow_1h_auchindoun_d_01.m2", + }, + { + fileId = "144965", + text = "bow_1h_blacktemple_d_01.m2", + value = "bow_1h_blacktemple_d_01.m2", + }, + { + fileId = "144971", + text = "bow_1h_blackwing_a_01.m2", + value = "bow_1h_blackwing_a_01.m2", + }, + { + fileId = "144972", + text = "bow_1h_blood_a_01.m2", + value = "bow_1h_blood_a_01.m2", + }, + { + fileId = "144978", + text = "bow_1h_blood_a_02.m2", + value = "bow_1h_blood_a_02.m2", + }, + { + fileId = "144979", + text = "bow_1h_blood_b_01.m2", + value = "bow_1h_blood_b_01.m2", + }, + { + fileId = "144986", + text = "bow_1h_blood_c_01.m2", + value = "bow_1h_blood_c_01.m2", + }, + { + fileId = "144992", + text = "bow_1h_blood_d_01.m2", + value = "bow_1h_blood_d_01.m2", + }, + { + fileId = "374814", + text = "bow_1h_bwdraid_d_01.m2", + value = "bow_1h_bwdraid_d_01.m2", + }, + { + fileId = "394887", + text = "bow_1h_cataclysm_b_01.m2", + value = "bow_1h_cataclysm_b_01.m2", + }, + { + fileId = "392104", + text = "bow_1h_cataclysm_b_02.m2", + value = "bow_1h_cataclysm_b_02.m2", + }, + { + fileId = "448508", + text = "bow_1h_cataclysm_c_01.m2", + value = "bow_1h_cataclysm_c_01.m2", + }, + { + fileId = "144998", + text = "bow_1h_crossbow_a_01.m2", + value = "bow_1h_crossbow_a_01.m2", + }, + { + fileId = "531016", + text = "bow_1h_deathwingraiddw_d_01.m2", + value = "bow_1h_deathwingraiddw_d_01.m2", + }, + { + fileId = "145001", + text = "bow_1h_draktharon_d_01.m2", + value = "bow_1h_draktharon_d_01.m2", + }, + { + fileId = "145006", + text = "bow_1h_draktharon_d_02.m2", + value = "bow_1h_draktharon_d_02.m2", + }, + { + fileId = "528248", + text = "bow_1h_firelandsraid_d_01.m2", + value = "bow_1h_firelandsraid_d_01.m2", + }, + { + fileId = "332406", + text = "bow_1h_goblin_b_01.m2", + value = "bow_1h_goblin_b_01.m2", + }, + { + fileId = "145011", + text = "bow_1h_horde_a_01.m2", + value = "bow_1h_horde_a_01.m2", + }, + { + fileId = "145013", + text = "bow_1h_horde_b_01.m2", + value = "bow_1h_horde_b_01.m2", + }, + { + fileId = "145015", + text = "bow_1h_horde_c_01.m2", + value = "bow_1h_horde_c_01.m2", + }, + { + fileId = "145018", + text = "bow_1h_hunter_d_01.m2", + value = "bow_1h_hunter_d_01.m2", + }, + { + fileId = "145019", + text = "bow_1h_hunterepic.m2", + value = "bow_1h_hunterepic.m2", + }, + { + fileId = "145021", + text = "bow_1h_hyjal_d_01.m2", + value = "bow_1h_hyjal_d_01.m2", + }, + { + fileId = "310108", + text = "bow_1h_icecrownraid_d_01.m2", + value = "bow_1h_icecrownraid_d_01.m2", + }, + { + fileId = "145026", + text = "bow_1h_nexus_d_01.m2", + value = "bow_1h_nexus_d_01.m2", + }, + { + fileId = "145031", + text = "bow_1h_nexus_d_02.m2", + value = "bow_1h_nexus_d_02.m2", + }, + { + fileId = "145036", + text = "bow_1h_northrend_b_01.m2", + value = "bow_1h_northrend_b_01.m2", + }, + { + fileId = "145042", + text = "bow_1h_northrend_b_02.m2", + value = "bow_1h_northrend_b_02.m2", + }, + { + fileId = "145046", + text = "bow_1h_northrend_b_03.m2", + value = "bow_1h_northrend_b_03.m2", + }, + { + fileId = "145051", + text = "bow_1h_northrend_c_01.m2", + value = "bow_1h_northrend_c_01.m2", + }, + { + fileId = "145056", + text = "bow_1h_northrend_c_02.m2", + value = "bow_1h_northrend_c_02.m2", + }, + { + fileId = "145061", + text = "bow_1h_northrend_c_03.m2", + value = "bow_1h_northrend_c_03.m2", + }, + { + fileId = "145066", + text = "bow_1h_northrend_d_01.m2", + value = "bow_1h_northrend_d_01.m2", + }, + { + fileId = "145071", + text = "bow_1h_northrend_d_02.m2", + value = "bow_1h_northrend_d_02.m2", + }, + { + fileId = "145077", + text = "bow_1h_outlandraid_d_01.m2", + value = "bow_1h_outlandraid_d_01.m2", + }, + { + fileId = "145079", + text = "bow_1h_outlandraid_d_02.m2", + value = "bow_1h_outlandraid_d_02.m2", + }, + { + fileId = "145081", + text = "bow_1h_outlandraid_d_03.m2", + value = "bow_1h_outlandraid_d_03.m2", + }, + { + fileId = "145083", + text = "bow_1h_outlandraid_d_03_green.m2", + value = "bow_1h_outlandraid_d_03_green.m2", + }, + { + fileId = "145085", + text = "bow_1h_outlandraid_d_04.m2", + value = "bow_1h_outlandraid_d_04.m2", + }, + { + fileId = "145087", + text = "bow_1h_outlandraid_d_05.m2", + value = "bow_1h_outlandraid_d_05.m2", + }, + { + fileId = "145089", + text = "bow_1h_outlandraid_d_06.m2", + value = "bow_1h_outlandraid_d_06.m2", + }, + { + fileId = "145090", + text = "bow_1h_outlandraid_d_06_blue.m2", + value = "bow_1h_outlandraid_d_06_blue.m2", + }, + { + fileId = "304630", + text = "bow_1h_pvealliance_d_01.m2", + value = "bow_1h_pvealliance_d_01.m2", + }, + { + fileId = "305324", + text = "bow_1h_pvehorde_d_01.m2", + value = "bow_1h_pvehorde_d_01.m2", + }, + { + fileId = "306513", + text = "bow_1h_pvp320_c_01.m2", + value = "bow_1h_pvp320_c_01.m2", + }, + { + fileId = "326876", + text = "bow_1h_pvp330_d_01.m2", + value = "bow_1h_pvp330_d_01.m2", + }, + { + fileId = "462291", + text = "bow_1h_pvp400_c_01.m2", + value = "bow_1h_pvp400_c_01.m2", + }, + { + fileId = "512312", + text = "bow_1h_pvp410_c_01.m2", + value = "bow_1h_pvp410_c_01.m2", + }, + { + fileId = "238606", + text = "bow_1h_pvp_c_01.m2", + value = "bow_1h_pvp_c_01.m2", + }, + { + fileId = "145092", + text = "bow_1h_pvpalliance_a_01.m2", + value = "bow_1h_pvpalliance_a_01.m2", + }, + { + fileId = "529044", + text = "bow_1h_pvpcataclysms3_c_01.m2", + value = "bow_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "145094", + text = "bow_1h_pvphorde_a_01.m2", + value = "bow_1h_pvphorde_a_01.m2", + }, + { + fileId = "145095", + text = "bow_1h_short_a_01.m2", + value = "bow_1h_short_a_01.m2", + }, + { + fileId = "145097", + text = "bow_1h_standard_a_01.m2", + value = "bow_1h_standard_a_01.m2", + }, + { + fileId = "145101", + text = "bow_1h_standard_a_02.m2", + value = "bow_1h_standard_a_02.m2", + }, + { + fileId = "145105", + text = "bow_1h_standard_b_01.m2", + value = "bow_1h_standard_b_01.m2", + }, + { + fileId = "145109", + text = "bow_1h_standard_b_02.m2", + value = "bow_1h_standard_b_02.m2", + }, + { + fileId = "145113", + text = "bow_1h_standard_c_01.m2", + value = "bow_1h_standard_c_01.m2", + }, + { + fileId = "145117", + text = "bow_1h_standard_c_02.m2", + value = "bow_1h_standard_c_02.m2", + }, + { + fileId = "145122", + text = "bow_1h_stratholme_d_01.m2", + value = "bow_1h_stratholme_d_01.m2", + }, + { + fileId = "145124", + text = "bow_1h_stratholme_d_02.m2", + value = "bow_1h_stratholme_d_02.m2", + }, + { + fileId = "145133", + text = "bow_1h_sunwell_d_01.m2", + value = "bow_1h_sunwell_d_01.m2", + }, + { + fileId = "145142", + text = "bow_1h_sunwell_d_02.m2", + value = "bow_1h_sunwell_d_02.m2", + }, + { + fileId = "145145", + text = "bow_1h_sunwell_d_03.m2", + value = "bow_1h_sunwell_d_03.m2", + }, + { + fileId = "354437", + text = "bow_1h_tradeskill_c_01.m2", + value = "bow_1h_tradeskill_c_01.m2", + }, + { + fileId = "387416", + text = "bow_1h_twilighthammer_c_01.m2", + value = "bow_1h_twilighthammer_c_01.m2", + }, + { + fileId = "238612", + text = "bow_1h_ulduarraid_d_01.m2", + value = "bow_1h_ulduarraid_d_01.m2", + }, + { + fileId = "145150", + text = "bow_1h_utgarde_d_01.m2", + value = "bow_1h_utgarde_d_01.m2", + }, + { + fileId = "145156", + text = "bow_1h_utgarde_d_02.m2", + value = "bow_1h_utgarde_d_02.m2", + }, + { + fileId = "331786", + text = "bow_1h_worgen_b_01.m2", + value = "bow_1h_worgen_b_01.m2", + }, + { + fileId = "145162", + text = "bow_1h_zulaman_d_01.m2", + value = "bow_1h_zulaman_d_01.m2", + }, + { + fileId = "145167", + text = "bow_1h_zulgurub_d_01.m2", + value = "bow_1h_zulgurub_d_01.m2", + }, + { + fileId = "145169", + text = "bow_1h_zulgurub_d_02.m2", + value = "bow_1h_zulgurub_d_02.m2", + }, + { + fileId = "145170", + text = "bow_2h_crossbow_a_01.m2", + value = "bow_2h_crossbow_a_01.m2", + }, + { + fileId = "145173", + text = "bow_2h_crossbow_b_01.m2", + value = "bow_2h_crossbow_b_01.m2", + }, + { + fileId = "145176", + text = "bow_2h_crossbow_blacktemple_d_01.m2", + value = "bow_2h_crossbow_blacktemple_d_01.m2", + }, + { + fileId = "145183", + text = "bow_2h_crossbow_blackwing_a_01.m2", + value = "bow_2h_crossbow_blackwing_a_01.m2", + }, + { + fileId = "145184", + text = "bow_2h_crossbow_c_01.m2", + value = "bow_2h_crossbow_c_01.m2", + }, + { + fileId = "386408", + text = "bow_2h_crossbow_cataclysm_b_01.m2", + value = "bow_2h_crossbow_cataclysm_b_01.m2", + }, + { + fileId = "394801", + text = "bow_2h_crossbow_cataclysm_b_02.m2", + value = "bow_2h_crossbow_cataclysm_b_02.m2", + }, + { + fileId = "145186", + text = "bow_2h_crossbow_cotstrat_d_01.m2", + value = "bow_2h_crossbow_cotstrat_d_01.m2", + }, + { + fileId = "145190", + text = "bow_2h_crossbow_dalaran_d_01.m2", + value = "bow_2h_crossbow_dalaran_d_01.m2", + }, + { + fileId = "530333", + text = "bow_2h_crossbow_deathwingraid_d_01.m2", + value = "bow_2h_crossbow_deathwingraid_d_01.m2", + }, + { + fileId = "145196", + text = "bow_2h_crossbow_draenei_a_01.m2", + value = "bow_2h_crossbow_draenei_a_01.m2", + }, + { + fileId = "145201", + text = "bow_2h_crossbow_draenei_a_02.m2", + value = "bow_2h_crossbow_draenei_a_02.m2", + }, + { + fileId = "512964", + text = "bow_2h_crossbow_firelandsraid_d_01.m2", + value = "bow_2h_crossbow_firelandsraid_d_01.m2", + }, + { + fileId = "371673", + text = "bow_2h_crossbow_grimbatolraid_d_01.m2", + value = "bow_2h_crossbow_grimbatolraid_d_01.m2", + }, + { + fileId = "320311", + text = "bow_2h_crossbow_icecrownraid_d_01.m2", + value = "bow_2h_crossbow_icecrownraid_d_01.m2", + }, + { + fileId = "145209", + text = "bow_2h_crossbow_nexus_d_01.m2", + value = "bow_2h_crossbow_nexus_d_01.m2", + }, + { + fileId = "145215", + text = "bow_2h_crossbow_northrend_b_01.m2", + value = "bow_2h_crossbow_northrend_b_01.m2", + }, + { + fileId = "145221", + text = "bow_2h_crossbow_northrend_b_02.m2", + value = "bow_2h_crossbow_northrend_b_02.m2", + }, + { + fileId = "145227", + text = "bow_2h_crossbow_northrend_c_01.m2", + value = "bow_2h_crossbow_northrend_c_01.m2", + }, + { + fileId = "145232", + text = "bow_2h_crossbow_northrend_c_02.m2", + value = "bow_2h_crossbow_northrend_c_02.m2", + }, + { + fileId = "145237", + text = "bow_2h_crossbow_northrend_d_01.m2", + value = "bow_2h_crossbow_northrend_d_01.m2", + }, + { + fileId = "145243", + text = "bow_2h_crossbow_outlandpvp_d_01.m2", + value = "bow_2h_crossbow_outlandpvp_d_01.m2", + }, + { + fileId = "145250", + text = "bow_2h_crossbow_outlandraid_d_01.m2", + value = "bow_2h_crossbow_outlandraid_d_01.m2", + }, + { + fileId = "145252", + text = "bow_2h_crossbow_outlandraid_d_04.m2", + value = "bow_2h_crossbow_outlandraid_d_04.m2", + }, + { + fileId = "145254", + text = "bow_2h_crossbow_outlandraid_d_05.m2", + value = "bow_2h_crossbow_outlandraid_d_05.m2", + }, + { + fileId = "145256", + text = "bow_2h_crossbow_outlandraid_d_06.m2", + value = "bow_2h_crossbow_outlandraid_d_06.m2", + }, + { + fileId = "304546", + text = "bow_2h_crossbow_pvealliance_d_01.m2", + value = "bow_2h_crossbow_pvealliance_d_01.m2", + }, + { + fileId = "305436", + text = "bow_2h_crossbow_pvehorde_d_01.m2", + value = "bow_2h_crossbow_pvehorde_d_01.m2", + }, + { + fileId = "305939", + text = "bow_2h_crossbow_pvp320_c_01.m2", + value = "bow_2h_crossbow_pvp320_c_01.m2", + }, + { + fileId = "326881", + text = "bow_2h_crossbow_pvp330_d_01.m2", + value = "bow_2h_crossbow_pvp330_d_01.m2", + }, + { + fileId = "465145", + text = "bow_2h_crossbow_pvp400_c_01.m2", + value = "bow_2h_crossbow_pvp400_c_01.m2", + }, + { + fileId = "512078", + text = "bow_2h_crossbow_pvp410_c_01.m2", + value = "bow_2h_crossbow_pvp410_c_01.m2", + }, + { + fileId = "238616", + text = "bow_2h_crossbow_pvp_c_01.m2", + value = "bow_2h_crossbow_pvp_c_01.m2", + }, + { + fileId = "145258", + text = "bow_2h_crossbow_pvpalliance_a_01.m2", + value = "bow_2h_crossbow_pvpalliance_a_01.m2", + }, + { + fileId = "525135", + text = "bow_2h_crossbow_pvpcataclysms3_c_01.m2", + value = "bow_2h_crossbow_pvpcataclysms3_c_01.m2", + }, + { + fileId = "145261", + text = "bow_2h_crossbow_pvphorde_a_01.m2", + value = "bow_2h_crossbow_pvphorde_a_01.m2", + }, + { + fileId = "145264", + text = "bow_2h_crossbow_stratholme_d_01.m2", + value = "bow_2h_crossbow_stratholme_d_01.m2", + }, + { + fileId = "145265", + text = "bow_2h_crossbow_sunwell_c_01.m2", + value = "bow_2h_crossbow_sunwell_c_01.m2", + }, + { + fileId = "145271", + text = "bow_2h_crossbow_ulduar_d_01.m2", + value = "bow_2h_crossbow_ulduar_d_01.m2", + }, + { + fileId = "249262", + text = "bow_2h_crossbow_ulduarraid_d_01.m2", + value = "bow_2h_crossbow_ulduarraid_d_01.m2", + }, + { + fileId = "145278", + text = "bow_2h_crossbow_utgarde_d_01.m2", + value = "bow_2h_crossbow_utgarde_d_01.m2", + }, + { + fileId = "145283", + text = "bow_2h_crossbow_zulgurub_d_01.m2", + value = "bow_2h_crossbow_zulgurub_d_01.m2", + }, + { + fileId = "145298", + text = "club_1h_cane_a_01.m2", + value = "club_1h_cane_a_01.m2", + }, + { + fileId = "145300", + text = "club_1h_exotic_a_01.m2", + value = "club_1h_exotic_a_01.m2", + }, + { + fileId = "145301", + text = "club_1h_spiked_a_01.m2", + value = "club_1h_spiked_a_01.m2", + }, + { + fileId = "145304", + text = "club_1h_torch_a_01.m2", + value = "club_1h_torch_a_01.m2", + }, + { + fileId = "145306", + text = "club_1h_torch_a_02.m2", + value = "club_1h_torch_a_02.m2", + }, + { + fileId = "145307", + text = "club_1h_torch_a_03northrend.m2", + value = "club_1h_torch_a_03northrend.m2", + }, + { + fileId = "145308", + text = "club_1h_torch_a_03northrend_light.m2", + value = "club_1h_torch_a_03northrend_light.m2", + }, + { + fileId = "238623", + text = "firearm_2h_naxx25_d_01.m2", + value = "firearm_2h_naxx25_d_01.m2", + }, + { + fileId = "304290", + text = "firearm_2h_pvealliance_d_01.m2", + value = "firearm_2h_pvealliance_d_01.m2", + }, + { + fileId = "304884", + text = "firearm_2h_pvehorde_d_01.m2", + value = "firearm_2h_pvehorde_d_01.m2", + }, + { + fileId = "238628", + text = "firearm_2h_pvp_c_01.m2", + value = "firearm_2h_pvp_c_01.m2", + }, + { + fileId = "528949", + text = "firearm_2h_rifle_430future_c_01.m2", + value = "firearm_2h_rifle_430future_c_01.m2", + }, + { + fileId = "145319", + text = "firearm_2h_rifle_a_01.m2", + value = "firearm_2h_rifle_a_01.m2", + }, + { + fileId = "145323", + text = "firearm_2h_rifle_a_02.m2", + value = "firearm_2h_rifle_a_02.m2", + }, + { + fileId = "145328", + text = "firearm_2h_rifle_a_03.m2", + value = "firearm_2h_rifle_a_03.m2", + }, + { + fileId = "145329", + text = "firearm_2h_rifle_a_03scope.m2", + value = "firearm_2h_rifle_a_03scope.m2", + }, + { + fileId = "145333", + text = "firearm_2h_rifle_a_04.m2", + value = "firearm_2h_rifle_a_04.m2", + }, + { + fileId = "145334", + text = "firearm_2h_rifle_a_04scopesniper.m2", + value = "firearm_2h_rifle_a_04scopesniper.m2", + }, + { + fileId = "145335", + text = "firearm_2h_rifle_a_05.m2", + value = "firearm_2h_rifle_a_05.m2", + }, + { + fileId = "145346", + text = "firearm_2h_rifle_a_06.m2", + value = "firearm_2h_rifle_a_06.m2", + }, + { + fileId = "145348", + text = "firearm_2h_rifle_ahnqiraj_d_01.m2", + value = "firearm_2h_rifle_ahnqiraj_d_01.m2", + }, + { + fileId = "145350", + text = "firearm_2h_rifle_ahnqiraj_d_02.m2", + value = "firearm_2h_rifle_ahnqiraj_d_02.m2", + }, + { + fileId = "304082", + text = "firearm_2h_rifle_alliancecovenant_d_01.m2", + value = "firearm_2h_rifle_alliancecovenant_d_01.m2", + }, + { + fileId = "145356", + text = "firearm_2h_rifle_b_01.m2", + value = "firearm_2h_rifle_b_01.m2", + }, + { + fileId = "145360", + text = "firearm_2h_rifle_b_02.m2", + value = "firearm_2h_rifle_b_02.m2", + }, + { + fileId = "145366", + text = "firearm_2h_rifle_b_03.m2", + value = "firearm_2h_rifle_b_03.m2", + }, + { + fileId = "145372", + text = "firearm_2h_rifle_blood_a_01.m2", + value = "firearm_2h_rifle_blood_a_01.m2", + }, + { + fileId = "145377", + text = "firearm_2h_rifle_blood_b_01.m2", + value = "firearm_2h_rifle_blood_b_01.m2", + }, + { + fileId = "145383", + text = "firearm_2h_rifle_blood_c_01.m2", + value = "firearm_2h_rifle_blood_c_01.m2", + }, + { + fileId = "145389", + text = "firearm_2h_rifle_blood_d_01.m2", + value = "firearm_2h_rifle_blood_d_01.m2", + }, + { + fileId = "373489", + text = "firearm_2h_rifle_bwdraid_d_01.m2", + value = "firearm_2h_rifle_bwdraid_d_01.m2", + }, + { + fileId = "377894", + text = "firearm_2h_rifle_cataclysm_b_01.m2", + value = "firearm_2h_rifle_cataclysm_b_01.m2", + }, + { + fileId = "391141", + text = "firearm_2h_rifle_cataclysm_b_02.m2", + value = "firearm_2h_rifle_cataclysm_b_02.m2", + }, + { + fileId = "446151", + text = "firearm_2h_rifle_cataclysm_c_01.m2", + value = "firearm_2h_rifle_cataclysm_c_01.m2", + }, + { + fileId = "145395", + text = "firearm_2h_rifle_cotstrat_d_01.m2", + value = "firearm_2h_rifle_cotstrat_d_01.m2", + }, + { + fileId = "238633", + text = "firearm_2h_rifle_dalaran_d_01.m2", + value = "firearm_2h_rifle_dalaran_d_01.m2", + }, + { + fileId = "536313", + text = "firearm_2h_rifle_deathwingraid_d_01.m2", + value = "firearm_2h_rifle_deathwingraid_d_01.m2", + }, + { + fileId = "145401", + text = "firearm_2h_rifle_draenei_a_01.m2", + value = "firearm_2h_rifle_draenei_a_01.m2", + }, + { + fileId = "145407", + text = "firearm_2h_rifle_engineering_d_01.m2", + value = "firearm_2h_rifle_engineering_d_01.m2", + }, + { + fileId = "346994", + text = "firearm_2h_rifle_engineering_d_02.m2", + value = "firearm_2h_rifle_engineering_d_02.m2", + }, + { + fileId = "347430", + text = "firearm_2h_rifle_engineering_d_03.m2", + value = "firearm_2h_rifle_engineering_d_03.m2", + }, + { + fileId = "331790", + text = "firearm_2h_rifle_goblin_b_01.m2", + value = "firearm_2h_rifle_goblin_b_01.m2", + }, + { + fileId = "145409", + text = "firearm_2h_rifle_hellfire_c_01.m2", + value = "firearm_2h_rifle_hellfire_c_01.m2", + }, + { + fileId = "145411", + text = "firearm_2h_rifle_hellfire_d_01.m2", + value = "firearm_2h_rifle_hellfire_d_01.m2", + }, + { + fileId = "294385", + text = "firearm_2h_rifle_hordecovenant_d_01.m2", + value = "firearm_2h_rifle_hordecovenant_d_01.m2", + }, + { + fileId = "145415", + text = "firearm_2h_rifle_hunteralliancelvl20.m2", + value = "firearm_2h_rifle_hunteralliancelvl20.m2", + }, + { + fileId = "145416", + text = "firearm_2h_rifle_hunteralliancelvl50.m2", + value = "firearm_2h_rifle_hunteralliancelvl50.m2", + }, + { + fileId = "145417", + text = "firearm_2h_rifle_hunterhordelvl20.m2", + value = "firearm_2h_rifle_hunterhordelvl20.m2", + }, + { + fileId = "145419", + text = "firearm_2h_rifle_hunterhordelvl50.m2", + value = "firearm_2h_rifle_hunterhordelvl50.m2", + }, + { + fileId = "308322", + text = "firearm_2h_rifle_icecrownraid_d_01.m2", + value = "firearm_2h_rifle_icecrownraid_d_01.m2", + }, + { + fileId = "145422", + text = "firearm_2h_rifle_nexus_d_01.m2", + value = "firearm_2h_rifle_nexus_d_01.m2", + }, + { + fileId = "145447", + text = "firearm_2h_rifle_outlandraid_d_01.m2", + value = "firearm_2h_rifle_outlandraid_d_01.m2", + }, + { + fileId = "145449", + text = "firearm_2h_rifle_outlandraid_d_02.m2", + value = "firearm_2h_rifle_outlandraid_d_02.m2", + }, + { + fileId = "145451", + text = "firearm_2h_rifle_outlandraid_d_03.m2", + value = "firearm_2h_rifle_outlandraid_d_03.m2", + }, + { + fileId = "145453", + text = "firearm_2h_rifle_outlandraid_d_04.m2", + value = "firearm_2h_rifle_outlandraid_d_04.m2", + }, + { + fileId = "145460", + text = "firearm_2h_rifle_outlandraid_d_05.m2", + value = "firearm_2h_rifle_outlandraid_d_05.m2", + }, + { + fileId = "145467", + text = "firearm_2h_rifle_outlandraid_d_06.m2", + value = "firearm_2h_rifle_outlandraid_d_06.m2", + }, + { + fileId = "145473", + text = "firearm_2h_rifle_plague_a_01.m2", + value = "firearm_2h_rifle_plague_a_01.m2", + }, + { + fileId = "307038", + text = "firearm_2h_rifle_pvp320_c_01.m2", + value = "firearm_2h_rifle_pvp320_c_01.m2", + }, + { + fileId = "327384", + text = "firearm_2h_rifle_pvp330_d_01.m2", + value = "firearm_2h_rifle_pvp330_d_01.m2", + }, + { + fileId = "467114", + text = "firearm_2h_rifle_pvp400_c_01.m2", + value = "firearm_2h_rifle_pvp400_c_01.m2", + }, + { + fileId = "514062", + text = "firearm_2h_rifle_pvp410_c_01.m2", + value = "firearm_2h_rifle_pvp410_c_01.m2", + }, + { + fileId = "145475", + text = "firearm_2h_rifle_pvpalliance_a_01.m2", + value = "firearm_2h_rifle_pvpalliance_a_01.m2", + }, + { + fileId = "527582", + text = "firearm_2h_rifle_pvpcataclysms3_c_01.m2", + value = "firearm_2h_rifle_pvpcataclysms3_c_01.m2", + }, + { + fileId = "145477", + text = "firearm_2h_rifle_pvphorde_a_01.m2", + value = "firearm_2h_rifle_pvphorde_a_01.m2", + }, + { + fileId = "145479", + text = "firearm_2h_rifle_raid_moltencore.m2", + value = "firearm_2h_rifle_raid_moltencore.m2", + }, + { + fileId = "145482", + text = "firearm_2h_rifle_stratholme_d_01.m2", + value = "firearm_2h_rifle_stratholme_d_01.m2", + }, + { + fileId = "145484", + text = "firearm_2h_rifle_sunwell_d_01.m2", + value = "firearm_2h_rifle_sunwell_d_01.m2", + }, + { + fileId = "344805", + text = "firearm_2h_rifle_twilighthammer_c_01.m2", + value = "firearm_2h_rifle_twilighthammer_c_01.m2", + }, + { + fileId = "145489", + text = "firearm_2h_rifle_ulduar_d_01.m2", + value = "firearm_2h_rifle_ulduar_d_01.m2", + }, + { + fileId = "249271", + text = "firearm_2h_rifle_ulduarraid_d_01.m2", + value = "firearm_2h_rifle_ulduarraid_d_01.m2", + }, + { + fileId = "145495", + text = "firearm_2h_rifle_utgarde_d_01.m2", + value = "firearm_2h_rifle_utgarde_d_01.m2", + }, + { + fileId = "331441", + text = "firearm_2h_rifle_worgen_b_01.m2", + value = "firearm_2h_rifle_worgen_b_01.m2", + }, + { + fileId = "145502", + text = "firearm_2h_rifle_zulaman_d_01.m2", + value = "firearm_2h_rifle_zulaman_d_01.m2", + }, + { + fileId = "145507", + text = "firearm_2h_rifle_zulgurub_d_01.m2", + value = "firearm_2h_rifle_zulgurub_d_01.m2", + }, + { + fileId = "145508", + text = "firearm_2h_shotgun_b_01.m2", + value = "firearm_2h_shotgun_b_01.m2", + }, + { + fileId = "329805", + text = "firearm_2h_shotgun_b_01alt.m2", + value = "firearm_2h_shotgun_b_01alt.m2", + }, + { + fileId = "383475", + text = "glaive_1h_twilighthammer_b_01.m2", + value = "glaive_1h_twilighthammer_b_01.m2", + }, + { + fileId = "145521", + text = "glave_1h_blood_c_01.m2", + value = "glave_1h_blood_c_01.m2", + }, + { + fileId = "145523", + text = "glave_1h_dualblade_a_01.m2", + value = "glave_1h_dualblade_a_01.m2", + }, + { + fileId = "145527", + text = "glave_1h_dualblade_a_02.m2", + value = "glave_1h_dualblade_a_02.m2", + }, + { + fileId = "145531", + text = "glave_1h_dualblade_a_03.m2", + value = "glave_1h_dualblade_a_03.m2", + }, + { + fileId = "145535", + text = "glave_1h_dualblade_b_01.m2", + value = "glave_1h_dualblade_b_01.m2", + }, + { + fileId = "145539", + text = "glave_1h_dualblade_b_02.m2", + value = "glave_1h_dualblade_b_02.m2", + }, + { + fileId = "145545", + text = "glave_1h_dualblade_b_03.m2", + value = "glave_1h_dualblade_b_03.m2", + }, + { + fileId = "145550", + text = "glave_1h_dualblade_c_01.m2", + value = "glave_1h_dualblade_c_01.m2", + }, + { + fileId = "145554", + text = "glave_1h_dualblade_d_01.m2", + value = "glave_1h_dualblade_d_01.m2", + }, + { + fileId = "145558", + text = "glave_1h_dualblade_d_01left.m2", + value = "glave_1h_dualblade_d_01left.m2", + }, + { + fileId = "145562", + text = "glave_1h_dualblade_d_02.m2", + value = "glave_1h_dualblade_d_02.m2", + }, + { + fileId = "145564", + text = "glave_1h_dualblade_d_02left.m2", + value = "glave_1h_dualblade_d_02left.m2", + }, + { + fileId = "145566", + text = "glave_1h_magtheridon_d_01.m2", + value = "glave_1h_magtheridon_d_01.m2", + }, + { + fileId = "145568", + text = "glave_1h_short_a_01.m2", + value = "glave_1h_short_a_01.m2", + }, + { + fileId = "145573", + text = "glave_1h_short_a_02.m2", + value = "glave_1h_short_a_02.m2", + }, + { + fileId = "145578", + text = "glave_1h_short_a_03.m2", + value = "glave_1h_short_a_03.m2", + }, + { + fileId = "145583", + text = "glave_1h_short_b_01.m2", + value = "glave_1h_short_b_01.m2", + }, + { + fileId = "145588", + text = "glave_1h_short_c_01.m2", + value = "glave_1h_short_c_01.m2", + }, + { + fileId = "145592", + text = "glave_1h_short_c_02.m2", + value = "glave_1h_short_c_02.m2", + }, + { + fileId = "145602", + text = "hammer_1h_epic_d_01.m2", + value = "hammer_1h_epic_d_01.m2", + }, + { + fileId = "238638", + text = "hammer_1h_healer_pvp_c_01.m2", + value = "hammer_1h_healer_pvp_c_01.m2", + }, + { + fileId = "145603", + text = "hammer_1h_horde_a_01.m2", + value = "hammer_1h_horde_a_01.m2", + }, + { + fileId = "145607", + text = "hammer_1h_horde_a_02.m2", + value = "hammer_1h_horde_a_02.m2", + }, + { + fileId = "145612", + text = "hammer_1h_horde_a_03.m2", + value = "hammer_1h_horde_a_03.m2", + }, + { + fileId = "145615", + text = "hammer_1h_horde_a_04.m2", + value = "hammer_1h_horde_a_04.m2", + }, + { + fileId = "145621", + text = "hammer_1h_horde_b_01.m2", + value = "hammer_1h_horde_b_01.m2", + }, + { + fileId = "145626", + text = "hammer_1h_horde_b_02.m2", + value = "hammer_1h_horde_b_02.m2", + }, + { + fileId = "145632", + text = "hammer_1h_horde_d_02.m2", + value = "hammer_1h_horde_d_02.m2", + }, + { + fileId = "145634", + text = "hammer_1h_maul_a_01.m2", + value = "hammer_1h_maul_a_01.m2", + }, + { + fileId = "145638", + text = "hammer_1h_maul_a_02.m2", + value = "hammer_1h_maul_a_02.m2", + }, + { + fileId = "145642", + text = "hammer_1h_maul_a_03.m2", + value = "hammer_1h_maul_a_03.m2", + }, + { + fileId = "145646", + text = "hammer_1h_maul_b_01.m2", + value = "hammer_1h_maul_b_01.m2", + }, + { + fileId = "145650", + text = "hammer_1h_maul_b_02.m2", + value = "hammer_1h_maul_b_02.m2", + }, + { + fileId = "145654", + text = "hammer_1h_maul_b_03.m2", + value = "hammer_1h_maul_b_03.m2", + }, + { + fileId = "238643", + text = "hammer_1h_melee_pvp_c_01.m2", + value = "hammer_1h_melee_pvp_c_01.m2", + }, + { + fileId = "145659", + text = "hammer_1h_pvpalliance_a_01.m2", + value = "hammer_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145663", + text = "hammer_1h_pvphorde_a_01.m2", + value = "hammer_1h_pvphorde_a_01.m2", + }, + { + fileId = "145666", + text = "hammer_1h_standard_a_01.m2", + value = "hammer_1h_standard_a_01.m2", + }, + { + fileId = "145670", + text = "hammer_1h_standard_a_02.m2", + value = "hammer_1h_standard_a_02.m2", + }, + { + fileId = "145674", + text = "hammer_1h_standard_a_03.m2", + value = "hammer_1h_standard_a_03.m2", + }, + { + fileId = "145678", + text = "hammer_1h_standard_b_01.m2", + value = "hammer_1h_standard_b_01.m2", + }, + { + fileId = "145682", + text = "hammer_1h_standard_b_02.m2", + value = "hammer_1h_standard_b_02.m2", + }, + { + fileId = "145686", + text = "hammer_1h_standard_b_03.m2", + value = "hammer_1h_standard_b_03.m2", + }, + { + fileId = "145690", + text = "hammer_1h_standard_c_01.m2", + value = "hammer_1h_standard_c_01.m2", + }, + { + fileId = "145695", + text = "hammer_1h_standard_c_03thaurissan.m2", + value = "hammer_1h_standard_c_03thaurissan.m2", + }, + { + fileId = "145697", + text = "hammer_1h_standard_e_01.m2", + value = "hammer_1h_standard_e_01.m2", + }, + { + fileId = "145699", + text = "hammer_1h_war_b_01holy.m2", + value = "hammer_1h_war_b_01holy.m2", + }, + { + fileId = "145700", + text = "hammer_1h_war_d_01.m2", + value = "hammer_1h_war_d_01.m2", + }, + { + fileId = "145702", + text = "hammer_2h_crystal_c_01.m2", + value = "hammer_2h_crystal_c_01.m2", + }, + { + fileId = "145707", + text = "hammer_2h_crystal_c_02.m2", + value = "hammer_2h_crystal_c_02.m2", + }, + { + fileId = "145712", + text = "hammer_2h_crystal_c_03.m2", + value = "hammer_2h_crystal_c_03.m2", + }, + { + fileId = "145718", + text = "hammer_2h_horde_a_01.m2", + value = "hammer_2h_horde_a_01.m2", + }, + { + fileId = "145723", + text = "hammer_2h_horde_a_02.m2", + value = "hammer_2h_horde_a_02.m2", + }, + { + fileId = "145725", + text = "hammer_2h_horde_a_03.m2", + value = "hammer_2h_horde_a_03.m2", + }, + { + fileId = "145730", + text = "hammer_2h_horde_a_04.m2", + value = "hammer_2h_horde_a_04.m2", + }, + { + fileId = "145732", + text = "hammer_2h_horde_b_01.m2", + value = "hammer_2h_horde_b_01.m2", + }, + { + fileId = "145737", + text = "hammer_2h_horde_b_02.m2", + value = "hammer_2h_horde_b_02.m2", + }, + { + fileId = "145742", + text = "hammer_2h_horde_b_03.m2", + value = "hammer_2h_horde_b_03.m2", + }, + { + fileId = "145743", + text = "hammer_2h_horde_b_04.m2", + value = "hammer_2h_horde_b_04.m2", + }, + { + fileId = "145745", + text = "hammer_2h_horde_c_01.m2", + value = "hammer_2h_horde_c_01.m2", + }, + { + fileId = "145752", + text = "hammer_2h_horde_c_02.m2", + value = "hammer_2h_horde_c_02.m2", + }, + { + fileId = "145758", + text = "hammer_2h_horde_c_03.m2", + value = "hammer_2h_horde_c_03.m2", + }, + { + fileId = "145760", + text = "hammer_2h_horde_c_04.m2", + value = "hammer_2h_horde_c_04.m2", + }, + { + fileId = "145764", + text = "hammer_2h_maul_a_01.m2", + value = "hammer_2h_maul_a_01.m2", + }, + { + fileId = "145768", + text = "hammer_2h_maul_a_02.m2", + value = "hammer_2h_maul_a_02.m2", + }, + { + fileId = "145772", + text = "hammer_2h_maul_a_03.m2", + value = "hammer_2h_maul_a_03.m2", + }, + { + fileId = "145776", + text = "hammer_2h_maul_b_01.m2", + value = "hammer_2h_maul_b_01.m2", + }, + { + fileId = "145780", + text = "hammer_2h_maul_b_02.m2", + value = "hammer_2h_maul_b_02.m2", + }, + { + fileId = "145785", + text = "hammer_2h_maul_b_03.m2", + value = "hammer_2h_maul_b_03.m2", + }, + { + fileId = "238649", + text = "hammer_2h_pvp_c_01.m2", + value = "hammer_2h_pvp_c_01.m2", + }, + { + fileId = "145790", + text = "hammer_2h_pvpalliance_a_01.m2", + value = "hammer_2h_pvpalliance_a_01.m2", + }, + { + fileId = "145794", + text = "hammer_2h_pvphorde_a_01.m2", + value = "hammer_2h_pvphorde_a_01.m2", + }, + { + fileId = "145797", + text = "hammer_2h_standard_d_01.m2", + value = "hammer_2h_standard_d_01.m2", + }, + { + fileId = "145801", + text = "hammer_2h_standard_d_02.m2", + value = "hammer_2h_standard_d_02.m2", + }, + { + fileId = "145802", + text = "hammer_2h_standard_d_03.m2", + value = "hammer_2h_standard_d_03.m2", + }, + { + fileId = "145809", + text = "hammer_2h_standard_e_01.m2", + value = "hammer_2h_standard_e_01.m2", + }, + { + fileId = "145810", + text = "hammer_2h_war_a_01.m2", + value = "hammer_2h_war_a_01.m2", + }, + { + fileId = "537103", + text = "hammer_2h_war_a_02.m2", + value = "hammer_2h_war_a_02.m2", + }, + { + fileId = "145815", + text = "hammer_2h_war_b_01holy.m2", + value = "hammer_2h_war_b_01holy.m2", + }, + { + fileId = "536832", + text = "hand_1h_430oldgod_c_01.m2", + value = "hand_1h_430oldgod_c_01.m2", + }, + { + fileId = "145817", + text = "hand_1h_ahnqiraj_d_01.m2", + value = "hand_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "145819", + text = "hand_1h_ahnqiraj_d_02.m2", + value = "hand_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "145821", + text = "hand_1h_ahnqiraj_d_03.m2", + value = "hand_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "145824", + text = "hand_1h_auchindoun_d_01left.m2", + value = "hand_1h_auchindoun_d_01left.m2", + }, + { + fileId = "145825", + text = "hand_1h_auchindoun_d_01right.m2", + value = "hand_1h_auchindoun_d_01right.m2", + }, + { + fileId = "145827", + text = "hand_1h_blackwing_a_01.m2", + value = "hand_1h_blackwing_a_01.m2", + }, + { + fileId = "145828", + text = "hand_1h_blackwing_a_01left.m2", + value = "hand_1h_blackwing_a_01left.m2", + }, + { + fileId = "145830", + text = "hand_1h_blackwing_a_02.m2", + value = "hand_1h_blackwing_a_02.m2", + }, + { + fileId = "145831", + text = "hand_1h_blackwing_a_02left.m2", + value = "hand_1h_blackwing_a_02left.m2", + }, + { + fileId = "371094", + text = "hand_1h_bwdraid_d_01left.m2", + value = "hand_1h_bwdraid_d_01left.m2", + }, + { + fileId = "371095", + text = "hand_1h_bwdraid_d_01right.m2", + value = "hand_1h_bwdraid_d_01right.m2", + }, + { + fileId = "395792", + text = "hand_1h_cataclysm_b_01left.m2", + value = "hand_1h_cataclysm_b_01left.m2", + }, + { + fileId = "395793", + text = "hand_1h_cataclysm_b_01right.m2", + value = "hand_1h_cataclysm_b_01right.m2", + }, + { + fileId = "389203", + text = "hand_1h_cataclysm_b_02left.m2", + value = "hand_1h_cataclysm_b_02left.m2", + }, + { + fileId = "389205", + text = "hand_1h_cataclysm_b_02right.m2", + value = "hand_1h_cataclysm_b_02right.m2", + }, + { + fileId = "454342", + text = "hand_1h_cataclysm_c_01left.m2", + value = "hand_1h_cataclysm_c_01left.m2", + }, + { + fileId = "454344", + text = "hand_1h_cataclysm_c_01right.m2", + value = "hand_1h_cataclysm_c_01right.m2", + }, + { + fileId = "145832", + text = "hand_1h_claw_a_01.m2", + value = "hand_1h_claw_a_01.m2", + }, + { + fileId = "145834", + text = "hand_1h_claw_a_01left.m2", + value = "hand_1h_claw_a_01left.m2", + }, + { + fileId = "145837", + text = "hand_1h_claw_a_02.m2", + value = "hand_1h_claw_a_02.m2", + }, + { + fileId = "145840", + text = "hand_1h_claw_a_02left.m2", + value = "hand_1h_claw_a_02left.m2", + }, + { + fileId = "145842", + text = "hand_1h_claw_b_01.m2", + value = "hand_1h_claw_b_01.m2", + }, + { + fileId = "145844", + text = "hand_1h_claw_b_01left.m2", + value = "hand_1h_claw_b_01left.m2", + }, + { + fileId = "145846", + text = "hand_1h_draktharon_d_01left.m2", + value = "hand_1h_draktharon_d_01left.m2", + }, + { + fileId = "145847", + text = "hand_1h_draktharon_d_01right.m2", + value = "hand_1h_draktharon_d_01right.m2", + }, + { + fileId = "448524", + text = "hand_1h_giant_duskwoodtree.m2", + value = "hand_1h_giant_duskwoodtree.m2", + }, + { + fileId = "238653", + text = "hand_1h_giant_weaponclub.m2", + value = "hand_1h_giant_weaponclub.m2", + }, + { + fileId = "369215", + text = "hand_1h_grimbatolraid_d_01left.m2", + value = "hand_1h_grimbatolraid_d_01left.m2", + }, + { + fileId = "369216", + text = "hand_1h_grimbatolraid_d_01right.m2", + value = "hand_1h_grimbatolraid_d_01right.m2", + }, + { + fileId = "308099", + text = "hand_1h_icecrownraid_d_01left.m2", + value = "hand_1h_icecrownraid_d_01left.m2", + }, + { + fileId = "308100", + text = "hand_1h_icecrownraid_d_01right.m2", + value = "hand_1h_icecrownraid_d_01right.m2", + }, + { + fileId = "311346", + text = "hand_1h_icecrownraid_d_02left.m2", + value = "hand_1h_icecrownraid_d_02left.m2", + }, + { + fileId = "311349", + text = "hand_1h_icecrownraid_d_02right.m2", + value = "hand_1h_icecrownraid_d_02right.m2", + }, + { + fileId = "145850", + text = "hand_1h_kargath_d_01left.m2", + value = "hand_1h_kargath_d_01left.m2", + }, + { + fileId = "145853", + text = "hand_1h_kargath_d_01right.m2", + value = "hand_1h_kargath_d_01right.m2", + }, + { + fileId = "145855", + text = "hand_1h_knuckle_a_01.m2", + value = "hand_1h_knuckle_a_01.m2", + }, + { + fileId = "145859", + text = "hand_1h_knuckle_b_01.m2", + value = "hand_1h_knuckle_b_01.m2", + }, + { + fileId = "238659", + text = "hand_1h_naxx25_d_01.m2", + value = "hand_1h_naxx25_d_01.m2", + }, + { + fileId = "238661", + text = "hand_1h_naxx25_d_02.m2", + value = "hand_1h_naxx25_d_02.m2", + }, + { + fileId = "238664", + text = "hand_1h_naxx25_d_02left.m2", + value = "hand_1h_naxx25_d_02left.m2", + }, + { + fileId = "238667", + text = "hand_1h_naxx25_d_02right.m2", + value = "hand_1h_naxx25_d_02right.m2", + }, + { + fileId = "145864", + text = "hand_1h_naxxramas_d_01.m2", + value = "hand_1h_naxxramas_d_01.m2", + }, + { + fileId = "238668", + text = "hand_1h_naxxramas_d_01right.m2", + value = "hand_1h_naxxramas_d_01right.m2", + }, + { + fileId = "145867", + text = "hand_1h_nexus_d_01left.m2", + value = "hand_1h_nexus_d_01left.m2", + }, + { + fileId = "145870", + text = "hand_1h_nexus_d_01right.m2", + value = "hand_1h_nexus_d_01right.m2", + }, + { + fileId = "145873", + text = "hand_1h_outlandpvp_d_01left.m2", + value = "hand_1h_outlandpvp_d_01left.m2", + }, + { + fileId = "145877", + text = "hand_1h_outlandpvp_d_01right.m2", + value = "hand_1h_outlandpvp_d_01right.m2", + }, + { + fileId = "145882", + text = "hand_1h_outlandraid_d_01left.m2", + value = "hand_1h_outlandraid_d_01left.m2", + }, + { + fileId = "145883", + text = "hand_1h_outlandraid_d_01right.m2", + value = "hand_1h_outlandraid_d_01right.m2", + }, + { + fileId = "145885", + text = "hand_1h_outlandraid_d_02left.m2", + value = "hand_1h_outlandraid_d_02left.m2", + }, + { + fileId = "145889", + text = "hand_1h_outlandraid_d_02right.m2", + value = "hand_1h_outlandraid_d_02right.m2", + }, + { + fileId = "145894", + text = "hand_1h_outlandraid_d_03left.m2", + value = "hand_1h_outlandraid_d_03left.m2", + }, + { + fileId = "145896", + text = "hand_1h_outlandraid_d_03right.m2", + value = "hand_1h_outlandraid_d_03right.m2", + }, + { + fileId = "145901", + text = "hand_1h_outlandraid_d_04left.m2", + value = "hand_1h_outlandraid_d_04left.m2", + }, + { + fileId = "145902", + text = "hand_1h_outlandraid_d_04right.m2", + value = "hand_1h_outlandraid_d_04right.m2", + }, + { + fileId = "145904", + text = "hand_1h_outlandraid_d_05left.m2", + value = "hand_1h_outlandraid_d_05left.m2", + }, + { + fileId = "145905", + text = "hand_1h_outlandraid_d_05right.m2", + value = "hand_1h_outlandraid_d_05right.m2", + }, + { + fileId = "304828", + text = "hand_1h_pvealliance_d_01left.m2", + value = "hand_1h_pvealliance_d_01left.m2", + }, + { + fileId = "304829", + text = "hand_1h_pvealliance_d_01right.m2", + value = "hand_1h_pvealliance_d_01right.m2", + }, + { + fileId = "305704", + text = "hand_1h_pvehorde_d_01left.m2", + value = "hand_1h_pvehorde_d_01left.m2", + }, + { + fileId = "305708", + text = "hand_1h_pvehorde_d_01right.m2", + value = "hand_1h_pvehorde_d_01right.m2", + }, + { + fileId = "306521", + text = "hand_1h_pvp320_c_01left.m2", + value = "hand_1h_pvp320_c_01left.m2", + }, + { + fileId = "306522", + text = "hand_1h_pvp320_c_01right.m2", + value = "hand_1h_pvp320_c_01right.m2", + }, + { + fileId = "326809", + text = "hand_1h_pvp330_d_01left.m2", + value = "hand_1h_pvp330_d_01left.m2", + }, + { + fileId = "326811", + text = "hand_1h_pvp330_d_01right.m2", + value = "hand_1h_pvp330_d_01right.m2", + }, + { + fileId = "465028", + text = "hand_1h_pvp400_c_01left.m2", + value = "hand_1h_pvp400_c_01left.m2", + }, + { + fileId = "465029", + text = "hand_1h_pvp400_c_01right.m2", + value = "hand_1h_pvp400_c_01right.m2", + }, + { + fileId = "238672", + text = "hand_1h_pvp_c_01left.m2", + value = "hand_1h_pvp_c_01left.m2", + }, + { + fileId = "238674", + text = "hand_1h_pvp_c_01right.m2", + value = "hand_1h_pvp_c_01right.m2", + }, + { + fileId = "145907", + text = "hand_1h_pvpalliance_a_01.m2", + value = "hand_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145908", + text = "hand_1h_pvpalliance_a_01left.m2", + value = "hand_1h_pvpalliance_a_01left.m2", + }, + { + fileId = "145916", + text = "hand_1h_raid_d_01left.m2", + value = "hand_1h_raid_d_01left.m2", + }, + { + fileId = "145917", + text = "hand_1h_raid_d_01right.m2", + value = "hand_1h_raid_d_01right.m2", + }, + { + fileId = "145924", + text = "hand_1h_raid_d_02left.m2", + value = "hand_1h_raid_d_02left.m2", + }, + { + fileId = "145925", + text = "hand_1h_raid_d_02right.m2", + value = "hand_1h_raid_d_02right.m2", + }, + { + fileId = "145931", + text = "hand_1h_raid_d_03left.m2", + value = "hand_1h_raid_d_03left.m2", + }, + { + fileId = "145932", + text = "hand_1h_raid_d_03right.m2", + value = "hand_1h_raid_d_03right.m2", + }, + { + fileId = "145936", + text = "hand_1h_shaman_d_01left.m2", + value = "hand_1h_shaman_d_01left.m2", + }, + { + fileId = "145938", + text = "hand_1h_shaman_d_01right.m2", + value = "hand_1h_shaman_d_01right.m2", + }, + { + fileId = "145939", + text = "hand_1h_sunwell_c_01.m2", + value = "hand_1h_sunwell_c_01.m2", + }, + { + fileId = "145941", + text = "hand_1h_sunwell_c_01left.m2", + value = "hand_1h_sunwell_c_01left.m2", + }, + { + fileId = "145944", + text = "hand_1h_sunwell_c_01right.m2", + value = "hand_1h_sunwell_c_01right.m2", + }, + { + fileId = "145950", + text = "hand_1h_sunwell_d_01left.m2", + value = "hand_1h_sunwell_d_01left.m2", + }, + { + fileId = "145951", + text = "hand_1h_sunwell_d_01right.m2", + value = "hand_1h_sunwell_d_01right.m2", + }, + { + fileId = "145957", + text = "hand_1h_sunwell_d_02left.m2", + value = "hand_1h_sunwell_d_02left.m2", + }, + { + fileId = "145958", + text = "hand_1h_sunwell_d_02right.m2", + value = "hand_1h_sunwell_d_02right.m2", + }, + { + fileId = "357263", + text = "hand_1h_tradeskill_c_01.m2", + value = "hand_1h_tradeskill_c_01.m2", + }, + { + fileId = "238678", + text = "hand_1h_ulduarraid_d_01left.m2", + value = "hand_1h_ulduarraid_d_01left.m2", + }, + { + fileId = "238680", + text = "hand_1h_ulduarraid_d_01right.m2", + value = "hand_1h_ulduarraid_d_01right.m2", + }, + { + fileId = "238685", + text = "hand_1h_ulduarraid_d_02left.m2", + value = "hand_1h_ulduarraid_d_02left.m2", + }, + { + fileId = "238687", + text = "hand_1h_ulduarraid_d_02right.m2", + value = "hand_1h_ulduarraid_d_02right.m2", + }, + { + fileId = "145962", + text = "hand_1h_utgarde_d_01left.m2", + value = "hand_1h_utgarde_d_01left.m2", + }, + { + fileId = "145964", + text = "hand_1h_utgarde_d_01right.m2", + value = "hand_1h_utgarde_d_01right.m2", + }, + { + fileId = "145966", + text = "hand_1h_zulaman_d_01left.m2", + value = "hand_1h_zulaman_d_01left.m2", + }, + { + fileId = "145968", + text = "hand_1h_zulaman_d_01right.m2", + value = "hand_1h_zulaman_d_01right.m2", + }, + { + fileId = "145971", + text = "hand_1h_zulaman_d_02left.m2", + value = "hand_1h_zulaman_d_02left.m2", + }, + { + fileId = "145974", + text = "hand_1h_zulaman_d_02right.m2", + value = "hand_1h_zulaman_d_02right.m2", + }, + { + fileId = "145976", + text = "hand_1h_zulgurub_d_01.m2", + value = "hand_1h_zulgurub_d_01.m2", + }, + { + fileId = "145977", + text = "hand_1h_zulgurub_d_01left.m2", + value = "hand_1h_zulgurub_d_01left.m2", + }, + { + fileId = "145978", + text = "hand_1h_zulgurub_d_02.m2", + value = "hand_1h_zulgurub_d_02.m2", + }, + { + fileId = "145980", + text = "hand_1h_zulgurub_d_02left.m2", + value = "hand_1h_zulgurub_d_02left.m2", + }, + { + fileId = "145982", + text = "hand_lh_pvphorde_a_01.m2", + value = "hand_lh_pvphorde_a_01.m2", + }, + { + fileId = "145983", + text = "hand_rh_pvphorde_a_01.m2", + value = "hand_rh_pvphorde_a_01.m2", + }, + { + fileId = "526767", + text = "knife_1h_430future_c_01.m2", + value = "knife_1h_430future_c_01.m2", + }, + { + fileId = "538493", + text = "knife_1h_430oldgod_c_01.m2", + value = "knife_1h_430oldgod_c_01.m2", + }, + { + fileId = "530817", + text = "knife_1h_430oldgod_c_02.m2", + value = "knife_1h_430oldgod_c_02.m2", + }, + { + fileId = "145994", + text = "knife_1h_ahnqiraj_d_01.m2", + value = "knife_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "145995", + text = "knife_1h_ahnqiraj_d_02.m2", + value = "knife_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "145996", + text = "knife_1h_ahnqiraj_d_03.m2", + value = "knife_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "145997", + text = "knife_1h_ahnqiraj_d_04.m2", + value = "knife_1h_ahnqiraj_d_04.m2", + }, + { + fileId = "294003", + text = "knife_1h_alliancecovenant_d_01.m2", + value = "knife_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "145998", + text = "knife_1h_blacktemple_d_01.m2", + value = "knife_1h_blacktemple_d_01.m2", + }, + { + fileId = "146003", + text = "knife_1h_blacktemple_d_02.m2", + value = "knife_1h_blacktemple_d_02.m2", + }, + { + fileId = "146007", + text = "knife_1h_blacktemple_d_03.m2", + value = "knife_1h_blacktemple_d_03.m2", + }, + { + fileId = "146009", + text = "knife_1h_blackwing_a_01.m2", + value = "knife_1h_blackwing_a_01.m2", + }, + { + fileId = "146011", + text = "knife_1h_blackwing_a_02.m2", + value = "knife_1h_blackwing_a_02.m2", + }, + { + fileId = "146013", + text = "knife_1h_blood_a_01.m2", + value = "knife_1h_blood_a_01.m2", + }, + { + fileId = "146018", + text = "knife_1h_blood_a_02.m2", + value = "knife_1h_blood_a_02.m2", + }, + { + fileId = "146021", + text = "knife_1h_blood_a_03.m2", + value = "knife_1h_blood_a_03.m2", + }, + { + fileId = "146025", + text = "knife_1h_blood_a_04.m2", + value = "knife_1h_blood_a_04.m2", + }, + { + fileId = "146029", + text = "knife_1h_blood_a_05.m2", + value = "knife_1h_blood_a_05.m2", + }, + { + fileId = "146033", + text = "knife_1h_blood_b_01.m2", + value = "knife_1h_blood_b_01.m2", + }, + { + fileId = "146037", + text = "knife_1h_blood_b_02.m2", + value = "knife_1h_blood_b_02.m2", + }, + { + fileId = "369763", + text = "knife_1h_bwdraid_d_01.m2", + value = "knife_1h_bwdraid_d_01.m2", + }, + { + fileId = "375473", + text = "knife_1h_bwdraid_d_02.m2", + value = "knife_1h_bwdraid_d_02.m2", + }, + { + fileId = "238688", + text = "knife_1h_caster_pvp_c_01.m2", + value = "knife_1h_caster_pvp_c_01.m2", + }, + { + fileId = "378605", + text = "knife_1h_cataclysm_b_01.m2", + value = "knife_1h_cataclysm_b_01.m2", + }, + { + fileId = "383420", + text = "knife_1h_cataclysm_b_02.m2", + value = "knife_1h_cataclysm_b_02.m2", + }, + { + fileId = "458208", + text = "knife_1h_cataclysm_c_01.m2", + value = "knife_1h_cataclysm_c_01.m2", + }, + { + fileId = "466365", + text = "knife_1h_cataclysm_c_02.m2", + value = "knife_1h_cataclysm_c_02.m2", + }, + { + fileId = "460835", + text = "knife_1h_cataclysm_c_03.m2", + value = "knife_1h_cataclysm_c_03.m2", + }, + { + fileId = "460836", + text = "knife_1h_cataclysm_c_04.m2", + value = "knife_1h_cataclysm_c_04.m2", + }, + { + fileId = "463469", + text = "knife_1h_cataclysm_c_05.m2", + value = "knife_1h_cataclysm_c_05.m2", + }, + { + fileId = "464121", + text = "knife_1h_cataclysm_c_06.m2", + value = "knife_1h_cataclysm_c_06.m2", + }, + { + fileId = "146042", + text = "knife_1h_caverns_d_01.m2", + value = "knife_1h_caverns_d_01.m2", + }, + { + fileId = "146043", + text = "knife_1h_cleaver_a_01.m2", + value = "knife_1h_cleaver_a_01.m2", + }, + { + fileId = "146046", + text = "knife_1h_coilfang_d_01.m2", + value = "knife_1h_coilfang_d_01.m2", + }, + { + fileId = "146052", + text = "knife_1h_coilfang_d_02.m2", + value = "knife_1h_coilfang_d_02.m2", + }, + { + fileId = "464846", + text = "knife_1h_common_b_01.m2", + value = "knife_1h_common_b_01.m2", + }, + { + fileId = "146053", + text = "knife_1h_cotstrat_d_01.m2", + value = "knife_1h_cotstrat_d_01.m2", + }, + { + fileId = "146058", + text = "knife_1h_cotstrat_d_02.m2", + value = "knife_1h_cotstrat_d_02.m2", + }, + { + fileId = "146063", + text = "knife_1h_cotstrat_d_03.m2", + value = "knife_1h_cotstrat_d_03.m2", + }, + { + fileId = "146068", + text = "knife_1h_dagger_a_01.m2", + value = "knife_1h_dagger_a_01.m2", + }, + { + fileId = "146072", + text = "knife_1h_dagger_a_02.m2", + value = "knife_1h_dagger_a_02.m2", + }, + { + fileId = "146076", + text = "knife_1h_dagger_a_03.m2", + value = "knife_1h_dagger_a_03.m2", + }, + { + fileId = "146081", + text = "knife_1h_dagger_a_04.m2", + value = "knife_1h_dagger_a_04.m2", + }, + { + fileId = "146086", + text = "knife_1h_dagger_b_01.m2", + value = "knife_1h_dagger_b_01.m2", + }, + { + fileId = "146090", + text = "knife_1h_dagger_b_02.m2", + value = "knife_1h_dagger_b_02.m2", + }, + { + fileId = "146094", + text = "knife_1h_dagger_b_03.m2", + value = "knife_1h_dagger_b_03.m2", + }, + { + fileId = "146101", + text = "knife_1h_dagger_b_04.m2", + value = "knife_1h_dagger_b_04.m2", + }, + { + fileId = "146107", + text = "knife_1h_dagger_b_05.m2", + value = "knife_1h_dagger_b_05.m2", + }, + { + fileId = "146112", + text = "knife_1h_dagger_b_06.m2", + value = "knife_1h_dagger_b_06.m2", + }, + { + fileId = "146117", + text = "knife_1h_dalaran_d_01.m2", + value = "knife_1h_dalaran_d_01.m2", + }, + { + fileId = "537233", + text = "knife_1h_deathwingraid_d_01.m2", + value = "knife_1h_deathwingraid_d_01.m2", + }, + { + fileId = "538069", + text = "knife_1h_deathwingraid_d_02.m2", + value = "knife_1h_deathwingraid_d_02.m2", + }, + { + fileId = "534472", + text = "knife_1h_deathwingraid_e_01.m2", + value = "knife_1h_deathwingraid_e_01.m2", + }, + { + fileId = "534476", + text = "knife_1h_deathwingraid_e_02.m2", + value = "knife_1h_deathwingraid_e_02.m2", + }, + { + fileId = "534564", + text = "knife_1h_deathwingraid_e_03.m2", + value = "knife_1h_deathwingraid_e_03.m2", + }, + { + fileId = "537602", + text = "knife_1h_deathwingraiddw_d_01.m2", + value = "knife_1h_deathwingraiddw_d_01.m2", + }, + { + fileId = "146122", + text = "knife_1h_draenei_a_01.m2", + value = "knife_1h_draenei_a_01.m2", + }, + { + fileId = "146128", + text = "knife_1h_draenei_a_02.m2", + value = "knife_1h_draenei_a_02.m2", + }, + { + fileId = "146134", + text = "knife_1h_draenei_a_03.m2", + value = "knife_1h_draenei_a_03.m2", + }, + { + fileId = "238693", + text = "knife_1h_draktharon_d_01.m2", + value = "knife_1h_draktharon_d_01.m2", + }, + { + fileId = "146143", + text = "knife_1h_epic_a_03.m2", + value = "knife_1h_epic_a_03.m2", + }, + { + fileId = "146144", + text = "knife_1h_epic_a_04.m2", + value = "knife_1h_epic_a_04.m2", + }, + { + fileId = "146146", + text = "knife_1h_epic_a_05.m2", + value = "knife_1h_epic_a_05.m2", + }, + { + fileId = "322908", + text = "knife_1h_epic_a_05alt.m2", + value = "knife_1h_epic_a_05alt.m2", + }, + { + fileId = "146148", + text = "knife_1h_exotic_a_01.m2", + value = "knife_1h_exotic_a_01.m2", + }, + { + fileId = "146152", + text = "knife_1h_exotic_a_02.m2", + value = "knife_1h_exotic_a_02.m2", + }, + { + fileId = "146156", + text = "knife_1h_exotic_b_01.m2", + value = "knife_1h_exotic_b_01.m2", + }, + { + fileId = "146160", + text = "knife_1h_exotic_b_02.m2", + value = "knife_1h_exotic_b_02.m2", + }, + { + fileId = "510054", + text = "knife_1h_firelandsraid_d_01.m2", + value = "knife_1h_firelandsraid_d_01.m2", + }, + { + fileId = "469667", + text = "knife_1h_firelandsraid_d_02.m2", + value = "knife_1h_firelandsraid_d_02.m2", + }, + { + fileId = "510002", + text = "knife_1h_firelandsraid_d_03.m2", + value = "knife_1h_firelandsraid_d_03.m2", + }, + { + fileId = "331057", + text = "knife_1h_goblin_b_01.m2", + value = "knife_1h_goblin_b_01.m2", + }, + { + fileId = "368980", + text = "knife_1h_grimbatolraid_d_01.m2", + value = "knife_1h_grimbatolraid_d_01.m2", + }, + { + fileId = "371789", + text = "knife_1h_grimbatolraid_d_02.m2", + value = "knife_1h_grimbatolraid_d_02.m2", + }, + { + fileId = "376000", + text = "knife_1h_grimbatolraid_d_03.m2", + value = "knife_1h_grimbatolraid_d_03.m2", + }, + { + fileId = "146164", + text = "knife_1h_hellfire_c_01.m2", + value = "knife_1h_hellfire_c_01.m2", + }, + { + fileId = "146170", + text = "knife_1h_horde_a_01.m2", + value = "knife_1h_horde_a_01.m2", + }, + { + fileId = "294042", + text = "knife_1h_hordecovenant_d_01.m2", + value = "knife_1h_hordecovenant_d_01.m2", + }, + { + fileId = "146174", + text = "knife_1h_hotpoker_a_01.m2", + value = "knife_1h_hotpoker_a_01.m2", + }, + { + fileId = "146176", + text = "knife_1h_hunting_a_01.m2", + value = "knife_1h_hunting_a_01.m2", + }, + { + fileId = "146180", + text = "knife_1h_hunting_a_02.m2", + value = "knife_1h_hunting_a_02.m2", + }, + { + fileId = "146184", + text = "knife_1h_hunting_b_01.m2", + value = "knife_1h_hunting_b_01.m2", + }, + { + fileId = "146188", + text = "knife_1h_hunting_b_02.m2", + value = "knife_1h_hunting_b_02.m2", + }, + { + fileId = "146192", + text = "knife_1h_hyjal_d_01.m2", + value = "knife_1h_hyjal_d_01.m2", + }, + { + fileId = "146197", + text = "knife_1h_hyjal_d_02.m2", + value = "knife_1h_hyjal_d_02.m2", + }, + { + fileId = "314890", + text = "knife_1h_icecrownraid_d_01.m2", + value = "knife_1h_icecrownraid_d_01.m2", + }, + { + fileId = "311604", + text = "knife_1h_icecrownraid_d_02.m2", + value = "knife_1h_icecrownraid_d_02.m2", + }, + { + fileId = "322121", + text = "knife_1h_icecrownraid_d_03.m2", + value = "knife_1h_icecrownraid_d_03.m2", + }, + { + fileId = "319210", + text = "knife_1h_icecrownraid_d_04.m2", + value = "knife_1h_icecrownraid_d_04.m2", + }, + { + fileId = "324971", + text = "knife_1h_icecrownraid_d_05.m2", + value = "knife_1h_icecrownraid_d_05.m2", + }, + { + fileId = "146203", + text = "knife_1h_katana_a_01.m2", + value = "knife_1h_katana_a_01.m2", + }, + { + fileId = "146207", + text = "knife_1h_katana_b_01.m2", + value = "knife_1h_katana_b_01.m2", + }, + { + fileId = "146211", + text = "knife_1h_korean_a_01.m2", + value = "knife_1h_korean_a_01.m2", + }, + { + fileId = "146216", + text = "knife_1h_mage_d_01.m2", + value = "knife_1h_mage_d_01.m2", + }, + { + fileId = "238699", + text = "knife_1h_naxx25_d_01.m2", + value = "knife_1h_naxx25_d_01.m2", + }, + { + fileId = "146221", + text = "knife_1h_naxxramas_d_01.m2", + value = "knife_1h_naxxramas_d_01.m2", + }, + { + fileId = "146222", + text = "knife_1h_nexus_d_01.m2", + value = "knife_1h_nexus_d_01.m2", + }, + { + fileId = "146226", + text = "knife_1h_nexus_d_02.m2", + value = "knife_1h_nexus_d_02.m2", + }, + { + fileId = "146231", + text = "knife_1h_nexus_d_03.m2", + value = "knife_1h_nexus_d_03.m2", + }, + { + fileId = "146236", + text = "knife_1h_northrend_b_01.m2", + value = "knife_1h_northrend_b_01.m2", + }, + { + fileId = "146241", + text = "knife_1h_northrend_b_02.m2", + value = "knife_1h_northrend_b_02.m2", + }, + { + fileId = "146246", + text = "knife_1h_northrend_b_03.m2", + value = "knife_1h_northrend_b_03.m2", + }, + { + fileId = "146251", + text = "knife_1h_northrend_c_01.m2", + value = "knife_1h_northrend_c_01.m2", + }, + { + fileId = "146256", + text = "knife_1h_northrend_c_02.m2", + value = "knife_1h_northrend_c_02.m2", + }, + { + fileId = "146258", + text = "knife_1h_northrend_c_03.m2", + value = "knife_1h_northrend_c_03.m2", + }, + { + fileId = "146262", + text = "knife_1h_northrend_d_01.m2", + value = "knife_1h_northrend_d_01.m2", + }, + { + fileId = "146268", + text = "knife_1h_northrend_d_02.m2", + value = "knife_1h_northrend_d_02.m2", + }, + { + fileId = "325206", + text = "knife_1h_onyxia_a_01alt.m2", + value = "knife_1h_onyxia_a_01alt.m2", + }, + { + fileId = "146273", + text = "knife_1h_outlandraid_d_01.m2", + value = "knife_1h_outlandraid_d_01.m2", + }, + { + fileId = "252192", + text = "knife_1h_pvealliance_d_01.m2", + value = "knife_1h_pvealliance_d_01.m2", + }, + { + fileId = "304423", + text = "knife_1h_pvealliance_d_02.m2", + value = "knife_1h_pvealliance_d_02.m2", + }, + { + fileId = "250124", + text = "knife_1h_pvehorde_d_01.m2", + value = "knife_1h_pvehorde_d_01.m2", + }, + { + fileId = "250648", + text = "knife_1h_pvehorde_d_02.m2", + value = "knife_1h_pvehorde_d_02.m2", + }, + { + fileId = "307043", + text = "knife_1h_pvp320_c_01.m2", + value = "knife_1h_pvp320_c_01.m2", + }, + { + fileId = "307369", + text = "knife_1h_pvp320_c_02.m2", + value = "knife_1h_pvp320_c_02.m2", + }, + { + fileId = "326812", + text = "knife_1h_pvp330_d_01.m2", + value = "knife_1h_pvp330_d_01.m2", + }, + { + fileId = "326885", + text = "knife_1h_pvp330_d_02.m2", + value = "knife_1h_pvp330_d_02.m2", + }, + { + fileId = "467841", + text = "knife_1h_pvp400_c_01.m2", + value = "knife_1h_pvp400_c_01.m2", + }, + { + fileId = "512678", + text = "knife_1h_pvp410_c_01.m2", + value = "knife_1h_pvp410_c_01.m2", + }, + { + fileId = "519006", + text = "knife_1h_pvp410_c_02.m2", + value = "knife_1h_pvp410_c_02.m2", + }, + { + fileId = "146279", + text = "knife_1h_pvpalliance_a_01.m2", + value = "knife_1h_pvpalliance_a_01.m2", + }, + { + fileId = "534862", + text = "knife_1h_pvpcataclysms3_c_01.m2", + value = "knife_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "529181", + text = "knife_1h_pvpcataclysms3_c_02.m2", + value = "knife_1h_pvpcataclysms3_c_02.m2", + }, + { + fileId = "146284", + text = "knife_1h_pvphorde_a_01.m2", + value = "knife_1h_pvphorde_a_01.m2", + }, + { + fileId = "146291", + text = "knife_1h_raid_d_01.m2", + value = "knife_1h_raid_d_01.m2", + }, + { + fileId = "146293", + text = "knife_1h_raid_d_02.m2", + value = "knife_1h_raid_d_02.m2", + }, + { + fileId = "146295", + text = "knife_1h_raid_d_03.m2", + value = "knife_1h_raid_d_03.m2", + }, + { + fileId = "146297", + text = "knife_1h_raid_d_04.m2", + value = "knife_1h_raid_d_04.m2", + }, + { + fileId = "146299", + text = "knife_1h_raid_d_05.m2", + value = "knife_1h_raid_d_05.m2", + }, + { + fileId = "146301", + text = "knife_1h_rogue_d_01.m2", + value = "knife_1h_rogue_d_01.m2", + }, + { + fileId = "238704", + text = "knife_1h_rogue_pvp_c_01.m2", + value = "knife_1h_rogue_pvp_c_01.m2", + }, + { + fileId = "146306", + text = "knife_1h_standard_a_01.m2", + value = "knife_1h_standard_a_01.m2", + }, + { + fileId = "146309", + text = "knife_1h_stratholme_d_01.m2", + value = "knife_1h_stratholme_d_01.m2", + }, + { + fileId = "146311", + text = "knife_1h_stratholme_d_02.m2", + value = "knife_1h_stratholme_d_02.m2", + }, + { + fileId = "146313", + text = "knife_1h_stratholme_d_03.m2", + value = "knife_1h_stratholme_d_03.m2", + }, + { + fileId = "146315", + text = "knife_1h_sunwell_c_01.m2", + value = "knife_1h_sunwell_c_01.m2", + }, + { + fileId = "146319", + text = "knife_1h_sunwell_c_02.m2", + value = "knife_1h_sunwell_c_02.m2", + }, + { + fileId = "146324", + text = "knife_1h_sunwell_d_01.m2", + value = "knife_1h_sunwell_d_01.m2", + }, + { + fileId = "146330", + text = "knife_1h_sunwell_d_02.m2", + value = "knife_1h_sunwell_d_02.m2", + }, + { + fileId = "146335", + text = "knife_1h_sunwell_d_03.m2", + value = "knife_1h_sunwell_d_03.m2", + }, + { + fileId = "146340", + text = "knife_1h_sunwell_d_04.m2", + value = "knife_1h_sunwell_d_04.m2", + }, + { + fileId = "146345", + text = "knife_1h_tarantula_b_01.m2", + value = "knife_1h_tarantula_b_01.m2", + }, + { + fileId = "353137", + text = "knife_1h_tradeskill_c_01.m2", + value = "knife_1h_tradeskill_c_01.m2", + }, + { + fileId = "353647", + text = "knife_1h_tradeskill_c_02.m2", + value = "knife_1h_tradeskill_c_02.m2", + }, + { + fileId = "146351", + text = "knife_1h_tuskarr_b_01.m2", + value = "knife_1h_tuskarr_b_01.m2", + }, + { + fileId = "332411", + text = "knife_1h_twilighthammer_c_01.m2", + value = "knife_1h_twilighthammer_c_01.m2", + }, + { + fileId = "238709", + text = "knife_1h_ulduarraid_d_01.m2", + value = "knife_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238714", + text = "knife_1h_ulduarraid_d_02.m2", + value = "knife_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238720", + text = "knife_1h_ulduarraid_d_03.m2", + value = "knife_1h_ulduarraid_d_03.m2", + }, + { + fileId = "238725", + text = "knife_1h_ulduarraid_d_04.m2", + value = "knife_1h_ulduarraid_d_04.m2", + }, + { + fileId = "238726", + text = "knife_1h_ulduarraid_d_05.m2", + value = "knife_1h_ulduarraid_d_05.m2", + }, + { + fileId = "146354", + text = "knife_1h_utgarde_d_01.m2", + value = "knife_1h_utgarde_d_01.m2", + }, + { + fileId = "146359", + text = "knife_1h_utgarde_d_02.m2", + value = "knife_1h_utgarde_d_02.m2", + }, + { + fileId = "146364", + text = "knife_1h_utgarde_d_03.m2", + value = "knife_1h_utgarde_d_03.m2", + }, + { + fileId = "146369", + text = "knife_1h_vulture_a_01.m2", + value = "knife_1h_vulture_a_01.m2", + }, + { + fileId = "330554", + text = "knife_1h_worgen_b_01.m2", + value = "knife_1h_worgen_b_01.m2", + }, + { + fileId = "146376", + text = "knife_1h_zulaman_d_01.m2", + value = "knife_1h_zulaman_d_01.m2", + }, + { + fileId = "146381", + text = "knife_1h_zulaman_d_02.m2", + value = "knife_1h_zulaman_d_02.m2", + }, + { + fileId = "146386", + text = "knife_1h_zulaman_d_03.m2", + value = "knife_1h_zulaman_d_03.m2", + }, + { + fileId = "146392", + text = "knife_1h_zulaman_d_04.m2", + value = "knife_1h_zulaman_d_04.m2", + }, + { + fileId = "146398", + text = "knife_1h_zulgurub_d_01.m2", + value = "knife_1h_zulgurub_d_01.m2", + }, + { + fileId = "146404", + text = "knife_1h_zulgurub_d_02.m2", + value = "knife_1h_zulgurub_d_02.m2", + }, + { + fileId = "146409", + text = "knife_outlandraid_d_02.m2", + value = "knife_outlandraid_d_02.m2", + }, + { + fileId = "146415", + text = "knife_outlandraid_d_03.m2", + value = "knife_outlandraid_d_03.m2", + }, + { + fileId = "146421", + text = "knife_outlandraid_d_04.m2", + value = "knife_outlandraid_d_04.m2", + }, + { + fileId = "146429", + text = "knife_outlandraid_d_05.m2", + value = "knife_outlandraid_d_05.m2", + }, + { + fileId = "146436", + text = "knife_outlandraid_d_06.m2", + value = "knife_outlandraid_d_06.m2", + }, + { + fileId = "146442", + text = "knife_outlandraid_d_07.m2", + value = "knife_outlandraid_d_07.m2", + }, + { + fileId = "146448", + text = "knife_outlandraid_d_08.m2", + value = "knife_outlandraid_d_08.m2", + }, + { + fileId = "530960", + text = "mace_1h_430future_c_01.m2", + value = "mace_1h_430future_c_01.m2", + }, + { + fileId = "532492", + text = "mace_1h_430future_c_02.m2", + value = "mace_1h_430future_c_02.m2", + }, + { + fileId = "523491", + text = "mace_1h_430nightelf_c_02.m2", + value = "mace_1h_430nightelf_c_02.m2", + }, + { + fileId = "146464", + text = "mace_1h_ahnqiraj_d_01.m2", + value = "mace_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "146466", + text = "mace_1h_ahnqiraj_d_02.m2", + value = "mace_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "146468", + text = "mace_1h_ahnqiraj_d_03.m2", + value = "mace_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "293757", + text = "mace_1h_alliancecovenant_d_01.m2", + value = "mace_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "238727", + text = "mace_1h_aspects_d_01.m2", + value = "mace_1h_aspects_d_01.m2", + }, + { + fileId = "146470", + text = "mace_1h_auchindoun_d_01.m2", + value = "mace_1h_auchindoun_d_01.m2", + }, + { + fileId = "146472", + text = "mace_1h_blacksmithing_d_01.m2", + value = "mace_1h_blacksmithing_d_01.m2", + }, + { + fileId = "146477", + text = "mace_1h_blacksmithing_d_02.m2", + value = "mace_1h_blacksmithing_d_02.m2", + }, + { + fileId = "146482", + text = "mace_1h_blacksmithing_d_03.m2", + value = "mace_1h_blacksmithing_d_03.m2", + }, + { + fileId = "519893", + text = "mace_1h_blacksmithing_d_04.m2", + value = "mace_1h_blacksmithing_d_04.m2", + }, + { + fileId = "146486", + text = "mace_1h_blacktemple_d_01.m2", + value = "mace_1h_blacktemple_d_01.m2", + }, + { + fileId = "146491", + text = "mace_1h_blacktemple_d_02.m2", + value = "mace_1h_blacktemple_d_02.m2", + }, + { + fileId = "146494", + text = "mace_1h_blackwing_a_01.m2", + value = "mace_1h_blackwing_a_01.m2", + }, + { + fileId = "146497", + text = "mace_1h_blackwing_a_02.m2", + value = "mace_1h_blackwing_a_02.m2", + }, + { + fileId = "146499", + text = "mace_1h_blood_a_01.m2", + value = "mace_1h_blood_a_01.m2", + }, + { + fileId = "146501", + text = "mace_1h_blood_a_02.m2", + value = "mace_1h_blood_a_02.m2", + }, + { + fileId = "350857", + text = "mace_1h_bloodqueen_d_01.m2", + value = "mace_1h_bloodqueen_d_01.m2", + }, + { + fileId = "369411", + text = "mace_1h_bwdraid_d_01.m2", + value = "mace_1h_bwdraid_d_01.m2", + }, + { + fileId = "373991", + text = "mace_1h_bwdraid_d_02.m2", + value = "mace_1h_bwdraid_d_02.m2", + }, + { + fileId = "377996", + text = "mace_1h_cataclysm_b_01.m2", + value = "mace_1h_cataclysm_b_01.m2", + }, + { + fileId = "385316", + text = "mace_1h_cataclysm_b_02.m2", + value = "mace_1h_cataclysm_b_02.m2", + }, + { + fileId = "463802", + text = "mace_1h_cataclysm_c_01.m2", + value = "mace_1h_cataclysm_c_01.m2", + }, + { + fileId = "460672", + text = "mace_1h_cataclysm_c_02.m2", + value = "mace_1h_cataclysm_c_02.m2", + }, + { + fileId = "464126", + text = "mace_1h_cataclysm_c_03.m2", + value = "mace_1h_cataclysm_c_03.m2", + }, + { + fileId = "431697", + text = "mace_1h_cataclysm_c_04.m2", + value = "mace_1h_cataclysm_c_04.m2", + }, + { + fileId = "442290", + text = "mace_1h_cataclysm_c_05.m2", + value = "mace_1h_cataclysm_c_05.m2", + }, + { + fileId = "146504", + text = "mace_1h_coilfang_d_01.m2", + value = "mace_1h_coilfang_d_01.m2", + }, + { + fileId = "146506", + text = "mace_1h_cotstrat_d_01.m2", + value = "mace_1h_cotstrat_d_01.m2", + }, + { + fileId = "530400", + text = "mace_1h_deathwingraid_d_01.m2", + value = "mace_1h_deathwingraid_d_01.m2", + }, + { + fileId = "535126", + text = "mace_1h_deathwingraid_d_02.m2", + value = "mace_1h_deathwingraid_d_02.m2", + }, + { + fileId = "535256", + text = "mace_1h_deathwingraiddw_d_01.m2", + value = "mace_1h_deathwingraiddw_d_01.m2", + }, + { + fileId = "146516", + text = "mace_1h_doomhammer_d_01.m2", + value = "mace_1h_doomhammer_d_01.m2", + }, + { + fileId = "146519", + text = "mace_1h_draenei_a_01.m2", + value = "mace_1h_draenei_a_01.m2", + }, + { + fileId = "146525", + text = "mace_1h_draenei_a_02.m2", + value = "mace_1h_draenei_a_02.m2", + }, + { + fileId = "238735", + text = "mace_1h_draktharon_d_01.m2", + value = "mace_1h_draktharon_d_01.m2", + }, + { + fileId = "238742", + text = "mace_1h_draktharon_d_02.m2", + value = "mace_1h_draktharon_d_02.m2", + }, + { + fileId = "469724", + text = "mace_1h_firelandsraid_d_02.m2", + value = "mace_1h_firelandsraid_d_02.m2", + }, + { + fileId = "512453", + text = "mace_1h_firelandsraid_d_03.m2", + value = "mace_1h_firelandsraid_d_03.m2", + }, + { + fileId = "511046", + text = "mace_1h_firelandsraid_d_04.m2", + value = "mace_1h_firelandsraid_d_04.m2", + }, + { + fileId = "146531", + text = "mace_1h_flanged_a_01.m2", + value = "mace_1h_flanged_a_01.m2", + }, + { + fileId = "146533", + text = "mace_1h_flanged_a_02.m2", + value = "mace_1h_flanged_a_02.m2", + }, + { + fileId = "146537", + text = "mace_1h_flanged_a_03.m2", + value = "mace_1h_flanged_a_03.m2", + }, + { + fileId = "146541", + text = "mace_1h_flanged_b_01.m2", + value = "mace_1h_flanged_b_01.m2", + }, + { + fileId = "146543", + text = "mace_1h_flanged_b_02.m2", + value = "mace_1h_flanged_b_02.m2", + }, + { + fileId = "146546", + text = "mace_1h_flanged_d_01.m2", + value = "mace_1h_flanged_d_01.m2", + }, + { + fileId = "238747", + text = "mace_1h_frostgiant.m2", + value = "mace_1h_frostgiant.m2", + }, + { + fileId = "331446", + text = "mace_1h_goblin_b_01.m2", + value = "mace_1h_goblin_b_01.m2", + }, + { + fileId = "376255", + text = "mace_1h_grimbatolraid_d_01.m2", + value = "mace_1h_grimbatolraid_d_01.m2", + }, + { + fileId = "376717", + text = "mace_1h_grimbatolraid_d_02.m2", + value = "mace_1h_grimbatolraid_d_02.m2", + }, + { + fileId = "446973", + text = "mace_1h_hammeroftwilight_d_01.m2", + value = "mace_1h_hammeroftwilight_d_01.m2", + }, + { + fileId = "146549", + text = "mace_1h_hellfire_d_01.m2", + value = "mace_1h_hellfire_d_01.m2", + }, + { + fileId = "294484", + text = "mace_1h_hordecovenant_d_01.m2", + value = "mace_1h_hordecovenant_d_01.m2", + }, + { + fileId = "146550", + text = "mace_1h_hyjal_d_01.m2", + value = "mace_1h_hyjal_d_01.m2", + }, + { + fileId = "312464", + text = "mace_1h_icecrownraid_d_01.m2", + value = "mace_1h_icecrownraid_d_01.m2", + }, + { + fileId = "312469", + text = "mace_1h_icecrownraid_d_02.m2", + value = "mace_1h_icecrownraid_d_02.m2", + }, + { + fileId = "321299", + text = "mace_1h_icecrownraid_d_03.m2", + value = "mace_1h_icecrownraid_d_03.m2", + }, + { + fileId = "312952", + text = "mace_1h_icecrownraid_d_04.m2", + value = "mace_1h_icecrownraid_d_04.m2", + }, + { + fileId = "238749", + text = "mace_1h_microphone_c_01.m2", + value = "mace_1h_microphone_c_01.m2", + }, + { + fileId = "305441", + text = "mace_1h_misc_d_01.m2", + value = "mace_1h_misc_d_01.m2", + }, + { + fileId = "146557", + text = "mace_1h_naxxramas_d_01.m2", + value = "mace_1h_naxxramas_d_01.m2", + }, + { + fileId = "146559", + text = "mace_1h_naxxramas_d_02.m2", + value = "mace_1h_naxxramas_d_02.m2", + }, + { + fileId = "146561", + text = "mace_1h_naxxramas_d_03.m2", + value = "mace_1h_naxxramas_d_03.m2", + }, + { + fileId = "146563", + text = "mace_1h_nexus_d_01.m2", + value = "mace_1h_nexus_d_01.m2", + }, + { + fileId = "146568", + text = "mace_1h_nexus_d_02.m2", + value = "mace_1h_nexus_d_02.m2", + }, + { + fileId = "146574", + text = "mace_1h_northrend_b_01.m2", + value = "mace_1h_northrend_b_01.m2", + }, + { + fileId = "146580", + text = "mace_1h_northrend_b_02.m2", + value = "mace_1h_northrend_b_02.m2", + }, + { + fileId = "146587", + text = "mace_1h_northrend_b_03.m2", + value = "mace_1h_northrend_b_03.m2", + }, + { + fileId = "146592", + text = "mace_1h_northrend_c_01.m2", + value = "mace_1h_northrend_c_01.m2", + }, + { + fileId = "146597", + text = "mace_1h_northrend_c_02.m2", + value = "mace_1h_northrend_c_02.m2", + }, + { + fileId = "146598", + text = "mace_1h_northrend_c_03.m2", + value = "mace_1h_northrend_c_03.m2", + }, + { + fileId = "146603", + text = "mace_1h_northrend_d_01.m2", + value = "mace_1h_northrend_d_01.m2", + }, + { + fileId = "146608", + text = "mace_1h_outlandpvp_d_01.m2", + value = "mace_1h_outlandpvp_d_01.m2", + }, + { + fileId = "146615", + text = "mace_1h_outlandraid_d_01.m2", + value = "mace_1h_outlandraid_d_01.m2", + }, + { + fileId = "146617", + text = "mace_1h_outlandraid_d_02.m2", + value = "mace_1h_outlandraid_d_02.m2", + }, + { + fileId = "146619", + text = "mace_1h_outlandraid_d_03.m2", + value = "mace_1h_outlandraid_d_03.m2", + }, + { + fileId = "146621", + text = "mace_1h_outlandraid_d_04.m2", + value = "mace_1h_outlandraid_d_04.m2", + }, + { + fileId = "146622", + text = "mace_1h_outlandraid_d_05.m2", + value = "mace_1h_outlandraid_d_05.m2", + }, + { + fileId = "146624", + text = "mace_1h_outlandraid_d_06.m2", + value = "mace_1h_outlandraid_d_06.m2", + }, + { + fileId = "146625", + text = "mace_1h_outlandraid_d_07.m2", + value = "mace_1h_outlandraid_d_07.m2", + }, + { + fileId = "146630", + text = "mace_1h_outlandraid_d_08.m2", + value = "mace_1h_outlandraid_d_08.m2", + }, + { + fileId = "146636", + text = "mace_1h_outlandraid_d_09.m2", + value = "mace_1h_outlandraid_d_09.m2", + }, + { + fileId = "146637", + text = "mace_1h_outlandraid_d_10.m2", + value = "mace_1h_outlandraid_d_10.m2", + }, + { + fileId = "146639", + text = "mace_1h_paladin_d_01.m2", + value = "mace_1h_paladin_d_01.m2", + }, + { + fileId = "304334", + text = "mace_1h_pvealliance_d_01.m2", + value = "mace_1h_pvealliance_d_01.m2", + }, + { + fileId = "305165", + text = "mace_1h_pvealliance_d_02.m2", + value = "mace_1h_pvealliance_d_02.m2", + }, + { + fileId = "294391", + text = "mace_1h_pvehorde_d_01.m2", + value = "mace_1h_pvehorde_d_01.m2", + }, + { + fileId = "303692", + text = "mace_1h_pvehorde_d_02.m2", + value = "mace_1h_pvehorde_d_02.m2", + }, + { + fileId = "306523", + text = "mace_1h_pvp320_c_01.m2", + value = "mace_1h_pvp320_c_01.m2", + }, + { + fileId = "306141", + text = "mace_1h_pvp320_c_02.m2", + value = "mace_1h_pvp320_c_02.m2", + }, + { + fileId = "326447", + text = "mace_1h_pvp330_d_01.m2", + value = "mace_1h_pvp330_d_01.m2", + }, + { + fileId = "327161", + text = "mace_1h_pvp330_d_02.m2", + value = "mace_1h_pvp330_d_02.m2", + }, + { + fileId = "464086", + text = "mace_1h_pvp400_c_01.m2", + value = "mace_1h_pvp400_c_01.m2", + }, + { + fileId = "515965", + text = "mace_1h_pvp410_c_01.m2", + value = "mace_1h_pvp410_c_01.m2", + }, + { + fileId = "516677", + text = "mace_1h_pvp410_c_02.m2", + value = "mace_1h_pvp410_c_02.m2", + }, + { + fileId = "526772", + text = "mace_1h_pvpcataclysms3_c_01.m2", + value = "mace_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "527830", + text = "mace_1h_pvpcataclysms3_c_02.m2", + value = "mace_1h_pvpcataclysms3_c_02.m2", + }, + { + fileId = "146643", + text = "mace_1h_spiked_a_01.m2", + value = "mace_1h_spiked_a_01.m2", + }, + { + fileId = "146645", + text = "mace_1h_spiked_a_02.m2", + value = "mace_1h_spiked_a_02.m2", + }, + { + fileId = "146649", + text = "mace_1h_spiked_a_03.m2", + value = "mace_1h_spiked_a_03.m2", + }, + { + fileId = "146654", + text = "mace_1h_spiked_b_01.m2", + value = "mace_1h_spiked_b_01.m2", + }, + { + fileId = "146657", + text = "mace_1h_spiked_b_02.m2", + value = "mace_1h_spiked_b_02.m2", + }, + { + fileId = "146659", + text = "mace_1h_standard_a_01.m2", + value = "mace_1h_standard_a_01.m2", + }, + { + fileId = "146661", + text = "mace_1h_standard_a_02.m2", + value = "mace_1h_standard_a_02.m2", + }, + { + fileId = "146662", + text = "mace_1h_standard_b_01.m2", + value = "mace_1h_standard_b_01.m2", + }, + { + fileId = "146665", + text = "mace_1h_stratholme_d_01.m2", + value = "mace_1h_stratholme_d_01.m2", + }, + { + fileId = "146667", + text = "mace_1h_stratholme_d_02.m2", + value = "mace_1h_stratholme_d_02.m2", + }, + { + fileId = "514154", + text = "mace_1h_sulfuron_d_01.m2", + value = "mace_1h_sulfuron_d_01.m2", + }, + { + fileId = "146669", + text = "mace_1h_sunwell_c_01.m2", + value = "mace_1h_sunwell_c_01.m2", + }, + { + fileId = "146674", + text = "mace_1h_sunwell_c_02.m2", + value = "mace_1h_sunwell_c_02.m2", + }, + { + fileId = "146678", + text = "mace_1h_sunwell_d_01.m2", + value = "mace_1h_sunwell_d_01.m2", + }, + { + fileId = "146683", + text = "mace_1h_sunwell_d_02.m2", + value = "mace_1h_sunwell_d_02.m2", + }, + { + fileId = "146688", + text = "mace_1h_sunwell_d_03.m2", + value = "mace_1h_sunwell_d_03.m2", + }, + { + fileId = "146694", + text = "mace_1h_tauren_b_01.m2", + value = "mace_1h_tauren_b_01.m2", + }, + { + fileId = "146696", + text = "mace_1h_tauren_b_02.m2", + value = "mace_1h_tauren_b_02.m2", + }, + { + fileId = "354444", + text = "mace_1h_tradeskill_c_01.m2", + value = "mace_1h_tradeskill_c_01.m2", + }, + { + fileId = "334469", + text = "mace_1h_twilighthammer_c_01.m2", + value = "mace_1h_twilighthammer_c_01.m2", + }, + { + fileId = "238751", + text = "mace_1h_ulduarraid_d_01.m2", + value = "mace_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238757", + text = "mace_1h_ulduarraid_d_02.m2", + value = "mace_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238762", + text = "mace_1h_ulduarraid_d_03.m2", + value = "mace_1h_ulduarraid_d_03.m2", + }, + { + fileId = "238767", + text = "mace_1h_ulduarraid_d_04.m2", + value = "mace_1h_ulduarraid_d_04.m2", + }, + { + fileId = "253423", + text = "mace_1h_ulduarraid_e_01.m2", + value = "mace_1h_ulduarraid_e_01.m2", + }, + { + fileId = "303788", + text = "mace_1h_ulduarraidnotskinable_d_01.m2", + value = "mace_1h_ulduarraidnotskinable_d_01.m2", + }, + { + fileId = "146698", + text = "mace_1h_utgarde_d_01.m2", + value = "mace_1h_utgarde_d_01.m2", + }, + { + fileId = "146703", + text = "mace_1h_utgarde_d_02.m2", + value = "mace_1h_utgarde_d_02.m2", + }, + { + fileId = "146708", + text = "mace_1h_utgarde_d_03.m2", + value = "mace_1h_utgarde_d_03.m2", + }, + { + fileId = "331796", + text = "mace_1h_worgen_b_01.m2", + value = "mace_1h_worgen_b_01.m2", + }, + { + fileId = "146714", + text = "mace_1h_zulaman_d_01.m2", + value = "mace_1h_zulaman_d_01.m2", + }, + { + fileId = "146719", + text = "mace_1h_zulaman_d_02.m2", + value = "mace_1h_zulaman_d_02.m2", + }, + { + fileId = "146725", + text = "mace_1h_zulgurub_d_01.m2", + value = "mace_1h_zulgurub_d_01.m2", + }, + { + fileId = "146727", + text = "mace_1h_zulgurub_d_02.m2", + value = "mace_1h_zulgurub_d_02.m2", + }, + { + fileId = "534182", + text = "mace_2h_430nightelf_c_01.m2", + value = "mace_2h_430nightelf_c_01.m2", + }, + { + fileId = "146729", + text = "mace_2h_ahnqiraj_d_01.m2", + value = "mace_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "238775", + text = "mace_2h_aspects_d_01.m2", + value = "mace_2h_aspects_d_01.m2", + }, + { + fileId = "146735", + text = "mace_2h_auchindoun_d_01.m2", + value = "mace_2h_auchindoun_d_01.m2", + }, + { + fileId = "146737", + text = "mace_2h_blacksmithing_d_01.m2", + value = "mace_2h_blacksmithing_d_01.m2", + }, + { + fileId = "146742", + text = "mace_2h_blacksmithing_d_02.m2", + value = "mace_2h_blacksmithing_d_02.m2", + }, + { + fileId = "146747", + text = "mace_2h_blacksmithing_d_03.m2", + value = "mace_2h_blacksmithing_d_03.m2", + }, + { + fileId = "517166", + text = "mace_2h_blacksmithing_d_04.m2", + value = "mace_2h_blacksmithing_d_04.m2", + }, + { + fileId = "146752", + text = "mace_2h_blackwing_a_01.m2", + value = "mace_2h_blackwing_a_01.m2", + }, + { + fileId = "146754", + text = "mace_2h_blackwing_a_02.m2", + value = "mace_2h_blackwing_a_02.m2", + }, + { + fileId = "146756", + text = "mace_2h_blood_a_01.m2", + value = "mace_2h_blood_a_01.m2", + }, + { + fileId = "146762", + text = "mace_2h_blood_a_02.m2", + value = "mace_2h_blood_a_02.m2", + }, + { + fileId = "385321", + text = "mace_2h_cataclysm_b_01.m2", + value = "mace_2h_cataclysm_b_01.m2", + }, + { + fileId = "386827", + text = "mace_2h_cataclysm_b_02.m2", + value = "mace_2h_cataclysm_b_02.m2", + }, + { + fileId = "458787", + text = "mace_2h_cataclysm_c_01.m2", + value = "mace_2h_cataclysm_c_01.m2", + }, + { + fileId = "146769", + text = "mace_2h_dalaran_d_01.m2", + value = "mace_2h_dalaran_d_01.m2", + }, + { + fileId = "454347", + text = "mace_2h_deathwing_d_01.m2", + value = "mace_2h_deathwing_d_01.m2", + }, + { + fileId = "537236", + text = "mace_2h_deathwingraid_d_01.m2", + value = "mace_2h_deathwingraid_d_01.m2", + }, + { + fileId = "146779", + text = "mace_2h_draenei_a_01.m2", + value = "mace_2h_draenei_a_01.m2", + }, + { + fileId = "146785", + text = "mace_2h_draenei_a_02.m2", + value = "mace_2h_draenei_a_02.m2", + }, + { + fileId = "511004", + text = "mace_2h_firelandsraid_d_01.m2", + value = "mace_2h_firelandsraid_d_01.m2", + }, + { + fileId = "146790", + text = "mace_2h_flanged_a_01.m2", + value = "mace_2h_flanged_a_01.m2", + }, + { + fileId = "146794", + text = "mace_2h_flanged_a_02.m2", + value = "mace_2h_flanged_a_02.m2", + }, + { + fileId = "146798", + text = "mace_2h_flanged_c_01.m2", + value = "mace_2h_flanged_c_01.m2", + }, + { + fileId = "146800", + text = "mace_2h_flanged_c_02.m2", + value = "mace_2h_flanged_c_02.m2", + }, + { + fileId = "367604", + text = "mace_2h_grimbatolraid_d_01.m2", + value = "mace_2h_grimbatolraid_d_01.m2", + }, + { + fileId = "146802", + text = "mace_2h_hellfire_c_01.m2", + value = "mace_2h_hellfire_c_01.m2", + }, + { + fileId = "146808", + text = "mace_2h_hellfire_d_01.m2", + value = "mace_2h_hellfire_d_01.m2", + }, + { + fileId = "146809", + text = "mace_2h_horde_a_01.m2", + value = "mace_2h_horde_a_01.m2", + }, + { + fileId = "146810", + text = "mace_2h_horde_b_01.m2", + value = "mace_2h_horde_b_01.m2", + }, + { + fileId = "146811", + text = "mace_2h_horde_c_02.m2", + value = "mace_2h_horde_c_02.m2", + }, + { + fileId = "318123", + text = "mace_2h_icecrownraid_d_01.m2", + value = "mace_2h_icecrownraid_d_01.m2", + }, + { + fileId = "305442", + text = "mace_2h_misc_d_01.m2", + value = "mace_2h_misc_d_01.m2", + }, + { + fileId = "238782", + text = "mace_2h_naxx25_d_01.m2", + value = "mace_2h_naxx25_d_01.m2", + }, + { + fileId = "146812", + text = "mace_2h_nexus_d_01.m2", + value = "mace_2h_nexus_d_01.m2", + }, + { + fileId = "146824", + text = "mace_2h_northrend_b_01.m2", + value = "mace_2h_northrend_b_01.m2", + }, + { + fileId = "146829", + text = "mace_2h_northrend_b_02.m2", + value = "mace_2h_northrend_b_02.m2", + }, + { + fileId = "146836", + text = "mace_2h_northrend_b_03.m2", + value = "mace_2h_northrend_b_03.m2", + }, + { + fileId = "146841", + text = "mace_2h_northrend_c_01.m2", + value = "mace_2h_northrend_c_01.m2", + }, + { + fileId = "146846", + text = "mace_2h_northrend_c_02.m2", + value = "mace_2h_northrend_c_02.m2", + }, + { + fileId = "146851", + text = "mace_2h_northrend_c_03.m2", + value = "mace_2h_northrend_c_03.m2", + }, + { + fileId = "146856", + text = "mace_2h_northrend_d_01.m2", + value = "mace_2h_northrend_d_01.m2", + }, + { + fileId = "146861", + text = "mace_2h_outlandraid_d_01.m2", + value = "mace_2h_outlandraid_d_01.m2", + }, + { + fileId = "146863", + text = "mace_2h_outlandraid_d_02.m2", + value = "mace_2h_outlandraid_d_02.m2", + }, + { + fileId = "146865", + text = "mace_2h_outlandraid_d_03.m2", + value = "mace_2h_outlandraid_d_03.m2", + }, + { + fileId = "146867", + text = "mace_2h_outlandraid_d_04.m2", + value = "mace_2h_outlandraid_d_04.m2", + }, + { + fileId = "146870", + text = "mace_2h_outlandraid_d_05.m2", + value = "mace_2h_outlandraid_d_05.m2", + }, + { + fileId = "146872", + text = "mace_2h_outlandraid_d_06.m2", + value = "mace_2h_outlandraid_d_06.m2", + }, + { + fileId = "146873", + text = "mace_2h_outlandraid_d_07.m2", + value = "mace_2h_outlandraid_d_07.m2", + }, + { + fileId = "146880", + text = "mace_2h_paladin_d_01.m2", + value = "mace_2h_paladin_d_01.m2", + }, + { + fileId = "304782", + text = "mace_2h_pvealliance_d_01.m2", + value = "mace_2h_pvealliance_d_01.m2", + }, + { + fileId = "303906", + text = "mace_2h_pvehorde_d_01.m2", + value = "mace_2h_pvehorde_d_01.m2", + }, + { + fileId = "306797", + text = "mace_2h_pvp320_c_01.m2", + value = "mace_2h_pvp320_c_01.m2", + }, + { + fileId = "326819", + text = "mace_2h_pvp330_d_01.m2", + value = "mace_2h_pvp330_d_01.m2", + }, + { + fileId = "465035", + text = "mace_2h_pvp400_c_01.m2", + value = "mace_2h_pvp400_c_01.m2", + }, + { + fileId = "515201", + text = "mace_2h_pvp410_c_01.m2", + value = "mace_2h_pvp410_c_01.m2", + }, + { + fileId = "534868", + text = "mace_2h_pvpcataclysms3_c_01.m2", + value = "mace_2h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "146881", + text = "mace_2h_spiked_a_01.m2", + value = "mace_2h_spiked_a_01.m2", + }, + { + fileId = "146883", + text = "mace_2h_spiked_a_02.m2", + value = "mace_2h_spiked_a_02.m2", + }, + { + fileId = "146887", + text = "mace_2h_spiked_a_03.m2", + value = "mace_2h_spiked_a_03.m2", + }, + { + fileId = "146891", + text = "mace_2h_spiked_b_01.m2", + value = "mace_2h_spiked_b_01.m2", + }, + { + fileId = "146893", + text = "mace_2h_spiked_b_02.m2", + value = "mace_2h_spiked_b_02.m2", + }, + { + fileId = "146897", + text = "mace_2h_standard_a_01.m2", + value = "mace_2h_standard_a_01.m2", + }, + { + fileId = "146899", + text = "mace_2h_standard_a_02.m2", + value = "mace_2h_standard_a_02.m2", + }, + { + fileId = "146903", + text = "mace_2h_standard_a_03.m2", + value = "mace_2h_standard_a_03.m2", + }, + { + fileId = "146907", + text = "mace_2h_stratholme_d_01.m2", + value = "mace_2h_stratholme_d_01.m2", + }, + { + fileId = "146909", + text = "mace_2h_stratholme_d_02.m2", + value = "mace_2h_stratholme_d_02.m2", + }, + { + fileId = "515208", + text = "mace_2h_sulfuras_d_01.m2", + value = "mace_2h_sulfuras_d_01.m2", + }, + { + fileId = "353143", + text = "mace_2h_tradeskill_c_01.m2", + value = "mace_2h_tradeskill_c_01.m2", + }, + { + fileId = "332417", + text = "mace_2h_twilighthammer_c_01.m2", + value = "mace_2h_twilighthammer_c_01.m2", + }, + { + fileId = "238789", + text = "mace_2h_ulduarraid_d_01.m2", + value = "mace_2h_ulduarraid_d_01.m2", + }, + { + fileId = "146911", + text = "mace_2h_utgarde_d_01.m2", + value = "mace_2h_utgarde_d_01.m2", + }, + { + fileId = "146916", + text = "mace_2h_zulgurub_d_01.m2", + value = "mace_2h_zulgurub_d_01.m2", + }, + { + fileId = "146919", + text = "misc_1h_bag_a_01.m2", + value = "misc_1h_bag_a_01.m2", + }, + { + fileId = "146926", + text = "misc_1h_bone_a_01.m2", + value = "misc_1h_bone_a_01.m2", + }, + { + fileId = "146930", + text = "misc_1h_book_a_01.m2", + value = "misc_1h_book_a_01.m2", + }, + { + fileId = "446157", + text = "misc_1h_book_a_01avengingangel.m2", + value = "misc_1h_book_a_01avengingangel.m2", + }, + { + fileId = "146934", + text = "misc_1h_book_b_01.m2", + value = "misc_1h_book_b_01.m2", + }, + { + fileId = "146940", + text = "misc_1h_book_b_02.m2", + value = "misc_1h_book_b_02.m2", + }, + { + fileId = "146943", + text = "misc_1h_book_c_01.m2", + value = "misc_1h_book_c_01.m2", + }, + { + fileId = "146947", + text = "misc_1h_book_c_02.m2", + value = "misc_1h_book_c_02.m2", + }, + { + fileId = "354721", + text = "misc_1h_book_c_03.m2", + value = "misc_1h_book_c_03.m2", + }, + { + fileId = "354449", + text = "misc_1h_book_c_04.m2", + value = "misc_1h_book_c_04.m2", + }, + { + fileId = "355500", + text = "misc_1h_book_c_05.m2", + value = "misc_1h_book_c_05.m2", + }, + { + fileId = "354727", + text = "misc_1h_book_c_06.m2", + value = "misc_1h_book_c_06.m2", + }, + { + fileId = "419187", + text = "misc_1h_book_c_07.m2", + value = "misc_1h_book_c_07.m2", + }, + { + fileId = "419188", + text = "misc_1h_book_c_08.m2", + value = "misc_1h_book_c_08.m2", + }, + { + fileId = "419189", + text = "misc_1h_book_c_09.m2", + value = "misc_1h_book_c_09.m2", + }, + { + fileId = "419190", + text = "misc_1h_book_c_10.m2", + value = "misc_1h_book_c_10.m2", + }, + { + fileId = "146950", + text = "misc_1h_bottle_a_01.m2", + value = "misc_1h_bottle_a_01.m2", + }, + { + fileId = "146955", + text = "misc_1h_bottle_a_02.m2", + value = "misc_1h_bottle_a_02.m2", + }, + { + fileId = "146956", + text = "misc_1h_bread_a_01.m2", + value = "misc_1h_bread_a_01.m2", + }, + { + fileId = "146960", + text = "misc_1h_bread_a_02.m2", + value = "misc_1h_bread_a_02.m2", + }, + { + fileId = "146961", + text = "misc_1h_bucket_a_01.m2", + value = "misc_1h_bucket_a_01.m2", + }, + { + fileId = "146965", + text = "misc_1h_fish_a_01.m2", + value = "misc_1h_fish_a_01.m2", + }, + { + fileId = "146970", + text = "misc_1h_flower_a_01.m2", + value = "misc_1h_flower_a_01.m2", + }, + { + fileId = "146974", + text = "misc_1h_flower_a_02.m2", + value = "misc_1h_flower_a_02.m2", + }, + { + fileId = "146978", + text = "misc_1h_flower_a_03.m2", + value = "misc_1h_flower_a_03.m2", + }, + { + fileId = "146982", + text = "misc_1h_flower_a_04.m2", + value = "misc_1h_flower_a_04.m2", + }, + { + fileId = "146986", + text = "misc_1h_flower_b_01.m2", + value = "misc_1h_flower_b_01.m2", + }, + { + fileId = "146990", + text = "misc_1h_flower_b_02.m2", + value = "misc_1h_flower_b_02.m2", + }, + { + fileId = "252196", + text = "misc_1h_flower_c_01.m2", + value = "misc_1h_flower_c_01.m2", + }, + { + fileId = "252197", + text = "misc_1h_flower_c_02.m2", + value = "misc_1h_flower_c_02.m2", + }, + { + fileId = "252198", + text = "misc_1h_flower_c_03.m2", + value = "misc_1h_flower_c_03.m2", + }, + { + fileId = "252199", + text = "misc_1h_flower_c_04.m2", + value = "misc_1h_flower_c_04.m2", + }, + { + fileId = "310106", + text = "misc_1h_flower_c_05.m2", + value = "misc_1h_flower_c_05.m2", + }, + { + fileId = "146991", + text = "misc_1h_gizmo_a_01.m2", + value = "misc_1h_gizmo_a_01.m2", + }, + { + fileId = "146995", + text = "misc_1h_glass_a_01.m2", + value = "misc_1h_glass_a_01.m2", + }, + { + fileId = "146998", + text = "misc_1h_glass_a_02.m2", + value = "misc_1h_glass_a_02.m2", + }, + { + fileId = "462667", + text = "misc_1h_guildflag_alliance_a_01.m2", + value = "misc_1h_guildflag_alliance_a_01.m2", + }, + { + fileId = "462668", + text = "misc_1h_guildflag_horde_a_01.m2", + value = "misc_1h_guildflag_horde_a_01.m2", + }, + { + fileId = "147000", + text = "misc_1h_holysymbol_a_01.m2", + value = "misc_1h_holysymbol_a_01.m2", + }, + { + fileId = "147001", + text = "misc_1h_lantern_a_01.m2", + value = "misc_1h_lantern_a_01.m2", + }, + { + fileId = "147003", + text = "misc_1h_lantern_b_01.m2", + value = "misc_1h_lantern_b_01.m2", + }, + { + fileId = "147005", + text = "misc_1h_mutton_a_01.m2", + value = "misc_1h_mutton_a_01.m2", + }, + { + fileId = "147008", + text = "misc_1h_mutton_a_02.m2", + value = "misc_1h_mutton_a_02.m2", + }, + { + fileId = "147009", + text = "misc_1h_mutton_b_01.m2", + value = "misc_1h_mutton_b_01.m2", + }, + { + fileId = "147011", + text = "misc_1h_mutton_b_02.m2", + value = "misc_1h_mutton_b_02.m2", + }, + { + fileId = "147013", + text = "misc_1h_orb_a_01.m2", + value = "misc_1h_orb_a_01.m2", + }, + { + fileId = "147020", + text = "misc_1h_orb_a_02.m2", + value = "misc_1h_orb_a_02.m2", + }, + { + fileId = "147027", + text = "misc_1h_orb_c_01.m2", + value = "misc_1h_orb_c_01.m2", + }, + { + fileId = "147029", + text = "misc_1h_potion_a_01.m2", + value = "misc_1h_potion_a_01.m2", + }, + { + fileId = "147035", + text = "misc_1h_potion_b_01.m2", + value = "misc_1h_potion_b_01.m2", + }, + { + fileId = "318833", + text = "misc_1h_pygmy_a_01.m2", + value = "misc_1h_pygmy_a_01.m2", + }, + { + fileId = "318834", + text = "misc_1h_pygmy_a_02.m2", + value = "misc_1h_pygmy_a_02.m2", + }, + { + fileId = "318835", + text = "misc_1h_pygmy_a_03.m2", + value = "misc_1h_pygmy_a_03.m2", + }, + { + fileId = "147039", + text = "misc_1h_rollingpin_a_01.m2", + value = "misc_1h_rollingpin_a_01.m2", + }, + { + fileId = "147042", + text = "misc_1h_seal_a_01.m2", + value = "misc_1h_seal_a_01.m2", + }, + { + fileId = "147043", + text = "misc_1h_seal_b_01.m2", + value = "misc_1h_seal_b_01.m2", + }, + { + fileId = "147046", + text = "misc_1h_seal_c_01.m2", + value = "misc_1h_seal_c_01.m2", + }, + { + fileId = "147051", + text = "misc_1h_skull_b_01.m2", + value = "misc_1h_skull_b_01.m2", + }, + { + fileId = "147057", + text = "misc_1h_sparkler_a_01blue.m2", + value = "misc_1h_sparkler_a_01blue.m2", + }, + { + fileId = "147058", + text = "misc_1h_sparkler_a_01red.m2", + value = "misc_1h_sparkler_a_01red.m2", + }, + { + fileId = "147059", + text = "misc_1h_sparkler_a_01white.m2", + value = "misc_1h_sparkler_a_01white.m2", + }, + { + fileId = "147060", + text = "misc_1h_tankard_a_01.m2", + value = "misc_1h_tankard_a_01.m2", + }, + { + fileId = "311947", + text = "misc_1h_tankard_b_01.m2", + value = "misc_1h_tankard_b_01.m2", + }, + { + fileId = "147066", + text = "misc_1h_waterwand_a_01.m2", + value = "misc_1h_waterwand_a_01.m2", + }, + { + fileId = "321285", + text = "misc_1h_worgenpaddle_a_01.m2", + value = "misc_1h_worgenpaddle_a_01.m2", + }, + { + fileId = "147068", + text = "misc_1h_wrench_a_01.m2", + value = "misc_1h_wrench_a_01.m2", + }, + { + fileId = "147069", + text = "misc_1h_zulgurub_d_01.m2", + value = "misc_1h_zulgurub_d_01.m2", + }, + { + fileId = "147073", + text = "misc_1h_zulgurub_d_02.m2", + value = "misc_1h_zulgurub_d_02.m2", + }, + { + fileId = "358462", + text = "misc_2h_arcanitefishingpole_a_01.m2", + value = "misc_2h_arcanitefishingpole_a_01.m2", + }, + { + fileId = "147074", + text = "misc_2h_brewfest_a_01.m2", + value = "misc_2h_brewfest_a_01.m2", + }, + { + fileId = "147080", + text = "misc_2h_broom_a_01.m2", + value = "misc_2h_broom_a_01.m2", + }, + { + fileId = "147082", + text = "misc_2h_broom_a_02.m2", + value = "misc_2h_broom_a_02.m2", + }, + { + fileId = "147084", + text = "misc_2h_fishingpole_a_01.m2", + value = "misc_2h_fishingpole_a_01.m2", + }, + { + fileId = "147087", + text = "misc_2h_harpoon_b_01.m2", + value = "misc_2h_harpoon_b_01.m2", + }, + { + fileId = "238795", + text = "misc_2h_jeweledfishingpole_a_01.m2", + value = "misc_2h_jeweledfishingpole_a_01.m2", + }, + { + fileId = "147089", + text = "misc_2h_pitchfork_a_01.m2", + value = "misc_2h_pitchfork_a_01.m2", + }, + { + fileId = "147091", + text = "misc_2h_shovel_a_01.m2", + value = "misc_2h_shovel_a_01.m2", + }, + { + fileId = "238798", + text = "misc_2h_skullfishingpole_a_01.m2", + value = "misc_2h_skullfishingpole_a_01.m2", + }, + { + fileId = "147094", + text = "misc_2h_tuskarfishingpole_a_01.m2", + value = "misc_2h_tuskarfishingpole_a_01.m2", + }, + { + fileId = "251568", + text = "misc_2h_twigfishingpole_a_01.m2", + value = "misc_2h_twigfishingpole_a_01.m2", + }, + { + fileId = "533649", + text = "offhand_1h_430nightelf_c_01.m2", + value = "offhand_1h_430nightelf_c_01.m2", + }, + { + fileId = "531010", + text = "offhand_1h_deathwingraid_d_01.m2", + value = "offhand_1h_deathwingraid_d_01.m2", + }, + { + fileId = "509973", + text = "offhand_1h_firelandsraid_d_01.m2", + value = "offhand_1h_firelandsraid_d_01.m2", + }, + { + fileId = "511036", + text = "offhand_1h_firelandsraid_d_02.m2", + value = "offhand_1h_firelandsraid_d_02.m2", + }, + { + fileId = "305326", + text = "offhand_1h_pvp320_c_01.m2", + value = "offhand_1h_pvp320_c_01.m2", + }, + { + fileId = "327385", + text = "offhand_1h_pvp330_d_01.m2", + value = "offhand_1h_pvp330_d_01.m2", + }, + { + fileId = "329514", + text = "offhand_1h_pvp330_d_02.m2", + value = "offhand_1h_pvp330_d_02.m2", + }, + { + fileId = "510796", + text = "offhand_1h_pvp410_c_01.m2", + value = "offhand_1h_pvp410_c_01.m2", + }, + { + fileId = "528797", + text = "offhand_1h_pvpcataclysms3_c_01.m2", + value = "offhand_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "238799", + text = "offhand_1h_ulduarraid_d_01.m2", + value = "offhand_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238801", + text = "offhand_1h_ulduarraid_d_02.m2", + value = "offhand_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238806", + text = "offhand_1h_ulduarraid_d_03.m2", + value = "offhand_1h_ulduarraid_d_03.m2", + }, + { + fileId = "147104", + text = "offhand_blackwing_a_01.m2", + value = "offhand_blackwing_a_01.m2", + }, + { + fileId = "147105", + text = "offhand_blood_a_01.m2", + value = "offhand_blood_a_01.m2", + }, + { + fileId = "147110", + text = "offhand_blood_a_02.m2", + value = "offhand_blood_a_02.m2", + }, + { + fileId = "238811", + text = "offhand_dalaran_d_01.m2", + value = "offhand_dalaran_d_01.m2", + }, + { + fileId = "147116", + text = "offhand_draenei_a_01.m2", + value = "offhand_draenei_a_01.m2", + }, + { + fileId = "147122", + text = "offhand_draenei_a_02.m2", + value = "offhand_draenei_a_02.m2", + }, + { + fileId = "238817", + text = "offhand_easter_a_01.m2", + value = "offhand_easter_a_01.m2", + }, + { + fileId = "147128", + text = "offhand_hyjal_d_01.m2", + value = "offhand_hyjal_d_01.m2", + }, + { + fileId = "147133", + text = "offhand_naxxramas_d_01.m2", + value = "offhand_naxxramas_d_01.m2", + }, + { + fileId = "147135", + text = "offhand_naxxramas_d_02.m2", + value = "offhand_naxxramas_d_02.m2", + }, + { + fileId = "147137", + text = "offhand_naxxramas_d_03.m2", + value = "offhand_naxxramas_d_03.m2", + }, + { + fileId = "147139", + text = "offhand_naxxramas_d_04.m2", + value = "offhand_naxxramas_d_04.m2", + }, + { + fileId = "147141", + text = "offhand_outlandraid_d_01.m2", + value = "offhand_outlandraid_d_01.m2", + }, + { + fileId = "147143", + text = "offhand_outlandraid_d_02.m2", + value = "offhand_outlandraid_d_02.m2", + }, + { + fileId = "147145", + text = "offhand_outlandraid_d_03blue.m2", + value = "offhand_outlandraid_d_03blue.m2", + }, + { + fileId = "147147", + text = "offhand_outlandraid_d_03orange.m2", + value = "offhand_outlandraid_d_03orange.m2", + }, + { + fileId = "147149", + text = "offhand_outlandraid_d_03white.m2", + value = "offhand_outlandraid_d_03white.m2", + }, + { + fileId = "305167", + text = "offhand_pvealliance_d_01.m2", + value = "offhand_pvealliance_d_01.m2", + }, + { + fileId = "305727", + text = "offhand_pvehorde_d_01.m2", + value = "offhand_pvehorde_d_01.m2", + }, + { + fileId = "147150", + text = "offhand_rose_a_01.m2", + value = "offhand_rose_a_01.m2", + }, + { + fileId = "147151", + text = "offhand_rosebouquet_a_01.m2", + value = "offhand_rosebouquet_a_01.m2", + }, + { + fileId = "147153", + text = "offhand_stratholme_a_01.m2", + value = "offhand_stratholme_a_01.m2", + }, + { + fileId = "147155", + text = "offhand_stratholme_a_02.m2", + value = "offhand_stratholme_a_02.m2", + }, + { + fileId = "147157", + text = "offhand_sunwell_d_01.m2", + value = "offhand_sunwell_d_01.m2", + }, + { + fileId = "147162", + text = "offhand_sunwell_d_02.m2", + value = "offhand_sunwell_d_02.m2", + }, + { + fileId = "147167", + text = "offhand_utgarde_d_01.m2", + value = "offhand_utgarde_d_01.m2", + }, + { + fileId = "147173", + text = "offhand_zulaman_d_01.m2", + value = "offhand_zulaman_d_01.m2", + }, + { + fileId = "147178", + text = "offhand_zulaman_d_02.m2", + value = "offhand_zulaman_d_02.m2", + }, + { + fileId = "147186", + text = "polearm_2h_ahnqiraj_d_01.m2", + value = "polearm_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "147191", + text = "polearm_2h_aspects_d_01.m2", + value = "polearm_2h_aspects_d_01.m2", + }, + { + fileId = "147202", + text = "polearm_2h_blacktemple_d_01.m2", + value = "polearm_2h_blacktemple_d_01.m2", + }, + { + fileId = "147208", + text = "polearm_2h_bladed_a_01.m2", + value = "polearm_2h_bladed_a_01.m2", + }, + { + fileId = "147211", + text = "polearm_2h_bladed_a_02.m2", + value = "polearm_2h_bladed_a_02.m2", + }, + { + fileId = "147216", + text = "polearm_2h_bladed_b_01.m2", + value = "polearm_2h_bladed_b_01.m2", + }, + { + fileId = "147219", + text = "polearm_2h_bladed_b_02.m2", + value = "polearm_2h_bladed_b_02.m2", + }, + { + fileId = "147224", + text = "polearm_2h_bladed_c_01.m2", + value = "polearm_2h_bladed_c_01.m2", + }, + { + fileId = "147227", + text = "polearm_2h_bladed_d_01.m2", + value = "polearm_2h_bladed_d_01.m2", + }, + { + fileId = "147228", + text = "polearm_2h_bladed_d_03.m2", + value = "polearm_2h_bladed_d_03.m2", + }, + { + fileId = "147230", + text = "polearm_2h_blood_elf_d_01.m2", + value = "polearm_2h_blood_elf_d_01.m2", + }, + { + fileId = "369283", + text = "polearm_2h_bwdraid_d_01.m2", + value = "polearm_2h_bwdraid_d_01.m2", + }, + { + fileId = "376841", + text = "polearm_2h_cataclysm_b_01.m2", + value = "polearm_2h_cataclysm_b_01.m2", + }, + { + fileId = "376846", + text = "polearm_2h_cataclysm_b_02.m2", + value = "polearm_2h_cataclysm_b_02.m2", + }, + { + fileId = "442296", + text = "polearm_2h_cataclysm_c_01.m2", + value = "polearm_2h_cataclysm_c_01.m2", + }, + { + fileId = "238818", + text = "polearm_2h_dalaran_d_01.m2", + value = "polearm_2h_dalaran_d_01.m2", + }, + { + fileId = "529783", + text = "polearm_2h_deathwingraiddw_d_01.m2", + value = "polearm_2h_deathwingraiddw_d_01.m2", + }, + { + fileId = "147233", + text = "polearm_2h_draktharon_d_01.m2", + value = "polearm_2h_draktharon_d_01.m2", + }, + { + fileId = "147239", + text = "polearm_2h_epic_d_01.m2", + value = "polearm_2h_epic_d_01.m2", + }, + { + fileId = "147241", + text = "polearm_2h_epic_d_02.m2", + value = "polearm_2h_epic_d_02.m2", + }, + { + fileId = "147243", + text = "polearm_2h_epic_d_03.m2", + value = "polearm_2h_epic_d_03.m2", + }, + { + fileId = "147245", + text = "polearm_2h_epic_d_04.m2", + value = "polearm_2h_epic_d_04.m2", + }, + { + fileId = "147247", + text = "polearm_2h_epic_d_05.m2", + value = "polearm_2h_epic_d_05.m2", + }, + { + fileId = "147249", + text = "polearm_2h_epic_d_06.m2", + value = "polearm_2h_epic_d_06.m2", + }, + { + fileId = "349167", + text = "polearm_2h_epic_d_07.m2", + value = "polearm_2h_epic_d_07.m2", + }, + { + fileId = "510018", + text = "polearm_2h_firelandsraid_d_01.m2", + value = "polearm_2h_firelandsraid_d_01.m2", + }, + { + fileId = "523697", + text = "polearm_2h_firelandsraid_d_01_red.m2", + value = "polearm_2h_firelandsraid_d_01_red.m2", + }, + { + fileId = "524306", + text = "polearm_2h_firelandsraid_d_01_red_backwards.m2", + value = "polearm_2h_firelandsraid_d_01_red_backwards.m2", + }, + { + fileId = "238823", + text = "polearm_2h_frostgiant.m2", + value = "polearm_2h_frostgiant.m2", + }, + { + fileId = "147251", + text = "polearm_2h_hellfire_d_01.m2", + value = "polearm_2h_hellfire_d_01.m2", + }, + { + fileId = "147257", + text = "polearm_2h_hellfire_d_01green.m2", + value = "polearm_2h_hellfire_d_01green.m2", + }, + { + fileId = "313723", + text = "polearm_2h_icecrownraid_d_01.m2", + value = "polearm_2h_icecrownraid_d_01.m2", + }, + { + fileId = "294450", + text = "polearm_2h_lance_a_01.m2", + value = "polearm_2h_lance_a_01.m2", + }, + { + fileId = "147260", + text = "polearm_2h_nexus_d_01.m2", + value = "polearm_2h_nexus_d_01.m2", + }, + { + fileId = "147266", + text = "polearm_2h_northrend_b_01.m2", + value = "polearm_2h_northrend_b_01.m2", + }, + { + fileId = "147271", + text = "polearm_2h_northrend_b_02.m2", + value = "polearm_2h_northrend_b_02.m2", + }, + { + fileId = "147277", + text = "polearm_2h_northrend_b_03.m2", + value = "polearm_2h_northrend_b_03.m2", + }, + { + fileId = "147283", + text = "polearm_2h_northrend_c_01.m2", + value = "polearm_2h_northrend_c_01.m2", + }, + { + fileId = "147288", + text = "polearm_2h_northrend_c_02.m2", + value = "polearm_2h_northrend_c_02.m2", + }, + { + fileId = "147294", + text = "polearm_2h_northrend_c_03.m2", + value = "polearm_2h_northrend_c_03.m2", + }, + { + fileId = "147298", + text = "polearm_2h_northrend_c_04.m2", + value = "polearm_2h_northrend_c_04.m2", + }, + { + fileId = "147304", + text = "polearm_2h_northrend_d_01.m2", + value = "polearm_2h_northrend_d_01.m2", + }, + { + fileId = "147310", + text = "polearm_2h_northrend_d_02.m2", + value = "polearm_2h_northrend_d_02.m2", + }, + { + fileId = "147316", + text = "polearm_2h_northrend_d_03.m2", + value = "polearm_2h_northrend_d_03.m2", + }, + { + fileId = "305363", + text = "polearm_2h_pvealliance_d_01.m2", + value = "polearm_2h_pvealliance_d_01.m2", + }, + { + fileId = "304386", + text = "polearm_2h_pvehorde_d_01.m2", + value = "polearm_2h_pvehorde_d_01.m2", + }, + { + fileId = "306734", + text = "polearm_2h_pvp320_c_01.m2", + value = "polearm_2h_pvp320_c_01.m2", + }, + { + fileId = "327743", + text = "polearm_2h_pvp330_d_01.m2", + value = "polearm_2h_pvp330_d_01.m2", + }, + { + fileId = "466227", + text = "polearm_2h_pvp400_c_01.m2", + value = "polearm_2h_pvp400_c_01.m2", + }, + { + fileId = "512339", + text = "polearm_2h_pvp410_c_01.m2", + value = "polearm_2h_pvp410_c_01.m2", + }, + { + fileId = "238825", + text = "polearm_2h_pvp_c_01.m2", + value = "polearm_2h_pvp_c_01.m2", + }, + { + fileId = "147317", + text = "polearm_2h_pvpalliance_a_01.m2", + value = "polearm_2h_pvpalliance_a_01.m2", + }, + { + fileId = "533455", + text = "polearm_2h_pvpcataclysms3_c_01.m2", + value = "polearm_2h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "147320", + text = "polearm_2h_pvphorde_a_01.m2", + value = "polearm_2h_pvphorde_a_01.m2", + }, + { + fileId = "147323", + text = "polearm_2h_stratholme_d_01.m2", + value = "polearm_2h_stratholme_d_01.m2", + }, + { + fileId = "147325", + text = "polearm_2h_sunwell_d_01.m2", + value = "polearm_2h_sunwell_d_01.m2", + }, + { + fileId = "351724", + text = "polearm_2h_tradeskill_c_01.m2", + value = "polearm_2h_tradeskill_c_01.m2", + }, + { + fileId = "147330", + text = "polearm_2h_trident_a_01.m2", + value = "polearm_2h_trident_a_01.m2", + }, + { + fileId = "147334", + text = "polearm_2h_trident_a_02.m2", + value = "polearm_2h_trident_a_02.m2", + }, + { + fileId = "147339", + text = "polearm_2h_trident_b_01.m2", + value = "polearm_2h_trident_b_01.m2", + }, + { + fileId = "147344", + text = "polearm_2h_trident_b_02.m2", + value = "polearm_2h_trident_b_02.m2", + }, + { + fileId = "147345", + text = "polearm_2h_trident_c_01.m2", + value = "polearm_2h_trident_c_01.m2", + }, + { + fileId = "328177", + text = "polearm_2h_trident_c_01alt.m2", + value = "polearm_2h_trident_c_01alt.m2", + }, + { + fileId = "366769", + text = "polearm_2h_trident_naga_b_01.m2", + value = "polearm_2h_trident_naga_b_01.m2", + }, + { + fileId = "366774", + text = "polearm_2h_trident_naga_b_02.m2", + value = "polearm_2h_trident_naga_b_02.m2", + }, + { + fileId = "366775", + text = "polearm_2h_trident_naga_b_03.m2", + value = "polearm_2h_trident_naga_b_03.m2", + }, + { + fileId = "238830", + text = "polearm_2h_ulduarraid_d_01.m2", + value = "polearm_2h_ulduarraid_d_01.m2", + }, + { + fileId = "147351", + text = "polearm_2h_utgarde_d_01.m2", + value = "polearm_2h_utgarde_d_01.m2", + }, + { + fileId = "147357", + text = "polearm_2h_vrykul_d_01.m2", + value = "polearm_2h_vrykul_d_01.m2", + }, + { + fileId = "147363", + text = "polearm_2h_zulgurub_d_01.m2", + value = "polearm_2h_zulgurub_d_01.m2", + }, + { + fileId = "528384", + text = "staff_2h_pvp410_c_01.m2", + value = "staff_2h_pvp410_c_01.m2", + }, + { + fileId = "515971", + text = "staff_2h_pvp410_c_03.m2", + value = "staff_2h_pvp410_c_03.m2", + }, + { + fileId = "571787", + text = "staff_2h_pvpcataclysms3_c_02.m2", + value = "staff_2h_pvpcataclysms3_c_02.m2", + }, + { + fileId = "529034", + text = "staff_2h_pvpcataclysms3_c_03.m2", + value = "staff_2h_pvpcataclysms3_c_03.m2", + }, + { + fileId = "531598", + text = "stave_2h_430future_c_01.m2", + value = "stave_2h_430future_c_01.m2", + }, + { + fileId = "533863", + text = "stave_2h_430nightelf_c_01.m2", + value = "stave_2h_430nightelf_c_01.m2", + }, + { + fileId = "534187", + text = "stave_2h_430oldgod_c_01.m2", + value = "stave_2h_430oldgod_c_01.m2", + }, + { + fileId = "147382", + text = "stave_2h_ahnqiraj_d_01.m2", + value = "stave_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "147384", + text = "stave_2h_ahnqiraj_d_02.m2", + value = "stave_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "147386", + text = "stave_2h_ahnqiraj_d_03.m2", + value = "stave_2h_ahnqiraj_d_03.m2", + }, + { + fileId = "147387", + text = "stave_2h_ahnqiraj_d_04.m2", + value = "stave_2h_ahnqiraj_d_04.m2", + }, + { + fileId = "304087", + text = "stave_2h_alliancecovenant_d_01.m2", + value = "stave_2h_alliancecovenant_d_01.m2", + }, + { + fileId = "147390", + text = "stave_2h_auchindoun_d_01.m2", + value = "stave_2h_auchindoun_d_01.m2", + }, + { + fileId = "147392", + text = "stave_2h_auchindoun_d_02.m2", + value = "stave_2h_auchindoun_d_02.m2", + }, + { + fileId = "147393", + text = "stave_2h_blacktemple_d_01.m2", + value = "stave_2h_blacktemple_d_01.m2", + }, + { + fileId = "147399", + text = "stave_2h_blackwing_a_01.m2", + value = "stave_2h_blackwing_a_01.m2", + }, + { + fileId = "147402", + text = "stave_2h_blackwing_a_02.m2", + value = "stave_2h_blackwing_a_02.m2", + }, + { + fileId = "147405", + text = "stave_2h_blood_a_01.m2", + value = "stave_2h_blood_a_01.m2", + }, + { + fileId = "147409", + text = "stave_2h_blood_a_02.m2", + value = "stave_2h_blood_a_02.m2", + }, + { + fileId = "368368", + text = "stave_2h_bwdraid_d_01.m2", + value = "stave_2h_bwdraid_d_01.m2", + }, + { + fileId = "371933", + text = "stave_2h_bwdraid_d_02.m2", + value = "stave_2h_bwdraid_d_02.m2", + }, + { + fileId = "238839", + text = "stave_2h_caster_pvp_c_01.m2", + value = "stave_2h_caster_pvp_c_01.m2", + }, + { + fileId = "382334", + text = "stave_2h_cataclysm_b_01.m2", + value = "stave_2h_cataclysm_b_01.m2", + }, + { + fileId = "388496", + text = "stave_2h_cataclysm_b_02.m2", + value = "stave_2h_cataclysm_b_02.m2", + }, + { + fileId = "456580", + text = "stave_2h_cataclysm_c_01.m2", + value = "stave_2h_cataclysm_c_01.m2", + }, + { + fileId = "454348", + text = "stave_2h_cataclysm_c_02.m2", + value = "stave_2h_cataclysm_c_02.m2", + }, + { + fileId = "448509", + text = "stave_2h_cataclysm_c_03.m2", + value = "stave_2h_cataclysm_c_03.m2", + }, + { + fileId = "147413", + text = "stave_2h_cotstrat_d_01.m2", + value = "stave_2h_cotstrat_d_01.m2", + }, + { + fileId = "147418", + text = "stave_2h_cotstrat_d_02.m2", + value = "stave_2h_cotstrat_d_02.m2", + }, + { + fileId = "147424", + text = "stave_2h_dalaran_d_01.m2", + value = "stave_2h_dalaran_d_01.m2", + }, + { + fileId = "535314", + text = "stave_2h_deathwingraid_d_01.m2", + value = "stave_2h_deathwingraid_d_01.m2", + }, + { + fileId = "533865", + text = "stave_2h_deathwingraid_d_02.m2", + value = "stave_2h_deathwingraid_d_02.m2", + }, + { + fileId = "535810", + text = "stave_2h_deathwingraid_d_03.m2", + value = "stave_2h_deathwingraid_d_03.m2", + }, + { + fileId = "529744", + text = "stave_2h_deathwingraiddw_d_01.m2", + value = "stave_2h_deathwingraiddw_d_01.m2", + }, + { + fileId = "147431", + text = "stave_2h_draenei_a_01.m2", + value = "stave_2h_draenei_a_01.m2", + }, + { + fileId = "147437", + text = "stave_2h_draenei_a_02.m2", + value = "stave_2h_draenei_a_02.m2", + }, + { + fileId = "147444", + text = "stave_2h_draenei_a_03.m2", + value = "stave_2h_draenei_a_03.m2", + }, + { + fileId = "147451", + text = "stave_2h_draktharon_d_01.m2", + value = "stave_2h_draktharon_d_01.m2", + }, + { + fileId = "147458", + text = "stave_2h_druid_d_01.m2", + value = "stave_2h_druid_d_01.m2", + }, + { + fileId = "147464", + text = "stave_2h_epic_a_01.m2", + value = "stave_2h_epic_a_01.m2", + }, + { + fileId = "147466", + text = "stave_2h_etherial_a_01.m2", + value = "stave_2h_etherial_a_01.m2", + }, + { + fileId = "147473", + text = "stave_2h_feral_d_01.m2", + value = "stave_2h_feral_d_01.m2", + }, + { + fileId = "147480", + text = "stave_2h_feral_d_02.m2", + value = "stave_2h_feral_d_02.m2", + }, + { + fileId = "147486", + text = "stave_2h_feral_d_03.m2", + value = "stave_2h_feral_d_03.m2", + }, + { + fileId = "238845", + text = "stave_2h_feral_pvp_c_01.m2", + value = "stave_2h_feral_pvp_c_01.m2", + }, + { + fileId = "510895", + text = "stave_2h_firelandsraid_d_01.m2", + value = "stave_2h_firelandsraid_d_01.m2", + }, + { + fileId = "512376", + text = "stave_2h_firelandsraid_d_02.m2", + value = "stave_2h_firelandsraid_d_02.m2", + }, + { + fileId = "514033", + text = "stave_2h_firelandsraid_d_03.m2", + value = "stave_2h_firelandsraid_d_03.m2", + }, + { + fileId = "514035", + text = "stave_2h_firelandsraid_d_03_stage1.m2", + value = "stave_2h_firelandsraid_d_03_stage1.m2", + }, + { + fileId = "514038", + text = "stave_2h_firelandsraid_d_03_stage2.m2", + value = "stave_2h_firelandsraid_d_03_stage2.m2", + }, + { + fileId = "519532", + text = "stave_2h_firelandsraid_d_04.m2", + value = "stave_2h_firelandsraid_d_04.m2", + }, + { + fileId = "147491", + text = "stave_2h_flaming_d_01.m2", + value = "stave_2h_flaming_d_01.m2", + }, + { + fileId = "370258", + text = "stave_2h_grimbatolraid_d_01.m2", + value = "stave_2h_grimbatolraid_d_01.m2", + }, + { + fileId = "372915", + text = "stave_2h_grimbatolraid_d_02.m2", + value = "stave_2h_grimbatolraid_d_02.m2", + }, + { + fileId = "238852", + text = "stave_2h_guitar_c_01.m2", + value = "stave_2h_guitar_c_01.m2", + }, + { + fileId = "147492", + text = "stave_2h_hellfire_c_01.m2", + value = "stave_2h_hellfire_c_01.m2", + }, + { + fileId = "147498", + text = "stave_2h_hellfire_d_01.m2", + value = "stave_2h_hellfire_d_01.m2", + }, + { + fileId = "147502", + text = "stave_2h_hellfire_d_02.m2", + value = "stave_2h_hellfire_d_02.m2", + }, + { + fileId = "304260", + text = "stave_2h_hordecovenant_d_01.m2", + value = "stave_2h_hordecovenant_d_01.m2", + }, + { + fileId = "147504", + text = "stave_2h_hunterepic_d_01.m2", + value = "stave_2h_hunterepic_d_01.m2", + }, + { + fileId = "308704", + text = "stave_2h_icecrownraid_d_01.m2", + value = "stave_2h_icecrownraid_d_01.m2", + }, + { + fileId = "309673", + text = "stave_2h_icecrownraid_d_02.m2", + value = "stave_2h_icecrownraid_d_02.m2", + }, + { + fileId = "308645", + text = "stave_2h_icecrownraid_d_03.m2", + value = "stave_2h_icecrownraid_d_03.m2", + }, + { + fileId = "315625", + text = "stave_2h_icecrownraid_d_04.m2", + value = "stave_2h_icecrownraid_d_04.m2", + }, + { + fileId = "147505", + text = "stave_2h_jeweled_a_01.m2", + value = "stave_2h_jeweled_a_01.m2", + }, + { + fileId = "147509", + text = "stave_2h_jeweled_a_02.m2", + value = "stave_2h_jeweled_a_02.m2", + }, + { + fileId = "147513", + text = "stave_2h_jeweled_a_03.m2", + value = "stave_2h_jeweled_a_03.m2", + }, + { + fileId = "147517", + text = "stave_2h_jeweled_b_01.m2", + value = "stave_2h_jeweled_b_01.m2", + }, + { + fileId = "147521", + text = "stave_2h_jeweled_b_02.m2", + value = "stave_2h_jeweled_b_02.m2", + }, + { + fileId = "147525", + text = "stave_2h_jeweled_c_01.m2", + value = "stave_2h_jeweled_c_01.m2", + }, + { + fileId = "147527", + text = "stave_2h_jeweled_d_01.m2", + value = "stave_2h_jeweled_d_01.m2", + }, + { + fileId = "147530", + text = "stave_2h_long_a_01.m2", + value = "stave_2h_long_a_01.m2", + }, + { + fileId = "147534", + text = "stave_2h_long_a_02.m2", + value = "stave_2h_long_a_02.m2", + }, + { + fileId = "147538", + text = "stave_2h_long_a_03.m2", + value = "stave_2h_long_a_03.m2", + }, + { + fileId = "147542", + text = "stave_2h_long_a_04.m2", + value = "stave_2h_long_a_04.m2", + }, + { + fileId = "147547", + text = "stave_2h_long_b_01.m2", + value = "stave_2h_long_b_01.m2", + }, + { + fileId = "147552", + text = "stave_2h_long_b_02holy.m2", + value = "stave_2h_long_b_02holy.m2", + }, + { + fileId = "147553", + text = "stave_2h_long_b_03.m2", + value = "stave_2h_long_b_03.m2", + }, + { + fileId = "147557", + text = "stave_2h_long_b_04.m2", + value = "stave_2h_long_b_04.m2", + }, + { + fileId = "147563", + text = "stave_2h_long_c_01.m2", + value = "stave_2h_long_c_01.m2", + }, + { + fileId = "147565", + text = "stave_2h_long_c_02.m2", + value = "stave_2h_long_c_02.m2", + }, + { + fileId = "147567", + text = "stave_2h_long_d_01.m2", + value = "stave_2h_long_d_01.m2", + }, + { + fileId = "147574", + text = "stave_2h_long_d_04.m2", + value = "stave_2h_long_d_04.m2", + }, + { + fileId = "147576", + text = "stave_2h_long_d_05.m2", + value = "stave_2h_long_d_05.m2", + }, + { + fileId = "147578", + text = "stave_2h_long_epicpriest01.m2", + value = "stave_2h_long_epicpriest01.m2", + }, + { + fileId = "147579", + text = "stave_2h_long_epicpriest02.m2", + value = "stave_2h_long_epicpriest02.m2", + }, + { + fileId = "147581", + text = "stave_2h_medivh_d_01.m2", + value = "stave_2h_medivh_d_01.m2", + }, + { + fileId = "147585", + text = "stave_2h_naga_d_01.m2", + value = "stave_2h_naga_d_01.m2", + }, + { + fileId = "238854", + text = "stave_2h_naxx25_d_01.m2", + value = "stave_2h_naxx25_d_01.m2", + }, + { + fileId = "238860", + text = "stave_2h_naxx25_d_02.m2", + value = "stave_2h_naxx25_d_02.m2", + }, + { + fileId = "238866", + text = "stave_2h_naxx25_d_03.m2", + value = "stave_2h_naxx25_d_03.m2", + }, + { + fileId = "147588", + text = "stave_2h_nexus_d_01.m2", + value = "stave_2h_nexus_d_01.m2", + }, + { + fileId = "147593", + text = "stave_2h_nexus_d_02.m2", + value = "stave_2h_nexus_d_02.m2", + }, + { + fileId = "147599", + text = "stave_2h_northrend_b_01.m2", + value = "stave_2h_northrend_b_01.m2", + }, + { + fileId = "147605", + text = "stave_2h_northrend_b_02.m2", + value = "stave_2h_northrend_b_02.m2", + }, + { + fileId = "147611", + text = "stave_2h_northrend_b_03.m2", + value = "stave_2h_northrend_b_03.m2", + }, + { + fileId = "147616", + text = "stave_2h_northrend_c_01.m2", + value = "stave_2h_northrend_c_01.m2", + }, + { + fileId = "147621", + text = "stave_2h_northrend_c_03.m2", + value = "stave_2h_northrend_c_03.m2", + }, + { + fileId = "147626", + text = "stave_2h_northrend_d_01.m2", + value = "stave_2h_northrend_d_01.m2", + }, + { + fileId = "147631", + text = "stave_2h_northrend_d_02.m2", + value = "stave_2h_northrend_d_02.m2", + }, + { + fileId = "147633", + text = "stave_2h_northrend_d_03.m2", + value = "stave_2h_northrend_d_03.m2", + }, + { + fileId = "147637", + text = "stave_2h_other_a_01.m2", + value = "stave_2h_other_a_01.m2", + }, + { + fileId = "147641", + text = "stave_2h_other_b_01.m2", + value = "stave_2h_other_b_01.m2", + }, + { + fileId = "147645", + text = "stave_2h_other_c_01.m2", + value = "stave_2h_other_c_01.m2", + }, + { + fileId = "147652", + text = "stave_2h_other_c_02.m2", + value = "stave_2h_other_c_02.m2", + }, + { + fileId = "147654", + text = "stave_2h_other_c_03.m2", + value = "stave_2h_other_c_03.m2", + }, + { + fileId = "147656", + text = "stave_2h_other_d_01.m2", + value = "stave_2h_other_d_01.m2", + }, + { + fileId = "147659", + text = "stave_2h_outlandraid_d_01.m2", + value = "stave_2h_outlandraid_d_01.m2", + }, + { + fileId = "147660", + text = "stave_2h_outlandraid_d_01_blue.m2", + value = "stave_2h_outlandraid_d_01_blue.m2", + }, + { + fileId = "147661", + text = "stave_2h_outlandraid_d_01_red.m2", + value = "stave_2h_outlandraid_d_01_red.m2", + }, + { + fileId = "147663", + text = "stave_2h_outlandraid_d_02_blue.m2", + value = "stave_2h_outlandraid_d_02_blue.m2", + }, + { + fileId = "147664", + text = "stave_2h_outlandraid_d_02_red.m2", + value = "stave_2h_outlandraid_d_02_red.m2", + }, + { + fileId = "147666", + text = "stave_2h_outlandraid_d_03.m2", + value = "stave_2h_outlandraid_d_03.m2", + }, + { + fileId = "147667", + text = "stave_2h_outlandraid_d_03_blue.m2", + value = "stave_2h_outlandraid_d_03_blue.m2", + }, + { + fileId = "147668", + text = "stave_2h_outlandraid_d_03_red.m2", + value = "stave_2h_outlandraid_d_03_red.m2", + }, + { + fileId = "147670", + text = "stave_2h_outlandraid_d_04.m2", + value = "stave_2h_outlandraid_d_04.m2", + }, + { + fileId = "147674", + text = "stave_2h_outlandraid_d_05.m2", + value = "stave_2h_outlandraid_d_05.m2", + }, + { + fileId = "147680", + text = "stave_2h_outlandraid_d_06.m2", + value = "stave_2h_outlandraid_d_06.m2", + }, + { + fileId = "147682", + text = "stave_2h_outlandraid_d_06_blue.m2", + value = "stave_2h_outlandraid_d_06_blue.m2", + }, + { + fileId = "147684", + text = "stave_2h_priest_d_01.m2", + value = "stave_2h_priest_d_01.m2", + }, + { + fileId = "304295", + text = "stave_2h_pvealliance_d_01.m2", + value = "stave_2h_pvealliance_d_01.m2", + }, + { + fileId = "305168", + text = "stave_2h_pvealliance_d_02.m2", + value = "stave_2h_pvealliance_d_02.m2", + }, + { + fileId = "304300", + text = "stave_2h_pvehorde_d_01.m2", + value = "stave_2h_pvehorde_d_01.m2", + }, + { + fileId = "306149", + text = "stave_2h_pvehorde_d_02.m2", + value = "stave_2h_pvehorde_d_02.m2", + }, + { + fileId = "306740", + text = "stave_2h_pvp320_c_01.m2", + value = "stave_2h_pvp320_c_01.m2", + }, + { + fileId = "306324", + text = "stave_2h_pvp320_c_02.m2", + value = "stave_2h_pvp320_c_02.m2", + }, + { + fileId = "327748", + text = "stave_2h_pvp330_d_01.m2", + value = "stave_2h_pvp330_d_01.m2", + }, + { + fileId = "327845", + text = "stave_2h_pvp330_d_02.m2", + value = "stave_2h_pvp330_d_02.m2", + }, + { + fileId = "464880", + text = "stave_2h_pvp400_c_01.m2", + value = "stave_2h_pvp400_c_01.m2", + }, + { + fileId = "512908", + text = "stave_2h_pvp410_c_02.m2", + value = "stave_2h_pvp410_c_02.m2", + }, + { + fileId = "147688", + text = "stave_2h_pvpalliance_a_01.m2", + value = "stave_2h_pvpalliance_a_01.m2", + }, + { + fileId = "534911", + text = "stave_2h_pvpcataclysms3_c_01.m2", + value = "stave_2h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "147692", + text = "stave_2h_pvphorde_a_01.m2", + value = "stave_2h_pvphorde_a_01.m2", + }, + { + fileId = "147697", + text = "stave_2h_scythe_c_03.m2", + value = "stave_2h_scythe_c_03.m2", + }, + { + fileId = "147699", + text = "stave_2h_stratholme_d_01.m2", + value = "stave_2h_stratholme_d_01.m2", + }, + { + fileId = "147701", + text = "stave_2h_stratholme_d_02.m2", + value = "stave_2h_stratholme_d_02.m2", + }, + { + fileId = "147703", + text = "stave_2h_stratholme_d_03.m2", + value = "stave_2h_stratholme_d_03.m2", + }, + { + fileId = "147704", + text = "stave_2h_sunwell_c_01.m2", + value = "stave_2h_sunwell_c_01.m2", + }, + { + fileId = "147710", + text = "stave_2h_sunwell_d_01.m2", + value = "stave_2h_sunwell_d_01.m2", + }, + { + fileId = "147715", + text = "stave_2h_sunwell_d_02.m2", + value = "stave_2h_sunwell_d_02.m2", + }, + { + fileId = "147720", + text = "stave_2h_sunwell_d_03.m2", + value = "stave_2h_sunwell_d_03.m2", + }, + { + fileId = "523700", + text = "stave_2h_tarecgosa_e_01basestaff.m2", + value = "stave_2h_tarecgosa_e_01basestaff.m2", + }, + { + fileId = "523704", + text = "stave_2h_tarecgosa_e_01stage1.m2", + value = "stave_2h_tarecgosa_e_01stage1.m2", + }, + { + fileId = "523707", + text = "stave_2h_tarecgosa_e_01stage2.m2", + value = "stave_2h_tarecgosa_e_01stage2.m2", + }, + { + fileId = "523710", + text = "stave_2h_tarecgosa_e_01stagefinal.m2", + value = "stave_2h_tarecgosa_e_01stagefinal.m2", + }, + { + fileId = "238871", + text = "stave_2h_ulduarraid_d_01.m2", + value = "stave_2h_ulduarraid_d_01.m2", + }, + { + fileId = "238877", + text = "stave_2h_ulduarraid_d_02.m2", + value = "stave_2h_ulduarraid_d_02.m2", + }, + { + fileId = "238883", + text = "stave_2h_ulduarraid_d_03.m2", + value = "stave_2h_ulduarraid_d_03.m2", + }, + { + fileId = "249276", + text = "stave_2h_ulduarraid_d_04.m2", + value = "stave_2h_ulduarraid_d_04.m2", + }, + { + fileId = "147725", + text = "stave_2h_utgarde_d_01.m2", + value = "stave_2h_utgarde_d_01.m2", + }, + { + fileId = "147731", + text = "stave_2h_utgarde_d_02.m2", + value = "stave_2h_utgarde_d_02.m2", + }, + { + fileId = "147737", + text = "stave_2h_warlock_d_01.m2", + value = "stave_2h_warlock_d_01.m2", + }, + { + fileId = "329592", + text = "stave_2h_worgen_c_01.m2", + value = "stave_2h_worgen_c_01.m2", + }, + { + fileId = "147741", + text = "stave_2h_zulaman_d_01.m2", + value = "stave_2h_zulaman_d_01.m2", + }, + { + fileId = "147746", + text = "stave_2h_zulaman_d_02.m2", + value = "stave_2h_zulaman_d_02.m2", + }, + { + fileId = "147751", + text = "stave_2h_zulaman_d_03.m2", + value = "stave_2h_zulaman_d_03.m2", + }, + { + fileId = "147757", + text = "stave_2h_zulgurub_d_01.m2", + value = "stave_2h_zulgurub_d_01.m2", + }, + { + fileId = "147759", + text = "stave_2h_zulgurub_d_02.m2", + value = "stave_2h_zulgurub_d_02.m2", + }, + { + fileId = "147761", + text = "stave_2h_zulgurub_d_03.m2", + value = "stave_2h_zulgurub_d_03.m2", + }, + { + fileId = "535283", + text = "sword_1h_430oldgod_c_01.m2", + value = "sword_1h_430oldgod_c_01.m2", + }, + { + fileId = "147764", + text = "sword_1h_ahnqiraj_d_01.m2", + value = "sword_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "147767", + text = "sword_1h_ahnqiraj_d_02.m2", + value = "sword_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "147770", + text = "sword_1h_ahnqiraj_d_03.m2", + value = "sword_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "147772", + text = "sword_1h_akama_d_01.m2", + value = "sword_1h_akama_d_01.m2", + }, + { + fileId = "466260", + text = "sword_1h_alakir_d_01.m2", + value = "sword_1h_alakir_d_01.m2", + }, + { + fileId = "298704", + text = "sword_1h_alliancecovenant_d_01.m2", + value = "sword_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "147775", + text = "sword_1h_auchindoun_d_01.m2", + value = "sword_1h_auchindoun_d_01.m2", + }, + { + fileId = "147777", + text = "sword_1h_blacksmithing_d_01.m2", + value = "sword_1h_blacksmithing_d_01.m2", + }, + { + fileId = "147779", + text = "sword_1h_blacksmithing_d_02.m2", + value = "sword_1h_blacksmithing_d_02.m2", + }, + { + fileId = "147781", + text = "sword_1h_blacksmithing_d_03.m2", + value = "sword_1h_blacksmithing_d_03.m2", + }, + { + fileId = "147783", + text = "sword_1h_blackwing_a_01.m2", + value = "sword_1h_blackwing_a_01.m2", + }, + { + fileId = "147785", + text = "sword_1h_blackwing_a_02.m2", + value = "sword_1h_blackwing_a_02.m2", + }, + { + fileId = "147787", + text = "sword_1h_blood_a_01.m2", + value = "sword_1h_blood_a_01.m2", + }, + { + fileId = "147790", + text = "sword_1h_blood_a_02.m2", + value = "sword_1h_blood_a_02.m2", + }, + { + fileId = "147793", + text = "sword_1h_blood_a_03.m2", + value = "sword_1h_blood_a_03.m2", + }, + { + fileId = "367728", + text = "sword_1h_bwdraid_d_01.m2", + value = "sword_1h_bwdraid_d_01.m2", + }, + { + fileId = "373993", + text = "sword_1h_bwdraid_d_02.m2", + value = "sword_1h_bwdraid_d_02.m2", + }, + { + fileId = "376850", + text = "sword_1h_cataclysm_b_01.m2", + value = "sword_1h_cataclysm_b_01.m2", + }, + { + fileId = "384433", + text = "sword_1h_cataclysm_b_02.m2", + value = "sword_1h_cataclysm_b_02.m2", + }, + { + fileId = "458182", + text = "sword_1h_cataclysm_c_01.m2", + value = "sword_1h_cataclysm_c_01.m2", + }, + { + fileId = "464627", + text = "sword_1h_cataclysm_c_02.m2", + value = "sword_1h_cataclysm_c_02.m2", + }, + { + fileId = "460726", + text = "sword_1h_cataclysm_c_03.m2", + value = "sword_1h_cataclysm_c_03.m2", + }, + { + fileId = "433277", + text = "sword_1h_cataclysm_c_04.m2", + value = "sword_1h_cataclysm_c_04.m2", + }, + { + fileId = "458187", + text = "sword_1h_cataclysm_c_05.m2", + value = "sword_1h_cataclysm_c_05.m2", + }, + { + fileId = "458796", + text = "sword_1h_cataclysm_c_06.m2", + value = "sword_1h_cataclysm_c_06.m2", + }, + { + fileId = "147800", + text = "sword_1h_caverns_d_01.m2", + value = "sword_1h_caverns_d_01.m2", + }, + { + fileId = "147801", + text = "sword_1h_cotstrat_d_01.m2", + value = "sword_1h_cotstrat_d_01.m2", + }, + { + fileId = "147806", + text = "sword_1h_crystal_c_01.m2", + value = "sword_1h_crystal_c_01.m2", + }, + { + fileId = "147812", + text = "sword_1h_crystal_c_02.m2", + value = "sword_1h_crystal_c_02.m2", + }, + { + fileId = "147818", + text = "sword_1h_crystal_c_03.m2", + value = "sword_1h_crystal_c_03.m2", + }, + { + fileId = "238889", + text = "sword_1h_dalaran_d_01.m2", + value = "sword_1h_dalaran_d_01.m2", + }, + { + fileId = "535046", + text = "sword_1h_deathwingraid_d_01.m2", + value = "sword_1h_deathwingraid_d_01.m2", + }, + { + fileId = "533976", + text = "sword_1h_deathwingraiddw_d_01.m2", + value = "sword_1h_deathwingraiddw_d_01.m2", + }, + { + fileId = "436779", + text = "sword_1h_djinn_c_01.m2", + value = "sword_1h_djinn_c_01.m2", + }, + { + fileId = "147824", + text = "sword_1h_draenei_a_01.m2", + value = "sword_1h_draenei_a_01.m2", + }, + { + fileId = "147830", + text = "sword_1h_draenei_a_02.m2", + value = "sword_1h_draenei_a_02.m2", + }, + { + fileId = "147836", + text = "sword_1h_draenei_a_03.m2", + value = "sword_1h_draenei_a_03.m2", + }, + { + fileId = "147842", + text = "sword_1h_draenei_b_01.m2", + value = "sword_1h_draenei_b_01.m2", + }, + { + fileId = "147849", + text = "sword_1h_draenei_c_01.m2", + value = "sword_1h_draenei_c_01.m2", + }, + { + fileId = "147856", + text = "sword_1h_draenei_d_01.m2", + value = "sword_1h_draenei_d_01.m2", + }, + { + fileId = "147860", + text = "sword_1h_fire_a_01.m2", + value = "sword_1h_fire_a_01.m2", + }, + { + fileId = "511519", + text = "sword_1h_firelandsraid_d_01.m2", + value = "sword_1h_firelandsraid_d_01.m2", + }, + { + fileId = "510766", + text = "sword_1h_firelandsraid_d_02.m2", + value = "sword_1h_firelandsraid_d_02.m2", + }, + { + fileId = "511127", + text = "sword_1h_firelandsraid_d_04.m2", + value = "sword_1h_firelandsraid_d_04.m2", + }, + { + fileId = "331061", + text = "sword_1h_goblin_b_01.m2", + value = "sword_1h_goblin_b_01.m2", + }, + { + fileId = "372754", + text = "sword_1h_grimbatolraid_d_01.m2", + value = "sword_1h_grimbatolraid_d_01.m2", + }, + { + fileId = "375539", + text = "sword_1h_grimbatolraid_d_02.m2", + value = "sword_1h_grimbatolraid_d_02.m2", + }, + { + fileId = "147862", + text = "sword_1h_haremmatron_d_01.m2", + value = "sword_1h_haremmatron_d_01.m2", + }, + { + fileId = "147864", + text = "sword_1h_hellfire_d_01.m2", + value = "sword_1h_hellfire_d_01.m2", + }, + { + fileId = "147867", + text = "sword_1h_horde_a_01.m2", + value = "sword_1h_horde_a_01.m2", + }, + { + fileId = "147872", + text = "sword_1h_horde_a_02.m2", + value = "sword_1h_horde_a_02.m2", + }, + { + fileId = "147877", + text = "sword_1h_horde_a_03.m2", + value = "sword_1h_horde_a_03.m2", + }, + { + fileId = "147878", + text = "sword_1h_horde_a_04.m2", + value = "sword_1h_horde_a_04.m2", + }, + { + fileId = "147879", + text = "sword_1h_horde_b_01.m2", + value = "sword_1h_horde_b_01.m2", + }, + { + fileId = "147885", + text = "sword_1h_horde_b_02.m2", + value = "sword_1h_horde_b_02.m2", + }, + { + fileId = "147891", + text = "sword_1h_horde_b_03.m2", + value = "sword_1h_horde_b_03.m2", + }, + { + fileId = "147897", + text = "sword_1h_horde_b_04.m2", + value = "sword_1h_horde_b_04.m2", + }, + { + fileId = "147903", + text = "sword_1h_horde_b_05.m2", + value = "sword_1h_horde_b_05.m2", + }, + { + fileId = "147909", + text = "sword_1h_horde_c_01.m2", + value = "sword_1h_horde_c_01.m2", + }, + { + fileId = "147915", + text = "sword_1h_horde_c_02.m2", + value = "sword_1h_horde_c_02.m2", + }, + { + fileId = "322941", + text = "sword_1h_horde_c_02alt.m2", + value = "sword_1h_horde_c_02alt.m2", + }, + { + fileId = "303874", + text = "sword_1h_hordecovenant_d_01.m2", + value = "sword_1h_hordecovenant_d_01.m2", + }, + { + fileId = "147922", + text = "sword_1h_hyjal_d_01.m2", + value = "sword_1h_hyjal_d_01.m2", + }, + { + fileId = "147927", + text = "sword_1h_hyjal_d_02.m2", + value = "sword_1h_hyjal_d_02.m2", + }, + { + fileId = "147932", + text = "sword_1h_hyjal_d_03.m2", + value = "sword_1h_hyjal_d_03.m2", + }, + { + fileId = "309424", + text = "sword_1h_icecrownraid_d_01.m2", + value = "sword_1h_icecrownraid_d_01.m2", + }, + { + fileId = "319747", + text = "sword_1h_icecrownraid_d_02.m2", + value = "sword_1h_icecrownraid_d_02.m2", + }, + { + fileId = "309429", + text = "sword_1h_icecrownraid_d_03.m2", + value = "sword_1h_icecrownraid_d_03.m2", + }, + { + fileId = "315154", + text = "sword_1h_icecrownraid_d_04.m2", + value = "sword_1h_icecrownraid_d_04.m2", + }, + { + fileId = "147937", + text = "sword_1h_katana_a_01.m2", + value = "sword_1h_katana_a_01.m2", + }, + { + fileId = "147941", + text = "sword_1h_katana_a_02.m2", + value = "sword_1h_katana_a_02.m2", + }, + { + fileId = "147945", + text = "sword_1h_katana_b_01.m2", + value = "sword_1h_katana_b_01.m2", + }, + { + fileId = "147949", + text = "sword_1h_katana_b_02.m2", + value = "sword_1h_katana_b_02.m2", + }, + { + fileId = "147953", + text = "sword_1h_long_a_01.m2", + value = "sword_1h_long_a_01.m2", + }, + { + fileId = "147955", + text = "sword_1h_long_a_02.m2", + value = "sword_1h_long_a_02.m2", + }, + { + fileId = "147959", + text = "sword_1h_long_a_03.m2", + value = "sword_1h_long_a_03.m2", + }, + { + fileId = "147963", + text = "sword_1h_long_b_01.m2", + value = "sword_1h_long_b_01.m2", + }, + { + fileId = "324990", + text = "sword_1h_long_b_01alt.m2", + value = "sword_1h_long_b_01alt.m2", + }, + { + fileId = "147965", + text = "sword_1h_long_b_02.m2", + value = "sword_1h_long_b_02.m2", + }, + { + fileId = "147969", + text = "sword_1h_long_b_03.m2", + value = "sword_1h_long_b_03.m2", + }, + { + fileId = "147973", + text = "sword_1h_long_c_01.m2", + value = "sword_1h_long_c_01.m2", + }, + { + fileId = "147975", + text = "sword_1h_long_d_01.m2", + value = "sword_1h_long_d_01.m2", + }, + { + fileId = "147977", + text = "sword_1h_long_d_02.m2", + value = "sword_1h_long_d_02.m2", + }, + { + fileId = "147984", + text = "sword_1h_long_d_03.m2", + value = "sword_1h_long_d_03.m2", + }, + { + fileId = "147986", + text = "sword_1h_machete_a_01.m2", + value = "sword_1h_machete_a_01.m2", + }, + { + fileId = "147988", + text = "sword_1h_machete_b_01.m2", + value = "sword_1h_machete_b_01.m2", + }, + { + fileId = "147990", + text = "sword_1h_machete_c_01.m2", + value = "sword_1h_machete_c_01.m2", + }, + { + fileId = "147992", + text = "sword_1h_machete_d_01.m2", + value = "sword_1h_machete_d_01.m2", + }, + { + fileId = "147994", + text = "sword_1h_mage_d_01.m2", + value = "sword_1h_mage_d_01.m2", + }, + { + fileId = "147996", + text = "sword_1h_miev_d_01.m2", + value = "sword_1h_miev_d_01.m2", + }, + { + fileId = "238895", + text = "sword_1h_naxx25_d_01.m2", + value = "sword_1h_naxx25_d_01.m2", + }, + { + fileId = "147998", + text = "sword_1h_naxxramas_d_01.m2", + value = "sword_1h_naxxramas_d_01.m2", + }, + { + fileId = "148000", + text = "sword_1h_nexus_d_01.m2", + value = "sword_1h_nexus_d_01.m2", + }, + { + fileId = "148006", + text = "sword_1h_nexus_d_02.m2", + value = "sword_1h_nexus_d_02.m2", + }, + { + fileId = "148012", + text = "sword_1h_nexus_d_03.m2", + value = "sword_1h_nexus_d_03.m2", + }, + { + fileId = "148018", + text = "sword_1h_northrend_b_01.m2", + value = "sword_1h_northrend_b_01.m2", + }, + { + fileId = "148023", + text = "sword_1h_northrend_b_02.m2", + value = "sword_1h_northrend_b_02.m2", + }, + { + fileId = "148030", + text = "sword_1h_northrend_b_03.m2", + value = "sword_1h_northrend_b_03.m2", + }, + { + fileId = "148038", + text = "sword_1h_northrend_c_01.m2", + value = "sword_1h_northrend_c_01.m2", + }, + { + fileId = "148045", + text = "sword_1h_northrend_c_02.m2", + value = "sword_1h_northrend_c_02.m2", + }, + { + fileId = "148050", + text = "sword_1h_northrend_c_03.m2", + value = "sword_1h_northrend_c_03.m2", + }, + { + fileId = "148055", + text = "sword_1h_northrend_d_01.m2", + value = "sword_1h_northrend_d_01.m2", + }, + { + fileId = "148059", + text = "sword_1h_northrend_d_02.m2", + value = "sword_1h_northrend_d_02.m2", + }, + { + fileId = "148065", + text = "sword_1h_northrend_d_03.m2", + value = "sword_1h_northrend_d_03.m2", + }, + { + fileId = "304092", + text = "sword_1h_pvealliance_d_01.m2", + value = "sword_1h_pvealliance_d_01.m2", + }, + { + fileId = "304306", + text = "sword_1h_pvealliance_d_02.m2", + value = "sword_1h_pvealliance_d_02.m2", + }, + { + fileId = "251942", + text = "sword_1h_pvehorde_d_01.m2", + value = "sword_1h_pvehorde_d_01.m2", + }, + { + fileId = "252224", + text = "sword_1h_pvehorde_d_02.m2", + value = "sword_1h_pvehorde_d_02.m2", + }, + { + fileId = "306153", + text = "sword_1h_pvp320_c_01.m2", + value = "sword_1h_pvp320_c_01.m2", + }, + { + fileId = "327851", + text = "sword_1h_pvp330_d_01.m2", + value = "sword_1h_pvp330_d_01.m2", + }, + { + fileId = "454350", + text = "sword_1h_pvp400_c_01.m2", + value = "sword_1h_pvp400_c_01.m2", + }, + { + fileId = "514471", + text = "sword_1h_pvp410_c_01.m2", + value = "sword_1h_pvp410_c_01.m2", + }, + { + fileId = "512001", + text = "sword_1h_pvp410_c_02.m2", + value = "sword_1h_pvp410_c_02.m2", + }, + { + fileId = "238900", + text = "sword_1h_pvp_c_01.m2", + value = "sword_1h_pvp_c_01.m2", + }, + { + fileId = "148070", + text = "sword_1h_pvpalliance_a_01.m2", + value = "sword_1h_pvpalliance_a_01.m2", + }, + { + fileId = "534818", + text = "sword_1h_pvpcataclysms3_c_01.m2", + value = "sword_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "529151", + text = "sword_1h_pvpcataclysms3_c_02.m2", + value = "sword_1h_pvpcataclysms3_c_02.m2", + }, + { + fileId = "148075", + text = "sword_1h_pvphorde_a_01.m2", + value = "sword_1h_pvphorde_a_01.m2", + }, + { + fileId = "326453", + text = "sword_1h_queldelar_d_01.m2", + value = "sword_1h_queldelar_d_01.m2", + }, + { + fileId = "148079", + text = "sword_1h_raid_d_01.m2", + value = "sword_1h_raid_d_01.m2", + }, + { + fileId = "148081", + text = "sword_1h_raid_d_02.m2", + value = "sword_1h_raid_d_02.m2", + }, + { + fileId = "148083", + text = "sword_1h_raid_d_03.m2", + value = "sword_1h_raid_d_03.m2", + }, + { + fileId = "148085", + text = "sword_1h_raid_d_04.m2", + value = "sword_1h_raid_d_04.m2", + }, + { + fileId = "148087", + text = "sword_1h_raid_d_05.m2", + value = "sword_1h_raid_d_05.m2", + }, + { + fileId = "148089", + text = "sword_1h_raid_d_06.m2", + value = "sword_1h_raid_d_06.m2", + }, + { + fileId = "148090", + text = "sword_1h_rapier_a_01.m2", + value = "sword_1h_rapier_a_01.m2", + }, + { + fileId = "148095", + text = "sword_1h_sabre_a_01.m2", + value = "sword_1h_sabre_a_01.m2", + }, + { + fileId = "148099", + text = "sword_1h_sabre_a_02.m2", + value = "sword_1h_sabre_a_02.m2", + }, + { + fileId = "148103", + text = "sword_1h_sabre_a_03.m2", + value = "sword_1h_sabre_a_03.m2", + }, + { + fileId = "148107", + text = "sword_1h_sabre_b_01.m2", + value = "sword_1h_sabre_b_01.m2", + }, + { + fileId = "148111", + text = "sword_1h_sabre_b_02.m2", + value = "sword_1h_sabre_b_02.m2", + }, + { + fileId = "148115", + text = "sword_1h_sabre_b_03.m2", + value = "sword_1h_sabre_b_03.m2", + }, + { + fileId = "148119", + text = "sword_1h_sabre_c_01.m2", + value = "sword_1h_sabre_c_01.m2", + }, + { + fileId = "148120", + text = "sword_1h_scimitar_a_02.m2", + value = "sword_1h_scimitar_a_02.m2", + }, + { + fileId = "148127", + text = "sword_1h_shivan_d_01.m2", + value = "sword_1h_shivan_d_01.m2", + }, + { + fileId = "148128", + text = "sword_1h_short_a_01.m2", + value = "sword_1h_short_a_01.m2", + }, + { + fileId = "148132", + text = "sword_1h_short_a_02.m2", + value = "sword_1h_short_a_02.m2", + }, + { + fileId = "148136", + text = "sword_1h_short_a_03.m2", + value = "sword_1h_short_a_03.m2", + }, + { + fileId = "148140", + text = "sword_1h_short_b_01.m2", + value = "sword_1h_short_b_01.m2", + }, + { + fileId = "148144", + text = "sword_1h_short_b_02.m2", + value = "sword_1h_short_b_02.m2", + }, + { + fileId = "148148", + text = "sword_1h_short_b_03.m2", + value = "sword_1h_short_b_03.m2", + }, + { + fileId = "148152", + text = "sword_1h_short_c_01.m2", + value = "sword_1h_short_c_01.m2", + }, + { + fileId = "148154", + text = "sword_1h_short_c_02.m2", + value = "sword_1h_short_c_02.m2", + }, + { + fileId = "148156", + text = "sword_1h_stratholme_d_01.m2", + value = "sword_1h_stratholme_d_01.m2", + }, + { + fileId = "148157", + text = "sword_1h_stratholme_d_02.m2", + value = "sword_1h_stratholme_d_02.m2", + }, + { + fileId = "148158", + text = "sword_1h_stratholme_d_03.m2", + value = "sword_1h_stratholme_d_03.m2", + }, + { + fileId = "148160", + text = "sword_1h_sunwell_d_01.m2", + value = "sword_1h_sunwell_d_01.m2", + }, + { + fileId = "148165", + text = "sword_1h_sunwell_d_02.m2", + value = "sword_1h_sunwell_d_02.m2", + }, + { + fileId = "148169", + text = "sword_1h_thunderblade_a_01.m2", + value = "sword_1h_thunderblade_a_01.m2", + }, + { + fileId = "148171", + text = "sword_1h_troll_b_01.m2", + value = "sword_1h_troll_b_01.m2", + }, + { + fileId = "333551", + text = "sword_1h_twilighthammer_c_01.m2", + value = "sword_1h_twilighthammer_c_01.m2", + }, + { + fileId = "148172", + text = "sword_1h_ulduar_d_01.m2", + value = "sword_1h_ulduar_d_01.m2", + }, + { + fileId = "148178", + text = "sword_1h_ulduar_d_03.m2", + value = "sword_1h_ulduar_d_03.m2", + }, + { + fileId = "238906", + text = "sword_1h_ulduarraid_d_01.m2", + value = "sword_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238912", + text = "sword_1h_ulduarraid_d_02.m2", + value = "sword_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238918", + text = "sword_1h_ulduarraid_d_03.m2", + value = "sword_1h_ulduarraid_d_03.m2", + }, + { + fileId = "238924", + text = "sword_1h_ulduarraid_d_04.m2", + value = "sword_1h_ulduarraid_d_04.m2", + }, + { + fileId = "148185", + text = "sword_1h_utgarde_d_01.m2", + value = "sword_1h_utgarde_d_01.m2", + }, + { + fileId = "148191", + text = "sword_1h_utgarde_d_02.m2", + value = "sword_1h_utgarde_d_02.m2", + }, + { + fileId = "249283", + text = "sword_1h_varian_d_01.m2", + value = "sword_1h_varian_d_01.m2", + }, + { + fileId = "148198", + text = "sword_1h_warlock_d_01.m2", + value = "sword_1h_warlock_d_01.m2", + }, + { + fileId = "148203", + text = "sword_1h_warrior_d_01.m2", + value = "sword_1h_warrior_d_01.m2", + }, + { + fileId = "331066", + text = "sword_1h_worgen_b_01.m2", + value = "sword_1h_worgen_b_01.m2", + }, + { + fileId = "148209", + text = "sword_1h_zulaman_d_01.m2", + value = "sword_1h_zulaman_d_01.m2", + }, + { + fileId = "148213", + text = "sword_1h_zulaman_d_02.m2", + value = "sword_1h_zulaman_d_02.m2", + }, + { + fileId = "148218", + text = "sword_1h_zulaman_d_03.m2", + value = "sword_1h_zulaman_d_03.m2", + }, + { + fileId = "148224", + text = "sword_1h_zulgurub_d_01.m2", + value = "sword_1h_zulgurub_d_01.m2", + }, + { + fileId = "148226", + text = "sword_1h_zulgurub_d_02.m2", + value = "sword_1h_zulgurub_d_02.m2", + }, + { + fileId = "148228", + text = "sword_2h_ahnqiraj_d_01.m2", + value = "sword_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "148231", + text = "sword_2h_ahnqiraj_d_02.m2", + value = "sword_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "303908", + text = "sword_2h_alliancecovenant_d_01.m2", + value = "sword_2h_alliancecovenant_d_01.m2", + }, + { + fileId = "148233", + text = "sword_2h_ashbringer.m2", + value = "sword_2h_ashbringer.m2", + }, + { + fileId = "148234", + text = "sword_2h_ashbringer02.m2", + value = "sword_2h_ashbringer02.m2", + }, + { + fileId = "148235", + text = "sword_2h_ashbringer_a_01.m2", + value = "sword_2h_ashbringer_a_01.m2", + }, + { + fileId = "148238", + text = "sword_2h_ashbringercorrupt.m2", + value = "sword_2h_ashbringercorrupt.m2", + }, + { + fileId = "148240", + text = "sword_2h_auchindoun_d_01.m2", + value = "sword_2h_auchindoun_d_01.m2", + }, + { + fileId = "148241", + text = "sword_2h_bastard_d_01.m2", + value = "sword_2h_bastard_d_01.m2", + }, + { + fileId = "148244", + text = "sword_2h_blacksmithing_d_01.m2", + value = "sword_2h_blacksmithing_d_01.m2", + }, + { + fileId = "148246", + text = "sword_2h_blacksmithing_d_02.m2", + value = "sword_2h_blacksmithing_d_02.m2", + }, + { + fileId = "148248", + text = "sword_2h_blacksmithing_d_03.m2", + value = "sword_2h_blacksmithing_d_03.m2", + }, + { + fileId = "148250", + text = "sword_2h_blackwing_a_01.m2", + value = "sword_2h_blackwing_a_01.m2", + }, + { + fileId = "148252", + text = "sword_2h_blackwing_a_02.m2", + value = "sword_2h_blackwing_a_02.m2", + }, + { + fileId = "148254", + text = "sword_2h_blood_a_01.m2", + value = "sword_2h_blood_a_01.m2", + }, + { + fileId = "536037", + text = "sword_2h_blood_a_01_yellow.m2", + value = "sword_2h_blood_a_01_yellow.m2", + }, + { + fileId = "148259", + text = "sword_2h_blood_a_02.m2", + value = "sword_2h_blood_a_02.m2", + }, + { + fileId = "148263", + text = "sword_2h_blood_b_01.m2", + value = "sword_2h_blood_b_01.m2", + }, + { + fileId = "148268", + text = "sword_2h_blood_b_02.m2", + value = "sword_2h_blood_b_02.m2", + }, + { + fileId = "148272", + text = "sword_2h_blood_c_01.m2", + value = "sword_2h_blood_c_01.m2", + }, + { + fileId = "148277", + text = "sword_2h_blood_c_02.m2", + value = "sword_2h_blood_c_02.m2", + }, + { + fileId = "148281", + text = "sword_2h_blood_c_03.m2", + value = "sword_2h_blood_c_03.m2", + }, + { + fileId = "148286", + text = "sword_2h_broadsword_a_01.m2", + value = "sword_2h_broadsword_a_01.m2", + }, + { + fileId = "148287", + text = "sword_2h_broadsword_a_02.m2", + value = "sword_2h_broadsword_a_02.m2", + }, + { + fileId = "148291", + text = "sword_2h_broadsword_a_03.m2", + value = "sword_2h_broadsword_a_03.m2", + }, + { + fileId = "148295", + text = "sword_2h_broadsword_b_01.m2", + value = "sword_2h_broadsword_b_01.m2", + }, + { + fileId = "407229", + text = "sword_2h_bwdraid_d_01.m2", + value = "sword_2h_bwdraid_d_01.m2", + }, + { + fileId = "377898", + text = "sword_2h_cataclysm_b_01.m2", + value = "sword_2h_cataclysm_b_01.m2", + }, + { + fileId = "380838", + text = "sword_2h_cataclysm_b_02.m2", + value = "sword_2h_cataclysm_b_02.m2", + }, + { + fileId = "465036", + text = "sword_2h_cataclysm_c_01.m2", + value = "sword_2h_cataclysm_c_01.m2", + }, + { + fileId = "148296", + text = "sword_2h_claymore_a_01.m2", + value = "sword_2h_claymore_a_01.m2", + }, + { + fileId = "148302", + text = "sword_2h_claymore_a_02.m2", + value = "sword_2h_claymore_a_02.m2", + }, + { + fileId = "148307", + text = "sword_2h_claymore_b_01.m2", + value = "sword_2h_claymore_b_01.m2", + }, + { + fileId = "148311", + text = "sword_2h_claymore_b_02.m2", + value = "sword_2h_claymore_b_02.m2", + }, + { + fileId = "148315", + text = "sword_2h_claymore_c_01.m2", + value = "sword_2h_claymore_c_01.m2", + }, + { + fileId = "148317", + text = "sword_2h_cotstrat_d_01.m2", + value = "sword_2h_cotstrat_d_01.m2", + }, + { + fileId = "148322", + text = "sword_2h_crystal_c_01.m2", + value = "sword_2h_crystal_c_01.m2", + }, + { + fileId = "148327", + text = "sword_2h_crystal_c_02.m2", + value = "sword_2h_crystal_c_02.m2", + }, + { + fileId = "148332", + text = "sword_2h_crystal_c_03.m2", + value = "sword_2h_crystal_c_03.m2", + }, + { + fileId = "238930", + text = "sword_2h_dalaran_d_01.m2", + value = "sword_2h_dalaran_d_01.m2", + }, + { + fileId = "148338", + text = "sword_2h_deathknight_b_01.m2", + value = "sword_2h_deathknight_b_01.m2", + }, + { + fileId = "148339", + text = "sword_2h_deathknight_b_01_q.m2", + value = "sword_2h_deathknight_b_01_q.m2", + }, + { + fileId = "528804", + text = "sword_2h_deathwingraiddw_d_01.m2", + value = "sword_2h_deathwingraiddw_d_01.m2", + }, + { + fileId = "148345", + text = "sword_2h_demonblade_d_01.m2", + value = "sword_2h_demonblade_d_01.m2", + }, + { + fileId = "148347", + text = "sword_2h_draenei_a_01.m2", + value = "sword_2h_draenei_a_01.m2", + }, + { + fileId = "148353", + text = "sword_2h_draenei_a_02.m2", + value = "sword_2h_draenei_a_02.m2", + }, + { + fileId = "148360", + text = "sword_2h_epic_a_03.m2", + value = "sword_2h_epic_a_03.m2", + }, + { + fileId = "327825", + text = "sword_2h_epic_a_03alt.m2", + value = "sword_2h_epic_a_03alt.m2", + }, + { + fileId = "516502", + text = "sword_2h_firelandsraid_d_01.m2", + value = "sword_2h_firelandsraid_d_01.m2", + }, + { + fileId = "252284", + text = "sword_2h_foam_a_01.m2", + value = "sword_2h_foam_a_01.m2", + }, + { + fileId = "148362", + text = "sword_2h_frostmourne_d_01.m2", + value = "sword_2h_frostmourne_d_01.m2", + }, + { + fileId = "340549", + text = "sword_2h_frostmourne_d_02.m2", + value = "sword_2h_frostmourne_d_02.m2", + }, + { + fileId = "345733", + text = "sword_2h_frostmourne_d_02_broken.m2", + value = "sword_2h_frostmourne_d_02_broken.m2", + }, + { + fileId = "368893", + text = "sword_2h_grimbatolraid_d_01.m2", + value = "sword_2h_grimbatolraid_d_01.m2", + }, + { + fileId = "148364", + text = "sword_2h_horde_a_01.m2", + value = "sword_2h_horde_a_01.m2", + }, + { + fileId = "148365", + text = "sword_2h_horde_a_02.m2", + value = "sword_2h_horde_a_02.m2", + }, + { + fileId = "148367", + text = "sword_2h_horde_b_03.m2", + value = "sword_2h_horde_b_03.m2", + }, + { + fileId = "148373", + text = "sword_2h_horde_c_01.m2", + value = "sword_2h_horde_c_01.m2", + }, + { + fileId = "148379", + text = "sword_2h_horde_c_02.m2", + value = "sword_2h_horde_c_02.m2", + }, + { + fileId = "148385", + text = "sword_2h_horde_c_03.m2", + value = "sword_2h_horde_c_03.m2", + }, + { + fileId = "148393", + text = "sword_2h_horde_d_01.m2", + value = "sword_2h_horde_d_01.m2", + }, + { + fileId = "148397", + text = "sword_2h_horde_d_02.m2", + value = "sword_2h_horde_d_02.m2", + }, + { + fileId = "304031", + text = "sword_2h_hordecovenant_d_01.m2", + value = "sword_2h_hordecovenant_d_01.m2", + }, + { + fileId = "148401", + text = "sword_2h_hyjal_d_01.m2", + value = "sword_2h_hyjal_d_01.m2", + }, + { + fileId = "318525", + text = "sword_2h_icecrownraid_d_01.m2", + value = "sword_2h_icecrownraid_d_01.m2", + }, + { + fileId = "148406", + text = "sword_2h_katana_a_01.m2", + value = "sword_2h_katana_a_01.m2", + }, + { + fileId = "148410", + text = "sword_2h_katana_b_01.m2", + value = "sword_2h_katana_b_01.m2", + }, + { + fileId = "148414", + text = "sword_2h_katana_b_02.m2", + value = "sword_2h_katana_b_02.m2", + }, + { + fileId = "148418", + text = "sword_2h_korean_a_01.m2", + value = "sword_2h_korean_a_01.m2", + }, + { + fileId = "148420", + text = "sword_2h_korean_c_01.m2", + value = "sword_2h_korean_c_01.m2", + }, + { + fileId = "148423", + text = "sword_2h_nexus_d_01.m2", + value = "sword_2h_nexus_d_01.m2", + }, + { + fileId = "148429", + text = "sword_2h_northrend_b_01.m2", + value = "sword_2h_northrend_b_01.m2", + }, + { + fileId = "148436", + text = "sword_2h_northrend_b_02.m2", + value = "sword_2h_northrend_b_02.m2", + }, + { + fileId = "148443", + text = "sword_2h_northrend_c_01.m2", + value = "sword_2h_northrend_c_01.m2", + }, + { + fileId = "148448", + text = "sword_2h_northrend_c_02.m2", + value = "sword_2h_northrend_c_02.m2", + }, + { + fileId = "148453", + text = "sword_2h_northrend_c_03.m2", + value = "sword_2h_northrend_c_03.m2", + }, + { + fileId = "148458", + text = "sword_2h_northrend_d_01.m2", + value = "sword_2h_northrend_d_01.m2", + }, + { + fileId = "148462", + text = "sword_2h_northrend_d_02.m2", + value = "sword_2h_northrend_d_02.m2", + }, + { + fileId = "148469", + text = "sword_2h_northrend_d_03.m2", + value = "sword_2h_northrend_d_03.m2", + }, + { + fileId = "148474", + text = "sword_2h_northrend_d_04.m2", + value = "sword_2h_northrend_d_04.m2", + }, + { + fileId = "148480", + text = "sword_2h_northrend_d_05.m2", + value = "sword_2h_northrend_d_05.m2", + }, + { + fileId = "446159", + text = "sword_2h_paladin_a_01avengingangel.m2", + value = "sword_2h_paladin_a_01avengingangel.m2", + }, + { + fileId = "254942", + text = "sword_2h_pvealliance_d_01.m2", + value = "sword_2h_pvealliance_d_01.m2", + }, + { + fileId = "252783", + text = "sword_2h_pvehorde_d_01.m2", + value = "sword_2h_pvehorde_d_01.m2", + }, + { + fileId = "307048", + text = "sword_2h_pvp320_c_01.m2", + value = "sword_2h_pvp320_c_01.m2", + }, + { + fileId = "327855", + text = "sword_2h_pvp330_d_01.m2", + value = "sword_2h_pvp330_d_01.m2", + }, + { + fileId = "467672", + text = "sword_2h_pvp400_c_01.m2", + value = "sword_2h_pvp400_c_01.m2", + }, + { + fileId = "511450", + text = "sword_2h_pvp410_c_01.m2", + value = "sword_2h_pvp410_c_01.m2", + }, + { + fileId = "238936", + text = "sword_2h_pvp_c_01.m2", + value = "sword_2h_pvp_c_01.m2", + }, + { + fileId = "148485", + text = "sword_2h_pvpalliance_a_01.m2", + value = "sword_2h_pvpalliance_a_01.m2", + }, + { + fileId = "532461", + text = "sword_2h_pvpcataclysms3_c_01.m2", + value = "sword_2h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "148487", + text = "sword_2h_pvphorde_a_01.m2", + value = "sword_2h_pvphorde_a_01.m2", + }, + { + fileId = "148490", + text = "sword_2h_raid_d_01.m2", + value = "sword_2h_raid_d_01.m2", + }, + { + fileId = "148492", + text = "sword_2h_raid_d_02.m2", + value = "sword_2h_raid_d_02.m2", + }, + { + fileId = "148494", + text = "sword_2h_raid_d_03.m2", + value = "sword_2h_raid_d_03.m2", + }, + { + fileId = "148496", + text = "sword_2h_raid_d_04.m2", + value = "sword_2h_raid_d_04.m2", + }, + { + fileId = "148498", + text = "sword_2h_raid_d_05.m2", + value = "sword_2h_raid_d_05.m2", + }, + { + fileId = "148500", + text = "sword_2h_raid_d_06.m2", + value = "sword_2h_raid_d_06.m2", + }, + { + fileId = "148502", + text = "sword_2h_stratholme_d_01.m2", + value = "sword_2h_stratholme_d_01.m2", + }, + { + fileId = "148504", + text = "sword_2h_stratholme_d_02.m2", + value = "sword_2h_stratholme_d_02.m2", + }, + { + fileId = "148507", + text = "sword_2h_sunwell_d_01.m2", + value = "sword_2h_sunwell_d_01.m2", + }, + { + fileId = "148513", + text = "sword_2h_tauren_b_01.m2", + value = "sword_2h_tauren_b_01.m2", + }, + { + fileId = "344503", + text = "sword_2h_twilighthammer_c_01.m2", + value = "sword_2h_twilighthammer_c_01.m2", + }, + { + fileId = "148514", + text = "sword_2h_ulduar_d_01.m2", + value = "sword_2h_ulduar_d_01.m2", + }, + { + fileId = "238944", + text = "sword_2h_ulduarraid_d_01.m2", + value = "sword_2h_ulduarraid_d_01.m2", + }, + { + fileId = "148520", + text = "sword_2h_utgarde_d_01.m2", + value = "sword_2h_utgarde_d_01.m2", + }, + { + fileId = "148525", + text = "sword_2h_zulaman_d_01.m2", + value = "sword_2h_zulaman_d_01.m2", + }, + { + fileId = "148530", + text = "sword_2h_zulgurub_d_01.m2", + value = "sword_2h_zulgurub_d_01.m2", + }, + { + fileId = "534193", + text = "thrown_1h_430nightelf_c_01.m2", + value = "thrown_1h_430nightelf_c_01.m2", + }, + { + fileId = "148534", + text = "thrown_1h_axe_a_01.m2", + value = "thrown_1h_axe_a_01.m2", + }, + { + fileId = "148538", + text = "thrown_1h_axe_a_02.m2", + value = "thrown_1h_axe_a_02.m2", + }, + { + fileId = "148542", + text = "thrown_1h_axe_b_01.m2", + value = "thrown_1h_axe_b_01.m2", + }, + { + fileId = "462296", + text = "thrown_1h_bladed_a_01.m2", + value = "thrown_1h_bladed_a_01.m2", + }, + { + fileId = "250653", + text = "thrown_1h_bomb_c_01.m2", + value = "thrown_1h_bomb_c_01.m2", + }, + { + fileId = "148546", + text = "thrown_1h_boomerang_a_01.m2", + value = "thrown_1h_boomerang_a_01.m2", + }, + { + fileId = "459082", + text = "thrown_1h_cataclysm_c_01.m2", + value = "thrown_1h_cataclysm_c_01.m2", + }, + { + fileId = "148553", + text = "thrown_1h_coilfang_dagger_d_01.m2", + value = "thrown_1h_coilfang_dagger_d_01.m2", + }, + { + fileId = "148554", + text = "thrown_1h_dagger_a_01.m2", + value = "thrown_1h_dagger_a_01.m2", + }, + { + fileId = "148558", + text = "thrown_1h_dagger_a_02.m2", + value = "thrown_1h_dagger_a_02.m2", + }, + { + fileId = "148562", + text = "thrown_1h_dagger_b_01.m2", + value = "thrown_1h_dagger_b_01.m2", + }, + { + fileId = "575345", + text = "thrown_1h_deathwingraid_d_01.m2", + value = "thrown_1h_deathwingraid_d_01.m2", + }, + { + fileId = "148566", + text = "thrown_1h_dynamite_a_01.m2", + value = "thrown_1h_dynamite_a_01.m2", + }, + { + fileId = "148568", + text = "thrown_1h_dynamite_a_02.m2", + value = "thrown_1h_dynamite_a_02.m2", + }, + { + fileId = "148569", + text = "thrown_1h_fan_a_01.m2", + value = "thrown_1h_fan_a_01.m2", + }, + { + fileId = "517078", + text = "thrown_1h_firelandsraid_d_01.m2", + value = "thrown_1h_firelandsraid_d_01.m2", + }, + { + fileId = "238950", + text = "thrown_1h_giant_weaponboulder.m2", + value = "thrown_1h_giant_weaponboulder.m2", + }, + { + fileId = "148570", + text = "thrown_1h_hammer_c_01.m2", + value = "thrown_1h_hammer_c_01.m2", + }, + { + fileId = "148572", + text = "thrown_1h_harpoon_d_01.m2", + value = "thrown_1h_harpoon_d_01.m2", + }, + { + fileId = "148574", + text = "thrown_1h_molotov_a_01.m2", + value = "thrown_1h_molotov_a_01.m2", + }, + { + fileId = "238951", + text = "thrown_1h_naxx25_d_01.m2", + value = "thrown_1h_naxx25_d_01.m2", + }, + { + fileId = "306924", + text = "thrown_1h_pvp320_c_01.m2", + value = "thrown_1h_pvp320_c_01.m2", + }, + { + fileId = "328485", + text = "thrown_1h_pvp330_d_01.m2", + value = "thrown_1h_pvp330_d_01.m2", + }, + { + fileId = "510944", + text = "thrown_1h_pvp410_c_01.m2", + value = "thrown_1h_pvp410_c_01.m2", + }, + { + fileId = "532035", + text = "thrown_1h_pvpcataclysms3_c_01.m2", + value = "thrown_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "148575", + text = "thrown_1h_shuriken_a_01.m2", + value = "thrown_1h_shuriken_a_01.m2", + }, + { + fileId = "148579", + text = "thrown_1h_shuriken_a_02.m2", + value = "thrown_1h_shuriken_a_02.m2", + }, + { + fileId = "148583", + text = "thrown_1h_shuriken_b_01.m2", + value = "thrown_1h_shuriken_b_01.m2", + }, + { + fileId = "148587", + text = "thrown_1h_sunwell_d_01.m2", + value = "thrown_1h_sunwell_d_01.m2", + }, + { + fileId = "462297", + text = "thrown_1h_trident_c_01.m2", + value = "thrown_1h_trident_c_01.m2", + }, + { + fileId = "148593", + text = "totem_2h_carved_b_01.m2", + value = "totem_2h_carved_b_01.m2", + }, + { + fileId = "148595", + text = "totem_2h_carved_d_01.m2", + value = "totem_2h_carved_d_01.m2", + }, + { + fileId = "537050", + text = "wand_1h_430nightelf_c_01.m2", + value = "wand_1h_430nightelf_c_01.m2", + }, + { + fileId = "533368", + text = "wand_1h_430oldgod_c_01.m2", + value = "wand_1h_430oldgod_c_01.m2", + }, + { + fileId = "148598", + text = "wand_1h_ahnqiraj_d_01.m2", + value = "wand_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "148603", + text = "wand_1h_ahnqiraj_d_02.m2", + value = "wand_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "148608", + text = "wand_1h_auchindoun_d_01.m2", + value = "wand_1h_auchindoun_d_01.m2", + }, + { + fileId = "148610", + text = "wand_1h_blackwing_a_01.m2", + value = "wand_1h_blackwing_a_01.m2", + }, + { + fileId = "148611", + text = "wand_1h_blood_a_01.m2", + value = "wand_1h_blood_a_01.m2", + }, + { + fileId = "374281", + text = "wand_1h_bwdraid_d_01.m2", + value = "wand_1h_bwdraid_d_01.m2", + }, + { + fileId = "381029", + text = "wand_1h_cataclysm_b_01.m2", + value = "wand_1h_cataclysm_b_01.m2", + }, + { + fileId = "383739", + text = "wand_1h_cataclysm_b_02.m2", + value = "wand_1h_cataclysm_b_02.m2", + }, + { + fileId = "458020", + text = "wand_1h_cataclysm_c_01.m2", + value = "wand_1h_cataclysm_c_01.m2", + }, + { + fileId = "461649", + text = "wand_1h_cataclysm_c_02.m2", + value = "wand_1h_cataclysm_c_02.m2", + }, + { + fileId = "461650", + text = "wand_1h_cataclysm_c_03.m2", + value = "wand_1h_cataclysm_c_03.m2", + }, + { + fileId = "536320", + text = "wand_1h_deathwingraid_d_01.m2", + value = "wand_1h_deathwingraid_d_01.m2", + }, + { + fileId = "530407", + text = "wand_1h_deathwingraid_d_02.m2", + value = "wand_1h_deathwingraid_d_02.m2", + }, + { + fileId = "148617", + text = "wand_1h_draenei_a_01.m2", + value = "wand_1h_draenei_a_01.m2", + }, + { + fileId = "516744", + text = "wand_1h_firelandsraid_d_01.m2", + value = "wand_1h_firelandsraid_d_01.m2", + }, + { + fileId = "469755", + text = "wand_1h_firelandsraid_d_02.m2", + value = "wand_1h_firelandsraid_d_02.m2", + }, + { + fileId = "372199", + text = "wand_1h_grimbatolraid_d_01.m2", + value = "wand_1h_grimbatolraid_d_01.m2", + }, + { + fileId = "148623", + text = "wand_1h_horde_a_01.m2", + value = "wand_1h_horde_a_01.m2", + }, + { + fileId = "148628", + text = "wand_1h_horde_a_02.m2", + value = "wand_1h_horde_a_02.m2", + }, + { + fileId = "148634", + text = "wand_1h_horde_a_03.m2", + value = "wand_1h_horde_a_03.m2", + }, + { + fileId = "148640", + text = "wand_1h_horde_b_01.m2", + value = "wand_1h_horde_b_01.m2", + }, + { + fileId = "148646", + text = "wand_1h_horde_b_02.m2", + value = "wand_1h_horde_b_02.m2", + }, + { + fileId = "319752", + text = "wand_1h_icecrownraid_d_01.m2", + value = "wand_1h_icecrownraid_d_01.m2", + }, + { + fileId = "317066", + text = "wand_1h_icecrownraid_d_02.m2", + value = "wand_1h_icecrownraid_d_02.m2", + }, + { + fileId = "148652", + text = "wand_1h_jeweled_b_01.m2", + value = "wand_1h_jeweled_b_01.m2", + }, + { + fileId = "148657", + text = "wand_1h_jeweled_b_02.m2", + value = "wand_1h_jeweled_b_02.m2", + }, + { + fileId = "148663", + text = "wand_1h_outlandraid_d_01.m2", + value = "wand_1h_outlandraid_d_01.m2", + }, + { + fileId = "148669", + text = "wand_1h_outlandraid_d_02.m2", + value = "wand_1h_outlandraid_d_02.m2", + }, + { + fileId = "148674", + text = "wand_1h_outlandraid_d_03.m2", + value = "wand_1h_outlandraid_d_03.m2", + }, + { + fileId = "148680", + text = "wand_1h_outlandraid_d_04.m2", + value = "wand_1h_outlandraid_d_04.m2", + }, + { + fileId = "148685", + text = "wand_1h_outlandraid_d_05.m2", + value = "wand_1h_outlandraid_d_05.m2", + }, + { + fileId = "148689", + text = "wand_1h_outlandraid_d_06.m2", + value = "wand_1h_outlandraid_d_06.m2", + }, + { + fileId = "305731", + text = "wand_1h_pvealliance_d_01.m2", + value = "wand_1h_pvealliance_d_01.m2", + }, + { + fileId = "305333", + text = "wand_1h_pvealliance_d_02.m2", + value = "wand_1h_pvealliance_d_02.m2", + }, + { + fileId = "254864", + text = "wand_1h_pvehorde_d_01.m2", + value = "wand_1h_pvehorde_d_01.m2", + }, + { + fileId = "293763", + text = "wand_1h_pvehorde_d_02.m2", + value = "wand_1h_pvehorde_d_02.m2", + }, + { + fileId = "307202", + text = "wand_1h_pvp320_c_01.m2", + value = "wand_1h_pvp320_c_01.m2", + }, + { + fileId = "328249", + text = "wand_1h_pvp330_d_01.m2", + value = "wand_1h_pvp330_d_01.m2", + }, + { + fileId = "433282", + text = "wand_1h_pvp400_c_01.m2", + value = "wand_1h_pvp400_c_01.m2", + }, + { + fileId = "511114", + text = "wand_1h_pvp410_c_02.m2", + value = "wand_1h_pvp410_c_02.m2", + }, + { + fileId = "238959", + text = "wand_1h_pvp_c_01.m2", + value = "wand_1h_pvp_c_01.m2", + }, + { + fileId = "526582", + text = "wand_1h_pvpcataclysms3_c_01.m2", + value = "wand_1h_pvpcataclysms3_c_01.m2", + }, + { + fileId = "530730", + text = "wand_1h_pvpcataclysms3_c_02.m2", + value = "wand_1h_pvpcataclysms3_c_02.m2", + }, + { + fileId = "148694", + text = "wand_1h_romancandle_a_01.m2", + value = "wand_1h_romancandle_a_01.m2", + }, + { + fileId = "148695", + text = "wand_1h_standard_a_01.m2", + value = "wand_1h_standard_a_01.m2", + }, + { + fileId = "148699", + text = "wand_1h_standard_a_02.m2", + value = "wand_1h_standard_a_02.m2", + }, + { + fileId = "148706", + text = "wand_1h_stratholme_d_01.m2", + value = "wand_1h_stratholme_d_01.m2", + }, + { + fileId = "148708", + text = "wand_1h_stratholme_d_02.m2", + value = "wand_1h_stratholme_d_02.m2", + }, + { + fileId = "148709", + text = "wand_1h_sunwell_d_01.m2", + value = "wand_1h_sunwell_d_01.m2", + }, + { + fileId = "148714", + text = "wand_1h_sunwell_d_02.m2", + value = "wand_1h_sunwell_d_02.m2", + }, + { + fileId = "249285", + text = "wand_1h_ulduarraid_d_01.m2", + value = "wand_1h_ulduarraid_d_01.m2", + }, + { + fileId = "249937", + text = "wand_1h_ulduarraid_d_02.m2", + value = "wand_1h_ulduarraid_d_02.m2", + }, + { + fileId = "148719", + text = "wand_1h_utgarde_d_01.m2", + value = "wand_1h_utgarde_d_01.m2", + }, + { + fileId = "148725", + text = "wand_1h_zulaman_d_01.m2", + value = "wand_1h_zulaman_d_01.m2", + }, + { + fileId = "148730", + text = "wand_1h_zulaman_d_02.m2", + value = "wand_1h_zulaman_d_02.m2", + }, + { + fileId = "148734", + text = "wand_1h_zulgurub_d_01.m2", + value = "wand_1h_zulgurub_d_01.m2", + }, + { + fileId = "148735", + text = "wand_1h_zulgurub_d_02.m2", + value = "wand_1h_zulgurub_d_02.m2", + }, + { + fileId = "148736", + text = "wand_1h_zulgurub_d_03.m2", + value = "wand_1h_zulgurub_d_03.m2", + }, + }, + text = "weapon", + value = "weapon", + }, + }, + text = "objectcomponents", + value = "objectcomponents", + }, + }, + text = "item", + value = "item", + }, + { + children = { + { + children = { + { + fileId = "165398", + text = "bloodspurt.m2", + value = "bloodspurt.m2", + }, + { + fileId = "165399", + text = "bloodspurtblack.m2", + value = "bloodspurtblack.m2", + }, + { + fileId = "165400", + text = "bloodspurtblacklarge.m2", + value = "bloodspurtblacklarge.m2", + }, + { + fileId = "165401", + text = "bloodspurtblue.m2", + value = "bloodspurtblue.m2", + }, + { + fileId = "165402", + text = "bloodspurtbluelarge.m2", + value = "bloodspurtbluelarge.m2", + }, + { + fileId = "165404", + text = "bloodspurtgreen.m2", + value = "bloodspurtgreen.m2", + }, + { + fileId = "165405", + text = "bloodspurtgreenlarge.m2", + value = "bloodspurtgreenlarge.m2", + }, + { + fileId = "165407", + text = "bloodspurtlarge.m2", + value = "bloodspurtlarge.m2", + }, + }, + text = "bloodspurts", + value = "bloodspurts", + }, + { + fileId = "165411", + text = "bubbles.m2", + value = "bubbles.m2", + }, + { + fileId = "165412", + text = "coldbreath.m2", + value = "coldbreath.m2", + }, + { + fileId = "165415", + text = "ember_trail.m2", + value = "ember_trail.m2", + }, + { + fileId = "165417", + text = "footstepspraydirt.m2", + value = "footstepspraydirt.m2", + }, + { + fileId = "165418", + text = "footstepspraydirtwalk.m2", + value = "footstepspraydirtwalk.m2", + }, + { + fileId = "165419", + text = "footstepspraysnow.m2", + value = "footstepspraysnow.m2", + }, + { + fileId = "165420", + text = "footstepspraysnowwalk.m2", + value = "footstepspraysnowwalk.m2", + }, + { + fileId = "165421", + text = "footstepspraywater.m2", + value = "footstepspraywater.m2", + }, + { + fileId = "165422", + text = "footstepspraywaterwalk.m2", + value = "footstepspraywaterwalk.m2", + }, + { + fileId = "165427", + text = "greenleaves.m2", + value = "greenleaves.m2", + }, + { + fileId = "165433", + text = "loginfx.m2", + value = "loginfx.m2", + }, + { + fileId = "165434", + text = "lootfx.m2", + value = "lootfx.m2", + }, + { + fileId = "2198654", + text = "moltenblast_missile.m2", + value = "moltenblast_missile.m2", + }, + { + fileId = "165436", + text = "morphfx.m2", + value = "morphfx.m2", + }, + { + fileId = "165437", + text = "pick_spellobject.m2", + value = "pick_spellobject.m2", + }, + { + fileId = "2198578", + text = "stunswirl_state_head.m2", + value = "stunswirl_state_head.m2", + }, + }, + text = "particles", + value = "particles", + }, + { + children = { + { + fileId = "165528", + text = "sonicboom_impactdd_uber_chest.m2", + value = "sonicboom_impactdd_uber_chest.m2", + }, + }, + text = "spell", + value = "spell", + }, + { + children = { + { + fileId = "165529", + text = "abolishmagic_base.m2", + value = "abolishmagic_base.m2", + }, + { + fileId = "165530", + text = "abyssal_ball.m2", + value = "abyssal_ball.m2", + }, + { + fileId = "431768", + text = "abyssal_coral_lamp_lightning.m2", + value = "abyssal_coral_lamp_lightning.m2", + }, { fileId = "165531", text = "abyssal_impact_base.m2", @@ -51901,6 +73688,11 @@ WeakAuras.ModelPaths = { text = "aimedshot_impact_chest.m2", value = "aimedshot_impact_chest.m2", }, + { + fileId = "535815", + text = "alizabal_whirlwind_state.m2", + value = "alizabal_whirlwind_state.m2", + }, { fileId = "240789", text = "alliancectfflag_generic_spell.m2", @@ -51911,11 +73703,36 @@ WeakAuras.ModelPaths = { text = "alliancectfflag_spell.m2", value = "alliancectfflag_spell.m2", }, + { + fileId = "436626", + text = "altar_of_ascension_fx.m2", + value = "altar_of_ascension_fx.m2", + }, + { + fileId = "519369", + text = "alysrazor_wings_01.m2", + value = "alysrazor_wings_01.m2", + }, + { + fileId = "516675", + text = "amberbarrier_state.m2", + value = "amberbarrier_state.m2", + }, { fileId = "165562", text = "amplifymagic_impact_base.m2", value = "amplifymagic_impact_base.m2", }, + { + fileId = "515653", + text = "anthricyst_flamewall_01.m2", + value = "anthricyst_flamewall_01.m2", + }, + { + fileId = "522655", + text = "anthricystchangefx.m2", + value = "anthricystchangefx.m2", + }, { fileId = "165563", text = "antimagic_precast_hand.m2", @@ -52096,6 +73913,11 @@ WeakAuras.ModelPaths = { text = "arcanetorrent.m2", value = "arcanetorrent.m2", }, + { + fileId = "519019", + text = "arcanetorrent_fiery.m2", + value = "arcanetorrent_fiery.m2", + }, { fileId = "165596", text = "arcanevolley_missile.m2", @@ -52116,6 +73938,26 @@ WeakAuras.ModelPaths = { text = "archimonde_fire.m2", value = "archimonde_fire.m2", }, + { + fileId = "511969", + text = "archimonde_fire_v2.m2", + value = "archimonde_fire_v2.m2", + }, + { + fileId = "526663", + text = "archimonde_fire_v3.m2", + value = "archimonde_fire_v3.m2", + }, + { + fileId = "427667", + text = "archimonde_pinkfire.m2", + value = "archimonde_pinkfire.m2", + }, + { + fileId = "516722", + text = "archimonde_purple_fire.m2", + value = "archimonde_purple_fire.m2", + }, { fileId = "240790", text = "argentcrusade_ctfflag_spell.m2", @@ -52176,6 +74018,11 @@ WeakAuras.ModelPaths = { text = "astral_recall_impact_base.m2", value = "astral_recall_impact_base.m2", }, + { + fileId = "535132", + text = "aurablacktall.m2", + value = "aurablacktall.m2", + }, { fileId = "165643", text = "avengingwrath_impact_base.m2", @@ -52186,6 +74033,16 @@ WeakAuras.ModelPaths = { text = "avengingwrath_state_chest.m2", value = "avengingwrath_state_chest.m2", }, + { + fileId = "397940", + text = "axistestobject.m2", + value = "axistestobject.m2", + }, + { + fileId = "571872", + text = "azsharashand.m2", + value = "azsharashand.m2", + }, { fileId = "165645", text = "backstab_cast_base.m2", @@ -52201,6 +74058,11 @@ WeakAuras.ModelPaths = { text = "balanceofnature_impact_base.m2", value = "balanceofnature_impact_base.m2", }, + { + fileId = "534428", + text = "ball_of_shadow.m2", + value = "ball_of_shadow.m2", + }, { fileId = "165648", text = "banish_chest.m2", @@ -52351,6 +74213,11 @@ WeakAuras.ModelPaths = { text = "bind_impact_base.m2", value = "bind_impact_base.m2", }, + { + fileId = "526842", + text = "black_blood_geyser.m2", + value = "black_blood_geyser.m2", + }, { fileId = "240798", text = "black_roseshower_impact_base.m2", @@ -52566,6 +74433,11 @@ WeakAuras.ModelPaths = { text = "bloodyexplosion.m2", value = "bloodyexplosion.m2", }, + { + fileId = "426040", + text = "bloodyexplosionblack.m2", + value = "bloodyexplosionblack.m2", + }, { fileId = "165738", text = "bloodyexplosiongreen.m2", @@ -52616,6 +74488,16 @@ WeakAuras.ModelPaths = { text = "bonearmor_state_chest.m2", value = "bonearmor_state_chest.m2", }, + { + fileId = "367608", + text = "boneguardrockspike.m2", + value = "boneguardrockspike.m2", + }, + { + fileId = "407326", + text = "boneguardrockspike_spell.m2", + value = "boneguardrockspike_spell.m2", + }, { fileId = "341893", text = "boneguardspike.m2", @@ -52646,6 +74528,11 @@ WeakAuras.ModelPaths = { text = "bubble_drunk.m2", value = "bubble_drunk.m2", }, + { + fileId = "366760", + text = "bubble_spell.m2", + value = "bubble_spell.m2", + }, { fileId = "165761", text = "burningintellect_impact_base.m2", @@ -52671,11 +74558,26 @@ WeakAuras.ModelPaths = { text = "burrowearth_brown_missile.m2", value = "burrowearth_brown_missile.m2", }, + { + fileId = "340882", + text = "burrowearth_brown_missile_low.m2", + value = "burrowearth_brown_missile_low.m2", + }, { fileId = "307486", text = "burrowearth_brown_missile_v2.m2", value = "burrowearth_brown_missile_v2.m2", }, + { + fileId = "464482", + text = "burrowearth_brown_missile_v2_projected.m2", + value = "burrowearth_brown_missile_v2_projected.m2", + }, + { + fileId = "395843", + text = "burrowearth_brown_missile_v3.m2", + value = "burrowearth_brown_missile_v3.m2", + }, { fileId = "165766", text = "burrowearth_hellfire_missile.m2", @@ -52686,6 +74588,11 @@ WeakAuras.ModelPaths = { text = "calllightning_impact.m2", value = "calllightning_impact.m2", }, + { + fileId = "399561", + text = "camera_state.m2", + value = "camera_state.m2", + }, { fileId = "165769", text = "camouflage_base.m2", @@ -52776,6 +74683,11 @@ WeakAuras.ModelPaths = { text = "challengingshout_cast_base.m2", value = "challengingshout_cast_base.m2", }, + { + fileId = "463429", + text = "chaos_blast_proj_impact.m2", + value = "chaos_blast_proj_impact.m2", + }, { fileId = "165784", text = "chargetrail.m2", @@ -52811,11 +74723,26 @@ WeakAuras.ModelPaths = { text = "chimerashot_missile.m2", value = "chimerashot_missile.m2", }, + { + fileId = "464156", + text = "chogall_physlaser.m2", + value = "chogall_physlaser.m2", + }, + { + fileId = "464135", + text = "chogall_shadowlaser.m2", + value = "chogall_shadowlaser.m2", + }, { fileId = "165792", text = "christmassnowrain.m2", value = "christmassnowrain.m2", }, + { + fileId = "574841", + text = "chromatic_dragon_beam.m2", + value = "chromatic_dragon_beam.m2", + }, { fileId = "1083712", text = "cinematic_omni_light.m2", @@ -52906,6 +74833,11 @@ WeakAuras.ModelPaths = { text = "consecration_impact_base.m2", value = "consecration_impact_base.m2", }, + { + fileId = "514642", + text = "consecration_impact_basehostile.m2", + value = "consecration_impact_basehostile.m2", + }, { fileId = "165819", text = "consume_magic_impact.m2", @@ -52916,6 +74848,11 @@ WeakAuras.ModelPaths = { text = "corrosivesandbreath.m2", value = "corrosivesandbreath.m2", }, + { + fileId = "534990", + text = "corrupted_deathwing_missile.m2", + value = "corrupted_deathwing_missile.m2", + }, { fileId = "165821", text = "corruption_impactdot_med_base.m2", @@ -52926,6 +74863,11 @@ WeakAuras.ModelPaths = { text = "counterspell_impact_chest.m2", value = "counterspell_impact_chest.m2", }, + { + fileId = "512211", + text = "crashingdebris_ring_impact.m2", + value = "crashingdebris_ring_impact.m2", + }, { fileId = "165824", text = "createsoulstone_cast.m2", @@ -52946,6 +74888,11 @@ WeakAuras.ModelPaths = { text = "creature_spellportal_blue.m2", value = "creature_spellportal_blue.m2", }, + { + fileId = "359118", + text = "creature_spellportal_blue_clickable.m2", + value = "creature_spellportal_blue_clickable.m2", + }, { fileId = "351493", text = "creature_spellportal_clickable.m2", @@ -52966,11 +74913,21 @@ WeakAuras.ModelPaths = { text = "creature_spellportal_purple.m2", value = "creature_spellportal_purple.m2", }, + { + fileId = "359119", + text = "creature_spellportal_purple_clickable.m2", + value = "creature_spellportal_purple_clickable.m2", + }, { fileId = "165830", text = "creature_spellportal_white.m2", value = "creature_spellportal_white.m2", }, + { + fileId = "359120", + text = "creature_spellportal_white_clickable.m2", + value = "creature_spellportal_white_clickable.m2", + }, { fileId = "165831", text = "creature_spellportal_yellow.m2", @@ -53086,6 +75043,11 @@ WeakAuras.ModelPaths = { text = "cyclone_caster_state_scaled.m2", value = "cyclone_caster_state_scaled.m2", }, + { + fileId = "370775", + text = "cyclone_nodebris.m2", + value = "cyclone_nodebris.m2", + }, { fileId = "165862", text = "cyclone_state.m2", @@ -53166,6 +75128,11 @@ WeakAuras.ModelPaths = { text = "darkmoonvengeance_impact_head.m2", value = "darkmoonvengeance_impact_head.m2", }, + { + fileId = "532428", + text = "darkmoonvengeance_impact_head_hold.m2", + value = "darkmoonvengeance_impact_head_hold.m2", + }, { fileId = "165879", text = "darkritual_precast_base.m2", @@ -53201,6 +75168,11 @@ WeakAuras.ModelPaths = { text = "deathanddecay_area_runes.m2", value = "deathanddecay_area_runes.m2", }, + { + fileId = "464032", + text = "deathanddecay_area_runes_state.m2", + value = "deathanddecay_area_runes_state.m2", + }, { fileId = "341896", text = "deathanddecay_area_runesgreen.m2", @@ -53236,6 +75208,11 @@ WeakAuras.ModelPaths = { text = "deathknight_antimagiczone_green.m2", value = "deathknight_antimagiczone_green.m2", }, + { + fileId = "575532", + text = "deathknight_antimagiczone_noshadow.m2", + value = "deathknight_antimagiczone_noshadow.m2", + }, { fileId = "240817", text = "deathknight_bladebarrier.m2", @@ -53246,6 +75223,16 @@ WeakAuras.ModelPaths = { text = "deathknight_bloodboil.m2", value = "deathknight_bloodboil.m2", }, + { + fileId = "512133", + text = "deathknight_bloodboil_cast.m2", + value = "deathknight_bloodboil_cast.m2", + }, + { + fileId = "467953", + text = "deathknight_bloodboil_new.m2", + value = "deathknight_bloodboil_new.m2", + }, { fileId = "165894", text = "deathknight_bloodpresence.m2", @@ -53296,6 +75283,16 @@ WeakAuras.ModelPaths = { text = "deathknight_dancingruneblade_state.m2", value = "deathknight_dancingruneblade_state.m2", }, + { + fileId = "429369", + text = "deathknight_dark_simulacrum_impact.m2", + value = "deathknight_dark_simulacrum_impact.m2", + }, + { + fileId = "429370", + text = "deathknight_dark_simulacrum_state.m2", + value = "deathknight_dark_simulacrum_state.m2", + }, { fileId = "240824", text = "deathknight_deathchill.m2", @@ -53331,6 +75328,11 @@ WeakAuras.ModelPaths = { text = "deathknight_desecration_spawn.m2", value = "deathknight_desecration_spawn.m2", }, + { + fileId = "514048", + text = "deathknight_desecrationhostile.m2", + value = "deathknight_desecrationhostile.m2", + }, { fileId = "240828", text = "deathknight_destroycorpse_02.m2", @@ -53431,6 +75433,16 @@ WeakAuras.ModelPaths = { text = "deathknight_mindfreeze.m2", value = "deathknight_mindfreeze.m2", }, + { + fileId = "429371", + text = "deathknight_necrotic_strike_impact.m2", + value = "deathknight_necrotic_strike_impact.m2", + }, + { + fileId = "429372", + text = "deathknight_necrotic_strike_state.m2", + value = "deathknight_necrotic_strike_state.m2", + }, { fileId = "240843", text = "deathknight_obliterate.m2", @@ -53441,6 +75453,11 @@ WeakAuras.ModelPaths = { text = "deathknight_obliterate_impact.m2", value = "deathknight_obliterate_impact.m2", }, + { + fileId = "408905", + text = "deathknight_outbreak.m2", + value = "deathknight_outbreak.m2", + }, { fileId = "240845", text = "deathknight_pathoffrost.m2", @@ -53511,6 +75528,56 @@ WeakAuras.ModelPaths = { text = "deathknight_wanderingplague.m2", value = "deathknight_wanderingplague.m2", }, + { + fileId = "532805", + text = "deathwing_body_fire.m2", + value = "deathwing_body_fire.m2", + }, + { + fileId = "536513", + text = "deathwing_body_fire_02.m2", + value = "deathwing_body_fire_02.m2", + }, + { + fileId = "536515", + text = "deathwing_body_fire_03.m2", + value = "deathwing_body_fire_03.m2", + }, + { + fileId = "537933", + text = "deathwing_body_fire_b.m2", + value = "deathwing_body_fire_b.m2", + }, + { + fileId = "537935", + text = "deathwing_body_fire_c.m2", + value = "deathwing_body_fire_c.m2", + }, + { + fileId = "537937", + text = "deathwing_body_fire_d.m2", + value = "deathwing_body_fire_d.m2", + }, + { + fileId = "538532", + text = "deathwing_body_fire_small.m2", + value = "deathwing_body_fire_small.m2", + }, + { + fileId = "536119", + text = "deathwing_lava_burst.m2", + value = "deathwing_lava_burst.m2", + }, + { + fileId = "536122", + text = "deathwing_lava_burst_impact.m2", + value = "deathwing_lava_burst_impact.m2", + }, + { + fileId = "576192", + text = "deathwingcorruptedclaw_fx.m2", + value = "deathwingcorruptedclaw_fx.m2", + }, { fileId = "165908", text = "deathwish_state_hand.m2", @@ -53796,6 +75863,31 @@ WeakAuras.ModelPaths = { text = "divineshield_low_chest.m2", value = "divineshield_low_chest.m2", }, + { + fileId = "463223", + text = "djinndeath_blizzard.m2", + value = "djinndeath_blizzard.m2", + }, + { + fileId = "463224", + text = "djinndeath_fire.m2", + value = "djinndeath_fire.m2", + }, + { + fileId = "521015", + text = "djinndeath_fire_02.m2", + value = "djinndeath_fire_02.m2", + }, + { + fileId = "463225", + text = "djnnhandr_sand.m2", + value = "djnnhandr_sand.m2", + }, + { + fileId = "463226", + text = "djnnhandr_water.m2", + value = "djnnhandr_water.m2", + }, { fileId = "240865", text = "dragonbreath_arcane.m2", @@ -53816,6 +75908,11 @@ WeakAuras.ModelPaths = { text = "dragonbreath_frost.m2", value = "dragonbreath_frost.m2", }, + { + fileId = "534023", + text = "dragonbreath_infinite.m2", + value = "dragonbreath_infinite.m2", + }, { fileId = "240868", text = "dragonbreath_shadow.m2", @@ -53831,6 +75928,16 @@ WeakAuras.ModelPaths = { text = "dragonflamebreath180.m2", value = "dragonflamebreath180.m2", }, + { + fileId = "537015", + text = "dragonsoul_hagaracloud_01.m2", + value = "dragonsoul_hagaracloud_01.m2", + }, + { + fileId = "537018", + text = "dragonsoul_hagarafrost_01.m2", + value = "dragonsoul_hagarafrost_01.m2", + }, { fileId = "165967", text = "dreadlord_carrion_impact.m2", @@ -53856,11 +75963,41 @@ WeakAuras.ModelPaths = { text = "druid_eclipse_orange.m2", value = "druid_eclipse_orange.m2", }, + { + fileId = "512083", + text = "druid_efflorescence_persistent.m2", + value = "druid_efflorescence_persistent.m2", + }, + { + fileId = "456016", + text = "druid_efflorescence_state.m2", + value = "druid_efflorescence_state.m2", + }, { fileId = "240872", text = "druid_flourish.m2", value = "druid_flourish.m2", }, + { + fileId = "449483", + text = "druid_fungal_growth_area_state.m2", + value = "druid_fungal_growth_area_state.m2", + }, + { + fileId = "533274", + text = "druid_fungal_growth_area_state_enemy.m2", + value = "druid_fungal_growth_area_state_enemy.m2", + }, + { + fileId = "528444", + text = "druid_hurricane_base_v2.m2", + value = "druid_hurricane_base_v2.m2", + }, + { + fileId = "528517", + text = "druid_hurricane_funnels_v2.m2", + value = "druid_hurricane_funnels_v2.m2", + }, { fileId = "240873", text = "druid_infectedwounds.m2", @@ -53881,6 +76018,26 @@ WeakAuras.ModelPaths = { text = "druid_owlkin_frenzy.m2", value = "druid_owlkin_frenzy.m2", }, + { + fileId = "451171", + text = "druid_pulverize_impact.m2", + value = "druid_pulverize_impact.m2", + }, + { + fileId = "466483", + text = "druid_skullbash_impact_01.m2", + value = "druid_skullbash_impact_01.m2", + }, + { + fileId = "521019", + text = "druid_solarbeam_impact_base.m2", + value = "druid_solarbeam_impact_base.m2", + }, + { + fileId = "407341", + text = "druid_stampeding_roar_01.m2", + value = "druid_stampeding_roar_01.m2", + }, { fileId = "240877", text = "druid_starfallmissile.m2", @@ -53891,11 +76048,81 @@ WeakAuras.ModelPaths = { text = "druid_starfallstate.m2", value = "druid_starfallstate.m2", }, + { + fileId = "464345", + text = "druid_starsurge_impact.m2", + value = "druid_starsurge_impact.m2", + }, + { + fileId = "451173", + text = "druid_starsurge_missile.m2", + value = "druid_starsurge_missile.m2", + }, + { + fileId = "451174", + text = "druid_starsurge_precast_omni.m2", + value = "druid_starsurge_precast_omni.m2", + }, { fileId = "240879", text = "druid_survival_instincts.m2", value = "druid_survival_instincts.m2", }, + { + fileId = "452622", + text = "druid_thrash_impact_01.m2", + value = "druid_thrash_impact_01.m2", + }, + { + fileId = "452623", + text = "druid_thrash_state_01.m2", + value = "druid_thrash_state_01.m2", + }, + { + fileId = "397909", + text = "druid_wild_mushroom_01.m2", + value = "druid_wild_mushroom_01.m2", + }, + { + fileId = "514160", + text = "druid_wild_mushroom_01hostile.m2", + value = "druid_wild_mushroom_01hostile.m2", + }, + { + fileId = "397897", + text = "druid_wild_mushroom_02.m2", + value = "druid_wild_mushroom_02.m2", + }, + { + fileId = "514163", + text = "druid_wild_mushroom_02hostile.m2", + value = "druid_wild_mushroom_02hostile.m2", + }, + { + fileId = "397899", + text = "druid_wild_mushroom_03.m2", + value = "druid_wild_mushroom_03.m2", + }, + { + fileId = "514165", + text = "druid_wild_mushroom_03hostile.m2", + value = "druid_wild_mushroom_03hostile.m2", + }, + { + fileId = "530798", + text = "druid_wrath_impact_v2.m2", + value = "druid_wrath_impact_v2.m2", + }, + { + fileId = "530068", + text = "druid_wrath_missile_v2.m2", + value = "druid_wrath_missile_v2.m2", + }, + { + fileId = "531694", + text = "druid_wrath_precast_v2.m2", + value = "druid_wrath_precast_v2.m2", + }, { fileId = "165969", text = "druidmorph_aqua_impact_base.m2", @@ -53951,6 +76178,16 @@ WeakAuras.ModelPaths = { text = "earthshock_impact_chest.m2", value = "earthshock_impact_chest.m2", }, + { + fileId = "382335", + text = "eastern_plaguelands_beam_effect.m2", + value = "eastern_plaguelands_beam_effect.m2", + }, + { + fileId = "371173", + text = "eden_growth.m2", + value = "eden_growth.m2", + }, { fileId = "165988", text = "enchant_cast_hand.m2", @@ -54013,11 +76250,26 @@ WeakAuras.ModelPaths = { text = "disintigrateglow_high.m2", value = "disintigrateglow_high.m2", }, + { + fileId = "463287", + text = "earthen_high.m2", + value = "earthen_high.m2", + }, { fileId = "166001", text = "executionerglow_high.m2", value = "executionerglow_high.m2", }, + { + fileId = "462737", + text = "fire_high.m2", + value = "fire_high.m2", + }, + { + fileId = "462739", + text = "frost_high.m2", + value = "frost_high.m2", + }, { fileId = "166003", text = "greenflame_low.m2", @@ -54038,6 +76290,11 @@ WeakAuras.ModelPaths = { text = "mongooseglow_high.m2", value = "mongooseglow_high.m2", }, + { + fileId = "462741", + text = "nature_high.m2", + value = "nature_high.m2", + }, { fileId = "166007", text = "poisondrip.m2", @@ -54163,6 +76420,11 @@ WeakAuras.ModelPaths = { text = "whiteglow_low.m2", value = "whiteglow_low.m2", }, + { + fileId = "463430", + text = "wind_high.m2", + value = "wind_high.m2", + }, { fileId = "166033", text = "yellowflame_low.m2", @@ -54222,6 +76484,11 @@ WeakAuras.ModelPaths = { text = "energizelost_rage.m2", value = "energizelost_rage.m2", }, + { + fileId = "397342", + text = "engineering_wormhole.m2", + value = "engineering_wormhole.m2", + }, { fileId = "166039", text = "enslavedemon_impact_base.m2", @@ -54267,6 +76534,11 @@ WeakAuras.ModelPaths = { text = "errorcube.m2", value = "errorcube.m2", }, + { + fileId = "514611", + text = "everyman_impact.m2", + value = "everyman_impact.m2", + }, { fileId = "166047", text = "eviscerate_cast_hands.m2", @@ -54312,6 +76584,16 @@ WeakAuras.ModelPaths = { text = "explosivegaseous_nova.m2", value = "explosivegaseous_nova.m2", }, + { + fileId = "512971", + text = "explosivetrap_base.m2", + value = "explosivetrap_base.m2", + }, + { + fileId = "512973", + text = "explosivetrap_impact_base.m2", + value = "explosivetrap_impact_base.m2", + }, { fileId = "166054", text = "explosivetrap_recursive.m2", @@ -54492,6 +76774,11 @@ WeakAuras.ModelPaths = { text = "fel_hellfire_area_base.m2", value = "fel_hellfire_area_base.m2", }, + { + fileId = "574552", + text = "fel_hellfire_area_base_state.m2", + value = "fel_hellfire_area_base_state.m2", + }, { fileId = "166088", text = "fel_hellfire_firepuff_caster_base.m2", @@ -54542,6 +76829,11 @@ WeakAuras.ModelPaths = { text = "felarmor_impact_head.m2", value = "felarmor_impact_head.m2", }, + { + fileId = "514319", + text = "fire_2d_effect.m2", + value = "fire_2d_effect.m2", + }, { fileId = "166106", text = "fire_blue_impactdd_high_chest.m2", @@ -54652,6 +76944,21 @@ WeakAuras.ModelPaths = { text = "fire_smoketrail.m2", value = "fire_smoketrail.m2", }, + { + fileId = "356036", + text = "fire_stylized_var_1.m2", + value = "fire_stylized_var_1.m2", + }, + { + fileId = "356041", + text = "fire_stylized_var_2.m2", + value = "fire_stylized_var_2.m2", + }, + { + fileId = "356042", + text = "fire_stylized_var_3.m2", + value = "fire_stylized_var_3.m2", + }, { fileId = "332856", text = "firearm_2h_rifle_01_spellobject.m2", @@ -54662,6 +76969,11 @@ WeakAuras.ModelPaths = { text = "firearm_2h_rifle_02_spellobject.m2", value = "firearm_2h_rifle_02_spellobject.m2", }, + { + fileId = "466013", + text = "firearm_2h_rifle_cataclysm_b_01_spell.m2", + value = "firearm_2h_rifle_cataclysm_b_01_spell.m2", + }, { fileId = "305290", text = "firearm_2h_rifle_plague_a_01_spell.m2", @@ -54682,6 +76994,11 @@ WeakAuras.ModelPaths = { text = "fireball_missile_low.m2", value = "fireball_missile_low.m2", }, + { + fileId = "382336", + text = "fireball_missile_shadow_high.m2", + value = "fireball_missile_shadow_high.m2", + }, { fileId = "303842", text = "firebeam_neutral_state_base.m2", @@ -54762,6 +77079,56 @@ WeakAuras.ModelPaths = { text = "fireforceshield_yellow.m2", value = "fireforceshield_yellow.m2", }, + { + fileId = "512330", + text = "firehawkbodysmoke.m2", + value = "firehawkbodysmoke.m2", + }, + { + fileId = "512332", + text = "firehawkwingsmoke.m2", + value = "firehawkwingsmoke.m2", + }, + { + fileId = "522157", + text = "firelands_cocoon.m2", + value = "firelands_cocoon.m2", + }, + { + fileId = "517202", + text = "firelands_fire_2d.m2", + value = "firelands_fire_2d.m2", + }, + { + fileId = "523762", + text = "firelands_fire_2d_b.m2", + value = "firelands_fire_2d_b.m2", + }, + { + fileId = "523764", + text = "firelands_fire_2d_c.m2", + value = "firelands_fire_2d_c.m2", + }, + { + fileId = "522162", + text = "firelands_web_missile.m2", + value = "firelands_web_missile.m2", + }, + { + fileId = "522164", + text = "firelands_web_state.m2", + value = "firelands_web_state.m2", + }, + { + fileId = "522160", + text = "firelands_webspin.m2", + value = "firelands_webspin.m2", + }, + { + fileId = "514528", + text = "firelandssky_fireball01_spell.m2", + value = "firelandssky_fireball01_spell.m2", + }, { fileId = "166144", text = "firenova_area.m2", @@ -54892,6 +77259,11 @@ WeakAuras.ModelPaths = { text = "fistofjustice_impact_chest.m2", value = "fistofjustice_impact_chest.m2", }, + { + fileId = "527276", + text = "fixated_state.m2", + value = "fixated_state.m2", + }, { fileId = "166176", text = "flamebreath.m2", @@ -54992,6 +77364,11 @@ WeakAuras.ModelPaths = { text = "flare_state_base.m2", value = "flare_state_base.m2", }, + { + fileId = "514830", + text = "flare_state_basehostile.m2", + value = "flare_state_basehostile.m2", + }, { fileId = "166197", text = "flashheal_base.m2", @@ -55052,6 +77429,21 @@ WeakAuras.ModelPaths = { text = "forsakencatapult_missile_blue.m2", value = "forsakencatapult_missile_blue.m2", }, + { + fileId = "536826", + text = "fotf_wings_01.m2", + value = "fotf_wings_01.m2", + }, + { + fileId = "536828", + text = "fotf_wings_slow.m2", + value = "fotf_wings_slow.m2", + }, + { + fileId = "534025", + text = "frost_blades.m2", + value = "frost_blades.m2", + }, { fileId = "166209", text = "frost_form_precast.m2", @@ -55137,6 +77529,11 @@ WeakAuras.ModelPaths = { text = "frosttrap_aura_nomist_refelctive.m2", value = "frosttrap_aura_nomist_refelctive.m2", }, + { + fileId = "514644", + text = "frosttrap_aurahostile.m2", + value = "frosttrap_aurahostile.m2", + }, { fileId = "166221", text = "frostward_impact_chest.m2", @@ -55147,6 +77544,36 @@ WeakAuras.ModelPaths = { text = "frostycircle.m2", value = "frostycircle.m2", }, + { + fileId = "382337", + text = "frostycircle_fire.m2", + value = "frostycircle_fire.m2", + }, + { + fileId = "382338", + text = "frostycircle_nature.m2", + value = "frostycircle_nature.m2", + }, + { + fileId = "382339", + text = "frostycircle_sand.m2", + value = "frostycircle_sand.m2", + }, + { + fileId = "382340", + text = "frostycircle_shadow.m2", + value = "frostycircle_shadow.m2", + }, + { + fileId = "575418", + text = "g_fireworks_alliance.m2", + value = "g_fireworks_alliance.m2", + }, + { + fileId = "523121", + text = "g_shannoxtrap.m2", + value = "g_shannoxtrap.m2", + }, { fileId = "166222", text = "gaseousform.m2", @@ -55202,6 +77629,16 @@ WeakAuras.ModelPaths = { text = "goblin_cannon_missile.m2", value = "goblin_cannon_missile.m2", }, + { + fileId = "365680", + text = "goblin_lightbulb_state.m2", + value = "goblin_lightbulb_state.m2", + }, + { + fileId = "307631", + text = "goblin_rocket_particle.m2", + value = "goblin_rocket_particle.m2", + }, { fileId = "166247", text = "goblin_weather_machine_cloudy.m2", @@ -55252,6 +77689,11 @@ WeakAuras.ModelPaths = { text = "goo_flow_stateblue.m2", value = "goo_flow_stateblue.m2", }, + { + fileId = "382343", + text = "goo_flow_statefire.m2", + value = "goo_flow_statefire.m2", + }, { fileId = "347886", text = "goo_flow_statepurple.m2", @@ -55267,6 +77709,61 @@ WeakAuras.ModelPaths = { text = "goo_flow_stateyellow.m2", value = "goo_flow_stateyellow.m2", }, + { + fileId = "526588", + text = "goo_root_stateblack.m2", + value = "goo_root_stateblack.m2", + }, + { + fileId = "382344", + text = "goo_splash_state.m2", + value = "goo_splash_state.m2", + }, + { + fileId = "382345", + text = "goo_splash_stateblack.m2", + value = "goo_splash_stateblack.m2", + }, + { + fileId = "537701", + text = "goo_splash_stateblack_light.m2", + value = "goo_splash_stateblack_light.m2", + }, + { + fileId = "382346", + text = "goo_splash_stateblue.m2", + value = "goo_splash_stateblue.m2", + }, + { + fileId = "428160", + text = "goo_splash_stateblue_90.m2", + value = "goo_splash_stateblue_90.m2", + }, + { + fileId = "526902", + text = "goo_splash_statefire_v2.m2", + value = "goo_splash_statefire_v2.m2", + }, + { + fileId = "382347", + text = "goo_splash_statepurple.m2", + value = "goo_splash_statepurple.m2", + }, + { + fileId = "428161", + text = "goo_splash_statepurple_90.m2", + value = "goo_splash_statepurple_90.m2", + }, + { + fileId = "382348", + text = "goo_splash_statered.m2", + value = "goo_splash_statered.m2", + }, + { + fileId = "382349", + text = "goo_splash_stateyellow.m2", + value = "goo_splash_stateyellow.m2", + }, { fileId = "166254", text = "goobolt_missile_low.m2", @@ -55287,6 +77784,11 @@ WeakAuras.ModelPaths = { text = "greaterheal_low_base.m2", value = "greaterheal_low_base.m2", }, + { + fileId = "512480", + text = "green_gas_plague_cloud.m2", + value = "green_gas_plague_cloud.m2", + }, { fileId = "166277", text = "greenarenaflag_spell.m2", @@ -55402,6 +77904,11 @@ WeakAuras.ModelPaths = { text = "healrag_state_chest.m2", value = "healrag_state_chest.m2", }, + { + fileId = "370074", + text = "heat_signature.m2", + value = "heat_signature.m2", + }, { fileId = "166297", text = "hellfire_area_base.m2", @@ -55432,6 +77939,16 @@ WeakAuras.ModelPaths = { text = "hellfire_firepuff_caster_base.m2", value = "hellfire_firepuff_caster_base.m2", }, + { + fileId = "511971", + text = "hellfire_firepuff_caster_base_v2.m2", + value = "hellfire_firepuff_caster_base_v2.m2", + }, + { + fileId = "512135", + text = "hellfire_firepuff_caster_base_v3.m2", + value = "hellfire_firepuff_caster_base_v3.m2", + }, { fileId = "166303", text = "hellfire_impact_base.m2", @@ -55442,16 +77959,31 @@ WeakAuras.ModelPaths = { text = "hellfire_impact_caster_base.m2", value = "hellfire_impact_caster_base.m2", }, + { + fileId = "525875", + text = "hellfire_impact_caster_state.m2", + value = "hellfire_impact_caster_state.m2", + }, { fileId = "166305", text = "hellfire_impact_head.m2", value = "hellfire_impact_head.m2", }, + { + fileId = "382351", + text = "hellfireraid_dust_brown_impact_base.m2", + value = "hellfireraid_dust_brown_impact_base.m2", + }, { fileId = "166306", text = "hellfireraid_dust_impact_base.m2", value = "hellfireraid_dust_impact_base.m2", }, + { + fileId = "322182", + text = "helm_engi_b_01_gof_spell.m2", + value = "helm_engi_b_01_gof_spell.m2", + }, { fileId = "166307", text = "heroism_cast.m2", @@ -55467,6 +77999,11 @@ WeakAuras.ModelPaths = { text = "hitsplatfire.m2", value = "hitsplatfire.m2", }, + { + fileId = "392636", + text = "hobostick.m2", + value = "hobostick.m2", + }, { children = { { @@ -55603,6 +78140,11 @@ WeakAuras.ModelPaths = { text = "holy_rune_shield_impact_base.m2", value = "holy_rune_shield_impact_base.m2", }, + { + fileId = "535231", + text = "holy_vol_fog.m2", + value = "holy_vol_fog.m2", + }, { fileId = "240924", text = "holybomb_missle.m2", @@ -55663,6 +78205,11 @@ WeakAuras.ModelPaths = { text = "holyreflect_state_chest.m2", value = "holyreflect_state_chest.m2", }, + { + fileId = "463503", + text = "holyshear.m2", + value = "holyshear.m2", + }, { fileId = "166353", text = "holyshield_state.m2", @@ -55728,6 +78275,16 @@ WeakAuras.ModelPaths = { text = "horn_01_spellobject.m2", value = "horn_01_spellobject.m2", }, + { + fileId = "534871", + text = "hour_of_twilight_area.m2", + value = "hour_of_twilight_area.m2", + }, + { + fileId = "534875", + text = "hour_of_twilight_precast.m2", + value = "hour_of_twilight_precast.m2", + }, { fileId = "240927", text = "hungerforblood_impact.m2", @@ -55738,16 +78295,71 @@ WeakAuras.ModelPaths = { text = "hungerforblood_state.m2", value = "hungerforblood_state.m2", }, + { + fileId = "460825", + text = "hunter_aspectofthefox_impact_01.m2", + value = "hunter_aspectofthefox_impact_01.m2", + }, + { + fileId = "425962", + text = "hunter_cobrashot.m2", + value = "hunter_cobrashot.m2", + }, + { + fileId = "425965", + text = "hunter_cobrashot_impact.m2", + value = "hunter_cobrashot_impact.m2", + }, + { + fileId = "460961", + text = "hunter_focusfire_impact_01.m2", + value = "hunter_focusfire_impact_01.m2", + }, + { + fileId = "466092", + text = "hunter_killcommand_impact_01.m2", + value = "hunter_killcommand_impact_01.m2", + }, { fileId = "240929", text = "hunter_lockandload.m2", value = "hunter_lockandload.m2", }, + { + fileId = "466093", + text = "hunter_mastermarksman_impact_01.m2", + value = "hunter_mastermarksman_impact_01.m2", + }, + { + fileId = "513928", + text = "hunter_masterscall_base.m2", + value = "hunter_masterscall_base.m2", + }, + { + fileId = "513930", + text = "hunter_masterscall_state.m2", + value = "hunter_masterscall_state.m2", + }, { fileId = "240930", text = "hunter_rapidfire.m2", value = "hunter_rapidfire.m2", }, + { + fileId = "425966", + text = "hunter_traplauncher_firemissile.m2", + value = "hunter_traplauncher_firemissile.m2", + }, + { + fileId = "425967", + text = "hunter_traplauncher_frostmissile.m2", + value = "hunter_traplauncher_frostmissile.m2", + }, + { + fileId = "425969", + text = "hunter_traplauncher_naturemissile.m2", + value = "hunter_traplauncher_naturemissile.m2", + }, { fileId = "166362", text = "huntersmark_impact_chest.m2", @@ -56053,6 +78665,16 @@ WeakAuras.ModelPaths = { text = "immolate_state_base.m2", value = "immolate_state_base.m2", }, + { + fileId = "511974", + text = "immolate_state_base_v2.m2", + value = "immolate_state_base_v2.m2", + }, + { + fileId = "511976", + text = "immolate_state_v2.m2", + value = "immolate_state_v2.m2", + }, { fileId = "166404", text = "immolationtrap_recursive.m2", @@ -56068,6 +78690,11 @@ WeakAuras.ModelPaths = { text = "impact_light.m2", value = "impact_light.m2", }, + { + fileId = "429373", + text = "implosivegaseous_nova.m2", + value = "implosivegaseous_nova.m2", + }, { fileId = "166405", text = "incinerate_impact_base.m2", @@ -56128,6 +78755,26 @@ WeakAuras.ModelPaths = { text = "infernal_smoke_rec.m2", value = "infernal_smoke_rec.m2", }, + { + fileId = "530070", + text = "infinite_timebomb_impact.m2", + value = "infinite_timebomb_impact.m2", + }, + { + fileId = "530072", + text = "infinite_timebomb_missile.m2", + value = "infinite_timebomb_missile.m2", + }, + { + fileId = "530075", + text = "infinite_timebomb_reticule.m2", + value = "infinite_timebomb_reticule.m2", + }, + { + fileId = "530079", + text = "infinite_timebomb_xplosion.m2", + value = "infinite_timebomb_xplosion.m2", + }, { fileId = "240932", text = "infusion_of_light_impact.m2", @@ -56343,6 +78990,11 @@ WeakAuras.ModelPaths = { text = "lavaelemental_impact_base.m2", value = "lavaelemental_impact_base.m2", }, + { + fileId = "396420", + text = "lavaworm_ashenfire_01.m2", + value = "lavaworm_ashenfire_01.m2", + }, { fileId = "166452", text = "layonhands_low_chest.m2", @@ -56374,6 +79026,11 @@ WeakAuras.ModelPaths = { text = "levelup", value = "levelup", }, + { + fileId = "340883", + text = "levelup_blue.m2", + value = "levelup_blue.m2", + }, { fileId = "240947", text = "levelup_red.m2", @@ -56455,6 +79112,16 @@ WeakAuras.ModelPaths = { text = "lightning_ring_nova.m2", value = "lightning_ring_nova.m2", }, + { + fileId = "534877", + text = "lightning_ring_nova_state.m2", + value = "lightning_ring_nova_state.m2", + }, + { + fileId = "367431", + text = "lightning_twilight_cast_hand.m2", + value = "lightning_twilight_cast_hand.m2", + }, { fileId = "166496", text = "lightningbolt_impact_chest.m2", @@ -56480,6 +79147,11 @@ WeakAuras.ModelPaths = { text = "lightningshield_state_base.m2", value = "lightningshield_state_base.m2", }, + { + fileId = "407383", + text = "lightningshield_state_base_low.m2", + value = "lightningshield_state_base_low.m2", + }, { fileId = "166501", text = "lightningshield_state_base_s.m2", @@ -56510,6 +79182,21 @@ WeakAuras.ModelPaths = { text = "lighttest.m2", value = "lighttest.m2", }, + { + fileId = "536124", + text = "liquidbreath_deepblue.m2", + value = "liquidbreath_deepblue.m2", + }, + { + fileId = "536126", + text = "liquidbreath_deepred.m2", + value = "liquidbreath_deepred.m2", + }, + { + fileId = "536128", + text = "liquidbreath_yelloworange.m2", + value = "liquidbreath_yelloworange.m2", + }, { fileId = "166506", text = "lovestruck_state_chest.m2", @@ -56565,6 +79252,26 @@ WeakAuras.ModelPaths = { text = "mage_arcanebarrage_missile.m2", value = "mage_arcanebarrage_missile.m2", }, + { + fileId = "531416", + text = "mage_arcanebarrage_missile_v2.m2", + value = "mage_arcanebarrage_missile_v2.m2", + }, + { + fileId = "429374", + text = "mage_curtainoffrost_01.m2", + value = "mage_curtainoffrost_01.m2", + }, + { + fileId = "512442", + text = "mage_curtainoffrost_01hostile.m2", + value = "mage_curtainoffrost_01hostile.m2", + }, + { + fileId = "429375", + text = "mage_curtainoffrost_impact.m2", + value = "mage_curtainoffrost_impact.m2", + }, { fileId = "166514", text = "mage_deepfreeze.m2", @@ -56635,6 +79342,21 @@ WeakAuras.ModelPaths = { text = "mage_shattershield.m2", value = "mage_shattershield.m2", }, + { + fileId = "430845", + text = "mage_timewarp_impact_01.m2", + value = "mage_timewarp_impact_01.m2", + }, + { + fileId = "463982", + text = "mage_timewarp_impact_head.m2", + value = "mage_timewarp_impact_head.m2", + }, + { + fileId = "429986", + text = "mage_timewarp_precast_01.m2", + value = "mage_timewarp_precast_01.m2", + }, { fileId = "166522", text = "magearmor_impact_head.m2", @@ -56800,6 +79522,16 @@ WeakAuras.ModelPaths = { text = "meteor_ball_missile.m2", value = "meteor_ball_missile.m2", }, + { + fileId = "382353", + text = "meteor_ball_shadow_missile.m2", + value = "meteor_ball_shadow_missile.m2", + }, + { + fileId = "464111", + text = "meteor_bones_shadow_missile.m2", + value = "meteor_bones_shadow_missile.m2", + }, { fileId = "166554", text = "meteor_impact_base.m2", @@ -56815,6 +79547,11 @@ WeakAuras.ModelPaths = { text = "mightaura_impact_base.m2", value = "mightaura_impact_base.m2", }, + { + fileId = "464033", + text = "mightaura_impact_base_nodecay.m2", + value = "mightaura_impact_base_nodecay.m2", + }, { fileId = "166558", text = "mindblast_head.m2", @@ -56940,6 +79677,16 @@ WeakAuras.ModelPaths = { text = "missile_wave_shadow.m2", value = "missile_wave_shadow.m2", }, + { + fileId = "367950", + text = "missile_wave_stone.m2", + value = "missile_wave_stone.m2", + }, + { + fileId = "367906", + text = "missile_wave_stone_geo.m2", + value = "missile_wave_stone_geo.m2", + }, { fileId = "240960", text = "missile_wave_watepurple.m2", @@ -57080,6 +79827,11 @@ WeakAuras.ModelPaths = { text = "nature_cast_hand.m2", value = "nature_cast_hand.m2", }, + { + fileId = "469746", + text = "nature_cast_hand_blue.m2", + value = "nature_cast_hand_blue.m2", + }, { fileId = "240964", text = "nature_cast_hand_purple.m2", @@ -57155,6 +79907,11 @@ WeakAuras.ModelPaths = { text = "nefarian_state_base.m2", value = "nefarian_state_base.m2", }, + { + fileId = "466057", + text = "nefarian_state_fx.m2", + value = "nefarian_state_fx.m2", + }, { fileId = "166613", text = "nefarianflamebreath.m2", @@ -57165,6 +79922,21 @@ WeakAuras.ModelPaths = { text = "nefarianflamebreath_impact.m2", value = "nefarianflamebreath_impact.m2", }, + { + fileId = "428162", + text = "nefarianflamebreath_v2.m2", + value = "nefarianflamebreath_v2.m2", + }, + { + fileId = "466009", + text = "neptulon_immerge_fx.m2", + value = "neptulon_immerge_fx.m2", + }, + { + fileId = "466010", + text = "neptulon_submerge_fx.m2", + value = "neptulon_submerge_fx.m2", + }, { fileId = "166615", text = "net_missile.m2", @@ -57230,6 +80002,11 @@ WeakAuras.ModelPaths = { text = "noname_area.m2", value = "noname_area.m2", }, + { + fileId = "382926", + text = "nuke.m2", + value = "nuke.m2", + }, { fileId = "166625", text = "nullifydisease_base.m2", @@ -57240,6 +80017,11 @@ WeakAuras.ModelPaths = { text = "nullifypoison_base.m2", value = "nullifypoison_base.m2", }, + { + fileId = "512445", + text = "oil_in_water_state.m2", + value = "oil_in_water_state.m2", + }, { fileId = "166628", text = "oilliquidbreath.m2", @@ -57250,6 +80032,16 @@ WeakAuras.ModelPaths = { text = "onyxia_impact_base.m2", value = "onyxia_impact_base.m2", }, + { + fileId = "534222", + text = "orange_blood_geyser.m2", + value = "orange_blood_geyser.m2", + }, + { + fileId = "513071", + text = "orange_explosion.m2", + value = "orange_explosion.m2", + }, { fileId = "326407", text = "orange_gas_01.m2", @@ -57285,6 +80077,16 @@ WeakAuras.ModelPaths = { text = "orange_gas_plague_cloud_l3_b.m2", value = "orange_gas_plague_cloud_l3_b.m2", }, + { + fileId = "513018", + text = "orange_slimelesser_missile.m2", + value = "orange_slimelesser_missile.m2", + }, + { + fileId = "513016", + text = "orange_slimelessernoexplode.m2", + value = "orange_slimelessernoexplode.m2", + }, { fileId = "166630", text = "orangeradiationfog.m2", @@ -57300,6 +80102,56 @@ WeakAuras.ModelPaths = { text = "painsuppression_state.m2", value = "painsuppression_state.m2", }, + { + fileId = "521754", + text = "paladin_ardentdefender_impact_base.m2", + value = "paladin_ardentdefender_impact_base.m2", + }, + { + fileId = "521720", + text = "paladin_ardentdefender_impact_head.m2", + value = "paladin_ardentdefender_impact_head.m2", + }, + { + fileId = "512191", + text = "paladin_avengershield_impact.m2", + value = "paladin_avengershield_impact.m2", + }, + { + fileId = "466134", + text = "paladin_guardianofancientkings_impact_01.m2", + value = "paladin_guardianofancientkings_impact_01.m2", + }, + { + fileId = "512138", + text = "paladin_hammeroftherighteous_cast.m2", + value = "paladin_hammeroftherighteous_cast.m2", + }, + { + fileId = "457274", + text = "paladin_headlinghands_state_01.m2", + value = "paladin_headlinghands_state_01.m2", + }, + { + fileId = "462122", + text = "paladin_inquisition_impact_01.m2", + value = "paladin_inquisition_impact_01.m2", + }, + { + fileId = "449484", + text = "paladin_lightofdawn_coneimpact_01.m2", + value = "paladin_lightofdawn_coneimpact_01.m2", + }, + { + fileId = "449485", + text = "paladin_lightofdawn_impact_01.m2", + value = "paladin_lightofdawn_impact_01.m2", + }, + { + fileId = "452114", + text = "paladin_templarsverdict_impact_01.m2", + value = "paladin_templarsverdict_impact_01.m2", + }, { fileId = "166633", text = "parachute.m2", @@ -57390,6 +80242,11 @@ WeakAuras.ModelPaths = { text = "poisonshot_missile.m2", value = "poisonshot_missile.m2", }, + { + fileId = "377246", + text = "polearm_2h_trident_naga_b_01green.m2", + value = "polearm_2h_trident_naga_b_01green.m2", + }, { fileId = "166649", text = "polymorph_impact.m2", @@ -57530,6 +80387,41 @@ WeakAuras.ModelPaths = { text = "presenceofmind_cast_base.m2", value = "presenceofmind_cast_base.m2", }, + { + fileId = "457638", + text = "priest_archangel_impact_01.m2", + value = "priest_archangel_impact_01.m2", + }, + { + fileId = "457639", + text = "priest_archangel_impact_02.m2", + value = "priest_archangel_impact_02.m2", + }, + { + fileId = "467790", + text = "priest_bodyandsoul_01.m2", + value = "priest_bodyandsoul_01.m2", + }, + { + fileId = "433806", + text = "priest_chakra_blue.m2", + value = "priest_chakra_blue.m2", + }, + { + fileId = "433807", + text = "priest_chakra_green.m2", + value = "priest_chakra_green.m2", + }, + { + fileId = "433808", + text = "priest_chakra_red.m2", + value = "priest_chakra_red.m2", + }, + { + fileId = "433809", + text = "priest_chakra_yellow.m2", + value = "priest_chakra_yellow.m2", + }, { fileId = "166659", text = "priest_dispersion.m2", @@ -57550,6 +80442,41 @@ WeakAuras.ModelPaths = { text = "priest_guardianspirit.m2", value = "priest_guardianspirit.m2", }, + { + fileId = "405925", + text = "priest_inner_will_01.m2", + value = "priest_inner_will_01.m2", + }, + { + fileId = "461875", + text = "priest_leapoffaith_target_purple.m2", + value = "priest_leapoffaith_target_purple.m2", + }, + { + fileId = "461876", + text = "priest_leapoffaith_target_red.m2", + value = "priest_leapoffaith_target_red.m2", + }, + { + fileId = "461877", + text = "priest_leapoffaith_target_yellow.m2", + value = "priest_leapoffaith_target_yellow.m2", + }, + { + fileId = "418846", + text = "priest_leapoffate_impact_01.m2", + value = "priest_leapoffate_impact_01.m2", + }, + { + fileId = "418848", + text = "priest_leapoffate_impact_02.m2", + value = "priest_leapoffate_impact_02.m2", + }, + { + fileId = "406338", + text = "priest_mind_spike_01.m2", + value = "priest_mind_spike_01.m2", + }, { fileId = "240995", text = "priest_mindshear.m2", @@ -57570,6 +80497,26 @@ WeakAuras.ModelPaths = { text = "priest_powerwardbarrier.m2", value = "priest_powerwardbarrier.m2", }, + { + fileId = "513966", + text = "priest_powerwardbarrierhostile.m2", + value = "priest_powerwardbarrierhostile.m2", + }, + { + fileId = "513074", + text = "priest_sanctuary_persistent.m2", + value = "priest_sanctuary_persistent.m2", + }, + { + fileId = "433810", + text = "priest_shadoworbs_01.m2", + value = "priest_shadoworbs_01.m2", + }, + { + fileId = "433811", + text = "priest_shadowyapparition_01.m2", + value = "priest_shadowyapparition_01.m2", + }, { fileId = "166663", text = "protectionfromfire_chest.m2", @@ -57610,6 +80557,16 @@ WeakAuras.ModelPaths = { text = "purplehordeflag_spell.m2", value = "purplehordeflag_spell.m2", }, + { + fileId = "512421", + text = "pvp_trinket_alliance_impact.m2", + value = "pvp_trinket_alliance_impact.m2", + }, + { + fileId = "512408", + text = "pvp_trinket_hord_impact.m2", + value = "pvp_trinket_hord_impact.m2", + }, { fileId = "166673", text = "pyroblast_blue_missile.m2", @@ -57620,11 +80577,41 @@ WeakAuras.ModelPaths = { text = "pyroblast_missile.m2", value = "pyroblast_missile.m2", }, + { + fileId = "395844", + text = "quiver_horde_a_01_spell.m2", + value = "quiver_horde_a_01_spell.m2", + }, { fileId = "166675", text = "rag_firenova_area.m2", value = "rag_firenova_area.m2", }, + { + fileId = "456035", + text = "raid_ui_fx_cyan.m2", + value = "raid_ui_fx_cyan.m2", + }, + { + fileId = "456037", + text = "raid_ui_fx_green.m2", + value = "raid_ui_fx_green.m2", + }, + { + fileId = "456039", + text = "raid_ui_fx_purple.m2", + value = "raid_ui_fx_purple.m2", + }, + { + fileId = "456041", + text = "raid_ui_fx_red.m2", + value = "raid_ui_fx_red.m2", + }, + { + fileId = "456043", + text = "raid_ui_fx_yellow.m2", + value = "raid_ui_fx_yellow.m2", + }, { fileId = "166676", text = "rainofcandys_impact_base.m2", @@ -57740,6 +80727,11 @@ WeakAuras.ModelPaths = { text = "restoration_impact_base.m2", value = "restoration_impact_base.m2", }, + { + fileId = "521162", + text = "restoration_impact_base_blue.m2", + value = "restoration_impact_base_blue.m2", + }, { fileId = "166704", text = "resurrection_low_base.m2", @@ -57765,6 +80757,16 @@ WeakAuras.ModelPaths = { text = "revivepet_impact_base.m2", value = "revivepet_impact_base.m2", }, + { + fileId = "531357", + text = "rewind_time_impact.m2", + value = "rewind_time_impact.m2", + }, + { + fileId = "531374", + text = "rewind_time_impact_xplosion.m2", + value = "rewind_time_impact_xplosion.m2", + }, { fileId = "166731", text = "ribbontrail.m2", @@ -57835,6 +80837,31 @@ WeakAuras.ModelPaths = { text = "rockyfrost_nova_state.m2", value = "rockyfrost_nova_state.m2", }, + { + fileId = "424566", + text = "rogue_combatreadiness_01.m2", + value = "rogue_combatreadiness_01.m2", + }, + { + fileId = "418849", + text = "rogue_recuperate_01.m2", + value = "rogue_recuperate_01.m2", + }, + { + fileId = "424569", + text = "rogue_redirect_01.m2", + value = "rogue_redirect_01.m2", + }, + { + fileId = "418850", + text = "rogue_smokebomb_01.m2", + value = "rogue_smokebomb_01.m2", + }, + { + fileId = "512459", + text = "rogue_smokebomb_01hostile.m2", + value = "rogue_smokebomb_01hostile.m2", + }, { fileId = "241001", text = "rogue_trick_of_the_trade_impact.m2", @@ -57845,6 +80872,11 @@ WeakAuras.ModelPaths = { text = "rogue_trick_of_the_trade_state.m2", value = "rogue_trick_of_the_trade_state.m2", }, + { + fileId = "426732", + text = "rogue_vendetta_01.m2", + value = "rogue_vendetta_01.m2", + }, { fileId = "166744", text = "romancandle_a_01.m2", @@ -57940,6 +80972,21 @@ WeakAuras.ModelPaths = { text = "scorpidsting_impact_base.m2", value = "scorpidsting_impact_base.m2", }, + { + fileId = "455581", + text = "seafloor_footsteps_run_fx.m2", + value = "seafloor_footsteps_run_fx.m2", + }, + { + fileId = "455582", + text = "seafloor_footsteps_walk_fx.m2", + value = "seafloor_footsteps_walk_fx.m2", + }, + { + fileId = "455583", + text = "seafloor_trails_fx.m2", + value = "seafloor_trails_fx.m2", + }, { fileId = "166769", text = "sealofblood_impact_base.m2", @@ -58030,6 +81077,11 @@ WeakAuras.ModelPaths = { text = "seepinggaseous_nova.m2", value = "seepinggaseous_nova.m2", }, + { + fileId = "367432", + text = "seepinggaseous_twilight_nova.m2", + value = "seepinggaseous_twilight_nova.m2", + }, { fileId = "166788", text = "sensedemons_impact_head.m2", @@ -58180,6 +81232,31 @@ WeakAuras.ModelPaths = { text = "shadow_strikes_state_hand.m2", value = "shadow_strikes_state_hand.m2", }, + { + fileId = "431769", + text = "shadow_vol_fog.m2", + value = "shadow_vol_fog.m2", + }, + { + fileId = "392378", + text = "shadow_vortex.m2", + value = "shadow_vortex.m2", + }, + { + fileId = "395061", + text = "shadow_vortex_2.m2", + value = "shadow_vortex_2.m2", + }, + { + fileId = "392515", + text = "shadow_vortex_hole.m2", + value = "shadow_vortex_hole.m2", + }, + { + fileId = "392379", + text = "shadow_vortex_precast.m2", + value = "shadow_vortex_precast.m2", + }, { fileId = "166814", text = "shadowbolt_chest_impact.m2", @@ -58330,6 +81407,11 @@ WeakAuras.ModelPaths = { text = "shaman_astralshift.m2", value = "shaman_astralshift.m2", }, + { + fileId = "410690", + text = "shaman_bind_elemental.m2", + value = "shaman_bind_elemental.m2", + }, { fileId = "241014", text = "shaman_earthliving_ground.m2", @@ -58340,6 +81422,31 @@ WeakAuras.ModelPaths = { text = "shaman_earthliving_target.m2", value = "shaman_earthliving_target.m2", }, + { + fileId = "410252", + text = "shaman_earthquake.m2", + value = "shaman_earthquake.m2", + }, + { + fileId = "467855", + text = "shaman_earthquake_new.m2", + value = "shaman_earthquake_new.m2", + }, + { + fileId = "405297", + text = "shaman_greater_healing_wave.m2", + value = "shaman_greater_healing_wave.m2", + }, + { + fileId = "405429", + text = "shaman_healing_rain.m2", + value = "shaman_healing_rain.m2", + }, + { + fileId = "405431", + text = "shaman_healing_rain_proj.m2", + value = "shaman_healing_rain_proj.m2", + }, { fileId = "241016", text = "shaman_healing_wave.m2", @@ -58360,16 +81467,66 @@ WeakAuras.ModelPaths = { text = "shaman_lavaburst_green_missile.m2", value = "shaman_lavaburst_green_missile.m2", }, + { + fileId = "535042", + text = "shaman_lavaburst_green_nostrobe.m2", + value = "shaman_lavaburst_green_nostrobe.m2", + }, { fileId = "241018", text = "shaman_lavaburst_missile.m2", value = "shaman_lavaburst_missile.m2", }, + { + fileId = "524053", + text = "shaman_lavaburst_missile_noflash.m2", + value = "shaman_lavaburst_missile_noflash.m2", + }, + { + fileId = "527951", + text = "shaman_lavaburst_missile_noflash_xs.m2", + value = "shaman_lavaburst_missile_noflash_xs.m2", + }, + { + fileId = "469597", + text = "shaman_lavalash.m2", + value = "shaman_lavalash.m2", + }, + { + fileId = "531943", + text = "shaman_lightning_precast_v2.m2", + value = "shaman_lightning_precast_v2.m2", + }, + { + fileId = "530800", + text = "shaman_lightningbolt_impact_v2.m2", + value = "shaman_lightningbolt_impact_v2.m2", + }, + { + fileId = "529304", + text = "shaman_lightningbolt_missile_v2.m2", + value = "shaman_lightningbolt_missile_v2.m2", + }, + { + fileId = "405299", + text = "shaman_measured_insight.m2", + value = "shaman_measured_insight.m2", + }, { fileId = "241019", text = "shaman_spiritlink.m2", value = "shaman_spiritlink.m2", }, + { + fileId = "408908", + text = "shaman_spiritwalkersgrace.m2", + value = "shaman_spiritwalkersgrace.m2", + }, + { + fileId = "469600", + text = "shaman_stormstrike.m2", + value = "shaman_stormstrike.m2", + }, { fileId = "241020", text = "shaman_thunder.m2", @@ -58385,6 +81542,51 @@ WeakAuras.ModelPaths = { text = "shaman_tidal_force.m2", value = "shaman_tidal_force.m2", }, + { + fileId = "410691", + text = "shaman_unleash_flame.m2", + value = "shaman_unleash_flame.m2", + }, + { + fileId = "410692", + text = "shaman_unleash_flame_impact.m2", + value = "shaman_unleash_flame_impact.m2", + }, + { + fileId = "410693", + text = "shaman_unleash_frost.m2", + value = "shaman_unleash_frost.m2", + }, + { + fileId = "410694", + text = "shaman_unleash_frost_impact.m2", + value = "shaman_unleash_frost_impact.m2", + }, + { + fileId = "419340", + text = "shaman_unleashedearth_01.m2", + value = "shaman_unleashedearth_01.m2", + }, + { + fileId = "418852", + text = "shaman_unleashedwind_01.m2", + value = "shaman_unleashedwind_01.m2", + }, + { + fileId = "464034", + text = "shaman_unleashedwind_missile.m2", + value = "shaman_unleashedwind_missile.m2", + }, + { + fileId = "408909", + text = "shaman_unleashlife.m2", + value = "shaman_unleashlife.m2", + }, + { + fileId = "469750", + text = "shaman_water_precast.m2", + value = "shaman_water_precast.m2", + }, { fileId = "333782", text = "shaman_windshear.m2", @@ -58400,11 +81602,21 @@ WeakAuras.ModelPaths = { text = "shamanisticrage_state_hand.m2", value = "shamanisticrage_state_hand.m2", }, + { + fileId = "517173", + text = "shattering_glass_explosion.m2", + value = "shattering_glass_explosion.m2", + }, { fileId = "166840", text = "shellshield_state_base.m2", value = "shellshield_state_base.m2", }, + { + fileId = "463843", + text = "shield_2h_outlandraid_d_07_spell.m2", + value = "shield_2h_outlandraid_d_07_spell.m2", + }, { fileId = "241024", text = "shield_of_vengeance_cast.m2", @@ -58460,6 +81672,11 @@ WeakAuras.ModelPaths = { text = "siegetank_missile.m2", value = "siegetank_missile.m2", }, + { + fileId = "512411", + text = "silence_state.m2", + value = "silence_state.m2", + }, { fileId = "166877", text = "sinisterstrike_base_cast.m2", @@ -58480,6 +81697,11 @@ WeakAuras.ModelPaths = { text = "skull180.m2", value = "skull180.m2", }, + { + fileId = "464344", + text = "skywall_wind_drafteffect_center.m2", + value = "skywall_wind_drafteffect_center.m2", + }, { fileId = "166890", text = "slam_impact_chest.m2", @@ -58540,6 +81762,51 @@ WeakAuras.ModelPaths = { text = "smash_impact_chest.m2", value = "smash_impact_chest.m2", }, + { + fileId = "362201", + text = "smoke_dark_fast.m2", + value = "smoke_dark_fast.m2", + }, + { + fileId = "362133", + text = "smoke_dark_slow.m2", + value = "smoke_dark_slow.m2", + }, + { + fileId = "362202", + text = "smoke_dark_wide.m2", + value = "smoke_dark_wide.m2", + }, + { + fileId = "362348", + text = "smoke_from_fire_fast.m2", + value = "smoke_from_fire_fast.m2", + }, + { + fileId = "362349", + text = "smoke_from_fire_slow.m2", + value = "smoke_from_fire_slow.m2", + }, + { + fileId = "362340", + text = "smoke_from_fire_wide.m2", + value = "smoke_from_fire_wide.m2", + }, + { + fileId = "362204", + text = "smoke_grey_fast.m2", + value = "smoke_grey_fast.m2", + }, + { + fileId = "362205", + text = "smoke_grey_slow.m2", + value = "smoke_grey_slow.m2", + }, + { + fileId = "362341", + text = "smoke_grey_wide.m2", + value = "smoke_grey_wide.m2", + }, { fileId = "166905", text = "smokeflare_blue.m2", @@ -58620,11 +81887,31 @@ WeakAuras.ModelPaths = { text = "sonicwave_cast_down.m2", value = "sonicwave_cast_down.m2", }, + { + fileId = "464035", + text = "sonicwave_impact.m2", + value = "sonicwave_impact.m2", + }, { fileId = "166921", text = "sonicwave_missile.m2", value = "sonicwave_missile.m2", }, + { + fileId = "464036", + text = "sonicwave_missile_h.m2", + value = "sonicwave_missile_h.m2", + }, + { + fileId = "428163", + text = "sonicwave_missile_v2.m2", + value = "sonicwave_missile_v2.m2", + }, + { + fileId = "464037", + text = "sonicwave_missile_v3.m2", + value = "sonicwave_missile_v3.m2", + }, { fileId = "166922", text = "soothingkiss_impact_head.m2", @@ -58665,6 +81952,11 @@ WeakAuras.ModelPaths = { text = "soulstoneresurrection_base_02.m2", value = "soulstoneresurrection_base_02.m2", }, + { + fileId = "426041", + text = "sparkler_white.m2", + value = "sparkler_white.m2", + }, { fileId = "166930", text = "sparktrail.m2", @@ -58675,6 +81967,16 @@ WeakAuras.ModelPaths = { text = "spawn_impact_base.m2", value = "spawn_impact_base.m2", }, + { + fileId = "391664", + text = "spell_2h_pitchfork_a_01.m2", + value = "spell_2h_pitchfork_a_01.m2", + }, + { + fileId = "426042", + text = "spell_pirate_tam.m2", + value = "spell_pirate_tam.m2", + }, { fileId = "166932", text = "spellbreak_cast_base.m2", @@ -58750,6 +82052,11 @@ WeakAuras.ModelPaths = { text = "spiritarmor_impact_head.m2", value = "spiritarmor_impact_head.m2", }, + { + fileId = "517176", + text = "splintering_wood.m2", + value = "splintering_wood.m2", + }, { fileId = "341983", text = "sporeling_01.m2", @@ -58780,6 +82087,16 @@ WeakAuras.ModelPaths = { text = "starshards_impact_base.m2", value = "starshards_impact_base.m2", }, + { + fileId = "530877", + text = "starsurge_noprojection_missile.m2", + value = "starsurge_noprojection_missile.m2", + }, + { + fileId = "458272", + text = "stave_2h_cataclysm_c_01_spell.m2", + value = "stave_2h_cataclysm_c_01_spell.m2", + }, { fileId = "241045", text = "stayofexecution_impact.m2", @@ -58795,6 +82112,11 @@ WeakAuras.ModelPaths = { text = "stoneform_state_base.m2", value = "stoneform_state_base.m2", }, + { + fileId = "464064", + text = "stonespike_impact_base.m2", + value = "stonespike_impact_base.m2", + }, { fileId = "166985", text = "strike_cast_chest.m2", @@ -58890,6 +82212,11 @@ WeakAuras.ModelPaths = { text = "sunwell_fire_barrier_ext.m2", value = "sunwell_fire_barrier_ext.m2", }, + { + fileId = "307768", + text = "sunwell_fire_barrier_ext_center.m2", + value = "sunwell_fire_barrier_ext_center.m2", + }, { fileId = "167001", text = "sunwell_groundfx.m2", @@ -58920,6 +82247,11 @@ WeakAuras.ModelPaths = { text = "sword_1h_queldelar_d_01_spell.m2", value = "sword_1h_queldelar_d_01_spell.m2", }, + { + fileId = "450911", + text = "sword_cyclone_state.m2", + value = "sword_cyclone_state.m2", + }, { fileId = "167006", text = "symbolofhope_impact_base.m2", @@ -59020,6 +82352,11 @@ WeakAuras.ModelPaths = { text = "the_art_of_war_impact.m2", value = "the_art_of_war_impact.m2", }, + { + fileId = "466098", + text = "therazane_base_01.m2", + value = "therazane_base_01.m2", + }, { fileId = "167112", text = "thorns_base.m2", @@ -59060,6 +82397,26 @@ WeakAuras.ModelPaths = { text = "thunderclap_cast_base.m2", value = "thunderclap_cast_base.m2", }, + { + fileId = "531418", + text = "thunderclap_cast_base_state.m2", + value = "thunderclap_cast_base_state.m2", + }, + { + fileId = "531420", + text = "time_snapshot.m2", + value = "time_snapshot.m2", + }, + { + fileId = "538764", + text = "time_twisted_state.m2", + value = "time_twisted_state.m2", + }, + { + fileId = "573957", + text = "time_vortex_state.m2", + value = "time_vortex_state.m2", + }, { fileId = "241104", text = "titanium_weaponchain_01.m2", @@ -59105,6 +82462,11 @@ WeakAuras.ModelPaths = { text = "tournament_shield_yellow.m2", value = "tournament_shield_yellow.m2", }, + { + fileId = "577603", + text = "tradeskilllevelup.m2", + value = "tradeskilllevelup.m2", + }, { fileId = "167134", text = "tranquility_area.m2", @@ -59115,6 +82477,16 @@ WeakAuras.ModelPaths = { text = "tranquility_impact_base.m2", value = "tranquility_impact_base.m2", }, + { + fileId = "464339", + text = "transform_to_dragon.m2", + value = "transform_to_dragon.m2", + }, + { + fileId = "464340", + text = "transform_to_human.m2", + value = "transform_to_human.m2", + }, { fileId = "167136", text = "transport_ship_ud_fx.m2", @@ -59145,6 +82517,106 @@ WeakAuras.ModelPaths = { text = "turnundead_impact.m2", value = "turnundead_impact.m2", }, + { + fileId = "516270", + text = "turtle_punt_01.m2", + value = "turtle_punt_01.m2", + }, + { + fileId = "367433", + text = "twilight_archimonde_fire.m2", + value = "twilight_archimonde_fire.m2", + }, + { + fileId = "367438", + text = "twilight_fire_impactdd_high_chest.m2", + value = "twilight_fire_impactdd_high_chest.m2", + }, + { + fileId = "367439", + text = "twilight_fire_precast_hand.m2", + value = "twilight_fire_precast_hand.m2", + }, + { + fileId = "367440", + text = "twilight_fire_precast_high_hand.m2", + value = "twilight_fire_precast_high_hand.m2", + }, + { + fileId = "367441", + text = "twilight_fire_precast_uber_hand.m2", + value = "twilight_fire_precast_uber_hand.m2", + }, + { + fileId = "367434", + text = "twilight_fireball_missile_high.m2", + value = "twilight_fireball_missile_high.m2", + }, + { + fileId = "367435", + text = "twilight_firebeam_state_base.m2", + value = "twilight_firebeam_state_base.m2", + }, + { + fileId = "367436", + text = "twilight_fireblast_impact_chest.m2", + value = "twilight_fireblast_impact_chest.m2", + }, + { + fileId = "367437", + text = "twilight_firebolt_missile_low.m2", + value = "twilight_firebolt_missile_low.m2", + }, + { + fileId = "367442", + text = "twilight_flamecircleeffect.m2", + value = "twilight_flamecircleeffect.m2", + }, + { + fileId = "367443", + text = "twilight_hellfire_firepuff_caster_base.m2", + value = "twilight_hellfire_firepuff_caster_base.m2", + }, + { + fileId = "367444", + text = "twilight_immolate_state_base.m2", + value = "twilight_immolate_state_base.m2", + }, + { + fileId = "394808", + text = "twilightshammer_portal.m2", + value = "twilightshammer_portal.m2", + }, + { + fileId = "394809", + text = "twilightshammer_portal_horizontal.m2", + value = "twilightshammer_portal_horizontal.m2", + }, + { + fileId = "457332", + text = "twilightslash_ground.m2", + value = "twilightslash_ground.m2", + }, + { + fileId = "457336", + text = "twilightslash_rip.m2", + value = "twilightslash_rip.m2", + }, + { + fileId = "533202", + text = "twistingnether_portal_state.m2", + value = "twistingnether_portal_state.m2", + }, + { + fileId = "533876", + text = "twistingnether_vortex_state.m2", + value = "twistingnether_vortex_state.m2", + }, + { + fileId = "534027", + text = "ud_bubblegum_02.m2", + value = "ud_bubblegum_02.m2", + }, { fileId = "249516", text = "ulduar_blackhole.m2", @@ -59170,6 +82642,11 @@ WeakAuras.ModelPaths = { text = "ulduar_starmissile.m2", value = "ulduar_starmissile.m2", }, + { + fileId = "368767", + text = "underwater_xplosion_1.m2", + value = "underwater_xplosion_1.m2", + }, { fileId = "167143", text = "undying_strength_impact_chest.m2", @@ -59230,11 +82707,21 @@ WeakAuras.ModelPaths = { text = "vengeance_state_hand.m2", value = "vengeance_state_hand.m2", }, + { + fileId = "463431", + text = "vertical_plume_explosion.m2", + value = "vertical_plume_explosion.m2", + }, { fileId = "167153", text = "victory_rush_impact.m2", value = "victory_rush_impact.m2", }, + { + fileId = "378581", + text = "vj_giantpearl_cage_spell.m2", + value = "vj_giantpearl_cage_spell.m2", + }, { fileId = "167155", text = "vrykulharpoon.m2", @@ -59250,6 +82737,11 @@ WeakAuras.ModelPaths = { text = "warlock_backdraft.m2", value = "warlock_backdraft.m2", }, + { + fileId = "460962", + text = "warlock_baneofhavoc_impact_01.m2", + value = "warlock_baneofhavoc_impact_01.m2", + }, { fileId = "167157", text = "warlock_decimate_impact.m2", @@ -59265,6 +82757,66 @@ WeakAuras.ModelPaths = { text = "warlock_decimate_state.m2", value = "warlock_decimate_state.m2", }, + { + fileId = "391442", + text = "warlock_demon_soul_impact.m2", + value = "warlock_demon_soul_impact.m2", + }, + { + fileId = "391445", + text = "warlock_demon_soul_impact_base.m2", + value = "warlock_demon_soul_impact_base.m2", + }, + { + fileId = "464346", + text = "warlock_demon_soul_impact_base_felguard.m2", + value = "warlock_demon_soul_impact_base_felguard.m2", + }, + { + fileId = "464309", + text = "warlock_demon_soul_impact_base_felhunter.m2", + value = "warlock_demon_soul_impact_base_felhunter.m2", + }, + { + fileId = "464347", + text = "warlock_demon_soul_impact_base_imp.m2", + value = "warlock_demon_soul_impact_base_imp.m2", + }, + { + fileId = "464310", + text = "warlock_demon_soul_impact_base_succubus.m2", + value = "warlock_demon_soul_impact_base_succubus.m2", + }, + { + fileId = "464311", + text = "warlock_demon_soul_impact_base_voidwalker.m2", + value = "warlock_demon_soul_impact_base_voidwalker.m2", + }, + { + fileId = "464312", + text = "warlock_demon_soul_impact_felguard.m2", + value = "warlock_demon_soul_impact_felguard.m2", + }, + { + fileId = "464313", + text = "warlock_demon_soul_impact_felhunter.m2", + value = "warlock_demon_soul_impact_felhunter.m2", + }, + { + fileId = "464314", + text = "warlock_demon_soul_impact_imp.m2", + value = "warlock_demon_soul_impact_imp.m2", + }, + { + fileId = "464315", + text = "warlock_demon_soul_impact_succubus.m2", + value = "warlock_demon_soul_impact_succubus.m2", + }, + { + fileId = "464316", + text = "warlock_demon_soul_impact_voidwalker.m2", + value = "warlock_demon_soul_impact_voidwalker.m2", + }, { fileId = "241111", text = "warlock_demonic_empathy.m2", @@ -59285,6 +82837,56 @@ WeakAuras.ModelPaths = { text = "warlock_demoniccircle_teleport.m2", value = "warlock_demoniccircle_teleport.m2", }, + { + fileId = "466781", + text = "warlock_empoweredimp_impact_01.m2", + value = "warlock_empoweredimp_impact_01.m2", + }, + { + fileId = "467589", + text = "warlock_felflame_impact.m2", + value = "warlock_felflame_impact.m2", + }, + { + fileId = "467590", + text = "warlock_felflame_missile.m2", + value = "warlock_felflame_missile.m2", + }, + { + fileId = "391446", + text = "warlock_focus_shadow_impact.m2", + value = "warlock_focus_shadow_impact.m2", + }, + { + fileId = "440560", + text = "warlock_handofguildan_01.m2", + value = "warlock_handofguildan_01.m2", + }, + { + fileId = "464038", + text = "warlock_handofguldan_bolt.m2", + value = "warlock_handofguldan_bolt.m2", + }, + { + fileId = "464039", + text = "warlock_handofguldan_bolt_impact.m2", + value = "warlock_handofguldan_bolt_impact.m2", + }, + { + fileId = "437292", + text = "warlock_handofguldan_missile_01.m2", + value = "warlock_handofguldan_missile_01.m2", + }, + { + fileId = "443041", + text = "warlock_handofguldan_state_01.m2", + value = "warlock_handofguldan_state_01.m2", + }, + { + fileId = "514646", + text = "warlock_handofguldan_state_01hostile.m2", + value = "warlock_handofguldan_state_01hostile.m2", + }, { fileId = "167162", text = "warlock_haunt_impact.m2", @@ -59300,11 +82902,41 @@ WeakAuras.ModelPaths = { text = "warlock_haunt_state.m2", value = "warlock_haunt_state.m2", }, + { + fileId = "528446", + text = "warlock_shadowbolt_missile_v2.m2", + value = "warlock_shadowbolt_missile_v2.m2", + }, { fileId = "167165", text = "warlock_shadowflame.m2", value = "warlock_shadowflame.m2", }, + { + fileId = "386005", + text = "warlock_soul_burn_impact.m2", + value = "warlock_soul_burn_impact.m2", + }, + { + fileId = "522690", + text = "warlock_soulharvest_channel.m2", + value = "warlock_soulharvest_channel.m2", + }, + { + fileId = "457275", + text = "warlock_soulswap_impact_01.m2", + value = "warlock_soulswap_impact_01.m2", + }, + { + fileId = "457276", + text = "warlock_soulswap_missile_01.m2", + value = "warlock_soulswap_missile_01.m2", + }, + { + fileId = "460829", + text = "warlock_whiplash_01.m2", + value = "warlock_whiplash_01.m2", + }, { fileId = "167166", text = "warrior_bladestorm.m2", @@ -59320,6 +82952,11 @@ WeakAuras.ModelPaths = { text = "warrior_bloodsurge.m2", value = "warrior_bloodsurge.m2", }, + { + fileId = "464860", + text = "warrior_colossusmash_impact_01.m2", + value = "warrior_colossusmash_impact_01.m2", + }, { fileId = "241113", text = "warrior_devastate.m2", @@ -59330,6 +82967,16 @@ WeakAuras.ModelPaths = { text = "warrior_devastate_axe.m2", value = "warrior_devastate_axe.m2", }, + { + fileId = "410697", + text = "warrior_gushing_wound.m2", + value = "warrior_gushing_wound.m2", + }, + { + fileId = "418853", + text = "warrior_heroic_leap.m2", + value = "warrior_heroic_leap.m2", + }, { fileId = "241114", text = "warrior_heroicthrow_impact.m2", @@ -59340,6 +82987,11 @@ WeakAuras.ModelPaths = { text = "warrior_heroicthrow_missile.m2", value = "warrior_heroicthrow_missile.m2", }, + { + fileId = "425970", + text = "warrior_inner_rage.m2", + value = "warrior_inner_rage.m2", + }, { fileId = "167169", text = "warrior_safeguard.m2", @@ -59375,11 +83027,36 @@ WeakAuras.ModelPaths = { text = "water_explosion.m2", value = "water_explosion.m2", }, + { + fileId = "469401", + text = "water_explosion_nofish.m2", + value = "water_explosion_nofish.m2", + }, + { + fileId = "469402", + text = "water_impact.m2", + value = "water_impact.m2", + }, { fileId = "167172", text = "water_nova.m2", value = "water_nova.m2", }, + { + fileId = "469403", + text = "water_nova_2.m2", + value = "water_nova_2.m2", + }, + { + fileId = "469404", + text = "water_precast.m2", + value = "water_precast.m2", + }, + { + fileId = "469405", + text = "water_state.m2", + value = "water_state.m2", + }, { fileId = "167174", text = "waterbolt_missile_low.m2", @@ -59430,6 +83107,11 @@ WeakAuras.ModelPaths = { text = "watersteam_impact.m2", value = "watersteam_impact.m2", }, + { + fileId = "531004", + text = "watersteam_impact_02.m2", + value = "watersteam_impact_02.m2", + }, { fileId = "167189", text = "waterwalking_impact_head.m2", @@ -59470,6 +83152,11 @@ WeakAuras.ModelPaths = { text = "wellofsouls_base.m2", value = "wellofsouls_base.m2", }, + { + fileId = "534031", + text = "whack_a_gnoll_burst.m2", + value = "whack_a_gnoll_burst.m2", + }, { fileId = "167199", text = "whirlwind_state_base.m2", @@ -59515,6 +83202,16 @@ WeakAuras.ModelPaths = { text = "wisdomaura_impact_base.m2", value = "wisdomaura_impact_base.m2", }, + { + fileId = "319975", + text = "worgen_combat_transform_fx.m2", + value = "worgen_combat_transform_fx.m2", + }, + { + fileId = "320921", + text = "worgen_transform_fx.m2", + value = "worgen_transform_fx.m2", + }, { fileId = "167212", text = "wrath_impact_chest.m2", @@ -59540,11 +83237,21 @@ WeakAuras.ModelPaths = { text = "xplosion_dust_impact.m2", value = "xplosion_dust_impact.m2", }, + { + fileId = "522081", + text = "xplosion_dust_impact_noflash.m2", + value = "xplosion_dust_impact_noflash.m2", + }, { fileId = "241126", text = "xplosion_fel_impact.m2", value = "xplosion_fel_impact.m2", }, + { + fileId = "522083", + text = "xplosion_fel_impact_noflash.m2", + value = "xplosion_fel_impact_noflash.m2", + }, { fileId = "241127", text = "xplosion_fire_impact.m2", @@ -59555,11 +83262,26 @@ WeakAuras.ModelPaths = { text = "xplosion_fire_impact_02.m2", value = "xplosion_fire_impact_02.m2", }, + { + fileId = "522085", + text = "xplosion_fire_impact_02_noflash.m2", + value = "xplosion_fire_impact_02_noflash.m2", + }, { fileId = "254262", text = "xplosion_fire_impact_blue.m2", value = "xplosion_fire_impact_blue.m2", }, + { + fileId = "522087", + text = "xplosion_fire_impact_blue_noflash.m2", + value = "xplosion_fire_impact_blue_noflash.m2", + }, + { + fileId = "522089", + text = "xplosion_fire_impact_noflash.m2", + value = "xplosion_fire_impact_noflash.m2", + }, { fileId = "253571", text = "xplosion_frost_impact.m2", @@ -59570,91 +83292,9112 @@ WeakAuras.ModelPaths = { text = "xplosion_frost_impact_b.m2", value = "xplosion_frost_impact_b.m2", }, + { + fileId = "522091", + text = "xplosion_frost_impact_b_noflash.m2", + value = "xplosion_frost_impact_b_noflash.m2", + }, + { + fileId = "522093", + text = "xplosion_frost_impact_noflash.m2", + value = "xplosion_frost_impact_noflash.m2", + }, { fileId = "253572", text = "xplosion_lightning_impact.m2", value = "xplosion_lightning_impact.m2", }, + { + fileId = "522095", + text = "xplosion_lightning_impact_noflash.m2", + value = "xplosion_lightning_impact_noflash.m2", + }, { fileId = "253573", text = "xplosion_nature_impact.m2", value = "xplosion_nature_impact.m2", }, { - fileId = "349960", - text = "yoggsaron_green.m2", - value = "yoggsaron_green.m2", + fileId = "522097", + text = "xplosion_nature_impact_noflash.m2", + value = "xplosion_nature_impact_noflash.m2", + }, + { + fileId = "367445", + text = "xplosion_twilight_impact.m2", + value = "xplosion_twilight_impact.m2", + }, + { + fileId = "522099", + text = "xplosion_twilight_impact_noflash.m2", + value = "xplosion_twilight_impact_noflash.m2", + }, + { + fileId = "349960", + text = "yoggsaron_green.m2", + value = "yoggsaron_green.m2", + }, + { + fileId = "167224", + text = "zangarmarsh_arcane_impact.m2", + value = "zangarmarsh_arcane_impact.m2", + }, + { + fileId = "167225", + text = "zangarmarsh_arcane_missile.m2", + value = "zangarmarsh_arcane_missile.m2", + }, + { + fileId = "167229", + text = "zig_missile.m2", + value = "zig_missile.m2", + }, + { + fileId = "241128", + text = "zulaman_firedoor_unit.m2", + value = "zulaman_firedoor_unit.m2", + }, + }, + text = "spells", + value = "spells", + }, + { + children = { + { + children = { + { + fileId = "2353357", + text = "boartest.m2", + value = "boartest.m2", + }, + }, + text = "boartest", + value = "boartest", + }, + { + fileId = "425000", + text = "guildflagtest.m2", + value = "guildflagtest.m2", + }, + }, + text = "test", + value = "test", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189077", + text = "xyz.m2", + value = "xyz.m2", + }, + }, + text = "boxtest", + value = "boxtest", + }, + { + children = { + { + fileId = "189078", + text = "shadertest_01.m2", + value = "shadertest_01.m2", + }, + }, + text = "shader", + value = "shader", + }, + }, + text = "arttest", + value = "arttest", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "189079", + text = "bootybayentrance_02.m2", + value = "bootybayentrance_02.m2", + }, + }, + text = "bootyentrance", + value = "bootyentrance", + }, + { + children = { + { + fileId = "189085", + text = "fishdeadblue.m2", + value = "fishdeadblue.m2", + }, + { + fileId = "189086", + text = "fishdeadgreen.m2", + value = "fishdeadgreen.m2", + }, + { + fileId = "189087", + text = "fishdeadorange.m2", + value = "fishdeadorange.m2", + }, + { + fileId = "189088", + text = "fishdeadpurple.m2", + value = "fishdeadpurple.m2", + }, + { + fileId = "189089", + text = "fishfrenzyblue.m2", + value = "fishfrenzyblue.m2", + }, + { + fileId = "189090", + text = "fishfrenzygreen.m2", + value = "fishfrenzygreen.m2", + }, + { + fileId = "189091", + text = "fishrack.m2", + value = "fishrack.m2", + }, + }, + text = "deadfish", + value = "deadfish", + }, + { + children = { + { + fileId = "189092", + text = "fishingbox.m2", + value = "fishingbox.m2", + }, + }, + text = "fishingbox", + value = "fishingbox", + }, + { + children = { + { + fileId = "189093", + text = "fishingpole01.m2", + value = "fishingpole01.m2", + }, + { + fileId = "189094", + text = "fishingpole02.m2", + value = "fishingpole02.m2", + }, + }, + text = "fishingpoles", + value = "fishingpoles", + }, + { + children = { + { + fileId = "189095", + text = "goblinstatuebooty.m2", + value = "goblinstatuebooty.m2", + }, + }, + text = "goblinstatue", + value = "goblinstatue", + }, + { + children = { + { + fileId = "189097", + text = "harpoon01.m2", + value = "harpoon01.m2", + }, + }, + text = "harpoons", + value = "harpoons", + }, + { + children = { + { + fileId = "189099", + text = "sharkmodel01.m2", + value = "sharkmodel01.m2", + }, + }, + text = "sharkmodels", + value = "sharkmodels", + }, + }, + text = "passivedoodad", + value = "passivedoodad", + }, + }, + text = "bootybay", + value = "bootybay", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189103", + text = "darkironnode.m2", + value = "darkironnode.m2", + }, + { + fileId = "189104", + text = "darkironnodeparticlerock.m2", + value = "darkironnodeparticlerock.m2", + }, + }, + text = "darkironnode", + value = "darkironnode", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189105", + text = "deadheadboar.m2", + value = "deadheadboar.m2", + }, + { + fileId = "189106", + text = "deadheaddeer.m2", + value = "deadheaddeer.m2", + }, + }, + text = "animalheads", + value = "animalheads", + }, + { + children = { + { + fileId = "189110", + text = "ashpeople01.m2", + value = "ashpeople01.m2", + }, + { + fileId = "189112", + text = "ashpeople02.m2", + value = "ashpeople02.m2", + }, + { + fileId = "189113", + text = "ashpeople03.m2", + value = "ashpeople03.m2", + }, + { + fileId = "189114", + text = "ashpeople04.m2", + value = "ashpeople04.m2", + }, + { + fileId = "189115", + text = "ashpeople05.m2", + value = "ashpeople05.m2", + }, + }, + text = "ashpeople", + value = "ashpeople", + }, + { + children = { + { + fileId = "189118", + text = "orcbonfire.m2", + value = "orcbonfire.m2", + }, + { + fileId = "189119", + text = "orcbonfire_blue.m2", + value = "orcbonfire_blue.m2", + }, + { + fileId = "189120", + text = "orcbonfireoff.m2", + value = "orcbonfireoff.m2", + }, + }, + text = "bonfire", + value = "bonfire", + }, + { + children = { + { + fileId = "189124", + text = "burningropebridge.m2", + value = "burningropebridge.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "189126", + text = "burninggiantwheel.m2", + value = "burninggiantwheel.m2", + }, + }, + text = "burninggiantwheel", + value = "burninggiantwheel", + }, + { + children = { + { + fileId = "189127", + text = "burningsteppscliffrock01.m2", + value = "burningsteppscliffrock01.m2", + }, + { + fileId = "189128", + text = "burningsteppscliffrock02.m2", + value = "burningsteppscliffrock02.m2", + }, + { + fileId = "189129", + text = "burningsteppscliffrock03.m2", + value = "burningsteppscliffrock03.m2", + }, + { + fileId = "189130", + text = "burningsteppscliffrock04.m2", + value = "burningsteppscliffrock04.m2", + }, + { + fileId = "189131", + text = "burningsteppscliffrock05.m2", + value = "burningsteppscliffrock05.m2", + }, + { + fileId = "189132", + text = "burningsteppscliffrock06.m2", + value = "burningsteppscliffrock06.m2", + }, + }, + text = "cliffrocks", + value = "cliffrocks", + }, + { + children = { + { + fileId = "189134", + text = "fallingembers.m2", + value = "fallingembers.m2", + }, + }, + text = "fallingembers", + value = "fallingembers", + }, + { + children = { + { + fileId = "189135", + text = "burningsteppesfence.m2", + value = "burningsteppesfence.m2", + }, + { + fileId = "189136", + text = "burningsteppesfencechain.m2", + value = "burningsteppesfencechain.m2", + }, + { + fileId = "189137", + text = "burningsteppesfencepost.m2", + value = "burningsteppesfencepost.m2", + }, + }, + text = "fences", + value = "fences", + }, + { + children = { + { + fileId = "189141", + text = "lavaaltar.m2", + value = "lavaaltar.m2", + }, + }, + text = "lavaaltar", + value = "lavaaltar", + }, + { + children = { + { + fileId = "189147", + text = "lavabridge.m2", + value = "lavabridge.m2", + }, + }, + text = "lavabridge", + value = "lavabridge", + }, + { + children = { + { + fileId = "189151", + text = "lavafallsblackrock01.m2", + value = "lavafallsblackrock01.m2", + }, + { + fileId = "189152", + text = "lavafallsblackrock02.m2", + value = "lavafallsblackrock02.m2", + }, + { + fileId = "189153", + text = "lavafallsblackrock03.m2", + value = "lavafallsblackrock03.m2", + }, + { + fileId = "189154", + text = "lavafallsblackrock04.m2", + value = "lavafallsblackrock04.m2", + }, + }, + text = "lavafalls", + value = "lavafalls", + }, + { + children = { + { + fileId = "189158", + text = "lavapillar01.m2", + value = "lavapillar01.m2", + }, + { + fileId = "189159", + text = "lavapillar02.m2", + value = "lavapillar02.m2", + }, + { + fileId = "189160", + text = "lavapillar03.m2", + value = "lavapillar03.m2", + }, + { + fileId = "189161", + text = "lavapillar04.m2", + value = "lavapillar04.m2", + }, + }, + text = "lavapillar", + value = "lavapillar", + }, + { + children = { + { + fileId = "189165", + text = "lavaplug01.m2", + value = "lavaplug01.m2", + }, + { + fileId = "189166", + text = "lavaplug02.m2", + value = "lavaplug02.m2", + }, + }, + text = "lavaplugs", + value = "lavaplugs", + }, + { + children = { + { + fileId = "189170", + text = "lavashrine01.m2", + value = "lavashrine01.m2", + }, + { + fileId = "189171", + text = "lavashrine02.m2", + value = "lavashrine02.m2", + }, + { + fileId = "189172", + text = "lavashrine03.m2", + value = "lavashrine03.m2", + }, + { + fileId = "189173", + text = "lavashrine04.m2", + value = "lavashrine04.m2", + }, + { + fileId = "189178", + text = "searinggorgelavashrine.m2", + value = "searinggorgelavashrine.m2", + }, + }, + text = "lavashrine", + value = "lavashrine", + }, + { + children = { + { + fileId = "189179", + text = "lotharstatue.m2", + value = "lotharstatue.m2", + }, + }, + text = "lotharstatue", + value = "lotharstatue", + }, + { + children = { + { + fileId = "189180", + text = "ogreheadpike.m2", + value = "ogreheadpike.m2", + }, + }, + text = "ogreheadpike", + value = "ogreheadpike", + }, + { + children = { + { + fileId = "189186", + text = "orcanvilstoneburningsteppes.m2", + value = "orcanvilstoneburningsteppes.m2", + }, + }, + text = "orcanvilstoneburningsteppes", + value = "orcanvilstoneburningsteppes", + }, + { + children = { + { + fileId = "189187", + text = "orcstoneburialpyre.m2", + value = "orcstoneburialpyre.m2", + }, + { + fileId = "189188", + text = "orcstoneburialpyrebody.m2", + value = "orcstoneburialpyrebody.m2", + }, + }, + text = "orcburialpyres", + value = "orcburialpyres", + }, + { + children = { + { + fileId = "189193", + text = "orcsmallfoundrypit.m2", + value = "orcsmallfoundrypit.m2", + }, + }, + text = "orcfoundrypit", + value = "orcfoundrypit", + }, + { + children = { + { + fileId = "189196", + text = "orcsleepmat01.m2", + value = "orcsleepmat01.m2", + }, + { + fileId = "189197", + text = "orcsleepmat02.m2", + value = "orcsleepmat02.m2", + }, + { + fileId = "189198", + text = "orcsleepmat03.m2", + value = "orcsleepmat03.m2", + }, + }, + text = "orcsleepmats", + value = "orcsleepmats", + }, + { + children = { + { + fileId = "189200", + text = "orctent.m2", + value = "orctent.m2", + }, + }, + text = "orctents", + value = "orctents", + }, + { + children = { + { + fileId = "189204", + text = "orctoolrackburningsteppes.m2", + value = "orctoolrackburningsteppes.m2", + }, + }, + text = "orctoolrackburningsteppes", + value = "orctoolrackburningsteppes", + }, + { + children = { + { + fileId = "189208", + text = "pentagramdirt.m2", + value = "pentagramdirt.m2", + }, + }, + text = "pentagramdirt", + value = "pentagramdirt", + }, + { + children = { + { + fileId = "189212", + text = "burningsteppesboulders01.m2", + value = "burningsteppesboulders01.m2", + }, + { + fileId = "189213", + text = "burningsteppesboulders02.m2", + value = "burningsteppesboulders02.m2", + }, + { + fileId = "189214", + text = "burningsteppesboulders03.m2", + value = "burningsteppesboulders03.m2", + }, + { + fileId = "189215", + text = "burningsteppesboulders04.m2", + value = "burningsteppesboulders04.m2", + }, + { + fileId = "189216", + text = "burningsteppesboulders05.m2", + value = "burningsteppesboulders05.m2", + }, + { + fileId = "189217", + text = "burningsteppesboulders06.m2", + value = "burningsteppesboulders06.m2", + }, + { + fileId = "189218", + text = "lavarock01.m2", + value = "lavarock01.m2", + }, + { + fileId = "189219", + text = "lavarock02.m2", + value = "lavarock02.m2", + }, + { + fileId = "189220", + text = "lavarock03.m2", + value = "lavarock03.m2", + }, + { + fileId = "189221", + text = "lavarock04.m2", + value = "lavarock04.m2", + }, + { + fileId = "189222", + text = "lavarock05.m2", + value = "lavarock05.m2", + }, + { + fileId = "189223", + text = "lavarock06.m2", + value = "lavarock06.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "189226", + text = "burnedbeam.m2", + value = "burnedbeam.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "189229", + text = "smeltingcauldron.m2", + value = "smeltingcauldron.m2", + }, + }, + text = "smeltingcauldron", + value = "smeltingcauldron", + }, + { + children = { + { + fileId = "189232", + text = "smeltingweapons.m2", + value = "smeltingweapons.m2", + }, + }, + text = "smeltingweapons", + value = "smeltingweapons", + }, + { + children = { + { + fileId = "189233", + text = "ashtreesmoke01.m2", + value = "ashtreesmoke01.m2", + }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { + { + fileId = "189236", + text = "stoneblock01.m2", + value = "stoneblock01.m2", + }, + { + fileId = "253204", + text = "stoneblock02.m2", + value = "stoneblock02.m2", + }, + { + fileId = "189237", + text = "stonebracket01.m2", + value = "stonebracket01.m2", + }, + { + fileId = "189238", + text = "stonebracket02.m2", + value = "stonebracket02.m2", + }, + { + fileId = "189239", + text = "stonebracket03.m2", + value = "stonebracket03.m2", + }, + }, + text = "stonebrackets", + value = "stonebrackets", + }, + { + children = { + { + fileId = "189240", + text = "stonegolemstatue1-9.m2", + value = "stonegolemstatue1-9.m2", + }, + { + fileId = "189241", + text = "stonegolemstatue2-9.m2", + value = "stonegolemstatue2-9.m2", + }, + { + fileId = "189242", + text = "stonegolemstatue3-9.m2", + value = "stonegolemstatue3-9.m2", + }, + { + fileId = "189243", + text = "stonegolemstatue4-9.m2", + value = "stonegolemstatue4-9.m2", + }, + { + fileId = "189244", + text = "stonegolemstatue5-9.m2", + value = "stonegolemstatue5-9.m2", + }, + { + fileId = "189245", + text = "stonegolemstatue6-9.m2", + value = "stonegolemstatue6-9.m2", + }, + { + fileId = "189246", + text = "stonegolemstatue7-9.m2", + value = "stonegolemstatue7-9.m2", + }, + { + fileId = "189247", + text = "stonegolemstatue8-9.m2", + value = "stonegolemstatue8-9.m2", + }, + { + fileId = "189248", + text = "stonegolemstatue9-9.m2", + value = "stonegolemstatue9-9.m2", + }, + }, + text = "stonegolemstatue", + value = "stonegolemstatue", + }, + { + children = { + { + fileId = "189253", + text = "ashtree01.m2", + value = "ashtree01.m2", + }, + { + fileId = "189254", + text = "ashtree02.m2", + value = "ashtree02.m2", + }, + { + fileId = "189255", + text = "ashtree03.m2", + value = "ashtree03.m2", + }, + { + fileId = "189258", + text = "burningmidtree01.m2", + value = "burningmidtree01.m2", + }, + { + fileId = "189260", + text = "burningmidtree02.m2", + value = "burningmidtree02.m2", + }, + { + fileId = "189262", + text = "burningmidtree03.m2", + value = "burningmidtree03.m2", + }, + { + fileId = "189263", + text = "burningmidtree04.m2", + value = "burningmidtree04.m2", + }, + { + fileId = "189264", + text = "burningsteppestree01.m2", + value = "burningsteppestree01.m2", + }, + { + fileId = "189265", + text = "burningsteppestree02.m2", + value = "burningsteppestree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189270", + text = "volcanicventlarge01.m2", + value = "volcanicventlarge01.m2", + }, + { + fileId = "189271", + text = "volcanicventlargeoff01.m2", + value = "volcanicventlargeoff01.m2", + }, + { + fileId = "189272", + text = "volcanicventmed01.m2", + value = "volcanicventmed01.m2", + }, + { + fileId = "189273", + text = "volcanicventmedoff01.m2", + value = "volcanicventmedoff01.m2", + }, + { + fileId = "189274", + text = "volcanicventsmall01.m2", + value = "volcanicventsmall01.m2", + }, + { + fileId = "189275", + text = "volcanicventsmalloff01.m2", + value = "volcanicventsmalloff01.m2", + }, + }, + text = "volcanicvents", + value = "volcanicvents", + }, + { + children = { + { + fileId = "189280", + text = "warlockshrine.m2", + value = "warlockshrine.m2", + }, + }, + text = "warlockshrine", + value = "warlockshrine", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "burningsteppes", + value = "burningsteppes", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189282", + text = "goblinmeltingpot.m2", + value = "goblinmeltingpot.m2", + }, + }, + text = "goblinmeltingpot", + value = "goblinmeltingpot", + }, + { + fileId = "189287", + text = "lavasink.m2", + value = "lavasink.m2", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "deadmines", + value = "deadmines", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189288", + text = "abandonedhumanguardtower.m2", + value = "abandonedhumanguardtower.m2", + }, + }, + text = "abandonedguardtower", + value = "abandonedguardtower", + }, + { + children = { + { + fileId = "189292", + text = "deadwindrockbridge.m2", + value = "deadwindrockbridge.m2", + }, + }, + text = "rockbridge", + value = "rockbridge", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189294", + text = "deadwindtotem01.m2", + value = "deadwindtotem01.m2", + }, + { + fileId = "189295", + text = "deadwindtotem02.m2", + value = "deadwindtotem02.m2", + }, + { + fileId = "189296", + text = "deadwindtotem03.m2", + value = "deadwindtotem03.m2", + }, + { + fileId = "189297", + text = "deadwindtotem04.m2", + value = "deadwindtotem04.m2", + }, + }, + text = "deadwindtotems", + value = "deadwindtotems", + }, + { + children = { + { + fileId = "189299", + text = "deadwindhangingbody01.m2", + value = "deadwindhangingbody01.m2", + }, + { + fileId = "189300", + text = "deadwindhangingbody02.m2", + value = "deadwindhangingbody02.m2", + }, + }, + text = "hangingbodies", + value = "hangingbodies", + }, + { + children = { + { + fileId = "189304", + text = "deadwindhangingtree.m2", + value = "deadwindhangingtree.m2", + }, + }, + text = "hangingtree", + value = "hangingtree", + }, + { + children = { + { + fileId = "189307", + text = "kharazan_brick.m2", + value = "kharazan_brick.m2", + }, + }, + text = "kharazan_brick", + value = "kharazan_brick", + }, + { + children = { + { + fileId = "189308", + text = "deadwindpasscliffrock01dnr.m2", + value = "deadwindpasscliffrock01dnr.m2", + }, + { + fileId = "189309", + text = "deadwindpasscliffrock02dnr.m2", + value = "deadwindpasscliffrock02dnr.m2", + }, + { + fileId = "189310", + text = "deadwindpasscliffrock03dnr.m2", + value = "deadwindpasscliffrock03dnr.m2", + }, + { + fileId = "189311", + text = "deadwindpasscliffrock04dnr.m2", + value = "deadwindpasscliffrock04dnr.m2", + }, + { + fileId = "189312", + text = "deadwindpasscliffrock05dnr.m2", + value = "deadwindpasscliffrock05dnr.m2", + }, + { + fileId = "189313", + text = "deadwindpassgroundrock01dnr.m2", + value = "deadwindpassgroundrock01dnr.m2", + }, + { + fileId = "189314", + text = "deadwindpassgroundrock02dnr.m2", + value = "deadwindpassgroundrock02dnr.m2", + }, + { + fileId = "189315", + text = "deadwindpassgroundrock03dnr.m2", + value = "deadwindpassgroundrock03dnr.m2", + }, + { + fileId = "189316", + text = "rockarch01dnr.m2", + value = "rockarch01dnr.m2", + }, + { + fileId = "189317", + text = "rockarch02dnr.m2", + value = "rockarch02dnr.m2", + }, + { + fileId = "189318", + text = "rockarch03dnr.m2", + value = "rockarch03dnr.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "189319", + text = "deadwindpassrocktree01.m2", + value = "deadwindpassrocktree01.m2", + }, + { + fileId = "189322", + text = "deadwindpassrocktree02.m2", + value = "deadwindpassrocktree02.m2", + }, + { + fileId = "189324", + text = "deadwindpassrocktree03.m2", + value = "deadwindpassrocktree03.m2", + }, + { + fileId = "189325", + text = "deadwindpassrocktree04.m2", + value = "deadwindpassrocktree04.m2", + }, + { + fileId = "189326", + text = "deadwindpassrocktree05.m2", + value = "deadwindpassrocktree05.m2", + }, + { + fileId = "189327", + text = "deadwindpassrocktree06.m2", + value = "deadwindpassrocktree06.m2", + }, + { + fileId = "189328", + text = "deadwindpassrocktreebroken01.m2", + value = "deadwindpassrocktreebroken01.m2", + }, + { + fileId = "189329", + text = "deadwindpassrocktreebroken02.m2", + value = "deadwindpassrocktreebroken02.m2", + }, + { + fileId = "189330", + text = "deadwindpassrocktreebroken03.m2", + value = "deadwindpassrocktreebroken03.m2", + }, + }, + text = "rocktrees", + value = "rocktrees", + }, + { + children = { + { + fileId = "189335", + text = "deadwindpassroot01.m2", + value = "deadwindpassroot01.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "189336", + text = "deadwindpassmidtree01.m2", + value = "deadwindpassmidtree01.m2", + }, + { + fileId = "189337", + text = "deadwindpassmidtree02.m2", + value = "deadwindpassmidtree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189344", + text = "deadwindhangingweedsgroup01.m2", + value = "deadwindhangingweedsgroup01.m2", + }, + { + fileId = "189345", + text = "deadwindhangingweedsgroup02.m2", + value = "deadwindhangingweedsgroup02.m2", + }, + { + fileId = "189346", + text = "deadwindhangingweedsgroup03.m2", + value = "deadwindhangingweedsgroup03.m2", + }, + { + fileId = "189347", + text = "deadwindhangingweedslarge01.m2", + value = "deadwindhangingweedslarge01.m2", + }, + { + fileId = "189348", + text = "deadwindhangingweedslarge02.m2", + value = "deadwindhangingweedslarge02.m2", + }, + { + fileId = "189349", + text = "deadwindhangingweedssmall01.m2", + value = "deadwindhangingweedssmall01.m2", + }, + { + fileId = "189350", + text = "deadwindhangingweedssmall02.m2", + value = "deadwindhangingweedssmall02.m2", + }, + { + fileId = "189351", + text = "deadwindhangingweedssmall03.m2", + value = "deadwindhangingweedssmall03.m2", + }, + { + fileId = "189352", + text = "deadwindhangingweedssmall04.m2", + value = "deadwindhangingweedssmall04.m2", + }, + }, + text = "weeds", + value = "weeds", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "deadwindpass", + value = "deadwindpass", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189359", + text = "gnolltent02.m2", + value = "gnolltent02.m2", + }, + { + fileId = "189361", + text = "gnolltent03.m2", + value = "gnolltent03.m2", + }, + }, + text = "gnolltent", + value = "gnolltent", + }, + { + children = { + { + fileId = "189375", + text = "gypsywagon.m2", + value = "gypsywagon.m2", + }, + }, + text = "gypsywagon", + value = "gypsywagon", + }, + { + children = { + { + fileId = "189386", + text = "ogremound.m2", + value = "ogremound.m2", + }, + }, + text = "ogremound", + value = "ogremound", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "242690", + text = "duskwood_barn_closed.m2", + value = "duskwood_barn_closed.m2", + }, + }, + text = "barn", + value = "barn", + }, + { + children = { + { + fileId = "189395", + text = "duskwoodbush01.m2", + value = "duskwoodbush01.m2", + }, + { + fileId = "189396", + text = "duskwoodbush02.m2", + value = "duskwoodbush02.m2", + }, + { + fileId = "189397", + text = "duskwoodbush03.m2", + value = "duskwoodbush03.m2", + }, + { + fileId = "189398", + text = "duskwoodbush04.m2", + value = "duskwoodbush04.m2", + }, + { + fileId = "189399", + text = "duskwoodbush05.m2", + value = "duskwoodbush05.m2", + }, + { + fileId = "189400", + text = "duskwoodbush06.m2", + value = "duskwoodbush06.m2", + }, + { + fileId = "189402", + text = "duskwoodbush07.m2", + value = "duskwoodbush07.m2", + }, + { + fileId = "189405", + text = "duskwoodspookybush01.m2", + value = "duskwoodspookybush01.m2", + }, + { + fileId = "189406", + text = "duskwoodspookybush02.m2", + value = "duskwoodspookybush02.m2", + }, + { + fileId = "189407", + text = "duskwoodspookybush03.m2", + value = "duskwoodspookybush03.m2", + }, + { + fileId = "189408", + text = "duskwoodspookybush04.m2", + value = "duskwoodspookybush04.m2", + }, + { + fileId = "189409", + text = "pumpkin01.m2", + value = "pumpkin01.m2", + }, + { + fileId = "189410", + text = "pumpkinpatch01.m2", + value = "pumpkinpatch01.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "189411", + text = "duskwoodchasmbridge.m2", + value = "duskwoodchasmbridge.m2", + }, + }, + text = "chasmbridge", + value = "chasmbridge", + }, + { + children = { + { + fileId = "189415", + text = "coffin.m2", + value = "coffin.m2", + }, + }, + text = "coffin", + value = "coffin", + }, + { + children = { + { + fileId = "189416", + text = "coffinlid.m2", + value = "coffinlid.m2", + }, + }, + text = "coffinlid", + value = "coffinlid", + }, + { + children = { + { + fileId = "189417", + text = "duskwoodcoveredbridge.m2", + value = "duskwoodcoveredbridge.m2", + }, + }, + text = "coveredbridge", + value = "coveredbridge", + }, + { + children = { + { + fileId = "189423", + text = "darkshireentrance01.m2", + value = "darkshireentrance01.m2", + }, + }, + text = "darkshireentrance", + value = "darkshireentrance", + }, + { + children = { + { + children = { + { + fileId = "189426", + text = "duskwoodcatails01.m2", + value = "duskwoodcatails01.m2", + }, + }, + text = "duskwoodcatails01", + value = "duskwoodcatails01", + }, + { + children = { + { + fileId = "189427", + text = "duskwoodgrass01.m2", + value = "duskwoodgrass01.m2", + }, + }, + text = "duskwoodgrass01", + value = "duskwoodgrass01", + }, + { + children = { + { + fileId = "189429", + text = "duskwoodlillypad01.m2", + value = "duskwoodlillypad01.m2", + }, + }, + text = "duskwoodlillypad01", + value = "duskwoodlillypad01", + }, + { + children = { + { + fileId = "189432", + text = "duskwoodmushroom01.m2", + value = "duskwoodmushroom01.m2", + }, + }, + text = "duskwoodmushroom01", + value = "duskwoodmushroom01", + }, + { + children = { + { + fileId = "189434", + text = "duskwoodseaweed01.m2", + value = "duskwoodseaweed01.m2", + }, + }, + text = "duskwoodseaweed01", + value = "duskwoodseaweed01", + }, + { + children = { + { + fileId = "189437", + text = "duskwoodthornbush01.m2", + value = "duskwoodthornbush01.m2", + }, + }, + text = "duskwoodthornbush01", + value = "duskwoodthornbush01", + }, + { + children = { + { + fileId = "189438", + text = "duskwoodthornbush02.m2", + value = "duskwoodthornbush02.m2", + }, + }, + text = "duskwoodthornbush02", + value = "duskwoodthornbush02", + }, + { + children = { + { + fileId = "189440", + text = "duskwoodvine01.m2", + value = "duskwoodvine01.m2", + }, + }, + text = "duskwoodvine01", + value = "duskwoodvine01", + }, + { + children = { + { + fileId = "189442", + text = "duskwoodvine02.m2", + value = "duskwoodvine02.m2", + }, + }, + text = "duskwoodvine02", + value = "duskwoodvine02", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "189445", + text = "barnduskwood.m2", + value = "barnduskwood.m2", + }, + }, + text = "duskwoodbarn", + value = "duskwoodbarn", + }, + { + children = { + { + fileId = "189452", + text = "duskwoodhaystack.m2", + value = "duskwoodhaystack.m2", + }, + }, + text = "duskwoodhaystack", + value = "duskwoodhaystack", + }, + { + children = { + { + fileId = "189455", + text = "duskwoodhaywagon.m2", + value = "duskwoodhaywagon.m2", + }, + }, + text = "duskwoodhaywagon", + value = "duskwoodhaywagon", + }, + { + children = { + { + fileId = "189457", + text = "duskwoodhearse.m2", + value = "duskwoodhearse.m2", + }, + }, + text = "duskwoodhearse", + value = "duskwoodhearse", + }, + { + children = { + { + fileId = "189458", + text = "duskscarecrow.m2", + value = "duskscarecrow.m2", + }, + }, + text = "duskwoodscarecrow", + value = "duskwoodscarecrow", + }, + { + children = { + { + fileId = "189461", + text = "duskwoodstraw.m2", + value = "duskwoodstraw.m2", + }, + }, + text = "duskwoodstraw", + value = "duskwoodstraw", + }, + { + children = { + { + fileId = "189462", + text = "duskwoodwheat.m2", + value = "duskwoodwheat.m2", + }, + }, + text = "duskwoodwheat", + value = "duskwoodwheat", + }, + { + children = { + { + fileId = "242691", + text = "duskwood_human_farm_closed.m2", + value = "duskwood_human_farm_closed.m2", + }, + { + fileId = "242692", + text = "duskwood_lumbermill.m2", + value = "duskwood_lumbermill.m2", + }, + }, + text = "farm", + value = "farm", + }, + { + children = { + { + fileId = "189464", + text = "duskwoodfencebottom.m2", + value = "duskwoodfencebottom.m2", + }, + { + fileId = "189465", + text = "duskwoodfencebottombroken.m2", + value = "duskwoodfencebottombroken.m2", + }, + { + fileId = "189466", + text = "duskwoodfencebrokensegment.m2", + value = "duskwoodfencebrokensegment.m2", + }, + { + fileId = "189467", + text = "duskwoodfencepost.m2", + value = "duskwoodfencepost.m2", + }, + { + fileId = "189468", + text = "duskwoodfencerail.m2", + value = "duskwoodfencerail.m2", + }, + { + fileId = "189469", + text = "duskwoodfencesegment.m2", + value = "duskwoodfencesegment.m2", + }, + { + fileId = "189470", + text = "duskwoodfencesegment02.m2", + value = "duskwoodfencesegment02.m2", + }, + { + fileId = "189471", + text = "duskwoodfencetop.m2", + value = "duskwoodfencetop.m2", + }, + { + fileId = "189472", + text = "duskwoodfencetopbroken.m2", + value = "duskwoodfencetopbroken.m2", + }, + { + fileId = "189477", + text = "rockwallend.m2", + value = "rockwallend.m2", + }, + { + fileId = "189478", + text = "rockwallrubble.m2", + value = "rockwallrubble.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "413596", + text = "duskwood_fountain_01.m2", + value = "duskwood_fountain_01.m2", + }, + }, + text = "fountains", + value = "fountains", + }, + { + children = { + { + fileId = "189480", + text = "duskwoodgate01.m2", + value = "duskwoodgate01.m2", + }, + { + fileId = "189481", + text = "duskwoodtallcemetarygate.m2", + value = "duskwoodtallcemetarygate.m2", + }, + }, + text = "gates", + value = "gates", + }, + { + children = { + { + fileId = "189485", + text = "duskwoodgraveframe.m2", + value = "duskwoodgraveframe.m2", + }, + }, + text = "graveframe", + value = "graveframe", + }, + { + children = { + { + fileId = "189488", + text = "cemetarygate01.m2", + value = "cemetarygate01.m2", + }, + { + fileId = "189491", + text = "gatepost.m2", + value = "gatepost.m2", + }, + { + fileId = "189492", + text = "gatesegment01.m2", + value = "gatesegment01.m2", + }, + { + fileId = "189493", + text = "gatesegment02.m2", + value = "gatesegment02.m2", + }, + { + fileId = "189494", + text = "gatesegment03.m2", + value = "gatesegment03.m2", + }, + }, + text = "irongate", + value = "irongate", + }, + { + children = { + { + fileId = "189496", + text = "duskwoodmausoleum.m2", + value = "duskwoodmausoleum.m2", + }, + { + fileId = "189498", + text = "mausoleumactivedoors.m2", + value = "mausoleumactivedoors.m2", + }, + }, + text = "mausoleum", + value = "mausoleum", + }, + { + children = { + { + fileId = "189499", + text = "duskwoodboulder01.m2", + value = "duskwoodboulder01.m2", + }, + { + fileId = "189500", + text = "duskwoodboulder02.m2", + value = "duskwoodboulder02.m2", + }, + { + fileId = "189501", + text = "duskwoodboulder03.m2", + value = "duskwoodboulder03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "189505", + text = "duskwoodchimney01.m2", + value = "duskwoodchimney01.m2", + }, + { + fileId = "189506", + text = "duskwoodruins01.m2", + value = "duskwoodruins01.m2", + }, + { + fileId = "189507", + text = "duskwoodruins02.m2", + value = "duskwoodruins02.m2", + }, + { + fileId = "189508", + text = "duskwoodruins03.m2", + value = "duskwoodruins03.m2", + }, + { + fileId = "189509", + text = "duskwoodruins04.m2", + value = "duskwoodruins04.m2", + }, + { + fileId = "189510", + text = "duskwoodruinsbeam.m2", + value = "duskwoodruinsbeam.m2", + }, + { + fileId = "189511", + text = "duskwoodruinsbrick.m2", + value = "duskwoodruinsbrick.m2", + }, + { + fileId = "189512", + text = "duskwoodruinsfoundation01.m2", + value = "duskwoodruinsfoundation01.m2", + }, + { + fileId = "189513", + text = "duskwoodruinsfoundation02.m2", + value = "duskwoodruinsfoundation02.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "189516", + text = "duskwoodcs01.m2", + value = "duskwoodcs01.m2", + }, + { + fileId = "189517", + text = "duskwoodcs02.m2", + value = "duskwoodcs02.m2", + }, + { + fileId = "189521", + text = "duskwoodtreespookless01.m2", + value = "duskwoodtreespookless01.m2", + }, + { + fileId = "189522", + text = "duskwoodtreespookless02.m2", + value = "duskwoodtreespookless02.m2", + }, + }, + text = "spooklesstrees", + value = "spooklesstrees", + }, + { + children = { + { + fileId = "242693", + text = "duskwood_stable.m2", + value = "duskwood_stable.m2", + }, + }, + text = "stable", + value = "stable", + }, + { + children = { + { + fileId = "189523", + text = "duskwoodstoneframecorner.m2", + value = "duskwoodstoneframecorner.m2", + }, + { + fileId = "189524", + text = "duskwoodstoneframelong.m2", + value = "duskwoodstoneframelong.m2", + }, + { + fileId = "189525", + text = "duskwoodstoneframeshort.m2", + value = "duskwoodstoneframeshort.m2", + }, + }, + text = "stoneframes", + value = "stoneframes", + }, + { + children = { + { + fileId = "189527", + text = "duskwoodstraw02.m2", + value = "duskwoodstraw02.m2", + }, + }, + text = "straw", + value = "straw", + }, + { + children = { + { + fileId = "189528", + text = "dirtmound01.m2", + value = "dirtmound01.m2", + }, + { + fileId = "189530", + text = "tombstone05.m2", + value = "tombstone05.m2", + }, + { + fileId = "189532", + text = "tombstone06.m2", + value = "tombstone06.m2", + }, + { + fileId = "189534", + text = "tombstone07.m2", + value = "tombstone07.m2", + }, + { + fileId = "189535", + text = "tombstone08.m2", + value = "tombstone08.m2", + }, + { + fileId = "189536", + text = "tombstonemonument01.m2", + value = "tombstonemonument01.m2", + }, + { + fileId = "189538", + text = "tombstonemonument02.m2", + value = "tombstonemonument02.m2", + }, + { + fileId = "189540", + text = "woodcross01.m2", + value = "woodcross01.m2", + }, + { + fileId = "189541", + text = "woodcross02.m2", + value = "woodcross02.m2", + }, + }, + text = "tombs", + value = "tombs", + }, + { + children = { + { + fileId = "189544", + text = "duskwoodbrowntree.m2", + value = "duskwoodbrowntree.m2", + }, + { + fileId = "189545", + text = "duskwoodfallentree.m2", + value = "duskwoodfallentree.m2", + }, + { + fileId = "189546", + text = "duskwoodfallentree02.m2", + value = "duskwoodfallentree02.m2", + }, + { + fileId = "189547", + text = "duskwoodspookytree01.m2", + value = "duskwoodspookytree01.m2", + }, + { + fileId = "189551", + text = "duskwoodspookytree02.m2", + value = "duskwoodspookytree02.m2", + }, + { + fileId = "189552", + text = "duskwoodspookytree03.m2", + value = "duskwoodspookytree03.m2", + }, + { + fileId = "189557", + text = "duskwoodtree05.m2", + value = "duskwoodtree05.m2", + }, + { + fileId = "189558", + text = "duskwoodtree06.m2", + value = "duskwoodtree06.m2", + }, + { + fileId = "189559", + text = "duskwoodtree07.m2", + value = "duskwoodtree07.m2", + }, + { + fileId = "189560", + text = "duskwoodtreecanopy01.m2", + value = "duskwoodtreecanopy01.m2", + }, + { + fileId = "189561", + text = "duskwoodtreecanopy02.m2", + value = "duskwoodtreecanopy02.m2", + }, + { + fileId = "189562", + text = "duskwoodtreecanopy03.m2", + value = "duskwoodtreecanopy03.m2", + }, + { + fileId = "189566", + text = "duskwoodtreestump01.m2", + value = "duskwoodtreestump01.m2", + }, + { + fileId = "189567", + text = "duskwoodtreestump02.m2", + value = "duskwoodtreestump02.m2", + }, + { + fileId = "189571", + text = "duskwoodwhitetree.m2", + value = "duskwoodwhitetree.m2", + }, + { + fileId = "189575", + text = "newduskwoodtreehuge.m2", + value = "newduskwoodtreehuge.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189580", + text = "duskwoodrockwall.m2", + value = "duskwoodrockwall.m2", + }, + }, + text = "walls", + value = "walls", + }, + { + children = { + { + fileId = "189581", + text = "warningtree.m2", + value = "warningtree.m2", + }, + }, + text = "warningtree", + value = "warningtree", + }, + { + children = { + { + fileId = "189589", + text = "duskwoodwarpgate.m2", + value = "duskwoodwarpgate.m2", + }, + }, + text = "warpgate", + value = "warpgate", + }, + { + children = { + { + fileId = "189595", + text = "webdangle01.m2", + value = "webdangle01.m2", + }, + { + fileId = "189596", + text = "webdangle02.m2", + value = "webdangle02.m2", + }, + { + fileId = "189597", + text = "webstretch01.m2", + value = "webstretch01.m2", + }, + }, + text = "webs", + value = "webs", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "duskwood", + value = "duskwood", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189599", + text = "nsabbeybell.m2", + value = "nsabbeybell.m2", + }, + }, + text = "abbeybell", + value = "abbeybell", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189601", + text = "blacksmith.m2", + value = "blacksmith.m2", + }, + }, + text = "blacksmith", + value = "blacksmith", + }, + { + children = { + { + fileId = "189610", + text = "elwynnfootbridge.m2", + value = "elwynnfootbridge.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "189611", + text = "distillery.m2", + value = "distillery.m2", + }, + }, + text = "distillery", + value = "distillery", + }, + { + children = { + { + fileId = "189620", + text = "goldmine.m2", + value = "goldmine.m2", + }, + { + fileId = "189621", + text = "goldminetrackcurve.m2", + value = "goldminetrackcurve.m2", + }, + { + fileId = "189622", + text = "goldminetracks.m2", + value = "goldminetracks.m2", + }, + }, + text = "goldmine", + value = "goldmine", + }, + { + children = { + { + fileId = "189629", + text = "humanguardtower.m2", + value = "humanguardtower.m2", + }, + }, + text = "humanguardtower", + value = "humanguardtower", + }, + { + children = { + { + fileId = "189632", + text = "humanwatchtower.m2", + value = "humanwatchtower.m2", + }, + }, + text = "humanwatchtower", + value = "humanwatchtower", + }, + { + children = { + { + fileId = "189641", + text = "stormwindgate.m2", + value = "stormwindgate.m2", + }, + }, + text = "stormwindentrance", + value = "stormwindentrance", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189642", + text = "anvil.m2", + value = "anvil.m2", + }, + }, + text = "anvil", + value = "anvil", + }, + { + children = { + { + fileId = "189652", + text = "ballista.m2", + value = "ballista.m2", + }, + }, + text = "ballista", + value = "ballista", + }, + { + children = { + { + fileId = "189657", + text = "ballistaruined.m2", + value = "ballistaruined.m2", + }, + }, + text = "ballistaruined", + value = "ballistaruined", + }, + { + children = { + { + fileId = "189666", + text = "battlegladebanner1.m2", + value = "battlegladebanner1.m2", + }, + }, + text = "battlegladebanner1", + value = "battlegladebanner1", + }, + { + children = { + { + fileId = "189670", + text = "battlegladebanner2.m2", + value = "battlegladebanner2.m2", + }, + }, + text = "battlegladebanner2", + value = "battlegladebanner2", + }, + { + children = { + { + fileId = "189674", + text = "battlegladepolearmskull.m2", + value = "battlegladepolearmskull.m2", + }, + }, + text = "battlegladepolearmskull", + value = "battlegladepolearmskull", + }, + { + children = { + { + fileId = "189676", + text = "battlegladeshield1.m2", + value = "battlegladeshield1.m2", + }, + }, + text = "battlegladeshield1", + value = "battlegladeshield1", + }, + { + children = { + { + fileId = "189678", + text = "battlegladeshield2.m2", + value = "battlegladeshield2.m2", + }, + }, + text = "battlegladeshield2", + value = "battlegladeshield2", + }, + { + children = { + { + fileId = "189680", + text = "battlegladeshield3.m2", + value = "battlegladeshield3.m2", + }, + }, + text = "battlegladeshield3", + value = "battlegladeshield3", + }, + { + children = { + { + fileId = "189682", + text = "battlegladeskullhuman1.m2", + value = "battlegladeskullhuman1.m2", + }, + }, + text = "battlegladeskullhuman1", + value = "battlegladeskullhuman1", + }, + { + children = { + { + fileId = "189684", + text = "battlegladeskullhuman2.m2", + value = "battlegladeskullhuman2.m2", + }, + }, + text = "battlegladeskullhuman2", + value = "battlegladeskullhuman2", + }, + { + children = { + { + fileId = "189685", + text = "battlegladeskullorc1.m2", + value = "battlegladeskullorc1.m2", + }, + }, + text = "battlegladeskullorc1", + value = "battlegladeskullorc1", + }, + { + children = { + { + fileId = "189686", + text = "battlegladeskullorc2.m2", + value = "battlegladeskullorc2.m2", + }, + }, + text = "battlegladeskullorc2", + value = "battlegladeskullorc2", + }, + { + children = { + { + fileId = "189687", + text = "battlegladesword.m2", + value = "battlegladesword.m2", + }, + }, + text = "battlegladesword", + value = "battlegladesword", + }, + { + children = { + { + fileId = "189689", + text = "battlegladeswordskull.m2", + value = "battlegladeswordskull.m2", + }, + }, + text = "battlegladeswordskull", + value = "battlegladeswordskull", + }, + { + children = { + { + fileId = "189690", + text = "battlegladewoodspikes.m2", + value = "battlegladewoodspikes.m2", + }, + }, + text = "battlegladewoodspikes", + value = "battlegladewoodspikes", + }, + { + children = { + { + fileId = "189691", + text = "bellow.m2", + value = "bellow.m2", + }, + }, + text = "bellow", + value = "bellow", + }, + { + children = { + { + fileId = "189692", + text = "elwynnbush01.m2", + value = "elwynnbush01.m2", + }, + { + fileId = "189693", + text = "elwynnbush02.m2", + value = "elwynnbush02.m2", + }, + { + fileId = "189694", + text = "elwynnbush03.m2", + value = "elwynnbush03.m2", + }, + { + fileId = "189695", + text = "elwynnbush04.m2", + value = "elwynnbush04.m2", + }, + { + fileId = "189696", + text = "elwynnbush05.m2", + value = "elwynnbush05.m2", + }, + { + fileId = "189697", + text = "elwynnbush06.m2", + value = "elwynnbush06.m2", + }, + { + fileId = "189698", + text = "elwynnbush07.m2", + value = "elwynnbush07.m2", + }, + { + fileId = "189699", + text = "elwynnbush08.m2", + value = "elwynnbush08.m2", + }, + { + fileId = "189700", + text = "elwynnbush09.m2", + value = "elwynnbush09.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "189705", + text = "elwynncampfire.m2", + value = "elwynncampfire.m2", + }, + { + fileId = "189706", + text = "elwynncampfire_blue.m2", + value = "elwynncampfire_blue.m2", + }, + }, + text = "campfire", + value = "campfire", + }, + { + children = { + { + fileId = "189709", + text = "catapult.m2", + value = "catapult.m2", + }, + }, + text = "catapult", + value = "catapult", + }, + { + children = { + { + fileId = "189715", + text = "elwynncliffrock01.m2", + value = "elwynncliffrock01.m2", + }, + { + fileId = "189716", + text = "elwynncliffrock02.m2", + value = "elwynncliffrock02.m2", + }, + { + fileId = "189717", + text = "elwynncliffrock03.m2", + value = "elwynncliffrock03.m2", + }, + { + fileId = "189718", + text = "elwynncliffrock04.m2", + value = "elwynncliffrock04.m2", + }, + { + fileId = "189719", + text = "elwynncliffrock05.m2", + value = "elwynncliffrock05.m2", + }, + }, + text = "cliffrocks", + value = "cliffrocks", + }, + { + children = { + { + fileId = "189723", + text = "corn.m2", + value = "corn.m2", + }, + { + fileId = "189725", + text = "corncrop1.m2", + value = "corncrop1.m2", + }, + { + fileId = "189727", + text = "corncrop2.m2", + value = "corncrop2.m2", + }, + { + fileId = "189728", + text = "corncrop3.m2", + value = "corncrop3.m2", + }, + { + fileId = "189730", + text = "corncropdead.m2", + value = "corncropdead.m2", + }, + { + fileId = "189731", + text = "corncroplowpoly.m2", + value = "corncroplowpoly.m2", + }, + { + fileId = "189732", + text = "corncroprow.m2", + value = "corncroprow.m2", + }, + { + fileId = "189733", + text = "corncroprowlowpoly01.m2", + value = "corncroprowlowpoly01.m2", + }, + { + fileId = "189734", + text = "corncroprowlowpoly02.m2", + value = "corncroprowlowpoly02.m2", + }, + }, + text = "corncrop", + value = "corncrop", + }, + { + children = { + { + children = { + { + fileId = "189739", + text = "elwynncatails01.m2", + value = "elwynncatails01.m2", + }, + }, + text = "elwynncatails01", + value = "elwynncatails01", + }, + { + children = { + { + fileId = "189740", + text = "elwynncatails02.m2", + value = "elwynncatails02.m2", + }, + }, + text = "elwynncatails02", + value = "elwynncatails02", + }, + { + children = { + { + fileId = "189742", + text = "elwynndetailflowers01.m2", + value = "elwynndetailflowers01.m2", + }, + { + fileId = "189743", + text = "elwynndetailflowers02.m2", + value = "elwynndetailflowers02.m2", + }, + }, + text = "elwynndetailflowers", + value = "elwynndetailflowers", + }, + { + children = { + { + fileId = "189744", + text = "elwynndetailgrass01.m2", + value = "elwynndetailgrass01.m2", + }, + { + fileId = "189745", + text = "elwynndetailgrass02.m2", + value = "elwynndetailgrass02.m2", + }, + { + fileId = "189746", + text = "elwynndetailgrass03.m2", + value = "elwynndetailgrass03.m2", + }, + { + fileId = "189747", + text = "elwynndetailgrass04.m2", + value = "elwynndetailgrass04.m2", + }, + }, + text = "elwynndetailgrass", + value = "elwynndetailgrass", + }, + { + children = { + { + fileId = "189749", + text = "elwynndetailrock01.m2", + value = "elwynndetailrock01.m2", + }, + { + fileId = "189750", + text = "elwynndetailrock02.m2", + value = "elwynndetailrock02.m2", + }, + }, + text = "elwynndetailrocks", + value = "elwynndetailrocks", + }, + { + fileId = "189751", + text = "elwynnflower01.m2", + value = "elwynnflower01.m2", + }, + { + fileId = "189752", + text = "elwynnflower02.m2", + value = "elwynnflower02.m2", + }, + { + fileId = "189754", + text = "elwynngrass01.m2", + value = "elwynngrass01.m2", + }, + { + children = { + { + fileId = "189755", + text = "elwynngrass02.m2", + value = "elwynngrass02.m2", + }, + }, + text = "elwynngrass02", + value = "elwynngrass02", + }, + { + children = { + { + fileId = "189757", + text = "elwynngrass1.m2", + value = "elwynngrass1.m2", + }, + }, + text = "elwynngrass1", + value = "elwynngrass1", + }, + { + children = { + { + fileId = "189759", + text = "elwynnlillypad01.m2", + value = "elwynnlillypad01.m2", + }, + }, + text = "elwynnlillypad01", + value = "elwynnlillypad01", + }, + { + fileId = "189760", + text = "elwynnmelon01.m2", + value = "elwynnmelon01.m2", + }, + { + children = { + { + fileId = "189761", + text = "elwynnmushroom01.m2", + value = "elwynnmushroom01.m2", + }, + }, + text = "elwynnmushroom01", + value = "elwynnmushroom01", + }, + { + children = { + { + fileId = "189763", + text = "elwynnpoppy1.m2", + value = "elwynnpoppy1.m2", + }, + }, + text = "elwynnpoppy1", + value = "elwynnpoppy1", + }, + { + children = { + { + fileId = "189765", + text = "elwynnpoppy2.m2", + value = "elwynnpoppy2.m2", + }, + }, + text = "elwynnpoppy2", + value = "elwynnpoppy2", + }, + { + children = { + { + fileId = "189767", + text = "elwynnreeds01.m2", + value = "elwynnreeds01.m2", + }, + }, + text = "elwynnreeds01", + value = "elwynnreeds01", + }, + { + children = { + { + fileId = "189768", + text = "elwynnrock1.m2", + value = "elwynnrock1.m2", + }, + }, + text = "elwynnrock1", + value = "elwynnrock1", + }, + { + children = { + { + fileId = "189770", + text = "elwynnrock2.m2", + value = "elwynnrock2.m2", + }, + }, + text = "elwynnrock2", + value = "elwynnrock2", + }, + { + children = { + { + fileId = "189772", + text = "elwynnseaweed01.m2", + value = "elwynnseaweed01.m2", + }, + }, + text = "elwynnseaweed01", + value = "elwynnseaweed01", + }, + { + children = { + { + fileId = "189774", + text = "elwynnshrub1.m2", + value = "elwynnshrub1.m2", + }, + }, + text = "elwynnshrub1", + value = "elwynnshrub1", + }, + { + children = { + { + fileId = "189777", + text = "elwynnthornbush01.m2", + value = "elwynnthornbush01.m2", + }, + }, + text = "elwynnthornbush01", + value = "elwynnthornbush01", + }, + { + children = { + { + fileId = "189778", + text = "elwynnthornbush02.m2", + value = "elwynnthornbush02.m2", + }, + }, + text = "elwynnthornbush02", + value = "elwynnthornbush02", + }, + { + children = { + { + fileId = "189779", + text = "elwynnvines01.m2", + value = "elwynnvines01.m2", + }, + }, + text = "elwynnvines01", + value = "elwynnvines01", + }, + { + children = { + { + fileId = "189781", + text = "elwynnvines02.m2", + value = "elwynnvines02.m2", + }, + }, + text = "elwynnvines02", + value = "elwynnvines02", + }, + { + children = { + { + fileId = "189784", + text = "elwynnvineyard01.m2", + value = "elwynnvineyard01.m2", + }, + }, + text = "elwynnvineyard", + value = "elwynnvineyard", + }, + { + children = { + { + fileId = "189788", + text = "elwynnwheat01.m2", + value = "elwynnwheat01.m2", + }, + }, + text = "elwynnwheat", + value = "elwynnwheat", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "189790", + text = "elwynnfencesimple.m2", + value = "elwynnfencesimple.m2", + }, + { + fileId = "189791", + text = "elwynnfencesimplepost.m2", + value = "elwynnfencesimplepost.m2", + }, + { + fileId = "189792", + text = "elwynnfencetop.m2", + value = "elwynnfencetop.m2", + }, + { + fileId = "189793", + text = "elwynnstonefence.m2", + value = "elwynnstonefence.m2", + }, + { + fileId = "189794", + text = "elwynnstonefencepost.m2", + value = "elwynnstonefencepost.m2", + }, + { + fileId = "189795", + text = "elwynnwoodfence01.m2", + value = "elwynnwoodfence01.m2", + }, + { + fileId = "189796", + text = "elwynnwoodpost01.m2", + value = "elwynnwoodpost01.m2", + }, + }, + text = "elwynnfences", + value = "elwynnfences", + }, + { + children = { + { + fileId = "189802", + text = "eyeofazora.m2", + value = "eyeofazora.m2", + }, + }, + text = "eyeofazora", + value = "eyeofazora", + }, + { + children = { + { + fileId = "189805", + text = "grapebucket01.m2", + value = "grapebucket01.m2", + }, + { + fileId = "189806", + text = "grapebucket02.m2", + value = "grapebucket02.m2", + }, + }, + text = "grapebuckets", + value = "grapebuckets", + }, + { + children = { + { + fileId = "189810", + text = "haystack01.m2", + value = "haystack01.m2", + }, + { + fileId = "189811", + text = "haystack02.m2", + value = "haystack02.m2", + }, + }, + text = "haystacks", + value = "haystacks", + }, + { + children = { + { + fileId = "189815", + text = "jar01.m2", + value = "jar01.m2", + }, + { + fileId = "189816", + text = "jar02.m2", + value = "jar02.m2", + }, + { + fileId = "189817", + text = "jar03.m2", + value = "jar03.m2", + }, + }, + text = "jars", + value = "jars", + }, + { + children = { + { + fileId = "189820", + text = "jug01.m2", + value = "jug01.m2", + }, + { + fileId = "189821", + text = "jug02.m2", + value = "jug02.m2", + }, + }, + text = "jugs", + value = "jugs", + }, + { + children = { + { + fileId = "189825", + text = "lamppost.m2", + value = "lamppost.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "189827", + text = "elwynnminecart.m2", + value = "elwynnminecart.m2", + }, + }, + text = "minecart", + value = "minecart", + }, + { + children = { + { + fileId = "189830", + text = "monumentrock.m2", + value = "monumentrock.m2", + }, + }, + text = "monumentrock", + value = "monumentrock", + }, + { + children = { + { + fileId = "189834", + text = "pick.m2", + value = "pick.m2", + }, + }, + text = "pick", + value = "pick", + }, + { + children = { + { + fileId = "189840", + text = "ruinedcatapult.m2", + value = "ruinedcatapult.m2", + }, + }, + text = "ruinedcatapult", + value = "ruinedcatapult", + }, + { + children = { + { + fileId = "189852", + text = "ruinedfountain.m2", + value = "ruinedfountain.m2", + }, + }, + text = "ruinedfountain", + value = "ruinedfountain", + }, + { + children = { + { + fileId = "189854", + text = "shovel.m2", + value = "shovel.m2", + }, + }, + text = "shovel", + value = "shovel", + }, + { + children = { + { + children = { + { + fileId = "189855", + text = "duskwooddirectionalsign.m2", + value = "duskwooddirectionalsign.m2", + }, + { + fileId = "189857", + text = "goldshiredirectionalsign.m2", + value = "goldshiredirectionalsign.m2", + }, + { + fileId = "189859", + text = "northshiredirectionalsign.m2", + value = "northshiredirectionalsign.m2", + }, + { + fileId = "189862", + text = "runestonedirectionalsign.m2", + value = "runestonedirectionalsign.m2", + }, + { + fileId = "189863", + text = "stormwinddirectionalsign.m2", + value = "stormwinddirectionalsign.m2", + }, + { + fileId = "189866", + text = "westfalldirectionalsign.m2", + value = "westfalldirectionalsign.m2", + }, + }, + text = "directional", + value = "directional", + }, + { + children = { + { + fileId = "189868", + text = "genericsmallsignpost01.m2", + value = "genericsmallsignpost01.m2", + }, + }, + text = "genericposts", + value = "genericposts", + }, + { + children = { + { + fileId = "189878", + text = "humanalchemistsign.m2", + value = "humanalchemistsign.m2", + }, + { + fileId = "189879", + text = "humanbaitandtacklesign.m2", + value = "humanbaitandtacklesign.m2", + }, + { + fileId = "189880", + text = "humanbanksign.m2", + value = "humanbanksign.m2", + }, + { + fileId = "189881", + text = "humanblacksmithsign.m2", + value = "humanblacksmithsign.m2", + }, + { + fileId = "189882", + text = "humanboathousesign.m2", + value = "humanboathousesign.m2", + }, + { + fileId = "189883", + text = "humaninnsign.m2", + value = "humaninnsign.m2", + }, + { + fileId = "189884", + text = "humaninnsignpost.m2", + value = "humaninnsignpost.m2", + }, + { + fileId = "189885", + text = "humanmagicshopsign.m2", + value = "humanmagicshopsign.m2", + }, + { + fileId = "189886", + text = "humantannersign.m2", + value = "humantannersign.m2", + }, + }, + text = "shop", + value = "shop", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "189893", + text = "battlegladeboneshumandark.m2", + value = "battlegladeboneshumandark.m2", + }, + { + fileId = "189894", + text = "battlegladebskeletonhumandark.m2", + value = "battlegladebskeletonhumandark.m2", + }, + { + fileId = "189896", + text = "battlegladeskullhumandark.m2", + value = "battlegladeskullhumandark.m2", + }, + { + fileId = "189898", + text = "battlegladespinehumandark.m2", + value = "battlegladespinehumandark.m2", + }, + }, + text = "skeleton", + value = "skeleton", + }, + { + children = { + { + fileId = "189904", + text = "smalldock.m2", + value = "smalldock.m2", + }, + }, + text = "smalldock", + value = "smalldock", + }, + { + children = { + { + fileId = "189906", + text = "spike.m2", + value = "spike.m2", + }, + }, + text = "spike", + value = "spike", + }, + { + children = { + { + fileId = "189908", + text = "lionstatue.m2", + value = "lionstatue.m2", + }, + }, + text = "statue", + value = "statue", + }, + { + children = { + { + fileId = "189910", + text = "stonepyre.m2", + value = "stonepyre.m2", + }, + }, + text = "stonepyre", + value = "stonepyre", + }, + { + children = { + { + children = { + { + fileId = "189914", + text = "roundtable.m2", + value = "roundtable.m2", + }, + }, + text = "roundtable", + value = "roundtable", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "189915", + text = "elwynnlog01.m2", + value = "elwynnlog01.m2", + }, + { + fileId = "189916", + text = "elwynnlog02.m2", + value = "elwynnlog02.m2", + }, + }, + text = "tree", + value = "tree", + }, + { + children = { + { + fileId = "189919", + text = "canopylesstree01.m2", + value = "canopylesstree01.m2", + }, + { + fileId = "189920", + text = "canopylesstree02.m2", + value = "canopylesstree02.m2", + }, + { + fileId = "189921", + text = "canopylesstree03.m2", + value = "canopylesstree03.m2", + }, + { + fileId = "189922", + text = "canopylesstree04.m2", + value = "canopylesstree04.m2", + }, + { + fileId = "189923", + text = "elwynnfirtree01.m2", + value = "elwynnfirtree01.m2", + }, + { + children = { + { + fileId = "189924", + text = "elwynnpine01.m2", + value = "elwynnpine01.m2", + }, + { + fileId = "189925", + text = "elwynnpine02.m2", + value = "elwynnpine02.m2", + }, + }, + text = "elwynntree01", + value = "elwynntree01", + }, + { + fileId = "189927", + text = "elwynntreecanopy01.m2", + value = "elwynntreecanopy01.m2", + }, + { + fileId = "189928", + text = "elwynntreecanopy02.m2", + value = "elwynntreecanopy02.m2", + }, + { + fileId = "189929", + text = "elwynntreecanopy03.m2", + value = "elwynntreecanopy03.m2", + }, + { + fileId = "189930", + text = "elwynntreecanopy04.m2", + value = "elwynntreecanopy04.m2", + }, + { + fileId = "189932", + text = "elwynntreemid01.m2", + value = "elwynntreemid01.m2", + }, + { + children = { + { + fileId = "189939", + text = "elwynntreestump01.m2", + value = "elwynntreestump01.m2", + }, + { + fileId = "189940", + text = "elwynntreestump02.m2", + value = "elwynntreestump02.m2", + }, + }, + text = "stumps", + value = "stumps", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189948", + text = "vineyard.m2", + value = "vineyard.m2", + }, + { + fileId = "189949", + text = "vineyardcube01.m2", + value = "vineyardcube01.m2", + }, + { + fileId = "189950", + text = "vineyardcube02.m2", + value = "vineyardcube02.m2", + }, + { + fileId = "189951", + text = "vineyardlowpoly.m2", + value = "vineyardlowpoly.m2", + }, + { + fileId = "189953", + text = "vineyardwired.m2", + value = "vineyardwired.m2", + }, + }, + text = "vineyard", + value = "vineyard", + }, + { + children = { + { + fileId = "189956", + text = "waterbasin.m2", + value = "waterbasin.m2", + }, + }, + text = "waterbasin", + value = "waterbasin", + }, + { + children = { + { + fileId = "189958", + text = "elwynnmediumwaterfall01.m2", + value = "elwynnmediumwaterfall01.m2", + }, + { + fileId = "189959", + text = "elwynntallwaterfall01.m2", + value = "elwynntallwaterfall01.m2", + }, + }, + text = "waterfall", + value = "waterfall", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "elwynn", + value = "elwynn", + }, + { + children = { + { + children = { + { + fileId = "189960", + text = "karazahn_bridgedoors.m2", + value = "karazahn_bridgedoors.m2", + }, + { + fileId = "189961", + text = "karazahn_chessroomdoors.m2", + value = "karazahn_chessroomdoors.m2", + }, + { + fileId = "189962", + text = "karazahn_cptnqrtzdoors.m2", + value = "karazahn_cptnqrtzdoors.m2", + }, + { + fileId = "189963", + text = "karazahn_diningdoors.m2", + value = "karazahn_diningdoors.m2", + }, + { + fileId = "189964", + text = "karazahn_diningruindoor.m2", + value = "karazahn_diningruindoor.m2", + }, + { + fileId = "189965", + text = "karazahn_gatedoors.m2", + value = "karazahn_gatedoors.m2", + }, + { + fileId = "189966", + text = "karazahn_secretdoor.m2", + value = "karazahn_secretdoor.m2", + }, + { + fileId = "189967", + text = "karazahn_secretdoor01.m2", + value = "karazahn_secretdoor01.m2", + }, + { + fileId = "189968", + text = "karazahn_secretroomdoor.m2", + value = "karazahn_secretroomdoor.m2", + }, + { + fileId = "189969", + text = "karazahn_silverrmdoor01.m2", + value = "karazahn_silverrmdoor01.m2", + }, + { + fileId = "189970", + text = "karazahn_silverrmdoor02.m2", + value = "karazahn_silverrmdoor02.m2", + }, + { + fileId = "189971", + text = "karazahn_stagedoor.m2", + value = "karazahn_stagedoor.m2", + }, + { + fileId = "189972", + text = "karazahnportcullis.m2", + value = "karazahnportcullis.m2", + }, + { + fileId = "189973", + text = "karazhan_observe_door.m2", + value = "karazhan_observe_door.m2", + }, + { + fileId = "189974", + text = "karazhan_red_curtain.m2", + value = "karazhan_red_curtain.m2", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189980", + text = "karazahnbarrel01.m2", + value = "karazahnbarrel01.m2", + }, + { + fileId = "189981", + text = "karazahnbarrel02.m2", + value = "karazahnbarrel02.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "189983", + text = "karazahnbonfire01.m2", + value = "karazahnbonfire01.m2", + }, + { + fileId = "189984", + text = "karazahnbonfire02.m2", + value = "karazahnbonfire02.m2", + }, + { + fileId = "189985", + text = "karazahnbonfireblue01.m2", + value = "karazahnbonfireblue01.m2", + }, + }, + text = "bonfire", + value = "bonfire", + }, + { + children = { + { + fileId = "189992", + text = "karazahnbookshelflarge.m2", + value = "karazahnbookshelflarge.m2", + }, + { + fileId = "189993", + text = "karazahnbookshelfsmall.m2", + value = "karazahnbookshelfsmall.m2", + }, + { + fileId = "189994", + text = "karazahnbookshelfxtralarge.m2", + value = "karazahnbookshelfxtralarge.m2", + }, + }, + text = "bookshelves", + value = "bookshelves", + }, + { + children = { + { + fileId = "189997", + text = "kn_brokencart.m2", + value = "kn_brokencart.m2", + }, + { + fileId = "189998", + text = "kn_brokencart02.m2", + value = "kn_brokencart02.m2", + }, + }, + text = "brokencart", + value = "brokencart", + }, + { + children = { + { + fileId = "190000", + text = "booksonfire.m2", + value = "booksonfire.m2", + }, + }, + text = "burningbooks", + value = "burningbooks", + }, + { + children = { + { + fileId = "190006", + text = "karazanchandelier_01.m2", + value = "karazanchandelier_01.m2", + }, + { + fileId = "190007", + text = "karazanchandelier_02.m2", + value = "karazanchandelier_02.m2", + }, + { + fileId = "190008", + text = "karazanchandelier_03.m2", + value = "karazanchandelier_03.m2", + }, + { + fileId = "190009", + text = "karazanchandelier_03_broken.m2", + value = "karazanchandelier_03_broken.m2", + }, + }, + text = "chandeliers", + value = "chandeliers", + }, + { + children = { + { + fileId = "190012", + text = "karazahncrate01.m2", + value = "karazahncrate01.m2", + }, + { + fileId = "190013", + text = "karazahncrate02.m2", + value = "karazahncrate02.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "190015", + text = "kn_grainsack01.m2", + value = "kn_grainsack01.m2", + }, + { + fileId = "190016", + text = "kn_grainsack02.m2", + value = "kn_grainsack02.m2", + }, + { + fileId = "190017", + text = "kn_grainsack03.m2", + value = "kn_grainsack03.m2", + }, + { + fileId = "190018", + text = "kn_spilledsack01.m2", + value = "kn_spilledsack01.m2", + }, + }, + text = "grainsacks", + value = "grainsacks", + }, + { + children = { + { + fileId = "190019", + text = "karazahnweb01.m2", + value = "karazahnweb01.m2", + }, + { + fileId = "190020", + text = "karazahnweb02.m2", + value = "karazahnweb02.m2", + }, + { + fileId = "190021", + text = "karazahnweb03.m2", + value = "karazahnweb03.m2", + }, + }, + text = "karazahnwebs", + value = "karazahnwebs", + }, + { + children = { + { + fileId = "190022", + text = "karazahn_owlstatue.m2", + value = "karazahn_owlstatue.m2", + }, + }, + text = "owlstatue", + value = "owlstatue", + }, + { + children = { + { + fileId = "190024", + text = "karazahnpedestals01.m2", + value = "karazahnpedestals01.m2", + }, + { + fileId = "190025", + text = "karazahnpedestals02.m2", + value = "karazahnpedestals02.m2", + }, + }, + text = "pedestals", + value = "pedestals", + }, + { + children = { + { + fileId = "190026", + text = "karazahn_rubble_floating.m2", + value = "karazahn_rubble_floating.m2", + }, + { + fileId = "190027", + text = "karazahnrockrubble01.m2", + value = "karazahnrockrubble01.m2", + }, + { + fileId = "190028", + text = "karazahnrockrubble02.m2", + value = "karazahnrockrubble02.m2", + }, + }, + text = "rubble", + value = "rubble", + }, + { + children = { + { + fileId = "190030", + text = "karazahnsconce01.m2", + value = "karazahnsconce01.m2", + }, + { + fileId = "190031", + text = "karazahnsconce02.m2", + value = "karazahnsconce02.m2", + }, + { + fileId = "190032", + text = "karazahnsconce03.m2", + value = "karazahnsconce03.m2", + }, + { + fileId = "190033", + text = "karazahnsconce04.m2", + value = "karazahnsconce04.m2", + }, + { + fileId = "190034", + text = "karazahnsconce05.m2", + value = "karazahnsconce05.m2", + }, + { + fileId = "190035", + text = "karazahnsconce06.m2", + value = "karazahnsconce06.m2", + }, + { + fileId = "190036", + text = "karazahnsconce07.m2", + value = "karazahnsconce07.m2", + }, + }, + text = "sconces", + value = "sconces", + }, + { + children = { + { + fileId = "190039", + text = "karazahnstarlab.m2", + value = "karazahnstarlab.m2", + }, + }, + text = "starlab", + value = "starlab", + }, + { + children = { + { + fileId = "190041", + text = "karazahntablebig.m2", + value = "karazahntablebig.m2", + }, + { + fileId = "190043", + text = "karazahntablesmall.m2", + value = "karazahntablesmall.m2", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "190044", + text = "karazantapestry01.m2", + value = "karazantapestry01.m2", + }, + { + fileId = "190045", + text = "karazantapestry02.m2", + value = "karazantapestry02.m2", + }, + }, + text = "tapestries", + value = "tapestries", + }, + { + children = { + { + fileId = "190056", + text = "karazahn_rj_balcony.m2", + value = "karazahn_rj_balcony.m2", + }, + { + fileId = "190057", + text = "karazahn_rj_moon.m2", + value = "karazahn_rj_moon.m2", + }, + { + fileId = "190058", + text = "karazahn_rj_stars.m2", + value = "karazahn_rj_stars.m2", + }, + { + fileId = "190059", + text = "karazahn_rrh_forest.m2", + value = "karazahn_rrh_forest.m2", + }, + { + fileId = "190060", + text = "karazahn_rrh_house.m2", + value = "karazahn_rrh_house.m2", + }, + { + fileId = "190061", + text = "karazahn_rrh_tree.m2", + value = "karazahn_rrh_tree.m2", + }, + { + fileId = "190062", + text = "karazahn_wo_hay.m2", + value = "karazahn_wo_hay.m2", + }, + { + fileId = "190063", + text = "karazan_wo_brickroad.m2", + value = "karazan_wo_brickroad.m2", + }, + }, + text = "theater", + value = "theater", + }, + { + children = { + { + fileId = "190064", + text = "karazahnthrone01.m2", + value = "karazahnthrone01.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "2198647", + text = "karazahndiningrays.m2", + value = "karazahndiningrays.m2", + }, + }, + text = "volumetriclights", + value = "volumetriclights", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "karazahn", + value = "karazahn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190069", + text = "pvp_bridge_parts01.m2", + value = "pvp_bridge_parts01.m2", + }, + { + fileId = "190070", + text = "pvp_bridge_parts02.m2", + value = "pvp_bridge_parts02.m2", + }, + { + fileId = "190071", + text = "pvp_bridge_parts03.m2", + value = "pvp_bridge_parts03.m2", + }, + { + fileId = "190072", + text = "pvp_bridge_parts04.m2", + value = "pvp_bridge_parts04.m2", + }, + { + fileId = "190073", + text = "pvp_bridge_parts05.m2", + value = "pvp_bridge_parts05.m2", + }, + }, + text = "bridgeruins", + value = "bridgeruins", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "pvp", + value = "pvp", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "242695", + text = "redridge_barn_closed.m2", + value = "redridge_barn_closed.m2", + }, + }, + text = "barn", + value = "barn", + }, + { + children = { + { + fileId = "190076", + text = "redridgebridgebrick01.m2", + value = "redridgebridgebrick01.m2", + }, + { + fileId = "190077", + text = "redridgebridgebrick02.m2", + value = "redridgebridgebrick02.m2", + }, + { + fileId = "190078", + text = "redridgebridgebrick03.m2", + value = "redridgebridgebrick03.m2", + }, + }, + text = "bricks", + value = "bricks", + }, + { + children = { + { + fileId = "190080", + text = "redridgebush01.m2", + value = "redridgebush01.m2", + }, + { + fileId = "190081", + text = "redridgebush02.m2", + value = "redridgebush02.m2", + }, + { + fileId = "190082", + text = "redridgebush03.m2", + value = "redridgebush03.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + children = { + { + fileId = "190084", + text = "catailpatch01.m2", + value = "catailpatch01.m2", + }, + }, + text = "catailpatch", + value = "catailpatch", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "190087", + text = "redridgedocksbeam01.m2", + value = "redridgedocksbeam01.m2", + }, + { + fileId = "190088", + text = "redridgedocksboardwalk01.m2", + value = "redridgedocksboardwalk01.m2", + }, + { + fileId = "190089", + text = "redridgedocksboardwalk02.m2", + value = "redridgedocksboardwalk02.m2", + }, + { + fileId = "190090", + text = "redridgedocksboardwalk03.m2", + value = "redridgedocksboardwalk03.m2", + }, + { + fileId = "190091", + text = "redridgedocksplank01.m2", + value = "redridgedocksplank01.m2", + }, + { + fileId = "190093", + text = "redridgedockspylon01.m2", + value = "redridgedockspylon01.m2", + }, + }, + text = "dockpieces", + value = "dockpieces", + }, + { + children = { + { + fileId = "190095", + text = "redridgedocks01.m2", + value = "redridgedocks01.m2", + }, + { + fileId = "190096", + text = "redridgedocks03.m2", + value = "redridgedocks03.m2", + }, + }, + text = "docks", + value = "docks", + }, + { + children = { + { + fileId = "242696", + text = "redridge_human_farm_closed.m2", + value = "redridge_human_farm_closed.m2", + }, + }, + text = "farm", + value = "farm", + }, + { + children = { + { + fileId = "242697", + text = "redridge_lumbermill.m2", + value = "redridge_lumbermill.m2", + }, + }, + text = "lumbermill", + value = "lumbermill", + }, + { + children = { + { + fileId = "190097", + text = "insectmound.m2", + value = "insectmound.m2", + }, + }, + text = "misc", + value = "misc", + }, + { + children = { + { + fileId = "190101", + text = "redridgerock01.m2", + value = "redridgerock01.m2", + }, + { + fileId = "190102", + text = "redridgerock02.m2", + value = "redridgerock02.m2", + }, + { + fileId = "190103", + text = "redridgerock03.m2", + value = "redridgerock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190104", + text = "rowboat01.m2", + value = "rowboat01.m2", + }, + }, + text = "rowboat", + value = "rowboat", + }, + { + children = { + { + fileId = "190106", + text = "battlegladewoodspikeslongrow.m2", + value = "battlegladewoodspikeslongrow.m2", + }, + { + fileId = "190107", + text = "battlegladewoodspikesshortrow.m2", + value = "battlegladewoodspikesshortrow.m2", + }, + }, + text = "spikewall", + value = "spikewall", + }, + { + children = { + { + fileId = "242698", + text = "redridge_stable.m2", + value = "redridge_stable.m2", + }, + }, + text = "stable", + value = "stable", + }, + { + children = { + { + fileId = "190108", + text = "redridgestump02.m2", + value = "redridgestump02.m2", + }, + }, + text = "stumps", + value = "stumps", + }, + { + children = { + { + fileId = "190114", + text = "redridgefallentree01.m2", + value = "redridgefallentree01.m2", + }, + { + fileId = "190115", + text = "redridgefallentree01moss.m2", + value = "redridgefallentree01moss.m2", + }, + { + fileId = "190116", + text = "redridgefallentree02.m2", + value = "redridgefallentree02.m2", + }, + { + fileId = "190117", + text = "redridgefallentree02moss.m2", + value = "redridgefallentree02moss.m2", + }, + { + fileId = "190118", + text = "redridgefallentree03.m2", + value = "redridgefallentree03.m2", + }, + { + fileId = "190119", + text = "redridgetree01.m2", + value = "redridgetree01.m2", + }, + { + fileId = "190120", + text = "redridgetree02.m2", + value = "redridgetree02.m2", + }, + { + fileId = "190121", + text = "redridgetreecanopy01.m2", + value = "redridgetreecanopy01.m2", + }, + { + fileId = "190122", + text = "redridgetreecanopy02.m2", + value = "redridgetreecanopy02.m2", + }, + { + fileId = "190123", + text = "redridgetreecanopy03.m2", + value = "redridgetreecanopy03.m2", + }, + { + fileId = "190124", + text = "redridgetreecanopy04.m2", + value = "redridgetreecanopy04.m2", + }, + { + fileId = "190126", + text = "redridgetreemid01.m2", + value = "redridgetreemid01.m2", + }, + { + fileId = "190128", + text = "redridgetreestump01.m2", + value = "redridgetreestump01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "redridge", + value = "redridge", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190141", + text = "cage01.m2", + value = "cage01.m2", + }, + { + fileId = "190142", + text = "cage02.m2", + value = "cage02.m2", + }, + { + fileId = "190143", + text = "cage03.m2", + value = "cage03.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "190153", + text = "holdingpen.m2", + value = "holdingpen.m2", + }, + }, + text = "holdingpen", + value = "holdingpen", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190160", + text = "crashzeppelin.m2", + value = "crashzeppelin.m2", + }, + }, + text = "crashzeppelin", + value = "crashzeppelin", + }, + { + children = { + { + fileId = "190165", + text = "oilrig.m2", + value = "oilrig.m2", + }, + }, + text = "oilrig", + value = "oilrig", + }, + { + children = { + { + fileId = "190169", + text = "runestonemoss_01.m2", + value = "runestonemoss_01.m2", + }, + }, + text = "runestonemoss_01", + value = "runestonemoss_01", + }, + { + children = { + { + fileId = "190175", + text = "trollwatchtower.m2", + value = "trollwatchtower.m2", + }, + }, + text = "trollwatchtower", + value = "trollwatchtower", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190178", + text = "aquaductstone_corner1.m2", + value = "aquaductstone_corner1.m2", + }, + { + fileId = "190179", + text = "aquaductstone_corner2.m2", + value = "aquaductstone_corner2.m2", + }, + { + fileId = "190180", + text = "aquaductstone_longpillar.m2", + value = "aquaductstone_longpillar.m2", + }, + { + fileId = "190181", + text = "aquaductstone_pillar1.m2", + value = "aquaductstone_pillar1.m2", + }, + { + fileId = "190182", + text = "aquaductstone_pillar2.m2", + value = "aquaductstone_pillar2.m2", + }, + { + fileId = "190183", + text = "aquaductstone_pillar3.m2", + value = "aquaductstone_pillar3.m2", + }, + { + fileId = "190184", + text = "aquaductstone_short.m2", + value = "aquaductstone_short.m2", + }, + { + fileId = "190185", + text = "aquaductstone_straight.m2", + value = "aquaductstone_straight.m2", + }, + { + fileId = "190186", + text = "aquaductstone_straight6.m2", + value = "aquaductstone_straight6.m2", + }, + }, + text = "aquaduct", + value = "aquaduct", + }, + { + children = { + { + fileId = "190192", + text = "jaguarstatue.m2", + value = "jaguarstatue.m2", + }, + { + fileId = "190193", + text = "ropebridge.m2", + value = "ropebridge.m2", + }, + { + fileId = "190194", + text = "stonebridgelong.m2", + value = "stonebridgelong.m2", + }, + { + fileId = "190195", + text = "stonebridgeshort.m2", + value = "stonebridgeshort.m2", + }, + { + fileId = "190196", + text = "stranglechasmbridge.m2", + value = "stranglechasmbridge.m2", + }, + }, + text = "bridge", + value = "bridge", + }, + { + children = { + { + fileId = "190202", + text = "crystallizedhuman01.m2", + value = "crystallizedhuman01.m2", + }, + { + fileId = "190203", + text = "crystallizedhuman02.m2", + value = "crystallizedhuman02.m2", + }, + { + fileId = "190204", + text = "crystallizedhuman03.m2", + value = "crystallizedhuman03.m2", + }, + { + fileId = "190205", + text = "crystallizedtroll01.m2", + value = "crystallizedtroll01.m2", + }, + { + fileId = "190206", + text = "crystallizedtroll02.m2", + value = "crystallizedtroll02.m2", + }, + { + fileId = "190207", + text = "crystallizedtroll03.m2", + value = "crystallizedtroll03.m2", + }, + }, + text = "crystalcreatures", + value = "crystalcreatures", + }, + { + children = { + { + fileId = "190223", + text = "strangleplant06.m2", + value = "strangleplant06.m2", + }, + { + fileId = "190224", + text = "strangleplant07.m2", + value = "strangleplant07.m2", + }, + { + fileId = "190225", + text = "strangleplant08.m2", + value = "strangleplant08.m2", + }, + { + fileId = "190226", + text = "strangleplant09.m2", + value = "strangleplant09.m2", + }, + { + fileId = "190227", + text = "strangleplant10.m2", + value = "strangleplant10.m2", + }, + { + fileId = "190228", + text = "stranglethornfern01.m2", + value = "stranglethornfern01.m2", + }, + { + fileId = "190229", + text = "stranglethornfern02.m2", + value = "stranglethornfern02.m2", + }, + { + fileId = "190230", + text = "stranglethornfern03.m2", + value = "stranglethornfern03.m2", + }, + { + fileId = "190231", + text = "stranglethornfern04.m2", + value = "stranglethornfern04.m2", + }, + { + fileId = "190232", + text = "stranglethornfern05.m2", + value = "stranglethornfern05.m2", + }, + { + fileId = "190233", + text = "stranglethornfern06.m2", + value = "stranglethornfern06.m2", + }, + { + fileId = "190235", + text = "stranglethornplant01.m2", + value = "stranglethornplant01.m2", + }, + { + fileId = "190237", + text = "stranglethornplant02.m2", + value = "stranglethornplant02.m2", + }, + { + fileId = "190238", + text = "stranglethornplant03.m2", + value = "stranglethornplant03.m2", + }, + { + fileId = "190239", + text = "stranglethornplant04.m2", + value = "stranglethornplant04.m2", + }, + { + fileId = "190241", + text = "stranglethornplant05.m2", + value = "stranglethornplant05.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "190246", + text = "diamondminewalllantern.m2", + value = "diamondminewalllantern.m2", + }, + }, + text = "diamondminewalllantern", + value = "diamondminewalllantern", + }, + { + children = { + { + fileId = "190252", + text = "gemminecar01.m2", + value = "gemminecar01.m2", + }, + }, + text = "gemminecar01", + value = "gemminecar01", + }, + { + children = { + { + fileId = "190256", + text = "gemminecar02.m2", + value = "gemminecar02.m2", + }, + { + fileId = "190257", + text = "gemminecar03.m2", + value = "gemminecar03.m2", + }, + }, + text = "gemminecar02", + value = "gemminecar02", + }, + { + children = { + { + fileId = "190260", + text = "holyspringwell.m2", + value = "holyspringwell.m2", + }, + }, + text = "holyspringwell", + value = "holyspringwell", + }, + { + children = { + { + fileId = "322637", + text = "mine_cart_anim01.m2", + value = "mine_cart_anim01.m2", + }, + }, + text = "mine_cart_anim01", + value = "mine_cart_anim01", + }, + { + children = { + { + fileId = "190262", + text = "overgrowth02.m2", + value = "overgrowth02.m2", + }, + }, + text = "overgrowth02", + value = "overgrowth02", + }, + { + children = { + { + fileId = "190263", + text = "bootybaypost.m2", + value = "bootybaypost.m2", + }, + }, + text = "post", + value = "post", + }, + { + children = { + { + fileId = "190264", + text = "stranglethorncliffrock01.m2", + value = "stranglethorncliffrock01.m2", + }, + { + fileId = "190266", + text = "stranglethorncliffrock02.m2", + value = "stranglethorncliffrock02.m2", + }, + { + fileId = "190267", + text = "stranglethorncliffrock03.m2", + value = "stranglethorncliffrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190271", + text = "stranglethornruins01.m2", + value = "stranglethornruins01.m2", + }, + { + fileId = "190272", + text = "stranglethornruins02.m2", + value = "stranglethornruins02.m2", + }, + { + fileId = "190273", + text = "stranglethornruins03.m2", + value = "stranglethornruins03.m2", + }, + { + fileId = "190274", + text = "stranglethornruins04.m2", + value = "stranglethornruins04.m2", + }, + { + fileId = "190275", + text = "stranglethornruins05.m2", + value = "stranglethornruins05.m2", + }, + { + fileId = "190276", + text = "stranglethornruins06.m2", + value = "stranglethornruins06.m2", + }, + { + fileId = "190277", + text = "stranglethornruins07.m2", + value = "stranglethornruins07.m2", + }, + { + fileId = "190278", + text = "stranglethornruins08.m2", + value = "stranglethornruins08.m2", + }, + { + fileId = "190279", + text = "stranglethornruins09.m2", + value = "stranglethornruins09.m2", + }, + { + fileId = "190280", + text = "stranglethornruins10.m2", + value = "stranglethornruins10.m2", + }, + { + fileId = "190281", + text = "stranglethornruins11.m2", + value = "stranglethornruins11.m2", + }, + { + fileId = "190282", + text = "stranglethornruins12.m2", + value = "stranglethornruins12.m2", + }, + { + fileId = "190283", + text = "stranglethornruins13.m2", + value = "stranglethornruins13.m2", + }, + { + fileId = "190284", + text = "stranglethornruins14.m2", + value = "stranglethornruins14.m2", + }, + { + fileId = "190285", + text = "stranglethornruins15.m2", + value = "stranglethornruins15.m2", + }, + { + fileId = "190286", + text = "stranglethornruins16.m2", + value = "stranglethornruins16.m2", + }, + { + fileId = "190287", + text = "stranglethornruins17.m2", + value = "stranglethornruins17.m2", + }, + { + fileId = "190288", + text = "stranglethornruins18.m2", + value = "stranglethornruins18.m2", + }, + { + fileId = "190289", + text = "stranglethornruins19.m2", + value = "stranglethornruins19.m2", + }, + { + fileId = "190290", + text = "stranglethornruins20.m2", + value = "stranglethornruins20.m2", + }, + { + fileId = "190291", + text = "stranglethornruins21.m2", + value = "stranglethornruins21.m2", + }, + { + fileId = "190292", + text = "stranglethornruins_pylon.m2", + value = "stranglethornruins_pylon.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "190300", + text = "sack01_01.m2", + value = "sack01_01.m2", + }, + }, + text = "sack01_01", + value = "sack01_01", + }, + { + children = { + { + fileId = "438016", + text = "bootybay_seaweed_01.m2", + value = "bootybay_seaweed_01.m2", + }, + { + fileId = "438017", + text = "bootybay_seaweed_02.m2", + value = "bootybay_seaweed_02.m2", + }, + { + fileId = "438018", + text = "bootybay_seaweed_03.m2", + value = "bootybay_seaweed_03.m2", + }, + { + fileId = "438019", + text = "bootybay_seaweed_04.m2", + value = "bootybay_seaweed_04.m2", + }, + { + fileId = "438020", + text = "bootybay_seaweed_05.m2", + value = "bootybay_seaweed_05.m2", + }, + }, + text = "seaweed", + value = "seaweed", + }, + { + children = { + { + fileId = "190304", + text = "serpentstatue02.m2", + value = "serpentstatue02.m2", + }, + }, + text = "serpentstatue02", + value = "serpentstatue02", + }, + { + children = { + { + fileId = "190308", + text = "strangledeadtree01.m2", + value = "strangledeadtree01.m2", + }, + }, + text = "strangledeadtrees", + value = "strangledeadtrees", + }, + { + children = { + { + fileId = "190311", + text = "bootybaytree01.m2", + value = "bootybaytree01.m2", + }, + { + fileId = "190312", + text = "strangledeadtreenovine.m2", + value = "strangledeadtreenovine.m2", + }, + { + fileId = "190313", + text = "stranglethornroot01.m2", + value = "stranglethornroot01.m2", + }, + { + fileId = "190314", + text = "stranglethornroot02.m2", + value = "stranglethornroot02.m2", + }, + { + fileId = "190315", + text = "stranglethornroot03.m2", + value = "stranglethornroot03.m2", + }, + { + children = { + { + fileId = "190316", + text = "stranglethorntree01.m2", + value = "stranglethorntree01.m2", + }, + }, + text = "stranglethorntree01", + value = "stranglethorntree01", + }, + { + children = { + { + fileId = "190319", + text = "stranglethorntree02.m2", + value = "stranglethorntree02.m2", + }, + }, + text = "stranglethorntree02", + value = "stranglethorntree02", + }, + { + children = { + { + fileId = "190322", + text = "stranglethorntree04.m2", + value = "stranglethorntree04.m2", + }, + }, + text = "stranglethorntree04", + value = "stranglethorntree04", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "190331", + text = "trolldrumsoundobj.m2", + value = "trolldrumsoundobj.m2", + }, + { + fileId = "190332", + text = "trolldungeondrum03.m2", + value = "trolldungeondrum03.m2", + }, + { + fileId = "517115", + text = "trolldungeondrum03_nocol.m2", + value = "trolldungeondrum03_nocol.m2", + }, + { + fileId = "190333", + text = "trollruinsdrum01.m2", + value = "trollruinsdrum01.m2", + }, + }, + text = "trolldrum", + value = "trolldrum", + }, + { + children = { + { + fileId = "190337", + text = "trolldungeonfountain.m2", + value = "trolldungeonfountain.m2", + }, + }, + text = "trolldungeonfountain", + value = "trolldungeonfountain", + }, + { + children = { + { + fileId = "190341", + text = "trolldungeonpottery01.m2", + value = "trolldungeonpottery01.m2", + }, + { + fileId = "190342", + text = "trolldungeonpottery02.m2", + value = "trolldungeonpottery02.m2", + }, + { + fileId = "190343", + text = "trolldungeonpottery03.m2", + value = "trolldungeonpottery03.m2", + }, + }, + text = "trolldungeonpottery", + value = "trolldungeonpottery", + }, + { + children = { + { + fileId = "190345", + text = "trolldungeonring.m2", + value = "trolldungeonring.m2", + }, + }, + text = "trolldungeonring", + value = "trolldungeonring", + }, + { + fileId = "2198507", + text = "trolldungeonring.m2", + value = "trolldungeonring.m2", + }, + { + children = { + { + fileId = "190347", + text = "trolldungeonsacks.m2", + value = "trolldungeonsacks.m2", + }, + }, + text = "trolldungeonsacks", + value = "trolldungeonsacks", + }, + { + children = { + { + fileId = "190348", + text = "trolldungeonserpentstatue.m2", + value = "trolldungeonserpentstatue.m2", + }, + }, + text = "trolldungeonserpentstatue", + value = "trolldungeonserpentstatue", + }, + { + children = { + { + fileId = "190353", + text = "trollruinsgong03.m2", + value = "trollruinsgong03.m2", + }, + }, + text = "trollruinsgong", + value = "trollruinsgong", + }, + { + children = { + { + fileId = "190354", + text = "stranglethorntikihead.m2", + value = "stranglethorntikihead.m2", + }, + { + fileId = "190358", + text = "trollshrine.m2", + value = "trollshrine.m2", + }, + }, + text = "trollshrine", + value = "trollshrine", + }, + { + children = { + { + fileId = "422618", + text = "strangle_giantwaterfall01.m2", + value = "strangle_giantwaterfall01.m2", + }, + { + fileId = "190361", + text = "stranglethornwaterfall01.m2", + value = "stranglethornwaterfall01.m2", + }, + }, + text = "waterfall", + value = "waterfall", + }, + { + children = { + { + fileId = "418790", + text = "strangle_whirlpool01.m2", + value = "strangle_whirlpool01.m2", + }, + }, + text = "whirlpools", + value = "whirlpools", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "stranglethorn", + value = "stranglethorn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190363", + text = "serpentaltar.m2", + value = "serpentaltar.m2", + }, + }, + text = "serpentaltar", + value = "serpentaltar", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "sunkentemple", + value = "sunkentemple", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190364", + text = "runestonecrud_01.m2", + value = "runestonecrud_01.m2", + }, + }, + text = "runestonecrud_01", + value = "runestonecrud_01", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190375", + text = "swampofsorrowlilypad01.m2", + value = "swampofsorrowlilypad01.m2", + }, + { + fileId = "190376", + text = "swampofsorrowlilypad02.m2", + value = "swampofsorrowlilypad02.m2", + }, + { + fileId = "190377", + text = "swampplant03.m2", + value = "swampplant03.m2", + }, + { + fileId = "190378", + text = "swampplant04.m2", + value = "swampplant04.m2", + }, + { + fileId = "190379", + text = "swampplant05.m2", + value = "swampplant05.m2", + }, + { + fileId = "190380", + text = "swampsorrowplant01.m2", + value = "swampsorrowplant01.m2", + }, + { + fileId = "190381", + text = "swampsorrowplant02.m2", + value = "swampsorrowplant02.m2", + }, + { + fileId = "190382", + text = "swampsorrowroot01.m2", + value = "swampsorrowroot01.m2", + }, + { + fileId = "190383", + text = "swampsorrowroot02.m2", + value = "swampsorrowroot02.m2", + }, + { + fileId = "190384", + text = "swampsorrowroot03.m2", + value = "swampsorrowroot03.m2", + }, + }, + text = "plants", + value = "plants", + }, + { + children = { + { + fileId = "190388", + text = "swampsorrowrock01.m2", + value = "swampsorrowrock01.m2", + }, + { + fileId = "190389", + text = "swampsorrowrock02.m2", + value = "swampsorrowrock02.m2", + }, + { + fileId = "190390", + text = "swampsorrowrock03.m2", + value = "swampsorrowrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190393", + text = "swampbeastbone01.m2", + value = "swampbeastbone01.m2", + }, + }, + text = "swampbeastbones", + value = "swampbeastbones", + }, + { + children = { + { + fileId = "190398", + text = "swampboat01.m2", + value = "swampboat01.m2", + }, + }, + text = "swampboats", + value = "swampboats", + }, + { + children = { + { + fileId = "190400", + text = "swampskulls01.m2", + value = "swampskulls01.m2", + }, + { + fileId = "190401", + text = "swampskulls02.m2", + value = "swampskulls02.m2", + }, + }, + text = "swampskulls", + value = "swampskulls", + }, + { + children = { + { + fileId = "190404", + text = "swampsnakestatue01.m2", + value = "swampsnakestatue01.m2", + }, + }, + text = "swampsnakestatue", + value = "swampsnakestatue", + }, + { + children = { + { + fileId = "190405", + text = "swampwagon01.m2", + value = "swampwagon01.m2", + }, + }, + text = "swampwagon", + value = "swampwagon", + }, + { + children = { + { + fileId = "190408", + text = "losttreehuts01.m2", + value = "losttreehuts01.m2", + }, + { + fileId = "190409", + text = "losttreehuts02.m2", + value = "losttreehuts02.m2", + }, + { + fileId = "190410", + text = "losttreehuts03.m2", + value = "losttreehuts03.m2", + }, + }, + text = "treehuts", + value = "treehuts", + }, + { + children = { + { + fileId = "368373", + text = "swamptreeblowup01.m2", + value = "swamptreeblowup01.m2", + }, + { + fileId = "368374", + text = "swamptreebroken01.m2", + value = "swamptreebroken01.m2", + }, + { + fileId = "368375", + text = "swamptreebroken02.m2", + value = "swamptreebroken02.m2", + }, + { + fileId = "368377", + text = "swamptreeburned01.m2", + value = "swamptreeburned01.m2", + }, + { + fileId = "368378", + text = "swamptreeburned02.m2", + value = "swamptreeburned02.m2", + }, + { + fileId = "368379", + text = "swamptreechopped01.m2", + value = "swamptreechopped01.m2", + }, + { + fileId = "368380", + text = "swamptreechopped02.m2", + value = "swamptreechopped02.m2", + }, + { + fileId = "190411", + text = "swamptreelog01.m2", + value = "swamptreelog01.m2", + }, + { + fileId = "190412", + text = "swamptreelog02.m2", + value = "swamptreelog02.m2", + }, + { + fileId = "190413", + text = "swamptreelog03.m2", + value = "swamptreelog03.m2", + }, + { + fileId = "190414", + text = "swamptreelog04.m2", + value = "swamptreelog04.m2", + }, + }, + text = "treelogs", + value = "treelogs", + }, + { + children = { + { + fileId = "190418", + text = "swampsorrowcanopytree01.m2", + value = "swampsorrowcanopytree01.m2", + }, + { + fileId = "190419", + text = "swampsorrowcanopytree02.m2", + value = "swampsorrowcanopytree02.m2", + }, + { + fileId = "190420", + text = "swampsorrowcanopytree03.m2", + value = "swampsorrowcanopytree03.m2", + }, + { + fileId = "190421", + text = "swampsorrowcanopytree04.m2", + value = "swampsorrowcanopytree04.m2", + }, + { + fileId = "190422", + text = "swampsorrowcanopytree05.m2", + value = "swampsorrowcanopytree05.m2", + }, + { + fileId = "190423", + text = "swampsorrowcanopytree06.m2", + value = "swampsorrowcanopytree06.m2", + }, + { + fileId = "367632", + text = "swampsorrowstump01.m2", + value = "swampsorrowstump01.m2", + }, + { + fileId = "367633", + text = "swampsorrowstump02.m2", + value = "swampsorrowstump02.m2", + }, + { + fileId = "367634", + text = "swampsorrowstump03.m2", + value = "swampsorrowstump03.m2", + }, + { + fileId = "367635", + text = "swampsorrowstump04.m2", + value = "swampsorrowstump04.m2", + }, + { + fileId = "190424", + text = "swampsorrowtree01.m2", + value = "swampsorrowtree01.m2", + }, + { + fileId = "190425", + text = "swampsorrowtree02.m2", + value = "swampsorrowtree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "190428", + text = "swamphangingvines01.m2", + value = "swamphangingvines01.m2", + }, + { + fileId = "190429", + text = "swamphangingvines02.m2", + value = "swamphangingvines02.m2", + }, + }, + text = "vines", + value = "vines", + }, + { + children = { + { + fileId = "190430", + text = "waterhut01.m2", + value = "waterhut01.m2", + }, + { + fileId = "190431", + text = "waterhut02.m2", + value = "waterhut02.m2", + }, + }, + text = "waterhuts", + value = "waterhuts", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "swamposorrow", + value = "swamposorrow", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190434", + text = "blastedlandsblastedcow.m2", + value = "blastedlandsblastedcow.m2", + }, + { + fileId = "190435", + text = "blastedlandsblastedmule.m2", + value = "blastedlandsblastedmule.m2", + }, + { + fileId = "190436", + text = "blastedlandsbone01.m2", + value = "blastedlandsbone01.m2", + }, + { + fileId = "190437", + text = "blastedlandsbonepile02.m2", + value = "blastedlandsbonepile02.m2", + }, + { + fileId = "190438", + text = "blastedlandsbonepile03.m2", + value = "blastedlandsbonepile03.m2", + }, + { + fileId = "190439", + text = "blastedlandsskull01.m2", + value = "blastedlandsskull01.m2", + }, + { + fileId = "190440", + text = "blastedlandsskull02.m2", + value = "blastedlandsskull02.m2", + }, + { + fileId = "190441", + text = "blastedlandsspine01.m2", + value = "blastedlandsspine01.m2", + }, + }, + text = "bones", + value = "bones", + }, + { + children = { + { + fileId = "190444", + text = "blastedlandsbrokencolumn01.m2", + value = "blastedlandsbrokencolumn01.m2", + }, + { + fileId = "190445", + text = "blastedlandsbrokencolumn02.m2", + value = "blastedlandsbrokencolumn02.m2", + }, + }, + text = "column", + value = "column", + }, + { + children = { + { + fileId = "190447", + text = "blastedlandsrock01.m2", + value = "blastedlandsrock01.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "405451", + text = "blastedlands_dwellingwater_01.m2", + value = "blastedlands_dwellingwater_01.m2", + }, + }, + text = "dwelling", + value = "dwelling", + }, + { + children = { + { + fileId = "190450", + text = "blastedlandsportalrock01.m2", + value = "blastedlandsportalrock01.m2", + }, + { + fileId = "190451", + text = "blastedlandsportalrock02.m2", + value = "blastedlandsportalrock02.m2", + }, + { + fileId = "190452", + text = "blastedlandsportalrock03.m2", + value = "blastedlandsportalrock03.m2", + }, + { + fileId = "190453", + text = "blastedlandsrock02.m2", + value = "blastedlandsrock02.m2", + }, + { + fileId = "190454", + text = "blastedlandsrock03.m2", + value = "blastedlandsrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190456", + text = "blastedlandsroot01.m2", + value = "blastedlandsroot01.m2", + }, + { + fileId = "190457", + text = "blastedlandsroot03.m2", + value = "blastedlandsroot03.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "190462", + text = "blastedlandsportalruins01.m2", + value = "blastedlandsportalruins01.m2", + }, + { + fileId = "190463", + text = "blastedlandsportalruins02.m2", + value = "blastedlandsportalruins02.m2", + }, + { + fileId = "190464", + text = "blastedlandsportalruins03.m2", + value = "blastedlandsportalruins03.m2", + }, + { + fileId = "190466", + text = "blastedlandsruins01.m2", + value = "blastedlandsruins01.m2", + }, + { + fileId = "190467", + text = "blastedlandsruins02.m2", + value = "blastedlandsruins02.m2", + }, + { + fileId = "190468", + text = "blastedlandsruins03.m2", + value = "blastedlandsruins03.m2", + }, + { + fileId = "190469", + text = "blastedlandsruinstusk.m2", + value = "blastedlandsruinstusk.m2", + }, + { + fileId = "190470", + text = "brokengatearch.m2", + value = "brokengatearch.m2", + }, + { + fileId = "190471", + text = "brokengatechain01.m2", + value = "brokengatechain01.m2", + }, + { + fileId = "190472", + text = "brokengatechain02.m2", + value = "brokengatechain02.m2", + }, + { + fileId = "190474", + text = "brokengateside01.m2", + value = "brokengateside01.m2", + }, + { + fileId = "190475", + text = "brokengateside02.m2", + value = "brokengateside02.m2", + }, + { + fileId = "190476", + text = "brokengatewall.m2", + value = "brokengatewall.m2", + }, + { + fileId = "190477", + text = "brokengatewood01.m2", + value = "brokengatewood01.m2", + }, + { + fileId = "190478", + text = "brokengatewood02.m2", + value = "brokengatewood02.m2", + }, + { + fileId = "190479", + text = "brokengatewood03.m2", + value = "brokengatewood03.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "367354", + text = "blastedlands_twistedtree01.m2", + value = "blastedlands_twistedtree01.m2", + }, + { + fileId = "367446", + text = "blastedlands_twistedtree02.m2", + value = "blastedlands_twistedtree02.m2", + }, + { + fileId = "367447", + text = "blastedlands_twistedtree03.m2", + value = "blastedlands_twistedtree03.m2", + }, + { + fileId = "190484", + text = "blastedlandsashtree02.m2", + value = "blastedlandsashtree02.m2", + }, + { + fileId = "190485", + text = "blastedlandsashtree03.m2", + value = "blastedlandsashtree03.m2", + }, + { + fileId = "190486", + text = "blastedlandsblastedtree01.m2", + value = "blastedlandsblastedtree01.m2", + }, + { + fileId = "190487", + text = "blastedlandsblastedtree03.m2", + value = "blastedlandsblastedtree03.m2", + }, + { + fileId = "190488", + text = "blastedlandsblastedtree04.m2", + value = "blastedlandsblastedtree04.m2", + }, + { + fileId = "190489", + text = "blastedlandstree01.m2", + value = "blastedlandstree01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "theblastedlands", + value = "theblastedlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190505", + text = "westfallchurch.m2", + value = "westfallchurch.m2", + }, + }, + text = "church", + value = "church", + }, + { + children = { + { + fileId = "190508", + text = "westfallgrainsilo01.m2", + value = "westfallgrainsilo01.m2", + }, + }, + text = "grainsilo", + value = "grainsilo", + }, + { + children = { + { + fileId = "190511", + text = "lighthousered.m2", + value = "lighthousered.m2", + }, + { + fileId = "190515", + text = "westfalllighthouse.m2", + value = "westfalllighthouse.m2", + }, + }, + text = "lighthouse", + value = "lighthouse", + }, + { + children = { + { + fileId = "190517", + text = "westfallshed.m2", + value = "westfallshed.m2", + }, + }, + text = "shed", + value = "shed", + }, + { + children = { + { + fileId = "190519", + text = "westfallwindmill.m2", + value = "westfallwindmill.m2", + }, + }, + text = "windmill", + value = "windmill", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190520", + text = "aquaduct_corner1.m2", + value = "aquaduct_corner1.m2", + }, + { + fileId = "190521", + text = "aquaduct_corner2.m2", + value = "aquaduct_corner2.m2", + }, + { + fileId = "190522", + text = "aquaduct_longpillar.m2", + value = "aquaduct_longpillar.m2", + }, + { + fileId = "190523", + text = "aquaduct_pillar1.m2", + value = "aquaduct_pillar1.m2", + }, + { + fileId = "190524", + text = "aquaduct_pillar2.m2", + value = "aquaduct_pillar2.m2", + }, + { + fileId = "190525", + text = "aquaduct_pillar3.m2", + value = "aquaduct_pillar3.m2", + }, + { + fileId = "190526", + text = "aquaduct_short.m2", + value = "aquaduct_short.m2", + }, + { + fileId = "190527", + text = "aquaduct_straight.m2", + value = "aquaduct_straight.m2", + }, + { + fileId = "190528", + text = "aquaduct_straight6.m2", + value = "aquaduct_straight6.m2", + }, + { + fileId = "190529", + text = "aquaduct_xsupport.m2", + value = "aquaduct_xsupport.m2", + }, + }, + text = "aquaduct", + value = "aquaduct", + }, + { + children = { + { + fileId = "190535", + text = "westfallbarrel01.m2", + value = "westfallbarrel01.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "190536", + text = "brokencart.m2", + value = "brokencart.m2", + }, + }, + text = "brokencart", + value = "brokencart", + }, + { + children = { + { + fileId = "190537", + text = "butterchurner.m2", + value = "butterchurner.m2", + }, + }, + text = "butterchurner", + value = "butterchurner", + }, + { + children = { + { + fileId = "190541", + text = "hangingcage01.m2", + value = "hangingcage01.m2", + }, + { + fileId = "190542", + text = "hangingcage02.m2", + value = "hangingcage02.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "190543", + text = "westfallcrate.m2", + value = "westfallcrate.m2", + }, + }, + text = "crate", + value = "crate", + }, + { + children = { + { + fileId = "190545", + text = "deadcow.m2", + value = "deadcow.m2", + }, + }, + text = "deadcow", + value = "deadcow", + }, + { + children = { + { + fileId = "190546", + text = "deadmule.m2", + value = "deadmule.m2", + }, + }, + text = "deadmule", + value = "deadmule", + }, + { + children = { + { + fileId = "190548", + text = "deadseamonster.m2", + value = "deadseamonster.m2", + }, + { + fileId = "190549", + text = "seamonsterchunk.m2", + value = "seamonsterchunk.m2", + }, + }, + text = "deadseamonster", + value = "deadseamonster", + }, + { + children = { + { + fileId = "190564", + text = "westfallberrybush.m2", + value = "westfallberrybush.m2", + }, + { + fileId = "190566", + text = "westfallbush01.m2", + value = "westfallbush01.m2", + }, + { + fileId = "190567", + text = "westfallcabbage.m2", + value = "westfallcabbage.m2", + }, + { + fileId = "190568", + text = "westfallcatails.m2", + value = "westfallcatails.m2", + }, + { + fileId = "190571", + text = "westfallcornfield.m2", + value = "westfallcornfield.m2", + }, + { + fileId = "190572", + text = "westfallcotton.m2", + value = "westfallcotton.m2", + }, + { + fileId = "190573", + text = "westfalldandilion.m2", + value = "westfalldandilion.m2", + }, + { + fileId = "190574", + text = "westfalldriftwood.m2", + value = "westfalldriftwood.m2", + }, + { + fileId = "190576", + text = "westfallmandrake.m2", + value = "westfallmandrake.m2", + }, + { + fileId = "190577", + text = "westfallreeds01.m2", + value = "westfallreeds01.m2", + }, + { + fileId = "190578", + text = "westfalltobbaco.m2", + value = "westfalltobbaco.m2", + }, + { + fileId = "190579", + text = "westfallwheat01.m2", + value = "westfallwheat01.m2", + }, + { + fileId = "190580", + text = "westfallwheat02.m2", + value = "westfallwheat02.m2", + }, + { + fileId = "190581", + text = "westfallwheat03.m2", + value = "westfallwheat03.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "366717", + text = "westfall_elementalvortex.m2", + value = "westfall_elementalvortex.m2", + }, + }, + text = "elementalvortex", + value = "elementalvortex", + }, + { + children = { + { + fileId = "190586", + text = "westfallbed01.m2", + value = "westfallbed01.m2", + }, + }, + text = "furniture", + value = "furniture", + }, + { + children = { + { + fileId = "190587", + text = "grindstone.m2", + value = "grindstone.m2", + }, + }, + text = "grindstone", + value = "grindstone", + }, + { + children = { + { + fileId = "190592", + text = "harempillow01.m2", + value = "harempillow01.m2", + }, + }, + text = "harempillow01", + value = "harempillow01", + }, + { + children = { + { + fileId = "190595", + text = "harempillow02.m2", + value = "harempillow02.m2", + }, + }, + text = "harempillow02", + value = "harempillow02", + }, + { + children = { + { + fileId = "190596", + text = "harness.m2", + value = "harness.m2", + }, + }, + text = "harness", + value = "harness", + }, + { + children = { + { + fileId = "190597", + text = "westfallhaystack01.m2", + value = "westfallhaystack01.m2", + }, + { + fileId = "190598", + text = "westfallhaystack02.m2", + value = "westfallhaystack02.m2", + }, + }, + text = "haystack", + value = "haystack", + }, + { + children = { + { + fileId = "190599", + text = "westfallhaywagon.m2", + value = "westfallhaywagon.m2", + }, + }, + text = "haywagon", + value = "haywagon", + }, + { + children = { + { + fileId = "190608", + text = "lampdeadmines.m2", + value = "lampdeadmines.m2", + }, + }, + text = "lampdeadmines", + value = "lampdeadmines", + }, + { + children = { + { + fileId = "190612", + text = "westfalllamppost.m2", + value = "westfalllamppost.m2", + }, + { + fileId = "190613", + text = "westfalllamppost01.m2", + value = "westfalllamppost01.m2", + }, + { + fileId = "190614", + text = "westfalllamppost02.m2", + value = "westfalllamppost02.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "190615", + text = "lighthouseeffect.m2", + value = "lighthouseeffect.m2", + }, + }, + text = "lighthousebeam", + value = "lighthousebeam", + }, + { + children = { + { + fileId = "190617", + text = "outhouse.m2", + value = "outhouse.m2", + }, + { + fileId = "342683", + text = "outhouse_closedbottom.m2", + value = "outhouse_closedbottom.m2", + }, + }, + text = "outhouse", + value = "outhouse", + }, + { + children = { + { + fileId = "190619", + text = "plow.m2", + value = "plow.m2", + }, + }, + text = "plow", + value = "plow", + }, + { + children = { + { + fileId = "190620", + text = "rakecart.m2", + value = "rakecart.m2", + }, + }, + text = "rakecart", + value = "rakecart", + }, + { + children = { + { + fileId = "190623", + text = "westfallboulder01.m2", + value = "westfallboulder01.m2", + }, + { + fileId = "190624", + text = "westfallboulder02.m2", + value = "westfallboulder02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190626", + text = "rugrack01.m2", + value = "rugrack01.m2", + }, + { + fileId = "190627", + text = "rugrack02.m2", + value = "rugrack02.m2", + }, + }, + text = "rugracks", + value = "rugracks", + }, + { + children = { + { + fileId = "190629", + text = "westfallscarecrow.m2", + value = "westfallscarecrow.m2", + }, + }, + text = "scarecrow", + value = "scarecrow", + }, + { + children = { + { + fileId = "190632", + text = "sunkenanchor.m2", + value = "sunkenanchor.m2", + }, + }, + text = "sunkenanchor", + value = "sunkenanchor", + }, + { + children = { + { + fileId = "190633", + text = "tombstone01.m2", + value = "tombstone01.m2", + }, + { + fileId = "190634", + text = "tombstone02.m2", + value = "tombstone02.m2", + }, + { + fileId = "190635", + text = "tombstone03.m2", + value = "tombstone03.m2", + }, + { + fileId = "190636", + text = "tombstone04.m2", + value = "tombstone04.m2", + }, + }, + text = "tombstones", + value = "tombstones", + }, + { + children = { + { + fileId = "190638", + text = "westfalltree01.m2", + value = "westfalltree01.m2", + }, + { + fileId = "190639", + text = "westfalltree02.m2", + value = "westfalltree02.m2", + }, + { + fileId = "190640", + text = "westfalltree03.m2", + value = "westfalltree03.m2", + }, + { + fileId = "190641", + text = "westfalltree04.m2", + value = "westfalltree04.m2", + }, + { + fileId = "190642", + text = "westfalltreecanopy01.m2", + value = "westfalltreecanopy01.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "190647", + text = "westfalltreestump01.m2", + value = "westfalltreestump01.m2", + }, + { + fileId = "190648", + text = "westfalltreestump02.m2", + value = "westfalltreestump02.m2", + }, + }, + text = "treestumps", + value = "treestumps", + }, + { + children = { + { + fileId = "190650", + text = "bowl.m2", + value = "bowl.m2", + }, + { + fileId = "190653", + text = "plate.m2", + value = "plate.m2", + }, + { + fileId = "190654", + text = "stein.m2", + value = "stein.m2", + }, + }, + text = "utensils", + value = "utensils", + }, + { + children = { + { + fileId = "190658", + text = "westfallchair.m2", + value = "westfallchair.m2", + }, + }, + text = "westfallchair", + value = "westfallchair", + }, + { + children = { + { + fileId = "190659", + text = "westfallfence.m2", + value = "westfallfence.m2", + }, + { + fileId = "190660", + text = "westfallfenceend.m2", + value = "westfallfenceend.m2", + }, + { + fileId = "190661", + text = "westfallfencepost.m2", + value = "westfallfencepost.m2", + }, + }, + text = "westfallfence", + value = "westfallfence", + }, + { + children = { + { + fileId = "190662", + text = "westfallfountain.m2", + value = "westfallfountain.m2", + }, + }, + text = "westfallfountain", + value = "westfallfountain", + }, + { + children = { + { + fileId = "190666", + text = "westfallruins01.m2", + value = "westfallruins01.m2", + }, + { + fileId = "190667", + text = "westfallruins02.m2", + value = "westfallruins02.m2", + }, + { + fileId = "190668", + text = "westfallruins03.m2", + value = "westfallruins03.m2", + }, + { + fileId = "190669", + text = "westfallruins04.m2", + value = "westfallruins04.m2", + }, + }, + text = "westfallruins", + value = "westfallruins", + }, + { + children = { + { + fileId = "190671", + text = "westfallskeleton.m2", + value = "westfallskeleton.m2", + }, + }, + text = "westfallskeleton", + value = "westfallskeleton", + }, + { + children = { + { + fileId = "190673", + text = "westfalltable.m2", + value = "westfalltable.m2", + }, + }, + text = "westfalltable", + value = "westfalltable", + }, + { + children = { + { + fileId = "190675", + text = "westfallvineyard01.m2", + value = "westfallvineyard01.m2", + }, + }, + text = "westfallvineyards", + value = "westfallvineyards", + }, + { + children = { + { + fileId = "190677", + text = "wreckedrowboat.m2", + value = "wreckedrowboat.m2", + }, + }, + text = "wreckedrowboat", + value = "wreckedrowboat", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "westfall", + value = "westfall", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190678", + text = "collisionwallpendoor01.m2", + value = "collisionwallpendoor01.m2", + }, + { + fileId = "514516", + text = "zulgurub_pendoor_gate.m2", + value = "zulgurub_pendoor_gate.m2", + }, + { + fileId = "190680", + text = "zulgurubforcefield.m2", + value = "zulgurubforcefield.m2", + }, + { + fileId = "190681", + text = "zulgurubpendoor.m2", + value = "zulgurubpendoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "190683", + text = "zulgurubmaindoor.m2", + value = "zulgurubmaindoor.m2", + }, + }, + text = "maindoor", + value = "maindoor", + }, + { + children = { + { + fileId = "190685", + text = "nastyspideregg.m2", + value = "nastyspideregg.m2", + }, + }, + text = "spiderarea", + value = "spiderarea", + }, + { + children = { + { + fileId = "190688", + text = "voodoopile01.m2", + value = "voodoopile01.m2", + }, + }, + text = "voodoopile", + value = "voodoopile", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190690", + text = "trollbattotem.m2", + value = "trollbattotem.m2", + }, + }, + text = "battotem", + value = "battotem", + }, + { + children = { + { + fileId = "512399", + text = "cauldronbeam_fire_base.m2", + value = "cauldronbeam_fire_base.m2", + }, + { + fileId = "512401", + text = "cauldronbeam_ice_base.m2", + value = "cauldronbeam_ice_base.m2", + }, + { + fileId = "512403", + text = "cauldronbeam_poison_base.m2", + value = "cauldronbeam_poison_base.m2", + }, + { + fileId = "512219", + text = "zg_cauldron_fire.m2", + value = "zg_cauldron_fire.m2", + }, + { + fileId = "512223", + text = "zg_cauldron_ice.m2", + value = "zg_cauldron_ice.m2", + }, + { + fileId = "512228", + text = "zg_cauldron_poison.m2", + value = "zg_cauldron_poison.m2", + }, + }, + text = "cauldrons", + value = "cauldrons", + }, + { + children = { + { + fileId = "190693", + text = "heartofhakkar.m2", + value = "heartofhakkar.m2", + }, + }, + text = "heart", + value = "heart", + }, + { + children = { + { + fileId = "190694", + text = "zulgurublightningmadness.m2", + value = "zulgurublightningmadness.m2", + }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { + { + fileId = "190695", + text = "zulgurubruins04.m2", + value = "zulgurubruins04.m2", + }, + { + fileId = "190696", + text = "zulgurubruins05.m2", + value = "zulgurubruins05.m2", + }, + { + fileId = "190697", + text = "zulgurubruins06.m2", + value = "zulgurubruins06.m2", + }, + { + fileId = "190698", + text = "zulgurubruins07.m2", + value = "zulgurubruins07.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "190699", + text = "nastyspiderweb01.m2", + value = "nastyspiderweb01.m2", + }, + { + fileId = "190700", + text = "nastyspiderweb02.m2", + value = "nastyspiderweb02.m2", + }, + { + fileId = "190701", + text = "nastyspiderweb03.m2", + value = "nastyspiderweb03.m2", + }, + { + fileId = "190706", + text = "spiderpod01.m2", + value = "spiderpod01.m2", + }, + { + fileId = "190707", + text = "spiderpod02.m2", + value = "spiderpod02.m2", + }, + }, + text = "spiderarea", + value = "spiderarea", + }, + { + children = { + { + fileId = "190711", + text = "zulgurubtree01.m2", + value = "zulgurubtree01.m2", + }, + { + fileId = "190712", + text = "zulgurubtree02.m2", + value = "zulgurubtree02.m2", + }, + { + fileId = "190713", + text = "zulgurubtree03.m2", + value = "zulgurubtree03.m2", + }, + { + fileId = "190714", + text = "zulgurubtree04.m2", + value = "zulgurubtree04.m2", + }, + { + fileId = "190715", + text = "zulgurubtree05.m2", + value = "zulgurubtree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "512315", + text = "zulgurub_vines_01.m2", + value = "zulgurub_vines_01.m2", + }, + { + fileId = "512317", + text = "zulgurub_vines_02.m2", + value = "zulgurub_vines_02.m2", + }, + { + fileId = "512320", + text = "zulgurub_vines_03.m2", + value = "zulgurub_vines_03.m2", + }, + { + fileId = "512322", + text = "zulgurub_vines_04.m2", + value = "zulgurub_vines_04.m2", + }, + }, + text = "vines", + value = "vines", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "zulgurub", + value = "zulgurub", + }, + }, + text = "azeroth", + value = "azeroth", + }, + { + children = { + { + children = { + { + fileId = "367934", + text = "blackrockv2_alchemyroom_dragonstatue_01.m2", + value = "blackrockv2_alchemyroom_dragonstatue_01.m2", + }, + { + fileId = "376264", + text = "blackrockv2_boneschewed_01.m2", + value = "blackrockv2_boneschewed_01.m2", + }, + { + fileId = "376266", + text = "blackrockv2_boneschewed_02.m2", + value = "blackrockv2_boneschewed_02.m2", + }, + { + fileId = "376267", + text = "blackrockv2_boneschewed_03.m2", + value = "blackrockv2_boneschewed_03.m2", + }, + { + fileId = "376268", + text = "blackrockv2_boneschewed_04.m2", + value = "blackrockv2_boneschewed_04.m2", + }, + { + fileId = "376269", + text = "blackrockv2_boneschewed_05.m2", + value = "blackrockv2_boneschewed_05.m2", + }, + { + fileId = "376270", + text = "blackrockv2_boneschewed_06.m2", + value = "blackrockv2_boneschewed_06.m2", + }, + { + fileId = "376271", + text = "blackrockv2_boneschewed_07.m2", + value = "blackrockv2_boneschewed_07.m2", + }, + { + fileId = "315403", + text = "blackrockv2_chains01.m2", + value = "blackrockv2_chains01.m2", + }, + { + fileId = "315404", + text = "blackrockv2_chains02.m2", + value = "blackrockv2_chains02.m2", + }, + { + fileId = "315405", + text = "blackrockv2_chains03.m2", + value = "blackrockv2_chains03.m2", + }, + { + fileId = "315406", + text = "blackrockv2_chains04.m2", + value = "blackrockv2_chains04.m2", + }, + { + fileId = "368986", + text = "blackrockv2_darkironbomb_01.m2", + value = "blackrockv2_darkironbomb_01.m2", + }, + { + fileId = "368987", + text = "blackrockv2_darkironbomb_02.m2", + value = "blackrockv2_darkironbomb_02.m2", + }, + { + fileId = "368988", + text = "blackrockv2_darkironbomb_03.m2", + value = "blackrockv2_darkironbomb_03.m2", + }, + { + fileId = "368989", + text = "blackrockv2_darkironbomb_peg_01.m2", + value = "blackrockv2_darkironbomb_peg_01.m2", + }, + { + fileId = "379433", + text = "blackrockv2_darkironlight_01.m2", + value = "blackrockv2_darkironlight_01.m2", + }, + { + fileId = "318665", + text = "blackrockv2_drake.m2", + value = "blackrockv2_drake.m2", + }, + { + fileId = "319866", + text = "blackrockv2_hanging_cage.m2", + value = "blackrockv2_hanging_cage.m2", + }, + { + fileId = "368581", + text = "blackrockv2_hangingdragon_01.m2", + value = "blackrockv2_hangingdragon_01.m2", + }, + { + fileId = "368582", + text = "blackrockv2_hangingdragon_02.m2", + value = "blackrockv2_hangingdragon_02.m2", + }, + { + fileId = "368583", + text = "blackrockv2_hangingdragon_03.m2", + value = "blackrockv2_hangingdragon_03.m2", + }, + { + fileId = "368584", + text = "blackrockv2_hangingdragon_04.m2", + value = "blackrockv2_hangingdragon_04.m2", + }, + { + fileId = "368585", + text = "blackrockv2_hangingdragon_05.m2", + value = "blackrockv2_hangingdragon_05.m2", + }, + { + fileId = "368586", + text = "blackrockv2_hangingdragon_06.m2", + value = "blackrockv2_hangingdragon_06.m2", + }, + { + fileId = "368587", + text = "blackrockv2_hangingdragon_07.m2", + value = "blackrockv2_hangingdragon_07.m2", + }, + { + fileId = "431770", + text = "blackrockv2_hangingdragon_08.m2", + value = "blackrockv2_hangingdragon_08.m2", + }, + { + fileId = "374060", + text = "blackrockv2_labroom_01.m2", + value = "blackrockv2_labroom_01.m2", + }, + { + fileId = "374062", + text = "blackrockv2_labroom_01broken.m2", + value = "blackrockv2_labroom_01broken.m2", + }, + { + fileId = "384445", + text = "blackrockv2_labroom_bloodvial_breaker01.m2", + value = "blackrockv2_labroom_bloodvial_breaker01.m2", + }, + { + fileId = "384446", + text = "blackrockv2_labroom_bloodvial_breaker02.m2", + value = "blackrockv2_labroom_bloodvial_breaker02.m2", + }, + { + fileId = "374066", + text = "blackrockv2_labroom_cauldron.m2", + value = "blackrockv2_labroom_cauldron.m2", + }, + { + fileId = "318884", + text = "blackrockv2_lava_bucket.m2", + value = "blackrockv2_lava_bucket.m2", + }, + { + fileId = "519685", + text = "blackrockv2_lavacolumn.m2", + value = "blackrockv2_lavacolumn.m2", + }, + { + fileId = "315174", + text = "blackrockv2_lavarock_buckets01.m2", + value = "blackrockv2_lavarock_buckets01.m2", + }, + { + fileId = "315176", + text = "blackrockv2_lavarock_buckets02.m2", + value = "blackrockv2_lavarock_buckets02.m2", + }, + { + fileId = "315177", + text = "blackrockv2_lavarock_buckets03.m2", + value = "blackrockv2_lavarock_buckets03.m2", + }, + { + fileId = "315207", + text = "blackrockv2_lavarock_buckets_broken.m2", + value = "blackrockv2_lavarock_buckets_broken.m2", + }, + { + fileId = "317413", + text = "blackrockv2_main_cage.m2", + value = "blackrockv2_main_cage.m2", + }, + { + fileId = "401836", + text = "blackrockv2_portcullis_01.m2", + value = "blackrockv2_portcullis_01.m2", + }, + { + fileId = "401837", + text = "blackrockv2_portcullis_02.m2", + value = "blackrockv2_portcullis_02.m2", + }, + { + fileId = "405003", + text = "blackrockv2_portcullis_03.m2", + value = "blackrockv2_portcullis_03.m2", + }, + { + fileId = "387895", + text = "blackrockv2_shieldgong_collision.m2", + value = "blackrockv2_shieldgong_collision.m2", + }, + { + fileId = "312540", + text = "blackrockv2_windgust_01.m2", + value = "blackrockv2_windgust_01.m2", + }, + { + fileId = "511100", + text = "blackwing_portcullis.m2", + value = "blackwing_portcullis.m2", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "blackrockv2", + value = "blackrockv2", }, { - fileId = "167224", - text = "zangarmarsh_arcane_impact.m2", - value = "zangarmarsh_arcane_impact.m2", + children = { + { + children = { + { + fileId = "440140", + text = "blackwingdescent_lava_heads_room_01.m2", + value = "blackwingdescent_lava_heads_room_01.m2", + }, + { + fileId = "440141", + text = "blackwingdescent_lava_heads_room_02.m2", + value = "blackwingdescent_lava_heads_room_02.m2", + }, + { + fileId = "440142", + text = "blackwingdescent_lava_heads_room_03.m2", + value = "blackwingdescent_lava_heads_room_03.m2", + }, + { + fileId = "440143", + text = "blackwingdescent_lava_heads_room_04.m2", + value = "blackwingdescent_lava_heads_room_04.m2", + }, + { + fileId = "440144", + text = "blackwingdescent_lava_library_01.m2", + value = "blackwingdescent_lava_library_01.m2", + }, + { + fileId = "440145", + text = "blackwingdescent_lava_library_02.m2", + value = "blackwingdescent_lava_library_02.m2", + }, + { + fileId = "440146", + text = "blackwingdescent_lava_round_room_01.m2", + value = "blackwingdescent_lava_round_room_01.m2", + }, + { + fileId = "440147", + text = "blackwingdescent_lava_round_room_02.m2", + value = "blackwingdescent_lava_round_room_02.m2", + }, + { + fileId = "440148", + text = "blackwingdescent_lava_round_room_03.m2", + value = "blackwingdescent_lava_round_room_03.m2", + }, + { + fileId = "440149", + text = "blackwingdescent_lava_round_room_04.m2", + value = "blackwingdescent_lava_round_room_04.m2", + }, + { + fileId = "440150", + text = "blackwingdescent_lava_round_room_05.m2", + value = "blackwingdescent_lava_round_room_05.m2", + }, + { + fileId = "440151", + text = "blackwingdescent_lava_round_room_06.m2", + value = "blackwingdescent_lava_round_room_06.m2", + }, + { + fileId = "440152", + text = "blackwingdescent_lava_round_room_07.m2", + value = "blackwingdescent_lava_round_room_07.m2", + }, + { + fileId = "440153", + text = "blackwingdescent_lava_round_room_08.m2", + value = "blackwingdescent_lava_round_room_08.m2", + }, + { + fileId = "440154", + text = "blackwingdescent_lava_round_room_09.m2", + value = "blackwingdescent_lava_round_room_09.m2", + }, + { + fileId = "440155", + text = "blackwingdescent_lava_round_room_10.m2", + value = "blackwingdescent_lava_round_room_10.m2", + }, + { + fileId = "440156", + text = "blackwingdescent_lava_round_room_11.m2", + value = "blackwingdescent_lava_round_room_11.m2", + }, + { + fileId = "440157", + text = "blackwingdescent_lava_round_room_12.m2", + value = "blackwingdescent_lava_round_room_12.m2", + }, + { + fileId = "440158", + text = "blackwingdescent_lava_statue_01.m2", + value = "blackwingdescent_lava_statue_01.m2", + }, + { + fileId = "440159", + text = "blackwingdescent_lava_statue_broken_01.m2", + value = "blackwingdescent_lava_statue_broken_01.m2", + }, + { + fileId = "390120", + text = "blackwingv2_darkiron_bell_01.m2", + value = "blackwingv2_darkiron_bell_01.m2", + }, + { + fileId = "378584", + text = "blackwingv2_darkirondwarfstatue_01.m2", + value = "blackwingv2_darkirondwarfstatue_01.m2", + }, + { + fileId = "382492", + text = "blackwingv2_darkirondwarfstatue_01broken.m2", + value = "blackwingv2_darkirondwarfstatue_01broken.m2", + }, + { + fileId = "384482", + text = "blackwingv2_elevator01.m2", + value = "blackwingv2_elevator01.m2", + }, + { + fileId = "385329", + text = "blackwingv2_elevator_onyxia.m2", + value = "blackwingv2_elevator_onyxia.m2", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "blackwingv2", + value = "blackwingv2", }, { - fileId = "167225", - text = "zangarmarsh_arcane_missile.m2", - value = "zangarmarsh_arcane_missile.m2", + children = { + { + children = { + { + fileId = "190716", + text = "bat01.m2", + value = "bat01.m2", + }, + { + fileId = "190717", + text = "bat02.m2", + value = "bat02.m2", + }, + { + fileId = "346999", + text = "bats_01.m2", + value = "bats_01.m2", + }, + }, + text = "bats", + value = "bats", + }, + { + children = { + { + fileId = "190719", + text = "bird01.m2", + value = "bird01.m2", + }, + { + fileId = "190720", + text = "bird02.m2", + value = "bird02.m2", + }, + { + fileId = "367454", + text = "birds_condor_01.m2", + value = "birds_condor_01.m2", + }, + { + fileId = "190723", + text = "wasp01.m2", + value = "wasp01.m2", + }, + { + fileId = "190724", + text = "wasp02.m2", + value = "wasp02.m2", + }, + }, + text = "birds", + value = "birds", + }, + { + children = { + { + fileId = "190725", + text = "butterflyorange01.m2", + value = "butterflyorange01.m2", + }, + { + fileId = "190726", + text = "butterflypurple01.m2", + value = "butterflypurple01.m2", + }, + { + fileId = "190727", + text = "butterflywhite01.m2", + value = "butterflywhite01.m2", + }, + }, + text = "butterflies", + value = "butterflies", + }, + { + children = { + { + fileId = "190731", + text = "fireflies01.m2", + value = "fireflies01.m2", + }, + }, + text = "fireflies", + value = "fireflies", + }, + { + children = { + { + fileId = "190733", + text = "fish01.m2", + value = "fish01.m2", + }, + }, + text = "fish", + value = "fish", + }, + { + children = { + { + fileId = "190739", + text = "flies01.m2", + value = "flies01.m2", + }, + }, + text = "flies", + value = "flies", + }, + }, + text = "critter", + value = "critter", }, { - fileId = "167229", - text = "zig_missile.m2", - value = "zig_missile.m2", + children = { + { + fileId = "2198651", + text = "drkbus01.m2", + value = "drkbus01.m2", + }, + { + fileId = "2198569", + text = "drkbus02.m2", + value = "drkbus02.m2", + }, + { + fileId = "2198633", + text = "drkbus03.m2", + value = "drkbus03.m2", + }, + { + fileId = "2198552", + text = "drkbus04.m2", + value = "drkbus04.m2", + }, + { + fileId = "2198589", + text = "drkbus05.m2", + value = "drkbus05.m2", + }, + { + fileId = "2198528", + text = "drkbus06.m2", + value = "drkbus06.m2", + }, + { + fileId = "2199417", + text = "drkbus07.m2", + value = "drkbus07.m2", + }, + { + fileId = "2198572", + text = "drkgra01.m2", + value = "drkgra01.m2", + }, + { + fileId = "2198494", + text = "drkgra02.m2", + value = "drkgra02.m2", + }, + { + fileId = "2198594", + text = "drkgra03.m2", + value = "drkgra03.m2", + }, + { + fileId = "2198627", + text = "drkgra04.m2", + value = "drkgra04.m2", + }, + { + fileId = "2198545", + text = "drkgra05.m2", + value = "drkgra05.m2", + }, + { + fileId = "2198584", + text = "drkgra06.m2", + value = "drkgra06.m2", + }, + }, + text = "detail", + value = "detail", }, { - fileId = "241128", - text = "zulaman_firedoor_unit.m2", - value = "zulaman_firedoor_unit.m2", + children = { + { + children = { + { + children = { + { + fileId = "190755", + text = "emeralddreamcatcher01.m2", + value = "emeralddreamcatcher01.m2", + }, + { + fileId = "190756", + text = "emeralddreamcatcher02.m2", + value = "emeralddreamcatcher02.m2", + }, + { + fileId = "190757", + text = "emeralddreamcatcher03.m2", + value = "emeralddreamcatcher03.m2", + }, + { + fileId = "190758", + text = "emeralddreamcatcher04.m2", + value = "emeralddreamcatcher04.m2", + }, + }, + text = "dreamcatchers", + value = "dreamcatchers", + }, + { + children = { + { + fileId = "190760", + text = "emeralddreamgiant01.m2", + value = "emeralddreamgiant01.m2", + }, + }, + text = "emeralddreamgiant", + value = "emeralddreamgiant", + }, + { + children = { + { + fileId = "526845", + text = "emeralddreamgiant_destroyed.m2", + value = "emeralddreamgiant_destroyed.m2", + }, + }, + text = "emeralddreamgiant_destroyed", + value = "emeralddreamgiant_destroyed", + }, + { + children = { + { + fileId = "190763", + text = "dnrdreambellflower01.m2", + value = "dnrdreambellflower01.m2", + }, + { + fileId = "190764", + text = "dnrdreambellflower02.m2", + value = "dnrdreambellflower02.m2", + }, + { + fileId = "190765", + text = "dnrdreambellflower03.m2", + value = "dnrdreambellflower03.m2", + }, + { + fileId = "190766", + text = "dnrdreamdrippingflower01.m2", + value = "dnrdreamdrippingflower01.m2", + }, + { + fileId = "190767", + text = "dnrdreamdrippingflower02.m2", + value = "dnrdreamdrippingflower02.m2", + }, + { + fileId = "190768", + text = "dnrdreamdroopingflower01.m2", + value = "dnrdreamdroopingflower01.m2", + }, + { + fileId = "190769", + text = "dnrdreamdroopingflower02.m2", + value = "dnrdreamdroopingflower02.m2", + }, + { + fileId = "190770", + text = "dnrdreamorangeflower01.m2", + value = "dnrdreamorangeflower01.m2", + }, + { + fileId = "190771", + text = "dnrdreamorangeflower02.m2", + value = "dnrdreamorangeflower02.m2", + }, + { + fileId = "190772", + text = "dnrdreampurpleflower01.m2", + value = "dnrdreampurpleflower01.m2", + }, + { + fileId = "190773", + text = "dnrdreampurpleflower02.m2", + value = "dnrdreampurpleflower02.m2", + }, + { + fileId = "190774", + text = "dnrdreampurpleflower03.m2", + value = "dnrdreampurpleflower03.m2", + }, + { + fileId = "190775", + text = "dnrdreamspinningflower01.m2", + value = "dnrdreamspinningflower01.m2", + }, + }, + text = "flowers", + value = "flowers", + }, + { + children = { + { + fileId = "322323", + text = "emeralddreambush01.m2", + value = "emeralddreambush01.m2", + }, + { + fileId = "190793", + text = "emeralddreamfountaintree01.m2", + value = "emeralddreamfountaintree01.m2", + }, + { + fileId = "190794", + text = "emeralddreamfountaintree02.m2", + value = "emeralddreamfountaintree02.m2", + }, + { + fileId = "190795", + text = "emeralddreamfountaintree03.m2", + value = "emeralddreamfountaintree03.m2", + }, + { + fileId = "190796", + text = "emeralddreamfountaintree04.m2", + value = "emeralddreamfountaintree04.m2", + }, + { + fileId = "190797", + text = "emeralddreamfountaintree05.m2", + value = "emeralddreamfountaintree05.m2", + }, + { + fileId = "322187", + text = "emeralddreamtree01.m2", + value = "emeralddreamtree01.m2", + }, + { + fileId = "322292", + text = "emeralddreamtree02.m2", + value = "emeralddreamtree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "dreaming", + value = "dreaming", }, - }, - text = "spells", - value = "spells", - }, - { - children = { { children = { { - fileId = "2353357", - text = "boartest.m2", - value = "boartest.m2", + children = { + { + children = { + { + children = { + { + fileId = "190803", + text = "basiliskcrystal02.m2", + value = "basiliskcrystal02.m2", + }, + { + fileId = "190804", + text = "caveminecrystalformation01.m2", + value = "caveminecrystalformation01.m2", + }, + { + fileId = "190805", + text = "caveminecrystalformation02.m2", + value = "caveminecrystalformation02.m2", + }, + { + fileId = "190806", + text = "caveminecrystalformation03.m2", + value = "caveminecrystalformation03.m2", + }, + { + fileId = "190807", + text = "caveminecrystalformation04.m2", + value = "caveminecrystalformation04.m2", + }, + { + fileId = "190808", + text = "caveminecrystalformation05.m2", + value = "caveminecrystalformation05.m2", + }, + { + fileId = "190809", + text = "caveminecrystalformation06.m2", + value = "caveminecrystalformation06.m2", + }, + { + fileId = "190810", + text = "caveminecrystalformation07.m2", + value = "caveminecrystalformation07.m2", + }, + { + fileId = "190811", + text = "caveminecrystalformation08.m2", + value = "caveminecrystalformation08.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "190813", + text = "caveicicle1.m2", + value = "caveicicle1.m2", + }, + { + fileId = "190814", + text = "caveicicle2.m2", + value = "caveicicle2.m2", + }, + }, + text = "icicles", + value = "icicles", + }, + { + children = { + { + fileId = "190815", + text = "stalagmite01.m2", + value = "stalagmite01.m2", + }, + }, + text = "stalagmite", + value = "stalagmite", + }, + { + children = { + { + fileId = "190816", + text = "deadminesstalagtite01.m2", + value = "deadminesstalagtite01.m2", + }, + { + fileId = "190817", + text = "deadminesstalagtite02.m2", + value = "deadminesstalagtite02.m2", + }, + { + fileId = "190819", + text = "stalagtite01.m2", + value = "stalagtite01.m2", + }, + { + fileId = "190820", + text = "stalagtite02.m2", + value = "stalagtite02.m2", + }, + }, + text = "stalagtite", + value = "stalagtite", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "cave", + value = "cave", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190822", + text = "caverndoor.m2", + value = "caverndoor.m2", + }, + }, + text = "cavernsoftimedoor", + value = "cavernsoftimedoor", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "524767", + text = "cot_arcaneorb_01.m2", + value = "cot_arcaneorb_01.m2", + }, + }, + text = "arcaneorb", + value = "arcaneorb", + }, + { + children = { + { + fileId = "190823", + text = "cot_portalparticles.m2", + value = "cot_portalparticles.m2", + }, + { + fileId = "190824", + text = "cot_standingstone01.m2", + value = "cot_standingstone01.m2", + }, + { + fileId = "190825", + text = "cot_standingstone02.m2", + value = "cot_standingstone02.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + { + children = { + { + fileId = "190828", + text = "energytrail01.m2", + value = "energytrail01.m2", + }, + { + fileId = "190829", + text = "energytrail01b.m2", + value = "energytrail01b.m2", + }, + { + fileId = "190830", + text = "energytrail01c.m2", + value = "energytrail01c.m2", + }, + { + fileId = "190831", + text = "energytrail02.m2", + value = "energytrail02.m2", + }, + { + fileId = "190832", + text = "energytrail02b.m2", + value = "energytrail02b.m2", + }, + { + fileId = "190833", + text = "energytrail03.m2", + value = "energytrail03.m2", + }, + { + fileId = "190834", + text = "energytrail03b.m2", + value = "energytrail03b.m2", + }, + { + fileId = "190835", + text = "energytrail04.m2", + value = "energytrail04.m2", + }, + { + fileId = "190836", + text = "energytrail04b.m2", + value = "energytrail04b.m2", + }, + { + fileId = "190837", + text = "energytrail05.m2", + value = "energytrail05.m2", + }, + { + fileId = "190838", + text = "energytrail05b.m2", + value = "energytrail05b.m2", + }, + { + fileId = "190839", + text = "energytrail05c.m2", + value = "energytrail05c.m2", + }, + { + fileId = "190840", + text = "energytrailhourglass.m2", + value = "energytrailhourglass.m2", + }, + { + fileId = "190841", + text = "energytrailhourglassb.m2", + value = "energytrailhourglassb.m2", + }, + { + fileId = "190842", + text = "energytrailhourglassblue.m2", + value = "energytrailhourglassblue.m2", + }, + { + fileId = "190843", + text = "energytrailhourglasspink.m2", + value = "energytrailhourglasspink.m2", + }, + { + fileId = "190844", + text = "energytrailhourglassred.m2", + value = "energytrailhourglassred.m2", + }, + }, + text = "energytrails", + value = "energytrails", + }, + { + children = { + { + fileId = "190849", + text = "cot_hourglass.m2", + value = "cot_hourglass.m2", + }, + { + fileId = "190850", + text = "cot_hourglass_redo.m2", + value = "cot_hourglass_redo.m2", + }, + }, + text = "hourglass", + value = "hourglass", + }, + { + children = { + { + fileId = "190858", + text = "cot_portal01.m2", + value = "cot_portal01.m2", + }, + { + fileId = "190859", + text = "cot_portalfx.m2", + value = "cot_portalfx.m2", + }, + }, + text = "portal", + value = "portal", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "cavernsoftime", + value = "cavernsoftime", + }, + { + children = { + { + children = { + { + fileId = "536933", + text = "dragonsoul_chest_01.m2", + value = "dragonsoul_chest_01.m2", + }, + }, + text = "chest", + value = "chest", + }, + { + fileId = "536814", + text = "deathwingairshipsky.m2", + value = "deathwingairshipsky.m2", + }, + { + children = { + { + fileId = "537076", + text = "dragonsoul_hagaracrystal_01.m2", + value = "dragonsoul_hagaracrystal_01.m2", + }, + }, + text = "hagaracrystal", + value = "hagaracrystal", + }, + { + children = { + { + fileId = "537464", + text = "dragonsoul_deathwingjaw_01.m2", + value = "dragonsoul_deathwingjaw_01.m2", + }, + { + fileId = "575347", + text = "dragonsoul_deathwingjaw_trophy.m2", + value = "dragonsoul_deathwingjaw_trophy.m2", + }, + }, + text = "jaw", + value = "jaw", + }, + { + children = { + { + fileId = "537792", + text = "dragonsoul_hagaralightningrod_01.m2", + value = "dragonsoul_hagaralightningrod_01.m2", + }, + }, + text = "lightningrod", + value = "lightningrod", + }, + { + children = { + { + fileId = "536810", + text = "dragonsoul_morchokspike_01.m2", + value = "dragonsoul_morchokspike_01.m2", + }, + { + fileId = "536812", + text = "dragonsoul_morchokspike_02.m2", + value = "dragonsoul_morchokspike_02.m2", + }, + }, + text = "morchokspike", + value = "morchokspike", + }, + }, + text = "dragonsoul", + value = "dragonsoul", + }, + { + children = { + { + children = { + { + fileId = "523795", + text = "foa_burnttree_01.m2", + value = "foa_burnttree_01.m2", + }, + { + fileId = "523797", + text = "foa_burnttree_02.m2", + value = "foa_burnttree_02.m2", + }, + }, + text = "burnttree", + value = "burnttree", + }, + { + children = { + { + fileId = "533905", + text = "foa_chest_01.m2", + value = "foa_chest_01.m2", + }, + }, + text = "chest", + value = "chest", + }, + { + children = { + { + fileId = "527251", + text = "deathwing_dead.m2", + value = "deathwing_dead.m2", + }, + }, + text = "deathing_dead", + value = "deathing_dead", + }, + { + children = { + { + fileId = "530235", + text = "foa_hourglass.m2", + value = "foa_hourglass.m2", + }, + }, + text = "hourglass", + value = "hourglass", + }, + { + children = { + { + fileId = "530737", + text = "foa_portal_01.m2", + value = "foa_portal_01.m2", + }, + }, + text = "portal", + value = "portal", + }, + { + children = { + { + fileId = "526905", + text = "foa_blowing_sand.m2", + value = "foa_blowing_sand.m2", + }, + }, + text = "sand", + value = "sand", + }, + { + children = { + { + fileId = "528276", + text = "wyrmrest_destroyed_rubble_01.m2", + value = "wyrmrest_destroyed_rubble_01.m2", + }, + { + fileId = "528296", + text = "wyrmrest_destroyed_rubble_02.m2", + value = "wyrmrest_destroyed_rubble_02.m2", + }, + { + fileId = "528308", + text = "wyrmrest_destroyed_rubble_03.m2", + value = "wyrmrest_destroyed_rubble_03.m2", + }, + { + fileId = "528310", + text = "wyrmrest_destroyed_rubble_04.m2", + value = "wyrmrest_destroyed_rubble_04.m2", + }, + { + fileId = "528312", + text = "wyrmrest_destroyed_rubble_05.m2", + value = "wyrmrest_destroyed_rubble_05.m2", + }, + { + fileId = "528314", + text = "wyrmrest_destroyed_rubble_06.m2", + value = "wyrmrest_destroyed_rubble_06.m2", + }, + { + fileId = "528316", + text = "wyrmrest_destroyed_rubble_07.m2", + value = "wyrmrest_destroyed_rubble_07.m2", + }, + { + fileId = "528318", + text = "wyrmrest_destroyed_rubble_08.m2", + value = "wyrmrest_destroyed_rubble_08.m2", + }, + { + fileId = "528320", + text = "wyrmrest_destroyed_rubble_09.m2", + value = "wyrmrest_destroyed_rubble_09.m2", + }, + { + fileId = "528322", + text = "wyrmrest_destroyed_rubble_10.m2", + value = "wyrmrest_destroyed_rubble_10.m2", + }, + { + fileId = "528324", + text = "wyrmrest_destroyed_rubble_11.m2", + value = "wyrmrest_destroyed_rubble_11.m2", + }, + { + fileId = "528326", + text = "wyrmrest_destroyed_rubble_12.m2", + value = "wyrmrest_destroyed_rubble_12.m2", + }, + }, + text = "wyrmrest_rubble", + value = "wyrmrest_rubble", + }, + }, + text = "fallofazeroth", + value = "fallofazeroth", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190869", + text = "caveminelantern01.m2", + value = "caveminelantern01.m2", + }, + { + fileId = "190870", + text = "caveminelantern02.m2", + value = "caveminelantern02.m2", + }, + { + fileId = "190871", + text = "caveminelantern03.m2", + value = "caveminelantern03.m2", + }, + }, + text = "cavelanterns", + value = "cavelanterns", + }, + { + children = { + { + fileId = "319484", + text = "cavekobolddangersign_red_01.m2", + value = "cavekobolddangersign_red_01.m2", + }, + { + fileId = "190872", + text = "caveminekobold01.m2", + value = "caveminekobold01.m2", + }, + { + fileId = "190873", + text = "caveminekobold02.m2", + value = "caveminekobold02.m2", + }, + { + fileId = "190874", + text = "caveminekobold04.m2", + value = "caveminekobold04.m2", + }, + { + fileId = "190875", + text = "caveminekobold05.m2", + value = "caveminekobold05.m2", + }, + { + fileId = "190876", + text = "caveminekobold06.m2", + value = "caveminekobold06.m2", + }, + }, + text = "caveminekobolds", + value = "caveminekobolds", + }, + { + children = { + { + fileId = "190880", + text = "caveminespiderpillar01.m2", + value = "caveminespiderpillar01.m2", + }, + }, + text = "caveminespiderpillar01", + value = "caveminespiderpillar01", + }, + { + children = { + { + fileId = "190882", + text = "cavespiderweb01.m2", + value = "cavespiderweb01.m2", + }, + { + fileId = "190883", + text = "cavespiderweb02.m2", + value = "cavespiderweb02.m2", + }, + }, + text = "cavespiderwebs", + value = "cavespiderwebs", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "goldmine", + value = "goldmine", + }, + { + children = { + { + children = { + { + fileId = "190885", + text = "innbarrel.m2", + value = "innbarrel.m2", + }, + }, + text = "innbarrel", + value = "innbarrel", + }, + { + children = { + { + fileId = "190886", + text = "innbed.m2", + value = "innbed.m2", + }, + }, + text = "innbed", + value = "innbed", + }, + { + children = { + { + fileId = "190887", + text = "innbedcanopy.m2", + value = "innbedcanopy.m2", + }, + }, + text = "innbedcanopy", + value = "innbedcanopy", + }, + { + children = { + { + fileId = "190890", + text = "innchandelier.m2", + value = "innchandelier.m2", + }, + }, + text = "innchandelier", + value = "innchandelier", + }, + { + children = { + { + fileId = "190893", + text = "innlantern.m2", + value = "innlantern.m2", + }, + }, + text = "innlantern", + value = "innlantern", + }, + { + children = { + { + fileId = "190895", + text = "innpillow.m2", + value = "innpillow.m2", + }, + }, + text = "innpillow", + value = "innpillow", + }, + }, + text = "goldshireinn", + value = "goldshireinn", + }, + { + children = { + { + children = { + { + fileId = "523148", + text = "hot_old_god_lightning01.m2", + value = "hot_old_god_lightning01.m2", + }, + { + fileId = "523150", + text = "hot_old_god_lightning02.m2", + value = "hot_old_god_lightning02.m2", + }, + { + fileId = "523152", + text = "hot_old_god_lightning03.m2", + value = "hot_old_god_lightning03.m2", + }, + { + fileId = "523154", + text = "hot_old_god_lightning04.m2", + value = "hot_old_god_lightning04.m2", + }, + }, + text = "lightning", + value = "lightning", + }, + }, + text = "houroftwilight", + value = "houroftwilight", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190898", + text = "fishfountain.m2", + value = "fishfountain.m2", + }, + { + fileId = "190900", + text = "monasteryfalls.m2", + value = "monasteryfalls.m2", + }, + }, + text = "fountains", + value = "fountains", + }, + { + children = { + { + fileId = "190914", + text = "statuedmmountainking.m2", + value = "statuedmmountainking.m2", + }, + { + fileId = "190915", + text = "statuefountain.m2", + value = "statuefountain.m2", + }, + { + fileId = "190916", + text = "statuehefranger.m2", + value = "statuehefranger.m2", + }, + { + fileId = "190917", + text = "statuehemmage.m2", + value = "statuehemmage.m2", + }, + { + fileId = "190918", + text = "statuehfspear.m2", + value = "statuehfspear.m2", + }, + { + fileId = "190919", + text = "statuehfsunshield.m2", + value = "statuehfsunshield.m2", + }, + { + fileId = "190920", + text = "statuehfsunshieldclean.m2", + value = "statuehfsunshieldclean.m2", + }, + { + fileId = "190921", + text = "statuehftwinblades.m2", + value = "statuehftwinblades.m2", + }, + { + fileId = "190922", + text = "statuehmcaptain.m2", + value = "statuehmcaptain.m2", + }, + { + fileId = "190923", + text = "statuehmcaptainclean.m2", + value = "statuehmcaptainclean.m2", + }, + { + fileId = "190924", + text = "statuehmcrusader.m2", + value = "statuehmcrusader.m2", + }, + { + fileId = "190925", + text = "statuehmcrusaderclean.m2", + value = "statuehmcrusaderclean.m2", + }, + { + fileId = "190926", + text = "statuehmcrusadersoldier.m2", + value = "statuehmcrusadersoldier.m2", + }, + { + fileId = "190927", + text = "statuehmonearm.m2", + value = "statuehmonearm.m2", + }, + { + fileId = "190928", + text = "statuehmpaladin.m2", + value = "statuehmpaladin.m2", + }, + { + fileId = "190929", + text = "statuehmpriest.m2", + value = "statuehmpriest.m2", + }, + }, + text = "statues", + value = "statues", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "scarletmonastery", + value = "scarletmonastery", + }, + { + children = { + { + fileId = "530238", + text = "dwr_plate_01.m2", + value = "dwr_plate_01.m2", + }, + { + fileId = "530240", + text = "dwr_plate_02.m2", + value = "dwr_plate_02.m2", + }, + { + fileId = "530242", + text = "dwr_plate_03.m2", + value = "dwr_plate_03.m2", + }, + { + fileId = "530244", + text = "dwr_plate_04.m2", + value = "dwr_plate_04.m2", + }, + { + fileId = "530246", + text = "dwr_plate_05.m2", + value = "dwr_plate_05.m2", + }, + }, + text = "spineofthedestroyer", + value = "spineofthedestroyer", + }, + { + children = { + { + fileId = "190933", + text = "sunwell_bushes.m2", + value = "sunwell_bushes.m2", + }, + { + fileId = "190934", + text = "sunwell_lamps.m2", + value = "sunwell_lamps.m2", + }, + { + fileId = "190935", + text = "sunwell_trees.m2", + value = "sunwell_trees.m2", + }, + }, + text = "sunwell", + value = "sunwell", + }, + { + children = { + { + children = { + { + fileId = "531517", + text = "banner_azshara_nightelf_01.m2", + value = "banner_azshara_nightelf_01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + fileId = "533958", + text = "well_vortex_01.m2", + value = "well_vortex_01.m2", + }, + { + fileId = "571908", + text = "woe_courtyard_door01.m2", + value = "woe_courtyard_door01.m2", + }, + { + fileId = "531272", + text = "woe_demonsoul_01.m2", + value = "woe_demonsoul_01.m2", + }, + { + fileId = "536572", + text = "woe_fallentree.m2", + value = "woe_fallentree.m2", + }, + { + fileId = "571942", + text = "woe_fountain_pool.m2", + value = "woe_fountain_pool.m2", + }, + { + fileId = "536786", + text = "woe_palace_doors.m2", + value = "woe_palace_doors.m2", + }, + { + fileId = "534587", + text = "woe_palace_platform.m2", + value = "woe_palace_platform.m2", + }, + { + fileId = "536925", + text = "woe_palace_roots01.m2", + value = "woe_palace_roots01.m2", + }, + { + fileId = "536935", + text = "woe_palace_roots02.m2", + value = "woe_palace_roots02.m2", + }, + { + fileId = "536937", + text = "woe_palace_roots03.m2", + value = "woe_palace_roots03.m2", + }, + { + fileId = "536939", + text = "woe_palace_roots04.m2", + value = "woe_palace_roots04.m2", + }, + { + fileId = "534589", + text = "woe_palace_stairway.m2", + value = "woe_palace_stairway.m2", + }, + { + fileId = "536576", + text = "woe_redstump.m2", + value = "woe_redstump.m2", + }, + { + fileId = "536578", + text = "woe_redtree01.m2", + value = "woe_redtree01.m2", + }, + { + fileId = "536580", + text = "woe_redtree02.m2", + value = "woe_redtree02.m2", + }, + { + fileId = "536582", + text = "woe_redtree03.m2", + value = "woe_redtree03.m2", + }, + { + fileId = "536584", + text = "woe_redtree04.m2", + value = "woe_redtree04.m2", + }, + { + fileId = "536586", + text = "woe_redtreetwisted01.m2", + value = "woe_redtreetwisted01.m2", + }, + { + fileId = "536588", + text = "woe_redtreetwisted02.m2", + value = "woe_redtreetwisted02.m2", + }, + { + fileId = "536591", + text = "woe_redtreetwistedpurple.m2", + value = "woe_redtreetwistedpurple.m2", + }, + { + fileId = "532885", + text = "woe_well.m2", + value = "woe_well.m2", + }, + { + fileId = "533206", + text = "woe_well_02.m2", + value = "woe_well_02.m2", + }, + }, + text = "wellofeternity", + value = "wellofeternity", }, }, - text = "boartest", - value = "boartest", + text = "dungeon", + value = "dungeon", }, - }, - text = "test", - value = "test", - }, - { - children = { { children = { { children = { { - fileId = "189077", - text = "xyz.m2", - value = "xyz.m2", + children = { + { + children = { + { + fileId = "190963", + text = "hive_fireflies_01.m2", + value = "hive_fireflies_01.m2", + }, + { + fileId = "190964", + text = "hive_fireflies_large.m2", + value = "hive_fireflies_large.m2", + }, + }, + text = "fireflies", + value = "fireflies", + }, + { + children = { + { + fileId = "190967", + text = "hive_lightshaft01.m2", + value = "hive_lightshaft01.m2", + }, + { + fileId = "190968", + text = "hive_lightshaft02.m2", + value = "hive_lightshaft02.m2", + }, + }, + text = "lightshaft", + value = "lightshaft", + }, + { + children = { + { + fileId = "190970", + text = "hive_sand.m2", + value = "hive_sand.m2", + }, + { + fileId = "190971", + text = "hive_sandwaterfall.m2", + value = "hive_sandwaterfall.m2", + }, + }, + text = "sandwaterfall", + value = "sandwaterfall", + }, + { + children = { + { + fileId = "190974", + text = "hivesteam.m2", + value = "hivesteam.m2", + }, + }, + text = "steam", + value = "steam", + }, + }, + text = "anquiraj", + value = "anquiraj", }, - }, - text = "boxtest", - value = "boxtest", - }, - { - children = { { - fileId = "189078", - text = "shadertest_01.m2", - value = "shadertest_01.m2", + children = { + { + fileId = "191009", + text = "animaltrainer.m2", + value = "animaltrainer.m2", + }, + { + children = { + { + fileId = "527783", + text = "carnival_balloon_01.m2", + value = "carnival_balloon_01.m2", + }, + { + fileId = "527785", + text = "carnival_balloon_02.m2", + value = "carnival_balloon_02.m2", + }, + { + fileId = "527787", + text = "carnival_balloon_03.m2", + value = "carnival_balloon_03.m2", + }, + }, + text = "balloon", + value = "balloon", + }, + { + children = { + { + fileId = "518956", + text = "balloon_bunch_01.m2", + value = "balloon_bunch_01.m2", + }, + { + fileId = "518958", + text = "balloon_bunch_02.m2", + value = "balloon_bunch_02.m2", + }, + }, + text = "balloon_bunch", + value = "balloon_bunch", + }, + { + fileId = "191016", + text = "carni_cannon.m2", + value = "carni_cannon.m2", + }, + { + fileId = "191018", + text = "carni_cannontarget.m2", + value = "carni_cannontarget.m2", + }, + { + fileId = "191019", + text = "carni_wagon01.m2", + value = "carni_wagon01.m2", + }, + { + fileId = "191020", + text = "carni_wagon_empty01.m2", + value = "carni_wagon_empty01.m2", + }, + { + fileId = "191021", + text = "carnie_merchant01.m2", + value = "carnie_merchant01.m2", + }, + { + fileId = "191022", + text = "carnietent_small01.m2", + value = "carnietent_small01.m2", + }, + { + fileId = "531007", + text = "carnietent_small02.m2", + value = "carnietent_small02.m2", + }, + { + fileId = "191023", + text = "carnival_banner01.m2", + value = "carnival_banner01.m2", + }, + { + fileId = "191024", + text = "carnival_banner02.m2", + value = "carnival_banner02.m2", + }, + { + fileId = "191025", + text = "carnivalrailing.m2", + value = "carnivalrailing.m2", + }, + { + fileId = "191026", + text = "coketent.m2", + value = "coketent.m2", + }, + { + fileId = "571453", + text = "darkmoon_platform_gate.m2", + value = "darkmoon_platform_gate.m2", + }, + { + fileId = "534702", + text = "darkmoon_stringlights_all_large.m2", + value = "darkmoon_stringlights_all_large.m2", + }, + { + fileId = "534569", + text = "darkmoon_stringlights_green.m2", + value = "darkmoon_stringlights_green.m2", + }, + { + fileId = "534573", + text = "darkmoon_stringlights_purple.m2", + value = "darkmoon_stringlights_purple.m2", + }, + { + fileId = "534576", + text = "darkmoon_stringlights_yellow.m2", + value = "darkmoon_stringlights_yellow.m2", + }, + { + fileId = "575756", + text = "darkmoon_whackagnoll_barrel.m2", + value = "darkmoon_whackagnoll_barrel.m2", + }, + { + fileId = "534200", + text = "darkmoonbanner_ape.m2", + value = "darkmoonbanner_ape.m2", + }, + { + fileId = "534203", + text = "darkmoonbanner_cannon.m2", + value = "darkmoonbanner_cannon.m2", + }, + { + fileId = "534206", + text = "darkmoonbanner_fortune.m2", + value = "darkmoonbanner_fortune.m2", + }, + { + fileId = "534209", + text = "darkmoonbanner_pole.m2", + value = "darkmoonbanner_pole.m2", + }, + { + fileId = "534212", + text = "darkmoonbanner_wench.m2", + value = "darkmoonbanner_wench.m2", + }, + { + fileId = "537292", + text = "darkmoonfaire_banners_01.m2", + value = "darkmoonfaire_banners_01.m2", + }, + { + fileId = "537295", + text = "darkmoonfaire_banners_02.m2", + value = "darkmoonfaire_banners_02.m2", + }, + { + fileId = "571875", + text = "darkmoonfaire_banners_03.m2", + value = "darkmoonfaire_banners_03.m2", + }, + { + fileId = "532853", + text = "darkmoonfaire_entrance.m2", + value = "darkmoonfaire_entrance.m2", + }, + { + fileId = "532973", + text = "darkmoonfaire_fence_01.m2", + value = "darkmoonfaire_fence_01.m2", + }, + { + fileId = "532975", + text = "darkmoonfaire_fence_post.m2", + value = "darkmoonfaire_fence_post.m2", + }, + { + fileId = "536712", + text = "darkmoonfaire_goldring_01.m2", + value = "darkmoonfaire_goldring_01.m2", + }, + { + fileId = "532595", + text = "darkmoonfaire_post.m2", + value = "darkmoonfaire_post.m2", + }, + { + fileId = "536140", + text = "darkmoonfaire_tonkwall_01.m2", + value = "darkmoonfaire_tonkwall_01.m2", + }, + { + fileId = "536144", + text = "darkmoonfaire_tonkwall_02.m2", + value = "darkmoonfaire_tonkwall_02.m2", + }, + { + fileId = "537503", + text = "darkmoonfaire_tonkwall_03.m2", + value = "darkmoonfaire_tonkwall_03.m2", + }, + { + fileId = "537505", + text = "darkmoonfaire_tonkwall_04.m2", + value = "darkmoonfaire_tonkwall_04.m2", + }, + { + fileId = "532287", + text = "darkmoonfaire_wall_01.m2", + value = "darkmoonfaire_wall_01.m2", + }, + { + fileId = "191029", + text = "darkmoonfaireposter.m2", + value = "darkmoonfaireposter.m2", + }, + { + fileId = "191031", + text = "foodvendor.m2", + value = "foodvendor.m2", + }, + { + fileId = "191032", + text = "fortuneteller.m2", + value = "fortuneteller.m2", + }, + { + fileId = "191033", + text = "haybail01.m2", + value = "haybail01.m2", + }, + { + fileId = "191034", + text = "haybail02.m2", + value = "haybail02.m2", + }, + { + fileId = "191037", + text = "shoutbox.m2", + value = "shoutbox.m2", + }, + { + fileId = "191038", + text = "souvenireshop.m2", + value = "souvenireshop.m2", + }, + { + fileId = "532245", + text = "spookyeyes_01.m2", + value = "spookyeyes_01.m2", + }, + { + fileId = "191039", + text = "targetpractice.m2", + value = "targetpractice.m2", + }, + { + fileId = "191040", + text = "ticketmaster.m2", + value = "ticketmaster.m2", + }, + }, + text = "carnival", + value = "carnival", + }, + { + children = { + { + children = { + { + fileId = "2198606", + text = "centaur_arch01.m2", + value = "centaur_arch01.m2", + }, + { + fileId = "2198556", + text = "centaur_brokearch01.m2", + value = "centaur_brokearch01.m2", + }, + { + fileId = "2198540", + text = "centaur_brokearch02.m2", + value = "centaur_brokearch02.m2", + }, + { + fileId = "2198616", + text = "centaur_brokepillar01.m2", + value = "centaur_brokepillar01.m2", + }, + { + fileId = "2198523", + text = "centaur_pillar01.m2", + value = "centaur_pillar01.m2", + }, + { + fileId = "2198845", + text = "centaur_wall01.m2", + value = "centaur_wall01.m2", + }, + { + fileId = "2198518", + text = "centaur_wall_ruin01.m2", + value = "centaur_wall_ruin01.m2", + }, + }, + text = "centaurruins", + value = "centaurruins", + }, + }, + text = "desolace", + value = "desolace", + }, + { + children = { + { + children = { + { + fileId = "191084", + text = "altartidalmastery01.m2", + value = "altartidalmastery01.m2", + }, + }, + text = "altaroftidalmastery", + value = "altaroftidalmastery", + }, + { + children = { + { + fileId = "191085", + text = "airrift.m2", + value = "airrift.m2", + }, + { + fileId = "191087", + text = "earthrift.m2", + value = "earthrift.m2", + }, + { + fileId = "191088", + text = "firerift.m2", + value = "firerift.m2", + }, + { + fileId = "191093", + text = "waterrift.m2", + value = "waterrift.m2", + }, + }, + text = "elementalrifts", + value = "elementalrifts", + }, + { + children = { + { + fileId = "191094", + text = "helpwantedposter.m2", + value = "helpwantedposter.m2", + }, + }, + text = "helpwantedposter", + value = "helpwantedposter", + }, + { + children = { + { + fileId = "191096", + text = "ne_lanternblue01.m2", + value = "ne_lanternblue01.m2", + }, + }, + text = "nightelflanternblue", + value = "nightelflanternblue", + }, + { + children = { + { + fileId = "191098", + text = "ne_glaive01.m2", + value = "ne_glaive01.m2", + }, + { + fileId = "191099", + text = "ne_glaive02.m2", + value = "ne_glaive02.m2", + }, + { + fileId = "191100", + text = "ne_glaive03.m2", + value = "ne_glaive03.m2", + }, + { + fileId = "191101", + text = "ne_glaive04.m2", + value = "ne_glaive04.m2", + }, + }, + text = "nightelfweapons", + value = "nightelfweapons", + }, + { + children = { + { + fileId = "191103", + text = "novagrave1.m2", + value = "novagrave1.m2", + }, + }, + text = "novagrave", + value = "novagrave", + }, + { + children = { + { + fileId = "191107", + text = "horde_package01.m2", + value = "horde_package01.m2", + }, + }, + text = "package", + value = "package", + }, + { + children = { + { + fileId = "191109", + text = "paladinshrine.m2", + value = "paladinshrine.m2", + }, + }, + text = "paladinshrine", + value = "paladinshrine", + }, + { + children = { + { + fileId = "394982", + text = "generic_steam_cloud_deepholm.m2", + value = "generic_steam_cloud_deepholm.m2", + }, + { + fileId = "394983", + text = "generic_steam_cloud_purple.m2", + value = "generic_steam_cloud_purple.m2", + }, + { + fileId = "394984", + text = "generic_steam_cloud_small.m2", + value = "generic_steam_cloud_small.m2", + }, + { + fileId = "394985", + text = "generic_steam_cloud_teal.m2", + value = "generic_steam_cloud_teal.m2", + }, + { + fileId = "412601", + text = "generic_steam_cloud_thin.m2", + value = "generic_steam_cloud_thin.m2", + }, + { + fileId = "412602", + text = "generic_steam_cloud_thinner.m2", + value = "generic_steam_cloud_thinner.m2", + }, + { + fileId = "412603", + text = "generic_steam_cloud_thinnest.m2", + value = "generic_steam_cloud_thinnest.m2", + }, + }, + text = "steamclouds", + value = "steamclouds", + }, + }, + text = "generaldoodads", + value = "generaldoodads", + }, + { + children = { + { + fileId = "191177", + text = "icyrune01.m2", + value = "icyrune01.m2", + }, + }, + text = "naxxramas", + value = "naxxramas", + }, + { + children = { + { + children = { + { + fileId = "191217", + text = "plaguecauldronactive.m2", + value = "plaguecauldronactive.m2", + }, + { + fileId = "191218", + text = "plaguecauldronactivebase.m2", + value = "plaguecauldronactivebase.m2", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "plaguelands", + value = "plaguelands", + }, + { + children = { + { + children = { + { + fileId = "191347", + text = "cracked_ice01.m2", + value = "cracked_ice01.m2", + }, + }, + text = "crackedice", + value = "crackedice", + }, + }, + text = "winterspringgrove", + value = "winterspringgrove", }, }, - text = "shader", - value = "shader", + text = "doodad", + value = "doodad", }, }, - text = "arttest", - value = "arttest", + text = "environment", + value = "environment", }, { children = { @@ -59665,5005 +92408,8446 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "189079", - text = "bootybayentrance_02.m2", - value = "bootybayentrance_02.m2", + children = { + { + fileId = "191370", + text = "arakkoahouse_interiorglow.m2", + value = "arakkoahouse_interiorglow.m2", + }, + { + fileId = "191371", + text = "arakkoahut_interiorglow.m2", + value = "arakkoahut_interiorglow.m2", + }, + { + fileId = "191372", + text = "arakkoashack_insideglow.m2", + value = "arakkoashack_insideglow.m2", + }, + }, + text = "arakkoa_hut_glow", + value = "arakkoa_hut_glow", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "arakkoa", + value = "arakkoa", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191379", + text = "auchindoun_bridge_fx.m2", + value = "auchindoun_bridge_fx.m2", + }, + { + fileId = "191380", + text = "auchindoun_bridge_spirits_floating.m2", + value = "auchindoun_bridge_spirits_floating.m2", + }, + { + fileId = "191381", + text = "auchindoun_bridge_spirits_flying.m2", + value = "auchindoun_bridge_spirits_flying.m2", + }, + { + fileId = "191382", + text = "auchindoun_bridge_spirits_simple.m2", + value = "auchindoun_bridge_spirits_simple.m2", + }, + { + fileId = "191383", + text = "auchindoun_bridge_swirl_filler.m2", + value = "auchindoun_bridge_swirl_filler.m2", + }, + { + fileId = "191384", + text = "auchindoun_bridge_volumelight.m2", + value = "auchindoun_bridge_volumelight.m2", + }, + }, + text = "bridge_fx", + value = "bridge_fx", + }, + { + children = { + { + fileId = "191395", + text = "ancient_d_coffin.m2", + value = "ancient_d_coffin.m2", + }, + }, + text = "coffin", + value = "coffin", + }, + { + children = { + { + fileId = "191398", + text = "auchindoun_door_swinging.m2", + value = "auchindoun_door_swinging.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "191399", + text = "auchindoun_ethereal_ribbon_type1.m2", + value = "auchindoun_ethereal_ribbon_type1.m2", + }, + { + fileId = "191400", + text = "auchindoun_ethereal_ribbon_type2.m2", + value = "auchindoun_ethereal_ribbon_type2.m2", + }, + { + fileId = "191401", + text = "auchindoun_ethereal_ribbon_type3.m2", + value = "auchindoun_ethereal_ribbon_type3.m2", + }, + { + fileId = "191402", + text = "auchindoun_ethereal_ribbon_type4.m2", + value = "auchindoun_ethereal_ribbon_type4.m2", + }, + { + fileId = "191403", + text = "auchindoun_ethereal_ribbon_type5.m2", + value = "auchindoun_ethereal_ribbon_type5.m2", + }, + }, + text = "ethereal_ribbons", + value = "ethereal_ribbons", + }, + { + children = { + { + fileId = "191408", + text = "auch_etherreal_ribbon_type1_part_a.m2", + value = "auch_etherreal_ribbon_type1_part_a.m2", + }, + { + fileId = "191409", + text = "auch_etherreal_ribbon_type1_part_b.m2", + value = "auch_etherreal_ribbon_type1_part_b.m2", + }, + { + fileId = "191410", + text = "auch_etherreal_ribbon_type1_part_c.m2", + value = "auch_etherreal_ribbon_type1_part_c.m2", + }, + { + fileId = "191411", + text = "auch_etherreal_ribbon_type2_part_a.m2", + value = "auch_etherreal_ribbon_type2_part_a.m2", + }, + { + fileId = "191412", + text = "auch_etherreal_ribbon_type2_part_b.m2", + value = "auch_etherreal_ribbon_type2_part_b.m2", + }, + { + fileId = "191413", + text = "auch_etherreal_ribbon_type2_part_c.m2", + value = "auch_etherreal_ribbon_type2_part_c.m2", + }, + { + fileId = "191414", + text = "auch_etherreal_ribbon_type3_part_a.m2", + value = "auch_etherreal_ribbon_type3_part_a.m2", + }, + { + fileId = "191415", + text = "auch_etherreal_ribbon_type3_part_b.m2", + value = "auch_etherreal_ribbon_type3_part_b.m2", + }, + { + fileId = "191416", + text = "auch_etherreal_ribbon_type3_part_c.m2", + value = "auch_etherreal_ribbon_type3_part_c.m2", + }, + { + fileId = "191417", + text = "auch_etherreal_ribbon_type4_part_a.m2", + value = "auch_etherreal_ribbon_type4_part_a.m2", + }, + { + fileId = "191418", + text = "auch_etherreal_ribbon_type4_part_b.m2", + value = "auch_etherreal_ribbon_type4_part_b.m2", + }, + { + fileId = "191419", + text = "auch_etherreal_ribbon_type4_part_c.m2", + value = "auch_etherreal_ribbon_type4_part_c.m2", + }, + { + fileId = "191420", + text = "auch_etherreal_ribbon_type5_part_a.m2", + value = "auch_etherreal_ribbon_type5_part_a.m2", + }, + { + fileId = "191421", + text = "auch_etherreal_ribbon_type5_part_b.m2", + value = "auch_etherreal_ribbon_type5_part_b.m2", + }, + { + fileId = "191422", + text = "auch_etherreal_ribbon_type5_part_c.m2", + value = "auch_etherreal_ribbon_type5_part_c.m2", + }, + }, + text = "ethereal_ribbons_individual", + value = "ethereal_ribbons_individual", + }, + { + children = { + { + fileId = "191425", + text = "draenei_spirit_head.m2", + value = "draenei_spirit_head.m2", + }, + { + fileId = "191426", + text = "draenei_spirit_red.m2", + value = "draenei_spirit_red.m2", + }, + }, + text = "spirit_fx", + value = "spirit_fx", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "auchindoun", + value = "auchindoun", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191427", + text = "blacktemple_gen_door.m2", + value = "blacktemple_gen_door.m2", + }, + { + fileId = "191428", + text = "bt_commondoor.m2", + value = "bt_commondoor.m2", + }, + { + fileId = "191430", + text = "bt_gate.m2", + value = "bt_gate.m2", + }, + { + fileId = "191433", + text = "bt_gate_solid.m2", + value = "bt_gate_solid.m2", + }, + { + fileId = "191436", + text = "bt_illidan_door.m2", + value = "bt_illidan_door.m2", + }, + { + fileId = "191437", + text = "bt_illidan_door_left.m2", + value = "bt_illidan_door_left.m2", + }, + { + fileId = "191438", + text = "bt_illidan_door_right.m2", + value = "bt_illidan_door_right.m2", + }, + { + fileId = "191439", + text = "bt_maindoor.m2", + value = "bt_maindoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "191444", + text = "blacktemple_waterfall_type1.m2", + value = "blacktemple_waterfall_type1.m2", + }, + }, + text = "blueenergy", + value = "blueenergy", + }, + { + children = { + { + fileId = "191447", + text = "bt_brazier.m2", + value = "bt_brazier.m2", + }, + { + fileId = "191448", + text = "bt_brazier_blue.m2", + value = "bt_brazier_blue.m2", + }, + { + fileId = "191449", + text = "bt_brazier_broken.m2", + value = "bt_brazier_broken.m2", + }, + { + fileId = "191450", + text = "bt_brazier_green.m2", + value = "bt_brazier_green.m2", + }, + { + fileId = "191451", + text = "bt_brazier_red.m2", + value = "bt_brazier_red.m2", + }, + { + fileId = "191452", + text = "bt_brazier_violet.m2", + value = "bt_brazier_violet.m2", + }, + { + fileId = "191453", + text = "bt_brazier_yellow.m2", + value = "bt_brazier_yellow.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "191454", + text = "bt_drapes.m2", + value = "bt_drapes.m2", + }, + }, + text = "drapes", + value = "drapes", + }, + { + children = { + { + fileId = "191467", + text = "bt_sewerfall.m2", + value = "bt_sewerfall.m2", + }, + { + fileId = "191468", + text = "bt_sewergutter_hall.m2", + value = "bt_sewergutter_hall.m2", + }, + { + fileId = "191469", + text = "bt_sewergutter_section2.m2", + value = "bt_sewergutter_section2.m2", + }, + { + fileId = "191470", + text = "bt_sewerramp.m2", + value = "bt_sewerramp.m2", + }, + { + fileId = "191471", + text = "bt_sewerwater_bossroom.m2", + value = "bt_sewerwater_bossroom.m2", + }, + { + fileId = "191472", + text = "bt_sewerwater_section1.m2", + value = "bt_sewerwater_section1.m2", + }, + }, + text = "sewerwater", + value = "sewerwater", + }, + { + children = { + { + fileId = "191473", + text = "bt_statueeyes.m2", + value = "bt_statueeyes.m2", + }, + { + fileId = "191474", + text = "bt_statueeyes_green.m2", + value = "bt_statueeyes_green.m2", + }, + }, + text = "statue", + value = "statue", + }, + { + children = { + { + fileId = "191476", + text = "bt_vines01.m2", + value = "bt_vines01.m2", + }, + { + fileId = "191477", + text = "bt_vines02.m2", + value = "bt_vines02.m2", + }, + }, + text = "vines", + value = "vines", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "blacktemple", + value = "blacktemple", + }, + { + children = { + { + children = { + { + fileId = "191478", + text = "bladesedgebush01.m2", + value = "bladesedgebush01.m2", + }, + { + fileId = "191479", + text = "bladesedgebush02.m2", + value = "bladesedgebush02.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "191482", + text = "darkportal_bladesedge_particles.m2", + value = "darkportal_bladesedge_particles.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + { + children = { + { + fileId = "191483", + text = "bem_dragon_01.m2", + value = "bem_dragon_01.m2", + }, + { + fileId = "191484", + text = "bem_dragon_02.m2", + value = "bem_dragon_02.m2", + }, + { + fileId = "191485", + text = "bem_dragon_03.m2", + value = "bem_dragon_03.m2", + }, + { + fileId = "191486", + text = "bem_dragon_04.m2", + value = "bem_dragon_04.m2", + }, + { + fileId = "191487", + text = "bem_dragon_05.m2", + value = "bem_dragon_05.m2", + }, + }, + text = "dragon", + value = "dragon", + }, + { + children = { + { + children = { + { + fileId = "191488", + text = "ogrila_crystal01.m2", + value = "ogrila_crystal01.m2", + }, + { + fileId = "191489", + text = "ogrila_crystal02.m2", + value = "ogrila_crystal02.m2", + }, + { + fileId = "191490", + text = "ogrila_crystal03.m2", + value = "ogrila_crystal03.m2", + }, + }, + text = "ogrilacrystals", + value = "ogrilacrystals", + }, + { + children = { + { + fileId = "191491", + text = "ogrila_banner.m2", + value = "ogrila_banner.m2", + }, + { + fileId = "191492", + text = "ogrila_hut.m2", + value = "ogrila_hut.m2", + }, + }, + text = "ogrilahut", + value = "ogrilahut", }, }, - text = "bootyentrance", - value = "bootyentrance", + text = "ogrila", + value = "ogrila", }, { children = { { - fileId = "189085", - text = "fishdeadblue.m2", - value = "fishdeadblue.m2", + fileId = "191497", + text = "bladesedge_floatingsmall01.m2", + value = "bladesedge_floatingsmall01.m2", }, { - fileId = "189086", - text = "fishdeadgreen.m2", - value = "fishdeadgreen.m2", + fileId = "191498", + text = "bladesedge_floatingsmall02.m2", + value = "bladesedge_floatingsmall02.m2", }, { - fileId = "189087", - text = "fishdeadorange.m2", - value = "fishdeadorange.m2", + fileId = "191499", + text = "bladesedge_overhangrock_large_01.m2", + value = "bladesedge_overhangrock_large_01.m2", }, { - fileId = "189088", - text = "fishdeadpurple.m2", - value = "fishdeadpurple.m2", + fileId = "191500", + text = "bladesedge_overhangrock_large_02.m2", + value = "bladesedge_overhangrock_large_02.m2", }, { - fileId = "189089", - text = "fishfrenzyblue.m2", - value = "fishfrenzyblue.m2", + fileId = "191501", + text = "bladesedge_overhangrock_small_01.m2", + value = "bladesedge_overhangrock_small_01.m2", }, { - fileId = "189090", - text = "fishfrenzygreen.m2", - value = "fishfrenzygreen.m2", + fileId = "191502", + text = "bladesedge_overhangrock_small_02.m2", + value = "bladesedge_overhangrock_small_02.m2", }, { - fileId = "189091", - text = "fishrack.m2", - value = "fishrack.m2", + fileId = "191503", + text = "bladesedge_overhangrock_small_03.m2", + value = "bladesedge_overhangrock_small_03.m2", }, - }, - text = "deadfish", - value = "deadfish", - }, - { - children = { { - fileId = "189092", - text = "fishingbox.m2", - value = "fishingbox.m2", + fileId = "191504", + text = "bladesedgecliffrock01.m2", + value = "bladesedgecliffrock01.m2", }, - }, - text = "fishingbox", - value = "fishingbox", - }, - { - children = { { - fileId = "189093", - text = "fishingpole01.m2", - value = "fishingpole01.m2", + fileId = "191505", + text = "bladesedgecliffrock02.m2", + value = "bladesedgecliffrock02.m2", }, { - fileId = "189094", - text = "fishingpole02.m2", - value = "fishingpole02.m2", + fileId = "191506", + text = "bladesedgecliffrock03.m2", + value = "bladesedgecliffrock03.m2", }, - }, - text = "fishingpoles", - value = "fishingpoles", - }, - { - children = { { - fileId = "189095", - text = "goblinstatuebooty.m2", - value = "goblinstatuebooty.m2", + fileId = "191507", + text = "bladesedgegroundrock01.m2", + value = "bladesedgegroundrock01.m2", }, - }, - text = "goblinstatue", - value = "goblinstatue", - }, - { - children = { { - fileId = "189097", - text = "harpoon01.m2", - value = "harpoon01.m2", + fileId = "191508", + text = "bladesedgegroundrock02.m2", + value = "bladesedgegroundrock02.m2", + }, + { + fileId = "191509", + text = "bladesedgegroundrock03.m2", + value = "bladesedgegroundrock03.m2", + }, + { + fileId = "191510", + text = "bladesedgerock_finger01.m2", + value = "bladesedgerock_finger01.m2", + }, + { + fileId = "191511", + text = "bladesedgerock_finger02.m2", + value = "bladesedgerock_finger02.m2", + }, + { + fileId = "191512", + text = "bladesedgerock_finger03.m2", + value = "bladesedgerock_finger03.m2", + }, + { + fileId = "191514", + text = "bladesedgerockarch01.m2", + value = "bladesedgerockarch01.m2", + }, + { + fileId = "191515", + text = "bladesedgerockarch02.m2", + value = "bladesedgerockarch02.m2", + }, + { + fileId = "191516", + text = "bladesedgerockbridge01.m2", + value = "bladesedgerockbridge01.m2", }, }, - text = "harpoons", - value = "harpoons", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "189099", - text = "sharkmodel01.m2", - value = "sharkmodel01.m2", + fileId = "191535", + text = "simongame_floatingcrystal.m2", + value = "simongame_floatingcrystal.m2", + }, + { + fileId = "191536", + text = "simongame_largebase.m2", + value = "simongame_largebase.m2", + }, + { + fileId = "191537", + text = "simongame_largebluetree.m2", + value = "simongame_largebluetree.m2", + }, + { + fileId = "191538", + text = "simongame_largegreentree.m2", + value = "simongame_largegreentree.m2", + }, + { + fileId = "191539", + text = "simongame_largeredtree.m2", + value = "simongame_largeredtree.m2", + }, + { + fileId = "191540", + text = "simongame_largeyellowtree.m2", + value = "simongame_largeyellowtree.m2", + }, + { + fileId = "191541", + text = "simongame_smallbluebase.m2", + value = "simongame_smallbluebase.m2", + }, + { + fileId = "191542", + text = "simongame_smallbluetree.m2", + value = "simongame_smallbluetree.m2", + }, + { + fileId = "191543", + text = "simongame_smallgreenbase.m2", + value = "simongame_smallgreenbase.m2", + }, + { + fileId = "191544", + text = "simongame_smallgreentree.m2", + value = "simongame_smallgreentree.m2", + }, + { + fileId = "191545", + text = "simongame_smallredbase.m2", + value = "simongame_smallredbase.m2", + }, + { + fileId = "191546", + text = "simongame_smallredtree.m2", + value = "simongame_smallredtree.m2", + }, + { + fileId = "191547", + text = "simongame_smallyellowbase.m2", + value = "simongame_smallyellowbase.m2", + }, + { + fileId = "191548", + text = "simongame_smallyellowtree.m2", + value = "simongame_smallyellowtree.m2", }, }, - text = "sharkmodels", - value = "sharkmodels", + text = "simon", + value = "simon", }, - }, - text = "passivedoodad", - value = "passivedoodad", - }, - }, - text = "bootybay", - value = "bootybay", - }, - { - children = { - { - children = { { children = { { - fileId = "189103", - text = "darkironnode.m2", - value = "darkironnode.m2", + fileId = "191550", + text = "bladesedgecrater01.m2", + value = "bladesedgecrater01.m2", }, { - fileId = "189104", - text = "darkironnodeparticlerock.m2", - value = "darkironnodeparticlerock.m2", + fileId = "191551", + text = "bladesedgetree01.m2", + value = "bladesedgetree01.m2", + }, + { + fileId = "191552", + text = "bladesedgetree02.m2", + value = "bladesedgetree02.m2", + }, + { + fileId = "191553", + text = "bladesedgetree03.m2", + value = "bladesedgetree03.m2", + }, + { + fileId = "191554", + text = "bladesedgetree04.m2", + value = "bladesedgetree04.m2", + }, + { + fileId = "191555", + text = "bladesedgetree05.m2", + value = "bladesedgetree05.m2", + }, + { + fileId = "191556", + text = "bladesedgetree06.m2", + value = "bladesedgetree06.m2", + }, + { + fileId = "191557", + text = "bladesedgetree07.m2", + value = "bladesedgetree07.m2", + }, + { + fileId = "191558", + text = "bladesedgetree08.m2", + value = "bladesedgetree08.m2", + }, + { + fileId = "191559", + text = "bladesedgetreestump.m2", + value = "bladesedgetreestump.m2", + }, + { + fileId = "191561", + text = "bladesterokkarbush01.m2", + value = "bladesterokkarbush01.m2", + }, + { + fileId = "191562", + text = "bladesterokkarfallentree.m2", + value = "bladesterokkarfallentree.m2", + }, + { + fileId = "191563", + text = "bladesterokkartreelarge.m2", + value = "bladesterokkartreelarge.m2", + }, + { + fileId = "191564", + text = "bladesterokkartreemedium.m2", + value = "bladesterokkartreemedium.m2", + }, + { + fileId = "191565", + text = "bladesterokkartreenoleaves01.m2", + value = "bladesterokkartreenoleaves01.m2", + }, + { + fileId = "191566", + text = "bladesterokkartreenoleaves02.m2", + value = "bladesterokkartreenoleaves02.m2", + }, + { + fileId = "191567", + text = "bladesterokkartreesapling.m2", + value = "bladesterokkartreesapling.m2", + }, + { + fileId = "191568", + text = "bladesterokkartreesmall.m2", + value = "bladesterokkartreesmall.m2", + }, + { + fileId = "191569", + text = "bladesterokkartreestump.m2", + value = "bladesterokkartreestump.m2", + }, + { + fileId = "191570", + text = "bladesterokkartreestump02.m2", + value = "bladesterokkartreestump02.m2", }, }, - text = "darkironnode", - value = "darkironnode", + text = "trees", + value = "trees", }, }, - text = "activedoodads", - value = "activedoodads", + text = "bladesedge", + value = "bladesedge", }, { children = { { children = { { - fileId = "189105", - text = "deadheadboar.m2", - value = "deadheadboar.m2", - }, - { - fileId = "189106", - text = "deadheaddeer.m2", - value = "deadheaddeer.m2", + fileId = "191576", + text = "bloodmyst_be_portal.m2", + value = "bloodmyst_be_portal.m2", }, }, - text = "animalheads", - value = "animalheads", + text = "be_portal", + value = "be_portal", }, { children = { { - fileId = "189110", - text = "ashpeople01.m2", - value = "ashpeople01.m2", + fileId = "191579", + text = "bloodmystcrystal01.m2", + value = "bloodmystcrystal01.m2", }, { - fileId = "189112", - text = "ashpeople02.m2", - value = "ashpeople02.m2", + fileId = "191580", + text = "bloodmystcrystal02.m2", + value = "bloodmystcrystal02.m2", }, { - fileId = "189113", - text = "ashpeople03.m2", - value = "ashpeople03.m2", + fileId = "191581", + text = "bloodmystcrystal03.m2", + value = "bloodmystcrystal03.m2", }, { - fileId = "189114", - text = "ashpeople04.m2", - value = "ashpeople04.m2", + fileId = "191583", + text = "bloodmystcrystalaparatus01.m2", + value = "bloodmystcrystalaparatus01.m2", }, { - fileId = "189115", - text = "ashpeople05.m2", - value = "ashpeople05.m2", + fileId = "191584", + text = "bloodmystcrystalbig01_corrupted.m2", + value = "bloodmystcrystalbig01_corrupted.m2", + }, + { + fileId = "191585", + text = "bloodmystcrystalbig02_corrupted.m2", + value = "bloodmystcrystalbig02_corrupted.m2", + }, + { + fileId = "191586", + text = "bloodmystcrystalbig03_corrupted.m2", + value = "bloodmystcrystalbig03_corrupted.m2", + }, + { + fileId = "191588", + text = "bloodmystcrystalfloating01.m2", + value = "bloodmystcrystalfloating01.m2", + }, + { + fileId = "191589", + text = "bloodmystcrystalsmall01_corrupted.m2", + value = "bloodmystcrystalsmall01_corrupted.m2", + }, + { + fileId = "191590", + text = "bloodmystcrystalsmall02_corrupted.m2", + value = "bloodmystcrystalsmall02_corrupted.m2", + }, + { + fileId = "191591", + text = "bloodmystcrystalsmall03_corrupted.m2", + value = "bloodmystcrystalsmall03_corrupted.m2", }, }, - text = "ashpeople", - value = "ashpeople", + text = "crystals", + value = "crystals", }, { children = { { - fileId = "189118", - text = "orcbonfire.m2", - value = "orcbonfire.m2", + fileId = "191594", + text = "bloodmyst_powercore.m2", + value = "bloodmyst_powercore.m2", }, { - fileId = "189119", - text = "orcbonfire_blue.m2", - value = "orcbonfire_blue.m2", + fileId = "191614", + text = "powercore_coil_fx.m2", + value = "powercore_coil_fx.m2", }, + }, + text = "powercore", + value = "powercore", + }, + { + children = { { - fileId = "189120", - text = "orcbonfireoff.m2", - value = "orcbonfireoff.m2", + fileId = "191616", + text = "bloodmystrockrune01.m2", + value = "bloodmystrockrune01.m2", + }, + { + fileId = "191618", + text = "bloodmystrockrune02.m2", + value = "bloodmystrockrune02.m2", }, }, - text = "bonfire", - value = "bonfire", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "189124", - text = "burningropebridge.m2", - value = "burningropebridge.m2", + fileId = "191627", + text = "bloodmystbush01.m2", + value = "bloodmystbush01.m2", + }, + { + fileId = "191628", + text = "bloodmystbush02.m2", + value = "bloodmystbush02.m2", + }, + { + fileId = "191629", + text = "bloodmystbush03.m2", + value = "bloodmystbush03.m2", + }, + { + fileId = "191631", + text = "bloodmystredwaterfall.m2", + value = "bloodmystredwaterfall.m2", + }, + { + fileId = "191632", + text = "bloodmysttree01.m2", + value = "bloodmysttree01.m2", + }, + { + fileId = "191633", + text = "bloodmysttree01_web.m2", + value = "bloodmysttree01_web.m2", + }, + { + fileId = "191634", + text = "bloodmysttree02.m2", + value = "bloodmysttree02.m2", + }, + { + fileId = "191635", + text = "bloodmysttree02_web.m2", + value = "bloodmysttree02_web.m2", }, - }, - text = "bridges", - value = "bridges", - }, - { - children = { { - fileId = "189126", - text = "burninggiantwheel.m2", - value = "burninggiantwheel.m2", + fileId = "191636", + text = "bloodmysttree03_web.m2", + value = "bloodmysttree03_web.m2", }, - }, - text = "burninggiantwheel", - value = "burninggiantwheel", - }, - { - children = { { - fileId = "189127", - text = "burningsteppscliffrock01.m2", - value = "burningsteppscliffrock01.m2", + fileId = "191637", + text = "bloodmysttree07_web.m2", + value = "bloodmysttree07_web.m2", }, { - fileId = "189128", - text = "burningsteppscliffrock02.m2", - value = "burningsteppscliffrock02.m2", + fileId = "191638", + text = "bloodmysttreecrystal01.m2", + value = "bloodmysttreecrystal01.m2", }, { - fileId = "189129", - text = "burningsteppscliffrock03.m2", - value = "burningsteppscliffrock03.m2", + fileId = "191639", + text = "bloodmysttreecrystal02.m2", + value = "bloodmysttreecrystal02.m2", }, { - fileId = "189130", - text = "burningsteppscliffrock04.m2", - value = "burningsteppscliffrock04.m2", + fileId = "191640", + text = "bloodmysttreefallen.m2", + value = "bloodmysttreefallen.m2", }, { - fileId = "189131", - text = "burningsteppscliffrock05.m2", - value = "burningsteppscliffrock05.m2", + fileId = "191641", + text = "bloodmysttreerunes01.m2", + value = "bloodmysttreerunes01.m2", }, { - fileId = "189132", - text = "burningsteppscliffrock06.m2", - value = "burningsteppscliffrock06.m2", + fileId = "191642", + text = "bloodmysttreerunes02.m2", + value = "bloodmysttreerunes02.m2", }, }, - text = "cliffrocks", - value = "cliffrocks", + text = "trees", + value = "trees", }, { children = { { - fileId = "189134", - text = "fallingembers.m2", - value = "fallingembers.m2", + fileId = "191644", + text = "cocoon_yellow.m2", + value = "cocoon_yellow.m2", }, - }, - text = "fallingembers", - value = "fallingembers", - }, - { - children = { { - fileId = "189135", - text = "burningsteppesfence.m2", - value = "burningsteppesfence.m2", + fileId = "191645", + text = "cocoontrap_yellow.m2", + value = "cocoontrap_yellow.m2", }, { - fileId = "189136", - text = "burningsteppesfencechain.m2", - value = "burningsteppesfencechain.m2", + fileId = "191648", + text = "nastyspiderweb_yellow.m2", + value = "nastyspiderweb_yellow.m2", }, { - fileId = "189137", - text = "burningsteppesfencepost.m2", - value = "burningsteppesfencepost.m2", + fileId = "191651", + text = "spidereggsack_yellow.m2", + value = "spidereggsack_yellow.m2", }, - }, - text = "fences", - value = "fences", - }, - { - children = { { - fileId = "189141", - text = "lavaaltar.m2", - value = "lavaaltar.m2", + fileId = "191652", + text = "spidereggsground_yellow.m2", + value = "spidereggsground_yellow.m2", + }, + { + fileId = "191656", + text = "webdangle_yellow.m2", + value = "webdangle_yellow.m2", }, }, - text = "lavaaltar", - value = "lavaaltar", + text = "webs", + value = "webs", }, + }, + text = "bloodmyst", + value = "bloodmyst", + }, + { + children = { { children = { { - fileId = "189147", - text = "lavabridge.m2", - value = "lavabridge.m2", + fileId = "191658", + text = "bonewastesboneshrine01.m2", + value = "bonewastesboneshrine01.m2", }, }, - text = "lavabridge", - value = "lavabridge", + text = "boneshrine", + value = "boneshrine", }, { children = { { - fileId = "189151", - text = "lavafallsblackrock01.m2", - value = "lavafallsblackrock01.m2", + fileId = "191661", + text = "bonewastestreetrunk01.m2", + value = "bonewastestreetrunk01.m2", }, { - fileId = "189152", - text = "lavafallsblackrock02.m2", - value = "lavafallsblackrock02.m2", + fileId = "191663", + text = "bonewastestreetrunk02.m2", + value = "bonewastestreetrunk02.m2", }, { - fileId = "189153", - text = "lavafallsblackrock03.m2", - value = "lavafallsblackrock03.m2", + fileId = "191664", + text = "bonewastestreetrunk03.m2", + value = "bonewastestreetrunk03.m2", }, { - fileId = "189154", - text = "lavafallsblackrock04.m2", - value = "lavafallsblackrock04.m2", + fileId = "191665", + text = "bonewastestreetrunk04.m2", + value = "bonewastestreetrunk04.m2", + }, + { + fileId = "191666", + text = "bonewastestreetrunk05.m2", + value = "bonewastestreetrunk05.m2", + }, + { + fileId = "191667", + text = "bonewastestreetrunk06.m2", + value = "bonewastestreetrunk06.m2", }, }, - text = "lavafalls", - value = "lavafalls", + text = "trees", + value = "trees", }, + }, + text = "bonewastes", + value = "bonewastes", + }, + { + children = { { children = { { - fileId = "189158", - text = "lavapillar01.m2", - value = "lavapillar01.m2", + children = { + { + fileId = "191668", + text = "cf_elevatorplatform.m2", + value = "cf_elevatorplatform.m2", + }, + { + fileId = "191669", + text = "cf_elevatorplatform_small.m2", + value = "cf_elevatorplatform_small.m2", + }, + }, + text = "elevator", + value = "elevator", }, { - fileId = "189159", - text = "lavapillar02.m2", - value = "lavapillar02.m2", + children = { + { + fileId = "191683", + text = "coilfang_pumpingdoor.m2", + value = "coilfang_pumpingdoor.m2", + }, + }, + text = "pumpingdoor", + value = "pumpingdoor", }, { - fileId = "189160", - text = "lavapillar03.m2", - value = "lavapillar03.m2", + children = { + { + fileId = "191688", + text = "coilfang_raid_bridge_part1.m2", + value = "coilfang_raid_bridge_part1.m2", + }, + { + fileId = "191689", + text = "coilfang_raid_bridge_part2.m2", + value = "coilfang_raid_bridge_part2.m2", + }, + { + fileId = "191690", + text = "coilfang_raid_bridge_part3.m2", + value = "coilfang_raid_bridge_part3.m2", + }, + }, + text = "raid_bridge", + value = "raid_bridge", }, { - fileId = "189161", - text = "lavapillar04.m2", - value = "lavapillar04.m2", + children = { + { + fileId = "191705", + text = "coilfang_raid_bridge_controls.m2", + value = "coilfang_raid_bridge_controls.m2", + }, + { + fileId = "191706", + text = "coilfang_raid_console.m2", + value = "coilfang_raid_console.m2", + }, + { + fileId = "191707", + text = "coilfang_raid_gate.m2", + value = "coilfang_raid_gate.m2", + }, + }, + text = "raid_bridge_control", + value = "raid_bridge_control", }, - }, - text = "lavapillar", - value = "lavapillar", - }, - { - children = { { - fileId = "189165", - text = "lavaplug01.m2", - value = "lavaplug01.m2", + children = { + { + fileId = "191715", + text = "coilfang_raid_door.m2", + value = "coilfang_raid_door.m2", + }, + }, + text = "raid_door", + value = "raid_door", }, { - fileId = "189166", - text = "lavaplug02.m2", - value = "lavaplug02.m2", + children = { + { + fileId = "191724", + text = "coilfang_steam_off_on.m2", + value = "coilfang_steam_off_on.m2", + }, + }, + text = "steam", + value = "steam", }, }, - text = "lavaplugs", - value = "lavaplugs", + text = "activedoodads", + value = "activedoodads", }, { children = { { - fileId = "189170", - text = "lavashrine01.m2", - value = "lavashrine01.m2", + children = { + { + fileId = "191725", + text = "coilfang_blue_energy.m2", + value = "coilfang_blue_energy.m2", + }, + }, + text = "blueenergy", + value = "blueenergy", }, { - fileId = "189171", - text = "lavashrine02.m2", - value = "lavashrine02.m2", + children = { + { + fileId = "191727", + text = "cf_groundcage.m2", + value = "cf_groundcage.m2", + }, + { + fileId = "191728", + text = "cf_hangingcage.m2", + value = "cf_hangingcage.m2", + }, + }, + text = "cages", + value = "cages", }, { - fileId = "189172", - text = "lavashrine03.m2", - value = "lavashrine03.m2", + children = { + { + fileId = "191729", + text = "coilfang_circularlightwindow_blue.m2", + value = "coilfang_circularlightwindow_blue.m2", + }, + { + fileId = "191730", + text = "coilfang_floor_light.m2", + value = "coilfang_floor_light.m2", + }, + { + fileId = "191731", + text = "coilfang_orb.m2", + value = "coilfang_orb.m2", + }, + { + fileId = "191732", + text = "coilfang_orb_orange.m2", + value = "coilfang_orb_orange.m2", + }, + { + fileId = "191733", + text = "coilfang_wall_light.m2", + value = "coilfang_wall_light.m2", + }, + }, + text = "lights", + value = "lights", }, { - fileId = "189173", - text = "lavashrine04.m2", - value = "lavashrine04.m2", + children = { + { + fileId = "191745", + text = "zangarmushroom06_blueglow.m2", + value = "zangarmushroom06_blueglow.m2", + }, + { + fileId = "191746", + text = "zangarmushroom07_blueglow.m2", + value = "zangarmushroom07_blueglow.m2", + }, + }, + text = "mushrooms", + value = "mushrooms", }, { - fileId = "189178", - text = "searinggorgelavashrine.m2", - value = "searinggorgelavashrine.m2", + children = { + { + fileId = "191747", + text = "cf_pipea.m2", + value = "cf_pipea.m2", + }, + { + fileId = "191748", + text = "cf_pipeb.m2", + value = "cf_pipeb.m2", + }, + { + fileId = "191749", + text = "cf_pipec.m2", + value = "cf_pipec.m2", + }, + }, + text = "pipepieces", + value = "pipepieces", }, - }, - text = "lavashrine", - value = "lavashrine", - }, - { - children = { { - fileId = "189179", - text = "lotharstatue.m2", - value = "lotharstatue.m2", + children = { + { + fileId = "191752", + text = "coilfang_pump.m2", + value = "coilfang_pump.m2", + }, + { + fileId = "191753", + text = "coilfang_pump_raidwater.m2", + value = "coilfang_pump_raidwater.m2", + }, + }, + text = "pump", + value = "pump", }, - }, - text = "lotharstatue", - value = "lotharstatue", - }, - { - children = { { - fileId = "189180", - text = "ogreheadpike.m2", - value = "ogreheadpike.m2", + children = { + { + fileId = "191756", + text = "cf_raid_giantpump.m2", + value = "cf_raid_giantpump.m2", + }, + }, + text = "raid", + value = "raid", }, - }, - text = "ogreheadpike", - value = "ogreheadpike", - }, - { - children = { { - fileId = "189186", - text = "orcanvilstoneburningsteppes.m2", - value = "orcanvilstoneburningsteppes.m2", + children = { + { + fileId = "191760", + text = "cf_railing.m2", + value = "cf_railing.m2", + }, + }, + text = "railing", + value = "railing", }, - }, - text = "orcanvilstoneburningsteppes", - value = "orcanvilstoneburningsteppes", - }, - { - children = { { - fileId = "189187", - text = "orcstoneburialpyre.m2", - value = "orcstoneburialpyre.m2", + children = { + { + fileId = "191762", + text = "coilfang_steam.m2", + value = "coilfang_steam.m2", + }, + { + fileId = "191763", + text = "coilfang_steam_choppy.m2", + value = "coilfang_steam_choppy.m2", + }, + }, + text = "steam", + value = "steam", }, { - fileId = "189188", - text = "orcstoneburialpyrebody.m2", - value = "orcstoneburialpyrebody.m2", + children = { + { + fileId = "191766", + text = "coilfang_marsh_waterfall.m2", + value = "coilfang_marsh_waterfall.m2", + }, + { + fileId = "191767", + text = "coilfang_waterfall_type1.m2", + value = "coilfang_waterfall_type1.m2", + }, + { + fileId = "191768", + text = "coilfang_waterfall_type2.m2", + value = "coilfang_waterfall_type2.m2", + }, + { + fileId = "191769", + text = "coilfang_waterfall_type3.m2", + value = "coilfang_waterfall_type3.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, - }, - text = "orcburialpyres", - value = "orcburialpyres", - }, - { - children = { { - fileId = "189193", - text = "orcsmallfoundrypit.m2", - value = "orcsmallfoundrypit.m2", + children = { + { + fileId = "191770", + text = "giantglasswindow01.m2", + value = "giantglasswindow01.m2", + }, + }, + text = "windows", + value = "windows", }, }, - text = "orcfoundrypit", - value = "orcfoundrypit", + text = "passivedoodads", + value = "passivedoodads", }, + }, + text = "coilfang", + value = "coilfang", + }, + { + children = { { children = { { - fileId = "189196", - text = "orcsleepmat01.m2", - value = "orcsleepmat01.m2", + fileId = "191771", + text = "be_fence_eversong01.m2", + value = "be_fence_eversong01.m2", }, { - fileId = "189197", - text = "orcsleepmat02.m2", - value = "orcsleepmat02.m2", + fileId = "191772", + text = "be_fence_eversong02.m2", + value = "be_fence_eversong02.m2", }, { - fileId = "189198", - text = "orcsleepmat03.m2", - value = "orcsleepmat03.m2", + fileId = "191773", + text = "be_fence_eversong03.m2", + value = "be_fence_eversong03.m2", }, }, - text = "orcsleepmats", - value = "orcsleepmats", + text = "fence", + value = "fence", }, { children = { { - fileId = "189200", - text = "orctent.m2", - value = "orctent.m2", + fileId = "191775", + text = "be_lamppost_eversong01-optimized.m2", + value = "be_lamppost_eversong01-optimized.m2", }, - }, - text = "orctents", - value = "orctents", - }, - { - children = { { - fileId = "189204", - text = "orctoolrackburningsteppes.m2", - value = "orctoolrackburningsteppes.m2", + fileId = "191776", + text = "be_lamppost_eversong01.m2", + value = "be_lamppost_eversong01.m2", }, }, - text = "orctoolrackburningsteppes", - value = "orctoolrackburningsteppes", + text = "lamppost", + value = "lamppost", }, { children = { { - fileId = "189208", - text = "pentagramdirt.m2", - value = "pentagramdirt.m2", + fileId = "191777", + text = "be_signpost_eversong.m2", + value = "be_signpost_eversong.m2", + }, + { + fileId = "191778", + text = "be_signpost_sign_eversong.m2", + value = "be_signpost_sign_eversong.m2", }, }, - text = "pentagramdirt", - value = "pentagramdirt", + text = "signpost", + value = "signpost", }, + }, + text = "eversong", + value = "eversong", + }, + { + children = { { children = { { - fileId = "189212", - text = "burningsteppesboulders01.m2", - value = "burningsteppesboulders01.m2", + children = { + { + fileId = "191780", + text = "ao_banner01.m2", + value = "ao_banner01.m2", + }, + { + fileId = "191781", + text = "ao_banner02.m2", + value = "ao_banner02.m2", + }, + { + fileId = "191783", + text = "ao_wall_hanging_01.m2", + value = "ao_wall_hanging_01.m2", + }, + { + fileId = "191784", + text = "ao_wall_hanging_02.m2", + value = "ao_wall_hanging_02.m2", + }, + { + fileId = "191785", + text = "ao_wall_hanging_03.m2", + value = "ao_wall_hanging_03.m2", + }, + { + fileId = "191786", + text = "ao_wall_hanging_04.m2", + value = "ao_wall_hanging_04.m2", + }, + }, + text = "banners", + value = "banners", }, { - fileId = "189213", - text = "burningsteppesboulders02.m2", - value = "burningsteppesboulders02.m2", + children = { + { + fileId = "191787", + text = "ao_barrel01.m2", + value = "ao_barrel01.m2", + }, + }, + text = "barrel", + value = "barrel", }, { - fileId = "189214", - text = "burningsteppesboulders03.m2", - value = "burningsteppesboulders03.m2", + children = { + { + fileId = "191790", + text = "ao_boardwalk01.m2", + value = "ao_boardwalk01.m2", + }, + { + fileId = "191791", + text = "ao_boardwalk02.m2", + value = "ao_boardwalk02.m2", + }, + { + fileId = "191792", + text = "ao_boardwalk03.m2", + value = "ao_boardwalk03.m2", + }, + { + fileId = "191793", + text = "ao_boardwalk04.m2", + value = "ao_boardwalk04.m2", + }, + { + fileId = "191794", + text = "ao_boardwalk05.m2", + value = "ao_boardwalk05.m2", + }, + { + fileId = "191795", + text = "ao_boardwalk_corner.m2", + value = "ao_boardwalk_corner.m2", + }, + }, + text = "boardwalk", + value = "boardwalk", }, { - fileId = "189215", - text = "burningsteppesboulders04.m2", - value = "burningsteppesboulders04.m2", + children = { + { + fileId = "191796", + text = "ao_bridgelong01.m2", + value = "ao_bridgelong01.m2", + }, + { + fileId = "191797", + text = "ao_bridgelong02.m2", + value = "ao_bridgelong02.m2", + }, + { + fileId = "191798", + text = "ao_bridgerock01.m2", + value = "ao_bridgerock01.m2", + }, + { + fileId = "191801", + text = "ao_bridgetree01.m2", + value = "ao_bridgetree01.m2", + }, + }, + text = "bridgepieces", + value = "bridgepieces", }, { - fileId = "189216", - text = "burningsteppesboulders05.m2", - value = "burningsteppesboulders05.m2", + children = { + { + fileId = "191802", + text = "ao_orccrate01.m2", + value = "ao_orccrate01.m2", + }, + { + fileId = "191803", + text = "ao_orccrate02.m2", + value = "ao_orccrate02.m2", + }, + { + fileId = "191804", + text = "ao_orccrate03.m2", + value = "ao_orccrate03.m2", + }, + }, + text = "crates", + value = "crates", }, { - fileId = "189217", - text = "burningsteppesboulders06.m2", - value = "burningsteppesboulders06.m2", + children = { + { + fileId = "191807", + text = "ao_lamppost01.m2", + value = "ao_lamppost01.m2", + }, + { + fileId = "191808", + text = "ao_lamppost02.m2", + value = "ao_lamppost02.m2", + }, + }, + text = "lampost", + value = "lampost", }, { - fileId = "189218", - text = "lavarock01.m2", - value = "lavarock01.m2", + children = { + { + fileId = "191809", + text = "ao_outpostwall01.m2", + value = "ao_outpostwall01.m2", + }, + { + fileId = "191810", + text = "ao_outpostwall02.m2", + value = "ao_outpostwall02.m2", + }, + { + fileId = "191811", + text = "ao_outpostwall03.m2", + value = "ao_outpostwall03.m2", + }, + { + fileId = "191812", + text = "ao_outpostwall04.m2", + value = "ao_outpostwall04.m2", + }, + { + fileId = "191813", + text = "ao_outpostwall05.m2", + value = "ao_outpostwall05.m2", + }, + { + fileId = "191814", + text = "ao_outpostwall06.m2", + value = "ao_outpostwall06.m2", + }, + { + fileId = "191815", + text = "ao_outpostwall07.m2", + value = "ao_outpostwall07.m2", + }, + }, + text = "outpostwalls", + value = "outpostwalls", }, { - fileId = "189219", - text = "lavarock02.m2", - value = "lavarock02.m2", + children = { + { + fileId = "191817", + text = "ao_pyre01.m2", + value = "ao_pyre01.m2", + }, + { + fileId = "191818", + text = "ao_pyre02.m2", + value = "ao_pyre02.m2", + }, + }, + text = "pyres", + value = "pyres", }, { - fileId = "189220", - text = "lavarock03.m2", - value = "lavarock03.m2", + children = { + { + fileId = "191820", + text = "ao_signpost01.m2", + value = "ao_signpost01.m2", + }, + { + fileId = "191821", + text = "ao_signpostpointer01.m2", + value = "ao_signpostpointer01.m2", + }, + }, + text = "signposts", + value = "signposts", }, { - fileId = "189221", - text = "lavarock04.m2", - value = "lavarock04.m2", + children = { + { + fileId = "191822", + text = "ao_sticks_01.m2", + value = "ao_sticks_01.m2", + }, + }, + text = "sticks", + value = "sticks", }, { - fileId = "189222", - text = "lavarock05.m2", - value = "lavarock05.m2", + children = { + { + fileId = "191823", + text = "ao_totem01.m2", + value = "ao_totem01.m2", + }, + }, + text = "totem", + value = "totem", }, { - fileId = "189223", - text = "lavarock06.m2", - value = "lavarock06.m2", + children = { + { + fileId = "191824", + text = "ao_windmill.m2", + value = "ao_windmill.m2", + }, + }, + text = "windmill", + value = "windmill", }, }, - text = "rocks", - value = "rocks", + text = "ancientorc", + value = "ancientorc", }, { children = { { - fileId = "189226", - text = "burnedbeam.m2", - value = "burnedbeam.m2", + fileId = "191825", + text = "ak_alchemybottle01.m2", + value = "ak_alchemybottle01.m2", }, - }, - text = "ruins", - value = "ruins", - }, - { - children = { { - fileId = "189229", - text = "smeltingcauldron.m2", - value = "smeltingcauldron.m2", + fileId = "191826", + text = "ak_alchemybottle02.m2", + value = "ak_alchemybottle02.m2", }, - }, - text = "smeltingcauldron", - value = "smeltingcauldron", - }, - { - children = { { - fileId = "189232", - text = "smeltingweapons.m2", - value = "smeltingweapons.m2", + fileId = "191827", + text = "ak_alchemybottle03.m2", + value = "ak_alchemybottle03.m2", }, - }, - text = "smeltingweapons", - value = "smeltingweapons", - }, - { - children = { { - fileId = "189233", - text = "ashtreesmoke01.m2", - value = "ashtreesmoke01.m2", + children = { + { + fileId = "191829", + text = "ak_banner01.m2", + value = "ak_banner01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "191830", + text = "ak_crystalball01.m2", + value = "ak_crystalball01.m2", + }, + { + fileId = "191831", + text = "ak_crystalball02.m2", + value = "ak_crystalball02.m2", + }, + }, + text = "crystalball", + value = "crystalball", + }, + { + children = { + { + fileId = "191832", + text = "ak_egg01.m2", + value = "ak_egg01.m2", + }, + { + fileId = "191833", + text = "ak_egg02.m2", + value = "ak_egg02.m2", + }, + { + fileId = "191834", + text = "ak_nest01.m2", + value = "ak_nest01.m2", + }, + { + fileId = "191835", + text = "ak_nestdebris01.m2", + value = "ak_nestdebris01.m2", + }, + }, + text = "nest", + value = "nest", + }, + { + children = { + { + fileId = "191839", + text = "ak_scarecrow01.m2", + value = "ak_scarecrow01.m2", + }, + }, + text = "scarecrow", + value = "scarecrow", + }, + { + children = { + { + fileId = "191841", + text = "ak_shelter01.m2", + value = "ak_shelter01.m2", + }, + { + fileId = "191842", + text = "ak_shelter02.m2", + value = "ak_shelter02.m2", + }, + { + fileId = "191843", + text = "ak_shelter03.m2", + value = "ak_shelter03.m2", + }, + }, + text = "shelters", + value = "shelters", + }, + { + children = { + { + fileId = "191858", + text = "ak_torch01.m2", + value = "ak_torch01.m2", + }, + }, + text = "torch", + value = "torch", + }, + { + children = { + { + fileId = "191859", + text = "ak_totem01.m2", + value = "ak_totem01.m2", + }, + { + fileId = "191860", + text = "ak_totem02.m2", + value = "ak_totem02.m2", + }, + }, + text = "totem", + value = "totem", + }, + { + children = { + { + fileId = "191863", + text = "ak_alchemyset01.m2", + value = "ak_alchemyset01.m2", + }, + { + fileId = "191864", + text = "ak_blacksmithset01.m2", + value = "ak_blacksmithset01.m2", + }, + }, + text = "tradeskill", + value = "tradeskill", }, }, - text = "smoke", - value = "smoke", + text = "arakkoa", + value = "arakkoa", }, { children = { { - fileId = "189236", - text = "stoneblock01.m2", - value = "stoneblock01.m2", + children = { + { + fileId = "191874", + text = "be_ballista01.m2", + value = "be_ballista01.m2", + }, + { + fileId = "191875", + text = "be_ballistaarm.m2", + value = "be_ballistaarm.m2", + }, + { + fileId = "191876", + text = "be_ballistarail.m2", + value = "be_ballistarail.m2", + }, + { + fileId = "191877", + text = "be_ballistashield.m2", + value = "be_ballistashield.m2", + }, + { + fileId = "191878", + text = "be_ballistaslide.m2", + value = "be_ballistaslide.m2", + }, + { + fileId = "191879", + text = "be_ballistawheel.m2", + value = "be_ballistawheel.m2", + }, + { + fileId = "191880", + text = "be_ballistawinch.m2", + value = "be_ballistawinch.m2", + }, + { + fileId = "191882", + text = "be_ballistawrecked01.m2", + value = "be_ballistawrecked01.m2", + }, + { + fileId = "191885", + text = "be_statueghostlands01.m2", + value = "be_statueghostlands01.m2", + }, + }, + text = "ballista", + value = "ballista", }, { - fileId = "253204", - text = "stoneblock02.m2", - value = "stoneblock02.m2", + children = { + { + fileId = "191887", + text = "be_banner01.m2", + value = "be_banner01.m2", + }, + { + fileId = "191889", + text = "be_banner02.m2", + value = "be_banner02.m2", + }, + { + fileId = "191891", + text = "be_banner03.m2", + value = "be_banner03.m2", + }, + { + fileId = "191893", + text = "be_banner04.m2", + value = "be_banner04.m2", + }, + { + fileId = "191894", + text = "be_banner_kael_01.m2", + value = "be_banner_kael_01.m2", + }, + { + fileId = "191896", + text = "be_banner_kael_02.m2", + value = "be_banner_kael_02.m2", + }, + { + fileId = "191898", + text = "be_banner_kael_03.m2", + value = "be_banner_kael_03.m2", + }, + { + fileId = "191901", + text = "be_banner_shatariskyguard.m2", + value = "be_banner_shatariskyguard.m2", + }, + { + fileId = "191903", + text = "be_banner_tallblack.m2", + value = "be_banner_tallblack.m2", + }, + { + fileId = "191905", + text = "be_banner_tallblue.m2", + value = "be_banner_tallblue.m2", + }, + { + fileId = "191907", + text = "be_banner_tallpurple.m2", + value = "be_banner_tallpurple.m2", + }, + { + fileId = "191909", + text = "be_banner_tallred.m2", + value = "be_banner_tallred.m2", + }, + { + fileId = "191911", + text = "be_banner_wide_black.m2", + value = "be_banner_wide_black.m2", + }, + { + fileId = "191912", + text = "be_banner_wide_blue.m2", + value = "be_banner_wide_blue.m2", + }, + { + fileId = "191913", + text = "be_banner_wide_purple.m2", + value = "be_banner_wide_purple.m2", + }, + { + fileId = "191914", + text = "be_banner_wide_red.m2", + value = "be_banner_wide_red.m2", + }, + { + fileId = "191915", + text = "be_banner_wide_red_anim.m2", + value = "be_banner_wide_red_anim.m2", + }, + { + fileId = "191916", + text = "be_banner_wide_red_anim02.m2", + value = "be_banner_wide_red_anim02.m2", + }, + { + fileId = "191917", + text = "be_banner_wide_red_anim03.m2", + value = "be_banner_wide_red_anim03.m2", + }, + { + fileId = "191918", + text = "be_banner_wide_red_torn01.m2", + value = "be_banner_wide_red_torn01.m2", + }, + }, + text = "banners", + value = "banners", }, { - fileId = "189237", - text = "stonebracket01.m2", - value = "stonebracket01.m2", + children = { + { + fileId = "191919", + text = "be_bannister.m2", + value = "be_bannister.m2", + }, + }, + text = "bannister", + value = "bannister", }, { - fileId = "189238", - text = "stonebracket02.m2", - value = "stonebracket02.m2", + children = { + { + fileId = "191921", + text = "be_barrel_01.m2", + value = "be_barrel_01.m2", + }, + { + fileId = "242711", + text = "be_barrel_01_nocollision.m2", + value = "be_barrel_01_nocollision.m2", + }, + { + fileId = "191922", + text = "be_barrel_broken_01.m2", + value = "be_barrel_broken_01.m2", + }, + { + fileId = "191923", + text = "be_barrel_broken_02.m2", + value = "be_barrel_broken_02.m2", + }, + { + fileId = "191924", + text = "be_barrel_fruit01.m2", + value = "be_barrel_fruit01.m2", + }, + }, + text = "barrel", + value = "barrel", }, { - fileId = "189239", - text = "stonebracket03.m2", - value = "stonebracket03.m2", + children = { + { + fileId = "191927", + text = "be_barrierspikes01.m2", + value = "be_barrierspikes01.m2", + }, + { + fileId = "191928", + text = "be_barrierspikes02.m2", + value = "be_barrierspikes02.m2", + }, + { + fileId = "191929", + text = "be_barrierspikes03.m2", + value = "be_barrierspikes03.m2", + }, + }, + text = "barrierspikes", + value = "barrierspikes", }, - }, - text = "stonebrackets", - value = "stonebrackets", - }, - { - children = { { - fileId = "189240", - text = "stonegolemstatue1-9.m2", - value = "stonegolemstatue1-9.m2", + children = { + { + fileId = "191931", + text = "be_bed_01.m2", + value = "be_bed_01.m2", + }, + { + fileId = "191933", + text = "be_bed_02.m2", + value = "be_bed_02.m2", + }, + { + fileId = "191934", + text = "be_bed_wrecked_01.m2", + value = "be_bed_wrecked_01.m2", + }, + }, + text = "beds", + value = "beds", }, { - fileId = "189241", - text = "stonegolemstatue2-9.m2", - value = "stonegolemstatue2-9.m2", + children = { + { + fileId = "191936", + text = "be_bench01.m2", + value = "be_bench01.m2", + }, + { + fileId = "191938", + text = "be_bench_garden01.m2", + value = "be_bench_garden01.m2", + }, + { + fileId = "191939", + text = "be_bench_wrecked_01.m2", + value = "be_bench_wrecked_01.m2", + }, + }, + text = "benches", + value = "benches", }, { - fileId = "189242", - text = "stonegolemstatue3-9.m2", - value = "stonegolemstatue3-9.m2", + children = { + { + fileId = "191942", + text = "be_book_large01.m2", + value = "be_book_large01.m2", + }, + { + fileId = "191943", + text = "be_book_large02.m2", + value = "be_book_large02.m2", + }, + { + fileId = "191945", + text = "be_book_large05.m2", + value = "be_book_large05.m2", + }, + { + fileId = "191946", + text = "be_book_medium01.m2", + value = "be_book_medium01.m2", + }, + { + fileId = "191947", + text = "be_book_medium02.m2", + value = "be_book_medium02.m2", + }, + { + fileId = "191948", + text = "be_book_small01.m2", + value = "be_book_small01.m2", + }, + { + fileId = "191949", + text = "be_book_small02.m2", + value = "be_book_small02.m2", + }, + }, + text = "books", + value = "books", }, { - fileId = "189243", - text = "stonegolemstatue4-9.m2", - value = "stonegolemstatue4-9.m2", + children = { + { + fileId = "191954", + text = "be_bookshelf_wrecked_01.m2", + value = "be_bookshelf_wrecked_01.m2", + }, + { + fileId = "191955", + text = "be_bookshelf_wrecked_02.m2", + value = "be_bookshelf_wrecked_02.m2", + }, + { + fileId = "191956", + text = "be_bookshelfempty_01.m2", + value = "be_bookshelfempty_01.m2", + }, + { + fileId = "191957", + text = "be_bookshelfempty_02.m2", + value = "be_bookshelfempty_02.m2", + }, + { + fileId = "191958", + text = "be_bookshelffilled_01.m2", + value = "be_bookshelffilled_01.m2", + }, + { + fileId = "191959", + text = "be_bookshelffilled_02.m2", + value = "be_bookshelffilled_02.m2", + }, + { + fileId = "191960", + text = "be_bookshelfshort.m2", + value = "be_bookshelfshort.m2", + }, + { + fileId = "191961", + text = "be_bookshelfspiral.m2", + value = "be_bookshelfspiral.m2", + }, + { + fileId = "191962", + text = "be_bookshelftall.m2", + value = "be_bookshelftall.m2", + }, + }, + text = "bookshelf", + value = "bookshelf", }, { - fileId = "189244", - text = "stonegolemstatue5-9.m2", - value = "stonegolemstatue5-9.m2", + children = { + { + fileId = "191963", + text = "be_bottle01.m2", + value = "be_bottle01.m2", + }, + { + fileId = "191964", + text = "be_bottle02.m2", + value = "be_bottle02.m2", + }, + { + fileId = "191965", + text = "be_bottle03.m2", + value = "be_bottle03.m2", + }, + { + fileId = "242712", + text = "be_bottle03_nocollision.m2", + value = "be_bottle03_nocollision.m2", + }, + { + fileId = "191966", + text = "be_bottle04.m2", + value = "be_bottle04.m2", + }, + { + fileId = "242713", + text = "be_bottle04_nocollision.m2", + value = "be_bottle04_nocollision.m2", + }, + }, + text = "bottles", + value = "bottles", }, { - fileId = "189245", - text = "stonegolemstatue6-9.m2", - value = "stonegolemstatue6-9.m2", + children = { + { + fileId = "191969", + text = "be_mop01.m2", + value = "be_mop01.m2", + }, + }, + text = "broom", + value = "broom", }, { - fileId = "189246", - text = "stonegolemstatue7-9.m2", - value = "stonegolemstatue7-9.m2", + children = { + { + fileId = "191971", + text = "be_campfire01.m2", + value = "be_campfire01.m2", + }, + { + fileId = "191973", + text = "be_campfire02.m2", + value = "be_campfire02.m2", + }, + }, + text = "campfire", + value = "campfire", }, { - fileId = "189247", - text = "stonegolemstatue8-9.m2", - value = "stonegolemstatue8-9.m2", + children = { + { + fileId = "191978", + text = "be_candle_01.m2", + value = "be_candle_01.m2", + }, + { + fileId = "191979", + text = "be_candle_02.m2", + value = "be_candle_02.m2", + }, + { + fileId = "191980", + text = "be_candleabra01.m2", + value = "be_candleabra01.m2", + }, + }, + text = "candles", + value = "candles", }, { - fileId = "189248", - text = "stonegolemstatue9-9.m2", - value = "stonegolemstatue9-9.m2", + children = { + { + fileId = "191981", + text = "be_chair01.m2", + value = "be_chair01.m2", + }, + { + fileId = "191982", + text = "be_chair02.m2", + value = "be_chair02.m2", + }, + { + fileId = "191983", + text = "be_chair03.m2", + value = "be_chair03.m2", + }, + { + fileId = "191984", + text = "be_chair04.m2", + value = "be_chair04.m2", + }, + { + fileId = "191985", + text = "be_chair_wrecked_01.m2", + value = "be_chair_wrecked_01.m2", + }, + { + fileId = "191986", + text = "be_chair_wrecked_02.m2", + value = "be_chair_wrecked_02.m2", + }, + { + fileId = "191992", + text = "be_throne_01.m2", + value = "be_throne_01.m2", + }, + }, + text = "chairs", + value = "chairs", }, - }, - text = "stonegolemstatue", - value = "stonegolemstatue", - }, - { - children = { { - fileId = "189253", - text = "ashtree01.m2", - value = "ashtree01.m2", + children = { + { + fileId = "191994", + text = "be_chandelier01.m2", + value = "be_chandelier01.m2", + }, + }, + text = "chandelier", + value = "chandelier", }, { - fileId = "189254", - text = "ashtree02.m2", - value = "ashtree02.m2", + children = { + { + fileId = "191999", + text = "be_cookpot01.m2", + value = "be_cookpot01.m2", + }, + }, + text = "cookpot", + value = "cookpot", }, { - fileId = "189255", - text = "ashtree03.m2", - value = "ashtree03.m2", + children = { + { + fileId = "192001", + text = "be_couch01.m2", + value = "be_couch01.m2", + }, + }, + text = "couch", + value = "couch", }, { - fileId = "189258", - text = "burningmidtree01.m2", - value = "burningmidtree01.m2", + children = { + { + fileId = "192002", + text = "be_crate01.m2", + value = "be_crate01.m2", + }, + }, + text = "crate", + value = "crate", }, { - fileId = "189260", - text = "burningmidtree02.m2", - value = "burningmidtree02.m2", + children = { + { + fileId = "192003", + text = "be_cup01.m2", + value = "be_cup01.m2", + }, + { + fileId = "192004", + text = "be_cup02.m2", + value = "be_cup02.m2", + }, + { + fileId = "192008", + text = "be_mug01.m2", + value = "be_mug01.m2", + }, + }, + text = "cups", + value = "cups", }, { - fileId = "189262", - text = "burningmidtree03.m2", - value = "burningmidtree03.m2", + children = { + { + fileId = "192010", + text = "be_demoncrystal_01.m2", + value = "be_demoncrystal_01.m2", + }, + { + fileId = "192011", + text = "be_demoncrystal_02.m2", + value = "be_demoncrystal_02.m2", + }, + }, + text = "demoncrystals", + value = "demoncrystals", }, { - fileId = "189263", - text = "burningmidtree04.m2", - value = "burningmidtree04.m2", + children = { + { + fileId = "192014", + text = "be_demonenergycollector01.m2", + value = "be_demonenergycollector01.m2", + }, + }, + text = "demonenergycollectors", + value = "demonenergycollectors", }, { - fileId = "189264", - text = "burningsteppestree01.m2", - value = "burningsteppestree01.m2", + children = { + { + fileId = "192017", + text = "be_drapery_01.m2", + value = "be_drapery_01.m2", + }, + { + fileId = "192018", + text = "be_drapery_02.m2", + value = "be_drapery_02.m2", + }, + { + fileId = "192019", + text = "be_drapery_03.m2", + value = "be_drapery_03.m2", + }, + { + fileId = "192020", + text = "be_drapery_04.m2", + value = "be_drapery_04.m2", + }, + { + fileId = "192021", + text = "be_drapery_05.m2", + value = "be_drapery_05.m2", + }, + { + fileId = "192022", + text = "be_drapery_06.m2", + value = "be_drapery_06.m2", + }, + { + fileId = "312603", + text = "be_draperycircle_07.m2", + value = "be_draperycircle_07.m2", + }, + }, + text = "drapery", + value = "drapery", }, { - fileId = "189265", - text = "burningsteppestree02.m2", - value = "burningsteppestree02.m2", + children = { + { + fileId = "192026", + text = "be_fish01.m2", + value = "be_fish01.m2", + }, + { + fileId = "192028", + text = "be_meat01.m2", + value = "be_meat01.m2", + }, + }, + text = "food", + value = "food", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "189270", - text = "volcanicventlarge01.m2", - value = "volcanicventlarge01.m2", + children = { + { + fileId = "192030", + text = "be_forge.m2", + value = "be_forge.m2", + }, + { + fileId = "192031", + text = "be_forge01.m2", + value = "be_forge01.m2", + }, + }, + text = "forge", + value = "forge", }, { - fileId = "189271", - text = "volcanicventlargeoff01.m2", - value = "volcanicventlargeoff01.m2", + children = { + { + fileId = "192034", + text = "be_fountain01.m2", + value = "be_fountain01.m2", + }, + { + fileId = "192035", + text = "be_fountain01_base.m2", + value = "be_fountain01_base.m2", + }, + { + fileId = "192045", + text = "be_fountaininnardssilvermoon.m2", + value = "be_fountaininnardssilvermoon.m2", + }, + }, + text = "fountains", + value = "fountains", }, { - fileId = "189272", - text = "volcanicventmed01.m2", - value = "volcanicventmed01.m2", + children = { + { + fileId = "192049", + text = "be_gravestone01.m2", + value = "be_gravestone01.m2", + }, + { + fileId = "192050", + text = "be_gravestone02.m2", + value = "be_gravestone02.m2", + }, + { + fileId = "192051", + text = "be_gravestone03.m2", + value = "be_gravestone03.m2", + }, + { + fileId = "192054", + text = "be_tomb01.m2", + value = "be_tomb01.m2", + }, + }, + text = "graveyard", + value = "graveyard", }, { - fileId = "189273", - text = "volcanicventmedoff01.m2", - value = "volcanicventmedoff01.m2", + children = { + { + fileId = "192055", + text = "be_hedge_hanging01.m2", + value = "be_hedge_hanging01.m2", + }, + { + fileId = "192056", + text = "be_hedge_hanging02.m2", + value = "be_hedge_hanging02.m2", + }, + { + fileId = "192057", + text = "be_hedge_hanging03.m2", + value = "be_hedge_hanging03.m2", + }, + { + fileId = "192058", + text = "be_hedge_hanging04.m2", + value = "be_hedge_hanging04.m2", + }, + { + fileId = "192059", + text = "be_hedge_hanging05.m2", + value = "be_hedge_hanging05.m2", + }, + { + fileId = "192060", + text = "be_hedge_hanging06.m2", + value = "be_hedge_hanging06.m2", + }, + { + fileId = "192061", + text = "be_hedge_hanging07.m2", + value = "be_hedge_hanging07.m2", + }, + { + fileId = "192062", + text = "be_hedge_hanging08.m2", + value = "be_hedge_hanging08.m2", + }, + { + fileId = "192063", + text = "be_hedge_hanging09.m2", + value = "be_hedge_hanging09.m2", + }, + { + fileId = "192064", + text = "be_hedge_hanging10.m2", + value = "be_hedge_hanging10.m2", + }, + { + fileId = "192065", + text = "be_hedge_hanging11.m2", + value = "be_hedge_hanging11.m2", + }, + { + fileId = "192066", + text = "be_hedge_hanging12.m2", + value = "be_hedge_hanging12.m2", + }, + { + fileId = "192071", + text = "silvermoonhedge01.m2", + value = "silvermoonhedge01.m2", + }, + }, + text = "hedge", + value = "hedge", }, { - fileId = "189274", - text = "volcanicventsmall01.m2", - value = "volcanicventsmall01.m2", + children = { + { + fileId = "192073", + text = "be_hookah_01.m2", + value = "be_hookah_01.m2", + }, + { + fileId = "192074", + text = "be_hookah_02.m2", + value = "be_hookah_02.m2", + }, + }, + text = "hookah", + value = "hookah", }, { - fileId = "189275", - text = "volcanicventsmalloff01.m2", - value = "volcanicventsmalloff01.m2", + children = { + { + fileId = "192076", + text = "be_incense_01.m2", + value = "be_incense_01.m2", + }, + }, + text = "incense", + value = "incense", }, - }, - text = "volcanicvents", - value = "volcanicvents", - }, - { - children = { { - fileId = "189280", - text = "warlockshrine.m2", - value = "warlockshrine.m2", + children = { + { + fileId = "192078", + text = "be_harp01.m2", + value = "be_harp01.m2", + }, + { + fileId = "192080", + text = "be_lute01.m2", + value = "be_lute01.m2", + }, + }, + text = "instruments", + value = "instruments", }, - }, - text = "warlockshrine", - value = "warlockshrine", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "burningsteppes", - value = "burningsteppes", - }, - { - children = { - { - children = { - { - children = { { - fileId = "189282", - text = "goblinmeltingpot.m2", - value = "goblinmeltingpot.m2", + children = { + { + fileId = "192082", + text = "be_jar_03.m2", + value = "be_jar_03.m2", + }, + { + fileId = "192083", + text = "be_jar_04.m2", + value = "be_jar_04.m2", + }, + }, + text = "jars", + value = "jars", }, - }, - text = "goblinmeltingpot", - value = "goblinmeltingpot", - }, - { - fileId = "189287", - text = "lavasink.m2", - value = "lavasink.m2", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "deadmines", - value = "deadmines", - }, - { - children = { - { - children = { - { - children = { { - fileId = "189288", - text = "abandonedhumanguardtower.m2", - value = "abandonedhumanguardtower.m2", + children = { + { + fileId = "192085", + text = "be_magicalknickknack02.m2", + value = "be_magicalknickknack02.m2", + }, + { + fileId = "192087", + text = "be_magicalknickknack03.m2", + value = "be_magicalknickknack03.m2", + }, + { + fileId = "192089", + text = "be_magicalknickknack04.m2", + value = "be_magicalknickknack04.m2", + }, + }, + text = "knickknacks", + value = "knickknacks", }, - }, - text = "abandonedguardtower", - value = "abandonedguardtower", - }, - { - children = { { - fileId = "189292", - text = "deadwindrockbridge.m2", - value = "deadwindrockbridge.m2", + children = { + { + fileId = "192091", + text = "be_lamp01.m2", + value = "be_lamp01.m2", + }, + }, + text = "lamp", + value = "lamp", }, - }, - text = "rockbridge", - value = "rockbridge", - }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { - { - children = { { - fileId = "189294", - text = "deadwindtotem01.m2", - value = "deadwindtotem01.m2", + children = { + { + fileId = "192093", + text = "be_lantern01.m2", + value = "be_lantern01.m2", + }, + }, + text = "lantern", + value = "lantern", }, { - fileId = "189295", - text = "deadwindtotem02.m2", - value = "deadwindtotem02.m2", + children = { + { + fileId = "192094", + text = "be_lavapool.m2", + value = "be_lavapool.m2", + }, + }, + text = "lava", + value = "lava", }, { - fileId = "189296", - text = "deadwindtotem03.m2", - value = "deadwindtotem03.m2", + children = { + { + fileId = "192095", + text = "be_loom_01.m2", + value = "be_loom_01.m2", + }, + }, + text = "loom", + value = "loom", }, { - fileId = "189297", - text = "deadwindtotem04.m2", - value = "deadwindtotem04.m2", + children = { + { + fileId = "192098", + text = "be_merchantstand01.m2", + value = "be_merchantstand01.m2", + }, + { + fileId = "192099", + text = "be_merchantstand02.m2", + value = "be_merchantstand02.m2", + }, + { + fileId = "192100", + text = "be_merchantstand03.m2", + value = "be_merchantstand03.m2", + }, + { + fileId = "242714", + text = "be_merchantstand04.m2", + value = "be_merchantstand04.m2", + }, + }, + text = "merchantstand", + value = "merchantstand", }, - }, - text = "deadwindtotems", - value = "deadwindtotems", - }, - { - children = { { - fileId = "189299", - text = "deadwindhangingbody01.m2", - value = "deadwindhangingbody01.m2", + children = { + { + fileId = "192103", + text = "be_roadpillar01.m2", + value = "be_roadpillar01.m2", + }, + }, + text = "pillar", + value = "pillar", }, { - fileId = "189300", - text = "deadwindhangingbody02.m2", - value = "deadwindhangingbody02.m2", + children = { + { + fileId = "192105", + text = "be_pillow_01.m2", + value = "be_pillow_01.m2", + }, + { + fileId = "192106", + text = "be_pillow_02.m2", + value = "be_pillow_02.m2", + }, + { + fileId = "192107", + text = "be_pillow_03.m2", + value = "be_pillow_03.m2", + }, + { + fileId = "192108", + text = "be_pillow_04.m2", + value = "be_pillow_04.m2", + }, + }, + text = "pillows", + value = "pillows", }, - }, - text = "hangingbodies", - value = "hangingbodies", - }, - { - children = { { - fileId = "189304", - text = "deadwindhangingtree.m2", - value = "deadwindhangingtree.m2", + children = { + { + fileId = "192113", + text = "be_planetarium.m2", + value = "be_planetarium.m2", + }, + { + fileId = "192114", + text = "be_planetarium_active.m2", + value = "be_planetarium_active.m2", + }, + { + fileId = "192115", + text = "be_planetariumdestroyed01.m2", + value = "be_planetariumdestroyed01.m2", + }, + { + fileId = "192116", + text = "be_planetariumdestroyed02.m2", + value = "be_planetariumdestroyed02.m2", + }, + { + fileId = "192117", + text = "be_planetariumdestroyed03.m2", + value = "be_planetariumdestroyed03.m2", + }, + { + fileId = "192118", + text = "be_planetariumdestroyed04.m2", + value = "be_planetariumdestroyed04.m2", + }, + }, + text = "planetarium", + value = "planetarium", }, - }, - text = "hangingtree", - value = "hangingtree", - }, - { - children = { { - fileId = "189307", - text = "kharazan_brick.m2", - value = "kharazan_brick.m2", + children = { + { + fileId = "192120", + text = "be_planter_flowers_01.m2", + value = "be_planter_flowers_01.m2", + }, + { + fileId = "192121", + text = "be_planter_long_01.m2", + value = "be_planter_long_01.m2", + }, + { + fileId = "192122", + text = "be_planter_long_02.m2", + value = "be_planter_long_02.m2", + }, + { + fileId = "192123", + text = "be_planter_long_03.m2", + value = "be_planter_long_03.m2", + }, + { + fileId = "192124", + text = "be_planter_medium_01.m2", + value = "be_planter_medium_01.m2", + }, + { + fileId = "192125", + text = "be_planter_medium_02.m2", + value = "be_planter_medium_02.m2", + }, + { + fileId = "192126", + text = "be_planter_medium_03.m2", + value = "be_planter_medium_03.m2", + }, + { + fileId = "192127", + text = "be_planter_short_01.m2", + value = "be_planter_short_01.m2", + }, + { + fileId = "192128", + text = "be_planter_short_02.m2", + value = "be_planter_short_02.m2", + }, + { + fileId = "192129", + text = "be_planter_short_03.m2", + value = "be_planter_short_03.m2", + }, + }, + text = "planters", + value = "planters", }, - }, - text = "kharazan_brick", - value = "kharazan_brick", - }, - { - children = { { - fileId = "189308", - text = "deadwindpasscliffrock01dnr.m2", - value = "deadwindpasscliffrock01dnr.m2", + children = { + { + fileId = "192131", + text = "be_podium01.m2", + value = "be_podium01.m2", + }, + }, + text = "podium", + value = "podium", }, { - fileId = "189309", - text = "deadwindpasscliffrock02dnr.m2", - value = "deadwindpasscliffrock02dnr.m2", + children = { + { + fileId = "192133", + text = "be_signs_wanted.m2", + value = "be_signs_wanted.m2", + }, + }, + text = "posters", + value = "posters", }, { - fileId = "189310", - text = "deadwindpasscliffrock03dnr.m2", - value = "deadwindpasscliffrock03dnr.m2", + children = { + { + fileId = "192134", + text = "bloodelf_powerorb_green.m2", + value = "bloodelf_powerorb_green.m2", + }, + { + fileId = "192135", + text = "bloodelf_powerorb_red.m2", + value = "bloodelf_powerorb_red.m2", + }, + { + fileId = "350858", + text = "bloodelf_powerorb_red_nosound.m2", + value = "bloodelf_powerorb_red_nosound.m2", + }, + }, + text = "powerorb", + value = "powerorb", }, { - fileId = "189311", - text = "deadwindpasscliffrock04dnr.m2", - value = "deadwindpasscliffrock04dnr.m2", + children = { + { + fileId = "192149", + text = "be_roadsign_sign01.m2", + value = "be_roadsign_sign01.m2", + }, + }, + text = "roadsign", + value = "roadsign", }, { - fileId = "189312", - text = "deadwindpasscliffrock05dnr.m2", - value = "deadwindpasscliffrock05dnr.m2", + children = { + { + fileId = "192151", + text = "be_rowboat.m2", + value = "be_rowboat.m2", + }, + { + fileId = "192153", + text = "be_rowboatwrecked.m2", + value = "be_rowboatwrecked.m2", + }, + }, + text = "rowboat", + value = "rowboat", }, { - fileId = "189313", - text = "deadwindpassgroundrock01dnr.m2", - value = "deadwindpassgroundrock01dnr.m2", + children = { + { + fileId = "192154", + text = "be_rug_large01.m2", + value = "be_rug_large01.m2", + }, + { + fileId = "192155", + text = "be_rug_large02.m2", + value = "be_rug_large02.m2", + }, + { + fileId = "192156", + text = "be_rug_largeruined01.m2", + value = "be_rug_largeruined01.m2", + }, + { + fileId = "192157", + text = "be_rug_largeruined02.m2", + value = "be_rug_largeruined02.m2", + }, + { + fileId = "192159", + text = "be_rug_medium01.m2", + value = "be_rug_medium01.m2", + }, + { + fileId = "192160", + text = "be_rug_medium02.m2", + value = "be_rug_medium02.m2", + }, + { + fileId = "192161", + text = "be_rug_mediumruined01.m2", + value = "be_rug_mediumruined01.m2", + }, + { + fileId = "192162", + text = "be_rug_mediumruined02.m2", + value = "be_rug_mediumruined02.m2", + }, + { + fileId = "192163", + text = "be_rug_small01.m2", + value = "be_rug_small01.m2", + }, + { + fileId = "192164", + text = "be_rug_small02.m2", + value = "be_rug_small02.m2", + }, + { + fileId = "192165", + text = "be_rug_smallruined01.m2", + value = "be_rug_smallruined01.m2", + }, + { + fileId = "192166", + text = "be_rug_smallruined02.m2", + value = "be_rug_smallruined02.m2", + }, + }, + text = "rugs", + value = "rugs", }, { - fileId = "189314", - text = "deadwindpassgroundrock02dnr.m2", - value = "deadwindpassgroundrock02dnr.m2", + children = { + { + fileId = "192173", + text = "be_runestone01.m2", + value = "be_runestone01.m2", + }, + }, + text = "runestone", + value = "runestone", }, { - fileId = "189315", - text = "deadwindpassgroundrock03dnr.m2", - value = "deadwindpassgroundrock03dnr.m2", + children = { + { + fileId = "192175", + text = "be_sconce01.m2", + value = "be_sconce01.m2", + }, + { + fileId = "192176", + text = "be_sconce02.m2", + value = "be_sconce02.m2", + }, + }, + text = "sconce", + value = "sconce", }, { - fileId = "189316", - text = "rockarch01dnr.m2", - value = "rockarch01dnr.m2", + children = { + { + fileId = "192179", + text = "be_scryingorb.m2", + value = "be_scryingorb.m2", + }, + { + fileId = "192180", + text = "be_scryingorb_epic.m2", + value = "be_scryingorb_epic.m2", + }, + }, + text = "scryingorb", + value = "scryingorb", }, { - fileId = "189317", - text = "rockarch02dnr.m2", - value = "rockarch02dnr.m2", + children = { + { + fileId = "192181", + text = "be_shield01.m2", + value = "be_shield01.m2", + }, + { + fileId = "192182", + text = "be_shield02.m2", + value = "be_shield02.m2", + }, + { + fileId = "192183", + text = "be_shield03.m2", + value = "be_shield03.m2", + }, + }, + text = "shield", + value = "shield", }, { - fileId = "189318", - text = "rockarch03dnr.m2", - value = "rockarch03dnr.m2", + children = { + { + fileId = "192184", + text = "be_signs_alchemy.m2", + value = "be_signs_alchemy.m2", + }, + { + fileId = "192186", + text = "be_signs_axe.m2", + value = "be_signs_axe.m2", + }, + { + fileId = "192188", + text = "be_signs_bank.m2", + value = "be_signs_bank.m2", + }, + { + fileId = "192190", + text = "be_signs_book.m2", + value = "be_signs_book.m2", + }, + { + fileId = "192192", + text = "be_signs_bow.m2", + value = "be_signs_bow.m2", + }, + { + fileId = "192194", + text = "be_signs_bread.m2", + value = "be_signs_bread.m2", + }, + { + fileId = "192196", + text = "be_signs_cheese.m2", + value = "be_signs_cheese.m2", + }, + { + fileId = "192198", + text = "be_signs_cooking.m2", + value = "be_signs_cooking.m2", + }, + { + fileId = "192200", + text = "be_signs_drink.m2", + value = "be_signs_drink.m2", + }, + { + fileId = "192202", + text = "be_signs_engineering.m2", + value = "be_signs_engineering.m2", + }, + { + fileId = "192204", + text = "be_signs_generalshop.m2", + value = "be_signs_generalshop.m2", + }, + { + fileId = "192206", + text = "be_signs_helm.m2", + value = "be_signs_helm.m2", + }, + { + fileId = "192208", + text = "be_signs_herbalism.m2", + value = "be_signs_herbalism.m2", + }, + { + fileId = "192210", + text = "be_signs_meat.m2", + value = "be_signs_meat.m2", + }, + { + fileId = "192212", + text = "be_signs_poison.m2", + value = "be_signs_poison.m2", + }, + { + fileId = "192214", + text = "be_signs_shield.m2", + value = "be_signs_shield.m2", + }, + { + fileId = "192216", + text = "be_signs_staff.m2", + value = "be_signs_staff.m2", + }, + { + fileId = "192218", + text = "be_signs_sword.m2", + value = "be_signs_sword.m2", + }, + { + fileId = "192220", + text = "be_signs_tailor.m2", + value = "be_signs_tailor.m2", + }, + { + fileId = "192222", + text = "be_signs_tavern.m2", + value = "be_signs_tavern.m2", + }, + }, + text = "shopsigns", + value = "shopsigns", }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { { - fileId = "189319", - text = "deadwindpassrocktree01.m2", - value = "deadwindpassrocktree01.m2", + children = { + { + fileId = "192224", + text = "ghostlandsshroom01.m2", + value = "ghostlandsshroom01.m2", + }, + { + fileId = "192228", + text = "ghostlandssporemound01.m2", + value = "ghostlandssporemound01.m2", + }, + }, + text = "shrooms", + value = "shrooms", }, { - fileId = "189322", - text = "deadwindpassrocktree02.m2", - value = "deadwindpassrocktree02.m2", + children = { + { + fileId = "192229", + text = "be_statue01.m2", + value = "be_statue01.m2", + }, + { + fileId = "192230", + text = "be_statue02.m2", + value = "be_statue02.m2", + }, + { + fileId = "192232", + text = "be_statuebig.m2", + value = "be_statuebig.m2", + }, + { + fileId = "192234", + text = "be_statuemale.m2", + value = "be_statuemale.m2", + }, + { + fileId = "192236", + text = "be_statueranger.m2", + value = "be_statueranger.m2", + }, + }, + text = "statues", + value = "statues", }, { - fileId = "189324", - text = "deadwindpassrocktree03.m2", - value = "deadwindpassrocktree03.m2", + children = { + { + fileId = "192242", + text = "be_table_large01.m2", + value = "be_table_large01.m2", + }, + { + fileId = "192243", + text = "be_table_large02.m2", + value = "be_table_large02.m2", + }, + { + fileId = "192244", + text = "be_table_large03.m2", + value = "be_table_large03.m2", + }, + { + fileId = "192245", + text = "be_table_small01.m2", + value = "be_table_small01.m2", + }, + { + fileId = "192247", + text = "be_table_wrecked_01.m2", + value = "be_table_wrecked_01.m2", + }, + { + fileId = "192248", + text = "be_table_wrecked_02.m2", + value = "be_table_wrecked_02.m2", + }, + }, + text = "tables", + value = "tables", }, { - fileId = "189325", - text = "deadwindpassrocktree04.m2", - value = "deadwindpassrocktree04.m2", + children = { + { + fileId = "192250", + text = "be_teleporter_01.m2", + value = "be_teleporter_01.m2", + }, + }, + text = "teleporter", + value = "teleporter", }, { - fileId = "189326", - text = "deadwindpassrocktree05.m2", - value = "deadwindpassrocktree05.m2", + children = { + { + fileId = "192252", + text = "be_tent01.m2", + value = "be_tent01.m2", + }, + { + fileId = "192253", + text = "be_tent02.m2", + value = "be_tent02.m2", + }, + { + fileId = "192254", + text = "be_tent03.m2", + value = "be_tent03.m2", + }, + { + fileId = "192255", + text = "be_tent04.m2", + value = "be_tent04.m2", + }, + { + fileId = "192257", + text = "be_tentwrecked01.m2", + value = "be_tentwrecked01.m2", + }, + { + fileId = "192258", + text = "be_tentwrecked02.m2", + value = "be_tentwrecked02.m2", + }, + }, + text = "tents", + value = "tents", }, { - fileId = "189327", - text = "deadwindpassrocktree06.m2", - value = "deadwindpassrocktree06.m2", + children = { + { + fileId = "192262", + text = "be_translocator.m2", + value = "be_translocator.m2", + }, + { + fileId = "192266", + text = "be_translocator_minor.m2", + value = "be_translocator_minor.m2", + }, + }, + text = "translocator", + value = "translocator", }, { - fileId = "189328", - text = "deadwindpassrocktreebroken01.m2", - value = "deadwindpassrocktreebroken01.m2", + children = { + { + fileId = "192279", + text = "ghostlandssmalltree01.m2", + value = "ghostlandssmalltree01.m2", + }, + { + fileId = "192280", + text = "ghostlandssmalltree02.m2", + value = "ghostlandssmalltree02.m2", + }, + { + fileId = "192281", + text = "ghostlandssmalltree03.m2", + value = "ghostlandssmalltree03.m2", + }, + { + fileId = "192282", + text = "ghostlandstree01.m2", + value = "ghostlandstree01.m2", + }, + { + fileId = "192283", + text = "ghostlandstree02.m2", + value = "ghostlandstree02.m2", + }, + { + fileId = "192284", + text = "ghostlandstree03.m2", + value = "ghostlandstree03.m2", + }, + { + fileId = "192285", + text = "ghostlandstree04.m2", + value = "ghostlandstree04.m2", + }, + { + fileId = "192286", + text = "ghostlandstree05.m2", + value = "ghostlandstree05.m2", + }, + { + fileId = "192287", + text = "silvermoonbush01.m2", + value = "silvermoonbush01.m2", + }, + { + fileId = "192289", + text = "silvermoonbush02.m2", + value = "silvermoonbush02.m2", + }, + { + fileId = "192291", + text = "silvermoonbush03.m2", + value = "silvermoonbush03.m2", + }, + { + fileId = "192292", + text = "silvermoonbush04.m2", + value = "silvermoonbush04.m2", + }, + { + fileId = "192293", + text = "silvermoontree09.m2", + value = "silvermoontree09.m2", + }, + { + fileId = "192294", + text = "silvermoontree10.m2", + value = "silvermoontree10.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "189329", - text = "deadwindpassrocktreebroken02.m2", - value = "deadwindpassrocktreebroken02.m2", + children = { + { + fileId = "192299", + text = "be_wagon.m2", + value = "be_wagon.m2", + }, + { + fileId = "192300", + text = "be_wagon02.m2", + value = "be_wagon02.m2", + }, + { + fileId = "192303", + text = "be_wagon_wrecked.m2", + value = "be_wagon_wrecked.m2", + }, + }, + text = "wagon", + value = "wagon", }, { - fileId = "189330", - text = "deadwindpassrocktreebroken03.m2", - value = "deadwindpassrocktreebroken03.m2", + children = { + { + fileId = "192306", + text = "be_weaponrack_01.m2", + value = "be_weaponrack_01.m2", + }, + { + fileId = "192307", + text = "be_weaponrack_02.m2", + value = "be_weaponrack_02.m2", + }, + }, + text = "weaponracks", + value = "weaponracks", }, - }, - text = "rocktrees", - value = "rocktrees", - }, - { - children = { { - fileId = "189335", - text = "deadwindpassroot01.m2", - value = "deadwindpassroot01.m2", + children = { + { + fileId = "192309", + text = "be_knife01.m2", + value = "be_knife01.m2", + }, + { + fileId = "192310", + text = "be_knife02.m2", + value = "be_knife02.m2", + }, + { + fileId = "192311", + text = "be_knife03.m2", + value = "be_knife03.m2", + }, + { + fileId = "192312", + text = "be_stave01.m2", + value = "be_stave01.m2", + }, + { + fileId = "192313", + text = "be_stave02.m2", + value = "be_stave02.m2", + }, + { + fileId = "192314", + text = "be_sword01.m2", + value = "be_sword01.m2", + }, + { + fileId = "192315", + text = "be_sword02.m2", + value = "be_sword02.m2", + }, + { + fileId = "192316", + text = "be_sword03.m2", + value = "be_sword03.m2", + }, + }, + text = "weapons", + value = "weapons", }, }, - text = "roots", - value = "roots", + text = "bloodelf", + value = "bloodelf", }, { children = { { - fileId = "189336", - text = "deadwindpassmidtree01.m2", - value = "deadwindpassmidtree01.m2", - }, - { - fileId = "189337", - text = "deadwindpassmidtree02.m2", - value = "deadwindpassmidtree02.m2", + children = { + { + fileId = "192317", + text = "bu_banner_01.m2", + value = "bu_banner_01.m2", + }, + { + fileId = "192318", + text = "bu_banner_02.m2", + value = "bu_banner_02.m2", + }, + }, + text = "banners", + value = "banners", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "189344", - text = "deadwindhangingweedsgroup01.m2", - value = "deadwindhangingweedsgroup01.m2", + children = { + { + fileId = "192324", + text = "bu_brazier_01.m2", + value = "bu_brazier_01.m2", + }, + }, + text = "braziers", + value = "braziers", }, { - fileId = "189345", - text = "deadwindhangingweedsgroup02.m2", - value = "deadwindhangingweedsgroup02.m2", + children = { + { + fileId = "192327", + text = "bu_cannon_01.m2", + value = "bu_cannon_01.m2", + }, + { + fileId = "192328", + text = "bu_cannon_base.m2", + value = "bu_cannon_base.m2", + }, + { + fileId = "192329", + text = "bu_cannon_base_02.m2", + value = "bu_cannon_base_02.m2", + }, + }, + text = "cannon", + value = "cannon", }, { - fileId = "189346", - text = "deadwindhangingweedsgroup03.m2", - value = "deadwindhangingweedsgroup03.m2", + children = { + { + fileId = "192331", + text = "bu_crystalforge.m2", + value = "bu_crystalforge.m2", + }, + { + fileId = "192332", + text = "bu_crystalforgecontroller.m2", + value = "bu_crystalforgecontroller.m2", + }, + }, + text = "crystalforge", + value = "crystalforge", }, { - fileId = "189347", - text = "deadwindhangingweedslarge01.m2", - value = "deadwindhangingweedslarge01.m2", + children = { + { + fileId = "192333", + text = "felcannonballs01.m2", + value = "felcannonballs01.m2", + }, + { + fileId = "192334", + text = "felcannonballs02.m2", + value = "felcannonballs02.m2", + }, + }, + text = "felcannonballs", + value = "felcannonballs", }, { - fileId = "189348", - text = "deadwindhangingweedslarge02.m2", - value = "deadwindhangingweedslarge02.m2", + children = { + { + fileId = "192335", + text = "bu_felreaver_01.m2", + value = "bu_felreaver_01.m2", + }, + { + fileId = "192336", + text = "bu_felreaver_02.m2", + value = "bu_felreaver_02.m2", + }, + { + fileId = "192337", + text = "bu_felreaver_03.m2", + value = "bu_felreaver_03.m2", + }, + { + fileId = "192338", + text = "bu_felreaver_04.m2", + value = "bu_felreaver_04.m2", + }, + { + fileId = "192339", + text = "bu_felreaver_05.m2", + value = "bu_felreaver_05.m2", + }, + { + fileId = "192340", + text = "bu_felreaver_06.m2", + value = "bu_felreaver_06.m2", + }, + }, + text = "felreaver", + value = "felreaver", }, { - fileId = "189349", - text = "deadwindhangingweedssmall01.m2", - value = "deadwindhangingweedssmall01.m2", + children = { + { + fileId = "192342", + text = "bu_generator_01.m2", + value = "bu_generator_01.m2", + }, + }, + text = "generator", + value = "generator", }, { - fileId = "189350", - text = "deadwindhangingweedssmall02.m2", - value = "deadwindhangingweedssmall02.m2", + children = { + { + fileId = "192343", + text = "bu_junk_01.m2", + value = "bu_junk_01.m2", + }, + { + fileId = "192344", + text = "bu_junk_02.m2", + value = "bu_junk_02.m2", + }, + { + fileId = "192346", + text = "bu_oblisk_01.m2", + value = "bu_oblisk_01.m2", + }, + { + fileId = "192347", + text = "bu_smoke_stack_01.m2", + value = "bu_smoke_stack_01.m2", + }, + }, + text = "ruins", + value = "ruins", }, { - fileId = "189351", - text = "deadwindhangingweedssmall03.m2", - value = "deadwindhangingweedssmall03.m2", + children = { + { + fileId = "192349", + text = "bu_teleporter_01.m2", + value = "bu_teleporter_01.m2", + }, + { + fileId = "192350", + text = "bu_teleporter_02.m2", + value = "bu_teleporter_02.m2", + }, + }, + text = "teleporter", + value = "teleporter", }, { - fileId = "189352", - text = "deadwindhangingweedssmall04.m2", - value = "deadwindhangingweedssmall04.m2", - }, - }, - text = "weeds", - value = "weeds", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "deadwindpass", - value = "deadwindpass", - }, - { - children = { - { - children = { + children = { + { + fileId = "192354", + text = "bu_forge_01.m2", + value = "bu_forge_01.m2", + }, + }, + text = "tradeskill", + value = "tradeskill", + }, + }, + text = "burninglegion", + value = "burninglegion", + }, { children = { { - fileId = "189359", - text = "gnolltent02.m2", - value = "gnolltent02.m2", + children = { + { + fileId = "192356", + text = "dr_banner01.m2", + value = "dr_banner01.m2", + }, + }, + text = "banner", + value = "banner", }, { - fileId = "189361", - text = "gnolltent03.m2", - value = "gnolltent03.m2", + children = { + { + fileId = "192358", + text = "draenei_bed01.m2", + value = "draenei_bed01.m2", + }, + }, + text = "bed", + value = "bed", }, - }, - text = "gnolltent", - value = "gnolltent", - }, - { - children = { { - fileId = "189375", - text = "gypsywagon.m2", - value = "gypsywagon.m2", + children = { + { + fileId = "192359", + text = "dr_bench_01.m2", + value = "dr_bench_01.m2", + }, + { + fileId = "538411", + text = "dr_bench_01_nosound.m2", + value = "dr_bench_01_nosound.m2", + }, + }, + text = "bench", + value = "bench", }, - }, - text = "gypsywagon", - value = "gypsywagon", - }, - { - children = { { - fileId = "189386", - text = "ogremound.m2", - value = "ogremound.m2", + children = { + { + fileId = "192362", + text = "dr_anvil_01.m2", + value = "dr_anvil_01.m2", + }, + { + fileId = "192363", + text = "dr_forge_01.m2", + value = "dr_forge_01.m2", + }, + { + fileId = "538413", + text = "dr_forge_01_nosound.m2", + value = "dr_forge_01_nosound.m2", + }, + }, + text = "blacksmith", + value = "blacksmith", }, - }, - text = "ogremound", - value = "ogremound", - }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { - { - children = { { - fileId = "242690", - text = "duskwood_barn_closed.m2", - value = "duskwood_barn_closed.m2", + children = { + { + fileId = "192364", + text = "dr_bottle_01.m2", + value = "dr_bottle_01.m2", + }, + { + fileId = "192365", + text = "dr_bottle_02.m2", + value = "dr_bottle_02.m2", + }, + }, + text = "bottles", + value = "bottles", }, - }, - text = "barn", - value = "barn", - }, - { - children = { { - fileId = "189395", - text = "duskwoodbush01.m2", - value = "duskwoodbush01.m2", + children = { + { + fileId = "192367", + text = "dr_bowl_01.m2", + value = "dr_bowl_01.m2", + }, + { + fileId = "192368", + text = "dr_bowl_02.m2", + value = "dr_bowl_02.m2", + }, + }, + text = "bowls", + value = "bowls", }, { - fileId = "189396", - text = "duskwoodbush02.m2", - value = "duskwoodbush02.m2", + children = { + { + fileId = "192371", + text = "dr_brazier_01.m2", + value = "dr_brazier_01.m2", + }, + { + fileId = "192373", + text = "dr_brazier_02.m2", + value = "dr_brazier_02.m2", + }, + { + fileId = "192374", + text = "dr_brazier_03.m2", + value = "dr_brazier_03.m2", + }, + }, + text = "brazier", + value = "brazier", }, { - fileId = "189397", - text = "duskwoodbush03.m2", - value = "duskwoodbush03.m2", + children = { + { + fileId = "192375", + text = "dr_cable_medium.m2", + value = "dr_cable_medium.m2", + }, + { + fileId = "192376", + text = "dr_cable_thin.m2", + value = "dr_cable_thin.m2", + }, + { + fileId = "192377", + text = "dr_cable_wide.m2", + value = "dr_cable_wide.m2", + }, + }, + text = "cables", + value = "cables", }, { - fileId = "189398", - text = "duskwoodbush04.m2", - value = "duskwoodbush04.m2", + children = { + { + fileId = "192379", + text = "dr_chandelier_01.m2", + value = "dr_chandelier_01.m2", + }, + { + fileId = "538415", + text = "dr_chandelier_01_nosound.m2", + value = "dr_chandelier_01_nosound.m2", + }, + }, + text = "chandelier", + value = "chandelier", }, { - fileId = "189399", - text = "duskwoodbush05.m2", - value = "duskwoodbush05.m2", + children = { + { + fileId = "192381", + text = "dr_cookpot_01.m2", + value = "dr_cookpot_01.m2", + }, + }, + text = "cookpots", + value = "cookpots", }, { - fileId = "189400", - text = "duskwoodbush06.m2", - value = "duskwoodbush06.m2", + children = { + { + fileId = "192382", + text = "dr_crashplate01.m2", + value = "dr_crashplate01.m2", + }, + { + fileId = "192383", + text = "dr_crashplate02.m2", + value = "dr_crashplate02.m2", + }, + }, + text = "crashplate", + value = "crashplate", }, { - fileId = "189402", - text = "duskwoodbush07.m2", - value = "duskwoodbush07.m2", + children = { + { + fileId = "192387", + text = "dr_crate_01.m2", + value = "dr_crate_01.m2", + }, + { + fileId = "192388", + text = "dr_crate_02.m2", + value = "dr_crate_02.m2", + }, + }, + text = "crates", + value = "crates", }, { - fileId = "189405", - text = "duskwoodspookybush01.m2", - value = "duskwoodspookybush01.m2", + children = { + { + fileId = "192390", + text = "dr_cryopod_bottom.m2", + value = "dr_cryopod_bottom.m2", + }, + { + fileId = "192391", + text = "dr_cryopod_intact.m2", + value = "dr_cryopod_intact.m2", + }, + { + fileId = "192392", + text = "dr_cryopod_top.m2", + value = "dr_cryopod_top.m2", + }, + { + fileId = "192393", + text = "dr_cryopod_wrecked.m2", + value = "dr_cryopod_wrecked.m2", + }, + }, + text = "cryopods", + value = "cryopods", }, { - fileId = "189406", - text = "duskwoodspookybush02.m2", - value = "duskwoodspookybush02.m2", + children = { + { + fileId = "192397", + text = "hellfirecrystalformation_01_pink.m2", + value = "hellfirecrystalformation_01_pink.m2", + }, + }, + text = "crystals", + value = "crystals", }, { - fileId = "189407", - text = "duskwoodspookybush03.m2", - value = "duskwoodspookybush03.m2", + children = { + { + fileId = "192398", + text = "dr_cup_01.m2", + value = "dr_cup_01.m2", + }, + { + fileId = "192399", + text = "dr_cup_02.m2", + value = "dr_cup_02.m2", + }, + }, + text = "cups", + value = "cups", }, { - fileId = "189408", - text = "duskwoodspookybush04.m2", - value = "duskwoodspookybush04.m2", + children = { + { + fileId = "192401", + text = "tech_arch01.m2", + value = "tech_arch01.m2", + }, + { + fileId = "192402", + text = "tech_arch02.m2", + value = "tech_arch02.m2", + }, + }, + text = "draenei_arches", + value = "draenei_arches", }, { - fileId = "189409", - text = "pumpkin01.m2", - value = "pumpkin01.m2", + children = { + { + fileId = "192403", + text = "draenei_wreckage_claw.m2", + value = "draenei_wreckage_claw.m2", + }, + { + fileId = "192404", + text = "draenei_wreckage_frame.m2", + value = "draenei_wreckage_frame.m2", + }, + { + fileId = "192405", + text = "draenei_wreckage_smallwindow.m2", + value = "draenei_wreckage_smallwindow.m2", + }, + }, + text = "draenei_wreckage", + value = "draenei_wreckage", }, { - fileId = "189410", - text = "pumpkinpatch01.m2", - value = "pumpkinpatch01.m2", + children = { + { + fileId = "192406", + text = "exodarbridge01.m2", + value = "exodarbridge01.m2", + }, + { + fileId = "192407", + text = "exodarbridge02.m2", + value = "exodarbridge02.m2", + }, + { + fileId = "192408", + text = "exodarbridge03.m2", + value = "exodarbridge03.m2", + }, + { + fileId = "192409", + text = "exodarplatform01.m2", + value = "exodarplatform01.m2", + }, + }, + text = "exodar", + value = "exodar", }, - }, - text = "bush", - value = "bush", - }, - { - children = { { - fileId = "189411", - text = "duskwoodchasmbridge.m2", - value = "duskwoodchasmbridge.m2", + children = { + { + fileId = "192410", + text = "dr_exodarwall01.m2", + value = "dr_exodarwall01.m2", + }, + { + fileId = "192411", + text = "dr_exodarwall02.m2", + value = "dr_exodarwall02.m2", + }, + }, + text = "exxodarwalls", + value = "exxodarwalls", }, - }, - text = "chasmbridge", - value = "chasmbridge", - }, - { - children = { { - fileId = "189415", - text = "coffin.m2", - value = "coffin.m2", + children = { + { + fileId = "192412", + text = "glowywaterstream01.m2", + value = "glowywaterstream01.m2", + }, + }, + text = "fountain", + value = "fountain", }, - }, - text = "coffin", - value = "coffin", - }, - { - children = { { - fileId = "189416", - text = "coffinlid.m2", - value = "coffinlid.m2", + children = { + { + fileId = "192413", + text = "dr_fountian.m2", + value = "dr_fountian.m2", + }, + { + fileId = "192414", + text = "dr_fountian_ruined.m2", + value = "dr_fountian_ruined.m2", + }, + }, + text = "fountian", + value = "fountian", }, - }, - text = "coffinlid", - value = "coffinlid", - }, - { - children = { { - fileId = "189417", - text = "duskwoodcoveredbridge.m2", - value = "duskwoodcoveredbridge.m2", + children = { + { + fileId = "192416", + text = "dr_glow.m2", + value = "dr_glow.m2", + }, + { + fileId = "192417", + text = "dr_glow_blue.m2", + value = "dr_glow_blue.m2", + }, + { + fileId = "192418", + text = "dr_rays_blue.m2", + value = "dr_rays_blue.m2", + }, + { + fileId = "192419", + text = "dr_rays_orange.m2", + value = "dr_rays_orange.m2", + }, + { + fileId = "192420", + text = "dr_rays_pink.m2", + value = "dr_rays_pink.m2", + }, + }, + text = "glow", + value = "glow", }, - }, - text = "coveredbridge", - value = "coveredbridge", - }, - { - children = { { - fileId = "189423", - text = "darkshireentrance01.m2", - value = "darkshireentrance01.m2", + children = { + { + fileId = "192423", + text = "dr_tomb.m2", + value = "dr_tomb.m2", + }, + { + fileId = "192424", + text = "dr_tombstone01.m2", + value = "dr_tombstone01.m2", + }, + { + fileId = "511888", + text = "dr_tombstone01_nocol.m2", + value = "dr_tombstone01_nocol.m2", + }, + { + fileId = "192425", + text = "dr_tombstone02.m2", + value = "dr_tombstone02.m2", + }, + { + fileId = "192426", + text = "dr_tombstone03.m2", + value = "dr_tombstone03.m2", + }, + }, + text = "graveyard", + value = "graveyard", + }, + { + children = { + { + fileId = "192427", + text = "dr_draenei_holorunes01.m2", + value = "dr_draenei_holorunes01.m2", + }, + { + fileId = "192428", + text = "dr_draenei_holorunes01_big.m2", + value = "dr_draenei_holorunes01_big.m2", + }, + { + fileId = "192429", + text = "dr_draenei_holorunes01_bigred.m2", + value = "dr_draenei_holorunes01_bigred.m2", + }, + { + fileId = "192430", + text = "dr_draenei_holorunes02.m2", + value = "dr_draenei_holorunes02.m2", + }, + { + fileId = "192431", + text = "dr_draenei_holorunes02_big.m2", + value = "dr_draenei_holorunes02_big.m2", + }, + { + fileId = "192432", + text = "dr_draenei_holorunes02_bigred.m2", + value = "dr_draenei_holorunes02_bigred.m2", + }, + { + fileId = "192433", + text = "dr_draenei_holorunes03.m2", + value = "dr_draenei_holorunes03.m2", + }, + { + fileId = "192434", + text = "dr_draenei_holorunes03_big.m2", + value = "dr_draenei_holorunes03_big.m2", + }, + { + fileId = "192435", + text = "dr_draenei_holorunes03_bigred.m2", + value = "dr_draenei_holorunes03_bigred.m2", + }, + }, + text = "holo", + value = "holo", }, - }, - text = "darkshireentrance", - value = "darkshireentrance", - }, - { - children = { { children = { { - fileId = "189426", - text = "duskwoodcatails01.m2", - value = "duskwoodcatails01.m2", + fileId = "192441", + text = "dr_holographic_stand.m2", + value = "dr_holographic_stand.m2", }, }, - text = "duskwoodcatails01", - value = "duskwoodcatails01", + text = "holographicstand", + value = "holographicstand", }, { children = { { - fileId = "189427", - text = "duskwoodgrass01.m2", - value = "duskwoodgrass01.m2", + fileId = "370668", + text = "doodadsword_1h_draenei_b_01.m2", + value = "doodadsword_1h_draenei_b_01.m2", + }, + { + fileId = "370669", + text = "doodadsword_1h_draenei_c_01.m2", + value = "doodadsword_1h_draenei_c_01.m2", + }, + { + fileId = "192445", + text = "dr_banner02.m2", + value = "dr_banner02.m2", + }, + { + fileId = "192446", + text = "dr_cryopod_intact2.m2", + value = "dr_cryopod_intact2.m2", + }, + { + fileId = "192447", + text = "dr_knickknack_01.m2", + value = "dr_knickknack_01.m2", + }, + { + fileId = "192448", + text = "dr_knickknack_02.m2", + value = "dr_knickknack_02.m2", + }, + { + fileId = "192449", + text = "dr_knickknack_02b.m2", + value = "dr_knickknack_02b.m2", + }, + { + fileId = "538417", + text = "dr_knickknack_02b_nosound.m2", + value = "dr_knickknack_02b_nosound.m2", + }, + { + fileId = "192450", + text = "dr_knickknack_03.m2", + value = "dr_knickknack_03.m2", + }, + { + fileId = "192451", + text = "dr_knickknack_04.m2", + value = "dr_knickknack_04.m2", }, }, - text = "duskwoodgrass01", - value = "duskwoodgrass01", + text = "knickknacks", + value = "knickknacks", }, { children = { { - fileId = "189429", - text = "duskwoodlillypad01.m2", - value = "duskwoodlillypad01.m2", + fileId = "192455", + text = "dr_lamppost_01.m2", + value = "dr_lamppost_01.m2", + }, + { + fileId = "192456", + text = "dr_lamppost_02.m2", + value = "dr_lamppost_02.m2", }, }, - text = "duskwoodlillypad01", - value = "duskwoodlillypad01", + text = "lampposts", + value = "lampposts", }, { children = { { - fileId = "189432", - text = "duskwoodmushroom01.m2", - value = "duskwoodmushroom01.m2", + fileId = "192458", + text = "dr_lantern_01.m2", + value = "dr_lantern_01.m2", }, }, - text = "duskwoodmushroom01", - value = "duskwoodmushroom01", + text = "lanterns", + value = "lanterns", }, { children = { { - fileId = "189434", - text = "duskwoodseaweed01.m2", - value = "duskwoodseaweed01.m2", + fileId = "192460", + text = "dr_loom_01.m2", + value = "dr_loom_01.m2", }, }, - text = "duskwoodseaweed01", - value = "duskwoodseaweed01", + text = "loom", + value = "loom", }, { children = { { - fileId = "189437", - text = "duskwoodthornbush01.m2", - value = "duskwoodthornbush01.m2", + fileId = "192461", + text = "dr_machineparts01.m2", + value = "dr_machineparts01.m2", }, }, - text = "duskwoodthornbush01", - value = "duskwoodthornbush01", + text = "machines", + value = "machines", }, { children = { { - fileId = "189438", - text = "duskwoodthornbush02.m2", - value = "duskwoodthornbush02.m2", + fileId = "242720", + text = "dalaranpostbox.m2", + value = "dalaranpostbox.m2", + }, + { + fileId = "192464", + text = "draeneipostbox.m2", + value = "draeneipostbox.m2", }, }, - text = "duskwoodthornbush02", - value = "duskwoodthornbush02", + text = "mailbox", + value = "mailbox", }, { children = { { - fileId = "189440", - text = "duskwoodvine01.m2", - value = "duskwoodvine01.m2", + fileId = "192465", + text = "dr_parasol_large.m2", + value = "dr_parasol_large.m2", + }, + { + fileId = "192466", + text = "dr_parasol_small.m2", + value = "dr_parasol_small.m2", }, }, - text = "duskwoodvine01", - value = "duskwoodvine01", + text = "parasol", + value = "parasol", }, { children = { { - fileId = "189442", - text = "duskwoodvine02.m2", - value = "duskwoodvine02.m2", + fileId = "192468", + text = "dr_signs_wanted.m2", + value = "dr_signs_wanted.m2", }, }, - text = "duskwoodvine02", - value = "duskwoodvine02", - }, - }, - text = "detail", - value = "detail", - }, - { - children = { - { - fileId = "189445", - text = "barnduskwood.m2", - value = "barnduskwood.m2", - }, - }, - text = "duskwoodbarn", - value = "duskwoodbarn", - }, - { - children = { - { - fileId = "189452", - text = "duskwoodhaystack.m2", - value = "duskwoodhaystack.m2", - }, - }, - text = "duskwoodhaystack", - value = "duskwoodhaystack", - }, - { - children = { - { - fileId = "189455", - text = "duskwoodhaywagon.m2", - value = "duskwoodhaywagon.m2", - }, - }, - text = "duskwoodhaywagon", - value = "duskwoodhaywagon", - }, - { - children = { - { - fileId = "189457", - text = "duskwoodhearse.m2", - value = "duskwoodhearse.m2", - }, - }, - text = "duskwoodhearse", - value = "duskwoodhearse", - }, - { - children = { - { - fileId = "189458", - text = "duskscarecrow.m2", - value = "duskscarecrow.m2", - }, - }, - text = "duskwoodscarecrow", - value = "duskwoodscarecrow", - }, - { - children = { - { - fileId = "189461", - text = "duskwoodstraw.m2", - value = "duskwoodstraw.m2", - }, - }, - text = "duskwoodstraw", - value = "duskwoodstraw", - }, - { - children = { - { - fileId = "189462", - text = "duskwoodwheat.m2", - value = "duskwoodwheat.m2", - }, - }, - text = "duskwoodwheat", - value = "duskwoodwheat", - }, - { - children = { - { - fileId = "242691", - text = "duskwood_human_farm_closed.m2", - value = "duskwood_human_farm_closed.m2", - }, - { - fileId = "242692", - text = "duskwood_lumbermill.m2", - value = "duskwood_lumbermill.m2", - }, - }, - text = "farm", - value = "farm", - }, - { - children = { - { - fileId = "189464", - text = "duskwoodfencebottom.m2", - value = "duskwoodfencebottom.m2", - }, - { - fileId = "189465", - text = "duskwoodfencebottombroken.m2", - value = "duskwoodfencebottombroken.m2", - }, - { - fileId = "189466", - text = "duskwoodfencebrokensegment.m2", - value = "duskwoodfencebrokensegment.m2", - }, - { - fileId = "189467", - text = "duskwoodfencepost.m2", - value = "duskwoodfencepost.m2", + text = "posters", + value = "posters", }, { - fileId = "189468", - text = "duskwoodfencerail.m2", - value = "duskwoodfencerail.m2", + children = { + { + fileId = "192470", + text = "dr_signs_alchemy.m2", + value = "dr_signs_alchemy.m2", + }, + { + fileId = "192472", + text = "dr_signs_anvil.m2", + value = "dr_signs_anvil.m2", + }, + { + fileId = "192474", + text = "dr_signs_axes.m2", + value = "dr_signs_axes.m2", + }, + { + fileId = "192476", + text = "dr_signs_bank.m2", + value = "dr_signs_bank.m2", + }, + { + fileId = "192479", + text = "dr_signs_book.m2", + value = "dr_signs_book.m2", + }, + { + fileId = "192481", + text = "dr_signs_bow.m2", + value = "dr_signs_bow.m2", + }, + { + fileId = "192483", + text = "dr_signs_bread.m2", + value = "dr_signs_bread.m2", + }, + { + fileId = "192485", + text = "dr_signs_cheese.m2", + value = "dr_signs_cheese.m2", + }, + { + fileId = "192487", + text = "dr_signs_container.m2", + value = "dr_signs_container.m2", + }, + { + fileId = "192489", + text = "dr_signs_cooking.m2", + value = "dr_signs_cooking.m2", + }, + { + fileId = "192491", + text = "dr_signs_engineering.m2", + value = "dr_signs_engineering.m2", + }, + { + fileId = "192493", + text = "dr_signs_generalshop.m2", + value = "dr_signs_generalshop.m2", + }, + { + fileId = "192495", + text = "dr_signs_helm.m2", + value = "dr_signs_helm.m2", + }, + { + fileId = "192497", + text = "dr_signs_herbalism.m2", + value = "dr_signs_herbalism.m2", + }, + { + fileId = "192499", + text = "dr_signs_meat.m2", + value = "dr_signs_meat.m2", + }, + { + fileId = "192501", + text = "dr_signs_poisons.m2", + value = "dr_signs_poisons.m2", + }, + { + fileId = "192503", + text = "dr_signs_shield.m2", + value = "dr_signs_shield.m2", + }, + { + fileId = "192505", + text = "dr_signs_staff.m2", + value = "dr_signs_staff.m2", + }, + { + fileId = "192507", + text = "dr_signs_swords.m2", + value = "dr_signs_swords.m2", + }, + { + fileId = "192509", + text = "dr_signs_tailor.m2", + value = "dr_signs_tailor.m2", + }, + { + fileId = "192511", + text = "dr_signs_tavern.m2", + value = "dr_signs_tavern.m2", + }, + }, + text = "shopsigns", + value = "shopsigns", }, { - fileId = "189469", - text = "duskwoodfencesegment.m2", - value = "duskwoodfencesegment.m2", + children = { + { + fileId = "192513", + text = "dr_signpost_01.m2", + value = "dr_signpost_01.m2", + }, + { + fileId = "192514", + text = "dr_signpost_sign01.m2", + value = "dr_signpost_sign01.m2", + }, + }, + text = "signs", + value = "signs", }, { - fileId = "189470", - text = "duskwoodfencesegment02.m2", - value = "duskwoodfencesegment02.m2", + children = { + { + fileId = "192515", + text = "dr_table_medium_01.m2", + value = "dr_table_medium_01.m2", + }, + { + fileId = "192516", + text = "dr_table_small_02.m2", + value = "dr_table_small_02.m2", + }, + }, + text = "tables", + value = "tables", }, { - fileId = "189471", - text = "duskwoodfencetop.m2", - value = "duskwoodfencetop.m2", + children = { + { + fileId = "192518", + text = "atriumbridge.m2", + value = "atriumbridge.m2", + }, + { + fileId = "192529", + text = "factorybridge.m2", + value = "factorybridge.m2", + }, + { + fileId = "192530", + text = "factoryelevator.m2", + value = "factoryelevator.m2", + }, + { + fileId = "192531", + text = "factoryenergycube.m2", + value = "factoryenergycube.m2", + }, + { + fileId = "192532", + text = "factoryenergycube_3x3.m2", + value = "factoryenergycube_3x3.m2", + }, + { + fileId = "192533", + text = "factoryfloor.m2", + value = "factoryfloor.m2", + }, + { + fileId = "192535", + text = "narru_crystal_corrupted.m2", + value = "narru_crystal_corrupted.m2", + }, + { + fileId = "192536", + text = "narru_crystal_corrupted_no_lightning.m2", + value = "narru_crystal_corrupted_no_lightning.m2", + }, + { + fileId = "192537", + text = "raid_circle_floor.m2", + value = "raid_circle_floor.m2", + }, + }, + text = "tempestkeep", + value = "tempestkeep", }, { - fileId = "189472", - text = "duskwoodfencetopbroken.m2", - value = "duskwoodfencetopbroken.m2", + children = { + { + fileId = "192542", + text = "dr_tent_01.m2", + value = "dr_tent_01.m2", + }, + { + fileId = "192543", + text = "dr_tent_02.m2", + value = "dr_tent_02.m2", + }, + }, + text = "tents", + value = "tents", }, { - fileId = "189477", - text = "rockwallend.m2", - value = "rockwallend.m2", + children = { + { + fileId = "192545", + text = "draenei_tubes.m2", + value = "draenei_tubes.m2", + }, + { + fileId = "538419", + text = "draenei_tubes_nosound.m2", + value = "draenei_tubes_nosound.m2", + }, + { + fileId = "192546", + text = "draenei_tubes_offset.m2", + value = "draenei_tubes_offset.m2", + }, + }, + text = "tubes", + value = "tubes", }, { - fileId = "189478", - text = "rockwallrubble.m2", - value = "rockwallrubble.m2", + children = { + { + fileId = "192554", + text = "draenei_ancientwall01.m2", + value = "draenei_ancientwall01.m2", + }, + { + fileId = "192555", + text = "draenei_ancientwall02.m2", + value = "draenei_ancientwall02.m2", + }, + }, + text = "wall", + value = "wall", }, }, - text = "fence", - value = "fence", + text = "draenei", + value = "draenei", }, { children = { { - fileId = "189480", - text = "duskwoodgate01.m2", - value = "duskwoodgate01.m2", + children = { + { + fileId = "192556", + text = "et_barrel01.m2", + value = "et_barrel01.m2", + }, + { + fileId = "538421", + text = "et_barrel01_nosound.m2", + value = "et_barrel01_nosound.m2", + }, + { + fileId = "192557", + text = "et_barrel01off.m2", + value = "et_barrel01off.m2", + }, + }, + text = "barrel", + value = "barrel", }, { - fileId = "189481", - text = "duskwoodtallcemetarygate.m2", - value = "duskwoodtallcemetarygate.m2", + children = { + { + fileId = "192559", + text = "et_cage.m2", + value = "et_cage.m2", + }, + { + fileId = "192561", + text = "et_cagebase.m2", + value = "et_cagebase.m2", + }, + { + fileId = "538423", + text = "et_cagebase_nosound.m2", + value = "et_cagebase_nosound.m2", + }, + }, + text = "cage", + value = "cage", }, - }, - text = "gates", - value = "gates", - }, - { - children = { { - fileId = "189485", - text = "duskwoodgraveframe.m2", - value = "duskwoodgraveframe.m2", + children = { + { + fileId = "192562", + text = "et_collector01.m2", + value = "et_collector01.m2", + }, + { + fileId = "538425", + text = "et_collector01_nosound.m2", + value = "et_collector01_nosound.m2", + }, + }, + text = "collector", + value = "collector", }, - }, - text = "graveframe", - value = "graveframe", - }, - { - children = { { - fileId = "189488", - text = "cemetarygate01.m2", - value = "cemetarygate01.m2", + children = { + { + fileId = "192563", + text = "et_crate01.m2", + value = "et_crate01.m2", + }, + { + fileId = "538427", + text = "et_crate01_nosound.m2", + value = "et_crate01_nosound.m2", + }, + { + fileId = "192564", + text = "et_crate01off.m2", + value = "et_crate01off.m2", + }, + }, + text = "crate", + value = "crate", }, { - fileId = "189491", - text = "gatepost.m2", - value = "gatepost.m2", + children = { + { + fileId = "192566", + text = "et_crystalforge.m2", + value = "et_crystalforge.m2", + }, + { + fileId = "538431", + text = "et_crystalforge_nosound.m2", + value = "et_crystalforge_nosound.m2", + }, + { + fileId = "192567", + text = "et_crystalforgecontroller.m2", + value = "et_crystalforgecontroller.m2", + }, + { + fileId = "538429", + text = "et_crystalforgecontroller_nosound.m2", + value = "et_crystalforgecontroller_nosound.m2", + }, + }, + text = "crystalforge", + value = "crystalforge", }, { - fileId = "189492", - text = "gatesegment01.m2", - value = "gatesegment01.m2", + children = { + { + fileId = "192568", + text = "et_holographic_stand.m2", + value = "et_holographic_stand.m2", + }, + }, + text = "holographicstand", + value = "holographicstand", }, { - fileId = "189493", - text = "gatesegment02.m2", - value = "gatesegment02.m2", + children = { + { + fileId = "192569", + text = "et_lamppost01.m2", + value = "et_lamppost01.m2", + }, + { + fileId = "192570", + text = "et_lamppost01off.m2", + value = "et_lamppost01off.m2", + }, + }, + text = "lamppost", + value = "lamppost", }, { - fileId = "189494", - text = "gatesegment03.m2", - value = "gatesegment03.m2", + children = { + { + fileId = "192572", + text = "et_portal01.m2", + value = "et_portal01.m2", + }, + { + fileId = "192573", + text = "et_portal01off.m2", + value = "et_portal01off.m2", + }, + { + fileId = "192574", + text = "et_portal01offhalf.m2", + value = "et_portal01offhalf.m2", + }, + }, + text = "portal", + value = "portal", }, - }, - text = "irongate", - value = "irongate", - }, - { - children = { { - fileId = "189496", - text = "duskwoodmausoleum.m2", - value = "duskwoodmausoleum.m2", + children = { + { + fileId = "192576", + text = "et_standard.m2", + value = "et_standard.m2", + }, + }, + text = "standard", + value = "standard", }, { - fileId = "189498", - text = "mausoleumactivedoors.m2", - value = "mausoleumactivedoors.m2", + children = { + { + fileId = "192577", + text = "et_tent01.m2", + value = "et_tent01.m2", + }, + { + fileId = "192578", + text = "et_tent02.m2", + value = "et_tent02.m2", + }, + }, + text = "tents", + value = "tents", }, }, - text = "mausoleum", - value = "mausoleum", + text = "ethereal", + value = "ethereal", }, { children = { { - fileId = "189499", - text = "duskwoodboulder01.m2", - value = "duskwoodboulder01.m2", - }, - { - fileId = "189500", - text = "duskwoodboulder02.m2", - value = "duskwoodboulder02.m2", - }, - { - fileId = "189501", - text = "duskwoodboulder03.m2", - value = "duskwoodboulder03.m2", + fileId = "192579", + text = "fishfrenzy.m2", + value = "fishfrenzy.m2", }, }, - text = "rocks", - value = "rocks", + text = "fishfrenzy", + value = "fishfrenzy", }, { children = { { - fileId = "189505", - text = "duskwoodchimney01.m2", - value = "duskwoodchimney01.m2", - }, - { - fileId = "189506", - text = "duskwoodruins01.m2", - value = "duskwoodruins01.m2", - }, - { - fileId = "189507", - text = "duskwoodruins02.m2", - value = "duskwoodruins02.m2", + children = { + { + fileId = "192581", + text = "ghostlands_gravestone01.m2", + value = "ghostlands_gravestone01.m2", + }, + { + fileId = "192582", + text = "ghostlands_gravestone02.m2", + value = "ghostlands_gravestone02.m2", + }, + { + fileId = "192583", + text = "ghostlands_gravestone03.m2", + value = "ghostlands_gravestone03.m2", + }, + { + fileId = "192585", + text = "ghostlands_tomb01.m2", + value = "ghostlands_tomb01.m2", + }, + }, + text = "graveyard", + value = "graveyard", }, + }, + text = "ghostlands", + value = "ghostlands", + }, + { + children = { { - fileId = "189508", - text = "duskwoodruins03.m2", - value = "duskwoodruins03.m2", + fileId = "192586", + text = "hologram_doomguard.m2", + value = "hologram_doomguard.m2", }, { - fileId = "189509", - text = "duskwoodruins04.m2", - value = "duskwoodruins04.m2", + fileId = "192590", + text = "hologram_dreadlord.m2", + value = "hologram_dreadlord.m2", }, { - fileId = "189510", - text = "duskwoodruinsbeam.m2", - value = "duskwoodruinsbeam.m2", + fileId = "192593", + text = "hologram_eredar.m2", + value = "hologram_eredar.m2", }, { - fileId = "189511", - text = "duskwoodruinsbrick.m2", - value = "duskwoodruinsbrick.m2", + fileId = "192596", + text = "hologram_felguard.m2", + value = "hologram_felguard.m2", }, { - fileId = "189512", - text = "duskwoodruinsfoundation01.m2", - value = "duskwoodruinsfoundation01.m2", + fileId = "192598", + text = "hologram_felhound.m2", + value = "hologram_felhound.m2", }, { - fileId = "189513", - text = "duskwoodruinsfoundation02.m2", - value = "duskwoodruinsfoundation02.m2", + fileId = "192600", + text = "hologram_ganarg.m2", + value = "hologram_ganarg.m2", }, - }, - text = "ruins", - value = "ruins", - }, - { - children = { { - fileId = "189516", - text = "duskwoodcs01.m2", - value = "duskwoodcs01.m2", + fileId = "192602", + text = "hologram_imp.m2", + value = "hologram_imp.m2", }, { - fileId = "189517", - text = "duskwoodcs02.m2", - value = "duskwoodcs02.m2", + fileId = "192604", + text = "hologram_infernal.m2", + value = "hologram_infernal.m2", }, { - fileId = "189521", - text = "duskwoodtreespookless01.m2", - value = "duskwoodtreespookless01.m2", + fileId = "192606", + text = "hologram_moarg.m2", + value = "hologram_moarg.m2", }, { - fileId = "189522", - text = "duskwoodtreespookless02.m2", - value = "duskwoodtreespookless02.m2", + fileId = "192608", + text = "hologram_pitlord.m2", + value = "hologram_pitlord.m2", }, - }, - text = "spooklesstrees", - value = "spooklesstrees", - }, - { - children = { { - fileId = "242693", - text = "duskwood_stable.m2", - value = "duskwood_stable.m2", + fileId = "192612", + text = "hologram_shivan.m2", + value = "hologram_shivan.m2", }, - }, - text = "stable", - value = "stable", - }, - { - children = { { - fileId = "189523", - text = "duskwoodstoneframecorner.m2", - value = "duskwoodstoneframecorner.m2", + fileId = "192615", + text = "hologram_succubus.m2", + value = "hologram_succubus.m2", }, { - fileId = "189524", - text = "duskwoodstoneframelong.m2", - value = "duskwoodstoneframelong.m2", + fileId = "192619", + text = "hologram_voidwalker.m2", + value = "hologram_voidwalker.m2", }, { - fileId = "189525", - text = "duskwoodstoneframeshort.m2", - value = "duskwoodstoneframeshort.m2", + fileId = "192621", + text = "hologram_wrathguard.m2", + value = "hologram_wrathguard.m2", }, }, - text = "stoneframes", - value = "stoneframes", + text = "holograms", + value = "holograms", }, { children = { { - fileId = "189527", - text = "duskwoodstraw02.m2", - value = "duskwoodstraw02.m2", + children = { + { + fileId = "192623", + text = "bannerillidan.m2", + value = "bannerillidan.m2", + }, + }, + text = "banners", + value = "banners", }, }, - text = "straw", - value = "straw", + text = "illidan", + value = "illidan", }, { children = { { - fileId = "189528", - text = "dirtmound01.m2", - value = "dirtmound01.m2", - }, - { - fileId = "189530", - text = "tombstone05.m2", - value = "tombstone05.m2", - }, - { - fileId = "189532", - text = "tombstone06.m2", - value = "tombstone06.m2", - }, - { - fileId = "189534", - text = "tombstone07.m2", - value = "tombstone07.m2", - }, - { - fileId = "189535", - text = "tombstone08.m2", - value = "tombstone08.m2", - }, - { - fileId = "189536", - text = "tombstonemonument01.m2", - value = "tombstonemonument01.m2", - }, - { - fileId = "189538", - text = "tombstonemonument02.m2", - value = "tombstonemonument02.m2", - }, - { - fileId = "189540", - text = "woodcross01.m2", - value = "woodcross01.m2", + children = { + { + fileId = "192626", + text = "lo_wagon_01.m2", + value = "lo_wagon_01.m2", + }, + }, + text = "wagon", + value = "wagon", }, { - fileId = "189541", - text = "woodcross02.m2", - value = "woodcross02.m2", + children = { + { + fileId = "192631", + text = "lo_weaponrack.m2", + value = "lo_weaponrack.m2", + }, + }, + text = "weaponrack", + value = "weaponrack", }, }, - text = "tombs", - value = "tombs", + text = "lostones", + value = "lostones", }, { children = { { - fileId = "189544", - text = "duskwoodbrowntree.m2", - value = "duskwoodbrowntree.m2", - }, - { - fileId = "189545", - text = "duskwoodfallentree.m2", - value = "duskwoodfallentree.m2", - }, - { - fileId = "189546", - text = "duskwoodfallentree02.m2", - value = "duskwoodfallentree02.m2", + children = { + { + fileId = "192633", + text = "na_ark.m2", + value = "na_ark.m2", + }, + }, + text = "ark", + value = "ark", }, { - fileId = "189547", - text = "duskwoodspookytree01.m2", - value = "duskwoodspookytree01.m2", + children = { + { + fileId = "427945", + text = "na_artifact01.m2", + value = "na_artifact01.m2", + }, + }, + text = "artifact", + value = "artifact", }, { - fileId = "189551", - text = "duskwoodspookytree02.m2", - value = "duskwoodspookytree02.m2", + children = { + { + fileId = "192637", + text = "na_banner01.m2", + value = "na_banner01.m2", + }, + }, + text = "banner", + value = "banner", }, { - fileId = "189552", - text = "duskwoodspookytree03.m2", - value = "duskwoodspookytree03.m2", + children = { + { + fileId = "320480", + text = "na_barricade_01.m2", + value = "na_barricade_01.m2", + }, + { + fileId = "320481", + text = "na_barricade_pole.m2", + value = "na_barricade_pole.m2", + }, + { + fileId = "320482", + text = "na_barricade_shell_01.m2", + value = "na_barricade_shell_01.m2", + }, + { + fileId = "320483", + text = "na_barricade_shell_02.m2", + value = "na_barricade_shell_02.m2", + }, + { + fileId = "192638", + text = "na_crate01.m2", + value = "na_crate01.m2", + }, + { + fileId = "192639", + text = "na_crate02.m2", + value = "na_crate02.m2", + }, + { + fileId = "319269", + text = "na_tankstopper_01.m2", + value = "na_tankstopper_01.m2", + }, + }, + text = "crates", + value = "crates", }, { - fileId = "189557", - text = "duskwoodtree05.m2", - value = "duskwoodtree05.m2", + children = { + { + fileId = "192641", + text = "na_distiller.m2", + value = "na_distiller.m2", + }, + }, + text = "distiller", + value = "distiller", }, { - fileId = "189558", - text = "duskwoodtree06.m2", - value = "duskwoodtree06.m2", + children = { + { + fileId = "192642", + text = "na_jar01.m2", + value = "na_jar01.m2", + }, + { + fileId = "192643", + text = "na_jar02.m2", + value = "na_jar02.m2", + }, + }, + text = "jars", + value = "jars", }, { - fileId = "189559", - text = "duskwoodtree07.m2", - value = "duskwoodtree07.m2", + children = { + { + fileId = "192645", + text = "nagapagodahut01.m2", + value = "nagapagodahut01.m2", + }, + }, + text = "pagoda", + value = "pagoda", }, { - fileId = "189560", - text = "duskwoodtreecanopy01.m2", - value = "duskwoodtreecanopy01.m2", + children = { + { + fileId = "192647", + text = "na_torch01.m2", + value = "na_torch01.m2", + }, + }, + text = "torch", + value = "torch", }, { - fileId = "189561", - text = "duskwoodtreecanopy02.m2", - value = "duskwoodtreecanopy02.m2", + children = { + { + fileId = "340885", + text = "na_weapon_01.m2", + value = "na_weapon_01.m2", + }, + { + fileId = "340886", + text = "na_weapon_02.m2", + value = "na_weapon_02.m2", + }, + { + fileId = "340887", + text = "na_weapon_03.m2", + value = "na_weapon_03.m2", + }, + }, + text = "weapons", + value = "weapons", }, { - fileId = "189562", - text = "duskwoodtreecanopy03.m2", - value = "duskwoodtreecanopy03.m2", + children = { + { + fileId = "340123", + text = "na_weaponrack01.m2", + value = "na_weaponrack01.m2", + }, + { + fileId = "340124", + text = "na_weaponrack01_no_weapons.m2", + value = "na_weaponrack01_no_weapons.m2", + }, + { + fileId = "340183", + text = "na_weaponrack02.m2", + value = "na_weaponrack02.m2", + }, + { + fileId = "340184", + text = "na_weaponrack02_no_weapons.m2", + value = "na_weaponrack02_no_weapons.m2", + }, + { + fileId = "340888", + text = "na_weaponrack03.m2", + value = "na_weaponrack03.m2", + }, + { + fileId = "340889", + text = "na_weaponrack03_no_weapons.m2", + value = "na_weaponrack03_no_weapons.m2", + }, + { + fileId = "192649", + text = "na_weaponstack01.m2", + value = "na_weaponstack01.m2", + }, + { + fileId = "192650", + text = "na_weaponstack02.m2", + value = "na_weaponstack02.m2", + }, + }, + text = "weaponstacks", + value = "weaponstacks", }, + }, + text = "naga", + value = "naga", + }, + { + children = { { - fileId = "189566", - text = "duskwoodtreestump01.m2", - value = "duskwoodtreestump01.m2", + children = { + { + fileId = "192651", + text = "om_bones_01.m2", + value = "om_bones_01.m2", + }, + { + fileId = "192652", + text = "om_bones_02.m2", + value = "om_bones_02.m2", + }, + { + fileId = "192653", + text = "om_bones_03.m2", + value = "om_bones_03.m2", + }, + }, + text = "bones", + value = "bones", }, { - fileId = "189567", - text = "duskwoodtreestump02.m2", - value = "duskwoodtreestump02.m2", + children = { + { + fileId = "192655", + text = "om_chains_01.m2", + value = "om_chains_01.m2", + }, + { + fileId = "192656", + text = "om_chains_02.m2", + value = "om_chains_02.m2", + }, + { + fileId = "192657", + text = "om_chains_03.m2", + value = "om_chains_03.m2", + }, + { + fileId = "192658", + text = "om_chains_04.m2", + value = "om_chains_04.m2", + }, + }, + text = "chains", + value = "chains", }, { - fileId = "189571", - text = "duskwoodwhitetree.m2", - value = "duskwoodwhitetree.m2", + children = { + { + fileId = "192659", + text = "om_chair_01.m2", + value = "om_chair_01.m2", + }, + }, + text = "chair", + value = "chair", }, { - fileId = "189575", - text = "newduskwoodtreehuge.m2", - value = "newduskwoodtreehuge.m2", + children = { + { + fileId = "192662", + text = "om_campfire_01.m2", + value = "om_campfire_01.m2", + }, + { + fileId = "192664", + text = "om_torch_01.m2", + value = "om_torch_01.m2", + }, + }, + text = "fires", + value = "fires", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "189580", - text = "duskwoodrockwall.m2", - value = "duskwoodrockwall.m2", + children = { + { + fileId = "192666", + text = "om_forge_01.m2", + value = "om_forge_01.m2", + }, + }, + text = "forge", + value = "forge", }, - }, - text = "walls", - value = "walls", - }, - { - children = { { - fileId = "189581", - text = "warningtree.m2", - value = "warningtree.m2", + children = { + { + fileId = "192667", + text = "om_pillar_01.m2", + value = "om_pillar_01.m2", + }, + { + fileId = "404868", + text = "om_pillar_01_gray.m2", + value = "om_pillar_01_gray.m2", + }, + }, + text = "pillar", + value = "pillar", }, - }, - text = "warningtree", - value = "warningtree", - }, - { - children = { { - fileId = "189589", - text = "duskwoodwarpgate.m2", - value = "duskwoodwarpgate.m2", + children = { + { + fileId = "192668", + text = "om_rock_01.m2", + value = "om_rock_01.m2", + }, + { + fileId = "192669", + text = "om_rock_02.m2", + value = "om_rock_02.m2", + }, + { + fileId = "192670", + text = "om_rock_03.m2", + value = "om_rock_03.m2", + }, + { + fileId = "192671", + text = "om_rock_04.m2", + value = "om_rock_04.m2", + }, + { + fileId = "192672", + text = "om_rock_05.m2", + value = "om_rock_05.m2", + }, + }, + text = "rocks", + value = "rocks", }, - }, - text = "warpgate", - value = "warpgate", - }, - { - children = { { - fileId = "189595", - text = "webdangle01.m2", - value = "webdangle01.m2", + children = { + { + fileId = "192674", + text = "om_iron_spike_01.m2", + value = "om_iron_spike_01.m2", + }, + { + fileId = "192675", + text = "om_iron_spike_02.m2", + value = "om_iron_spike_02.m2", + }, + }, + text = "spikes", + value = "spikes", }, { - fileId = "189596", - text = "webdangle02.m2", - value = "webdangle02.m2", + children = { + { + fileId = "192677", + text = "om_stonehenge_01.m2", + value = "om_stonehenge_01.m2", + }, + { + fileId = "192678", + text = "om_stonehenge_02.m2", + value = "om_stonehenge_02.m2", + }, + { + fileId = "192679", + text = "om_stonehenge_03.m2", + value = "om_stonehenge_03.m2", + }, + }, + text = "stonehenge", + value = "stonehenge", }, { - fileId = "189597", - text = "webstretch01.m2", - value = "webstretch01.m2", + children = { + { + fileId = "192680", + text = "om_table_01.m2", + value = "om_table_01.m2", + }, + }, + text = "table", + value = "table", }, - }, - text = "webs", - value = "webs", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "duskwood", - value = "duskwood", - }, - { - children = { - { - children = { - { - children = { { - fileId = "189599", - text = "nsabbeybell.m2", - value = "nsabbeybell.m2", + children = { + { + fileId = "192682", + text = "om_tent_01.m2", + value = "om_tent_01.m2", + }, + { + fileId = "192683", + text = "om_tent_02.m2", + value = "om_tent_02.m2", + }, + { + fileId = "192684", + text = "om_tent_03.m2", + value = "om_tent_03.m2", + }, + }, + text = "tents", + value = "tents", }, - }, - text = "abbeybell", - value = "abbeybell", - }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { - { - children = { { - fileId = "189601", - text = "blacksmith.m2", - value = "blacksmith.m2", + children = { + { + fileId = "192685", + text = "om_totem_01.m2", + value = "om_totem_01.m2", + }, + }, + text = "totem", + value = "totem", }, - }, - text = "blacksmith", - value = "blacksmith", - }, - { - children = { { - fileId = "189610", - text = "elwynnfootbridge.m2", - value = "elwynnfootbridge.m2", + children = { + { + fileId = "192686", + text = "om_weaponrack_01.m2", + value = "om_weaponrack_01.m2", + }, + { + fileId = "192687", + text = "om_weapons_01.m2", + value = "om_weapons_01.m2", + }, + { + fileId = "192688", + text = "om_weapons_02.m2", + value = "om_weapons_02.m2", + }, + { + fileId = "192689", + text = "om_weapons_03.m2", + value = "om_weapons_03.m2", + }, + { + fileId = "192690", + text = "om_weapons_04.m2", + value = "om_weapons_04.m2", + }, + }, + text = "weapons", + value = "weapons", }, }, - text = "bridges", - value = "bridges", + text = "ogre", + value = "ogre", }, { children = { { - fileId = "189611", - text = "distillery.m2", - value = "distillery.m2", + children = { + { + fileId = "192692", + text = "overhangrock_large_01.m2", + value = "overhangrock_large_01.m2", + }, + { + fileId = "192693", + text = "overhangrock_large_02.m2", + value = "overhangrock_large_02.m2", + }, + { + fileId = "192694", + text = "overhangrock_large_03.m2", + value = "overhangrock_large_03.m2", + }, + { + fileId = "192695", + text = "overhangrock_small_01.m2", + value = "overhangrock_small_01.m2", + }, + { + fileId = "192696", + text = "overhangrock_small_02.m2", + value = "overhangrock_small_02.m2", + }, + { + fileId = "192697", + text = "overhangrock_small_03.m2", + value = "overhangrock_small_03.m2", + }, + }, + text = "rocks", + value = "rocks", }, }, - text = "distillery", - value = "distillery", + text = "outland", + value = "outland", }, { children = { { - fileId = "189620", - text = "goldmine.m2", - value = "goldmine.m2", + children = { + { + fileId = "192699", + text = "shadowcouncil_banner01.m2", + value = "shadowcouncil_banner01.m2", + }, + { + fileId = "192700", + text = "shadowcouncil_banner02.m2", + value = "shadowcouncil_banner02.m2", + }, + }, + text = "banners", + value = "banners", }, { - fileId = "189621", - text = "goldminetrackcurve.m2", - value = "goldminetrackcurve.m2", + children = { + { + fileId = "192701", + text = "shadowcouncil_magicdevice01.m2", + value = "shadowcouncil_magicdevice01.m2", + }, + { + fileId = "192702", + text = "shadowcouncil_magicdevice02.m2", + value = "shadowcouncil_magicdevice02.m2", + }, + }, + text = "magicdevices", + value = "magicdevices", }, { - fileId = "189622", - text = "goldminetracks.m2", - value = "goldminetracks.m2", + children = { + { + fileId = "192704", + text = "shadowcouncil_tent01.m2", + value = "shadowcouncil_tent01.m2", + }, + { + fileId = "192705", + text = "shadowcouncil_tent02.m2", + value = "shadowcouncil_tent02.m2", + }, + }, + text = "tents", + value = "tents", }, - }, - text = "goldmine", - value = "goldmine", - }, - { - children = { { - fileId = "189629", - text = "humanguardtower.m2", - value = "humanguardtower.m2", + children = { + { + fileId = "192707", + text = "shadowcouncil_torch.m2", + value = "shadowcouncil_torch.m2", + }, + }, + text = "torch", + value = "torch", }, }, - text = "humanguardtower", - value = "humanguardtower", + text = "shadowcouncil", + value = "shadowcouncil", }, { children = { { - fileId = "189632", - text = "humanwatchtower.m2", - value = "humanwatchtower.m2", + children = { + { + fileId = "249606", + text = "jewelcraft_blueheart_01.m2", + value = "jewelcraft_blueheart_01.m2", + }, + { + fileId = "192710", + text = "jewelcraft_figurine01.m2", + value = "jewelcraft_figurine01.m2", + }, + { + fileId = "192711", + text = "jewelcraft_figurine02.m2", + value = "jewelcraft_figurine02.m2", + }, + { + fileId = "242724", + text = "jewelcraft_figurine03.m2", + value = "jewelcraft_figurine03.m2", + }, + { + fileId = "192712", + text = "jewelcraft_gemcut_01.m2", + value = "jewelcraft_gemcut_01.m2", + }, + { + fileId = "192713", + text = "jewelcraft_gemcut_02.m2", + value = "jewelcraft_gemcut_02.m2", + }, + { + fileId = "192714", + text = "jewelcraft_gemcut_03.m2", + value = "jewelcraft_gemcut_03.m2", + }, + { + fileId = "242725", + text = "jewelcraft_gemcut_04.m2", + value = "jewelcraft_gemcut_04.m2", + }, + { + fileId = "192715", + text = "jewelcraft_gemuncut_01.m2", + value = "jewelcraft_gemuncut_01.m2", + }, + { + fileId = "192716", + text = "jewelcraft_gemuncut_02.m2", + value = "jewelcraft_gemuncut_02.m2", + }, + { + fileId = "192717", + text = "jewelcraft_gemuncut_03.m2", + value = "jewelcraft_gemuncut_03.m2", + }, + { + fileId = "192718", + text = "jewelcraft_grinder01.m2", + value = "jewelcraft_grinder01.m2", + }, + { + fileId = "242726", + text = "jewelcraft_necklace01.m2", + value = "jewelcraft_necklace01.m2", + }, + { + fileId = "242727", + text = "jewelcraft_necklace02.m2", + value = "jewelcraft_necklace02.m2", + }, + { + fileId = "242728", + text = "jewelcraft_ring01.m2", + value = "jewelcraft_ring01.m2", + }, + { + fileId = "242729", + text = "jewelcraft_ring02.m2", + value = "jewelcraft_ring02.m2", + }, + { + fileId = "242730", + text = "jewelcraft_ring03.m2", + value = "jewelcraft_ring03.m2", + }, + }, + text = "jewelcrafting", + value = "jewelcrafting", }, }, - text = "humanwatchtower", - value = "humanwatchtower", + text = "tradeskill", + value = "tradeskill", }, { children = { { - fileId = "189641", - text = "stormwindgate.m2", - value = "stormwindgate.m2", + children = { + { + fileId = "192721", + text = "vr_weaponrack_01.m2", + value = "vr_weaponrack_01.m2", + }, + }, + text = "weaponracks", + value = "weaponracks", }, }, - text = "stormwindentrance", - value = "stormwindentrance", + text = "vrykul", + value = "vrykul", }, }, - text = "buildings", - value = "buildings", + text = "generic", + value = "generic", }, { children = { { children = { { - fileId = "189642", - text = "anvil.m2", - value = "anvil.m2", + fileId = "192723", + text = "ghostlands_arch_01.m2", + value = "ghostlands_arch_01.m2", }, }, - text = "anvil", - value = "anvil", + text = "arch", + value = "arch", }, { children = { { - fileId = "189652", - text = "ballista.m2", - value = "ballista.m2", + fileId = "192725", + text = "ghostlandsbush01.m2", + value = "ghostlandsbush01.m2", }, - }, - text = "ballista", - value = "ballista", - }, - { - children = { { - fileId = "189657", - text = "ballistaruined.m2", - value = "ballistaruined.m2", + fileId = "192726", + text = "ghostlandsbush02.m2", + value = "ghostlandsbush02.m2", }, }, - text = "ballistaruined", - value = "ballistaruined", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "189666", - text = "battlegladebanner1.m2", - value = "battlegladebanner1.m2", + fileId = "192727", + text = "fence_ghostlands01.m2", + value = "fence_ghostlands01.m2", }, - }, - text = "battlegladebanner1", - value = "battlegladebanner1", - }, - { - children = { { - fileId = "189670", - text = "battlegladebanner2.m2", - value = "battlegladebanner2.m2", + fileId = "192728", + text = "fence_ghostlands02.m2", + value = "fence_ghostlands02.m2", }, - }, - text = "battlegladebanner2", - value = "battlegladebanner2", - }, - { - children = { { - fileId = "189674", - text = "battlegladepolearmskull.m2", - value = "battlegladepolearmskull.m2", + fileId = "192729", + text = "fence_ghostlands03.m2", + value = "fence_ghostlands03.m2", }, - }, - text = "battlegladepolearmskull", - value = "battlegladepolearmskull", - }, - { - children = { { - fileId = "189676", - text = "battlegladeshield1.m2", - value = "battlegladeshield1.m2", + fileId = "192730", + text = "fence_ghostlands04.m2", + value = "fence_ghostlands04.m2", }, }, - text = "battlegladeshield1", - value = "battlegladeshield1", + text = "fence", + value = "fence", }, { children = { { - fileId = "189678", - text = "battlegladeshield2.m2", - value = "battlegladeshield2.m2", + fileId = "192732", + text = "be_lamppost_ghostlands01.m2", + value = "be_lamppost_ghostlands01.m2", }, - }, - text = "battlegladeshield2", - value = "battlegladeshield2", - }, - { - children = { { - fileId = "189680", - text = "battlegladeshield3.m2", - value = "battlegladeshield3.m2", + fileId = "192733", + text = "be_lamppost_ghostlands02.m2", + value = "be_lamppost_ghostlands02.m2", }, }, - text = "battlegladeshield3", - value = "battlegladeshield3", + text = "lampposts", + value = "lampposts", }, { children = { { - fileId = "189682", - text = "battlegladeskullhuman1.m2", - value = "battlegladeskullhuman1.m2", + fileId = "192734", + text = "ghostlands_moonstone.m2", + value = "ghostlands_moonstone.m2", }, }, - text = "battlegladeskullhuman1", - value = "battlegladeskullhuman1", + text = "moonstone", + value = "moonstone", }, { children = { { - fileId = "189684", - text = "battlegladeskullhuman2.m2", - value = "battlegladeskullhuman2.m2", + fileId = "192738", + text = "ghostland_obelisk_01.m2", + value = "ghostland_obelisk_01.m2", }, - }, - text = "battlegladeskullhuman2", - value = "battlegladeskullhuman2", - }, - { - children = { { - fileId = "189685", - text = "battlegladeskullorc1.m2", - value = "battlegladeskullorc1.m2", + fileId = "192739", + text = "ghostland_obelisk_02.m2", + value = "ghostland_obelisk_02.m2", }, - }, - text = "battlegladeskullorc1", - value = "battlegladeskullorc1", - }, - { - children = { { - fileId = "189686", - text = "battlegladeskullorc2.m2", - value = "battlegladeskullorc2.m2", + fileId = "192740", + text = "ghostland_obelisk_03.m2", + value = "ghostland_obelisk_03.m2", }, }, - text = "battlegladeskullorc2", - value = "battlegladeskullorc2", + text = "obelisk", + value = "obelisk", }, { children = { { - fileId = "189687", - text = "battlegladesword.m2", - value = "battlegladesword.m2", + fileId = "192742", + text = "ghostland_planter_01.m2", + value = "ghostland_planter_01.m2", }, - }, - text = "battlegladesword", - value = "battlegladesword", - }, - { - children = { { - fileId = "189689", - text = "battlegladeswordskull.m2", - value = "battlegladeswordskull.m2", + fileId = "192743", + text = "ghostland_planter_02.m2", + value = "ghostland_planter_02.m2", }, - }, - text = "battlegladeswordskull", - value = "battlegladeswordskull", - }, - { - children = { { - fileId = "189690", - text = "battlegladewoodspikes.m2", - value = "battlegladewoodspikes.m2", + fileId = "192744", + text = "ghostland_planter_03.m2", + value = "ghostland_planter_03.m2", }, }, - text = "battlegladewoodspikes", - value = "battlegladewoodspikes", + text = "planter", + value = "planter", }, { children = { { - fileId = "189691", - text = "bellow.m2", - value = "bellow.m2", + fileId = "192746", + text = "gl_bluepollen.m2", + value = "gl_bluepollen.m2", }, }, - text = "bellow", - value = "bellow", + text = "pollen", + value = "pollen", }, { children = { { - fileId = "189692", - text = "elwynnbush01.m2", - value = "elwynnbush01.m2", - }, - { - fileId = "189693", - text = "elwynnbush02.m2", - value = "elwynnbush02.m2", - }, - { - fileId = "189694", - text = "elwynnbush03.m2", - value = "elwynnbush03.m2", - }, - { - fileId = "189695", - text = "elwynnbush04.m2", - value = "elwynnbush04.m2", + fileId = "192747", + text = "ghostlandscliffrock01.m2", + value = "ghostlandscliffrock01.m2", }, { - fileId = "189696", - text = "elwynnbush05.m2", - value = "elwynnbush05.m2", + fileId = "192748", + text = "ghostlandscliffrock02.m2", + value = "ghostlandscliffrock02.m2", }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { { - fileId = "189697", - text = "elwynnbush06.m2", - value = "elwynnbush06.m2", + fileId = "192750", + text = "ghostlandssmallroots01.m2", + value = "ghostlandssmallroots01.m2", }, { - fileId = "189698", - text = "elwynnbush07.m2", - value = "elwynnbush07.m2", + fileId = "192751", + text = "ghostlandssmallroots02.m2", + value = "ghostlandssmallroots02.m2", }, { - fileId = "189699", - text = "elwynnbush08.m2", - value = "elwynnbush08.m2", + fileId = "192752", + text = "ghostlandssmallroots03.m2", + value = "ghostlandssmallroots03.m2", }, { - fileId = "189700", - text = "elwynnbush09.m2", - value = "elwynnbush09.m2", + fileId = "192753", + text = "ghostlandssmallroots04.m2", + value = "ghostlandssmallroots04.m2", }, }, - text = "bush", - value = "bush", + text = "roots", + value = "roots", }, { children = { { - fileId = "189705", - text = "elwynncampfire.m2", - value = "elwynncampfire.m2", - }, - { - fileId = "189706", - text = "elwynncampfire_blue.m2", - value = "elwynncampfire_blue.m2", + fileId = "192754", + text = "be_signpost_ghostlands.m2", + value = "be_signpost_ghostlands.m2", }, - }, - text = "campfire", - value = "campfire", - }, - { - children = { { - fileId = "189709", - text = "catapult.m2", - value = "catapult.m2", + fileId = "192755", + text = "be_signpost_sign_ghostlands.m2", + value = "be_signpost_sign_ghostlands.m2", }, }, - text = "catapult", - value = "catapult", + text = "signpost", + value = "signpost", }, { children = { { - fileId = "189715", - text = "elwynncliffrock01.m2", - value = "elwynncliffrock01.m2", - }, - { - fileId = "189716", - text = "elwynncliffrock02.m2", - value = "elwynncliffrock02.m2", - }, - { - fileId = "189717", - text = "elwynncliffrock03.m2", - value = "elwynncliffrock03.m2", - }, - { - fileId = "189718", - text = "elwynncliffrock04.m2", - value = "elwynncliffrock04.m2", - }, - { - fileId = "189719", - text = "elwynncliffrock05.m2", - value = "elwynncliffrock05.m2", + fileId = "192756", + text = "swath_skull.m2", + value = "swath_skull.m2", }, }, - text = "cliffrocks", - value = "cliffrocks", + text = "skulls", + value = "skulls", }, { children = { { - fileId = "189723", - text = "corn.m2", - value = "corn.m2", - }, - { - fileId = "189725", - text = "corncrop1.m2", - value = "corncrop1.m2", - }, - { - fileId = "189727", - text = "corncrop2.m2", - value = "corncrop2.m2", - }, - { - fileId = "189728", - text = "corncrop3.m2", - value = "corncrop3.m2", + fileId = "192759", + text = "ghostlands_webstretch_01.m2", + value = "ghostlands_webstretch_01.m2", }, { - fileId = "189730", - text = "corncropdead.m2", - value = "corncropdead.m2", + fileId = "192760", + text = "ghostlandsweb_01.m2", + value = "ghostlandsweb_01.m2", }, { - fileId = "189731", - text = "corncroplowpoly.m2", - value = "corncroplowpoly.m2", + fileId = "192761", + text = "ghostlandsweb_02.m2", + value = "ghostlandsweb_02.m2", }, { - fileId = "189732", - text = "corncroprow.m2", - value = "corncroprow.m2", + fileId = "192762", + text = "ghostlandsweb_03.m2", + value = "ghostlandsweb_03.m2", }, { - fileId = "189733", - text = "corncroprowlowpoly01.m2", - value = "corncroprowlowpoly01.m2", + fileId = "192763", + text = "ghostlandswebdangle_01.m2", + value = "ghostlandswebdangle_01.m2", }, { - fileId = "189734", - text = "corncroprowlowpoly02.m2", - value = "corncroprowlowpoly02.m2", + fileId = "192764", + text = "ghostlandswebdangle_02.m2", + value = "ghostlandswebdangle_02.m2", }, }, - text = "corncrop", - value = "corncrop", + text = "webs", + value = "webs", }, + }, + text = "ghostlands", + value = "ghostlands", + }, + { + children = { { children = { { children = { { - fileId = "189739", - text = "elwynncatails01.m2", - value = "elwynncatails01.m2", + fileId = "192766", + text = "magtheradoncube.m2", + value = "magtheradoncube.m2", }, }, - text = "elwynncatails01", - value = "elwynncatails01", + text = "cube", + value = "cube", }, { children = { { - fileId = "189740", - text = "elwynncatails02.m2", - value = "elwynncatails02.m2", + fileId = "192768", + text = "hellfire_bossdoor01.m2", + value = "hellfire_bossdoor01.m2", + }, + { + fileId = "192769", + text = "hf_mag_door.m2", + value = "hf_mag_door.m2", }, }, - text = "elwynncatails02", - value = "elwynncatails02", + text = "doors", + value = "doors", }, { children = { { - fileId = "189742", - text = "elwynndetailflowers01.m2", - value = "elwynndetailflowers01.m2", + fileId = "192771", + text = "hellfire_raid_fx.m2", + value = "hellfire_raid_fx.m2", }, { - fileId = "189743", - text = "elwynndetailflowers02.m2", - value = "elwynndetailflowers02.m2", + fileId = "192772", + text = "raid_column_fx.m2", + value = "raid_column_fx.m2", }, }, - text = "elwynndetailflowers", - value = "elwynndetailflowers", + text = "raid_fx", + value = "raid_fx", }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { { children = { { - fileId = "189744", - text = "elwynndetailgrass01.m2", - value = "elwynndetailgrass01.m2", + children = { + { + fileId = "192781", + text = "hellfire_dw_fellconversionchamber.m2", + value = "hellfire_dw_fellconversionchamber.m2", + }, + }, + text = "chamber", + value = "chamber", }, { - fileId = "189745", - text = "elwynndetailgrass02.m2", - value = "elwynndetailgrass02.m2", + children = { + { + fileId = "192782", + text = "hellfire_dw_largefloor_crack_onoff.m2", + value = "hellfire_dw_largefloor_crack_onoff.m2", + }, + { + fileId = "192783", + text = "hellfire_dw_smallfloor_crack_onoff.m2", + value = "hellfire_dw_smallfloor_crack_onoff.m2", + }, + }, + text = "cracks", + value = "cracks", }, { - fileId = "189746", - text = "elwynndetailgrass03.m2", - value = "elwynndetailgrass03.m2", + children = { + { + fileId = "192784", + text = "hellfire_dw_mainprisonentry.m2", + value = "hellfire_dw_mainprisonentry.m2", + }, + { + fileId = "192785", + text = "hellfire_dw_prisondoor.m2", + value = "hellfire_dw_prisondoor.m2", + }, + }, + text = "doors", + value = "doors", }, { - fileId = "189747", - text = "elwynndetailgrass04.m2", - value = "elwynndetailgrass04.m2", + children = { + { + fileId = "192786", + text = "hellfire_dw_summonroomdoor.m2", + value = "hellfire_dw_summonroomdoor.m2", + }, + }, + text = "summon_door", + value = "summon_door", }, - }, - text = "elwynndetailgrass", - value = "elwynndetailgrass", - }, - { - children = { { - fileId = "189749", - text = "elwynndetailrock01.m2", - value = "elwynndetailrock01.m2", + children = { + { + fileId = "192790", + text = "hellfire_dw_summonpower.m2", + value = "hellfire_dw_summonpower.m2", + }, + }, + text = "summoning_power_room", + value = "summoning_power_room", }, { - fileId = "189750", - text = "elwynndetailrock02.m2", - value = "elwynndetailrock02.m2", + children = { + { + fileId = "192793", + text = "hf_floor_switch.m2", + value = "hf_floor_switch.m2", + }, + }, + text = "switches", + value = "switches", }, }, - text = "elwynndetailrocks", - value = "elwynndetailrocks", - }, - { - fileId = "189751", - text = "elwynnflower01.m2", - value = "elwynnflower01.m2", - }, - { - fileId = "189752", - text = "elwynnflower02.m2", - value = "elwynnflower02.m2", - }, - { - fileId = "189754", - text = "elwynngrass01.m2", - value = "elwynngrass01.m2", + text = "activedoodads", + value = "activedoodads", }, { children = { { - fileId = "189755", - text = "elwynngrass02.m2", - value = "elwynngrass02.m2", + children = { + { + fileId = "192802", + text = "dw_conversionchamber.m2", + value = "dw_conversionchamber.m2", + }, + { + fileId = "192806", + text = "hellfire_dw_conversionchamber_broken.m2", + value = "hellfire_dw_conversionchamber_broken.m2", + }, + }, + text = "chamber", + value = "chamber", }, - }, - text = "elwynngrass02", - value = "elwynngrass02", - }, - { - children = { { - fileId = "189757", - text = "elwynngrass1.m2", - value = "elwynngrass1.m2", + children = { + { + fileId = "192811", + text = "hellfire_dw_largefloor_crack.m2", + value = "hellfire_dw_largefloor_crack.m2", + }, + { + fileId = "192812", + text = "hellfire_dw_largewall_crack.m2", + value = "hellfire_dw_largewall_crack.m2", + }, + { + fileId = "192813", + text = "hellfire_dw_smallfloor_crack.m2", + value = "hellfire_dw_smallfloor_crack.m2", + }, + { + fileId = "192814", + text = "hellfire_dw_smallwall_crack.m2", + value = "hellfire_dw_smallwall_crack.m2", + }, + }, + text = "cracks", + value = "cracks", }, - }, - text = "elwynngrass1", - value = "elwynngrass1", - }, - { - children = { { - fileId = "189759", - text = "elwynnlillypad01.m2", - value = "elwynnlillypad01.m2", + children = { + { + fileId = "192818", + text = "hellfire_dw_celldoor.m2", + value = "hellfire_dw_celldoor.m2", + }, + { + fileId = "192819", + text = "hellfire_dw_prisonentry.m2", + value = "hellfire_dw_prisonentry.m2", + }, + }, + text = "doors", + value = "doors", }, - }, - text = "elwynnlillypad01", - value = "elwynnlillypad01", - }, - { - fileId = "189760", - text = "elwynnmelon01.m2", - value = "elwynnmelon01.m2", - }, - { - children = { { - fileId = "189761", - text = "elwynnmushroom01.m2", - value = "elwynnmushroom01.m2", + children = { + { + fileId = "192822", + text = "hellfire_dw_banner_type01.m2", + value = "hellfire_dw_banner_type01.m2", + }, + { + fileId = "192823", + text = "hellfire_dw_banner_type02.m2", + value = "hellfire_dw_banner_type02.m2", + }, + { + fileId = "192824", + text = "hellfire_dw_banner_type03.m2", + value = "hellfire_dw_banner_type03.m2", + }, + { + fileId = "192825", + text = "hellfire_dw_banner_type04.m2", + value = "hellfire_dw_banner_type04.m2", + }, + { + fileId = "192826", + text = "hellfire_dw_banner_typelarge_longchain.m2", + value = "hellfire_dw_banner_typelarge_longchain.m2", + }, + { + fileId = "192827", + text = "hellfire_dw_banner_typewide.m2", + value = "hellfire_dw_banner_typewide.m2", + }, + }, + text = "dw_banners", + value = "dw_banners", }, - }, - text = "elwynnmushroom01", - value = "elwynnmushroom01", - }, - { - children = { { - fileId = "189763", - text = "elwynnpoppy1.m2", - value = "elwynnpoppy1.m2", + children = { + { + fileId = "192830", + text = "hellfire_dw_floorbraizer.m2", + value = "hellfire_dw_floorbraizer.m2", + }, + { + fileId = "192831", + text = "hellfire_dw_hangingbraizer.m2", + value = "hellfire_dw_hangingbraizer.m2", + }, + }, + text = "dw_braizer", + value = "dw_braizer", }, - }, - text = "elwynnpoppy1", - value = "elwynnpoppy1", - }, - { - children = { { - fileId = "189765", - text = "elwynnpoppy2.m2", - value = "elwynnpoppy2.m2", + children = { + { + fileId = "192833", + text = "hellfire_dw_hook.m2", + value = "hellfire_dw_hook.m2", + }, + { + fileId = "192834", + text = "hellfire_dw_hook_swing.m2", + value = "hellfire_dw_hook_swing.m2", + }, + }, + text = "dw_hooks", + value = "dw_hooks", }, - }, - text = "elwynnpoppy2", - value = "elwynnpoppy2", - }, - { - children = { { - fileId = "189767", - text = "elwynnreeds01.m2", - value = "elwynnreeds01.m2", + children = { + { + fileId = "192836", + text = "hf_demonwing_lantern_nolight.m2", + value = "hf_demonwing_lantern_nolight.m2", + }, + }, + text = "dw_lantern", + value = "dw_lantern", }, - }, - text = "elwynnreeds01", - value = "elwynnreeds01", - }, - { - children = { { - fileId = "189768", - text = "elwynnrock1.m2", - value = "elwynnrock1.m2", + children = { + { + fileId = "192839", + text = "hellfire_dw_pipe_type1.m2", + value = "hellfire_dw_pipe_type1.m2", + }, + { + fileId = "192840", + text = "hellfire_dw_pipe_type2.m2", + value = "hellfire_dw_pipe_type2.m2", + }, + { + fileId = "192841", + text = "hellfire_dw_pipe_type3.m2", + value = "hellfire_dw_pipe_type3.m2", + }, + { + fileId = "192842", + text = "hellfire_dw_pipe_type4.m2", + value = "hellfire_dw_pipe_type4.m2", + }, + { + fileId = "192843", + text = "hellfire_dw_pipe_typebasic.m2", + value = "hellfire_dw_pipe_typebasic.m2", + }, + }, + text = "dw_pipes", + value = "dw_pipes", }, - }, - text = "elwynnrock1", - value = "elwynnrock1", - }, - { - children = { { - fileId = "189770", - text = "elwynnrock2.m2", - value = "elwynnrock2.m2", + children = { + { + fileId = "192853", + text = "hf_demonwing_lantern.m2", + value = "hf_demonwing_lantern.m2", + }, + }, + text = "lantern", + value = "lantern", }, - }, - text = "elwynnrock2", - value = "elwynnrock2", - }, - { - children = { { - fileId = "189772", - text = "elwynnseaweed01.m2", - value = "elwynnseaweed01.m2", + children = { + { + fileId = "192863", + text = "hellfire_dw_machine_fin2.m2", + value = "hellfire_dw_machine_fin2.m2", + }, + { + fileId = "192864", + text = "hellfire_dw_machine_ver2.m2", + value = "hellfire_dw_machine_ver2.m2", + }, + { + fileId = "192865", + text = "hellfire_dw_machine_ver3.m2", + value = "hellfire_dw_machine_ver3.m2", + }, + { + fileId = "192866", + text = "hellfire_dw_tank.m2", + value = "hellfire_dw_tank.m2", + }, + }, + text = "machine", + value = "machine", }, }, - text = "elwynnseaweed01", - value = "elwynnseaweed01", + text = "passivedoodads", + value = "passivedoodads", }, + }, + text = "demonwing", + value = "demonwing", + }, + { + children = { { children = { { - fileId = "189774", - text = "elwynnshrub1.m2", - value = "elwynnshrub1.m2", + fileId = "192870", + text = "hellfire_banner_type01.m2", + value = "hellfire_banner_type01.m2", + }, + { + fileId = "192871", + text = "hellfire_banner_type01_burning.m2", + value = "hellfire_banner_type01_burning.m2", + }, + { + fileId = "192872", + text = "hellfire_banner_type02.m2", + value = "hellfire_banner_type02.m2", + }, + { + fileId = "192873", + text = "hellfire_banner_type03.m2", + value = "hellfire_banner_type03.m2", + }, + { + fileId = "192874", + text = "hellfire_banner_type04.m2", + value = "hellfire_banner_type04.m2", + }, + { + fileId = "192875", + text = "hellfire_banner_typelarge_longchain.m2", + value = "hellfire_banner_typelarge_longchain.m2", + }, + { + fileId = "192876", + text = "hellfire_banner_typesmall_shortchain.m2", + value = "hellfire_banner_typesmall_shortchain.m2", + }, + { + fileId = "192877", + text = "hellfire_banner_typewide.m2", + value = "hellfire_banner_typewide.m2", }, }, - text = "elwynnshrub1", - value = "elwynnshrub1", + text = "banners", + value = "banners", }, { children = { { - fileId = "189777", - text = "elwynnthornbush01.m2", - value = "elwynnthornbush01.m2", + fileId = "192879", + text = "hellfire_barrier.m2", + value = "hellfire_barrier.m2", }, }, - text = "elwynnthornbush01", - value = "elwynnthornbush01", + text = "barrier", + value = "barrier", }, { children = { { - fileId = "189778", - text = "elwynnthornbush02.m2", - value = "elwynnthornbush02.m2", + fileId = "192883", + text = "hellfire_floorbraizer.m2", + value = "hellfire_floorbraizer.m2", }, - }, - text = "elwynnthornbush02", - value = "elwynnthornbush02", - }, - { - children = { { - fileId = "189779", - text = "elwynnvines01.m2", - value = "elwynnvines01.m2", + fileId = "192884", + text = "hellfire_floorbraizer_broken.m2", + value = "hellfire_floorbraizer_broken.m2", }, - }, - text = "elwynnvines01", - value = "elwynnvines01", - }, - { - children = { { - fileId = "189781", - text = "elwynnvines02.m2", - value = "elwynnvines02.m2", + fileId = "192885", + text = "hellfire_floorbraizer_purple.m2", + value = "hellfire_floorbraizer_purple.m2", + }, + { + fileId = "192886", + text = "hellfire_hangingbraizer.m2", + value = "hellfire_hangingbraizer.m2", + }, + { + fileId = "192887", + text = "hellfire_hangingbraizer_purpleflame.m2", + value = "hellfire_hangingbraizer_purpleflame.m2", + }, + { + fileId = "192888", + text = "hellfire_standingbraizer_purple.m2", + value = "hellfire_standingbraizer_purple.m2", }, }, - text = "elwynnvines02", - value = "elwynnvines02", + text = "braizers", + value = "braizers", }, { children = { { - fileId = "189784", - text = "elwynnvineyard01.m2", - value = "elwynnvineyard01.m2", + fileId = "192891", + text = "hellfire_militarywing_throne.m2", + value = "hellfire_militarywing_throne.m2", }, }, - text = "elwynnvineyard", - value = "elwynnvineyard", + text = "throne", + value = "throne", }, { children = { { - fileId = "189788", - text = "elwynnwheat01.m2", - value = "elwynnwheat01.m2", + fileId = "192893", + text = "hellfire_gastorch01.m2", + value = "hellfire_gastorch01.m2", }, }, - text = "elwynnwheat", - value = "elwynnwheat", + text = "torches", + value = "torches", }, }, - text = "detail", - value = "detail", + text = "passivedoodads", + value = "passivedoodads", }, + }, + text = "hellfirecitadel", + value = "hellfirecitadel", + }, + { + children = { { children = { { - fileId = "189790", - text = "elwynnfencesimple.m2", - value = "elwynnfencesimple.m2", - }, - { - fileId = "189791", - text = "elwynnfencesimplepost.m2", - value = "elwynnfencesimplepost.m2", - }, - { - fileId = "189792", - text = "elwynnfencetop.m2", - value = "elwynnfencetop.m2", - }, - { - fileId = "189793", - text = "elwynnstonefence.m2", - value = "elwynnstonefence.m2", - }, - { - fileId = "189794", - text = "elwynnstonefencepost.m2", - value = "elwynnstonefencepost.m2", - }, - { - fileId = "189795", - text = "elwynnwoodfence01.m2", - value = "elwynnwoodfence01.m2", + fileId = "192895", + text = "hellfire_oldorcbanner01.m2", + value = "hellfire_oldorcbanner01.m2", }, { - fileId = "189796", - text = "elwynnwoodpost01.m2", - value = "elwynnwoodpost01.m2", + fileId = "192896", + text = "hellfire_oldorcbanner02.m2", + value = "hellfire_oldorcbanner02.m2", }, }, - text = "elwynnfences", - value = "elwynnfences", + text = "banners", + value = "banners", }, { children = { { - fileId = "189802", - text = "eyeofazora.m2", - value = "eyeofazora.m2", + fileId = "192899", + text = "hellfirebushthorn01.m2", + value = "hellfirebushthorn01.m2", }, - }, - text = "eyeofazora", - value = "eyeofazora", - }, - { - children = { { - fileId = "189805", - text = "grapebucket01.m2", - value = "grapebucket01.m2", + fileId = "192900", + text = "hellfirebushthorn02.m2", + value = "hellfirebushthorn02.m2", }, { - fileId = "189806", - text = "grapebucket02.m2", - value = "grapebucket02.m2", + fileId = "192901", + text = "hellfirebushthorn03.m2", + value = "hellfirebushthorn03.m2", }, }, - text = "grapebuckets", - value = "grapebuckets", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "189810", - text = "haystack01.m2", - value = "haystack01.m2", + fileId = "192903", + text = "hellfirecrystal01.m2", + value = "hellfirecrystal01.m2", }, { - fileId = "189811", - text = "haystack02.m2", - value = "haystack02.m2", + fileId = "192905", + text = "hellfirecrystalformation_01.m2", + value = "hellfirecrystalformation_01.m2", + }, + { + fileId = "192906", + text = "hellfirecrystalformation_02.m2", + value = "hellfirecrystalformation_02.m2", + }, + { + fileId = "192907", + text = "hellfirecrystalformation_03.m2", + value = "hellfirecrystalformation_03.m2", }, }, - text = "haystacks", - value = "haystacks", + text = "crystals", + value = "crystals", }, { children = { { - fileId = "189815", - text = "jar01.m2", - value = "jar01.m2", + fileId = "192909", + text = "hellfire_fireparticle.m2", + value = "hellfire_fireparticle.m2", }, { - fileId = "189816", - text = "jar02.m2", - value = "jar02.m2", + fileId = "192910", + text = "hellfirecurb_01.m2", + value = "hellfirecurb_01.m2", }, { - fileId = "189817", - text = "jar03.m2", - value = "jar03.m2", + fileId = "192911", + text = "hellfirecurb_02.m2", + value = "hellfirecurb_02.m2", }, - }, - text = "jars", - value = "jars", - }, - { - children = { { - fileId = "189820", - text = "jug01.m2", - value = "jug01.m2", + fileId = "192912", + text = "hellfirecurb_03.m2", + value = "hellfirecurb_03.m2", }, { - fileId = "189821", - text = "jug02.m2", - value = "jug02.m2", + fileId = "192913", + text = "hellfirecurb_fire_01.m2", + value = "hellfirecurb_fire_01.m2", }, - }, - text = "jugs", - value = "jugs", - }, - { - children = { { - fileId = "189825", - text = "lamppost.m2", - value = "lamppost.m2", + fileId = "192914", + text = "hellfirecurb_fire_02.m2", + value = "hellfirecurb_fire_02.m2", }, }, - text = "lamppost", - value = "lamppost", + text = "curb", + value = "curb", }, { children = { { - fileId = "189827", - text = "elwynnminecart.m2", - value = "elwynnminecart.m2", + fileId = "192920", + text = "hellfire_darkportal_fx.m2", + value = "hellfire_darkportal_fx.m2", }, }, - text = "minecart", - value = "minecart", + text = "darkportal", + value = "darkportal", }, { children = { { - fileId = "189830", - text = "monumentrock.m2", - value = "monumentrock.m2", + fileId = "192930", + text = "dr_post_hellfire.m2", + value = "dr_post_hellfire.m2", }, - }, - text = "monumentrock", - value = "monumentrock", - }, - { - children = { { - fileId = "189834", - text = "pick.m2", - value = "pick.m2", + fileId = "192931", + text = "dr_post_hellfire_ruin.m2", + value = "dr_post_hellfire_ruin.m2", }, - }, - text = "pick", - value = "pick", - }, - { - children = { { - fileId = "189840", - text = "ruinedcatapult.m2", - value = "ruinedcatapult.m2", + fileId = "192932", + text = "dr_wall_hellfire.m2", + value = "dr_wall_hellfire.m2", }, - }, - text = "ruinedcatapult", - value = "ruinedcatapult", - }, - { - children = { { - fileId = "189852", - text = "ruinedfountain.m2", - value = "ruinedfountain.m2", + fileId = "192933", + text = "dr_wall_hellfire_ruin.m2", + value = "dr_wall_hellfire_ruin.m2", }, }, - text = "ruinedfountain", - value = "ruinedfountain", + text = "draeneifence", + value = "draeneifence", }, { children = { { - fileId = "189854", - text = "shovel.m2", - value = "shovel.m2", + fileId = "192938", + text = "hellfire_fel_firewall_01.m2", + value = "hellfire_fel_firewall_01.m2", + }, + { + fileId = "192939", + text = "hellfire_firewall_01.m2", + value = "hellfire_firewall_01.m2", }, }, - text = "shovel", - value = "shovel", + text = "firewall", + value = "firewall", }, { children = { { - children = { - { - fileId = "189855", - text = "duskwooddirectionalsign.m2", - value = "duskwooddirectionalsign.m2", - }, - { - fileId = "189857", - text = "goldshiredirectionalsign.m2", - value = "goldshiredirectionalsign.m2", - }, - { - fileId = "189859", - text = "northshiredirectionalsign.m2", - value = "northshiredirectionalsign.m2", - }, - { - fileId = "189862", - text = "runestonedirectionalsign.m2", - value = "runestonedirectionalsign.m2", - }, - { - fileId = "189863", - text = "stormwinddirectionalsign.m2", - value = "stormwinddirectionalsign.m2", - }, - { - fileId = "189866", - text = "westfalldirectionalsign.m2", - value = "westfalldirectionalsign.m2", - }, - }, - text = "directional", - value = "directional", + fileId = "192940", + text = "hellfire_gravestones_alliance_01.m2", + value = "hellfire_gravestones_alliance_01.m2", }, { - children = { - { - fileId = "189868", - text = "genericsmallsignpost01.m2", - value = "genericsmallsignpost01.m2", - }, - }, - text = "genericposts", - value = "genericposts", + fileId = "192941", + text = "hellfire_gravestones_alliance_02.m2", + value = "hellfire_gravestones_alliance_02.m2", }, { - children = { - { - fileId = "189878", - text = "humanalchemistsign.m2", - value = "humanalchemistsign.m2", - }, - { - fileId = "189879", - text = "humanbaitandtacklesign.m2", - value = "humanbaitandtacklesign.m2", - }, - { - fileId = "189880", - text = "humanbanksign.m2", - value = "humanbanksign.m2", - }, - { - fileId = "189881", - text = "humanblacksmithsign.m2", - value = "humanblacksmithsign.m2", - }, - { - fileId = "189882", - text = "humanboathousesign.m2", - value = "humanboathousesign.m2", - }, - { - fileId = "189883", - text = "humaninnsign.m2", - value = "humaninnsign.m2", - }, - { - fileId = "189884", - text = "humaninnsignpost.m2", - value = "humaninnsignpost.m2", - }, - { - fileId = "189885", - text = "humanmagicshopsign.m2", - value = "humanmagicshopsign.m2", - }, - { - fileId = "189886", - text = "humantannersign.m2", - value = "humantannersign.m2", - }, - }, - text = "shop", - value = "shop", + fileId = "192942", + text = "hellfire_gravestones_alliance_03.m2", + value = "hellfire_gravestones_alliance_03.m2", + }, + { + fileId = "192943", + text = "hellfire_gravestones_horde_01.m2", + value = "hellfire_gravestones_horde_01.m2", + }, + { + fileId = "192944", + text = "hellfire_gravestones_horde_02.m2", + value = "hellfire_gravestones_horde_02.m2", + }, + { + fileId = "192945", + text = "hellfire_gravestones_horde_03.m2", + value = "hellfire_gravestones_horde_03.m2", }, }, - text = "signs", - value = "signs", + text = "gravestones", + value = "gravestones", }, { children = { { - fileId = "189893", - text = "battlegladeboneshumandark.m2", - value = "battlegladeboneshumandark.m2", + fileId = "192948", + text = "hellfirefloatingrock_large_01.m2", + value = "hellfirefloatingrock_large_01.m2", }, { - fileId = "189894", - text = "battlegladebskeletonhumandark.m2", - value = "battlegladebskeletonhumandark.m2", + fileId = "192949", + text = "hellfirefloatingrock_large_02.m2", + value = "hellfirefloatingrock_large_02.m2", }, { - fileId = "189896", - text = "battlegladeskullhumandark.m2", - value = "battlegladeskullhumandark.m2", + fileId = "192950", + text = "hellfirefloatingrock_large_03.m2", + value = "hellfirefloatingrock_large_03.m2", }, { - fileId = "189898", - text = "battlegladespinehumandark.m2", - value = "battlegladespinehumandark.m2", + fileId = "192951", + text = "hellfirefloatingrock_small_01.m2", + value = "hellfirefloatingrock_small_01.m2", }, - }, - text = "skeleton", - value = "skeleton", - }, - { - children = { { - fileId = "189904", - text = "smalldock.m2", - value = "smalldock.m2", + fileId = "192952", + text = "hellfirefloatingrock_small_02.m2", + value = "hellfirefloatingrock_small_02.m2", + }, + { + fileId = "192953", + text = "hellfirefloatingrock_small_03.m2", + value = "hellfirefloatingrock_small_03.m2", }, }, - text = "smalldock", - value = "smalldock", + text = "hellfirefloatingrock", + value = "hellfirefloatingrock", }, { children = { { - fileId = "189906", - text = "spike.m2", - value = "spike.m2", + fileId = "192956", + text = "hellfire_overhangrock_large_01.m2", + value = "hellfire_overhangrock_large_01.m2", + }, + { + fileId = "192957", + text = "hellfire_overhangrock_large_02.m2", + value = "hellfire_overhangrock_large_02.m2", + }, + { + fileId = "192958", + text = "hellfire_overhangrock_large_03.m2", + value = "hellfire_overhangrock_large_03.m2", + }, + { + fileId = "192959", + text = "hellfire_overhangrock_small_01.m2", + value = "hellfire_overhangrock_small_01.m2", + }, + { + fileId = "192960", + text = "hellfire_overhangrock_small_02.m2", + value = "hellfire_overhangrock_small_02.m2", + }, + { + fileId = "192961", + text = "hellfire_overhangrock_small_03.m2", + value = "hellfire_overhangrock_small_03.m2", }, }, - text = "spike", - value = "spike", + text = "hellfireoverhangrock", + value = "hellfireoverhangrock", }, { children = { { - fileId = "189908", - text = "lionstatue.m2", - value = "lionstatue.m2", + fileId = "192964", + text = "hellfirewarpstorm01.m2", + value = "hellfirewarpstorm01.m2", }, }, - text = "statue", - value = "statue", + text = "hellfirewarpstorm", + value = "hellfirewarpstorm", }, { children = { { - fileId = "189910", - text = "stonepyre.m2", - value = "stonepyre.m2", + fileId = "192965", + text = "ancient_drainei_lamppost.m2", + value = "ancient_drainei_lamppost.m2", + }, + { + fileId = "192966", + text = "ancient_drainei_lamppost_ruined.m2", + value = "ancient_drainei_lamppost_ruined.m2", + }, + { + fileId = "192968", + text = "dr_signpost_ancient.m2", + value = "dr_signpost_ancient.m2", + }, + { + fileId = "192969", + text = "dr_signpost_sign_ancient.m2", + value = "dr_signpost_sign_ancient.m2", }, }, - text = "stonepyre", - value = "stonepyre", + text = "lamppost", + value = "lamppost", }, { children = { { - children = { - { - fileId = "189914", - text = "roundtable.m2", - value = "roundtable.m2", - }, - }, - text = "roundtable", - value = "roundtable", + fileId = "192972", + text = "hellfiremonolith01.m2", + value = "hellfiremonolith01.m2", }, }, - text = "tables", - value = "tables", + text = "monolith", + value = "monolith", }, { children = { { - fileId = "189915", - text = "elwynnlog01.m2", - value = "elwynnlog01.m2", + fileId = "192973", + text = "ancient_draenei_plaform_06.m2", + value = "ancient_draenei_plaform_06.m2", }, { - fileId = "189916", - text = "elwynnlog02.m2", - value = "elwynnlog02.m2", + fileId = "192974", + text = "ancient_draenei_plaform_07.m2", + value = "ancient_draenei_plaform_07.m2", }, }, - text = "tree", - value = "tree", + text = "platform", + value = "platform", }, { children = { { - fileId = "189919", - text = "canopylesstree01.m2", - value = "canopylesstree01.m2", + fileId = "192977", + text = "hellfire_pvpflags_northfort.m2", + value = "hellfire_pvpflags_northfort.m2", }, { - fileId = "189920", - text = "canopylesstree02.m2", - value = "canopylesstree02.m2", + fileId = "192978", + text = "hellfire_pvpflags_northfortflagsa.m2", + value = "hellfire_pvpflags_northfortflagsa.m2", }, { - fileId = "189921", - text = "canopylesstree03.m2", - value = "canopylesstree03.m2", + fileId = "192979", + text = "hellfire_pvpflags_northfortflagsh.m2", + value = "hellfire_pvpflags_northfortflagsh.m2", }, { - fileId = "189922", - text = "canopylesstree04.m2", - value = "canopylesstree04.m2", + fileId = "192980", + text = "hellfire_pvpflags_northfortflagsn.m2", + value = "hellfire_pvpflags_northfortflagsn.m2", }, { - fileId = "189923", - text = "elwynnfirtree01.m2", - value = "elwynnfirtree01.m2", + fileId = "192981", + text = "hellfire_pvpflags_southfort.m2", + value = "hellfire_pvpflags_southfort.m2", }, { - children = { - { - fileId = "189924", - text = "elwynnpine01.m2", - value = "elwynnpine01.m2", - }, - { - fileId = "189925", - text = "elwynnpine02.m2", - value = "elwynnpine02.m2", - }, - }, - text = "elwynntree01", - value = "elwynntree01", + fileId = "192982", + text = "hellfire_pvpflags_southfortflagsa.m2", + value = "hellfire_pvpflags_southfortflagsa.m2", }, { - fileId = "189927", - text = "elwynntreecanopy01.m2", - value = "elwynntreecanopy01.m2", + fileId = "192983", + text = "hellfire_pvpflags_southfortflagsh.m2", + value = "hellfire_pvpflags_southfortflagsh.m2", }, { - fileId = "189928", - text = "elwynntreecanopy02.m2", - value = "elwynntreecanopy02.m2", + fileId = "192984", + text = "hellfire_pvpflags_southfortflagsn.m2", + value = "hellfire_pvpflags_southfortflagsn.m2", }, { - fileId = "189929", - text = "elwynntreecanopy03.m2", - value = "elwynntreecanopy03.m2", + fileId = "192985", + text = "hellfire_pvpflags_westfort.m2", + value = "hellfire_pvpflags_westfort.m2", }, { - fileId = "189930", - text = "elwynntreecanopy04.m2", - value = "elwynntreecanopy04.m2", + fileId = "192986", + text = "hellfire_pvpflags_westfortflagsa.m2", + value = "hellfire_pvpflags_westfortflagsa.m2", }, { - fileId = "189932", - text = "elwynntreemid01.m2", - value = "elwynntreemid01.m2", + fileId = "192987", + text = "hellfire_pvpflags_westfortflagsh.m2", + value = "hellfire_pvpflags_westfortflagsh.m2", }, { - children = { - { - fileId = "189939", - text = "elwynntreestump01.m2", - value = "elwynntreestump01.m2", - }, - { - fileId = "189940", - text = "elwynntreestump02.m2", - value = "elwynntreestump02.m2", - }, - }, - text = "stumps", - value = "stumps", + fileId = "192988", + text = "hellfire_pvpflags_westfortflagsn.m2", + value = "hellfire_pvpflags_westfortflagsn.m2", }, }, - text = "trees", - value = "trees", + text = "pvpflags", + value = "pvpflags", }, { children = { { - fileId = "189948", - text = "vineyard.m2", - value = "vineyard.m2", + fileId = "192990", + text = "hellfirerock_razor01.m2", + value = "hellfirerock_razor01.m2", }, { - fileId = "189949", - text = "vineyardcube01.m2", - value = "vineyardcube01.m2", + fileId = "192991", + text = "hellfirerock_razor02.m2", + value = "hellfirerock_razor02.m2", }, { - fileId = "189950", - text = "vineyardcube02.m2", - value = "vineyardcube02.m2", + fileId = "192992", + text = "hellfirerock_razor03.m2", + value = "hellfirerock_razor03.m2", }, { - fileId = "189951", - text = "vineyardlowpoly.m2", - value = "vineyardlowpoly.m2", + fileId = "192993", + text = "hellfirerock_short01.m2", + value = "hellfirerock_short01.m2", }, { - fileId = "189953", - text = "vineyardwired.m2", - value = "vineyardwired.m2", + fileId = "192994", + text = "hellfirerock_short02.m2", + value = "hellfirerock_short02.m2", }, - }, - text = "vineyard", - value = "vineyard", - }, - { - children = { { - fileId = "189956", - text = "waterbasin.m2", - value = "waterbasin.m2", + fileId = "192995", + text = "hellfirerock_short03.m2", + value = "hellfirerock_short03.m2", }, - }, - text = "waterbasin", - value = "waterbasin", - }, - { - children = { { - fileId = "189958", - text = "elwynnmediumwaterfall01.m2", - value = "elwynnmediumwaterfall01.m2", + fileId = "192996", + text = "hellfirerock_tall01.m2", + value = "hellfirerock_tall01.m2", }, { - fileId = "189959", - text = "elwynntallwaterfall01.m2", - value = "elwynntallwaterfall01.m2", + fileId = "192997", + text = "hellfirerock_tall02.m2", + value = "hellfirerock_tall02.m2", + }, + { + fileId = "192998", + text = "hellfirerock_tall03.m2", + value = "hellfirerock_tall03.m2", }, }, - text = "waterfall", - value = "waterfall", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "elwynn", - value = "elwynn", - }, - { - children = { - { - children = { - { - fileId = "189960", - text = "karazahn_bridgedoors.m2", - value = "karazahn_bridgedoors.m2", - }, - { - fileId = "189961", - text = "karazahn_chessroomdoors.m2", - value = "karazahn_chessroomdoors.m2", - }, - { - fileId = "189962", - text = "karazahn_cptnqrtzdoors.m2", - value = "karazahn_cptnqrtzdoors.m2", - }, - { - fileId = "189963", - text = "karazahn_diningdoors.m2", - value = "karazahn_diningdoors.m2", - }, - { - fileId = "189964", - text = "karazahn_diningruindoor.m2", - value = "karazahn_diningruindoor.m2", - }, - { - fileId = "189965", - text = "karazahn_gatedoors.m2", - value = "karazahn_gatedoors.m2", - }, - { - fileId = "189966", - text = "karazahn_secretdoor.m2", - value = "karazahn_secretdoor.m2", - }, - { - fileId = "189967", - text = "karazahn_secretdoor01.m2", - value = "karazahn_secretdoor01.m2", - }, - { - fileId = "189968", - text = "karazahn_secretroomdoor.m2", - value = "karazahn_secretroomdoor.m2", - }, - { - fileId = "189969", - text = "karazahn_silverrmdoor01.m2", - value = "karazahn_silverrmdoor01.m2", - }, - { - fileId = "189970", - text = "karazahn_silverrmdoor02.m2", - value = "karazahn_silverrmdoor02.m2", - }, - { - fileId = "189971", - text = "karazahn_stagedoor.m2", - value = "karazahn_stagedoor.m2", - }, - { - fileId = "189972", - text = "karazahnportcullis.m2", - value = "karazahnportcullis.m2", - }, - { - fileId = "189973", - text = "karazhan_observe_door.m2", - value = "karazhan_observe_door.m2", - }, - { - fileId = "189974", - text = "karazhan_red_curtain.m2", - value = "karazhan_red_curtain.m2", + text = "rocks", + value = "rocks", }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { { children = { { - fileId = "189980", - text = "karazahnbarrel01.m2", - value = "karazahnbarrel01.m2", + fileId = "193001", + text = "hellfirecliffrocks01.m2", + value = "hellfirecliffrocks01.m2", }, { - fileId = "189981", - text = "karazahnbarrel02.m2", - value = "karazahnbarrel02.m2", + fileId = "193002", + text = "hellfirecliffrocks02.m2", + value = "hellfirecliffrocks02.m2", }, - }, - text = "barrel", - value = "barrel", - }, - { - children = { { - fileId = "189983", - text = "karazahnbonfire01.m2", - value = "karazahnbonfire01.m2", + fileId = "193003", + text = "hellfirecliffrocks03.m2", + value = "hellfirecliffrocks03.m2", }, { - fileId = "189984", - text = "karazahnbonfire02.m2", - value = "karazahnbonfire02.m2", + fileId = "193004", + text = "hellfirecliffrocks04.m2", + value = "hellfirecliffrocks04.m2", }, { - fileId = "189985", - text = "karazahnbonfireblue01.m2", - value = "karazahnbonfireblue01.m2", + fileId = "193005", + text = "hellfirecliffrocks05.m2", + value = "hellfirecliffrocks05.m2", }, }, - text = "bonfire", - value = "bonfire", + text = "rockscliff", + value = "rockscliff", }, { children = { { - fileId = "189992", - text = "karazahnbookshelflarge.m2", - value = "karazahnbookshelflarge.m2", + fileId = "193007", + text = "hellfirerocks_floatinglarge01.m2", + value = "hellfirerocks_floatinglarge01.m2", }, { - fileId = "189993", - text = "karazahnbookshelfsmall.m2", - value = "karazahnbookshelfsmall.m2", + fileId = "193008", + text = "hellfirerocks_floatinglarge02.m2", + value = "hellfirerocks_floatinglarge02.m2", }, { - fileId = "189994", - text = "karazahnbookshelfxtralarge.m2", - value = "karazahnbookshelfxtralarge.m2", + fileId = "193009", + text = "hellfirerocks_floatinglarge03.m2", + value = "hellfirerocks_floatinglarge03.m2", + }, + { + fileId = "193010", + text = "hellfirerocks_floatingmedium01.m2", + value = "hellfirerocks_floatingmedium01.m2", + }, + { + fileId = "193011", + text = "hellfirerocks_floatingmedium02.m2", + value = "hellfirerocks_floatingmedium02.m2", + }, + { + fileId = "193012", + text = "hellfirerocks_floatingmedium03.m2", + value = "hellfirerocks_floatingmedium03.m2", + }, + { + fileId = "193013", + text = "hellfirerocks_floatingsmall01.m2", + value = "hellfirerocks_floatingsmall01.m2", + }, + { + fileId = "193014", + text = "hellfirerocks_floatingsmall02.m2", + value = "hellfirerocks_floatingsmall02.m2", + }, + { + fileId = "193015", + text = "hellfirerocks_floatingsmall03.m2", + value = "hellfirerocks_floatingsmall03.m2", }, }, - text = "bookshelves", - value = "bookshelves", + text = "rocksfloating", + value = "rocksfloating", }, { children = { { - fileId = "189997", - text = "kn_brokencart.m2", - value = "kn_brokencart.m2", - }, - { - fileId = "189998", - text = "kn_brokencart02.m2", - value = "kn_brokencart02.m2", + fileId = "193016", + text = "hellfiresandtrap.m2", + value = "hellfiresandtrap.m2", }, }, - text = "brokencart", - value = "brokencart", + text = "sandtrap", + value = "sandtrap", }, { children = { { - fileId = "190000", - text = "booksonfire.m2", - value = "booksonfire.m2", + fileId = "193019", + text = "hellfiresupplies_01.m2", + value = "hellfiresupplies_01.m2", + }, + { + fileId = "193020", + text = "hellfiresupplies_02.m2", + value = "hellfiresupplies_02.m2", + }, + { + fileId = "193021", + text = "hellfiresupplies_03.m2", + value = "hellfiresupplies_03.m2", + }, + { + fileId = "193022", + text = "hellfiresupplies_04.m2", + value = "hellfiresupplies_04.m2", + }, + { + fileId = "193023", + text = "hellfiresupplies_05.m2", + value = "hellfiresupplies_05.m2", + }, + { + fileId = "193024", + text = "hellfiresupplies_06.m2", + value = "hellfiresupplies_06.m2", }, }, - text = "burningbooks", - value = "burningbooks", + text = "supplies", + value = "supplies", }, { children = { { - fileId = "190006", - text = "karazanchandelier_01.m2", - value = "karazanchandelier_01.m2", + fileId = "193027", + text = "hellfireseedpod01.m2", + value = "hellfireseedpod01.m2", }, { - fileId = "190007", - text = "karazanchandelier_02.m2", - value = "karazanchandelier_02.m2", + fileId = "193028", + text = "hellfiretreethorns01.m2", + value = "hellfiretreethorns01.m2", }, { - fileId = "190008", - text = "karazanchandelier_03.m2", - value = "karazanchandelier_03.m2", + fileId = "193029", + text = "hellfiretreethorns02.m2", + value = "hellfiretreethorns02.m2", }, { - fileId = "190009", - text = "karazanchandelier_03_broken.m2", - value = "karazanchandelier_03_broken.m2", + fileId = "193030", + text = "hellfiretreethorns03.m2", + value = "hellfiretreethorns03.m2", + }, + { + fileId = "193031", + text = "hellfiretreethorns04.m2", + value = "hellfiretreethorns04.m2", + }, + { + fileId = "193032", + text = "hellfiretreethorns05.m2", + value = "hellfiretreethorns05.m2", + }, + { + fileId = "193033", + text = "hellfiretreethorns06.m2", + value = "hellfiretreethorns06.m2", + }, + { + fileId = "193034", + text = "hellfiretreethornspods01.m2", + value = "hellfiretreethornspods01.m2", }, }, - text = "chandeliers", - value = "chandeliers", + text = "trees", + value = "trees", }, { children = { { - fileId = "190012", - text = "karazahncrate01.m2", - value = "karazahncrate01.m2", + fileId = "193036", + text = "humanwagon01.m2", + value = "humanwagon01.m2", }, { - fileId = "190013", - text = "karazahncrate02.m2", - value = "karazahncrate02.m2", + fileId = "193038", + text = "orcwagon07.m2", + value = "orcwagon07.m2", }, }, - text = "crates", - value = "crates", + text = "wagons", + value = "wagons", + }, + }, + text = "hellfirepeninsula", + value = "hellfirepeninsula", + }, + { + children = { + { + fileId = "193039", + text = "m2_light_lightblue.m2", + value = "m2_light_lightblue.m2", }, + }, + text = "m2lights", + value = "m2lights", + }, + { + children = { { children = { { - fileId = "190015", - text = "kn_grainsack01.m2", - value = "kn_grainsack01.m2", + fileId = "193041", + text = "nagrandbush01.m2", + value = "nagrandbush01.m2", }, { - fileId = "190016", - text = "kn_grainsack02.m2", - value = "kn_grainsack02.m2", + fileId = "193043", + text = "nagrandbush02.m2", + value = "nagrandbush02.m2", }, { - fileId = "190017", - text = "kn_grainsack03.m2", - value = "kn_grainsack03.m2", + fileId = "193045", + text = "nagrandbush03.m2", + value = "nagrandbush03.m2", }, { - fileId = "190018", - text = "kn_spilledsack01.m2", - value = "kn_spilledsack01.m2", + fileId = "193047", + text = "nagrandbush04.m2", + value = "nagrandbush04.m2", }, }, - text = "grainsacks", - value = "grainsacks", + text = "bush", + value = "bush", }, { children = { { - fileId = "190019", - text = "karazahnweb01.m2", - value = "karazahnweb01.m2", - }, - { - fileId = "190020", - text = "karazahnweb02.m2", - value = "karazahnweb02.m2", - }, - { - fileId = "190021", - text = "karazahnweb03.m2", - value = "karazahnweb03.m2", + fileId = "193048", + text = "darkportal_nagrand_particles.m2", + value = "darkportal_nagrand_particles.m2", }, }, - text = "karazahnwebs", - value = "karazahnwebs", + text = "darkportal", + value = "darkportal", }, { children = { { - fileId = "190022", - text = "karazahn_owlstatue.m2", - value = "karazahn_owlstatue.m2", + fileId = "193063", + text = "diamondmountain_bit.m2", + value = "diamondmountain_bit.m2", }, - }, - text = "owlstatue", - value = "owlstatue", - }, - { - children = { { - fileId = "190024", - text = "karazahnpedestals01.m2", - value = "karazahnpedestals01.m2", + fileId = "193064", + text = "diamondmountain_final.m2", + value = "diamondmountain_final.m2", }, { - fileId = "190025", - text = "karazahnpedestals02.m2", - value = "karazahnpedestals02.m2", + fileId = "193065", + text = "diamondmountain_mediumbit.m2", + value = "diamondmountain_mediumbit.m2", }, - }, - text = "pedestals", - value = "pedestals", - }, - { - children = { { - fileId = "190026", - text = "karazahn_rubble_floating.m2", - value = "karazahn_rubble_floating.m2", + fileId = "193066", + text = "dm_crystal_bunch.m2", + value = "dm_crystal_bunch.m2", }, { - fileId = "190027", - text = "karazahnrockrubble01.m2", - value = "karazahnrockrubble01.m2", + fileId = "193067", + text = "dm_crystal_large.m2", + value = "dm_crystal_large.m2", }, { - fileId = "190028", - text = "karazahnrockrubble02.m2", - value = "karazahnrockrubble02.m2", + fileId = "193068", + text = "dm_crystal_slim.m2", + value = "dm_crystal_slim.m2", }, }, - text = "rubble", - value = "rubble", + text = "diamondmount", + value = "diamondmount", }, { children = { { - fileId = "190030", - text = "karazahnsconce01.m2", - value = "karazahnsconce01.m2", + fileId = "193074", + text = "nagrandtest.m2", + value = "nagrandtest.m2", }, + }, + text = "grass", + value = "grass", + }, + { + children = { { - fileId = "190031", - text = "karazahnsconce02.m2", - value = "karazahnsconce02.m2", + fileId = "193077", + text = "nagrand_arch_01.m2", + value = "nagrand_arch_01.m2", }, { - fileId = "190032", - text = "karazahnsconce03.m2", - value = "karazahnsconce03.m2", + fileId = "193078", + text = "nagrand_arch_02.m2", + value = "nagrand_arch_02.m2", }, { - fileId = "190033", - text = "karazahnsconce04.m2", - value = "karazahnsconce04.m2", + fileId = "193079", + text = "nagrand_arch_03.m2", + value = "nagrand_arch_03.m2", }, { - fileId = "190034", - text = "karazahnsconce05.m2", - value = "karazahnsconce05.m2", + fileId = "193080", + text = "nagrand_arch_04.m2", + value = "nagrand_arch_04.m2", }, { - fileId = "190035", - text = "karazahnsconce06.m2", - value = "karazahnsconce06.m2", + fileId = "193081", + text = "nagrand_arch_05.m2", + value = "nagrand_arch_05.m2", }, { - fileId = "190036", - text = "karazahnsconce07.m2", - value = "karazahnsconce07.m2", + fileId = "193082", + text = "nagrand_arch_06.m2", + value = "nagrand_arch_06.m2", }, - }, - text = "sconces", - value = "sconces", - }, - { - children = { { - fileId = "190039", - text = "karazahnstarlab.m2", - value = "karazahnstarlab.m2", + fileId = "193083", + text = "nagrand_arch_07.m2", + value = "nagrand_arch_07.m2", }, - }, - text = "starlab", - value = "starlab", - }, - { - children = { { - fileId = "190041", - text = "karazahntablebig.m2", - value = "karazahntablebig.m2", + fileId = "193084", + text = "nagrand_arch_08.m2", + value = "nagrand_arch_08.m2", }, { - fileId = "190043", - text = "karazahntablesmall.m2", - value = "karazahntablesmall.m2", + fileId = "193085", + text = "nagrand_arch_09.m2", + value = "nagrand_arch_09.m2", }, - }, - text = "tables", - value = "tables", - }, - { - children = { { - fileId = "190044", - text = "karazantapestry01.m2", - value = "karazantapestry01.m2", + fileId = "193086", + text = "nagrand_arch_10.m2", + value = "nagrand_arch_10.m2", }, { - fileId = "190045", - text = "karazantapestry02.m2", - value = "karazantapestry02.m2", + fileId = "193087", + text = "nagrand_arch_11.m2", + value = "nagrand_arch_11.m2", }, - }, - text = "tapestries", - value = "tapestries", - }, - { - children = { { - fileId = "190056", - text = "karazahn_rj_balcony.m2", - value = "karazahn_rj_balcony.m2", + fileId = "193088", + text = "nagrand_largerock_01.m2", + value = "nagrand_largerock_01.m2", }, { - fileId = "190057", - text = "karazahn_rj_moon.m2", - value = "karazahn_rj_moon.m2", + fileId = "193089", + text = "nagrand_largerock_02.m2", + value = "nagrand_largerock_02.m2", }, { - fileId = "190058", - text = "karazahn_rj_stars.m2", - value = "karazahn_rj_stars.m2", + fileId = "193090", + text = "nagrand_largerock_03.m2", + value = "nagrand_largerock_03.m2", }, { - fileId = "190059", - text = "karazahn_rrh_forest.m2", - value = "karazahn_rrh_forest.m2", + fileId = "193091", + text = "nagrand_rockfloating_huge01.m2", + value = "nagrand_rockfloating_huge01.m2", }, { - fileId = "190060", - text = "karazahn_rrh_house.m2", - value = "karazahn_rrh_house.m2", + fileId = "193096", + text = "nagrand_smallrock_01.m2", + value = "nagrand_smallrock_01.m2", }, { - fileId = "190061", - text = "karazahn_rrh_tree.m2", - value = "karazahn_rrh_tree.m2", + fileId = "193097", + text = "nagrand_smallrock_02.m2", + value = "nagrand_smallrock_02.m2", }, { - fileId = "190062", - text = "karazahn_wo_hay.m2", - value = "karazahn_wo_hay.m2", + fileId = "193098", + text = "nagrand_smallrock_03.m2", + value = "nagrand_smallrock_03.m2", }, { - fileId = "190063", - text = "karazan_wo_brickroad.m2", - value = "karazan_wo_brickroad.m2", + fileId = "193099", + text = "nagrand_smallrock_04.m2", + value = "nagrand_smallrock_04.m2", }, - }, - text = "theater", - value = "theater", - }, - { - children = { { - fileId = "190064", - text = "karazahnthrone01.m2", - value = "karazahnthrone01.m2", + fileId = "193100", + text = "nagrand_smallrock_05.m2", + value = "nagrand_smallrock_05.m2", }, - }, - text = "throne", - value = "throne", - }, - { - children = { { - fileId = "2198647", - text = "karazahndiningrays.m2", - value = "karazahndiningrays.m2", + fileId = "193101", + text = "nagrand_smallrock_06.m2", + value = "nagrand_smallrock_06.m2", + }, + { + fileId = "193102", + text = "nagrand_waterfalls_forfloatingrocks.m2", + value = "nagrand_waterfalls_forfloatingrocks.m2", }, }, - text = "volumetriclights", - value = "volumetriclights", + text = "rocks", + value = "rocks", }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "karazahn", - value = "karazahn", - }, - { - children = { - { - children = { { children = { { - fileId = "190069", - text = "pvp_bridge_parts01.m2", - value = "pvp_bridge_parts01.m2", + fileId = "193108", + text = "nagrandcorruptedroot01.m2", + value = "nagrandcorruptedroot01.m2", }, { - fileId = "190070", - text = "pvp_bridge_parts02.m2", - value = "pvp_bridge_parts02.m2", + fileId = "193109", + text = "nagrandcorruptedroot02.m2", + value = "nagrandcorruptedroot02.m2", }, { - fileId = "190071", - text = "pvp_bridge_parts03.m2", - value = "pvp_bridge_parts03.m2", + fileId = "193110", + text = "nagrandroot01.m2", + value = "nagrandroot01.m2", }, { - fileId = "190072", - text = "pvp_bridge_parts04.m2", - value = "pvp_bridge_parts04.m2", + fileId = "193111", + text = "nagrandroot01vara.m2", + value = "nagrandroot01vara.m2", }, { - fileId = "190073", - text = "pvp_bridge_parts05.m2", - value = "pvp_bridge_parts05.m2", + fileId = "193112", + text = "nagrandroot02.m2", + value = "nagrandroot02.m2", }, - }, - text = "bridgeruins", - value = "bridgeruins", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "pvp", - value = "pvp", - }, - { - children = { - { - children = { - { - children = { { - fileId = "242695", - text = "redridge_barn_closed.m2", - value = "redridge_barn_closed.m2", + fileId = "193113", + text = "nagrandroot02vara.m2", + value = "nagrandroot02vara.m2", }, - }, - text = "barn", - value = "barn", - }, - { - children = { { - fileId = "190076", - text = "redridgebridgebrick01.m2", - value = "redridgebridgebrick01.m2", + fileId = "193114", + text = "nagrandroot03.m2", + value = "nagrandroot03.m2", }, { - fileId = "190077", - text = "redridgebridgebrick02.m2", - value = "redridgebridgebrick02.m2", + fileId = "193115", + text = "nagrandroot03vara.m2", + value = "nagrandroot03vara.m2", }, { - fileId = "190078", - text = "redridgebridgebrick03.m2", - value = "redridgebridgebrick03.m2", + fileId = "193116", + text = "nagrandroot04.m2", + value = "nagrandroot04.m2", }, - }, - text = "bricks", - value = "bricks", - }, - { - children = { { - fileId = "190080", - text = "redridgebush01.m2", - value = "redridgebush01.m2", + fileId = "193117", + text = "nagrandroot04vara.m2", + value = "nagrandroot04vara.m2", }, { - fileId = "190081", - text = "redridgebush02.m2", - value = "redridgebush02.m2", + fileId = "193118", + text = "nagrandroot05.m2", + value = "nagrandroot05.m2", }, { - fileId = "190082", - text = "redridgebush03.m2", - value = "redridgebush03.m2", + fileId = "193119", + text = "nagrandroot05vara.m2", + value = "nagrandroot05vara.m2", }, }, - text = "bush", - value = "bush", + text = "roots", + value = "roots", }, { children = { { - children = { - { - fileId = "190084", - text = "catailpatch01.m2", - value = "catailpatch01.m2", - }, - }, - text = "catailpatch", - value = "catailpatch", + fileId = "193123", + text = "nagrandcorruptedtree01.m2", + value = "nagrandcorruptedtree01.m2", }, - }, - text = "detail", - value = "detail", - }, - { - children = { { - fileId = "190087", - text = "redridgedocksbeam01.m2", - value = "redridgedocksbeam01.m2", + fileId = "193124", + text = "nagrandcorruptedtree02.m2", + value = "nagrandcorruptedtree02.m2", }, { - fileId = "190088", - text = "redridgedocksboardwalk01.m2", - value = "redridgedocksboardwalk01.m2", + fileId = "193125", + text = "nagrandcorruptedtree03.m2", + value = "nagrandcorruptedtree03.m2", }, { - fileId = "190089", - text = "redridgedocksboardwalk02.m2", - value = "redridgedocksboardwalk02.m2", + fileId = "193127", + text = "nagrandtree01.m2", + value = "nagrandtree01.m2", }, { - fileId = "190090", - text = "redridgedocksboardwalk03.m2", - value = "redridgedocksboardwalk03.m2", + fileId = "193128", + text = "nagrandtree02.m2", + value = "nagrandtree02.m2", }, { - fileId = "190091", - text = "redridgedocksplank01.m2", - value = "redridgedocksplank01.m2", + fileId = "193129", + text = "nagrandtree03.m2", + value = "nagrandtree03.m2", + }, + { + fileId = "193130", + text = "nagrandtree04.m2", + value = "nagrandtree04.m2", + }, + { + fileId = "193131", + text = "nagrandtree05.m2", + value = "nagrandtree05.m2", + }, + { + fileId = "193132", + text = "nagrandtree06.m2", + value = "nagrandtree06.m2", + }, + { + fileId = "193133", + text = "nagrandtree07.m2", + value = "nagrandtree07.m2", + }, + { + fileId = "193134", + text = "nagrandtree08.m2", + value = "nagrandtree08.m2", }, { - fileId = "190093", - text = "redridgedockspylon01.m2", - value = "redridgedockspylon01.m2", + fileId = "193135", + text = "nagrandtree09.m2", + value = "nagrandtree09.m2", }, }, - text = "dockpieces", - value = "dockpieces", + text = "trees", + value = "trees", }, + }, + text = "nagrand", + value = "nagrand", + }, + { + children = { { children = { { - fileId = "190095", - text = "redridgedocks01.m2", - value = "redridgedocks01.m2", + fileId = "193142", + text = "ns_biodome_all_fx_north.m2", + value = "ns_biodome_all_fx_north.m2", }, { - fileId = "190096", - text = "redridgedocks03.m2", - value = "redridgedocks03.m2", + fileId = "193143", + text = "ns_biodome_all_fx_south.m2", + value = "ns_biodome_all_fx_south.m2", }, - }, - text = "docks", - value = "docks", - }, - { - children = { { - fileId = "242696", - text = "redridge_human_farm_closed.m2", - value = "redridge_human_farm_closed.m2", + fileId = "193144", + text = "ns_biodome_all_fx_stormspire.m2", + value = "ns_biodome_all_fx_stormspire.m2", }, - }, - text = "farm", - value = "farm", - }, - { - children = { { - fileId = "242697", - text = "redridge_lumbermill.m2", - value = "redridge_lumbermill.m2", + fileId = "193146", + text = "ns_biodome_bg.m2", + value = "ns_biodome_bg.m2", }, - }, - text = "lumbermill", - value = "lumbermill", - }, - { - children = { { - fileId = "190097", - text = "insectmound.m2", - value = "insectmound.m2", + fileId = "193147", + text = "ns_biodome_device.m2", + value = "ns_biodome_device.m2", }, - }, - text = "misc", - value = "misc", - }, - { - children = { { - fileId = "190101", - text = "redridgerock01.m2", - value = "redridgerock01.m2", + fileId = "193148", + text = "ns_biodome_generic.m2", + value = "ns_biodome_generic.m2", }, { - fileId = "190102", - text = "redridgerock02.m2", - value = "redridgerock02.m2", + fileId = "193149", + text = "ns_biodome_pylon_effects.m2", + value = "ns_biodome_pylon_effects.m2", }, { - fileId = "190103", - text = "redridgerock03.m2", - value = "redridgerock03.m2", + fileId = "193152", + text = "ns_biodome_stormspire.m2", + value = "ns_biodome_stormspire.m2", }, }, - text = "rocks", - value = "rocks", + text = "biodomes", + value = "biodomes", }, { children = { { - fileId = "190104", - text = "rowboat01.m2", - value = "rowboat01.m2", + fileId = "193155", + text = "nethercollectorcap.m2", + value = "nethercollectorcap.m2", }, }, - text = "rowboat", - value = "rowboat", + text = "collectorcap", + value = "collectorcap", }, { children = { { - fileId = "190106", - text = "battlegladewoodspikeslongrow.m2", - value = "battlegladewoodspikeslongrow.m2", - }, - { - fileId = "190107", - text = "battlegladewoodspikesshortrow.m2", - value = "battlegladewoodspikesshortrow.m2", + fileId = "193156", + text = "collectortop.m2", + value = "collectortop.m2", }, - }, - text = "spikewall", - value = "spikewall", - }, - { - children = { { - fileId = "242698", - text = "redridge_stable.m2", - value = "redridge_stable.m2", + fileId = "193157", + text = "collectortop_nether.m2", + value = "collectortop_nether.m2", }, - }, - text = "stable", - value = "stable", - }, - { - children = { { - fileId = "190108", - text = "redridgestump02.m2", - value = "redridgestump02.m2", + fileId = "193158", + text = "collectortop_off.m2", + value = "collectortop_off.m2", }, }, - text = "stumps", - value = "stumps", + text = "collectortop", + value = "collectortop", }, { children = { { - fileId = "190114", - text = "redridgefallentree01.m2", - value = "redridgefallentree01.m2", - }, - { - fileId = "190115", - text = "redridgefallentree01moss.m2", - value = "redridgefallentree01moss.m2", - }, - { - fileId = "190116", - text = "redridgefallentree02.m2", - value = "redridgefallentree02.m2", + fileId = "193165", + text = "collectortubes.m2", + value = "collectortubes.m2", }, { - fileId = "190117", - text = "redridgefallentree02moss.m2", - value = "redridgefallentree02moss.m2", + fileId = "193166", + text = "collectortubes_building_attach.m2", + value = "collectortubes_building_attach.m2", }, { - fileId = "190118", - text = "redridgefallentree03.m2", - value = "redridgefallentree03.m2", + fileId = "193167", + text = "collectortubes_building_attach_off.m2", + value = "collectortubes_building_attach_off.m2", }, { - fileId = "190119", - text = "redridgetree01.m2", - value = "redridgetree01.m2", + fileId = "193168", + text = "collectortubes_joint_45.m2", + value = "collectortubes_joint_45.m2", }, { - fileId = "190120", - text = "redridgetree02.m2", - value = "redridgetree02.m2", + fileId = "193169", + text = "collectortubes_joint_90.m2", + value = "collectortubes_joint_90.m2", }, { - fileId = "190121", - text = "redridgetreecanopy01.m2", - value = "redridgetreecanopy01.m2", + fileId = "193170", + text = "collectortubes_joint_ground.m2", + value = "collectortubes_joint_ground.m2", }, { - fileId = "190122", - text = "redridgetreecanopy02.m2", - value = "redridgetreecanopy02.m2", + fileId = "193171", + text = "collectortubes_straight.m2", + value = "collectortubes_straight.m2", }, { - fileId = "190123", - text = "redridgetreecanopy03.m2", - value = "redridgetreecanopy03.m2", + fileId = "193172", + text = "collectortubes_straight_medium.m2", + value = "collectortubes_straight_medium.m2", }, { - fileId = "190124", - text = "redridgetreecanopy04.m2", - value = "redridgetreecanopy04.m2", + fileId = "193173", + text = "collectortubes_straight_medium_off.m2", + value = "collectortubes_straight_medium_off.m2", }, { - fileId = "190126", - text = "redridgetreemid01.m2", - value = "redridgetreemid01.m2", + fileId = "193174", + text = "collectortubes_straight_off.m2", + value = "collectortubes_straight_off.m2", }, { - fileId = "190128", - text = "redridgetreestump01.m2", - value = "redridgetreestump01.m2", + fileId = "193175", + text = "collectortubes_straight_short.m2", + value = "collectortubes_straight_short.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "redridge", - value = "redridge", - }, - { - children = { - { - children = { - { - children = { { - fileId = "190141", - text = "cage01.m2", - value = "cage01.m2", + fileId = "193176", + text = "collectortubes_straight_short_off.m2", + value = "collectortubes_straight_short_off.m2", }, { - fileId = "190142", - text = "cage02.m2", - value = "cage02.m2", + fileId = "193177", + text = "collectortubes_straight_states.m2", + value = "collectortubes_straight_states.m2", }, { - fileId = "190143", - text = "cage03.m2", - value = "cage03.m2", + fileId = "193178", + text = "collectortubes_support.m2", + value = "collectortubes_support.m2", }, }, - text = "cages", - value = "cages", + text = "collectortubes", + value = "collectortubes", }, { children = { { - fileId = "190153", - text = "holdingpen.m2", - value = "holdingpen.m2", + fileId = "193180", + text = "netherstormcracksmoke01.m2", + value = "netherstormcracksmoke01.m2", }, - }, - text = "holdingpen", - value = "holdingpen", - }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { - { - children = { { - fileId = "190160", - text = "crashzeppelin.m2", - value = "crashzeppelin.m2", + fileId = "193181", + text = "netherstormcracksmokeblue.m2", + value = "netherstormcracksmokeblue.m2", }, }, - text = "crashzeppelin", - value = "crashzeppelin", + text = "crackeffects", + value = "crackeffects", }, { children = { { - fileId = "190165", - text = "oilrig.m2", - value = "oilrig.m2", + fileId = "193184", + text = "nethergravedirtmound01.m2", + value = "nethergravedirtmound01.m2", }, }, - text = "oilrig", - value = "oilrig", + text = "dirt", + value = "dirt", }, { children = { { - fileId = "190169", - text = "runestonemoss_01.m2", - value = "runestonemoss_01.m2", + fileId = "193185", + text = "netherstorm_particles.m2", + value = "netherstorm_particles.m2", }, - }, - text = "runestonemoss_01", - value = "runestonemoss_01", - }, - { - children = { { - fileId = "190175", - text = "trollwatchtower.m2", - value = "trollwatchtower.m2", + fileId = "193186", + text = "netherstorm_particles_pink.m2", + value = "netherstorm_particles_pink.m2", }, }, - text = "trollwatchtower", - value = "trollwatchtower", + text = "float_particles", + value = "float_particles", }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { { children = { { - fileId = "190178", - text = "aquaductstone_corner1.m2", - value = "aquaductstone_corner1.m2", - }, - { - fileId = "190179", - text = "aquaductstone_corner2.m2", - value = "aquaductstone_corner2.m2", + fileId = "193191", + text = "netherstorm_floatingsmall01.m2", + value = "netherstorm_floatingsmall01.m2", }, { - fileId = "190180", - text = "aquaductstone_longpillar.m2", - value = "aquaductstone_longpillar.m2", + fileId = "193192", + text = "netherstorm_floatingsmall02.m2", + value = "netherstorm_floatingsmall02.m2", }, { - fileId = "190181", - text = "aquaductstone_pillar1.m2", - value = "aquaductstone_pillar1.m2", + fileId = "193193", + text = "netherstorm_overhangrock_large_01.m2", + value = "netherstorm_overhangrock_large_01.m2", }, { - fileId = "190182", - text = "aquaductstone_pillar2.m2", - value = "aquaductstone_pillar2.m2", + fileId = "193194", + text = "netherstorm_overhangrock_large_02.m2", + value = "netherstorm_overhangrock_large_02.m2", }, { - fileId = "190183", - text = "aquaductstone_pillar3.m2", - value = "aquaductstone_pillar3.m2", + fileId = "193195", + text = "netherstorm_overhangrock_small_01.m2", + value = "netherstorm_overhangrock_small_01.m2", }, { - fileId = "190184", - text = "aquaductstone_short.m2", - value = "aquaductstone_short.m2", + fileId = "193196", + text = "netherstorm_overhangrock_small_02.m2", + value = "netherstorm_overhangrock_small_02.m2", }, { - fileId = "190185", - text = "aquaductstone_straight.m2", - value = "aquaductstone_straight.m2", + fileId = "193197", + text = "netherstorm_overhangrock_small_03.m2", + value = "netherstorm_overhangrock_small_03.m2", }, { - fileId = "190186", - text = "aquaductstone_straight6.m2", - value = "aquaductstone_straight6.m2", + fileId = "193198", + text = "netherstorm_short02.m2", + value = "netherstorm_short02.m2", }, }, - text = "aquaduct", - value = "aquaduct", + text = "floatingrocks", + value = "floatingrocks", }, { children = { { - fileId = "190192", - text = "jaguarstatue.m2", - value = "jaguarstatue.m2", - }, - { - fileId = "190193", - text = "ropebridge.m2", - value = "ropebridge.m2", - }, - { - fileId = "190194", - text = "stonebridgelong.m2", - value = "stonebridgelong.m2", - }, - { - fileId = "190195", - text = "stonebridgeshort.m2", - value = "stonebridgeshort.m2", - }, - { - fileId = "190196", - text = "stranglechasmbridge.m2", - value = "stranglechasmbridge.m2", + fileId = "193201", + text = "ol_goblinbridge_gears01.m2", + value = "ol_goblinbridge_gears01.m2", }, }, - text = "bridge", - value = "bridge", + text = "goblinbridge", + value = "goblinbridge", }, { children = { { - fileId = "190202", - text = "crystallizedhuman01.m2", - value = "crystallizedhuman01.m2", + fileId = "193203", + text = "netherstorm_goblinwall01.m2", + value = "netherstorm_goblinwall01.m2", }, { - fileId = "190203", - text = "crystallizedhuman02.m2", - value = "crystallizedhuman02.m2", + fileId = "193204", + text = "netherstorm_goblinwall02.m2", + value = "netherstorm_goblinwall02.m2", }, { - fileId = "190204", - text = "crystallizedhuman03.m2", - value = "crystallizedhuman03.m2", + fileId = "193205", + text = "netherstorm_goblinwall_blasteast.m2", + value = "netherstorm_goblinwall_blasteast.m2", }, { - fileId = "190205", - text = "crystallizedtroll01.m2", - value = "crystallizedtroll01.m2", + fileId = "193206", + text = "netherstorm_goblinwall_blastwest.m2", + value = "netherstorm_goblinwall_blastwest.m2", }, { - fileId = "190206", - text = "crystallizedtroll02.m2", - value = "crystallizedtroll02.m2", + fileId = "193207", + text = "netherstorm_goblinwallcurve01.m2", + value = "netherstorm_goblinwallcurve01.m2", }, { - fileId = "190207", - text = "crystallizedtroll03.m2", - value = "crystallizedtroll03.m2", + fileId = "193208", + text = "netherstorm_goblinwallgate01.m2", + value = "netherstorm_goblinwallgate01.m2", + }, + { + fileId = "193210", + text = "netherstorm_goblinwallpost01.m2", + value = "netherstorm_goblinwallpost01.m2", }, }, - text = "crystalcreatures", - value = "crystalcreatures", + text = "goblinwall", + value = "goblinwall", }, { children = { { - fileId = "190223", - text = "strangleplant06.m2", - value = "strangleplant06.m2", + fileId = "193211", + text = "netherstormcracklighting01.m2", + value = "netherstormcracklighting01.m2", }, { - fileId = "190224", - text = "strangleplant07.m2", - value = "strangleplant07.m2", + fileId = "193212", + text = "netherstormcracksmokeonly01.m2", + value = "netherstormcracksmokeonly01.m2", }, { - fileId = "190225", - text = "strangleplant08.m2", - value = "strangleplant08.m2", + fileId = "193214", + text = "netherstormlightning01.m2", + value = "netherstormlightning01.m2", }, { - fileId = "190226", - text = "strangleplant09.m2", - value = "strangleplant09.m2", + fileId = "193215", + text = "netherstormlightning02.m2", + value = "netherstormlightning02.m2", }, { - fileId = "190227", - text = "strangleplant10.m2", - value = "strangleplant10.m2", + fileId = "193216", + text = "netherstormlightning03.m2", + value = "netherstormlightning03.m2", }, { - fileId = "190228", - text = "stranglethornfern01.m2", - value = "stranglethornfern01.m2", + fileId = "193217", + text = "netherstormlightning04.m2", + value = "netherstormlightning04.m2", }, { - fileId = "190229", - text = "stranglethornfern02.m2", - value = "stranglethornfern02.m2", + fileId = "193218", + text = "netherstormlightning05.m2", + value = "netherstormlightning05.m2", }, { - fileId = "190230", - text = "stranglethornfern03.m2", - value = "stranglethornfern03.m2", + fileId = "193219", + text = "netherstormlightning06.m2", + value = "netherstormlightning06.m2", }, - { - fileId = "190231", - text = "stranglethornfern04.m2", - value = "stranglethornfern04.m2", + }, + text = "lightning", + value = "lightning", + }, + { + children = { + { + fileId = "193227", + text = "ns_rock_01.m2", + value = "ns_rock_01.m2", }, { - fileId = "190232", - text = "stranglethornfern05.m2", - value = "stranglethornfern05.m2", + fileId = "193228", + text = "ns_rock_02.m2", + value = "ns_rock_02.m2", }, { - fileId = "190233", - text = "stranglethornfern06.m2", - value = "stranglethornfern06.m2", + fileId = "193229", + text = "ns_rock_03.m2", + value = "ns_rock_03.m2", }, { - fileId = "190235", - text = "stranglethornplant01.m2", - value = "stranglethornplant01.m2", + fileId = "193230", + text = "ns_rock_04.m2", + value = "ns_rock_04.m2", }, { - fileId = "190237", - text = "stranglethornplant02.m2", - value = "stranglethornplant02.m2", + fileId = "193231", + text = "ns_rock_05.m2", + value = "ns_rock_05.m2", }, { - fileId = "190238", - text = "stranglethornplant03.m2", - value = "stranglethornplant03.m2", + fileId = "193232", + text = "ns_rock_06.m2", + value = "ns_rock_06.m2", }, { - fileId = "190239", - text = "stranglethornplant04.m2", - value = "stranglethornplant04.m2", + fileId = "193233", + text = "ns_rock_07.m2", + value = "ns_rock_07.m2", }, { - fileId = "190241", - text = "stranglethornplant05.m2", - value = "stranglethornplant05.m2", + fileId = "193234", + text = "ns_rock_08.m2", + value = "ns_rock_08.m2", }, - }, - text = "detail", - value = "detail", - }, - { - children = { { - fileId = "190246", - text = "diamondminewalllantern.m2", - value = "diamondminewalllantern.m2", + fileId = "193235", + text = "ns_rock_09.m2", + value = "ns_rock_09.m2", }, - }, - text = "diamondminewalllantern", - value = "diamondminewalllantern", - }, - { - children = { { - fileId = "190252", - text = "gemminecar01.m2", - value = "gemminecar01.m2", + fileId = "193236", + text = "ns_rock_10.m2", + value = "ns_rock_10.m2", }, - }, - text = "gemminecar01", - value = "gemminecar01", - }, - { - children = { { - fileId = "190256", - text = "gemminecar02.m2", - value = "gemminecar02.m2", + fileId = "193237", + text = "ns_rock_11.m2", + value = "ns_rock_11.m2", }, { - fileId = "190257", - text = "gemminecar03.m2", - value = "gemminecar03.m2", + fileId = "193238", + text = "ns_rock_12.m2", + value = "ns_rock_12.m2", }, - }, - text = "gemminecar02", - value = "gemminecar02", - }, - { - children = { { - fileId = "190260", - text = "holyspringwell.m2", - value = "holyspringwell.m2", + fileId = "193239", + text = "ns_rock_13.m2", + value = "ns_rock_13.m2", }, - }, - text = "holyspringwell", - value = "holyspringwell", - }, - { - children = { { - fileId = "190262", - text = "overgrowth02.m2", - value = "overgrowth02.m2", + fileId = "193240", + text = "ns_rock_14.m2", + value = "ns_rock_14.m2", }, }, - text = "overgrowth02", - value = "overgrowth02", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "190263", - text = "bootybaypost.m2", - value = "bootybaypost.m2", + fileId = "193242", + text = "netherstormsporemound01.m2", + value = "netherstormsporemound01.m2", }, }, - text = "post", - value = "post", + text = "sporemound", + value = "sporemound", }, + }, + text = "netherstorm", + value = "netherstorm", + }, + { + children = { { children = { { - fileId = "190264", - text = "stranglethorncliffrock01.m2", - value = "stranglethorncliffrock01.m2", - }, - { - fileId = "190266", - text = "stranglethorncliffrock02.m2", - value = "stranglethorncliffrock02.m2", - }, - { - fileId = "190267", - text = "stranglethorncliffrock03.m2", - value = "stranglethorncliffrock03.m2", + children = { + { + fileId = "193243", + text = "pvp_lordaeron_door.m2", + value = "pvp_lordaeron_door.m2", + }, + { + fileId = "193244", + text = "pvp_ogre_door_front.m2", + value = "pvp_ogre_door_front.m2", + }, + { + fileId = "193245", + text = "pvp_ogre_door_interior.m2", + value = "pvp_ogre_door_interior.m2", + }, + { + fileId = "193246", + text = "pvp_orc_door_front.m2", + value = "pvp_orc_door_front.m2", + }, + { + fileId = "193247", + text = "pvp_orc_door_interior.m2", + value = "pvp_orc_door_interior.m2", + }, + }, + text = "doors", + value = "doors", }, }, - text = "rocks", - value = "rocks", + text = "activedoodads", + value = "activedoodads", }, + }, + text = "pvp", + value = "pvp", + }, + { + children = { { children = { { - fileId = "190271", - text = "stranglethornruins01.m2", - value = "stranglethornruins01.m2", - }, - { - fileId = "190272", - text = "stranglethornruins02.m2", - value = "stranglethornruins02.m2", + fileId = "193248", + text = "ol_dwarvenbattlementmossy01.m2", + value = "ol_dwarvenbattlementmossy01.m2", }, { - fileId = "190273", - text = "stranglethornruins03.m2", - value = "stranglethornruins03.m2", + fileId = "193249", + text = "ol_dwarvenbattlementmossy02.m2", + value = "ol_dwarvenbattlementmossy02.m2", }, { - fileId = "190274", - text = "stranglethornruins04.m2", - value = "stranglethornruins04.m2", + fileId = "193250", + text = "ol_dwarvenbattlementmossy03.m2", + value = "ol_dwarvenbattlementmossy03.m2", }, { - fileId = "190275", - text = "stranglethornruins05.m2", - value = "stranglethornruins05.m2", + fileId = "193251", + text = "ol_dwarvenbattlementmossy04.m2", + value = "ol_dwarvenbattlementmossy04.m2", }, { - fileId = "190276", - text = "stranglethornruins06.m2", - value = "stranglethornruins06.m2", + fileId = "193252", + text = "ol_dwarvenbattlementmossy05.m2", + value = "ol_dwarvenbattlementmossy05.m2", }, { - fileId = "190277", - text = "stranglethornruins07.m2", - value = "stranglethornruins07.m2", + fileId = "193253", + text = "ol_dwarvenbattlementmossy06.m2", + value = "ol_dwarvenbattlementmossy06.m2", }, { - fileId = "190278", - text = "stranglethornruins08.m2", - value = "stranglethornruins08.m2", + fileId = "193254", + text = "ol_dwarvenbattlementmossy07.m2", + value = "ol_dwarvenbattlementmossy07.m2", }, { - fileId = "190279", - text = "stranglethornruins09.m2", - value = "stranglethornruins09.m2", + fileId = "193255", + text = "ol_lochlamppost.m2", + value = "ol_lochlamppost.m2", }, { - fileId = "190280", - text = "stranglethornruins10.m2", - value = "stranglethornruins10.m2", + fileId = "193257", + text = "ol_lochmodanstonefence02.m2", + value = "ol_lochmodanstonefence02.m2", }, + }, + text = "base", + value = "base", + }, + { + children = { { - fileId = "190281", - text = "stranglethornruins11.m2", - value = "stranglethornruins11.m2", + fileId = "193261", + text = "shadowmoonblacktemplebrazier01.m2", + value = "shadowmoonblacktemplebrazier01.m2", }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { { - fileId = "190282", - text = "stranglethornruins12.m2", - value = "stranglethornruins12.m2", + fileId = "193263", + text = "chromaticcrystralformation_01.m2", + value = "chromaticcrystralformation_01.m2", }, { - fileId = "190283", - text = "stranglethornruins13.m2", - value = "stranglethornruins13.m2", + fileId = "193264", + text = "chromaticcrystralformation_02.m2", + value = "chromaticcrystralformation_02.m2", }, { - fileId = "190284", - text = "stranglethornruins14.m2", - value = "stranglethornruins14.m2", + fileId = "193265", + text = "chromaticcrystralformation_03.m2", + value = "chromaticcrystralformation_03.m2", }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { { - fileId = "190285", - text = "stranglethornruins15.m2", - value = "stranglethornruins15.m2", + fileId = "193269", + text = "shadowmoon_gravestones_horde_01.m2", + value = "shadowmoon_gravestones_horde_01.m2", }, { - fileId = "190286", - text = "stranglethornruins16.m2", - value = "stranglethornruins16.m2", + fileId = "193270", + text = "shadowmoon_gravestones_horde_02.m2", + value = "shadowmoon_gravestones_horde_02.m2", }, { - fileId = "190287", - text = "stranglethornruins17.m2", - value = "stranglethornruins17.m2", + fileId = "193271", + text = "shadowmoon_gravestones_horde_03.m2", + value = "shadowmoon_gravestones_horde_03.m2", }, + }, + text = "graveyard", + value = "graveyard", + }, + { + children = { { - fileId = "190288", - text = "stranglethornruins18.m2", - value = "stranglethornruins18.m2", + fileId = "193278", + text = "shadowmoon_lavaguyser.m2", + value = "shadowmoon_lavaguyser.m2", }, { - fileId = "190289", - text = "stranglethornruins19.m2", - value = "stranglethornruins19.m2", + fileId = "193279", + text = "shadowmoon_lavasplash01.m2", + value = "shadowmoon_lavasplash01.m2", }, { - fileId = "190290", - text = "stranglethornruins20.m2", - value = "stranglethornruins20.m2", + fileId = "193280", + text = "shadowmoon_lavasplash02.m2", + value = "shadowmoon_lavasplash02.m2", }, + }, + text = "guyser", + value = "guyser", + }, + { + children = { { - fileId = "190291", - text = "stranglethornruins21.m2", - value = "stranglethornruins21.m2", + fileId = "193282", + text = "shadowmoonlavaplaug01.m2", + value = "shadowmoonlavaplaug01.m2", }, { - fileId = "190292", - text = "stranglethornruins_pylon.m2", - value = "stranglethornruins_pylon.m2", + fileId = "193283", + text = "shadowmoonlavaplaug02.m2", + value = "shadowmoonlavaplaug02.m2", }, }, - text = "ruins", - value = "ruins", + text = "lavaplugs", + value = "lavaplugs", }, { children = { { - fileId = "190300", - text = "sack01_01.m2", - value = "sack01_01.m2", + fileId = "193284", + text = "markofkael.m2", + value = "markofkael.m2", }, }, - text = "sack01_01", - value = "sack01_01", + text = "markofkael", + value = "markofkael", }, { children = { { - fileId = "190304", - text = "serpentstatue02.m2", - value = "serpentstatue02.m2", + fileId = "193286", + text = "shadowmoonmeteora.m2", + value = "shadowmoonmeteora.m2", + }, + { + fileId = "193287", + text = "shadowmoonmeteorb.m2", + value = "shadowmoonmeteorb.m2", + }, + { + fileId = "193288", + text = "shadowmoonmeteorc.m2", + value = "shadowmoonmeteorc.m2", + }, + { + fileId = "193289", + text = "shadowmoonmeteord.m2", + value = "shadowmoonmeteord.m2", + }, + { + fileId = "193290", + text = "shadowmoonmeteore.m2", + value = "shadowmoonmeteore.m2", }, }, - text = "serpentstatue02", - value = "serpentstatue02", + text = "meteor", + value = "meteor", }, { children = { { - fileId = "190308", - text = "strangledeadtree01.m2", - value = "strangledeadtree01.m2", + fileId = "193291", + text = "infernallowpoly.m2", + value = "infernallowpoly.m2", }, }, - text = "strangledeadtrees", - value = "strangledeadtrees", + text = "quest", + value = "quest", }, { children = { { - fileId = "190311", - text = "bootybaytree01.m2", - value = "bootybaytree01.m2", + fileId = "193293", + text = "shadowmoon_floatingsmall01.m2", + value = "shadowmoon_floatingsmall01.m2", }, { - fileId = "190312", - text = "strangledeadtreenovine.m2", - value = "strangledeadtreenovine.m2", + fileId = "193294", + text = "shadowmoon_floatingsmall02.m2", + value = "shadowmoon_floatingsmall02.m2", }, { - fileId = "190313", - text = "stranglethornroot01.m2", - value = "stranglethornroot01.m2", + fileId = "193295", + text = "shadowmoon_overhangrock_large_01.m2", + value = "shadowmoon_overhangrock_large_01.m2", }, { - fileId = "190314", - text = "stranglethornroot02.m2", - value = "stranglethornroot02.m2", + fileId = "193296", + text = "shadowmoon_overhangrock_large_02.m2", + value = "shadowmoon_overhangrock_large_02.m2", }, { - fileId = "190315", - text = "stranglethornroot03.m2", - value = "stranglethornroot03.m2", + fileId = "193297", + text = "shadowmoon_overhangrock_small_01.m2", + value = "shadowmoon_overhangrock_small_01.m2", }, { - children = { - { - fileId = "190316", - text = "stranglethorntree01.m2", - value = "stranglethorntree01.m2", - }, - }, - text = "stranglethorntree01", - value = "stranglethorntree01", + fileId = "193298", + text = "shadowmoon_overhangrock_small_02.m2", + value = "shadowmoon_overhangrock_small_02.m2", }, { - children = { - { - fileId = "190319", - text = "stranglethorntree02.m2", - value = "stranglethorntree02.m2", - }, - }, - text = "stranglethorntree02", - value = "stranglethorntree02", + fileId = "193299", + text = "shadowmoon_overhangrock_small_03.m2", + value = "shadowmoon_overhangrock_small_03.m2", }, { - children = { - { - fileId = "190322", - text = "stranglethorntree04.m2", - value = "stranglethorntree04.m2", - }, - }, - text = "stranglethorntree04", - value = "stranglethorntree04", + fileId = "193300", + text = "shadowmoon_rock_01.m2", + value = "shadowmoon_rock_01.m2", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "190331", - text = "trolldrumsoundobj.m2", - value = "trolldrumsoundobj.m2", + fileId = "193301", + text = "shadowmoon_rock_02.m2", + value = "shadowmoon_rock_02.m2", }, { - fileId = "190332", - text = "trolldungeondrum03.m2", - value = "trolldungeondrum03.m2", + fileId = "193302", + text = "shadowmoon_rock_03.m2", + value = "shadowmoon_rock_03.m2", }, { - fileId = "190333", - text = "trollruinsdrum01.m2", - value = "trollruinsdrum01.m2", + fileId = "193303", + text = "shadowmoon_rock_04.m2", + value = "shadowmoon_rock_04.m2", }, - }, - text = "trolldrum", - value = "trolldrum", - }, - { - children = { { - fileId = "190337", - text = "trolldungeonfountain.m2", - value = "trolldungeonfountain.m2", + fileId = "193304", + text = "shadowmoon_rock_05.m2", + value = "shadowmoon_rock_05.m2", }, - }, - text = "trolldungeonfountain", - value = "trolldungeonfountain", - }, - { - children = { - { - fileId = "190341", - text = "trolldungeonpottery01.m2", - value = "trolldungeonpottery01.m2", + { + fileId = "193305", + text = "shadowmoon_rock_06.m2", + value = "shadowmoon_rock_06.m2", }, { - fileId = "190342", - text = "trolldungeonpottery02.m2", - value = "trolldungeonpottery02.m2", + fileId = "193306", + text = "shadowmoon_rock_07.m2", + value = "shadowmoon_rock_07.m2", }, { - fileId = "190343", - text = "trolldungeonpottery03.m2", - value = "trolldungeonpottery03.m2", + fileId = "193307", + text = "shadowmoon_short02.m2", + value = "shadowmoon_short02.m2", }, }, - text = "trolldungeonpottery", - value = "trolldungeonpottery", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "190345", - text = "trolldungeonring.m2", - value = "trolldungeonring.m2", + fileId = "193312", + text = "shadowmoon_rune1.m2", + value = "shadowmoon_rune1.m2", }, - }, - text = "trolldungeonring", - value = "trolldungeonring", - }, - { - fileId = "2198507", - text = "trolldungeonring.m2", - value = "trolldungeonring.m2", - }, - { - children = { { - fileId = "190347", - text = "trolldungeonsacks.m2", - value = "trolldungeonsacks.m2", + fileId = "193313", + text = "shadowmoon_rune2.m2", + value = "shadowmoon_rune2.m2", }, }, - text = "trolldungeonsacks", - value = "trolldungeonsacks", + text = "rune", + value = "rune", }, { children = { { - fileId = "190348", - text = "trolldungeonserpentstatue.m2", - value = "trolldungeonserpentstatue.m2", + fileId = "193314", + text = "shadowmoon_scaffolding01.m2", + value = "shadowmoon_scaffolding01.m2", }, - }, - text = "trolldungeonserpentstatue", - value = "trolldungeonserpentstatue", - }, - { - children = { { - fileId = "190353", - text = "trollruinsgong03.m2", - value = "trollruinsgong03.m2", + fileId = "193315", + text = "shadowmoon_scaffolding02.m2", + value = "shadowmoon_scaffolding02.m2", + }, + { + fileId = "193316", + text = "shadowmoon_scaffolding03.m2", + value = "shadowmoon_scaffolding03.m2", }, }, - text = "trollruinsgong", - value = "trollruinsgong", + text = "scaffolding", + value = "scaffolding", }, { children = { { - fileId = "190354", - text = "stranglethorntikihead.m2", - value = "stranglethorntikihead.m2", + fileId = "193318", + text = "burningash02.m2", + value = "burningash02.m2", }, { - fileId = "190358", - text = "trollshrine.m2", - value = "trollshrine.m2", + fileId = "193319", + text = "burningash03.m2", + value = "burningash03.m2", + }, + { + fileId = "193321", + text = "shadowmooncracksmoke01.m2", + value = "shadowmooncracksmoke01.m2", }, }, - text = "trollshrine", - value = "trollshrine", + text = "smoke", + value = "smoke", }, { children = { { - fileId = "190361", - text = "stranglethornwaterfall01.m2", - value = "stranglethornwaterfall01.m2", + fileId = "193326", + text = "shadowmoonvolcanotop.m2", + value = "shadowmoonvolcanotop.m2", }, }, - text = "waterfall", - value = "waterfall", + text = "volcano", + value = "volcano", }, }, - text = "passivedoodads", - value = "passivedoodads", + text = "shadowmoon", + value = "shadowmoon", }, - }, - text = "stranglethorn", - value = "stranglethorn", - }, - { - children = { { children = { { children = { { - fileId = "190363", - text = "serpentaltar.m2", - value = "serpentaltar.m2", + children = { + { + fileId = "193328", + text = "ancdrae_elevatorpiece.m2", + value = "ancdrae_elevatorpiece.m2", + }, + { + fileId = "193329", + text = "ancdrae_elevatorpiece_netherstorm.m2", + value = "ancdrae_elevatorpiece_netherstorm.m2", + }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { + { + fileId = "193330", + text = "shattrathsouptent.m2", + value = "shattrathsouptent.m2", + }, + }, + text = "events", + value = "events", }, }, - text = "serpentaltar", - value = "serpentaltar", + text = "activedoodads", + value = "activedoodads", }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "sunkentemple", - value = "sunkentemple", - }, - { - children = { - { - children = { { children = { { - fileId = "190364", - text = "runestonecrud_01.m2", - value = "runestonecrud_01.m2", + children = { + { + fileId = "193331", + text = "battlemasterpedestal.m2", + value = "battlemasterpedestal.m2", + }, + }, + text = "battlemasterpedestal", + value = "battlemasterpedestal", + }, + { + children = { + { + fileId = "193332", + text = "ancient_d_bookshelf.m2", + value = "ancient_d_bookshelf.m2", + }, + }, + text = "bookshelf", + value = "bookshelf", + }, + { + children = { + { + fileId = "193340", + text = "shattrath_narru_energy_fx.m2", + value = "shattrath_narru_energy_fx.m2", + }, + }, + text = "central_energy_fx", + value = "central_energy_fx", + }, + { + children = { + { + fileId = "193342", + text = "hf_outpostcrystals.m2", + value = "hf_outpostcrystals.m2", + }, + { + fileId = "193343", + text = "outpost_crystals1.m2", + value = "outpost_crystals1.m2", + }, + { + fileId = "193347", + text = "shattrath_crystal_bank.m2", + value = "shattrath_crystal_bank.m2", + }, + { + fileId = "193348", + text = "shattrath_crystal_holyaldurtemple.m2", + value = "shattrath_crystal_holyaldurtemple.m2", + }, + { + fileId = "193349", + text = "shattrath_crystal_huta.m2", + value = "shattrath_crystal_huta.m2", + }, + { + fileId = "193350", + text = "shattrath_crystal_hutb.m2", + value = "shattrath_crystal_hutb.m2", + }, + { + fileId = "193351", + text = "shattrath_crystal_hutc.m2", + value = "shattrath_crystal_hutc.m2", + }, + { + fileId = "193352", + text = "shattrath_crystal_inn_bottom.m2", + value = "shattrath_crystal_inn_bottom.m2", + }, + { + fileId = "193353", + text = "shattrath_crystal_inn_floating.m2", + value = "shattrath_crystal_inn_floating.m2", + }, + { + fileId = "193355", + text = "shattrath_crystal_outpost.m2", + value = "shattrath_crystal_outpost.m2", + }, + { + fileId = "193356", + text = "shattrath_crystal_temple_ext.m2", + value = "shattrath_crystal_temple_ext.m2", + }, + { + fileId = "193357", + text = "shattrath_crystal_temple_int.m2", + value = "shattrath_crystal_temple_int.m2", + }, + { + fileId = "193358", + text = "shattrath_crystal_terrace.m2", + value = "shattrath_crystal_terrace.m2", + }, + }, + text = "crystal_tops", + value = "crystal_tops", + }, + { + children = { + { + fileId = "193359", + text = "shattrath_scryerdoodads.m2", + value = "shattrath_scryerdoodads.m2", + }, + { + fileId = "193360", + text = "shattrath_scryerdoodads_backcrates.m2", + value = "shattrath_scryerdoodads_backcrates.m2", + }, + { + fileId = "466049", + text = "shattrath_scryerhedges.m2", + value = "shattrath_scryerhedges.m2", + }, + }, + text = "giantdoodads", + value = "giantdoodads", + }, + { + children = { + { + fileId = "193362", + text = "shattrath_draenei_holy_fx.m2", + value = "shattrath_draenei_holy_fx.m2", + }, + }, + text = "holy_energy_fx", + value = "holy_energy_fx", + }, + { + children = { + { + fileId = "193363", + text = "ancient_d_braizer.m2", + value = "ancient_d_braizer.m2", + }, + { + fileId = "193364", + text = "ancient_d_braizer_blue.m2", + value = "ancient_d_braizer_blue.m2", + }, + { + fileId = "193365", + text = "ancient_d_braizer_blue_lowbatch.m2", + value = "ancient_d_braizer_blue_lowbatch.m2", + }, + { + fileId = "193366", + text = "ancient_d_braizer_blue_shortsmoke.m2", + value = "ancient_d_braizer_blue_shortsmoke.m2", + }, + { + fileId = "193367", + text = "ancient_d_braizer_broken.m2", + value = "ancient_d_braizer_broken.m2", + }, + { + fileId = "193368", + text = "ancient_d_braizer_red.m2", + value = "ancient_d_braizer_red.m2", + }, + { + fileId = "193369", + text = "ancient_d_sconce.m2", + value = "ancient_d_sconce.m2", + }, + { + fileId = "193370", + text = "ancient_d_sconce_off.m2", + value = "ancient_d_sconce_off.m2", + }, + { + fileId = "193371", + text = "ancient_d_standing_light.m2", + value = "ancient_d_standing_light.m2", + }, + { + fileId = "193372", + text = "ancient_d_standing_light_off.m2", + value = "ancient_d_standing_light_off.m2", + }, + }, + text = "lighting", + value = "lighting", }, }, - text = "runestonecrud_01", - value = "runestonecrud_01", + text = "passivedoodads", + value = "passivedoodads", }, }, - text = "buildings", - value = "buildings", + text = "shattrath", + value = "shattrath", }, { children = { { children = { { - fileId = "190375", - text = "swampofsorrowlilypad01.m2", - value = "swampofsorrowlilypad01.m2", - }, - { - fileId = "190376", - text = "swampofsorrowlilypad02.m2", - value = "swampofsorrowlilypad02.m2", + fileId = "193383", + text = "silvermoonbush05.m2", + value = "silvermoonbush05.m2", }, { - fileId = "190377", - text = "swampplant03.m2", - value = "swampplant03.m2", + fileId = "193384", + text = "silvermoonbush06.m2", + value = "silvermoonbush06.m2", }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { { - fileId = "190378", - text = "swampplant04.m2", - value = "swampplant04.m2", + fileId = "193386", + text = "floatingdandelions01.m2", + value = "floatingdandelions01.m2", }, + }, + text = "floatingdandelions", + value = "floatingdandelions", + }, + { + children = { { - fileId = "190379", - text = "swampplant05.m2", - value = "swampplant05.m2", + fileId = "193392", + text = "silvermoonflower01.m2", + value = "silvermoonflower01.m2", }, { - fileId = "190380", - text = "swampsorrowplant01.m2", - value = "swampsorrowplant01.m2", + fileId = "193393", + text = "silvermoonflower02.m2", + value = "silvermoonflower02.m2", }, { - fileId = "190381", - text = "swampsorrowplant02.m2", - value = "swampsorrowplant02.m2", + fileId = "193394", + text = "silvermoonflower03.m2", + value = "silvermoonflower03.m2", }, { - fileId = "190382", - text = "swampsorrowroot01.m2", - value = "swampsorrowroot01.m2", + fileId = "193395", + text = "silvermoonflower04.m2", + value = "silvermoonflower04.m2", }, { - fileId = "190383", - text = "swampsorrowroot02.m2", - value = "swampsorrowroot02.m2", + fileId = "193396", + text = "silvermoonflower05.m2", + value = "silvermoonflower05.m2", }, { - fileId = "190384", - text = "swampsorrowroot03.m2", - value = "swampsorrowroot03.m2", + fileId = "193397", + text = "silvermoonflower06.m2", + value = "silvermoonflower06.m2", }, }, - text = "plants", - value = "plants", + text = "flowers", + value = "flowers", }, { children = { { - fileId = "190388", - text = "swampsorrowrock01.m2", - value = "swampsorrowrock01.m2", - }, - { - fileId = "190389", - text = "swampsorrowrock02.m2", - value = "swampsorrowrock02.m2", + fileId = "193399", + text = "eversongcliffrock01.m2", + value = "eversongcliffrock01.m2", }, { - fileId = "190390", - text = "swampsorrowrock03.m2", - value = "swampsorrowrock03.m2", + fileId = "193400", + text = "eversongcliffrock02.m2", + value = "eversongcliffrock02.m2", }, }, text = "rocks", @@ -64672,1989 +100856,2392 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "190393", - text = "swampbeastbone01.m2", - value = "swampbeastbone01.m2", + fileId = "193402", + text = "silvermoontree08.m2", + value = "silvermoontree08.m2", }, }, - text = "swampbeastbones", - value = "swampbeastbones", + text = "trees", + value = "trees", }, { children = { { - fileId = "190398", - text = "swampboat01.m2", - value = "swampboat01.m2", + fileId = "193405", + text = "bigfountainwater.m2", + value = "bigfountainwater.m2", }, }, - text = "swampboats", - value = "swampboats", + text = "water", + value = "water", }, + }, + text = "silvermoon", + value = "silvermoon", + }, + { + children = { { children = { { - fileId = "190400", - text = "swampskulls01.m2", - value = "swampskulls01.m2", + fileId = "193407", + text = "silvermystbush01.m2", + value = "silvermystbush01.m2", }, { - fileId = "190401", - text = "swampskulls02.m2", - value = "swampskulls02.m2", + fileId = "193408", + text = "silvermystbush02.m2", + value = "silvermystbush02.m2", }, - }, - text = "swampskulls", - value = "swampskulls", - }, - { - children = { { - fileId = "190404", - text = "swampsnakestatue01.m2", - value = "swampsnakestatue01.m2", + fileId = "193409", + text = "silvermystbush03.m2", + value = "silvermystbush03.m2", }, }, - text = "swampsnakestatue", - value = "swampsnakestatue", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "190405", - text = "swampwagon01.m2", - value = "swampwagon01.m2", + fileId = "193414", + text = "silvermystcompass01.m2", + value = "silvermystcompass01.m2", }, - }, - text = "swampwagon", - value = "swampwagon", + }, + text = "compass", + value = "compass", }, { children = { { - fileId = "190408", - text = "losttreehuts01.m2", - value = "losttreehuts01.m2", + fileId = "193420", + text = "silvermyst_elfinn_crystal.m2", + value = "silvermyst_elfinn_crystal.m2", }, { - fileId = "190409", - text = "losttreehuts02.m2", - value = "losttreehuts02.m2", + fileId = "193421", + text = "silvermystcrystal01.m2", + value = "silvermystcrystal01.m2", }, { - fileId = "190410", - text = "losttreehuts03.m2", - value = "losttreehuts03.m2", + fileId = "193422", + text = "silvermystcrystal01_orange.m2", + value = "silvermystcrystal01_orange.m2", }, - }, - text = "treehuts", - value = "treehuts", - }, - { - children = { { - fileId = "190411", - text = "swamptreelog01.m2", - value = "swamptreelog01.m2", + fileId = "193423", + text = "silvermystcrystal01_yellow.m2", + value = "silvermystcrystal01_yellow.m2", }, { - fileId = "190412", - text = "swamptreelog02.m2", - value = "swamptreelog02.m2", + fileId = "193424", + text = "silvermystcrystal02.m2", + value = "silvermystcrystal02.m2", }, { - fileId = "190413", - text = "swamptreelog03.m2", - value = "swamptreelog03.m2", + fileId = "193425", + text = "silvermystcrystal02_orange.m2", + value = "silvermystcrystal02_orange.m2", }, { - fileId = "190414", - text = "swamptreelog04.m2", - value = "swamptreelog04.m2", + fileId = "193426", + text = "silvermystcrystal02_yellow.m2", + value = "silvermystcrystal02_yellow.m2", }, - }, - text = "treelogs", - value = "treelogs", - }, - { - children = { { - fileId = "190418", - text = "swampsorrowcanopytree01.m2", - value = "swampsorrowcanopytree01.m2", + fileId = "193427", + text = "silvermystcrystal03.m2", + value = "silvermystcrystal03.m2", }, { - fileId = "190419", - text = "swampsorrowcanopytree02.m2", - value = "swampsorrowcanopytree02.m2", + fileId = "193428", + text = "silvermystcrystal03_orange.m2", + value = "silvermystcrystal03_orange.m2", }, { - fileId = "190420", - text = "swampsorrowcanopytree03.m2", - value = "swampsorrowcanopytree03.m2", + fileId = "193429", + text = "silvermystcrystal03_yellow.m2", + value = "silvermystcrystal03_yellow.m2", }, { - fileId = "190421", - text = "swampsorrowcanopytree04.m2", - value = "swampsorrowcanopytree04.m2", + fileId = "193434", + text = "silvermystcrystalbig01.m2", + value = "silvermystcrystalbig01.m2", }, { - fileId = "190422", - text = "swampsorrowcanopytree05.m2", - value = "swampsorrowcanopytree05.m2", + fileId = "193435", + text = "silvermystcrystalbig01_orange.m2", + value = "silvermystcrystalbig01_orange.m2", }, { - fileId = "190423", - text = "swampsorrowcanopytree06.m2", - value = "swampsorrowcanopytree06.m2", + fileId = "193436", + text = "silvermystcrystalbig01_yellow.m2", + value = "silvermystcrystalbig01_yellow.m2", }, { - fileId = "190424", - text = "swampsorrowtree01.m2", - value = "swampsorrowtree01.m2", + fileId = "193437", + text = "silvermystcrystalbig02.m2", + value = "silvermystcrystalbig02.m2", }, { - fileId = "190425", - text = "swampsorrowtree02.m2", - value = "swampsorrowtree02.m2", + fileId = "193438", + text = "silvermystcrystalbig02_orange.m2", + value = "silvermystcrystalbig02_orange.m2", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "190428", - text = "swamphangingvines01.m2", - value = "swamphangingvines01.m2", + fileId = "193439", + text = "silvermystcrystalbig02_yellow.m2", + value = "silvermystcrystalbig02_yellow.m2", }, { - fileId = "190429", - text = "swamphangingvines02.m2", - value = "swamphangingvines02.m2", + fileId = "193440", + text = "silvermystcrystalbig03.m2", + value = "silvermystcrystalbig03.m2", }, - }, - text = "vines", - value = "vines", - }, - { - children = { { - fileId = "190430", - text = "waterhut01.m2", - value = "waterhut01.m2", + fileId = "193441", + text = "silvermystcrystalbig03_orange.m2", + value = "silvermystcrystalbig03_orange.m2", }, { - fileId = "190431", - text = "waterhut02.m2", - value = "waterhut02.m2", + fileId = "193442", + text = "silvermystcrystalbig03_yellow.m2", + value = "silvermystcrystalbig03_yellow.m2", }, - }, - text = "waterhuts", - value = "waterhuts", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "swamposorrow", - value = "swamposorrow", - }, - { - children = { - { - children = { - { - children = { { - fileId = "190434", - text = "blastedlandsblastedcow.m2", - value = "blastedlandsblastedcow.m2", + fileId = "193446", + text = "silvermystcrystalsmall01.m2", + value = "silvermystcrystalsmall01.m2", }, { - fileId = "190435", - text = "blastedlandsblastedmule.m2", - value = "blastedlandsblastedmule.m2", + fileId = "193447", + text = "silvermystcrystalsmall01_orange.m2", + value = "silvermystcrystalsmall01_orange.m2", }, { - fileId = "190436", - text = "blastedlandsbone01.m2", - value = "blastedlandsbone01.m2", + fileId = "193448", + text = "silvermystcrystalsmall01_yellow.m2", + value = "silvermystcrystalsmall01_yellow.m2", }, { - fileId = "190437", - text = "blastedlandsbonepile02.m2", - value = "blastedlandsbonepile02.m2", + fileId = "193449", + text = "silvermystcrystalsmall02.m2", + value = "silvermystcrystalsmall02.m2", }, { - fileId = "190438", - text = "blastedlandsbonepile03.m2", - value = "blastedlandsbonepile03.m2", + fileId = "193450", + text = "silvermystcrystalsmall02_orange.m2", + value = "silvermystcrystalsmall02_orange.m2", }, { - fileId = "190439", - text = "blastedlandsskull01.m2", - value = "blastedlandsskull01.m2", + fileId = "193451", + text = "silvermystcrystalsmall02_yellow.m2", + value = "silvermystcrystalsmall02_yellow.m2", }, { - fileId = "190440", - text = "blastedlandsskull02.m2", - value = "blastedlandsskull02.m2", + fileId = "193452", + text = "silvermystcrystalsmall03.m2", + value = "silvermystcrystalsmall03.m2", }, { - fileId = "190441", - text = "blastedlandsspine01.m2", - value = "blastedlandsspine01.m2", + fileId = "193453", + text = "silvermystcrystalsmall03_orange.m2", + value = "silvermystcrystalsmall03_orange.m2", + }, + { + fileId = "193454", + text = "silvermystcrystalsmall03_yellow.m2", + value = "silvermystcrystalsmall03_yellow.m2", }, }, - text = "bones", - value = "bones", + text = "crystals", + value = "crystals", }, { children = { { - fileId = "190444", - text = "blastedlandsbrokencolumn01.m2", - value = "blastedlandsbrokencolumn01.m2", - }, - { - fileId = "190445", - text = "blastedlandsbrokencolumn02.m2", - value = "blastedlandsbrokencolumn02.m2", + fileId = "193457", + text = "silvermyst_leafpile.m2", + value = "silvermyst_leafpile.m2", }, }, - text = "column", - value = "column", + text = "leafpile", + value = "leafpile", }, { children = { { - fileId = "190447", - text = "blastedlandsrock01.m2", - value = "blastedlandsrock01.m2", + fileId = "193458", + text = "silvermystlightningbolt01.m2", + value = "silvermystlightningbolt01.m2", }, }, - text = "detail", - value = "detail", + text = "lightning", + value = "lightning", }, { children = { { - fileId = "190450", - text = "blastedlandsportalrock01.m2", - value = "blastedlandsportalrock01.m2", + fileId = "193460", + text = "silvermyst_lightshaft.m2", + value = "silvermyst_lightshaft.m2", }, { - fileId = "190451", - text = "blastedlandsportalrock02.m2", - value = "blastedlandsportalrock02.m2", + fileId = "193461", + text = "silvermyst_lightshaft02.m2", + value = "silvermyst_lightshaft02.m2", }, { - fileId = "190452", - text = "blastedlandsportalrock03.m2", - value = "blastedlandsportalrock03.m2", + fileId = "193462", + text = "silvermyst_lightshaft03.m2", + value = "silvermyst_lightshaft03.m2", }, + }, + text = "lightshaft", + value = "lightshaft", + }, + { + children = { { - fileId = "190453", - text = "blastedlandsrock02.m2", - value = "blastedlandsrock02.m2", + fileId = "193464", + text = "silvermyst_moonstone_blue.m2", + value = "silvermyst_moonstone_blue.m2", }, { - fileId = "190454", - text = "blastedlandsrock03.m2", - value = "blastedlandsrock03.m2", + fileId = "193466", + text = "silvermyst_moonstone_green.m2", + value = "silvermyst_moonstone_green.m2", + }, + { + fileId = "193468", + text = "silvermyst_moonstone_red.m2", + value = "silvermyst_moonstone_red.m2", }, }, - text = "rocks", - value = "rocks", + text = "moonstone", + value = "moonstone", }, { children = { { - fileId = "190456", - text = "blastedlandsroot01.m2", - value = "blastedlandsroot01.m2", - }, - { - fileId = "190457", - text = "blastedlandsroot03.m2", - value = "blastedlandsroot03.m2", + fileId = "193469", + text = "d_smoke.m2", + value = "d_smoke.m2", }, }, - text = "roots", - value = "roots", + text = "smoke", + value = "smoke", }, { children = { { - fileId = "190462", - text = "blastedlandsportalruins01.m2", - value = "blastedlandsportalruins01.m2", + fileId = "193478", + text = "silvermysttree01.m2", + value = "silvermysttree01.m2", }, { - fileId = "190463", - text = "blastedlandsportalruins02.m2", - value = "blastedlandsportalruins02.m2", + fileId = "193479", + text = "silvermysttree02.m2", + value = "silvermysttree02.m2", }, { - fileId = "190464", - text = "blastedlandsportalruins03.m2", - value = "blastedlandsportalruins03.m2", + fileId = "193480", + text = "silvermysttree03.m2", + value = "silvermysttree03.m2", }, { - fileId = "190466", - text = "blastedlandsruins01.m2", - value = "blastedlandsruins01.m2", + fileId = "193481", + text = "silvermysttree04.m2", + value = "silvermysttree04.m2", }, { - fileId = "190467", - text = "blastedlandsruins02.m2", - value = "blastedlandsruins02.m2", + fileId = "193482", + text = "silvermysttree05.m2", + value = "silvermysttree05.m2", }, { - fileId = "190468", - text = "blastedlandsruins03.m2", - value = "blastedlandsruins03.m2", + fileId = "193483", + text = "silvermysttree_fallen01.m2", + value = "silvermysttree_fallen01.m2", }, { - fileId = "190469", - text = "blastedlandsruinstusk.m2", - value = "blastedlandsruinstusk.m2", + fileId = "193484", + text = "silvermysttreeroots01.m2", + value = "silvermysttreeroots01.m2", }, { - fileId = "190470", - text = "brokengatearch.m2", - value = "brokengatearch.m2", + fileId = "193485", + text = "silvermysttreetorn01.m2", + value = "silvermysttreetorn01.m2", }, { - fileId = "190471", - text = "brokengatechain01.m2", - value = "brokengatechain01.m2", + fileId = "193486", + text = "silvermysttreetorn02.m2", + value = "silvermysttreetorn02.m2", }, { - fileId = "190472", - text = "brokengatechain02.m2", - value = "brokengatechain02.m2", + fileId = "193487", + text = "silvermysttreetorn03.m2", + value = "silvermysttreetorn03.m2", }, { - fileId = "190474", - text = "brokengateside01.m2", - value = "brokengateside01.m2", + fileId = "193488", + text = "silvermysttreetorn04.m2", + value = "silvermysttreetorn04.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "silvermyst", + value = "silvermyst", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193491", + text = "frostwurmfellfire_birth.m2", + value = "frostwurmfellfire_birth.m2", + }, + { + fileId = "193497", + text = "sunwell_bosscollision01.m2", + value = "sunwell_bosscollision01.m2", + }, + { + fileId = "193498", + text = "sunwell_bosscollision02.m2", + value = "sunwell_bosscollision02.m2", + }, + { + fileId = "193499", + text = "sunwell_bossforcefield.m2", + value = "sunwell_bossforcefield.m2", + }, + { + fileId = "193508", + text = "sunwell_fx.m2", + value = "sunwell_fx.m2", + }, + { + fileId = "193511", + text = "sunwell_ice_barrier.m2", + value = "sunwell_ice_barrier.m2", + }, + { + fileId = "193518", + text = "sunwell_replica.m2", + value = "sunwell_replica.m2", + }, + { + fileId = "193525", + text = "sunwell_windowdust.m2", + value = "sunwell_windowdust.m2", + }, + { + fileId = "193527", + text = "sunwellraid_gate_01.m2", + value = "sunwellraid_gate_01.m2", + }, + { + fileId = "193528", + text = "sunwellraid_gate_02.m2", + value = "sunwellraid_gate_02.m2", + }, + { + fileId = "193529", + text = "sunwellraid_gate_03.m2", + value = "sunwellraid_gate_03.m2", + }, + { + fileId = "193530", + text = "sunwellraid_gate_04.m2", + value = "sunwellraid_gate_04.m2", + }, + }, + text = "sunwell", + value = "sunwell", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "sunwell", + value = "sunwell", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193538", + text = "tk_boss_pod.m2", + value = "tk_boss_pod.m2", + }, + }, + text = "arcane_boss_pod", + value = "arcane_boss_pod", + }, + { + children = { + { + fileId = "193539", + text = "tk_arcane_door_horiz.m2", + value = "tk_arcane_door_horiz.m2", + }, + { + fileId = "193540", + text = "tk_arcane_door_vert.m2", + value = "tk_arcane_door_vert.m2", + }, + }, + text = "arcane_doors", + value = "arcane_doors", + }, + { + children = { + { + fileId = "193541", + text = "tk_prison_cell.m2", + value = "tk_prison_cell.m2", + }, + }, + text = "arcane_pod", + value = "arcane_pod", + }, + { + children = { + { + fileId = "193551", + text = "tk_main_control_console.m2", + value = "tk_main_control_console.m2", + }, + { + fileId = "193552", + text = "tk_short_control_console.m2", + value = "tk_short_control_console.m2", + }, + { + fileId = "193553", + text = "tk_tall_control_console.m2", + value = "tk_tall_control_console.m2", + }, + }, + text = "control_console", + value = "control_console", }, { - fileId = "190475", - text = "brokengateside02.m2", - value = "brokengateside02.m2", + children = { + { + fileId = "193558", + text = "tk_exterior_crystals.m2", + value = "tk_exterior_crystals.m2", + }, + }, + text = "crystals", + value = "crystals", }, { - fileId = "190476", - text = "brokengatewall.m2", - value = "brokengatewall.m2", + children = { + { + fileId = "193564", + text = "tk_factory_door.m2", + value = "tk_factory_door.m2", + }, + { + fileId = "193565", + text = "tk_factory_door_vert.m2", + value = "tk_factory_door_vert.m2", + }, + }, + text = "factory_door", + value = "factory_door", }, { - fileId = "190477", - text = "brokengatewood01.m2", - value = "brokengatewood01.m2", + children = { + { + fileId = "193566", + text = "kael_explode_fx_left.m2", + value = "kael_explode_fx_left.m2", + }, + { + fileId = "193567", + text = "kael_explode_fx_right.m2", + value = "kael_explode_fx_right.m2", + }, + }, + text = "kael_statue", + value = "kael_statue", }, { - fileId = "190478", - text = "brokengatewood02.m2", - value = "brokengatewood02.m2", + children = { + { + fileId = "193569", + text = "tk_raid_door.m2", + value = "tk_raid_door.m2", + }, + }, + text = "raid_door", + value = "raid_door", }, { - fileId = "190479", - text = "brokengatewood03.m2", - value = "brokengatewood03.m2", + children = { + { + fileId = "193572", + text = "tk_raid_windows_tall.m2", + value = "tk_raid_windows_tall.m2", + }, + }, + text = "raid_windows", + value = "raid_windows", }, }, - text = "ruins", - value = "ruins", + text = "activedoodads", + value = "activedoodads", }, { children = { { - fileId = "190484", - text = "blastedlandsashtree02.m2", - value = "blastedlandsashtree02.m2", + children = { + { + fileId = "193573", + text = "tk_bridge_graphics.m2", + value = "tk_bridge_graphics.m2", + }, + { + fileId = "193574", + text = "tk_bridge_graphics2.m2", + value = "tk_bridge_graphics2.m2", + }, + }, + text = "bridges", + value = "bridges", }, { - fileId = "190485", - text = "blastedlandsashtree03.m2", - value = "blastedlandsashtree03.m2", + children = { + { + fileId = "193577", + text = "tk_container_01.m2", + value = "tk_container_01.m2", + }, + { + fileId = "193578", + text = "tk_container_02.m2", + value = "tk_container_02.m2", + }, + }, + text = "container", + value = "container", }, { - fileId = "190486", - text = "blastedlandsblastedtree01.m2", - value = "blastedlandsblastedtree01.m2", + children = { + { + fileId = "193585", + text = "tk_exterior_crystals_bottom.m2", + value = "tk_exterior_crystals_bottom.m2", + }, + { + fileId = "193586", + text = "tk_exterior_crystals_top.m2", + value = "tk_exterior_crystals_top.m2", + }, + { + fileId = "193587", + text = "tk_smallwing_arcane_crystals_bottom.m2", + value = "tk_smallwing_arcane_crystals_bottom.m2", + }, + { + fileId = "193588", + text = "tk_smallwing_arcane_crystals_top.m2", + value = "tk_smallwing_arcane_crystals_top.m2", + }, + { + fileId = "193589", + text = "tk_smallwing_crystals.m2", + value = "tk_smallwing_crystals.m2", + }, + { + fileId = "193590", + text = "tk_smallwing_crystals_bottom.m2", + value = "tk_smallwing_crystals_bottom.m2", + }, + { + fileId = "193591", + text = "tk_smallwing_crystals_top.m2", + value = "tk_smallwing_crystals_top.m2", + }, + { + fileId = "193592", + text = "tk_smallwing_factory_crystals_bottom.m2", + value = "tk_smallwing_factory_crystals_bottom.m2", + }, + { + fileId = "193593", + text = "tk_smallwing_factory_crystals_top.m2", + value = "tk_smallwing_factory_crystals_top.m2", + }, + }, + text = "crystals", + value = "crystals", }, { - fileId = "190487", - text = "blastedlandsblastedtree03.m2", - value = "blastedlandsblastedtree03.m2", + children = { + { + fileId = "193595", + text = "tk_energy_exhaust_01.m2", + value = "tk_energy_exhaust_01.m2", + }, + { + fileId = "193596", + text = "tk_forcefield_atrium_outline.m2", + value = "tk_forcefield_atrium_outline.m2", + }, + { + fileId = "193597", + text = "tk_forcefield_entry_outline.m2", + value = "tk_forcefield_entry_outline.m2", + }, + { + fileId = "193598", + text = "tk_forcefield_outline.m2", + value = "tk_forcefield_outline.m2", + }, + }, + text = "forcefields", + value = "forcefields", }, { - fileId = "190488", - text = "blastedlandsblastedtree04.m2", - value = "blastedlandsblastedtree04.m2", + children = { + { + fileId = "193605", + text = "tk_helix_floor_reflection.m2", + value = "tk_helix_floor_reflection.m2", + }, + { + fileId = "193606", + text = "tk_main_bridge_reflection.m2", + value = "tk_main_bridge_reflection.m2", + }, + { + fileId = "193607", + text = "tk_ramp_reflection.m2", + value = "tk_ramp_reflection.m2", + }, + }, + text = "prisonbridges", + value = "prisonbridges", }, { - fileId = "190489", - text = "blastedlandstree01.m2", - value = "blastedlandstree01.m2", + children = { + { + fileId = "193614", + text = "tk_prison_cell_dark.m2", + value = "tk_prison_cell_dark.m2", + }, + { + fileId = "193615", + text = "tk_prison_cell_illuminated.m2", + value = "tk_prison_cell_illuminated.m2", + }, + { + fileId = "193616", + text = "tk_prison_cell_toponly.m2", + value = "tk_prison_cell_toponly.m2", + }, + }, + text = "prisoncellglass", + value = "prisoncellglass", + }, + { + children = { + { + fileId = "193626", + text = "tk_lightning_ball.m2", + value = "tk_lightning_ball.m2", + }, + { + fileId = "193627", + text = "tk_lightning_diagonal.m2", + value = "tk_lightning_diagonal.m2", + }, + { + fileId = "193628", + text = "tk_lightning_diagonal_ball.m2", + value = "tk_lightning_diagonal_ball.m2", + }, + { + fileId = "193629", + text = "tk_lightning_fx_3_sides_room.m2", + value = "tk_lightning_fx_3_sides_room.m2", + }, + { + fileId = "193630", + text = "tk_lightning_fx_helix_room.m2", + value = "tk_lightning_fx_helix_room.m2", + }, + { + fileId = "193631", + text = "tk_lightning_fx_tri_room.m2", + value = "tk_lightning_fx_tri_room.m2", + }, + { + fileId = "193632", + text = "tk_lightning_horizontal.m2", + value = "tk_lightning_horizontal.m2", + }, + { + fileId = "193633", + text = "tk_prison_fx.m2", + value = "tk_prison_fx.m2", + }, + }, + text = "prisonfx", + value = "prisonfx", }, }, - text = "trees", - value = "trees", + text = "passivedoodads", + value = "passivedoodads", }, }, - text = "passivedoodads", - value = "passivedoodads", + text = "tempestkeep", + value = "tempestkeep", }, - }, - text = "theblastedlands", - value = "theblastedlands", - }, - { - children = { { children = { { children = { { - fileId = "190505", - text = "westfallchurch.m2", - value = "westfallchurch.m2", + fileId = "193634", + text = "be_arcanebomb.m2", + value = "be_arcanebomb.m2", }, - }, - text = "church", - value = "church", - }, - { - children = { { - fileId = "190508", - text = "westfallgrainsilo01.m2", - value = "westfallgrainsilo01.m2", + fileId = "193639", + text = "be_arcanebomb_orb.m2", + value = "be_arcanebomb_orb.m2", }, }, - text = "grainsilo", - value = "grainsilo", + text = "bomb", + value = "bomb", }, { children = { { - fileId = "190511", - text = "lighthousered.m2", - value = "lighthousered.m2", + fileId = "193645", + text = "terokkar_bonepile01.m2", + value = "terokkar_bonepile01.m2", }, { - fileId = "190515", - text = "westfalllighthouse.m2", - value = "westfalllighthouse.m2", + fileId = "193646", + text = "terokkar_bonepile02.m2", + value = "terokkar_bonepile02.m2", }, }, - text = "lighthouse", - value = "lighthouse", + text = "bonepile", + value = "bonepile", }, { children = { { - fileId = "190517", - text = "westfallshed.m2", - value = "westfallshed.m2", + fileId = "193648", + text = "chokeberrybush.m2", + value = "chokeberrybush.m2", + }, + { + fileId = "193650", + text = "terokkarbush01.m2", + value = "terokkarbush01.m2", }, }, - text = "shed", - value = "shed", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "190519", - text = "westfallwindmill.m2", - value = "westfallwindmill.m2", + fileId = "193653", + text = "terokkarcrystal01.m2", + value = "terokkarcrystal01.m2", + }, + { + fileId = "193654", + text = "terokkarcrystal02.m2", + value = "terokkarcrystal02.m2", + }, + { + fileId = "193655", + text = "terokkarcrystal03.m2", + value = "terokkarcrystal03.m2", }, }, - text = "windmill", - value = "windmill", + text = "crystal", + value = "crystal", }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { { children = { { - fileId = "190520", - text = "aquaduct_corner1.m2", - value = "aquaduct_corner1.m2", + fileId = "193659", + text = "terokkar_lightray01.m2", + value = "terokkar_lightray01.m2", }, { - fileId = "190521", - text = "aquaduct_corner2.m2", - value = "aquaduct_corner2.m2", + fileId = "193660", + text = "terokkar_lightray02.m2", + value = "terokkar_lightray02.m2", }, + }, + text = "lightray", + value = "lightray", + }, + { + children = { { - fileId = "190522", - text = "aquaduct_longpillar.m2", - value = "aquaduct_longpillar.m2", + fileId = "193663", + text = "terokkarpinecone.m2", + value = "terokkarpinecone.m2", }, + }, + text = "pinecone", + value = "pinecone", + }, + { + children = { { - fileId = "190523", - text = "aquaduct_pillar1.m2", - value = "aquaduct_pillar1.m2", + fileId = "193666", + text = "terokkar_floatingsmall01.m2", + value = "terokkar_floatingsmall01.m2", }, { - fileId = "190524", - text = "aquaduct_pillar2.m2", - value = "aquaduct_pillar2.m2", + fileId = "193667", + text = "terokkar_floatingsmall02.m2", + value = "terokkar_floatingsmall02.m2", }, { - fileId = "190525", - text = "aquaduct_pillar3.m2", - value = "aquaduct_pillar3.m2", + fileId = "193668", + text = "terokkar_overhangrock_large_01.m2", + value = "terokkar_overhangrock_large_01.m2", }, { - fileId = "190526", - text = "aquaduct_short.m2", - value = "aquaduct_short.m2", + fileId = "193669", + text = "terokkar_overhangrock_large_02.m2", + value = "terokkar_overhangrock_large_02.m2", }, { - fileId = "190527", - text = "aquaduct_straight.m2", - value = "aquaduct_straight.m2", + fileId = "193670", + text = "terokkar_overhangrock_small_01.m2", + value = "terokkar_overhangrock_small_01.m2", }, { - fileId = "190528", - text = "aquaduct_straight6.m2", - value = "aquaduct_straight6.m2", + fileId = "193671", + text = "terokkar_overhangrock_small_02.m2", + value = "terokkar_overhangrock_small_02.m2", }, { - fileId = "190529", - text = "aquaduct_xsupport.m2", - value = "aquaduct_xsupport.m2", + fileId = "193672", + text = "terokkar_overhangrock_small_03.m2", + value = "terokkar_overhangrock_small_03.m2", }, }, - text = "aquaduct", - value = "aquaduct", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "190535", - text = "westfallbarrel01.m2", - value = "westfallbarrel01.m2", + fileId = "193674", + text = "terokkar_auch_ruin01.m2", + value = "terokkar_auch_ruin01.m2", }, - }, - text = "barrel", - value = "barrel", - }, - { - children = { { - fileId = "190536", - text = "brokencart.m2", - value = "brokencart.m2", + fileId = "193675", + text = "terokkar_auch_ruin02.m2", + value = "terokkar_auch_ruin02.m2", }, - }, - text = "brokencart", - value = "brokencart", - }, - { - children = { { - fileId = "190537", - text = "butterchurner.m2", - value = "butterchurner.m2", + fileId = "193676", + text = "terokkar_auch_ruin03.m2", + value = "terokkar_auch_ruin03.m2", }, - }, - text = "butterchurner", - value = "butterchurner", - }, - { - children = { { - fileId = "190541", - text = "hangingcage01.m2", - value = "hangingcage01.m2", + fileId = "193677", + text = "terokkar_auch_ruin04.m2", + value = "terokkar_auch_ruin04.m2", + }, + { + fileId = "193678", + text = "terokkar_auch_ruin05.m2", + value = "terokkar_auch_ruin05.m2", + }, + { + fileId = "193679", + text = "terokkar_auch_ruin06.m2", + value = "terokkar_auch_ruin06.m2", + }, + { + fileId = "193680", + text = "terokkar_auch_ruin07.m2", + value = "terokkar_auch_ruin07.m2", + }, + { + fileId = "193681", + text = "terokkar_auch_ruin08.m2", + value = "terokkar_auch_ruin08.m2", }, { - fileId = "190542", - text = "hangingcage02.m2", - value = "hangingcage02.m2", + fileId = "193682", + text = "terokkar_auch_ruin09.m2", + value = "terokkar_auch_ruin09.m2", }, - }, - text = "cages", - value = "cages", - }, - { - children = { { - fileId = "190543", - text = "westfallcrate.m2", - value = "westfallcrate.m2", + fileId = "193683", + text = "terokkar_auch_ruin10.m2", + value = "terokkar_auch_ruin10.m2", }, }, - text = "crate", - value = "crate", + text = "ruin", + value = "ruin", }, { children = { { - fileId = "190545", - text = "deadcow.m2", - value = "deadcow.m2", + fileId = "193686", + text = "terokkar_boneshrine_arch01.m2", + value = "terokkar_boneshrine_arch01.m2", }, - }, - text = "deadcow", - value = "deadcow", - }, - { - children = { { - fileId = "190546", - text = "deadmule.m2", - value = "deadmule.m2", + fileId = "193687", + text = "terokkar_boneshrine_arch02.m2", + value = "terokkar_boneshrine_arch02.m2", }, }, - text = "deadmule", - value = "deadmule", + text = "shrine", + value = "shrine", }, { children = { { - fileId = "190548", - text = "deadseamonster.m2", - value = "deadseamonster.m2", + fileId = "193688", + text = "terokkar_signpost_01.m2", + value = "terokkar_signpost_01.m2", }, { - fileId = "190549", - text = "seamonsterchunk.m2", - value = "seamonsterchunk.m2", + fileId = "193689", + text = "terokkar_signpost_sign.m2", + value = "terokkar_signpost_sign.m2", }, }, - text = "deadseamonster", - value = "deadseamonster", + text = "signposts", + value = "signposts", }, { children = { { - fileId = "190564", - text = "westfallberrybush.m2", - value = "westfallberrybush.m2", + fileId = "193691", + text = "terokkarfallentree.m2", + value = "terokkarfallentree.m2", }, { - fileId = "190566", - text = "westfallbush01.m2", - value = "westfallbush01.m2", + fileId = "193692", + text = "terokkartreelarge.m2", + value = "terokkartreelarge.m2", }, { - fileId = "190567", - text = "westfallcabbage.m2", - value = "westfallcabbage.m2", + fileId = "193693", + text = "terokkartreelargepinecones.m2", + value = "terokkartreelargepinecones.m2", }, { - fileId = "190568", - text = "westfallcatails.m2", - value = "westfallcatails.m2", + fileId = "193694", + text = "terokkartreemedium.m2", + value = "terokkartreemedium.m2", }, { - fileId = "190571", - text = "westfallcornfield.m2", - value = "westfallcornfield.m2", + fileId = "193695", + text = "terokkartreemediumpinecones.m2", + value = "terokkartreemediumpinecones.m2", }, { - fileId = "190572", - text = "westfallcotton.m2", - value = "westfallcotton.m2", + fileId = "193696", + text = "terokkartreenoleaves01.m2", + value = "terokkartreenoleaves01.m2", }, { - fileId = "190573", - text = "westfalldandilion.m2", - value = "westfalldandilion.m2", + fileId = "193697", + text = "terokkartreenoleaves02.m2", + value = "terokkartreenoleaves02.m2", }, { - fileId = "190574", - text = "westfalldriftwood.m2", - value = "westfalldriftwood.m2", + fileId = "193698", + text = "terokkartreesapling.m2", + value = "terokkartreesapling.m2", }, { - fileId = "190576", - text = "westfallmandrake.m2", - value = "westfallmandrake.m2", + fileId = "193699", + text = "terokkartreesmall.m2", + value = "terokkartreesmall.m2", }, { - fileId = "190577", - text = "westfallreeds01.m2", - value = "westfallreeds01.m2", + fileId = "193700", + text = "terokkartreestump.m2", + value = "terokkartreestump.m2", }, { - fileId = "190578", - text = "westfalltobbaco.m2", - value = "westfalltobbaco.m2", + fileId = "193701", + text = "terokkartreestump02.m2", + value = "terokkartreestump02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "193710", + text = "terokkar_post_01.m2", + value = "terokkar_post_01.m2", }, { - fileId = "190579", - text = "westfallwheat01.m2", - value = "westfallwheat01.m2", + fileId = "193711", + text = "terokkar_post_ruin_01.m2", + value = "terokkar_post_ruin_01.m2", }, { - fileId = "190580", - text = "westfallwheat02.m2", - value = "westfallwheat02.m2", + fileId = "193712", + text = "terokkar_wall_01.m2", + value = "terokkar_wall_01.m2", }, { - fileId = "190581", - text = "westfallwheat03.m2", - value = "westfallwheat03.m2", + fileId = "193713", + text = "terokkar_wall_ruin_01.m2", + value = "terokkar_wall_ruin_01.m2", }, }, - text = "detail", - value = "detail", + text = "walls", + value = "walls", }, { children = { { - fileId = "190586", - text = "westfallbed01.m2", - value = "westfallbed01.m2", + fileId = "193719", + text = "terokkarweb01.m2", + value = "terokkarweb01.m2", }, - }, - text = "furniture", - value = "furniture", - }, - { - children = { { - fileId = "190587", - text = "grindstone.m2", - value = "grindstone.m2", + fileId = "193720", + text = "terokkarweb02.m2", + value = "terokkarweb02.m2", + }, + { + fileId = "193721", + text = "terokkarweb03.m2", + value = "terokkarweb03.m2", + }, + { + fileId = "193722", + text = "terokkarweb04.m2", + value = "terokkarweb04.m2", }, }, - text = "grindstone", - value = "grindstone", + text = "webs", + value = "webs", }, + }, + text = "terokkar", + value = "terokkar", + }, + { + children = { { children = { { - fileId = "190592", - text = "harempillow01.m2", - value = "harempillow01.m2", + children = { + { + fileId = "193727", + text = "exodar_long_banner.m2", + value = "exodar_long_banner.m2", + }, + { + fileId = "193728", + text = "exodar_long_banner_anim.m2", + value = "exodar_long_banner_anim.m2", + }, + { + fileId = "193729", + text = "exodar_medium_banner.m2", + value = "exodar_medium_banner.m2", + }, + { + fileId = "193730", + text = "exodar_medium_banner_anim.m2", + value = "exodar_medium_banner_anim.m2", + }, + { + fileId = "193731", + text = "exodar_medium_hang_banner.m2", + value = "exodar_medium_hang_banner.m2", + }, + { + fileId = "193732", + text = "exodar_medium_hang_banner_anim.m2", + value = "exodar_medium_hang_banner_anim.m2", + }, + { + fileId = "193733", + text = "exodar_medium_hang_banner_anim_type2.m2", + value = "exodar_medium_hang_banner_anim_type2.m2", + }, + { + fileId = "193734", + text = "exodar_thin2_hang_banner.m2", + value = "exodar_thin2_hang_banner.m2", + }, + { + fileId = "193735", + text = "exodar_thin_banner.m2", + value = "exodar_thin_banner.m2", + }, + { + fileId = "193736", + text = "exodar_thin_banner_anim.m2", + value = "exodar_thin_banner_anim.m2", + }, + { + fileId = "193737", + text = "exodar_thin_hang_banner.m2", + value = "exodar_thin_hang_banner.m2", + }, + { + fileId = "193738", + text = "exodar_thin_hang_banner_anim.m2", + value = "exodar_thin_hang_banner_anim.m2", + }, + { + fileId = "193739", + text = "exodar_thin_hang_banner_animtype2.m2", + value = "exodar_thin_hang_banner_animtype2.m2", + }, + { + fileId = "193740", + text = "exodar_thin_hang_banner_animtype3.m2", + value = "exodar_thin_hang_banner_animtype3.m2", + }, + { + fileId = "193741", + text = "exodar_tri_banner_blue.m2", + value = "exodar_tri_banner_blue.m2", + }, + { + fileId = "193742", + text = "exodar_tri_banner_red.m2", + value = "exodar_tri_banner_red.m2", + }, + { + fileId = "193743", + text = "exodar_tri_banner_s_blue.m2", + value = "exodar_tri_banner_s_blue.m2", + }, + { + fileId = "193744", + text = "exodar_tri_banner_s_red.m2", + value = "exodar_tri_banner_s_red.m2", + }, + { + fileId = "193745", + text = "exodar_wide_banner.m2", + value = "exodar_wide_banner.m2", + }, + { + fileId = "193746", + text = "exodar_wide_banner_anim.m2", + value = "exodar_wide_banner_anim.m2", + }, + { + fileId = "193747", + text = "exodar_wide_hang_banner.m2", + value = "exodar_wide_hang_banner.m2", + }, + { + fileId = "193748", + text = "exodar_wide_hang_banner_anim.m2", + value = "exodar_wide_hang_banner_anim.m2", + }, + { + fileId = "193749", + text = "exodar_wide_hang_banner_anim_type2.m2", + value = "exodar_wide_hang_banner_anim_type2.m2", + }, + { + fileId = "193750", + text = "exodar_wide_hang_banner_anim_type3.m2", + value = "exodar_wide_hang_banner_anim_type3.m2", + }, + }, + text = "clothobjects", + value = "clothobjects", + }, + { + children = { + { + fileId = "193754", + text = "crystal_corrupted.m2", + value = "crystal_corrupted.m2", + }, + { + fileId = "193756", + text = "narru_crystal_pot.m2", + value = "narru_crystal_pot.m2", + }, + { + fileId = "193757", + text = "narru_crystal_pure.m2", + value = "narru_crystal_pure.m2", + }, + }, + text = "crystal", + value = "crystal", + }, + { + children = { + { + fileId = "193760", + text = "exodar_center_naaru_crystals.m2", + value = "exodar_center_naaru_crystals.m2", + }, + { + fileId = "193761", + text = "exodar_crystal_chandelier.m2", + value = "exodar_crystal_chandelier.m2", + }, + { + fileId = "193762", + text = "exodar_crystal_large.m2", + value = "exodar_crystal_large.m2", + }, + { + fileId = "193763", + text = "exodar_crystal_large_yelllow.m2", + value = "exodar_crystal_large_yelllow.m2", + }, + { + fileId = "193764", + text = "exodar_crystal_thin.m2", + value = "exodar_crystal_thin.m2", + }, + { + fileId = "193765", + text = "exodar_crystal_thin_type2.m2", + value = "exodar_crystal_thin_type2.m2", + }, + { + fileId = "193766", + text = "exodar_crystal_thin_yellow.m2", + value = "exodar_crystal_thin_yellow.m2", + }, + { + fileId = "193767", + text = "exodar_crystal_yellow_bunch.m2", + value = "exodar_crystal_yellow_bunch.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "193780", + text = "exodar_sconce.m2", + value = "exodar_sconce.m2", + }, + { + fileId = "193781", + text = "exodar_sconce_blue.m2", + value = "exodar_sconce_blue.m2", + }, + { + fileId = "193782", + text = "exodar_sconce_magenta.m2", + value = "exodar_sconce_magenta.m2", + }, + }, + text = "light_sconces", + value = "light_sconces", + }, + { + children = { + { + fileId = "193789", + text = "exodar_narucore_fx.m2", + value = "exodar_narucore_fx.m2", + }, + }, + text = "naaru_core", + value = "naaru_core", + }, + { + children = { + { + fileId = "193800", + text = "exodar_paladin_shrine_energyfx.m2", + value = "exodar_paladin_shrine_energyfx.m2", + }, + }, + text = "paladin_energy_fx", + value = "paladin_energy_fx", + }, + { + children = { + { + fileId = "193805", + text = "draenei_shamen_stones_t1.m2", + value = "draenei_shamen_stones_t1.m2", + }, + { + fileId = "193806", + text = "draenei_shamen_stones_t1_broken.m2", + value = "draenei_shamen_stones_t1_broken.m2", + }, + { + fileId = "193807", + text = "draenei_shamen_stones_t2.m2", + value = "draenei_shamen_stones_t2.m2", + }, + { + fileId = "193808", + text = "draenei_shamen_stones_yellow_t1.m2", + value = "draenei_shamen_stones_yellow_t1.m2", + }, + { + fileId = "193809", + text = "draenei_shamen_stones_yellow_t1_broken.m2", + value = "draenei_shamen_stones_yellow_t1_broken.m2", + }, + { + fileId = "193810", + text = "draenei_shamen_stones_yellow_t2.m2", + value = "draenei_shamen_stones_yellow_t2.m2", + }, + }, + text = "shamen_stones", + value = "shamen_stones", + }, + { + children = { + { + fileId = "193823", + text = "exodar_cheese_sign.m2", + value = "exodar_cheese_sign.m2", + }, + { + fileId = "193824", + text = "exodar_herbalism_sign.m2", + value = "exodar_herbalism_sign.m2", + }, + { + fileId = "193825", + text = "exodar_hunter_sign.m2", + value = "exodar_hunter_sign.m2", + }, + { + fileId = "193826", + text = "exodar_inn_sign.m2", + value = "exodar_inn_sign.m2", + }, + { + fileId = "193828", + text = "exodar_smith_sign.m2", + value = "exodar_smith_sign.m2", + }, + { + fileId = "193829", + text = "exodar_warrior_sign.m2", + value = "exodar_warrior_sign.m2", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "193841", + text = "exodar_sky_portal.m2", + value = "exodar_sky_portal.m2", + }, + }, + text = "sky_portal", + value = "sky_portal", }, }, - text = "harempillow01", - value = "harempillow01", + text = "passivedoodads", + value = "passivedoodads", }, + }, + text = "theexodar", + value = "theexodar", + }, + { + children = { { children = { { - fileId = "190595", - text = "harempillow02.m2", - value = "harempillow02.m2", + fileId = "193845", + text = "zangargrass01.m2", + value = "zangargrass01.m2", }, - }, - text = "harempillow02", - value = "harempillow02", - }, - { - children = { { - fileId = "190596", - text = "harness.m2", - value = "harness.m2", + fileId = "193846", + text = "zangargrass01_husk.m2", + value = "zangargrass01_husk.m2", }, }, - text = "harness", - value = "harness", + text = "bush", + value = "bush", }, { children = { { - fileId = "190597", - text = "westfallhaystack01.m2", - value = "westfallhaystack01.m2", + fileId = "193856", + text = "zangarmarsh_floatingspore01.m2", + value = "zangarmarsh_floatingspore01.m2", }, { - fileId = "190598", - text = "westfallhaystack02.m2", - value = "westfallhaystack02.m2", + fileId = "193857", + text = "zangarmarsh_floatingspore02.m2", + value = "zangarmarsh_floatingspore02.m2", }, - }, - text = "haystack", - value = "haystack", - }, - { - children = { { - fileId = "190599", - text = "westfallhaywagon.m2", - value = "westfallhaywagon.m2", + fileId = "193858", + text = "zm_big_spore_01.m2", + value = "zm_big_spore_01.m2", }, - }, - text = "haywagon", - value = "haywagon", - }, - { - children = { { - fileId = "190608", - text = "lampdeadmines.m2", - value = "lampdeadmines.m2", + fileId = "193859", + text = "zm_big_spore_02.m2", + value = "zm_big_spore_02.m2", }, - }, - text = "lampdeadmines", - value = "lampdeadmines", - }, - { - children = { { - fileId = "190612", - text = "westfalllamppost.m2", - value = "westfalllamppost.m2", + fileId = "193860", + text = "zm_big_spore_03.m2", + value = "zm_big_spore_03.m2", }, { - fileId = "190613", - text = "westfalllamppost01.m2", - value = "westfalllamppost01.m2", + fileId = "193861", + text = "zm_big_spore_anim_01.m2", + value = "zm_big_spore_anim_01.m2", }, { - fileId = "190614", - text = "westfalllamppost02.m2", - value = "westfalllamppost02.m2", + fileId = "193862", + text = "zm_big_spore_anim_02.m2", + value = "zm_big_spore_anim_02.m2", }, - }, - text = "lamppost", - value = "lamppost", - }, - { - children = { { - fileId = "190615", - text = "lighthouseeffect.m2", - value = "lighthouseeffect.m2", + fileId = "193863", + text = "zm_big_spore_anim_03.m2", + value = "zm_big_spore_anim_03.m2", }, }, - text = "lighthousebeam", - value = "lighthousebeam", + text = "floatingspore", + value = "floatingspore", }, { children = { { - fileId = "190617", - text = "outhouse.m2", - value = "outhouse.m2", + fileId = "193865", + text = "zangarfogring01.m2", + value = "zangarfogring01.m2", }, }, - text = "outhouse", - value = "outhouse", + text = "fog", + value = "fog", }, { children = { { - fileId = "190619", - text = "plow.m2", - value = "plow.m2", + fileId = "193876", + text = "zangarfountain01.m2", + value = "zangarfountain01.m2", }, }, - text = "plow", - value = "plow", + text = "fountain", + value = "fountain", }, { children = { { - fileId = "190620", - text = "rakecart.m2", - value = "rakecart.m2", + fileId = "193878", + text = "zangarlamppost01.m2", + value = "zangarlamppost01.m2", }, }, - text = "rakecart", - value = "rakecart", + text = "lamp", + value = "lamp", }, { children = { { - fileId = "190623", - text = "westfallboulder01.m2", - value = "westfallboulder01.m2", + fileId = "193882", + text = "zangarlilypad01.m2", + value = "zangarlilypad01.m2", }, { - fileId = "190624", - text = "westfallboulder02.m2", - value = "westfallboulder02.m2", + fileId = "193886", + text = "zangarlilypad02.m2", + value = "zangarlilypad02.m2", }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { { - fileId = "190626", - text = "rugrack01.m2", - value = "rugrack01.m2", + fileId = "193887", + text = "zangarlilypad03.m2", + value = "zangarlilypad03.m2", }, { - fileId = "190627", - text = "rugrack02.m2", - value = "rugrack02.m2", + fileId = "193888", + text = "zangarlilypad04.m2", + value = "zangarlilypad04.m2", + }, + { + fileId = "193889", + text = "zangarlilypad05.m2", + value = "zangarlilypad05.m2", + }, + { + fileId = "193890", + text = "zangarlilypad06.m2", + value = "zangarlilypad06.m2", }, }, - text = "rugracks", - value = "rugracks", + text = "lilypads", + value = "lilypads", }, { children = { { - fileId = "190629", - text = "westfallscarecrow.m2", - value = "westfallscarecrow.m2", + fileId = "193892", + text = "zangarlog01.m2", + value = "zangarlog01.m2", + }, + { + fileId = "193894", + text = "zangarlog02.m2", + value = "zangarlog02.m2", }, }, - text = "scarecrow", - value = "scarecrow", + text = "logs", + value = "logs", }, { children = { { - fileId = "190632", - text = "sunkenanchor.m2", - value = "sunkenanchor.m2", + fileId = "193897", + text = "lo_well_01.m2", + value = "lo_well_01.m2", }, }, - text = "sunkenanchor", - value = "sunkenanchor", + text = "lostones", + value = "lostones", }, { children = { { - fileId = "190633", - text = "tombstone01.m2", - value = "tombstone01.m2", + fileId = "193909", + text = "zangarfallenshroom01.m2", + value = "zangarfallenshroom01.m2", }, { - fileId = "190634", - text = "tombstone02.m2", - value = "tombstone02.m2", + fileId = "193910", + text = "zangarfallenshroom02.m2", + value = "zangarfallenshroom02.m2", }, { - fileId = "190635", - text = "tombstone03.m2", - value = "tombstone03.m2", + fileId = "193911", + text = "zangarmushroom01.m2", + value = "zangarmushroom01.m2", }, { - fileId = "190636", - text = "tombstone04.m2", - value = "tombstone04.m2", + fileId = "193912", + text = "zangarmushroom02.m2", + value = "zangarmushroom02.m2", }, - }, - text = "tombstones", - value = "tombstones", - }, - { - children = { { - fileId = "190638", - text = "westfalltree01.m2", - value = "westfalltree01.m2", + fileId = "193914", + text = "zangarmushroom03.m2", + value = "zangarmushroom03.m2", }, { - fileId = "190639", - text = "westfalltree02.m2", - value = "westfalltree02.m2", + fileId = "193915", + text = "zangarmushroom04.m2", + value = "zangarmushroom04.m2", }, { - fileId = "190640", - text = "westfalltree03.m2", - value = "westfalltree03.m2", + fileId = "193917", + text = "zangarmushroom05.m2", + value = "zangarmushroom05.m2", }, { - fileId = "190641", - text = "westfalltree04.m2", - value = "westfalltree04.m2", + fileId = "193918", + text = "zangarmushroom06_blue.m2", + value = "zangarmushroom06_blue.m2", }, { - fileId = "190642", - text = "westfalltreecanopy01.m2", - value = "westfalltreecanopy01.m2", + fileId = "193919", + text = "zangarmushroom06_green.m2", + value = "zangarmushroom06_green.m2", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "190647", - text = "westfalltreestump01.m2", - value = "westfalltreestump01.m2", + fileId = "193920", + text = "zangarmushroom06_orange.m2", + value = "zangarmushroom06_orange.m2", }, { - fileId = "190648", - text = "westfalltreestump02.m2", - value = "westfalltreestump02.m2", + fileId = "193921", + text = "zangarmushroom07_blue.m2", + value = "zangarmushroom07_blue.m2", }, - }, - text = "treestumps", - value = "treestumps", - }, - { - children = { { - fileId = "190650", - text = "bowl.m2", - value = "bowl.m2", + fileId = "193922", + text = "zangarmushroom07_green.m2", + value = "zangarmushroom07_green.m2", }, { - fileId = "190653", - text = "plate.m2", - value = "plate.m2", + fileId = "193923", + text = "zangarmushroom07_orange.m2", + value = "zangarmushroom07_orange.m2", }, { - fileId = "190654", - text = "stein.m2", - value = "stein.m2", + fileId = "193924", + text = "zangarmushroomblue.m2", + value = "zangarmushroomblue.m2", }, - }, - text = "utensils", - value = "utensils", - }, - { - children = { { - fileId = "190658", - text = "westfallchair.m2", - value = "westfallchair.m2", + fileId = "193925", + text = "zangarmushroomgreen.m2", + value = "zangarmushroomgreen.m2", }, - }, - text = "westfallchair", - value = "westfallchair", - }, - { - children = { { - fileId = "190659", - text = "westfallfence.m2", - value = "westfallfence.m2", + fileId = "193926", + text = "zangarmushroompurple.m2", + value = "zangarmushroompurple.m2", }, { - fileId = "190660", - text = "westfallfenceend.m2", - value = "westfallfenceend.m2", + fileId = "193932", + text = "zangarmushroomshelf01.m2", + value = "zangarmushroomshelf01.m2", }, { - fileId = "190661", - text = "westfallfencepost.m2", - value = "westfallfencepost.m2", + fileId = "193933", + text = "zangarmushroomshelf02.m2", + value = "zangarmushroomshelf02.m2", }, - }, - text = "westfallfence", - value = "westfallfence", - }, - { - children = { { - fileId = "190662", - text = "westfallfountain.m2", - value = "westfallfountain.m2", + fileId = "193934", + text = "zangarmushroomshelf03.m2", + value = "zangarmushroomshelf03.m2", }, - }, - text = "westfallfountain", - value = "westfallfountain", - }, - { - children = { { - fileId = "190666", - text = "westfallruins01.m2", - value = "westfallruins01.m2", + fileId = "193936", + text = "zangarmushroomtree05.m2", + value = "zangarmushroomtree05.m2", }, { - fileId = "190667", - text = "westfallruins02.m2", - value = "westfallruins02.m2", + fileId = "193937", + text = "zangarmushroomtree06.m2", + value = "zangarmushroomtree06.m2", }, { - fileId = "190668", - text = "westfallruins03.m2", - value = "westfallruins03.m2", + fileId = "193938", + text = "zangarmushroomtree07.m2", + value = "zangarmushroomtree07.m2", }, { - fileId = "190669", - text = "westfallruins04.m2", - value = "westfallruins04.m2", + fileId = "193940", + text = "zangarmushroomtree08dead.m2", + value = "zangarmushroomtree08dead.m2", }, - }, - text = "westfallruins", - value = "westfallruins", - }, - { - children = { { - fileId = "190671", - text = "westfallskeleton.m2", - value = "westfallskeleton.m2", + fileId = "193942", + text = "zangarmushroomtree09dying.m2", + value = "zangarmushroomtree09dying.m2", }, - }, - text = "westfallskeleton", - value = "westfallskeleton", - }, - { - children = { { - fileId = "190673", - text = "westfalltable.m2", - value = "westfalltable.m2", + fileId = "193944", + text = "zangarmushroomtreesmall01.m2", + value = "zangarmushroomtreesmall01.m2", }, - }, - text = "westfalltable", - value = "westfalltable", - }, - { - children = { { - fileId = "190675", - text = "westfallvineyard01.m2", - value = "westfallvineyard01.m2", + fileId = "193945", + text = "zangarmushroomtreesmall02.m2", + value = "zangarmushroomtreesmall02.m2", }, - }, - text = "westfallvineyards", - value = "westfallvineyards", - }, - { - children = { { - fileId = "190677", - text = "wreckedrowboat.m2", - value = "wreckedrowboat.m2", + fileId = "193946", + text = "zangarmushroomtreesmall03.m2", + value = "zangarmushroomtreesmall03.m2", }, - }, - text = "wreckedrowboat", - value = "wreckedrowboat", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "westfall", - value = "westfall", - }, - { - children = { - { - children = { - { - children = { { - fileId = "190678", - text = "collisionwallpendoor01.m2", - value = "collisionwallpendoor01.m2", + fileId = "193947", + text = "zangarmushroomwater01.m2", + value = "zangarmushroomwater01.m2", }, { - fileId = "190680", - text = "zulgurubforcefield.m2", - value = "zulgurubforcefield.m2", + fileId = "193948", + text = "zangarmushroomwater02.m2", + value = "zangarmushroomwater02.m2", }, { - fileId = "190681", - text = "zulgurubpendoor.m2", - value = "zulgurubpendoor.m2", + fileId = "193949", + text = "zangarmushroomwater03.m2", + value = "zangarmushroomwater03.m2", }, - }, - text = "doors", - value = "doors", - }, - { - children = { { - fileId = "190683", - text = "zulgurubmaindoor.m2", - value = "zulgurubmaindoor.m2", + fileId = "193950", + text = "zangartreesmallblue.m2", + value = "zangartreesmallblue.m2", + }, + { + fileId = "193951", + text = "zangartreesmallblue01.m2", + value = "zangartreesmallblue01.m2", + }, + { + fileId = "193952", + text = "zangartreesmallgreen.m2", + value = "zangartreesmallgreen.m2", + }, + { + fileId = "193953", + text = "zangartreesmallgreen01.m2", + value = "zangartreesmallgreen01.m2", + }, + { + fileId = "193954", + text = "zangartreesmallpurple.m2", + value = "zangartreesmallpurple.m2", + }, + { + fileId = "193955", + text = "zangartreesmallpurple01.m2", + value = "zangartreesmallpurple01.m2", }, }, - text = "maindoor", - value = "maindoor", + text = "mushroom", + value = "mushroom", }, { children = { { - fileId = "190685", - text = "nastyspideregg.m2", - value = "nastyspideregg.m2", + fileId = "193956", + text = "mushroombase_beacon.m2", + value = "mushroombase_beacon.m2", }, - }, - text = "spiderarea", - value = "spiderarea", - }, - { - children = { { - fileId = "190688", - text = "voodoopile01.m2", - value = "voodoopile01.m2", + fileId = "193957", + text = "mushroombase_bottom.m2", + value = "mushroombase_bottom.m2", }, - }, - text = "voodoopile", - value = "voodoopile", - }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { - { - children = { { - fileId = "190690", - text = "trollbattotem.m2", - value = "trollbattotem.m2", + fileId = "193958", + text = "mushroombase_elevator.m2", + value = "mushroombase_elevator.m2", }, }, - text = "battotem", - value = "battotem", + text = "mushroombase", + value = "mushroombase", }, { children = { { - fileId = "190693", - text = "heartofhakkar.m2", - value = "heartofhakkar.m2", + fileId = "193962", + text = "zangarbushwithered01.m2", + value = "zangarbushwithered01.m2", }, - }, - text = "heart", - value = "heart", - }, - { - children = { { - fileId = "190694", - text = "zulgurublightningmadness.m2", - value = "zulgurublightningmadness.m2", + fileId = "193963", + text = "zangarbushwithered02.m2", + value = "zangarbushwithered02.m2", }, - }, - text = "lightning", - value = "lightning", - }, - { - children = { { - fileId = "190695", - text = "zulgurubruins04.m2", - value = "zulgurubruins04.m2", + fileId = "193970", + text = "zangarmushroomtree01.m2", + value = "zangarmushroomtree01.m2", }, { - fileId = "190696", - text = "zulgurubruins05.m2", - value = "zulgurubruins05.m2", + fileId = "193971", + text = "zangarmushroomtree02.m2", + value = "zangarmushroomtree02.m2", }, { - fileId = "190697", - text = "zulgurubruins06.m2", - value = "zulgurubruins06.m2", + fileId = "193972", + text = "zangarmushroomtree03.m2", + value = "zangarmushroomtree03.m2", }, { - fileId = "190698", - text = "zulgurubruins07.m2", - value = "zulgurubruins07.m2", + fileId = "193973", + text = "zangarmushroomtree04.m2", + value = "zangarmushroomtree04.m2", }, - }, - text = "ruins", - value = "ruins", - }, - { - children = { { - fileId = "190699", - text = "nastyspiderweb01.m2", - value = "nastyspiderweb01.m2", + fileId = "193978", + text = "zangartreeblue01.m2", + value = "zangartreeblue01.m2", }, { - fileId = "190700", - text = "nastyspiderweb02.m2", - value = "nastyspiderweb02.m2", + fileId = "193979", + text = "zangartreeblue02.m2", + value = "zangartreeblue02.m2", }, { - fileId = "190701", - text = "nastyspiderweb03.m2", - value = "nastyspiderweb03.m2", + fileId = "193980", + text = "zangartreeblue03.m2", + value = "zangartreeblue03.m2", }, { - fileId = "190706", - text = "spiderpod01.m2", - value = "spiderpod01.m2", + fileId = "193981", + text = "zangartreeblue04.m2", + value = "zangartreeblue04.m2", }, { - fileId = "190707", - text = "spiderpod02.m2", - value = "spiderpod02.m2", + fileId = "193982", + text = "zangartreegreen01.m2", + value = "zangartreegreen01.m2", }, - }, - text = "spiderarea", - value = "spiderarea", - }, - { - children = { { - fileId = "190711", - text = "zulgurubtree01.m2", - value = "zulgurubtree01.m2", + fileId = "193983", + text = "zangartreegreen02.m2", + value = "zangartreegreen02.m2", }, { - fileId = "190712", - text = "zulgurubtree02.m2", - value = "zulgurubtree02.m2", + fileId = "193984", + text = "zangartreegreen03.m2", + value = "zangartreegreen03.m2", }, { - fileId = "190713", - text = "zulgurubtree03.m2", - value = "zulgurubtree03.m2", + fileId = "193985", + text = "zangartreegreen04.m2", + value = "zangartreegreen04.m2", }, { - fileId = "190714", - text = "zulgurubtree04.m2", - value = "zulgurubtree04.m2", + fileId = "193986", + text = "zangartreepurple01.m2", + value = "zangartreepurple01.m2", }, { - fileId = "190715", - text = "zulgurubtree05.m2", - value = "zulgurubtree05.m2", + fileId = "193987", + text = "zangartreepurple02.m2", + value = "zangartreepurple02.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "zulgurub", - value = "zulgurub", - }, - }, - text = "azeroth", - value = "azeroth", - }, - { - children = { - { - children = { - { - fileId = "190716", - text = "bat01.m2", - value = "bat01.m2", - }, - { - fileId = "190717", - text = "bat02.m2", - value = "bat02.m2", - }, - }, - text = "bats", - value = "bats", - }, - { - children = { - { - fileId = "190719", - text = "bird01.m2", - value = "bird01.m2", - }, - { - fileId = "190720", - text = "bird02.m2", - value = "bird02.m2", - }, - { - fileId = "190723", - text = "wasp01.m2", - value = "wasp01.m2", - }, - { - fileId = "190724", - text = "wasp02.m2", - value = "wasp02.m2", - }, - }, - text = "birds", - value = "birds", - }, - { - children = { - { - fileId = "190725", - text = "butterflyorange01.m2", - value = "butterflyorange01.m2", - }, - { - fileId = "190726", - text = "butterflypurple01.m2", - value = "butterflypurple01.m2", - }, - { - fileId = "190727", - text = "butterflywhite01.m2", - value = "butterflywhite01.m2", - }, - }, - text = "butterflies", - value = "butterflies", - }, - { - children = { - { - fileId = "190731", - text = "fireflies01.m2", - value = "fireflies01.m2", - }, - }, - text = "fireflies", - value = "fireflies", - }, - { - children = { - { - fileId = "190733", - text = "fish01.m2", - value = "fish01.m2", - }, - }, - text = "fish", - value = "fish", - }, - { - children = { - { - fileId = "190739", - text = "flies01.m2", - value = "flies01.m2", - }, - }, - text = "flies", - value = "flies", - }, - }, - text = "critter", - value = "critter", - }, - { - children = { - { - fileId = "2198651", - text = "drkbus01.m2", - value = "drkbus01.m2", - }, - { - fileId = "2198569", - text = "drkbus02.m2", - value = "drkbus02.m2", - }, - { - fileId = "2198633", - text = "drkbus03.m2", - value = "drkbus03.m2", - }, - { - fileId = "2198552", - text = "drkbus04.m2", - value = "drkbus04.m2", - }, - { - fileId = "2198589", - text = "drkbus05.m2", - value = "drkbus05.m2", - }, - { - fileId = "2198528", - text = "drkbus06.m2", - value = "drkbus06.m2", - }, - { - fileId = "2199417", - text = "drkbus07.m2", - value = "drkbus07.m2", - }, - { - fileId = "2198572", - text = "drkgra01.m2", - value = "drkgra01.m2", - }, - { - fileId = "2198494", - text = "drkgra02.m2", - value = "drkgra02.m2", - }, - { - fileId = "2198594", - text = "drkgra03.m2", - value = "drkgra03.m2", - }, - { - fileId = "2198627", - text = "drkgra04.m2", - value = "drkgra04.m2", - }, - { - fileId = "2198545", - text = "drkgra05.m2", - value = "drkgra05.m2", - }, - { - fileId = "2198584", - text = "drkgra06.m2", - value = "drkgra06.m2", - }, - }, - text = "detail", - value = "detail", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "190755", - text = "emeralddreamcatcher01.m2", - value = "emeralddreamcatcher01.m2", - }, - { - fileId = "190756", - text = "emeralddreamcatcher02.m2", - value = "emeralddreamcatcher02.m2", - }, - { - fileId = "190757", - text = "emeralddreamcatcher03.m2", - value = "emeralddreamcatcher03.m2", - }, - { - fileId = "190758", - text = "emeralddreamcatcher04.m2", - value = "emeralddreamcatcher04.m2", - }, - }, - text = "dreamcatchers", - value = "dreamcatchers", - }, - { - children = { - { - fileId = "190760", - text = "emeralddreamgiant01.m2", - value = "emeralddreamgiant01.m2", - }, - }, - text = "emeralddreamgiant", - value = "emeralddreamgiant", - }, - { - children = { - { - fileId = "190763", - text = "dnrdreambellflower01.m2", - value = "dnrdreambellflower01.m2", - }, - { - fileId = "190764", - text = "dnrdreambellflower02.m2", - value = "dnrdreambellflower02.m2", - }, - { - fileId = "190765", - text = "dnrdreambellflower03.m2", - value = "dnrdreambellflower03.m2", - }, - { - fileId = "190766", - text = "dnrdreamdrippingflower01.m2", - value = "dnrdreamdrippingflower01.m2", - }, - { - fileId = "190767", - text = "dnrdreamdrippingflower02.m2", - value = "dnrdreamdrippingflower02.m2", - }, - { - fileId = "190768", - text = "dnrdreamdroopingflower01.m2", - value = "dnrdreamdroopingflower01.m2", - }, - { - fileId = "190769", - text = "dnrdreamdroopingflower02.m2", - value = "dnrdreamdroopingflower02.m2", - }, - { - fileId = "190770", - text = "dnrdreamorangeflower01.m2", - value = "dnrdreamorangeflower01.m2", - }, - { - fileId = "190771", - text = "dnrdreamorangeflower02.m2", - value = "dnrdreamorangeflower02.m2", - }, - { - fileId = "190772", - text = "dnrdreampurpleflower01.m2", - value = "dnrdreampurpleflower01.m2", - }, - { - fileId = "190773", - text = "dnrdreampurpleflower02.m2", - value = "dnrdreampurpleflower02.m2", - }, - { - fileId = "190774", - text = "dnrdreampurpleflower03.m2", - value = "dnrdreampurpleflower03.m2", - }, - { - fileId = "190775", - text = "dnrdreamspinningflower01.m2", - value = "dnrdreamspinningflower01.m2", - }, - }, - text = "flowers", - value = "flowers", - }, - { - children = { - { - fileId = "190793", - text = "emeralddreamfountaintree01.m2", - value = "emeralddreamfountaintree01.m2", - }, - { - fileId = "190794", - text = "emeralddreamfountaintree02.m2", - value = "emeralddreamfountaintree02.m2", - }, - { - fileId = "190795", - text = "emeralddreamfountaintree03.m2", - value = "emeralddreamfountaintree03.m2", + { + fileId = "193988", + text = "zangartreepurple03.m2", + value = "zangartreepurple03.m2", + }, + { + fileId = "193989", + text = "zangartreepurple04.m2", + value = "zangartreepurple04.m2", + }, + { + fileId = "193990", + text = "zangartreewithered01.m2", + value = "zangartreewithered01.m2", + }, + { + fileId = "193991", + text = "zangartreewithered02.m2", + value = "zangartreewithered02.m2", + }, + { + fileId = "193992", + text = "zangartreewithered03.m2", + value = "zangartreewithered03.m2", + }, + { + fileId = "193993", + text = "zangartreewithered04.m2", + value = "zangartreewithered04.m2", + }, + { + fileId = "193994", + text = "zangartreewithered05.m2", + value = "zangartreewithered05.m2", + }, + }, + text = "mushroomtrees", + value = "mushroomtrees", }, { - fileId = "190796", - text = "emeralddreamfountaintree04.m2", - value = "emeralddreamfountaintree04.m2", + children = { + { + fileId = "193995", + text = "zangarplantgroup01.m2", + value = "zangarplantgroup01.m2", + }, + { + fileId = "193996", + text = "zangarplantgroup02.m2", + value = "zangarplantgroup02.m2", + }, + { + fileId = "193997", + text = "zangarplantgroup03.m2", + value = "zangarplantgroup03.m2", + }, + { + fileId = "193998", + text = "zangarplantgroup04.m2", + value = "zangarplantgroup04.m2", + }, + { + fileId = "193999", + text = "zangarplantgroup05.m2", + value = "zangarplantgroup05.m2", + }, + }, + text = "plantgroups", + value = "plantgroups", }, { - fileId = "190797", - text = "emeralddreamfountaintree05.m2", - value = "emeralddreamfountaintree05.m2", + children = { + { + fileId = "194001", + text = "zm_bluepollen.m2", + value = "zm_bluepollen.m2", + }, + { + fileId = "194002", + text = "zm_orangepollen.m2", + value = "zm_orangepollen.m2", + }, + }, + text = "pollen", + value = "pollen", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "dreaming", - value = "dreaming", - }, - { - children = { - { - children = { - { - children = { { children = { { - fileId = "190803", - text = "basiliskcrystal02.m2", - value = "basiliskcrystal02.m2", + fileId = "194003", + text = "zangarwalkway01.m2", + value = "zangarwalkway01.m2", }, { - fileId = "190804", - text = "caveminecrystalformation01.m2", - value = "caveminecrystalformation01.m2", + fileId = "194004", + text = "zangarwalkway02.m2", + value = "zangarwalkway02.m2", }, { - fileId = "190805", - text = "caveminecrystalformation02.m2", - value = "caveminecrystalformation02.m2", + fileId = "194005", + text = "zangarwalkway03.m2", + value = "zangarwalkway03.m2", }, { - fileId = "190806", - text = "caveminecrystalformation03.m2", - value = "caveminecrystalformation03.m2", + fileId = "194006", + text = "zangarwalkway_board.m2", + value = "zangarwalkway_board.m2", }, { - fileId = "190807", - text = "caveminecrystalformation04.m2", - value = "caveminecrystalformation04.m2", + fileId = "194007", + text = "zangarwalkway_pole.m2", + value = "zangarwalkway_pole.m2", }, { - fileId = "190808", - text = "caveminecrystalformation05.m2", - value = "caveminecrystalformation05.m2", + fileId = "194008", + text = "zangarwalkway_wide01.m2", + value = "zangarwalkway_wide01.m2", }, { - fileId = "190809", - text = "caveminecrystalformation06.m2", - value = "caveminecrystalformation06.m2", + fileId = "194009", + text = "zangarwalkway_wide02.m2", + value = "zangarwalkway_wide02.m2", }, { - fileId = "190810", - text = "caveminecrystalformation07.m2", - value = "caveminecrystalformation07.m2", + fileId = "194010", + text = "zangarwalkway_wide03.m2", + value = "zangarwalkway_wide03.m2", }, { - fileId = "190811", - text = "caveminecrystalformation08.m2", - value = "caveminecrystalformation08.m2", + fileId = "194011", + text = "zangarwalkway_wide04.m2", + value = "zangarwalkway_wide04.m2", + }, + { + fileId = "194012", + text = "zangarwalkwayend01.m2", + value = "zangarwalkwayend01.m2", + }, + { + fileId = "194013", + text = "zangarwalkwayend02.m2", + value = "zangarwalkwayend02.m2", }, }, - text = "crystals", - value = "crystals", + text = "road", + value = "road", }, { children = { { - fileId = "190813", - text = "caveicicle1.m2", - value = "caveicicle1.m2", + fileId = "194015", + text = "dirtmound_zangar.m2", + value = "dirtmound_zangar.m2", }, { - fileId = "190814", - text = "caveicicle2.m2", - value = "caveicicle2.m2", + fileId = "194017", + text = "zangar_floatingsmall01.m2", + value = "zangar_floatingsmall01.m2", + }, + { + fileId = "194018", + text = "zangar_floatingsmall02.m2", + value = "zangar_floatingsmall02.m2", + }, + { + fileId = "194019", + text = "zangar_overhangrock_large_01.m2", + value = "zangar_overhangrock_large_01.m2", + }, + { + fileId = "194020", + text = "zangar_overhangrock_large_02.m2", + value = "zangar_overhangrock_large_02.m2", + }, + { + fileId = "194021", + text = "zangar_overhangrock_small_01.m2", + value = "zangar_overhangrock_small_01.m2", + }, + { + fileId = "194022", + text = "zangar_overhangrock_small_02.m2", + value = "zangar_overhangrock_small_02.m2", + }, + { + fileId = "194023", + text = "zangar_overhangrock_small_03.m2", + value = "zangar_overhangrock_small_03.m2", }, }, - text = "icicles", - value = "icicles", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "190815", - text = "stalagmite01.m2", - value = "stalagmite01.m2", + fileId = "194025", + text = "zangarsignpost01.m2", + value = "zangarsignpost01.m2", + }, + { + fileId = "194026", + text = "zangarsignpostpointer01.m2", + value = "zangarsignpostpointer01.m2", }, }, - text = "stalagmite", - value = "stalagmite", + text = "signposts", + value = "signposts", }, { children = { { - fileId = "190816", - text = "deadminesstalagtite01.m2", - value = "deadminesstalagtite01.m2", - }, - { - fileId = "190817", - text = "deadminesstalagtite02.m2", - value = "deadminesstalagtite02.m2", + fileId = "194028", + text = "zangarshroomstump01.m2", + value = "zangarshroomstump01.m2", }, { - fileId = "190819", - text = "stalagtite01.m2", - value = "stalagtite01.m2", + fileId = "194030", + text = "zangarshroomstump02.m2", + value = "zangarshroomstump02.m2", }, { - fileId = "190820", - text = "stalagtite02.m2", - value = "stalagtite02.m2", + fileId = "194032", + text = "zangarshroomstump03.m2", + value = "zangarshroomstump03.m2", }, }, - text = "stalagtite", - value = "stalagtite", + text = "stump", + value = "stump", }, }, - text = "passivedoodads", - value = "passivedoodads", + text = "zangar", + value = "zangar", }, - }, - text = "cave", - value = "cave", - }, - { - children = { { children = { { children = { { - fileId = "190822", - text = "caverndoor.m2", - value = "caverndoor.m2", + fileId = "194044", + text = "zulaman_entrancegate.m2", + value = "zulaman_entrancegate.m2", + }, + { + fileId = "194045", + text = "zulaman_firedoor.m2", + value = "zulaman_firedoor.m2", + }, + { + fileId = "194046", + text = "zulaman_lynxgate.m2", + value = "zulaman_lynxgate.m2", + }, + { + fileId = "194047", + text = "zulaman_torchfire.m2", + value = "zulaman_torchfire.m2", + }, + { + fileId = "194048", + text = "zulaman_winddoor.m2", + value = "zulaman_winddoor.m2", }, }, - text = "cavernsoftimedoor", - value = "cavernsoftimedoor", + text = "doors", + value = "doors", }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { { children = { { - fileId = "190823", - text = "cot_portalparticles.m2", - value = "cot_portalparticles.m2", + fileId = "194050", + text = "foresttrolldungeonfountain.m2", + value = "foresttrolldungeonfountain.m2", }, + }, + text = "fountain", + value = "fountain", + }, + { + children = { { - fileId = "190824", - text = "cot_standingstone01.m2", - value = "cot_standingstone01.m2", + fileId = "194052", + text = "eaglegargoyle.m2", + value = "eaglegargoyle.m2", }, + }, + text = "gargoyle", + value = "gargoyle", + }, + { + children = { { - fileId = "190825", - text = "cot_standingstone02.m2", - value = "cot_standingstone02.m2", + fileId = "194054", + text = "foresttrolldungeongong.m2", + value = "foresttrolldungeongong.m2", }, }, - text = "darkportal", - value = "darkportal", + text = "gong", + value = "gong", }, { children = { { - fileId = "190828", - text = "energytrail01.m2", - value = "energytrail01.m2", + fileId = "194057", + text = "trollruins_zulaman_01.m2", + value = "trollruins_zulaman_01.m2", }, { - fileId = "190829", - text = "energytrail01b.m2", - value = "energytrail01b.m2", + fileId = "194058", + text = "trollruins_zulaman_02.m2", + value = "trollruins_zulaman_02.m2", }, { - fileId = "190830", - text = "energytrail01c.m2", - value = "energytrail01c.m2", + fileId = "194059", + text = "trollruins_zulaman_03.m2", + value = "trollruins_zulaman_03.m2", }, { - fileId = "190831", - text = "energytrail02.m2", - value = "energytrail02.m2", + fileId = "194060", + text = "trollruins_zulaman_04.m2", + value = "trollruins_zulaman_04.m2", }, { - fileId = "190832", - text = "energytrail02b.m2", - value = "energytrail02b.m2", + fileId = "194061", + text = "trollruins_zulaman_05.m2", + value = "trollruins_zulaman_05.m2", }, { - fileId = "190833", - text = "energytrail03.m2", - value = "energytrail03.m2", + fileId = "194062", + text = "trollruins_zulaman_06.m2", + value = "trollruins_zulaman_06.m2", }, { - fileId = "190834", - text = "energytrail03b.m2", - value = "energytrail03b.m2", + fileId = "194063", + text = "trollruins_zulaman_07.m2", + value = "trollruins_zulaman_07.m2", }, { - fileId = "190835", - text = "energytrail04.m2", - value = "energytrail04.m2", + fileId = "194064", + text = "trollruins_zulaman_08.m2", + value = "trollruins_zulaman_08.m2", }, { - fileId = "190836", - text = "energytrail04b.m2", - value = "energytrail04b.m2", + fileId = "194065", + text = "trollruins_zulaman_09.m2", + value = "trollruins_zulaman_09.m2", }, { - fileId = "190837", - text = "energytrail05.m2", - value = "energytrail05.m2", + fileId = "194066", + text = "trollruins_zulaman_10.m2", + value = "trollruins_zulaman_10.m2", }, { - fileId = "190838", - text = "energytrail05b.m2", - value = "energytrail05b.m2", + fileId = "194067", + text = "trollruins_zulaman_11.m2", + value = "trollruins_zulaman_11.m2", }, { - fileId = "190839", - text = "energytrail05c.m2", - value = "energytrail05c.m2", + fileId = "194068", + text = "trollruins_zulaman_12.m2", + value = "trollruins_zulaman_12.m2", }, { - fileId = "190840", - text = "energytrailhourglass.m2", - value = "energytrailhourglass.m2", + fileId = "194069", + text = "trollruins_zulaman_14.m2", + value = "trollruins_zulaman_14.m2", }, { - fileId = "190841", - text = "energytrailhourglassb.m2", - value = "energytrailhourglassb.m2", + fileId = "194070", + text = "trollruins_zulaman_15.m2", + value = "trollruins_zulaman_15.m2", }, { - fileId = "190842", - text = "energytrailhourglassblue.m2", - value = "energytrailhourglassblue.m2", + fileId = "194071", + text = "trollruins_zulaman_16.m2", + value = "trollruins_zulaman_16.m2", }, { - fileId = "190843", - text = "energytrailhourglasspink.m2", - value = "energytrailhourglasspink.m2", + fileId = "194072", + text = "trollruins_zulaman_17.m2", + value = "trollruins_zulaman_17.m2", }, { - fileId = "190844", - text = "energytrailhourglassred.m2", - value = "energytrailhourglassred.m2", + fileId = "194073", + text = "trollruins_zulaman_18.m2", + value = "trollruins_zulaman_18.m2", + }, + { + fileId = "194074", + text = "trollruins_zulaman_20.m2", + value = "trollruins_zulaman_20.m2", + }, + { + fileId = "194075", + text = "trollruins_zulaman_21.m2", + value = "trollruins_zulaman_21.m2", }, }, - text = "energytrails", - value = "energytrails", + text = "ruins", + value = "ruins", }, { children = { { - fileId = "190849", - text = "cot_hourglass.m2", - value = "cot_hourglass.m2", + fileId = "194083", + text = "eaglestatue01.m2", + value = "eaglestatue01.m2", }, + }, + text = "statues", + value = "statues", + }, + { + children = { { - fileId = "190850", - text = "cot_hourglass_redo.m2", - value = "cot_hourglass_redo.m2", + fileId = "194086", + text = "foresttrolltablet.m2", + value = "foresttrolltablet.m2", }, }, - text = "hourglass", - value = "hourglass", + text = "tablet", + value = "tablet", }, { children = { { - fileId = "190858", - text = "cot_portal01.m2", - value = "cot_portal01.m2", + fileId = "194087", + text = "eaglethrone01.m2", + value = "eaglethrone01.m2", }, + }, + text = "throne", + value = "throne", + }, + { + children = { { - fileId = "190859", - text = "cot_portalfx.m2", - value = "cot_portalfx.m2", + fileId = "194088", + text = "trollskulltiki.m2", + value = "trollskulltiki.m2", }, }, - text = "portal", - value = "portal", + text = "tiki", + value = "tiki", + }, + { + children = { + { + fileId = "194097", + text = "zulamantree01.m2", + value = "zulamantree01.m2", + }, + { + fileId = "194098", + text = "zulamantree02.m2", + value = "zulamantree02.m2", + }, + { + fileId = "194099", + text = "zulamantree03.m2", + value = "zulamantree03.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "194100", + text = "foresttrolldungeonbasinwall.m2", + value = "foresttrolldungeonbasinwall.m2", + }, + }, + text = "wall", + value = "wall", + }, + { + children = { + { + fileId = "194105", + text = "zulamanwaterfalls.m2", + value = "zulamanwaterfalls.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, }, - text = "passivedoodads", - value = "passivedoodads", + text = "zulaman", + value = "zulaman", }, }, - text = "cavernsoftime", - value = "cavernsoftime", + text = "doodads", + value = "doodads", }, + }, + text = "expansion01", + value = "expansion01", + }, + { + children = { { children = { { @@ -66662,23036 +103249,22294 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "190869", - text = "caveminelantern01.m2", - value = "caveminelantern01.m2", + fileId = "242735", + text = "azjol_arch_a.m2", + value = "azjol_arch_a.m2", }, { - fileId = "190870", - text = "caveminelantern02.m2", - value = "caveminelantern02.m2", + fileId = "242736", + text = "azjol_arch_a_closed.m2", + value = "azjol_arch_a_closed.m2", }, { - fileId = "190871", - text = "caveminelantern03.m2", - value = "caveminelantern03.m2", + fileId = "242737", + text = "azjol_arch_b.m2", + value = "azjol_arch_b.m2", }, - }, - text = "cavelanterns", - value = "cavelanterns", - }, - { - children = { { - fileId = "190872", - text = "caveminekobold01.m2", - value = "caveminekobold01.m2", + fileId = "242738", + text = "azjol_arch_b_closed.m2", + value = "azjol_arch_b_closed.m2", }, { - fileId = "190873", - text = "caveminekobold02.m2", - value = "caveminekobold02.m2", + fileId = "242739", + text = "azjol_arch_corner.m2", + value = "azjol_arch_corner.m2", }, { - fileId = "190874", - text = "caveminekobold04.m2", - value = "caveminekobold04.m2", + fileId = "242740", + text = "azjol_arch_corner_b.m2", + value = "azjol_arch_corner_b.m2", }, { - fileId = "190875", - text = "caveminekobold05.m2", - value = "caveminekobold05.m2", + fileId = "242741", + text = "azjol_arch_corner_b_closed.m2", + value = "azjol_arch_corner_b_closed.m2", }, { - fileId = "190876", - text = "caveminekobold06.m2", - value = "caveminekobold06.m2", + fileId = "242742", + text = "azjol_arch_corner_closed.m2", + value = "azjol_arch_corner_closed.m2", }, - }, - text = "caveminekobolds", - value = "caveminekobolds", - }, - { - children = { { - fileId = "190880", - text = "caveminespiderpillar01.m2", - value = "caveminespiderpillar01.m2", + fileId = "194106", + text = "azjol_bigarchhalf01.m2", + value = "azjol_bigarchhalf01.m2", }, - }, - text = "caveminespiderpillar01", - value = "caveminespiderpillar01", - }, - { - children = { { - fileId = "190882", - text = "cavespiderweb01.m2", - value = "cavespiderweb01.m2", + fileId = "194107", + text = "azjol_spiderarch01.m2", + value = "azjol_spiderarch01.m2", }, { - fileId = "190883", - text = "cavespiderweb02.m2", - value = "cavespiderweb02.m2", + fileId = "242743", + text = "azjol_wall_arch.m2", + value = "azjol_wall_arch.m2", + }, + { + fileId = "242744", + text = "azjol_wall_arch_closed.m2", + value = "azjol_wall_arch_closed.m2", + }, + { + fileId = "242745", + text = "azjol_wall_arch_window.m2", + value = "azjol_wall_arch_window.m2", }, }, - text = "cavespiderwebs", - value = "cavespiderwebs", + text = "arches", + value = "arches", }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "goldmine", - value = "goldmine", - }, - { - children = { - { - children = { { - fileId = "190885", - text = "innbarrel.m2", - value = "innbarrel.m2", + fileId = "194108", + text = "azjol_arch01.m2", + value = "azjol_arch01.m2", }, - }, - text = "innbarrel", - value = "innbarrel", - }, - { - children = { { - fileId = "190886", - text = "innbed.m2", - value = "innbed.m2", + fileId = "194109", + text = "azjol_arch02.m2", + value = "azjol_arch02.m2", }, - }, - text = "innbed", - value = "innbed", - }, - { - children = { { - fileId = "190887", - text = "innbedcanopy.m2", - value = "innbedcanopy.m2", + fileId = "242749", + text = "azjol_banner_01.m2", + value = "azjol_banner_01.m2", }, - }, - text = "innbedcanopy", - value = "innbedcanopy", - }, - { - children = { { - fileId = "190890", - text = "innchandelier.m2", - value = "innchandelier.m2", + fileId = "242751", + text = "azjol_banner_02.m2", + value = "azjol_banner_02.m2", }, - }, - text = "innchandelier", - value = "innchandelier", - }, - { - children = { { - fileId = "190893", - text = "innlantern.m2", - value = "innlantern.m2", + fileId = "242753", + text = "azjol_banner_03.m2", + value = "azjol_banner_03.m2", }, - }, - text = "innlantern", - value = "innlantern", - }, - { - children = { { - fileId = "190895", - text = "innpillow.m2", - value = "innpillow.m2", + fileId = "242755", + text = "azjol_banner_04.m2", + value = "azjol_banner_04.m2", }, - }, - text = "innpillow", - value = "innpillow", - }, - }, - text = "goldshireinn", - value = "goldshireinn", - }, - { - children = { - { - children = { { - children = { - { - fileId = "190898", - text = "fishfountain.m2", - value = "fishfountain.m2", - }, - { - fileId = "190900", - text = "monasteryfalls.m2", - value = "monasteryfalls.m2", - }, - }, - text = "fountains", - value = "fountains", + fileId = "242756", + text = "azjol_banner_05.m2", + value = "azjol_banner_05.m2", + }, + { + fileId = "242757", + text = "azjol_brazier_01.m2", + value = "azjol_brazier_01.m2", + }, + { + fileId = "242758", + text = "azjol_brazier_02.m2", + value = "azjol_brazier_02.m2", + }, + { + fileId = "242759", + text = "azjol_brazier_03.m2", + value = "azjol_brazier_03.m2", + }, + { + fileId = "242760", + text = "azjol_brazier_04.m2", + value = "azjol_brazier_04.m2", + }, + { + fileId = "242761", + text = "azjol_brazier_05.m2", + value = "azjol_brazier_05.m2", + }, + { + fileId = "242762", + text = "azjol_brazier_06.m2", + value = "azjol_brazier_06.m2", + }, + { + fileId = "242764", + text = "azjol_chandelier_01.m2", + value = "azjol_chandelier_01.m2", + }, + { + fileId = "242765", + text = "azjol_chandelier_02.m2", + value = "azjol_chandelier_02.m2", + }, + { + fileId = "242766", + text = "azjol_circleplatform01.m2", + value = "azjol_circleplatform01.m2", + }, + { + fileId = "242767", + text = "azjol_circleplatform02.m2", + value = "azjol_circleplatform02.m2", + }, + { + fileId = "194110", + text = "azjol_cliff01.m2", + value = "azjol_cliff01.m2", + }, + { + fileId = "194111", + text = "azjol_cliff02.m2", + value = "azjol_cliff02.m2", + }, + { + fileId = "194112", + text = "azjol_cliff03.m2", + value = "azjol_cliff03.m2", + }, + { + fileId = "194113", + text = "azjol_cliff04.m2", + value = "azjol_cliff04.m2", + }, + { + fileId = "242768", + text = "azjol_console_01.m2", + value = "azjol_console_01.m2", + }, + { + fileId = "242770", + text = "azjol_door_boss_01.m2", + value = "azjol_door_boss_01.m2", + }, + { + fileId = "242771", + text = "azjol_door_boss_02.m2", + value = "azjol_door_boss_02.m2", + }, + { + fileId = "242772", + text = "azjol_door_boss_03.m2", + value = "azjol_door_boss_03.m2", + }, + { + fileId = "242773", + text = "azjol_door_large_01.m2", + value = "azjol_door_large_01.m2", + }, + { + fileId = "242774", + text = "azjol_door_small_01.m2", + value = "azjol_door_small_01.m2", + }, + { + fileId = "242775", + text = "azjol_ghostbats_01.m2", + value = "azjol_ghostbats_01.m2", + }, + { + fileId = "242776", + text = "azjol_giantmushroom01.m2", + value = "azjol_giantmushroom01.m2", + }, + { + fileId = "242777", + text = "azjol_giantmushroom02.m2", + value = "azjol_giantmushroom02.m2", + }, + { + fileId = "242778", + text = "azjol_giantmushroom03.m2", + value = "azjol_giantmushroom03.m2", + }, + { + fileId = "242780", + text = "azjol_glow_worms_01.m2", + value = "azjol_glow_worms_01.m2", + }, + { + fileId = "242791", + text = "azjol_mushroom04.m2", + value = "azjol_mushroom04.m2", + }, + { + fileId = "242792", + text = "azjol_mushroom05.m2", + value = "azjol_mushroom05.m2", + }, + { + fileId = "242793", + text = "azjol_mushroom06.m2", + value = "azjol_mushroom06.m2", + }, + { + fileId = "242794", + text = "azjol_ornatespider.m2", + value = "azjol_ornatespider.m2", + }, + { + fileId = "242795", + text = "azjol_ornatespike.m2", + value = "azjol_ornatespike.m2", + }, + { + fileId = "242796", + text = "azjol_platform01.m2", + value = "azjol_platform01.m2", + }, + { + fileId = "242797", + text = "azjol_platform_bottom_01.m2", + value = "azjol_platform_bottom_01.m2", + }, + { + fileId = "242798", + text = "azjol_platform_fx_01.m2", + value = "azjol_platform_fx_01.m2", + }, + { + fileId = "242799", + text = "azjol_platform_top_01.m2", + value = "azjol_platform_top_01.m2", + }, + { + fileId = "194114", + text = "azjol_roof.m2", + value = "azjol_roof.m2", + }, + { + fileId = "242801", + text = "azjol_sarcophagus_01.m2", + value = "azjol_sarcophagus_01.m2", + }, + { + fileId = "242802", + text = "azjol_sconce_01.m2", + value = "azjol_sconce_01.m2", + }, + { + fileId = "242803", + text = "azjol_sconce_02.m2", + value = "azjol_sconce_02.m2", + }, + { + fileId = "242804", + text = "azjol_sconce_03.m2", + value = "azjol_sconce_03.m2", + }, + { + fileId = "242805", + text = "azjol_sconce_04.m2", + value = "azjol_sconce_04.m2", + }, + { + fileId = "242806", + text = "azjol_sconce_05.m2", + value = "azjol_sconce_05.m2", + }, + { + fileId = "242807", + text = "azjol_sconce_06.m2", + value = "azjol_sconce_06.m2", + }, + { + fileId = "242809", + text = "azjol_shelfmushroom_02.m2", + value = "azjol_shelfmushroom_02.m2", + }, + { + fileId = "242813", + text = "azjol_shelfmushroom_04.m2", + value = "azjol_shelfmushroom_04.m2", + }, + { + fileId = "242814", + text = "azjol_shelfmushroom_05.m2", + value = "azjol_shelfmushroom_05.m2", + }, + { + fileId = "242815", + text = "azjol_shelfmushroom_06.m2", + value = "azjol_shelfmushroom_06.m2", + }, + { + fileId = "194115", + text = "azjol_spiderfinger01.m2", + value = "azjol_spiderfinger01.m2", + }, + { + fileId = "242816", + text = "azjol_spiderleg01.m2", + value = "azjol_spiderleg01.m2", + }, + { + fileId = "242817", + text = "azjol_spiderleg02.m2", + value = "azjol_spiderleg02.m2", + }, + { + fileId = "194116", + text = "azjol_spike01.m2", + value = "azjol_spike01.m2", + }, + { + fileId = "242819", + text = "azjol_statue_01.m2", + value = "azjol_statue_01.m2", + }, + { + fileId = "242820", + text = "azjol_statue_02.m2", + value = "azjol_statue_02.m2", + }, + { + fileId = "242821", + text = "azjol_vase_01.m2", + value = "azjol_vase_01.m2", + }, + { + fileId = "511890", + text = "azjol_vase_01_nocol.m2", + value = "azjol_vase_01_nocol.m2", + }, + { + fileId = "242822", + text = "azjol_vase_02.m2", + value = "azjol_vase_02.m2", + }, + { + fileId = "242824", + text = "azjol_water_pool_01.m2", + value = "azjol_water_pool_01.m2", + }, + { + fileId = "242826", + text = "azjol_water_pool_02.m2", + value = "azjol_water_pool_02.m2", + }, + { + fileId = "194117", + text = "azjol_web_01.m2", + value = "azjol_web_01.m2", + }, + { + fileId = "194118", + text = "azjol_web_02.m2", + value = "azjol_web_02.m2", }, { - children = { - { - fileId = "190914", - text = "statuedmmountainking.m2", - value = "statuedmmountainking.m2", - }, - { - fileId = "190915", - text = "statuefountain.m2", - value = "statuefountain.m2", - }, - { - fileId = "190916", - text = "statuehefranger.m2", - value = "statuehefranger.m2", - }, - { - fileId = "190917", - text = "statuehemmage.m2", - value = "statuehemmage.m2", - }, - { - fileId = "190918", - text = "statuehfspear.m2", - value = "statuehfspear.m2", - }, - { - fileId = "190919", - text = "statuehfsunshield.m2", - value = "statuehfsunshield.m2", - }, - { - fileId = "190920", - text = "statuehfsunshieldclean.m2", - value = "statuehfsunshieldclean.m2", - }, - { - fileId = "190921", - text = "statuehftwinblades.m2", - value = "statuehftwinblades.m2", - }, - { - fileId = "190922", - text = "statuehmcaptain.m2", - value = "statuehmcaptain.m2", - }, - { - fileId = "190923", - text = "statuehmcaptainclean.m2", - value = "statuehmcaptainclean.m2", - }, - { - fileId = "190924", - text = "statuehmcrusader.m2", - value = "statuehmcrusader.m2", - }, - { - fileId = "190925", - text = "statuehmcrusaderclean.m2", - value = "statuehmcrusaderclean.m2", - }, - { - fileId = "190926", - text = "statuehmcrusadersoldier.m2", - value = "statuehmcrusadersoldier.m2", - }, - { - fileId = "190927", - text = "statuehmonearm.m2", - value = "statuehmonearm.m2", - }, - { - fileId = "190928", - text = "statuehmpaladin.m2", - value = "statuehmpaladin.m2", - }, - { - fileId = "190929", - text = "statuehmpriest.m2", - value = "statuehmpriest.m2", - }, - }, - text = "statues", - value = "statues", + fileId = "242830", + text = "azjol_web_rope_angled_01.m2", + value = "azjol_web_rope_angled_01.m2", }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "scarletmonastery", - value = "scarletmonastery", - }, - { - children = { - { - fileId = "190933", - text = "sunwell_bushes.m2", - value = "sunwell_bushes.m2", - }, - { - fileId = "190934", - text = "sunwell_lamps.m2", - value = "sunwell_lamps.m2", - }, - { - fileId = "190935", - text = "sunwell_trees.m2", - value = "sunwell_trees.m2", - }, - }, - text = "sunwell", - value = "sunwell", - }, - }, - text = "dungeon", - value = "dungeon", - }, - { - children = { - { - children = { - { - children = { { - children = { - { - fileId = "190963", - text = "hive_fireflies_01.m2", - value = "hive_fireflies_01.m2", - }, - { - fileId = "190964", - text = "hive_fireflies_large.m2", - value = "hive_fireflies_large.m2", - }, - }, - text = "fireflies", - value = "fireflies", + fileId = "242831", + text = "azjol_web_rope_angled_02.m2", + value = "azjol_web_rope_angled_02.m2", }, { - children = { - { - fileId = "190967", - text = "hive_lightshaft01.m2", - value = "hive_lightshaft01.m2", - }, - { - fileId = "190968", - text = "hive_lightshaft02.m2", - value = "hive_lightshaft02.m2", - }, - }, - text = "lightshaft", - value = "lightshaft", + fileId = "242832", + text = "azjol_web_rope_angled_03.m2", + value = "azjol_web_rope_angled_03.m2", }, { - children = { - { - fileId = "190970", - text = "hive_sand.m2", - value = "hive_sand.m2", - }, - { - fileId = "190971", - text = "hive_sandwaterfall.m2", - value = "hive_sandwaterfall.m2", - }, - }, - text = "sandwaterfall", - value = "sandwaterfall", + fileId = "242833", + text = "azjol_web_rope_looped_01.m2", + value = "azjol_web_rope_looped_01.m2", }, { - children = { - { - fileId = "190974", - text = "hivesteam.m2", - value = "hivesteam.m2", - }, - }, - text = "steam", - value = "steam", + fileId = "242834", + text = "azjol_web_rope_looped_02.m2", + value = "azjol_web_rope_looped_02.m2", }, - }, - text = "anquiraj", - value = "anquiraj", - }, - { - children = { { - fileId = "191009", - text = "animaltrainer.m2", - value = "animaltrainer.m2", + fileId = "242835", + text = "azjol_web_rope_looped_03.m2", + value = "azjol_web_rope_looped_03.m2", }, { - fileId = "191016", - text = "carni_cannon.m2", - value = "carni_cannon.m2", + fileId = "242836", + text = "azjol_web_rope_looped_04.m2", + value = "azjol_web_rope_looped_04.m2", }, { - fileId = "191018", - text = "carni_cannontarget.m2", - value = "carni_cannontarget.m2", + fileId = "242837", + text = "azjol_web_rope_straight_01.m2", + value = "azjol_web_rope_straight_01.m2", }, { - fileId = "191019", - text = "carni_wagon01.m2", - value = "carni_wagon01.m2", + fileId = "242838", + text = "azjol_web_rope_straight_02.m2", + value = "azjol_web_rope_straight_02.m2", }, { - fileId = "191020", - text = "carni_wagon_empty01.m2", - value = "carni_wagon_empty01.m2", + fileId = "242839", + text = "azjol_web_rope_straight_03.m2", + value = "azjol_web_rope_straight_03.m2", }, { - fileId = "191021", - text = "carnie_merchant01.m2", - value = "carnie_merchant01.m2", + fileId = "242841", + text = "azjol_webbridge_01.m2", + value = "azjol_webbridge_01.m2", }, { - fileId = "191022", - text = "carnietent_small01.m2", - value = "carnietent_small01.m2", + fileId = "242842", + text = "azjol_webbridge_02.m2", + value = "azjol_webbridge_02.m2", }, { - fileId = "191023", - text = "carnival_banner01.m2", - value = "carnival_banner01.m2", + fileId = "242843", + text = "azjol_webbridge_03.m2", + value = "azjol_webbridge_03.m2", }, { - fileId = "191024", - text = "carnival_banner02.m2", - value = "carnival_banner02.m2", + fileId = "242844", + text = "azjol_webbridge_04.m2", + value = "azjol_webbridge_04.m2", }, { - fileId = "191025", - text = "carnivalrailing.m2", - value = "carnivalrailing.m2", + fileId = "194119", + text = "azjol_webfloor_01.m2", + value = "azjol_webfloor_01.m2", }, { - fileId = "191026", - text = "coketent.m2", - value = "coketent.m2", + fileId = "242845", + text = "azjol_webfloor_01b.m2", + value = "azjol_webfloor_01b.m2", }, { - fileId = "191029", - text = "darkmoonfaireposter.m2", - value = "darkmoonfaireposter.m2", + fileId = "194120", + text = "azjol_webfloor_02.m2", + value = "azjol_webfloor_02.m2", }, { - fileId = "191031", - text = "foodvendor.m2", - value = "foodvendor.m2", + fileId = "242846", + text = "azjol_webfloor_02b.m2", + value = "azjol_webfloor_02b.m2", }, { - fileId = "191032", - text = "fortuneteller.m2", - value = "fortuneteller.m2", + fileId = "242847", + text = "azjol_webfloor_03.m2", + value = "azjol_webfloor_03.m2", }, { - fileId = "191033", - text = "haybail01.m2", - value = "haybail01.m2", + fileId = "242848", + text = "azjol_webfloor_03b.m2", + value = "azjol_webfloor_03b.m2", }, { - fileId = "191034", - text = "haybail02.m2", - value = "haybail02.m2", + fileId = "194121", + text = "azjolcolumn01.m2", + value = "azjolcolumn01.m2", }, { - fileId = "191037", - text = "shoutbox.m2", - value = "shoutbox.m2", + fileId = "194122", + text = "azjolcolumn02.m2", + value = "azjolcolumn02.m2", }, { - fileId = "191038", - text = "souvenireshop.m2", - value = "souvenireshop.m2", + fileId = "194123", + text = "azjolcolumn03.m2", + value = "azjolcolumn03.m2", }, { - fileId = "191039", - text = "targetpractice.m2", - value = "targetpractice.m2", + fileId = "194124", + text = "azjolcolumn04.m2", + value = "azjolcolumn04.m2", }, { - fileId = "191040", - text = "ticketmaster.m2", - value = "ticketmaster.m2", + fileId = "194125", + text = "azjolcolumn05.m2", + value = "azjolcolumn05.m2", }, - }, - text = "carnival", - value = "carnival", - }, - { - children = { { - children = { - { - fileId = "2198606", - text = "centaur_arch01.m2", - value = "centaur_arch01.m2", - }, - { - fileId = "2198556", - text = "centaur_brokearch01.m2", - value = "centaur_brokearch01.m2", - }, - { - fileId = "2198540", - text = "centaur_brokearch02.m2", - value = "centaur_brokearch02.m2", - }, - { - fileId = "2198616", - text = "centaur_brokepillar01.m2", - value = "centaur_brokepillar01.m2", - }, - { - fileId = "2198523", - text = "centaur_pillar01.m2", - value = "centaur_pillar01.m2", - }, - { - fileId = "2198845", - text = "centaur_wall01.m2", - value = "centaur_wall01.m2", - }, - { - fileId = "2198518", - text = "centaur_wall_ruin01.m2", - value = "centaur_wall_ruin01.m2", - }, - }, - text = "centaurruins", - value = "centaurruins", + fileId = "194126", + text = "azjolcolumn06.m2", + value = "azjolcolumn06.m2", }, - }, - text = "desolace", - value = "desolace", - }, - { - children = { { - children = { - { - fileId = "191084", - text = "altartidalmastery01.m2", - value = "altartidalmastery01.m2", - }, - }, - text = "altaroftidalmastery", - value = "altaroftidalmastery", + fileId = "242849", + text = "azjolcolumn06_long.m2", + value = "azjolcolumn06_long.m2", }, { - children = { - { - fileId = "191085", - text = "airrift.m2", - value = "airrift.m2", - }, - { - fileId = "191087", - text = "earthrift.m2", - value = "earthrift.m2", - }, - { - fileId = "191088", - text = "firerift.m2", - value = "firerift.m2", - }, - { - fileId = "191093", - text = "waterrift.m2", - value = "waterrift.m2", - }, - }, - text = "elementalrifts", - value = "elementalrifts", + fileId = "194127", + text = "azjolcolumn07.m2", + value = "azjolcolumn07.m2", }, { - children = { - { - fileId = "191094", - text = "helpwantedposter.m2", - value = "helpwantedposter.m2", - }, - }, - text = "helpwantedposter", - value = "helpwantedposter", + fileId = "194128", + text = "azjolcolumn08.m2", + value = "azjolcolumn08.m2", }, { - children = { - { - fileId = "191096", - text = "ne_lanternblue01.m2", - value = "ne_lanternblue01.m2", - }, - }, - text = "nightelflanternblue", - value = "nightelflanternblue", + fileId = "242850", + text = "azjolcolumn08_long.m2", + value = "azjolcolumn08_long.m2", }, { - children = { - { - fileId = "191098", - text = "ne_glaive01.m2", - value = "ne_glaive01.m2", - }, - { - fileId = "191099", - text = "ne_glaive02.m2", - value = "ne_glaive02.m2", - }, - { - fileId = "191100", - text = "ne_glaive03.m2", - value = "ne_glaive03.m2", - }, - { - fileId = "191101", - text = "ne_glaive04.m2", - value = "ne_glaive04.m2", - }, - }, - text = "nightelfweapons", - value = "nightelfweapons", + fileId = "194129", + text = "azjolcolumn09.m2", + value = "azjolcolumn09.m2", }, { - children = { - { - fileId = "191103", - text = "novagrave1.m2", - value = "novagrave1.m2", - }, - }, - text = "novagrave", - value = "novagrave", + fileId = "194130", + text = "azjolcolumn10.m2", + value = "azjolcolumn10.m2", }, { - children = { - { - fileId = "191107", - text = "horde_package01.m2", - value = "horde_package01.m2", - }, - }, - text = "package", - value = "package", + fileId = "194131", + text = "azjolcolumn11.m2", + value = "azjolcolumn11.m2", }, { - children = { - { - fileId = "191109", - text = "paladinshrine.m2", - value = "paladinshrine.m2", - }, - }, - text = "paladinshrine", - value = "paladinshrine", + fileId = "194132", + text = "azjolcolumn12.m2", + value = "azjolcolumn12.m2", + }, + { + fileId = "194133", + text = "azjolcolumn13.m2", + value = "azjolcolumn13.m2", + }, + { + fileId = "194134", + text = "azjolcolumn14.m2", + value = "azjolcolumn14.m2", }, - }, - text = "generaldoodads", - value = "generaldoodads", - }, - { - children = { { - fileId = "191177", - text = "icyrune01.m2", - value = "icyrune01.m2", + fileId = "194135", + text = "azjolcolumn15.m2", + value = "azjolcolumn15.m2", }, - }, - text = "naxxramas", - value = "naxxramas", - }, - { - children = { { - children = { - { - fileId = "191217", - text = "plaguecauldronactive.m2", - value = "plaguecauldronactive.m2", - }, - { - fileId = "191218", - text = "plaguecauldronactivebase.m2", - value = "plaguecauldronactivebase.m2", - }, - }, - text = "activedoodads", - value = "activedoodads", + fileId = "194136", + text = "azjolcolumn16.m2", + value = "azjolcolumn16.m2", }, - }, - text = "plaguelands", - value = "plaguelands", - }, - { - children = { { - children = { - { - fileId = "191347", - text = "cracked_ice01.m2", - value = "cracked_ice01.m2", - }, - }, - text = "crackedice", - value = "crackedice", + fileId = "194137", + text = "azjolcolumn17.m2", + value = "azjolcolumn17.m2", }, - }, - text = "winterspringgrove", - value = "winterspringgrove", - }, - }, - text = "doodad", - value = "doodad", - }, - }, - text = "environment", - value = "environment", - }, - { - children = { - { - children = { - { - children = { { - children = { - { - children = { - { - fileId = "191370", - text = "arakkoahouse_interiorglow.m2", - value = "arakkoahouse_interiorglow.m2", - }, - { - fileId = "191371", - text = "arakkoahut_interiorglow.m2", - value = "arakkoahut_interiorglow.m2", - }, - { - fileId = "191372", - text = "arakkoashack_insideglow.m2", - value = "arakkoashack_insideglow.m2", - }, - }, - text = "arakkoa_hut_glow", - value = "arakkoa_hut_glow", - }, - }, - text = "passivedoodads", - value = "passivedoodads", + fileId = "194138", + text = "azjolcolumn18.m2", + value = "azjolcolumn18.m2", }, - }, - text = "arakkoa", - value = "arakkoa", - }, - { - children = { { - children = { - { - children = { - { - fileId = "191379", - text = "auchindoun_bridge_fx.m2", - value = "auchindoun_bridge_fx.m2", - }, - { - fileId = "191380", - text = "auchindoun_bridge_spirits_floating.m2", - value = "auchindoun_bridge_spirits_floating.m2", - }, - { - fileId = "191381", - text = "auchindoun_bridge_spirits_flying.m2", - value = "auchindoun_bridge_spirits_flying.m2", - }, - { - fileId = "191382", - text = "auchindoun_bridge_spirits_simple.m2", - value = "auchindoun_bridge_spirits_simple.m2", - }, - { - fileId = "191383", - text = "auchindoun_bridge_swirl_filler.m2", - value = "auchindoun_bridge_swirl_filler.m2", - }, - { - fileId = "191384", - text = "auchindoun_bridge_volumelight.m2", - value = "auchindoun_bridge_volumelight.m2", - }, - }, - text = "bridge_fx", - value = "bridge_fx", - }, - { - children = { - { - fileId = "191395", - text = "ancient_d_coffin.m2", - value = "ancient_d_coffin.m2", - }, - }, - text = "coffin", - value = "coffin", - }, - { - children = { - { - fileId = "191398", - text = "auchindoun_door_swinging.m2", - value = "auchindoun_door_swinging.m2", - }, - }, - text = "doors", - value = "doors", - }, - { - children = { - { - fileId = "191399", - text = "auchindoun_ethereal_ribbon_type1.m2", - value = "auchindoun_ethereal_ribbon_type1.m2", - }, - { - fileId = "191400", - text = "auchindoun_ethereal_ribbon_type2.m2", - value = "auchindoun_ethereal_ribbon_type2.m2", - }, - { - fileId = "191401", - text = "auchindoun_ethereal_ribbon_type3.m2", - value = "auchindoun_ethereal_ribbon_type3.m2", - }, - { - fileId = "191402", - text = "auchindoun_ethereal_ribbon_type4.m2", - value = "auchindoun_ethereal_ribbon_type4.m2", - }, - { - fileId = "191403", - text = "auchindoun_ethereal_ribbon_type5.m2", - value = "auchindoun_ethereal_ribbon_type5.m2", - }, - }, - text = "ethereal_ribbons", - value = "ethereal_ribbons", - }, - { - children = { - { - fileId = "191408", - text = "auch_etherreal_ribbon_type1_part_a.m2", - value = "auch_etherreal_ribbon_type1_part_a.m2", - }, - { - fileId = "191409", - text = "auch_etherreal_ribbon_type1_part_b.m2", - value = "auch_etherreal_ribbon_type1_part_b.m2", - }, - { - fileId = "191410", - text = "auch_etherreal_ribbon_type1_part_c.m2", - value = "auch_etherreal_ribbon_type1_part_c.m2", - }, - { - fileId = "191411", - text = "auch_etherreal_ribbon_type2_part_a.m2", - value = "auch_etherreal_ribbon_type2_part_a.m2", - }, - { - fileId = "191412", - text = "auch_etherreal_ribbon_type2_part_b.m2", - value = "auch_etherreal_ribbon_type2_part_b.m2", - }, - { - fileId = "191413", - text = "auch_etherreal_ribbon_type2_part_c.m2", - value = "auch_etherreal_ribbon_type2_part_c.m2", - }, - { - fileId = "191414", - text = "auch_etherreal_ribbon_type3_part_a.m2", - value = "auch_etherreal_ribbon_type3_part_a.m2", - }, - { - fileId = "191415", - text = "auch_etherreal_ribbon_type3_part_b.m2", - value = "auch_etherreal_ribbon_type3_part_b.m2", - }, - { - fileId = "191416", - text = "auch_etherreal_ribbon_type3_part_c.m2", - value = "auch_etherreal_ribbon_type3_part_c.m2", - }, - { - fileId = "191417", - text = "auch_etherreal_ribbon_type4_part_a.m2", - value = "auch_etherreal_ribbon_type4_part_a.m2", - }, - { - fileId = "191418", - text = "auch_etherreal_ribbon_type4_part_b.m2", - value = "auch_etherreal_ribbon_type4_part_b.m2", - }, - { - fileId = "191419", - text = "auch_etherreal_ribbon_type4_part_c.m2", - value = "auch_etherreal_ribbon_type4_part_c.m2", - }, - { - fileId = "191420", - text = "auch_etherreal_ribbon_type5_part_a.m2", - value = "auch_etherreal_ribbon_type5_part_a.m2", - }, - { - fileId = "191421", - text = "auch_etherreal_ribbon_type5_part_b.m2", - value = "auch_etherreal_ribbon_type5_part_b.m2", - }, - { - fileId = "191422", - text = "auch_etherreal_ribbon_type5_part_c.m2", - value = "auch_etherreal_ribbon_type5_part_c.m2", - }, - }, - text = "ethereal_ribbons_individual", - value = "ethereal_ribbons_individual", - }, - { - children = { - { - fileId = "191425", - text = "draenei_spirit_head.m2", - value = "draenei_spirit_head.m2", - }, - { - fileId = "191426", - text = "draenei_spirit_red.m2", - value = "draenei_spirit_red.m2", - }, - }, - text = "spirit_fx", - value = "spirit_fx", - }, - }, - text = "passivedoodads", - value = "passivedoodads", + fileId = "194139", + text = "azjolcolumn19.m2", + value = "azjolcolumn19.m2", }, - }, - text = "auchindoun", - value = "auchindoun", - }, - { - children = { { - children = { - { - children = { - { - fileId = "191427", - text = "blacktemple_gen_door.m2", - value = "blacktemple_gen_door.m2", - }, - { - fileId = "191428", - text = "bt_commondoor.m2", - value = "bt_commondoor.m2", - }, - { - fileId = "191430", - text = "bt_gate.m2", - value = "bt_gate.m2", - }, - { - fileId = "191433", - text = "bt_gate_solid.m2", - value = "bt_gate_solid.m2", - }, - { - fileId = "191436", - text = "bt_illidan_door.m2", - value = "bt_illidan_door.m2", - }, - { - fileId = "191437", - text = "bt_illidan_door_left.m2", - value = "bt_illidan_door_left.m2", - }, - { - fileId = "191438", - text = "bt_illidan_door_right.m2", - value = "bt_illidan_door_right.m2", - }, - { - fileId = "191439", - text = "bt_maindoor.m2", - value = "bt_maindoor.m2", - }, - }, - text = "doors", - value = "doors", - }, - }, - text = "activedoodads", - value = "activedoodads", + fileId = "194140", + text = "azjolcolumn20.m2", + value = "azjolcolumn20.m2", }, { - children = { - { - children = { - { - fileId = "191444", - text = "blacktemple_waterfall_type1.m2", - value = "blacktemple_waterfall_type1.m2", - }, - }, - text = "blueenergy", - value = "blueenergy", - }, - { - children = { - { - fileId = "191447", - text = "bt_brazier.m2", - value = "bt_brazier.m2", - }, - { - fileId = "191448", - text = "bt_brazier_blue.m2", - value = "bt_brazier_blue.m2", - }, - { - fileId = "191449", - text = "bt_brazier_broken.m2", - value = "bt_brazier_broken.m2", - }, - { - fileId = "191450", - text = "bt_brazier_green.m2", - value = "bt_brazier_green.m2", - }, - { - fileId = "191451", - text = "bt_brazier_red.m2", - value = "bt_brazier_red.m2", - }, - { - fileId = "191452", - text = "bt_brazier_violet.m2", - value = "bt_brazier_violet.m2", - }, - { - fileId = "191453", - text = "bt_brazier_yellow.m2", - value = "bt_brazier_yellow.m2", - }, - }, - text = "brazier", - value = "brazier", - }, - { - children = { - { - fileId = "191454", - text = "bt_drapes.m2", - value = "bt_drapes.m2", - }, - }, - text = "drapes", - value = "drapes", - }, - { - children = { - { - fileId = "191467", - text = "bt_sewerfall.m2", - value = "bt_sewerfall.m2", - }, - { - fileId = "191468", - text = "bt_sewergutter_hall.m2", - value = "bt_sewergutter_hall.m2", - }, - { - fileId = "191469", - text = "bt_sewergutter_section2.m2", - value = "bt_sewergutter_section2.m2", - }, - { - fileId = "191470", - text = "bt_sewerramp.m2", - value = "bt_sewerramp.m2", - }, - { - fileId = "191471", - text = "bt_sewerwater_bossroom.m2", - value = "bt_sewerwater_bossroom.m2", - }, - { - fileId = "191472", - text = "bt_sewerwater_section1.m2", - value = "bt_sewerwater_section1.m2", - }, - }, - text = "sewerwater", - value = "sewerwater", - }, - { - children = { - { - fileId = "191473", - text = "bt_statueeyes.m2", - value = "bt_statueeyes.m2", - }, - { - fileId = "191474", - text = "bt_statueeyes_green.m2", - value = "bt_statueeyes_green.m2", - }, - }, - text = "statue", - value = "statue", - }, - { - children = { - { - fileId = "191476", - text = "bt_vines01.m2", - value = "bt_vines01.m2", - }, - { - fileId = "191477", - text = "bt_vines02.m2", - value = "bt_vines02.m2", - }, - }, - text = "vines", - value = "vines", - }, - }, - text = "passivedoodads", - value = "passivedoodads", + fileId = "194141", + text = "azjolcolumn21.m2", + value = "azjolcolumn21.m2", }, - }, - text = "blacktemple", - value = "blacktemple", - }, - { - children = { { - children = { - { - fileId = "191478", - text = "bladesedgebush01.m2", - value = "bladesedgebush01.m2", - }, - { - fileId = "191479", - text = "bladesedgebush02.m2", - value = "bladesedgebush02.m2", - }, - }, - text = "bush", - value = "bush", + fileId = "194142", + text = "azjolcolumn22.m2", + value = "azjolcolumn22.m2", }, { - children = { - { - fileId = "191482", - text = "darkportal_bladesedge_particles.m2", - value = "darkportal_bladesedge_particles.m2", - }, - }, - text = "darkportal", - value = "darkportal", + fileId = "194143", + text = "azjolcolumn23.m2", + value = "azjolcolumn23.m2", }, { - children = { - { - fileId = "191483", - text = "bem_dragon_01.m2", - value = "bem_dragon_01.m2", - }, - { - fileId = "191484", - text = "bem_dragon_02.m2", - value = "bem_dragon_02.m2", - }, - { - fileId = "191485", - text = "bem_dragon_03.m2", - value = "bem_dragon_03.m2", - }, - { - fileId = "191486", - text = "bem_dragon_04.m2", - value = "bem_dragon_04.m2", - }, - { - fileId = "191487", - text = "bem_dragon_05.m2", - value = "bem_dragon_05.m2", - }, - }, - text = "dragon", - value = "dragon", + fileId = "194144", + text = "azjolcolumn24.m2", + value = "azjolcolumn24.m2", }, { - children = { - { - children = { - { - fileId = "191488", - text = "ogrila_crystal01.m2", - value = "ogrila_crystal01.m2", - }, - { - fileId = "191489", - text = "ogrila_crystal02.m2", - value = "ogrila_crystal02.m2", - }, - { - fileId = "191490", - text = "ogrila_crystal03.m2", - value = "ogrila_crystal03.m2", - }, - }, - text = "ogrilacrystals", - value = "ogrilacrystals", - }, - { - children = { - { - fileId = "191491", - text = "ogrila_banner.m2", - value = "ogrila_banner.m2", - }, - { - fileId = "191492", - text = "ogrila_hut.m2", - value = "ogrila_hut.m2", - }, - }, - text = "ogrilahut", - value = "ogrilahut", - }, - }, - text = "ogrila", - value = "ogrila", + fileId = "194145", + text = "azjolcolumn25.m2", + value = "azjolcolumn25.m2", + }, + { + fileId = "194146", + text = "azjolcolumn26.m2", + value = "azjolcolumn26.m2", + }, + { + fileId = "194147", + text = "azjolroofgiant.m2", + value = "azjolroofgiant.m2", }, { children = { { - fileId = "191497", - text = "bladesedge_floatingsmall01.m2", - value = "bladesedge_floatingsmall01.m2", - }, - { - fileId = "191498", - text = "bladesedge_floatingsmall02.m2", - value = "bladesedge_floatingsmall02.m2", - }, - { - fileId = "191499", - text = "bladesedge_overhangrock_large_01.m2", - value = "bladesedge_overhangrock_large_01.m2", - }, - { - fileId = "191500", - text = "bladesedge_overhangrock_large_02.m2", - value = "bladesedge_overhangrock_large_02.m2", - }, - { - fileId = "191501", - text = "bladesedge_overhangrock_small_01.m2", - value = "bladesedge_overhangrock_small_01.m2", - }, - { - fileId = "191502", - text = "bladesedge_overhangrock_small_02.m2", - value = "bladesedge_overhangrock_small_02.m2", - }, - { - fileId = "191503", - text = "bladesedge_overhangrock_small_03.m2", - value = "bladesedge_overhangrock_small_03.m2", - }, - { - fileId = "191504", - text = "bladesedgecliffrock01.m2", - value = "bladesedgecliffrock01.m2", - }, - { - fileId = "191505", - text = "bladesedgecliffrock02.m2", - value = "bladesedgecliffrock02.m2", - }, - { - fileId = "191506", - text = "bladesedgecliffrock03.m2", - value = "bladesedgecliffrock03.m2", - }, - { - fileId = "191507", - text = "bladesedgegroundrock01.m2", - value = "bladesedgegroundrock01.m2", - }, - { - fileId = "191508", - text = "bladesedgegroundrock02.m2", - value = "bladesedgegroundrock02.m2", - }, - { - fileId = "191509", - text = "bladesedgegroundrock03.m2", - value = "bladesedgegroundrock03.m2", - }, - { - fileId = "191510", - text = "bladesedgerock_finger01.m2", - value = "bladesedgerock_finger01.m2", - }, - { - fileId = "191511", - text = "bladesedgerock_finger02.m2", - value = "bladesedgerock_finger02.m2", + fileId = "194149", + text = "azjol_bridge01.m2", + value = "azjol_bridge01.m2", }, { - fileId = "191512", - text = "bladesedgerock_finger03.m2", - value = "bladesedgerock_finger03.m2", + fileId = "194150", + text = "azjol_bridge02.m2", + value = "azjol_bridge02.m2", }, { - fileId = "191514", - text = "bladesedgerockarch01.m2", - value = "bladesedgerockarch01.m2", + fileId = "194151", + text = "azjol_bridge03.m2", + value = "azjol_bridge03.m2", }, { - fileId = "191515", - text = "bladesedgerockarch02.m2", - value = "bladesedgerockarch02.m2", + fileId = "242851", + text = "azjol_bridge_a.m2", + value = "azjol_bridge_a.m2", }, { - fileId = "191516", - text = "bladesedgerockbridge01.m2", - value = "bladesedgerockbridge01.m2", + fileId = "242852", + text = "azjol_bridge_b.m2", + value = "azjol_bridge_b.m2", }, }, - text = "rocks", - value = "rocks", + text = "bridges", + value = "bridges", }, { children = { { - fileId = "191535", - text = "simongame_floatingcrystal.m2", - value = "simongame_floatingcrystal.m2", - }, - { - fileId = "191536", - text = "simongame_largebase.m2", - value = "simongame_largebase.m2", + fileId = "194152", + text = "azjol_archbuilding01.m2", + value = "azjol_archbuilding01.m2", }, { - fileId = "191537", - text = "simongame_largebluetree.m2", - value = "simongame_largebluetree.m2", + fileId = "194153", + text = "azjol_building01.m2", + value = "azjol_building01.m2", }, { - fileId = "191538", - text = "simongame_largegreentree.m2", - value = "simongame_largegreentree.m2", + fileId = "194154", + text = "azjol_building02.m2", + value = "azjol_building02.m2", }, { - fileId = "191539", - text = "simongame_largeredtree.m2", - value = "simongame_largeredtree.m2", + fileId = "194155", + text = "azjol_building03.m2", + value = "azjol_building03.m2", }, { - fileId = "191540", - text = "simongame_largeyellowtree.m2", - value = "simongame_largeyellowtree.m2", + fileId = "242853", + text = "azjol_facade1.m2", + value = "azjol_facade1.m2", }, { - fileId = "191541", - text = "simongame_smallbluebase.m2", - value = "simongame_smallbluebase.m2", + fileId = "242854", + text = "azjol_facade2.m2", + value = "azjol_facade2.m2", }, { - fileId = "191542", - text = "simongame_smallbluetree.m2", - value = "simongame_smallbluetree.m2", + fileId = "242855", + text = "azjol_facade3.m2", + value = "azjol_facade3.m2", }, { - fileId = "191543", - text = "simongame_smallgreenbase.m2", - value = "simongame_smallgreenbase.m2", + fileId = "242856", + text = "azjol_facade4.m2", + value = "azjol_facade4.m2", }, { - fileId = "191544", - text = "simongame_smallgreentree.m2", - value = "simongame_smallgreentree.m2", + fileId = "242857", + text = "azjol_facade5.m2", + value = "azjol_facade5.m2", }, { - fileId = "191545", - text = "simongame_smallredbase.m2", - value = "simongame_smallredbase.m2", + fileId = "242858", + text = "azjol_final_boss.m2", + value = "azjol_final_boss.m2", }, { - fileId = "191546", - text = "simongame_smallredtree.m2", - value = "simongame_smallredtree.m2", + fileId = "242859", + text = "azjol_pyramid1.m2", + value = "azjol_pyramid1.m2", }, { - fileId = "191547", - text = "simongame_smallyellowbase.m2", - value = "simongame_smallyellowbase.m2", + fileId = "242860", + text = "azjol_pyramid2.m2", + value = "azjol_pyramid2.m2", }, { - fileId = "191548", - text = "simongame_smallyellowtree.m2", - value = "simongame_smallyellowtree.m2", + fileId = "242861", + text = "azjol_pyramid3.m2", + value = "azjol_pyramid3.m2", }, }, - text = "simon", - value = "simon", + text = "buildings", + value = "buildings", }, { children = { { - fileId = "191550", - text = "bladesedgecrater01.m2", - value = "bladesedgecrater01.m2", - }, - { - fileId = "191551", - text = "bladesedgetree01.m2", - value = "bladesedgetree01.m2", - }, - { - fileId = "191552", - text = "bladesedgetree02.m2", - value = "bladesedgetree02.m2", - }, - { - fileId = "191553", - text = "bladesedgetree03.m2", - value = "bladesedgetree03.m2", - }, - { - fileId = "191554", - text = "bladesedgetree04.m2", - value = "bladesedgetree04.m2", - }, - { - fileId = "191555", - text = "bladesedgetree05.m2", - value = "bladesedgetree05.m2", - }, - { - fileId = "191556", - text = "bladesedgetree06.m2", - value = "bladesedgetree06.m2", - }, - { - fileId = "191557", - text = "bladesedgetree07.m2", - value = "bladesedgetree07.m2", - }, - { - fileId = "191558", - text = "bladesedgetree08.m2", - value = "bladesedgetree08.m2", - }, - { - fileId = "191559", - text = "bladesedgetreestump.m2", - value = "bladesedgetreestump.m2", - }, - { - fileId = "191561", - text = "bladesterokkarbush01.m2", - value = "bladesterokkarbush01.m2", - }, - { - fileId = "191562", - text = "bladesterokkarfallentree.m2", - value = "bladesterokkarfallentree.m2", - }, - { - fileId = "191563", - text = "bladesterokkartreelarge.m2", - value = "bladesterokkartreelarge.m2", + fileId = "242865", + text = "azjol_column_a.m2", + value = "azjol_column_a.m2", }, { - fileId = "191564", - text = "bladesterokkartreemedium.m2", - value = "bladesterokkartreemedium.m2", + fileId = "242866", + text = "azjol_column_b.m2", + value = "azjol_column_b.m2", }, { - fileId = "191565", - text = "bladesterokkartreenoleaves01.m2", - value = "bladesterokkartreenoleaves01.m2", + fileId = "242867", + text = "azjol_column_c.m2", + value = "azjol_column_c.m2", }, { - fileId = "191566", - text = "bladesterokkartreenoleaves02.m2", - value = "bladesterokkartreenoleaves02.m2", + fileId = "194156", + text = "azjol_obelisk01.m2", + value = "azjol_obelisk01.m2", }, { - fileId = "191567", - text = "bladesterokkartreesapling.m2", - value = "bladesterokkartreesapling.m2", + fileId = "242868", + text = "azjol_obeliskgold01.m2", + value = "azjol_obeliskgold01.m2", }, { - fileId = "191568", - text = "bladesterokkartreesmall.m2", - value = "bladesterokkartreesmall.m2", + fileId = "242869", + text = "azjol_obeliskobsidian01.m2", + value = "azjol_obeliskobsidian01.m2", }, { - fileId = "191569", - text = "bladesterokkartreestump.m2", - value = "bladesterokkartreestump.m2", + fileId = "242870", + text = "azjol_obeliskorange.m2", + value = "azjol_obeliskorange.m2", }, { - fileId = "191570", - text = "bladesterokkartreestump02.m2", - value = "bladesterokkartreestump02.m2", + fileId = "194157", + text = "azjol_spidercolumn01.m2", + value = "azjol_spidercolumn01.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "bladesedge", - value = "bladesedge", - }, - { - children = { - { - children = { { - fileId = "191576", - text = "bloodmyst_be_portal.m2", - value = "bloodmyst_be_portal.m2", + fileId = "194158", + text = "azjol_spidercolumn02.m2", + value = "azjol_spidercolumn02.m2", }, }, - text = "be_portal", - value = "be_portal", + text = "columns", + value = "columns", }, { children = { { - fileId = "191579", - text = "bloodmystcrystal01.m2", - value = "bloodmystcrystal01.m2", - }, - { - fileId = "191580", - text = "bloodmystcrystal02.m2", - value = "bloodmystcrystal02.m2", - }, - { - fileId = "191581", - text = "bloodmystcrystal03.m2", - value = "bloodmystcrystal03.m2", - }, - { - fileId = "191583", - text = "bloodmystcrystalaparatus01.m2", - value = "bloodmystcrystalaparatus01.m2", - }, - { - fileId = "191584", - text = "bloodmystcrystalbig01_corrupted.m2", - value = "bloodmystcrystalbig01_corrupted.m2", - }, - { - fileId = "191585", - text = "bloodmystcrystalbig02_corrupted.m2", - value = "bloodmystcrystalbig02_corrupted.m2", - }, - { - fileId = "191586", - text = "bloodmystcrystalbig03_corrupted.m2", - value = "bloodmystcrystalbig03_corrupted.m2", - }, - { - fileId = "191588", - text = "bloodmystcrystalfloating01.m2", - value = "bloodmystcrystalfloating01.m2", - }, - { - fileId = "191589", - text = "bloodmystcrystalsmall01_corrupted.m2", - value = "bloodmystcrystalsmall01_corrupted.m2", - }, - { - fileId = "191590", - text = "bloodmystcrystalsmall02_corrupted.m2", - value = "bloodmystcrystalsmall02_corrupted.m2", + fileId = "242874", + text = "azjol_eggsacks_01.m2", + value = "azjol_eggsacks_01.m2", }, { - fileId = "191591", - text = "bloodmystcrystalsmall03_corrupted.m2", - value = "bloodmystcrystalsmall03_corrupted.m2", + fileId = "242875", + text = "azjol_eggsacks_02.m2", + value = "azjol_eggsacks_02.m2", }, - }, - text = "crystals", - value = "crystals", - }, - { - children = { { - fileId = "191594", - text = "bloodmyst_powercore.m2", - value = "bloodmyst_powercore.m2", + fileId = "242876", + text = "azjol_eggtower_01.m2", + value = "azjol_eggtower_01.m2", }, { - fileId = "191614", - text = "powercore_coil_fx.m2", - value = "powercore_coil_fx.m2", + fileId = "242877", + text = "azjol_eggtower_02.m2", + value = "azjol_eggtower_02.m2", }, }, - text = "powercore", - value = "powercore", + text = "eggs", + value = "eggs", }, { children = { { - fileId = "191616", - text = "bloodmystrockrune01.m2", - value = "bloodmystrockrune01.m2", - }, - { - fileId = "191618", - text = "bloodmystrockrune02.m2", - value = "bloodmystrockrune02.m2", + fileId = "194163", + text = "omnilight_purple.m2", + value = "omnilight_purple.m2", }, - }, - text = "rocks", - value = "rocks", + }, + text = "omnilights", + value = "omnilights", }, { children = { { - fileId = "191627", - text = "bloodmystbush01.m2", - value = "bloodmystbush01.m2", - }, - { - fileId = "191628", - text = "bloodmystbush02.m2", - value = "bloodmystbush02.m2", + fileId = "194164", + text = "azjol_rockcolumn01.m2", + value = "azjol_rockcolumn01.m2", }, { - fileId = "191629", - text = "bloodmystbush03.m2", - value = "bloodmystbush03.m2", + fileId = "194165", + text = "azjol_rockcolumn02.m2", + value = "azjol_rockcolumn02.m2", }, { - fileId = "191631", - text = "bloodmystredwaterfall.m2", - value = "bloodmystredwaterfall.m2", + fileId = "194166", + text = "azjol_rockcolumn03.m2", + value = "azjol_rockcolumn03.m2", }, { - fileId = "191632", - text = "bloodmysttree01.m2", - value = "bloodmysttree01.m2", + fileId = "194167", + text = "azjol_rockcolumn04.m2", + value = "azjol_rockcolumn04.m2", }, { - fileId = "191633", - text = "bloodmysttree01_web.m2", - value = "bloodmysttree01_web.m2", + fileId = "194168", + text = "azjol_rockcolumn05.m2", + value = "azjol_rockcolumn05.m2", }, + }, + text = "rockcolumns", + value = "rockcolumns", + }, + { + children = { { - fileId = "191634", - text = "bloodmysttree02.m2", - value = "bloodmysttree02.m2", + fileId = "194169", + text = "azjol_roof02.m2", + value = "azjol_roof02.m2", }, { - fileId = "191635", - text = "bloodmysttree02_web.m2", - value = "bloodmysttree02_web.m2", + fileId = "242881", + text = "azjol_roof03.m2", + value = "azjol_roof03.m2", }, { - fileId = "191636", - text = "bloodmysttree03_web.m2", - value = "bloodmysttree03_web.m2", + fileId = "242882", + text = "azjol_roof04.m2", + value = "azjol_roof04.m2", }, + }, + text = "roof", + value = "roof", + }, + { + children = { { - fileId = "191637", - text = "bloodmysttree07_web.m2", - value = "bloodmysttree07_web.m2", + fileId = "242884", + text = "saronite_arrow_01.m2", + value = "saronite_arrow_01.m2", }, { - fileId = "191638", - text = "bloodmysttreecrystal01.m2", - value = "bloodmysttreecrystal01.m2", + fileId = "194170", + text = "saronite_node_01.m2", + value = "saronite_node_01.m2", }, { - fileId = "191639", - text = "bloodmysttreecrystal02.m2", - value = "bloodmysttreecrystal02.m2", + fileId = "339945", + text = "saronite_node_01_pos.m2", + value = "saronite_node_01_pos.m2", }, { - fileId = "191640", - text = "bloodmysttreefallen.m2", - value = "bloodmysttreefallen.m2", + fileId = "242885", + text = "saronite_rock01.m2", + value = "saronite_rock01.m2", }, { - fileId = "191641", - text = "bloodmysttreerunes01.m2", - value = "bloodmysttreerunes01.m2", + fileId = "242886", + text = "saronite_rock02.m2", + value = "saronite_rock02.m2", }, { - fileId = "191642", - text = "bloodmysttreerunes02.m2", - value = "bloodmysttreerunes02.m2", + fileId = "242887", + text = "saronite_slimefalls.m2", + value = "saronite_slimefalls.m2", }, }, - text = "trees", - value = "trees", + text = "saronite", + value = "saronite", }, { children = { { - fileId = "191644", - text = "cocoon_yellow.m2", - value = "cocoon_yellow.m2", - }, - { - fileId = "191645", - text = "cocoontrap_yellow.m2", - value = "cocoontrap_yellow.m2", + fileId = "242888", + text = "azjol_fern_01.m2", + value = "azjol_fern_01.m2", }, { - fileId = "191648", - text = "nastyspiderweb_yellow.m2", - value = "nastyspiderweb_yellow.m2", + fileId = "242889", + text = "azjol_fern_02.m2", + value = "azjol_fern_02.m2", }, { - fileId = "191651", - text = "spidereggsack_yellow.m2", - value = "spidereggsack_yellow.m2", + fileId = "242891", + text = "azjol_glowthread_blue.m2", + value = "azjol_glowthread_blue.m2", }, { - fileId = "191652", - text = "spidereggsground_yellow.m2", - value = "spidereggsground_yellow.m2", + fileId = "242892", + text = "azjol_glowthread_white.m2", + value = "azjol_glowthread_white.m2", }, { - fileId = "191656", - text = "webdangle_yellow.m2", - value = "webdangle_yellow.m2", + fileId = "242893", + text = "azjol_glowthread_white_02.m2", + value = "azjol_glowthread_white_02.m2", }, - }, - text = "webs", - value = "webs", - }, - }, - text = "bloodmyst", - value = "bloodmyst", - }, - { - children = { - { - children = { { - fileId = "191658", - text = "bonewastesboneshrine01.m2", - value = "bonewastesboneshrine01.m2", + fileId = "242894", + text = "azjol_glowthread_yellow.m2", + value = "azjol_glowthread_yellow.m2", }, - }, - text = "boneshrine", - value = "boneshrine", - }, - { - children = { { - fileId = "191661", - text = "bonewastestreetrunk01.m2", - value = "bonewastestreetrunk01.m2", + fileId = "242895", + text = "azjol_hangingfern_01.m2", + value = "azjol_hangingfern_01.m2", }, { - fileId = "191663", - text = "bonewastestreetrunk02.m2", - value = "bonewastestreetrunk02.m2", + fileId = "194173", + text = "azjol_mushroom01.m2", + value = "azjol_mushroom01.m2", }, { - fileId = "191664", - text = "bonewastestreetrunk03.m2", - value = "bonewastestreetrunk03.m2", + fileId = "194175", + text = "azjol_mushroom02.m2", + value = "azjol_mushroom02.m2", }, { - fileId = "191665", - text = "bonewastestreetrunk04.m2", - value = "bonewastestreetrunk04.m2", + fileId = "194176", + text = "azjol_mushroom03.m2", + value = "azjol_mushroom03.m2", }, { - fileId = "191666", - text = "bonewastestreetrunk05.m2", - value = "bonewastestreetrunk05.m2", + fileId = "242897", + text = "azjol_shelfmushroom_01.m2", + value = "azjol_shelfmushroom_01.m2", }, { - fileId = "191667", - text = "bonewastestreetrunk06.m2", - value = "bonewastestreetrunk06.m2", + fileId = "242899", + text = "azjol_shelfmushroom_03.m2", + value = "azjol_shelfmushroom_03.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "bonewastes", - value = "bonewastes", - }, - { - children = { - { - children = { { - children = { - { - fileId = "191668", - text = "cf_elevatorplatform.m2", - value = "cf_elevatorplatform.m2", - }, - { - fileId = "191669", - text = "cf_elevatorplatform_small.m2", - value = "cf_elevatorplatform_small.m2", - }, - }, - text = "elevator", - value = "elevator", + fileId = "242900", + text = "azjol_spore_blue_01.m2", + value = "azjol_spore_blue_01.m2", }, { - children = { - { - fileId = "191683", - text = "coilfang_pumpingdoor.m2", - value = "coilfang_pumpingdoor.m2", - }, - }, - text = "pumpingdoor", - value = "pumpingdoor", + fileId = "242902", + text = "azjol_spore_white_01.m2", + value = "azjol_spore_white_01.m2", }, { - children = { - { - fileId = "191688", - text = "coilfang_raid_bridge_part1.m2", - value = "coilfang_raid_bridge_part1.m2", - }, - { - fileId = "191689", - text = "coilfang_raid_bridge_part2.m2", - value = "coilfang_raid_bridge_part2.m2", - }, - { - fileId = "191690", - text = "coilfang_raid_bridge_part3.m2", - value = "coilfang_raid_bridge_part3.m2", - }, - }, - text = "raid_bridge", - value = "raid_bridge", + fileId = "242903", + text = "azjol_thinmushroom_01.m2", + value = "azjol_thinmushroom_01.m2", }, { - children = { - { - fileId = "191705", - text = "coilfang_raid_bridge_controls.m2", - value = "coilfang_raid_bridge_controls.m2", - }, - { - fileId = "191706", - text = "coilfang_raid_console.m2", - value = "coilfang_raid_console.m2", - }, - { - fileId = "191707", - text = "coilfang_raid_gate.m2", - value = "coilfang_raid_gate.m2", - }, - }, - text = "raid_bridge_control", - value = "raid_bridge_control", + fileId = "242904", + text = "azjol_thinmushroom_02.m2", + value = "azjol_thinmushroom_02.m2", }, { - children = { - { - fileId = "191715", - text = "coilfang_raid_door.m2", - value = "coilfang_raid_door.m2", - }, - }, - text = "raid_door", - value = "raid_door", + fileId = "242905", + text = "azjol_thinmushroom_03.m2", + value = "azjol_thinmushroom_03.m2", }, { - children = { - { - fileId = "191724", - text = "coilfang_steam_off_on.m2", - value = "coilfang_steam_off_on.m2", - }, - }, - text = "steam", - value = "steam", + fileId = "242906", + text = "azjol_thinmushroom_04.m2", + value = "azjol_thinmushroom_04.m2", }, }, - text = "activedoodads", - value = "activedoodads", + text = "shrubs", + value = "shrubs", }, { children = { { - children = { - { - fileId = "191725", - text = "coilfang_blue_energy.m2", - value = "coilfang_blue_energy.m2", - }, - }, - text = "blueenergy", - value = "blueenergy", + fileId = "194177", + text = "azjol_stairs01.m2", + value = "azjol_stairs01.m2", }, { - children = { - { - fileId = "191727", - text = "cf_groundcage.m2", - value = "cf_groundcage.m2", - }, - { - fileId = "191728", - text = "cf_hangingcage.m2", - value = "cf_hangingcage.m2", - }, - }, - text = "cages", - value = "cages", + fileId = "194178", + text = "azjol_stairs02.m2", + value = "azjol_stairs02.m2", }, { - children = { - { - fileId = "191729", - text = "coilfang_circularlightwindow_blue.m2", - value = "coilfang_circularlightwindow_blue.m2", - }, - { - fileId = "191730", - text = "coilfang_floor_light.m2", - value = "coilfang_floor_light.m2", - }, - { - fileId = "191731", - text = "coilfang_orb.m2", - value = "coilfang_orb.m2", - }, - { - fileId = "191732", - text = "coilfang_orb_orange.m2", - value = "coilfang_orb_orange.m2", - }, - { - fileId = "191733", - text = "coilfang_wall_light.m2", - value = "coilfang_wall_light.m2", - }, - }, - text = "lights", - value = "lights", + fileId = "242913", + text = "azjol_stairs_lg.m2", + value = "azjol_stairs_lg.m2", }, { - children = { - { - fileId = "191745", - text = "zangarmushroom06_blueglow.m2", - value = "zangarmushroom06_blueglow.m2", - }, - { - fileId = "191746", - text = "zangarmushroom07_blueglow.m2", - value = "zangarmushroom07_blueglow.m2", - }, - }, - text = "mushrooms", - value = "mushrooms", + fileId = "242914", + text = "azjol_stairs_sm.m2", + value = "azjol_stairs_sm.m2", }, + }, + text = "stairs", + value = "stairs", + }, + { + children = { { - children = { - { - fileId = "191747", - text = "cf_pipea.m2", - value = "cf_pipea.m2", - }, - { - fileId = "191748", - text = "cf_pipeb.m2", - value = "cf_pipeb.m2", - }, - { - fileId = "191749", - text = "cf_pipec.m2", - value = "cf_pipec.m2", - }, - }, - text = "pipepieces", - value = "pipepieces", + fileId = "194179", + text = "azjol_wall01.m2", + value = "azjol_wall01.m2", }, { - children = { - { - fileId = "191752", - text = "coilfang_pump.m2", - value = "coilfang_pump.m2", - }, - { - fileId = "191753", - text = "coilfang_pump_raidwater.m2", - value = "coilfang_pump_raidwater.m2", - }, - }, - text = "pump", - value = "pump", + fileId = "194180", + text = "azjol_wall02.m2", + value = "azjol_wall02.m2", }, { - children = { - { - fileId = "191756", - text = "cf_raid_giantpump.m2", - value = "cf_raid_giantpump.m2", - }, - }, - text = "raid", - value = "raid", + fileId = "242915", + text = "azjol_wall_corner.m2", + value = "azjol_wall_corner.m2", }, { - children = { - { - fileId = "191760", - text = "cf_railing.m2", - value = "cf_railing.m2", - }, - }, - text = "railing", - value = "railing", + fileId = "194181", + text = "azjol_wall_curved01.m2", + value = "azjol_wall_curved01.m2", }, { - children = { - { - fileId = "191762", - text = "coilfang_steam.m2", - value = "coilfang_steam.m2", - }, - { - fileId = "191763", - text = "coilfang_steam_choppy.m2", - value = "coilfang_steam_choppy.m2", - }, - }, - text = "steam", - value = "steam", + fileId = "242916", + text = "azjol_wall_divider.m2", + value = "azjol_wall_divider.m2", }, { - children = { - { - fileId = "191766", - text = "coilfang_marsh_waterfall.m2", - value = "coilfang_marsh_waterfall.m2", - }, - { - fileId = "191767", - text = "coilfang_waterfall_type1.m2", - value = "coilfang_waterfall_type1.m2", - }, - { - fileId = "191768", - text = "coilfang_waterfall_type2.m2", - value = "coilfang_waterfall_type2.m2", - }, - { - fileId = "191769", - text = "coilfang_waterfall_type3.m2", - value = "coilfang_waterfall_type3.m2", - }, - }, - text = "waterfalls", - value = "waterfalls", + fileId = "242917", + text = "azjol_wall_long_seg.m2", + value = "azjol_wall_long_seg.m2", + }, + { + fileId = "242918", + text = "azjol_wall_long_sideangle.m2", + value = "azjol_wall_long_sideangle.m2", }, { - children = { - { - fileId = "191770", - text = "giantglasswindow01.m2", - value = "giantglasswindow01.m2", - }, - }, - text = "windows", - value = "windows", + fileId = "242919", + text = "azjol_wall_long_vertangle.m2", + value = "azjol_wall_long_vertangle.m2", + }, + { + fileId = "194182", + text = "azjol_wallend01.m2", + value = "azjol_wallend01.m2", }, }, - text = "passivedoodads", - value = "passivedoodads", + text = "walls", + value = "walls", + }, + { + children = { + { + fileId = "242920", + text = "waterfalls_azjol_uppercity.m2", + value = "waterfalls_azjol_uppercity.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, }, - text = "coilfang", - value = "coilfang", + text = "azjol-nerub", + value = "azjol-nerub", }, { children = { { children = { { - fileId = "191771", - text = "be_fence_eversong01.m2", - value = "be_fence_eversong01.m2", + fileId = "194183", + text = "bt_airport_light_red_blink.m2", + value = "bt_airport_light_red_blink.m2", }, { - fileId = "191772", - text = "be_fence_eversong02.m2", - value = "be_fence_eversong02.m2", + fileId = "194184", + text = "bt_airport_light_white_blink.m2", + value = "bt_airport_light_white_blink.m2", }, { - fileId = "191773", - text = "be_fence_eversong03.m2", - value = "be_fence_eversong03.m2", + fileId = "194185", + text = "bt_airport_light_white_static.m2", + value = "bt_airport_light_white_static.m2", }, }, - text = "fence", - value = "fence", + text = "airport", + value = "airport", }, { children = { { - fileId = "191775", - text = "be_lamppost_eversong01-optimized.m2", - value = "be_lamppost_eversong01-optimized.m2", + fileId = "194189", + text = "statue_varianwynn.m2", + value = "statue_varianwynn.m2", }, + }, + text = "alliancestatue", + value = "alliancestatue", + }, + { + children = { { - fileId = "191776", - text = "be_lamppost_eversong01.m2", - value = "be_lamppost_eversong01.m2", + fileId = "194194", + text = "borean_barnacle_plane.m2", + value = "borean_barnacle_plane.m2", + }, + { + fileId = "194195", + text = "borean_barnaclelg.m2", + value = "borean_barnaclelg.m2", + }, + { + fileId = "194196", + text = "borean_barnaclesm01.m2", + value = "borean_barnaclesm01.m2", + }, + { + fileId = "194197", + text = "borean_barnaclesm02.m2", + value = "borean_barnaclesm02.m2", + }, + { + fileId = "194198", + text = "borean_barnaclesm03.m2", + value = "borean_barnaclesm03.m2", + }, + { + fileId = "194199", + text = "borean_starfish.m2", + value = "borean_starfish.m2", }, }, - text = "lamppost", - value = "lamppost", + text = "barnacles", + value = "barnacles", }, { children = { { - fileId = "191777", - text = "be_signpost_eversong.m2", - value = "be_signpost_eversong.m2", + fileId = "194201", + text = "borean_deadorca_01.m2", + value = "borean_deadorca_01.m2", }, { - fileId = "191778", - text = "be_signpost_sign_eversong.m2", - value = "be_signpost_sign_eversong.m2", + fileId = "194202", + text = "borean_deadorca_02.m2", + value = "borean_deadorca_02.m2", + }, + { + fileId = "194204", + text = "borean_seaweed_01.m2", + value = "borean_seaweed_01.m2", + }, + { + fileId = "194205", + text = "borean_seaweed_02.m2", + value = "borean_seaweed_02.m2", + }, + { + fileId = "194206", + text = "borean_seaweed_03.m2", + value = "borean_seaweed_03.m2", + }, + { + fileId = "194208", + text = "borean_starfish_01.m2", + value = "borean_starfish_01.m2", }, }, - text = "signpost", - value = "signpost", + text = "beach", + value = "beach", }, - }, - text = "eversong", - value = "eversong", - }, - { - children = { { children = { { - children = { - { - fileId = "191780", - text = "ao_banner01.m2", - value = "ao_banner01.m2", - }, - { - fileId = "191781", - text = "ao_banner02.m2", - value = "ao_banner02.m2", - }, - { - fileId = "191783", - text = "ao_wall_hanging_01.m2", - value = "ao_wall_hanging_01.m2", - }, - { - fileId = "191784", - text = "ao_wall_hanging_02.m2", - value = "ao_wall_hanging_02.m2", - }, - { - fileId = "191785", - text = "ao_wall_hanging_03.m2", - value = "ao_wall_hanging_03.m2", - }, - { - fileId = "191786", - text = "ao_wall_hanging_04.m2", - value = "ao_wall_hanging_04.m2", - }, - }, - text = "banners", - value = "banners", + fileId = "242921", + text = "broken_bridge_pillar.m2", + value = "broken_bridge_pillar.m2", }, + }, + text = "bridgepillar", + value = "bridgepillar", + }, + { + children = { { - children = { - { - fileId = "191787", - text = "ao_barrel01.m2", - value = "ao_barrel01.m2", - }, - }, - text = "barrel", - value = "barrel", + fileId = "194211", + text = "borean_bush_01.m2", + value = "borean_bush_01.m2", }, { - children = { - { - fileId = "191790", - text = "ao_boardwalk01.m2", - value = "ao_boardwalk01.m2", - }, - { - fileId = "191791", - text = "ao_boardwalk02.m2", - value = "ao_boardwalk02.m2", - }, - { - fileId = "191792", - text = "ao_boardwalk03.m2", - value = "ao_boardwalk03.m2", - }, - { - fileId = "191793", - text = "ao_boardwalk04.m2", - value = "ao_boardwalk04.m2", - }, - { - fileId = "191794", - text = "ao_boardwalk05.m2", - value = "ao_boardwalk05.m2", - }, - { - fileId = "191795", - text = "ao_boardwalk_corner.m2", - value = "ao_boardwalk_corner.m2", - }, - }, - text = "boardwalk", - value = "boardwalk", + fileId = "194213", + text = "borean_bush_02.m2", + value = "borean_bush_02.m2", }, { - children = { - { - fileId = "191796", - text = "ao_bridgelong01.m2", - value = "ao_bridgelong01.m2", - }, - { - fileId = "191797", - text = "ao_bridgelong02.m2", - value = "ao_bridgelong02.m2", - }, - { - fileId = "191798", - text = "ao_bridgerock01.m2", - value = "ao_bridgerock01.m2", - }, - { - fileId = "191801", - text = "ao_bridgetree01.m2", - value = "ao_bridgetree01.m2", - }, - }, - text = "bridgepieces", - value = "bridgepieces", + fileId = "194215", + text = "borean_bush_04.m2", + value = "borean_bush_04.m2", }, { - children = { - { - fileId = "191802", - text = "ao_orccrate01.m2", - value = "ao_orccrate01.m2", - }, - { - fileId = "191803", - text = "ao_orccrate02.m2", - value = "ao_orccrate02.m2", - }, - { - fileId = "191804", - text = "ao_orccrate03.m2", - value = "ao_orccrate03.m2", - }, - }, - text = "crates", - value = "crates", + fileId = "194216", + text = "borean_bush_05.m2", + value = "borean_bush_05.m2", }, { - children = { - { - fileId = "191807", - text = "ao_lamppost01.m2", - value = "ao_lamppost01.m2", - }, - { - fileId = "191808", - text = "ao_lamppost02.m2", - value = "ao_lamppost02.m2", - }, - }, - text = "lampost", - value = "lampost", + fileId = "194219", + text = "borean_groundcover_01.m2", + value = "borean_groundcover_01.m2", }, { - children = { - { - fileId = "191809", - text = "ao_outpostwall01.m2", - value = "ao_outpostwall01.m2", - }, - { - fileId = "191810", - text = "ao_outpostwall02.m2", - value = "ao_outpostwall02.m2", - }, - { - fileId = "191811", - text = "ao_outpostwall03.m2", - value = "ao_outpostwall03.m2", - }, - { - fileId = "191812", - text = "ao_outpostwall04.m2", - value = "ao_outpostwall04.m2", - }, - { - fileId = "191813", - text = "ao_outpostwall05.m2", - value = "ao_outpostwall05.m2", - }, - { - fileId = "191814", - text = "ao_outpostwall06.m2", - value = "ao_outpostwall06.m2", - }, - { - fileId = "191815", - text = "ao_outpostwall07.m2", - value = "ao_outpostwall07.m2", - }, - }, - text = "outpostwalls", - value = "outpostwalls", + fileId = "194221", + text = "borean_groundcover_02.m2", + value = "borean_groundcover_02.m2", }, { - children = { - { - fileId = "191817", - text = "ao_pyre01.m2", - value = "ao_pyre01.m2", - }, - { - fileId = "191818", - text = "ao_pyre02.m2", - value = "ao_pyre02.m2", - }, - }, - text = "pyres", - value = "pyres", + fileId = "194223", + text = "borean_groundcover_03.m2", + value = "borean_groundcover_03.m2", }, { - children = { - { - fileId = "191820", - text = "ao_signpost01.m2", - value = "ao_signpost01.m2", - }, - { - fileId = "191821", - text = "ao_signpostpointer01.m2", - value = "ao_signpostpointer01.m2", - }, - }, - text = "signposts", - value = "signposts", + fileId = "194225", + text = "borean_shrub_02.m2", + value = "borean_shrub_02.m2", }, { - children = { - { - fileId = "191822", - text = "ao_sticks_01.m2", - value = "ao_sticks_01.m2", - }, - }, - text = "sticks", - value = "sticks", + fileId = "194226", + text = "borean_shrub_03.m2", + value = "borean_shrub_03.m2", }, { - children = { - { - fileId = "191823", - text = "ao_totem01.m2", - value = "ao_totem01.m2", - }, - }, - text = "totem", - value = "totem", + fileId = "194228", + text = "borean_shrub_04.m2", + value = "borean_shrub_04.m2", }, { - children = { - { - fileId = "191824", - text = "ao_windmill.m2", - value = "ao_windmill.m2", - }, - }, - text = "windmill", - value = "windmill", + fileId = "194230", + text = "borean_shrub_05_q.m2", + value = "borean_shrub_05_q.m2", }, }, - text = "ancientorc", - value = "ancientorc", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "191825", - text = "ak_alchemybottle01.m2", - value = "ak_alchemybottle01.m2", - }, - { - fileId = "191826", - text = "ak_alchemybottle02.m2", - value = "ak_alchemybottle02.m2", + fileId = "194232", + text = "borean_corrupted_crystals_01.m2", + value = "borean_corrupted_crystals_01.m2", }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { { - fileId = "191827", - text = "ak_alchemybottle03.m2", - value = "ak_alchemybottle03.m2", + fileId = "194235", + text = "borean_bubbles_01.m2", + value = "borean_bubbles_01.m2", }, { - children = { - { - fileId = "191829", - text = "ak_banner01.m2", - value = "ak_banner01.m2", - }, - }, - text = "banners", - value = "banners", + fileId = "194238", + text = "borean_geyser_01.m2", + value = "borean_geyser_01.m2", }, { - children = { - { - fileId = "191830", - text = "ak_crystalball01.m2", - value = "ak_crystalball01.m2", - }, - { - fileId = "191831", - text = "ak_crystalball02.m2", - value = "ak_crystalball02.m2", - }, - }, - text = "crystalball", - value = "crystalball", + fileId = "194240", + text = "borean_geyser_02.m2", + value = "borean_geyser_02.m2", }, { - children = { - { - fileId = "191832", - text = "ak_egg01.m2", - value = "ak_egg01.m2", - }, - { - fileId = "191833", - text = "ak_egg02.m2", - value = "ak_egg02.m2", - }, - { - fileId = "191834", - text = "ak_nest01.m2", - value = "ak_nest01.m2", - }, - { - fileId = "191835", - text = "ak_nestdebris01.m2", - value = "ak_nestdebris01.m2", - }, - }, - text = "nest", - value = "nest", + fileId = "194241", + text = "borean_geyser_03.m2", + value = "borean_geyser_03.m2", }, { - children = { - { - fileId = "191839", - text = "ak_scarecrow01.m2", - value = "ak_scarecrow01.m2", - }, - }, - text = "scarecrow", - value = "scarecrow", + fileId = "194242", + text = "borean_geysernosteam_04.m2", + value = "borean_geysernosteam_04.m2", }, { - children = { - { - fileId = "191841", - text = "ak_shelter01.m2", - value = "ak_shelter01.m2", - }, - { - fileId = "191842", - text = "ak_shelter02.m2", - value = "ak_shelter02.m2", - }, - { - fileId = "191843", - text = "ak_shelter03.m2", - value = "ak_shelter03.m2", - }, - }, - text = "shelters", - value = "shelters", + fileId = "194243", + text = "borean_geysernosteam_05.m2", + value = "borean_geysernosteam_05.m2", }, { - children = { - { - fileId = "191858", - text = "ak_torch01.m2", - value = "ak_torch01.m2", - }, - }, - text = "torch", - value = "torch", + fileId = "194244", + text = "borean_geysersteam.m2", + value = "borean_geysersteam.m2", }, { - children = { - { - fileId = "191859", - text = "ak_totem01.m2", - value = "ak_totem01.m2", - }, - { - fileId = "191860", - text = "ak_totem02.m2", - value = "ak_totem02.m2", - }, - }, - text = "totem", - value = "totem", + fileId = "194246", + text = "borean_mineralpool_01.m2", + value = "borean_mineralpool_01.m2", }, + }, + text = "geysers", + value = "geysers", + }, + { + children = { { - children = { - { - fileId = "191863", - text = "ak_alchemyset01.m2", - value = "ak_alchemyset01.m2", - }, - { - fileId = "191864", - text = "ak_blacksmithset01.m2", - value = "ak_blacksmithset01.m2", - }, - }, - text = "tradeskill", - value = "tradeskill", + fileId = "194249", + text = "borean_towerparts.m2", + value = "borean_towerparts.m2", }, }, - text = "arakkoa", - value = "arakkoa", + text = "gnometower", + value = "gnometower", }, { children = { { - children = { - { - fileId = "191874", - text = "be_ballista01.m2", - value = "be_ballista01.m2", - }, - { - fileId = "191875", - text = "be_ballistaarm.m2", - value = "be_ballistaarm.m2", - }, - { - fileId = "191876", - text = "be_ballistarail.m2", - value = "be_ballistarail.m2", - }, - { - fileId = "191877", - text = "be_ballistashield.m2", - value = "be_ballistashield.m2", - }, - { - fileId = "191878", - text = "be_ballistaslide.m2", - value = "be_ballistaslide.m2", - }, - { - fileId = "191879", - text = "be_ballistawheel.m2", - value = "be_ballistawheel.m2", - }, - { - fileId = "191880", - text = "be_ballistawinch.m2", - value = "be_ballistawinch.m2", - }, - { - fileId = "191882", - text = "be_ballistawrecked01.m2", - value = "be_ballistawrecked01.m2", - }, - { - fileId = "191885", - text = "be_statueghostlands01.m2", - value = "be_statueghostlands01.m2", - }, - }, - text = "ballista", - value = "ballista", + fileId = "194251", + text = "borean_magnataurbed_01.m2", + value = "borean_magnataurbed_01.m2", }, { - children = { - { - fileId = "191887", - text = "be_banner01.m2", - value = "be_banner01.m2", - }, - { - fileId = "191889", - text = "be_banner02.m2", - value = "be_banner02.m2", - }, - { - fileId = "191891", - text = "be_banner03.m2", - value = "be_banner03.m2", - }, - { - fileId = "191893", - text = "be_banner04.m2", - value = "be_banner04.m2", - }, - { - fileId = "191894", - text = "be_banner_kael_01.m2", - value = "be_banner_kael_01.m2", - }, - { - fileId = "191896", - text = "be_banner_kael_02.m2", - value = "be_banner_kael_02.m2", - }, - { - fileId = "191898", - text = "be_banner_kael_03.m2", - value = "be_banner_kael_03.m2", - }, - { - fileId = "191901", - text = "be_banner_shatariskyguard.m2", - value = "be_banner_shatariskyguard.m2", - }, - { - fileId = "191903", - text = "be_banner_tallblack.m2", - value = "be_banner_tallblack.m2", - }, - { - fileId = "191905", - text = "be_banner_tallblue.m2", - value = "be_banner_tallblue.m2", - }, - { - fileId = "191907", - text = "be_banner_tallpurple.m2", - value = "be_banner_tallpurple.m2", - }, - { - fileId = "191909", - text = "be_banner_tallred.m2", - value = "be_banner_tallred.m2", - }, - { - fileId = "191911", - text = "be_banner_wide_black.m2", - value = "be_banner_wide_black.m2", - }, - { - fileId = "191912", - text = "be_banner_wide_blue.m2", - value = "be_banner_wide_blue.m2", - }, - { - fileId = "191913", - text = "be_banner_wide_purple.m2", - value = "be_banner_wide_purple.m2", - }, - { - fileId = "191914", - text = "be_banner_wide_red.m2", - value = "be_banner_wide_red.m2", - }, - { - fileId = "191915", - text = "be_banner_wide_red_anim.m2", - value = "be_banner_wide_red_anim.m2", - }, - { - fileId = "191916", - text = "be_banner_wide_red_anim02.m2", - value = "be_banner_wide_red_anim02.m2", - }, - { - fileId = "191917", - text = "be_banner_wide_red_anim03.m2", - value = "be_banner_wide_red_anim03.m2", - }, - { - fileId = "191918", - text = "be_banner_wide_red_torn01.m2", - value = "be_banner_wide_red_torn01.m2", - }, - }, - text = "banners", - value = "banners", + fileId = "194254", + text = "borean_redplant_bowl_01.m2", + value = "borean_redplant_bowl_01.m2", }, { - children = { - { - fileId = "191919", - text = "be_bannister.m2", - value = "be_bannister.m2", - }, - }, - text = "bannister", - value = "bannister", + fileId = "194255", + text = "borean_redplant_bowl_02.m2", + value = "borean_redplant_bowl_02.m2", }, { - children = { - { - fileId = "191921", - text = "be_barrel_01.m2", - value = "be_barrel_01.m2", - }, - { - fileId = "242711", - text = "be_barrel_01_nocollision.m2", - value = "be_barrel_01_nocollision.m2", - }, - { - fileId = "191922", - text = "be_barrel_broken_01.m2", - value = "be_barrel_broken_01.m2", - }, - { - fileId = "191923", - text = "be_barrel_broken_02.m2", - value = "be_barrel_broken_02.m2", - }, - { - fileId = "191924", - text = "be_barrel_fruit01.m2", - value = "be_barrel_fruit01.m2", - }, - }, - text = "barrel", - value = "barrel", + fileId = "194256", + text = "borean_redplant_burningpile_01.m2", + value = "borean_redplant_burningpile_01.m2", }, { - children = { - { - fileId = "191927", - text = "be_barrierspikes01.m2", - value = "be_barrierspikes01.m2", - }, - { - fileId = "191928", - text = "be_barrierspikes02.m2", - value = "be_barrierspikes02.m2", - }, - { - fileId = "191929", - text = "be_barrierspikes03.m2", - value = "be_barrierspikes03.m2", - }, - }, - text = "barrierspikes", - value = "barrierspikes", + fileId = "194257", + text = "borean_redplant_burningpile_02.m2", + value = "borean_redplant_burningpile_02.m2", }, { - children = { - { - fileId = "191931", - text = "be_bed_01.m2", - value = "be_bed_01.m2", - }, - { - fileId = "191933", - text = "be_bed_02.m2", - value = "be_bed_02.m2", - }, - { - fileId = "191934", - text = "be_bed_wrecked_01.m2", - value = "be_bed_wrecked_01.m2", - }, - }, - text = "beds", - value = "beds", + fileId = "194258", + text = "borean_redplant_burningpile_03.m2", + value = "borean_redplant_burningpile_03.m2", }, { - children = { - { - fileId = "191936", - text = "be_bench01.m2", - value = "be_bench01.m2", - }, - { - fileId = "191938", - text = "be_bench_garden01.m2", - value = "be_bench_garden01.m2", - }, - { - fileId = "191939", - text = "be_bench_wrecked_01.m2", - value = "be_bench_wrecked_01.m2", - }, - }, - text = "benches", - value = "benches", + fileId = "194260", + text = "borean_redplant_drying_01.m2", + value = "borean_redplant_drying_01.m2", }, { - children = { - { - fileId = "191942", - text = "be_book_large01.m2", - value = "be_book_large01.m2", - }, - { - fileId = "191943", - text = "be_book_large02.m2", - value = "be_book_large02.m2", - }, - { - fileId = "191945", - text = "be_book_large05.m2", - value = "be_book_large05.m2", - }, - { - fileId = "191946", - text = "be_book_medium01.m2", - value = "be_book_medium01.m2", - }, - { - fileId = "191947", - text = "be_book_medium02.m2", - value = "be_book_medium02.m2", - }, - { - fileId = "191948", - text = "be_book_small01.m2", - value = "be_book_small01.m2", - }, - { - fileId = "191949", - text = "be_book_small02.m2", - value = "be_book_small02.m2", - }, - }, - text = "books", - value = "books", + fileId = "194261", + text = "borean_redplant_drying_02.m2", + value = "borean_redplant_drying_02.m2", }, { - children = { - { - fileId = "191954", - text = "be_bookshelf_wrecked_01.m2", - value = "be_bookshelf_wrecked_01.m2", - }, - { - fileId = "191955", - text = "be_bookshelf_wrecked_02.m2", - value = "be_bookshelf_wrecked_02.m2", - }, - { - fileId = "191956", - text = "be_bookshelfempty_01.m2", - value = "be_bookshelfempty_01.m2", - }, - { - fileId = "191957", - text = "be_bookshelfempty_02.m2", - value = "be_bookshelfempty_02.m2", - }, - { - fileId = "191958", - text = "be_bookshelffilled_01.m2", - value = "be_bookshelffilled_01.m2", - }, - { - fileId = "191959", - text = "be_bookshelffilled_02.m2", - value = "be_bookshelffilled_02.m2", - }, - { - fileId = "191960", - text = "be_bookshelfshort.m2", - value = "be_bookshelfshort.m2", - }, - { - fileId = "191961", - text = "be_bookshelfspiral.m2", - value = "be_bookshelfspiral.m2", - }, - { - fileId = "191962", - text = "be_bookshelftall.m2", - value = "be_bookshelftall.m2", - }, - }, - text = "bookshelf", - value = "bookshelf", + fileId = "194262", + text = "borean_redplant_drying_03.m2", + value = "borean_redplant_drying_03.m2", }, { - children = { - { - fileId = "191963", - text = "be_bottle01.m2", - value = "be_bottle01.m2", - }, - { - fileId = "191964", - text = "be_bottle02.m2", - value = "be_bottle02.m2", - }, - { - fileId = "191965", - text = "be_bottle03.m2", - value = "be_bottle03.m2", - }, - { - fileId = "242712", - text = "be_bottle03_nocollision.m2", - value = "be_bottle03_nocollision.m2", - }, - { - fileId = "191966", - text = "be_bottle04.m2", - value = "be_bottle04.m2", - }, - { - fileId = "242713", - text = "be_bottle04_nocollision.m2", - value = "be_bottle04_nocollision.m2", - }, - }, - text = "bottles", - value = "bottles", + fileId = "194265", + text = "magnataur_axe01.m2", + value = "magnataur_axe01.m2", }, { - children = { - { - fileId = "191969", - text = "be_mop01.m2", - value = "be_mop01.m2", - }, - }, - text = "broom", - value = "broom", + fileId = "194268", + text = "magnataur_legfoot01.m2", + value = "magnataur_legfoot01.m2", + }, + { + fileId = "194269", + text = "magnataur_legfull01.m2", + value = "magnataur_legfull01.m2", + }, + { + fileId = "194270", + text = "magnataur_legfull02.m2", + value = "magnataur_legfull02.m2", + }, + { + fileId = "194271", + text = "magnataur_legthigh01.m2", + value = "magnataur_legthigh01.m2", + }, + { + fileId = "194272", + text = "magnataur_mace01.m2", + value = "magnataur_mace01.m2", + }, + { + fileId = "194273", + text = "magnataur_ribcage01.m2", + value = "magnataur_ribcage01.m2", }, { - children = { - { - fileId = "191971", - text = "be_campfire01.m2", - value = "be_campfire01.m2", - }, - { - fileId = "191973", - text = "be_campfire02.m2", - value = "be_campfire02.m2", - }, - }, - text = "campfire", - value = "campfire", + fileId = "194274", + text = "magnataur_skull01.m2", + value = "magnataur_skull01.m2", }, { - children = { - { - fileId = "191978", - text = "be_candle_01.m2", - value = "be_candle_01.m2", - }, - { - fileId = "191979", - text = "be_candle_02.m2", - value = "be_candle_02.m2", - }, - { - fileId = "191980", - text = "be_candleabra01.m2", - value = "be_candleabra01.m2", - }, - }, - text = "candles", - value = "candles", + fileId = "194275", + text = "magnataur_skull02.m2", + value = "magnataur_skull02.m2", }, { - children = { - { - fileId = "191981", - text = "be_chair01.m2", - value = "be_chair01.m2", - }, - { - fileId = "191982", - text = "be_chair02.m2", - value = "be_chair02.m2", - }, - { - fileId = "191983", - text = "be_chair03.m2", - value = "be_chair03.m2", - }, - { - fileId = "191984", - text = "be_chair04.m2", - value = "be_chair04.m2", - }, - { - fileId = "191985", - text = "be_chair_wrecked_01.m2", - value = "be_chair_wrecked_01.m2", - }, - { - fileId = "191986", - text = "be_chair_wrecked_02.m2", - value = "be_chair_wrecked_02.m2", - }, - { - fileId = "191992", - text = "be_throne_01.m2", - value = "be_throne_01.m2", - }, - }, - text = "chairs", - value = "chairs", + fileId = "194276", + text = "magnataur_spear01.m2", + value = "magnataur_spear01.m2", }, { - children = { - { - fileId = "191994", - text = "be_chandelier01.m2", - value = "be_chandelier01.m2", - }, - }, - text = "chandelier", - value = "chandelier", + fileId = "194277", + text = "magnataur_torso01.m2", + value = "magnataur_torso01.m2", }, { - children = { - { - fileId = "191999", - text = "be_cookpot01.m2", - value = "be_cookpot01.m2", - }, - }, - text = "cookpot", - value = "cookpot", + fileId = "194278", + text = "magnataur_weaponbroken01.m2", + value = "magnataur_weaponbroken01.m2", }, { - children = { - { - fileId = "192001", - text = "be_couch01.m2", - value = "be_couch01.m2", - }, - }, - text = "couch", - value = "couch", + fileId = "194280", + text = "snobold_alter01.m2", + value = "snobold_alter01.m2", }, { - children = { - { - fileId = "192002", - text = "be_crate01.m2", - value = "be_crate01.m2", - }, - }, - text = "crate", - value = "crate", + fileId = "194281", + text = "snobold_cage_01.m2", + value = "snobold_cage_01.m2", }, { - children = { - { - fileId = "192003", - text = "be_cup01.m2", - value = "be_cup01.m2", - }, - { - fileId = "192004", - text = "be_cup02.m2", - value = "be_cup02.m2", - }, - { - fileId = "192008", - text = "be_mug01.m2", - value = "be_mug01.m2", - }, - }, - text = "cups", - value = "cups", + fileId = "194282", + text = "snobold_candle01.m2", + value = "snobold_candle01.m2", }, { - children = { - { - fileId = "192010", - text = "be_demoncrystal_01.m2", - value = "be_demoncrystal_01.m2", - }, - { - fileId = "192011", - text = "be_demoncrystal_02.m2", - value = "be_demoncrystal_02.m2", - }, - }, - text = "demoncrystals", - value = "demoncrystals", + fileId = "194283", + text = "snobold_candle02.m2", + value = "snobold_candle02.m2", }, { - children = { - { - fileId = "192014", - text = "be_demonenergycollector01.m2", - value = "be_demonenergycollector01.m2", - }, - }, - text = "demonenergycollectors", - value = "demonenergycollectors", + fileId = "194284", + text = "snobold_candle03.m2", + value = "snobold_candle03.m2", }, { - children = { - { - fileId = "192017", - text = "be_drapery_01.m2", - value = "be_drapery_01.m2", - }, - { - fileId = "192018", - text = "be_drapery_02.m2", - value = "be_drapery_02.m2", - }, - { - fileId = "192019", - text = "be_drapery_03.m2", - value = "be_drapery_03.m2", - }, - { - fileId = "192020", - text = "be_drapery_04.m2", - value = "be_drapery_04.m2", - }, - { - fileId = "192021", - text = "be_drapery_05.m2", - value = "be_drapery_05.m2", - }, - { - fileId = "192022", - text = "be_drapery_06.m2", - value = "be_drapery_06.m2", - }, - { - fileId = "312603", - text = "be_draperycircle_07.m2", - value = "be_draperycircle_07.m2", - }, - }, - text = "drapery", - value = "drapery", + fileId = "194285", + text = "snobold_candle04.m2", + value = "snobold_candle04.m2", }, { - children = { - { - fileId = "192026", - text = "be_fish01.m2", - value = "be_fish01.m2", - }, - { - fileId = "192028", - text = "be_meat01.m2", - value = "be_meat01.m2", - }, - }, - text = "food", - value = "food", + fileId = "194286", + text = "snobold_candle_group01.m2", + value = "snobold_candle_group01.m2", }, { - children = { - { - fileId = "192030", - text = "be_forge.m2", - value = "be_forge.m2", - }, - { - fileId = "192031", - text = "be_forge01.m2", - value = "be_forge01.m2", - }, - }, - text = "forge", - value = "forge", + fileId = "194287", + text = "snobold_candle_group02.m2", + value = "snobold_candle_group02.m2", }, { - children = { - { - fileId = "192034", - text = "be_fountain01.m2", - value = "be_fountain01.m2", - }, - { - fileId = "192035", - text = "be_fountain01_base.m2", - value = "be_fountain01_base.m2", - }, - { - fileId = "192045", - text = "be_fountaininnardssilvermoon.m2", - value = "be_fountaininnardssilvermoon.m2", - }, - }, - text = "fountains", - value = "fountains", + fileId = "194288", + text = "snobold_warningrock01_hibatch.m2", + value = "snobold_warningrock01_hibatch.m2", }, { - children = { - { - fileId = "192049", - text = "be_gravestone01.m2", - value = "be_gravestone01.m2", - }, - { - fileId = "192050", - text = "be_gravestone02.m2", - value = "be_gravestone02.m2", - }, - { - fileId = "192051", - text = "be_gravestone03.m2", - value = "be_gravestone03.m2", - }, - { - fileId = "192054", - text = "be_tomb01.m2", - value = "be_tomb01.m2", - }, - }, - text = "graveyard", - value = "graveyard", + fileId = "194289", + text = "snobold_warningrock02_hibatch.m2", + value = "snobold_warningrock02_hibatch.m2", }, { - children = { - { - fileId = "192055", - text = "be_hedge_hanging01.m2", - value = "be_hedge_hanging01.m2", - }, - { - fileId = "192056", - text = "be_hedge_hanging02.m2", - value = "be_hedge_hanging02.m2", - }, - { - fileId = "192057", - text = "be_hedge_hanging03.m2", - value = "be_hedge_hanging03.m2", - }, - { - fileId = "192058", - text = "be_hedge_hanging04.m2", - value = "be_hedge_hanging04.m2", - }, - { - fileId = "192059", - text = "be_hedge_hanging05.m2", - value = "be_hedge_hanging05.m2", - }, - { - fileId = "192060", - text = "be_hedge_hanging06.m2", - value = "be_hedge_hanging06.m2", - }, - { - fileId = "192061", - text = "be_hedge_hanging07.m2", - value = "be_hedge_hanging07.m2", - }, - { - fileId = "192062", - text = "be_hedge_hanging08.m2", - value = "be_hedge_hanging08.m2", - }, - { - fileId = "192063", - text = "be_hedge_hanging09.m2", - value = "be_hedge_hanging09.m2", - }, - { - fileId = "192064", - text = "be_hedge_hanging10.m2", - value = "be_hedge_hanging10.m2", - }, - { - fileId = "192065", - text = "be_hedge_hanging11.m2", - value = "be_hedge_hanging11.m2", - }, - { - fileId = "192066", - text = "be_hedge_hanging12.m2", - value = "be_hedge_hanging12.m2", - }, - { - fileId = "192071", - text = "silvermoonhedge01.m2", - value = "silvermoonhedge01.m2", - }, - }, - text = "hedge", - value = "hedge", + fileId = "194290", + text = "snobold_warningrock03.m2", + value = "snobold_warningrock03.m2", + }, + }, + text = "magnatauritems", + value = "magnatauritems", + }, + { + children = { + { + fileId = "194293", + text = "borean_rock_01.m2", + value = "borean_rock_01.m2", }, { - children = { - { - fileId = "192073", - text = "be_hookah_01.m2", - value = "be_hookah_01.m2", - }, - { - fileId = "192074", - text = "be_hookah_02.m2", - value = "be_hookah_02.m2", - }, - }, - text = "hookah", - value = "hookah", + fileId = "194294", + text = "borean_rock_02.m2", + value = "borean_rock_02.m2", }, { - children = { - { - fileId = "192076", - text = "be_incense_01.m2", - value = "be_incense_01.m2", - }, - }, - text = "incense", - value = "incense", + fileId = "194295", + text = "borean_rock_03.m2", + value = "borean_rock_03.m2", }, { - children = { - { - fileId = "192078", - text = "be_harp01.m2", - value = "be_harp01.m2", - }, - { - fileId = "192080", - text = "be_lute01.m2", - value = "be_lute01.m2", - }, - }, - text = "instruments", - value = "instruments", + fileId = "194296", + text = "borean_rock_04.m2", + value = "borean_rock_04.m2", }, { - children = { - { - fileId = "192082", - text = "be_jar_03.m2", - value = "be_jar_03.m2", - }, - { - fileId = "192083", - text = "be_jar_04.m2", - value = "be_jar_04.m2", - }, - }, - text = "jars", - value = "jars", + fileId = "194297", + text = "borean_rock_05.m2", + value = "borean_rock_05.m2", }, { - children = { - { - fileId = "192085", - text = "be_magicalknickknack02.m2", - value = "be_magicalknickknack02.m2", - }, - { - fileId = "192087", - text = "be_magicalknickknack03.m2", - value = "be_magicalknickknack03.m2", - }, - { - fileId = "192089", - text = "be_magicalknickknack04.m2", - value = "be_magicalknickknack04.m2", - }, - }, - text = "knickknacks", - value = "knickknacks", + fileId = "194299", + text = "borean_rocklarge_01.m2", + value = "borean_rocklarge_01.m2", }, { - children = { - { - fileId = "192091", - text = "be_lamp01.m2", - value = "be_lamp01.m2", - }, - }, - text = "lamp", - value = "lamp", + fileId = "194301", + text = "borean_rocklarge_01_snowy.m2", + value = "borean_rocklarge_01_snowy.m2", }, { - children = { - { - fileId = "192093", - text = "be_lantern01.m2", - value = "be_lantern01.m2", - }, - }, - text = "lantern", - value = "lantern", + fileId = "194303", + text = "borean_rocklarge_02.m2", + value = "borean_rocklarge_02.m2", }, { - children = { - { - fileId = "192094", - text = "be_lavapool.m2", - value = "be_lavapool.m2", - }, - }, - text = "lava", - value = "lava", + fileId = "194305", + text = "borean_rocklarge_02_snowy.m2", + value = "borean_rocklarge_02_snowy.m2", }, { - children = { - { - fileId = "192095", - text = "be_loom_01.m2", - value = "be_loom_01.m2", - }, - }, - text = "loom", - value = "loom", + fileId = "194307", + text = "borean_rocklarge_03.m2", + value = "borean_rocklarge_03.m2", }, { - children = { - { - fileId = "192098", - text = "be_merchantstand01.m2", - value = "be_merchantstand01.m2", - }, - { - fileId = "192099", - text = "be_merchantstand02.m2", - value = "be_merchantstand02.m2", - }, - { - fileId = "192100", - text = "be_merchantstand03.m2", - value = "be_merchantstand03.m2", - }, - { - fileId = "242714", - text = "be_merchantstand04.m2", - value = "be_merchantstand04.m2", - }, - }, - text = "merchantstand", - value = "merchantstand", + fileId = "194309", + text = "borean_rocklarge_03_snowy.m2", + value = "borean_rocklarge_03_snowy.m2", }, { - children = { - { - fileId = "192103", - text = "be_roadpillar01.m2", - value = "be_roadpillar01.m2", - }, - }, - text = "pillar", - value = "pillar", + fileId = "194310", + text = "borean_rocklarge_04.m2", + value = "borean_rocklarge_04.m2", }, { - children = { - { - fileId = "192105", - text = "be_pillow_01.m2", - value = "be_pillow_01.m2", - }, - { - fileId = "192106", - text = "be_pillow_02.m2", - value = "be_pillow_02.m2", - }, - { - fileId = "192107", - text = "be_pillow_03.m2", - value = "be_pillow_03.m2", - }, - { - fileId = "192108", - text = "be_pillow_04.m2", - value = "be_pillow_04.m2", - }, - }, - text = "pillows", - value = "pillows", + fileId = "194311", + text = "borean_rocklarge_04_snowy.m2", + value = "borean_rocklarge_04_snowy.m2", }, { - children = { - { - fileId = "192113", - text = "be_planetarium.m2", - value = "be_planetarium.m2", - }, - { - fileId = "192114", - text = "be_planetarium_active.m2", - value = "be_planetarium_active.m2", - }, - { - fileId = "192115", - text = "be_planetariumdestroyed01.m2", - value = "be_planetariumdestroyed01.m2", - }, - { - fileId = "192116", - text = "be_planetariumdestroyed02.m2", - value = "be_planetariumdestroyed02.m2", - }, - { - fileId = "192117", - text = "be_planetariumdestroyed03.m2", - value = "be_planetariumdestroyed03.m2", - }, - { - fileId = "192118", - text = "be_planetariumdestroyed04.m2", - value = "be_planetariumdestroyed04.m2", - }, - }, - text = "planetarium", - value = "planetarium", + fileId = "194312", + text = "borean_rocklarge_05.m2", + value = "borean_rocklarge_05.m2", }, { - children = { - { - fileId = "192120", - text = "be_planter_flowers_01.m2", - value = "be_planter_flowers_01.m2", - }, - { - fileId = "192121", - text = "be_planter_long_01.m2", - value = "be_planter_long_01.m2", - }, - { - fileId = "192122", - text = "be_planter_long_02.m2", - value = "be_planter_long_02.m2", - }, - { - fileId = "192123", - text = "be_planter_long_03.m2", - value = "be_planter_long_03.m2", - }, - { - fileId = "192124", - text = "be_planter_medium_01.m2", - value = "be_planter_medium_01.m2", - }, - { - fileId = "192125", - text = "be_planter_medium_02.m2", - value = "be_planter_medium_02.m2", - }, - { - fileId = "192126", - text = "be_planter_medium_03.m2", - value = "be_planter_medium_03.m2", - }, - { - fileId = "192127", - text = "be_planter_short_01.m2", - value = "be_planter_short_01.m2", - }, - { - fileId = "192128", - text = "be_planter_short_02.m2", - value = "be_planter_short_02.m2", - }, - { - fileId = "192129", - text = "be_planter_short_03.m2", - value = "be_planter_short_03.m2", - }, - }, - text = "planters", - value = "planters", + fileId = "194313", + text = "borean_rocklarge_05_snowy.m2", + value = "borean_rocklarge_05_snowy.m2", }, { - children = { - { - fileId = "192131", - text = "be_podium01.m2", - value = "be_podium01.m2", - }, - }, - text = "podium", - value = "podium", + fileId = "194314", + text = "borean_rocklarge_06.m2", + value = "borean_rocklarge_06.m2", }, { - children = { - { - fileId = "192133", - text = "be_signs_wanted.m2", - value = "be_signs_wanted.m2", - }, - }, - text = "posters", - value = "posters", + fileId = "194315", + text = "borean_rocklarge_07.m2", + value = "borean_rocklarge_07.m2", }, { - children = { - { - fileId = "192134", - text = "bloodelf_powerorb_green.m2", - value = "bloodelf_powerorb_green.m2", - }, - { - fileId = "192135", - text = "bloodelf_powerorb_red.m2", - value = "bloodelf_powerorb_red.m2", - }, - { - fileId = "350858", - text = "bloodelf_powerorb_red_nosound.m2", - value = "bloodelf_powerorb_red_nosound.m2", - }, - }, - text = "powerorb", - value = "powerorb", + fileId = "194316", + text = "borean_rocklarge_08.m2", + value = "borean_rocklarge_08.m2", }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { { - children = { - { - fileId = "192149", - text = "be_roadsign_sign01.m2", - value = "be_roadsign_sign01.m2", - }, - }, - text = "roadsign", - value = "roadsign", + fileId = "194318", + text = "borean_rope_01.m2", + value = "borean_rope_01.m2", }, + }, + text = "ropes", + value = "ropes", + }, + { + children = { { - children = { - { - fileId = "192151", - text = "be_rowboat.m2", - value = "be_rowboat.m2", - }, - { - fileId = "192153", - text = "be_rowboatwrecked.m2", - value = "be_rowboatwrecked.m2", - }, - }, - text = "rowboat", - value = "rowboat", + fileId = "343852", + text = "nd_scourgewalls_skulls.m2", + value = "nd_scourgewalls_skulls.m2", }, + }, + text = "scourgewalls", + value = "scourgewalls", + }, + { + children = { { - children = { - { - fileId = "192154", - text = "be_rug_large01.m2", - value = "be_rug_large01.m2", - }, - { - fileId = "192155", - text = "be_rug_large02.m2", - value = "be_rug_large02.m2", - }, - { - fileId = "192156", - text = "be_rug_largeruined01.m2", - value = "be_rug_largeruined01.m2", - }, - { - fileId = "192157", - text = "be_rug_largeruined02.m2", - value = "be_rug_largeruined02.m2", - }, - { - fileId = "192159", - text = "be_rug_medium01.m2", - value = "be_rug_medium01.m2", - }, - { - fileId = "192160", - text = "be_rug_medium02.m2", - value = "be_rug_medium02.m2", - }, - { - fileId = "192161", - text = "be_rug_mediumruined01.m2", - value = "be_rug_mediumruined01.m2", - }, - { - fileId = "192162", - text = "be_rug_mediumruined02.m2", - value = "be_rug_mediumruined02.m2", - }, - { - fileId = "192163", - text = "be_rug_small01.m2", - value = "be_rug_small01.m2", - }, - { - fileId = "192164", - text = "be_rug_small02.m2", - value = "be_rug_small02.m2", - }, - { - fileId = "192165", - text = "be_rug_smallruined01.m2", - value = "be_rug_smallruined01.m2", - }, - { - fileId = "192166", - text = "be_rug_smallruined02.m2", - value = "be_rug_smallruined02.m2", - }, - }, - text = "rugs", - value = "rugs", + fileId = "194320", + text = "borean_snowpile_01.m2", + value = "borean_snowpile_01.m2", }, { - children = { - { - fileId = "192173", - text = "be_runestone01.m2", - value = "be_runestone01.m2", - }, - }, - text = "runestone", - value = "runestone", + fileId = "194321", + text = "borean_snowpile_02.m2", + value = "borean_snowpile_02.m2", }, { - children = { - { - fileId = "192175", - text = "be_sconce01.m2", - value = "be_sconce01.m2", - }, - { - fileId = "192176", - text = "be_sconce02.m2", - value = "be_sconce02.m2", - }, - }, - text = "sconce", - value = "sconce", + fileId = "194322", + text = "borean_snowpile_03.m2", + value = "borean_snowpile_03.m2", }, { - children = { - { - fileId = "192179", - text = "be_scryingorb.m2", - value = "be_scryingorb.m2", - }, - { - fileId = "192180", - text = "be_scryingorb_epic.m2", - value = "be_scryingorb_epic.m2", - }, - }, - text = "scryingorb", - value = "scryingorb", + fileId = "194323", + text = "borean_snowpile_04.m2", + value = "borean_snowpile_04.m2", }, + }, + text = "snowpiles", + value = "snowpiles", + }, + { + children = { { - children = { - { - fileId = "192181", - text = "be_shield01.m2", - value = "be_shield01.m2", - }, - { - fileId = "192182", - text = "be_shield02.m2", - value = "be_shield02.m2", - }, - { - fileId = "192183", - text = "be_shield03.m2", - value = "be_shield03.m2", - }, - }, - text = "shield", - value = "shield", + fileId = "194324", + text = "borean_flag_03.m2", + value = "borean_flag_03.m2", }, { - children = { - { - fileId = "192184", - text = "be_signs_alchemy.m2", - value = "be_signs_alchemy.m2", - }, - { - fileId = "192186", - text = "be_signs_axe.m2", - value = "be_signs_axe.m2", - }, - { - fileId = "192188", - text = "be_signs_bank.m2", - value = "be_signs_bank.m2", - }, - { - fileId = "192190", - text = "be_signs_book.m2", - value = "be_signs_book.m2", - }, - { - fileId = "192192", - text = "be_signs_bow.m2", - value = "be_signs_bow.m2", - }, - { - fileId = "192194", - text = "be_signs_bread.m2", - value = "be_signs_bread.m2", - }, - { - fileId = "192196", - text = "be_signs_cheese.m2", - value = "be_signs_cheese.m2", - }, - { - fileId = "192198", - text = "be_signs_cooking.m2", - value = "be_signs_cooking.m2", - }, - { - fileId = "192200", - text = "be_signs_drink.m2", - value = "be_signs_drink.m2", - }, - { - fileId = "192202", - text = "be_signs_engineering.m2", - value = "be_signs_engineering.m2", - }, - { - fileId = "192204", - text = "be_signs_generalshop.m2", - value = "be_signs_generalshop.m2", - }, - { - fileId = "192206", - text = "be_signs_helm.m2", - value = "be_signs_helm.m2", - }, - { - fileId = "192208", - text = "be_signs_herbalism.m2", - value = "be_signs_herbalism.m2", - }, - { - fileId = "192210", - text = "be_signs_meat.m2", - value = "be_signs_meat.m2", - }, - { - fileId = "192212", - text = "be_signs_poison.m2", - value = "be_signs_poison.m2", - }, - { - fileId = "192214", - text = "be_signs_shield.m2", - value = "be_signs_shield.m2", - }, - { - fileId = "192216", - text = "be_signs_staff.m2", - value = "be_signs_staff.m2", - }, - { - fileId = "192218", - text = "be_signs_sword.m2", - value = "be_signs_sword.m2", - }, - { - fileId = "192220", - text = "be_signs_tailor.m2", - value = "be_signs_tailor.m2", - }, - { - fileId = "192222", - text = "be_signs_tavern.m2", - value = "be_signs_tavern.m2", - }, - }, - text = "shopsigns", - value = "shopsigns", + fileId = "194325", + text = "borean_flag_04.m2", + value = "borean_flag_04.m2", }, { - children = { - { - fileId = "192224", - text = "ghostlandsshroom01.m2", - value = "ghostlandsshroom01.m2", - }, - { - fileId = "192228", - text = "ghostlandssporemound01.m2", - value = "ghostlandssporemound01.m2", - }, - }, - text = "shrooms", - value = "shrooms", + fileId = "194326", + text = "borean_flag_05.m2", + value = "borean_flag_05.m2", }, { - children = { - { - fileId = "192229", - text = "be_statue01.m2", - value = "be_statue01.m2", - }, - { - fileId = "192230", - text = "be_statue02.m2", - value = "be_statue02.m2", - }, - { - fileId = "192232", - text = "be_statuebig.m2", - value = "be_statuebig.m2", - }, - { - fileId = "192234", - text = "be_statuemale.m2", - value = "be_statuemale.m2", - }, - { - fileId = "192236", - text = "be_statueranger.m2", - value = "be_statueranger.m2", - }, - }, - text = "statues", - value = "statues", + fileId = "194327", + text = "borean_flags_01.m2", + value = "borean_flags_01.m2", }, { - children = { - { - fileId = "192242", - text = "be_table_large01.m2", - value = "be_table_large01.m2", - }, - { - fileId = "192243", - text = "be_table_large02.m2", - value = "be_table_large02.m2", - }, - { - fileId = "192244", - text = "be_table_large03.m2", - value = "be_table_large03.m2", - }, - { - fileId = "192245", - text = "be_table_small01.m2", - value = "be_table_small01.m2", - }, - { - fileId = "192247", - text = "be_table_wrecked_01.m2", - value = "be_table_wrecked_01.m2", - }, - { - fileId = "192248", - text = "be_table_wrecked_02.m2", - value = "be_table_wrecked_02.m2", - }, - }, - text = "tables", - value = "tables", + fileId = "194329", + text = "borean_flags_02.m2", + value = "borean_flags_02.m2", }, + }, + text = "stoneflags", + value = "stoneflags", + }, + { + children = { { - children = { - { - fileId = "192250", - text = "be_teleporter_01.m2", - value = "be_teleporter_01.m2", - }, - }, - text = "teleporter", - value = "teleporter", + fileId = "194333", + text = "borean_tuskarrstatue_01.m2", + value = "borean_tuskarrstatue_01.m2", }, { - children = { - { - fileId = "192252", - text = "be_tent01.m2", - value = "be_tent01.m2", - }, - { - fileId = "192253", - text = "be_tent02.m2", - value = "be_tent02.m2", - }, - { - fileId = "192254", - text = "be_tent03.m2", - value = "be_tent03.m2", - }, - { - fileId = "192255", - text = "be_tent04.m2", - value = "be_tent04.m2", - }, - { - fileId = "192257", - text = "be_tentwrecked01.m2", - value = "be_tentwrecked01.m2", - }, - { - fileId = "192258", - text = "be_tentwrecked02.m2", - value = "be_tentwrecked02.m2", - }, - }, - text = "tents", - value = "tents", + fileId = "194334", + text = "borean_tuskarrstatue_03.m2", + value = "borean_tuskarrstatue_03.m2", }, { - children = { - { - fileId = "192262", - text = "be_translocator.m2", - value = "be_translocator.m2", - }, - { - fileId = "192266", - text = "be_translocator_minor.m2", - value = "be_translocator_minor.m2", - }, - }, - text = "translocator", - value = "translocator", + fileId = "194335", + text = "borean_tuskarrstatue_broken_01.m2", + value = "borean_tuskarrstatue_broken_01.m2", }, + }, + text = "stoneheads", + value = "stoneheads", + }, + }, + text = "boreantundra", + value = "boreantundra", + }, + { + children = { + { + children = { { - children = { - { - fileId = "192279", - text = "ghostlandssmalltree01.m2", - value = "ghostlandssmalltree01.m2", - }, - { - fileId = "192280", - text = "ghostlandssmalltree02.m2", - value = "ghostlandssmalltree02.m2", - }, - { - fileId = "192281", - text = "ghostlandssmalltree03.m2", - value = "ghostlandssmalltree03.m2", - }, - { - fileId = "192282", - text = "ghostlandstree01.m2", - value = "ghostlandstree01.m2", - }, - { - fileId = "192283", - text = "ghostlandstree02.m2", - value = "ghostlandstree02.m2", - }, - { - fileId = "192284", - text = "ghostlandstree03.m2", - value = "ghostlandstree03.m2", - }, - { - fileId = "192285", - text = "ghostlandstree04.m2", - value = "ghostlandstree04.m2", - }, - { - fileId = "192286", - text = "ghostlandstree05.m2", - value = "ghostlandstree05.m2", - }, - { - fileId = "192287", - text = "silvermoonbush01.m2", - value = "silvermoonbush01.m2", - }, - { - fileId = "192289", - text = "silvermoonbush02.m2", - value = "silvermoonbush02.m2", - }, - { - fileId = "192291", - text = "silvermoonbush03.m2", - value = "silvermoonbush03.m2", - }, - { - fileId = "192292", - text = "silvermoonbush04.m2", - value = "silvermoonbush04.m2", - }, - { - fileId = "192293", - text = "silvermoontree09.m2", - value = "silvermoontree09.m2", - }, - { - fileId = "192294", - text = "silvermoontree10.m2", - value = "silvermoontree10.m2", - }, - }, - text = "trees", - value = "trees", + fileId = "242922", + text = "chamber_lavafalls_01.m2", + value = "chamber_lavafalls_01.m2", }, { - children = { - { - fileId = "192299", - text = "be_wagon.m2", - value = "be_wagon.m2", - }, - { - fileId = "192300", - text = "be_wagon02.m2", - value = "be_wagon02.m2", - }, - { - fileId = "192303", - text = "be_wagon_wrecked.m2", - value = "be_wagon_wrecked.m2", - }, - }, - text = "wagon", - value = "wagon", + fileId = "242923", + text = "chamber_lavafalls_02.m2", + value = "chamber_lavafalls_02.m2", }, { - children = { - { - fileId = "192306", - text = "be_weaponrack_01.m2", - value = "be_weaponrack_01.m2", - }, - { - fileId = "192307", - text = "be_weaponrack_02.m2", - value = "be_weaponrack_02.m2", - }, - }, - text = "weaponracks", - value = "weaponracks", + fileId = "242924", + text = "chamber_lavafalls_03.m2", + value = "chamber_lavafalls_03.m2", }, { - children = { - { - fileId = "192309", - text = "be_knife01.m2", - value = "be_knife01.m2", - }, - { - fileId = "192310", - text = "be_knife02.m2", - value = "be_knife02.m2", - }, - { - fileId = "192311", - text = "be_knife03.m2", - value = "be_knife03.m2", - }, - { - fileId = "192312", - text = "be_stave01.m2", - value = "be_stave01.m2", - }, - { - fileId = "192313", - text = "be_stave02.m2", - value = "be_stave02.m2", - }, - { - fileId = "192314", - text = "be_sword01.m2", - value = "be_sword01.m2", - }, - { - fileId = "192315", - text = "be_sword02.m2", - value = "be_sword02.m2", - }, - { - fileId = "192316", - text = "be_sword03.m2", - value = "be_sword03.m2", - }, - }, - text = "weapons", - value = "weapons", + fileId = "242925", + text = "chamber_lavafalls_04.m2", + value = "chamber_lavafalls_04.m2", + }, + { + fileId = "242926", + text = "chamber_lavafalls_05.m2", + value = "chamber_lavafalls_05.m2", + }, + { + fileId = "242927", + text = "chamber_lavafalls_06.m2", + value = "chamber_lavafalls_06.m2", + }, + { + fileId = "242928", + text = "chamber_lavafountain01.m2", + value = "chamber_lavafountain01.m2", }, }, - text = "bloodelf", - value = "bloodelf", + text = "aspects_lavafalls", + value = "aspects_lavafalls", }, + }, + text = "chamber_aspects_black", + value = "chamber_aspects_black", + }, + { + children = { { children = { { - children = { - { - fileId = "192317", - text = "bu_banner_01.m2", - value = "bu_banner_01.m2", - }, - { - fileId = "192318", - text = "bu_banner_02.m2", - value = "bu_banner_02.m2", - }, - }, - text = "banners", - value = "banners", + fileId = "194337", + text = "coldarraberry_bush_01.m2", + value = "coldarraberry_bush_01.m2", }, { - children = { - { - fileId = "192324", - text = "bu_brazier_01.m2", - value = "bu_brazier_01.m2", - }, - }, - text = "braziers", - value = "braziers", + fileId = "194338", + text = "coldarrafrosty_bush01.m2", + value = "coldarrafrosty_bush01.m2", }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { { - children = { - { - fileId = "192327", - text = "bu_cannon_01.m2", - value = "bu_cannon_01.m2", - }, - { - fileId = "192328", - text = "bu_cannon_base.m2", - value = "bu_cannon_base.m2", - }, - { - fileId = "192329", - text = "bu_cannon_base_02.m2", - value = "bu_cannon_base_02.m2", - }, - }, - text = "cannon", - value = "cannon", + fileId = "194339", + text = "camouflagebubble_coldarra.m2", + value = "camouflagebubble_coldarra.m2", }, + }, + text = "camouflagebubble", + value = "camouflagebubble", + }, + { + fileId = "194345", + text = "coldarralocus.m2", + value = "coldarralocus.m2", + }, + { + children = { { - children = { - { - fileId = "192331", - text = "bu_crystalforge.m2", - value = "bu_crystalforge.m2", - }, - { - fileId = "192332", - text = "bu_crystalforgecontroller.m2", - value = "bu_crystalforgecontroller.m2", - }, - }, - text = "crystalforge", - value = "crystalforge", + fileId = "194348", + text = "coldarratree_stump01.m2", + value = "coldarratree_stump01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "coldarra", + value = "coldarra", + }, + { + children = { + { + children = { + { + fileId = "242931", + text = "camouflagebubble_crystalsong.m2", + value = "camouflagebubble_crystalsong.m2", }, + }, + text = "bubble", + value = "bubble", + }, + { + children = { { - children = { - { - fileId = "192333", - text = "felcannonballs01.m2", - value = "felcannonballs01.m2", - }, - { - fileId = "192334", - text = "felcannonballs02.m2", - value = "felcannonballs02.m2", - }, - }, - text = "felcannonballs", - value = "felcannonballs", + fileId = "194351", + text = "crystalsong_rocka.m2", + value = "crystalsong_rocka.m2", + }, + { + fileId = "194352", + text = "crystalsong_rockb.m2", + value = "crystalsong_rockb.m2", + }, + { + fileId = "194353", + text = "crystalsong_rockc.m2", + value = "crystalsong_rockc.m2", + }, + { + fileId = "194354", + text = "crystalsong_rockd.m2", + value = "crystalsong_rockd.m2", + }, + { + fileId = "194356", + text = "crystalsongaspenrock01.m2", + value = "crystalsongaspenrock01.m2", + }, + { + fileId = "194357", + text = "crystalsongaspenrock02.m2", + value = "crystalsongaspenrock02.m2", + }, + { + fileId = "194358", + text = "crystalsongaspenrock03.m2", + value = "crystalsongaspenrock03.m2", }, { - children = { - { - fileId = "192335", - text = "bu_felreaver_01.m2", - value = "bu_felreaver_01.m2", - }, - { - fileId = "192336", - text = "bu_felreaver_02.m2", - value = "bu_felreaver_02.m2", - }, - { - fileId = "192337", - text = "bu_felreaver_03.m2", - value = "bu_felreaver_03.m2", - }, - { - fileId = "192338", - text = "bu_felreaver_04.m2", - value = "bu_felreaver_04.m2", - }, - { - fileId = "192339", - text = "bu_felreaver_05.m2", - value = "bu_felreaver_05.m2", - }, - { - fileId = "192340", - text = "bu_felreaver_06.m2", - value = "bu_felreaver_06.m2", - }, - }, - text = "felreaver", - value = "felreaver", + fileId = "194359", + text = "crystalsongaspenrock04.m2", + value = "crystalsongaspenrock04.m2", }, { - children = { - { - fileId = "192342", - text = "bu_generator_01.m2", - value = "bu_generator_01.m2", - }, - }, - text = "generator", - value = "generator", + fileId = "194360", + text = "crystalsongaspenrock05.m2", + value = "crystalsongaspenrock05.m2", }, { - children = { - { - fileId = "192343", - text = "bu_junk_01.m2", - value = "bu_junk_01.m2", - }, - { - fileId = "192344", - text = "bu_junk_02.m2", - value = "bu_junk_02.m2", - }, - { - fileId = "192346", - text = "bu_oblisk_01.m2", - value = "bu_oblisk_01.m2", - }, - { - fileId = "192347", - text = "bu_smoke_stack_01.m2", - value = "bu_smoke_stack_01.m2", - }, - }, - text = "ruins", - value = "ruins", + fileId = "194361", + text = "crystalsongaspenrock06.m2", + value = "crystalsongaspenrock06.m2", }, { - children = { - { - fileId = "192349", - text = "bu_teleporter_01.m2", - value = "bu_teleporter_01.m2", - }, - { - fileId = "192350", - text = "bu_teleporter_02.m2", - value = "bu_teleporter_02.m2", - }, - }, - text = "teleporter", - value = "teleporter", + fileId = "194363", + text = "crystalsongmagicrock01.m2", + value = "crystalsongmagicrock01.m2", }, { - children = { - { - fileId = "192354", - text = "bu_forge_01.m2", - value = "bu_forge_01.m2", - }, - }, - text = "tradeskill", - value = "tradeskill", + fileId = "194364", + text = "crystalsongmagicrock02.m2", + value = "crystalsongmagicrock02.m2", + }, + { + fileId = "194365", + text = "crystalsongmagicrock03.m2", + value = "crystalsongmagicrock03.m2", }, }, - text = "burninglegion", - value = "burninglegion", + text = "rocks", + value = "rocks", }, { children = { { - children = { - { - fileId = "192356", - text = "dr_banner01.m2", - value = "dr_banner01.m2", - }, - }, - text = "banner", - value = "banner", - }, - { - children = { - { - fileId = "192358", - text = "draenei_bed01.m2", - value = "draenei_bed01.m2", - }, - }, - text = "bed", - value = "bed", - }, - { - children = { - { - fileId = "192359", - text = "dr_bench_01.m2", - value = "dr_bench_01.m2", - }, - }, - text = "bench", - value = "bench", + fileId = "242933", + text = "crystalsong_ruins_column_01.m2", + value = "crystalsong_ruins_column_01.m2", }, { - children = { - { - fileId = "192362", - text = "dr_anvil_01.m2", - value = "dr_anvil_01.m2", - }, - { - fileId = "192363", - text = "dr_forge_01.m2", - value = "dr_forge_01.m2", - }, - }, - text = "blacksmith", - value = "blacksmith", + fileId = "242934", + text = "crystalsong_ruins_ramp_01.m2", + value = "crystalsong_ruins_ramp_01.m2", }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { { - children = { - { - fileId = "192364", - text = "dr_bottle_01.m2", - value = "dr_bottle_01.m2", - }, - { - fileId = "192365", - text = "dr_bottle_02.m2", - value = "dr_bottle_02.m2", - }, - }, - text = "bottles", - value = "bottles", + fileId = "194366", + text = "crystalsong_glow01.m2", + value = "crystalsong_glow01.m2", }, { - children = { - { - fileId = "192367", - text = "dr_bowl_01.m2", - value = "dr_bowl_01.m2", - }, - { - fileId = "192368", - text = "dr_bowl_02.m2", - value = "dr_bowl_02.m2", - }, - }, - text = "bowls", - value = "bowls", + fileId = "194368", + text = "crystalsong_sparkles01.m2", + value = "crystalsong_sparkles01.m2", }, { - children = { - { - fileId = "192371", - text = "dr_brazier_01.m2", - value = "dr_brazier_01.m2", - }, - { - fileId = "192373", - text = "dr_brazier_02.m2", - value = "dr_brazier_02.m2", - }, - { - fileId = "192374", - text = "dr_brazier_03.m2", - value = "dr_brazier_03.m2", - }, - }, - text = "brazier", - value = "brazier", + fileId = "194369", + text = "crystalsong_sparkles02.m2", + value = "crystalsong_sparkles02.m2", }, { - children = { - { - fileId = "192375", - text = "dr_cable_medium.m2", - value = "dr_cable_medium.m2", - }, - { - fileId = "192376", - text = "dr_cable_thin.m2", - value = "dr_cable_thin.m2", - }, - { - fileId = "192377", - text = "dr_cable_wide.m2", - value = "dr_cable_wide.m2", - }, - }, - text = "cables", - value = "cables", + fileId = "194370", + text = "crystalsong_sparkles03.m2", + value = "crystalsong_sparkles03.m2", }, + }, + text = "sparkles", + value = "sparkles", + }, + { + children = { { - children = { - { - fileId = "192379", - text = "dr_chandelier_01.m2", - value = "dr_chandelier_01.m2", - }, - }, - text = "chandelier", - value = "chandelier", + fileId = "242936", + text = "crystallineheartwood01.m2", + value = "crystallineheartwood01.m2", }, { - children = { - { - fileId = "192381", - text = "dr_cookpot_01.m2", - value = "dr_cookpot_01.m2", - }, - }, - text = "cookpots", - value = "cookpots", + fileId = "194409", + text = "crystalsongaspenbush01.m2", + value = "crystalsongaspenbush01.m2", }, { - children = { - { - fileId = "192382", - text = "dr_crashplate01.m2", - value = "dr_crashplate01.m2", - }, - { - fileId = "192383", - text = "dr_crashplate02.m2", - value = "dr_crashplate02.m2", - }, - }, - text = "crashplate", - value = "crashplate", + fileId = "194410", + text = "crystalsongaspenbush02.m2", + value = "crystalsongaspenbush02.m2", }, { - children = { - { - fileId = "192387", - text = "dr_crate_01.m2", - value = "dr_crate_01.m2", - }, - { - fileId = "192388", - text = "dr_crate_02.m2", - value = "dr_crate_02.m2", - }, - }, - text = "crates", - value = "crates", + fileId = "194411", + text = "crystalsongaspentree01.m2", + value = "crystalsongaspentree01.m2", }, { - children = { - { - fileId = "192390", - text = "dr_cryopod_bottom.m2", - value = "dr_cryopod_bottom.m2", - }, - { - fileId = "192391", - text = "dr_cryopod_intact.m2", - value = "dr_cryopod_intact.m2", - }, - { - fileId = "192392", - text = "dr_cryopod_top.m2", - value = "dr_cryopod_top.m2", - }, - { - fileId = "192393", - text = "dr_cryopod_wrecked.m2", - value = "dr_cryopod_wrecked.m2", - }, - }, - text = "cryopods", - value = "cryopods", + fileId = "194412", + text = "crystalsongaspentree02.m2", + value = "crystalsongaspentree02.m2", }, { - children = { - { - fileId = "192397", - text = "hellfirecrystalformation_01_pink.m2", - value = "hellfirecrystalformation_01_pink.m2", - }, - }, - text = "crystals", - value = "crystals", + fileId = "194413", + text = "crystalsongaspentree03.m2", + value = "crystalsongaspentree03.m2", }, { - children = { - { - fileId = "192398", - text = "dr_cup_01.m2", - value = "dr_cup_01.m2", - }, - { - fileId = "192399", - text = "dr_cup_02.m2", - value = "dr_cup_02.m2", - }, - }, - text = "cups", - value = "cups", + fileId = "194414", + text = "crystalsongaspentree04.m2", + value = "crystalsongaspentree04.m2", }, { - children = { - { - fileId = "192401", - text = "tech_arch01.m2", - value = "tech_arch01.m2", - }, - { - fileId = "192402", - text = "tech_arch02.m2", - value = "tech_arch02.m2", - }, - }, - text = "draenei_arches", - value = "draenei_arches", + fileId = "194415", + text = "crystalsongaspentree05.m2", + value = "crystalsongaspentree05.m2", }, { - children = { - { - fileId = "192403", - text = "draenei_wreckage_claw.m2", - value = "draenei_wreckage_claw.m2", - }, - { - fileId = "192404", - text = "draenei_wreckage_frame.m2", - value = "draenei_wreckage_frame.m2", - }, - { - fileId = "192405", - text = "draenei_wreckage_smallwindow.m2", - value = "draenei_wreckage_smallwindow.m2", - }, - }, - text = "draenei_wreckage", - value = "draenei_wreckage", + fileId = "194416", + text = "crystalsongaspentree06.m2", + value = "crystalsongaspentree06.m2", }, { - children = { - { - fileId = "192406", - text = "exodarbridge01.m2", - value = "exodarbridge01.m2", - }, - { - fileId = "192407", - text = "exodarbridge02.m2", - value = "exodarbridge02.m2", - }, - { - fileId = "192408", - text = "exodarbridge03.m2", - value = "exodarbridge03.m2", - }, - { - fileId = "192409", - text = "exodarplatform01.m2", - value = "exodarplatform01.m2", - }, - }, - text = "exodar", - value = "exodar", + fileId = "194417", + text = "crystalsongaspentree07.m2", + value = "crystalsongaspentree07.m2", }, { - children = { - { - fileId = "192410", - text = "dr_exodarwall01.m2", - value = "dr_exodarwall01.m2", - }, - { - fileId = "192411", - text = "dr_exodarwall02.m2", - value = "dr_exodarwall02.m2", - }, - }, - text = "exxodarwalls", - value = "exxodarwalls", + fileId = "242943", + text = "crystalsongaspentree08.m2", + value = "crystalsongaspentree08.m2", }, { - children = { - { - fileId = "192412", - text = "glowywaterstream01.m2", - value = "glowywaterstream01.m2", - }, - }, - text = "fountain", - value = "fountain", + fileId = "194418", + text = "crystalsongbush01.m2", + value = "crystalsongbush01.m2", }, { - children = { - { - fileId = "192413", - text = "dr_fountian.m2", - value = "dr_fountian.m2", - }, - { - fileId = "192414", - text = "dr_fountian_ruined.m2", - value = "dr_fountian_ruined.m2", - }, - }, - text = "fountian", - value = "fountian", + fileId = "194419", + text = "crystalsongbush02.m2", + value = "crystalsongbush02.m2", }, { - children = { - { - fileId = "192416", - text = "dr_glow.m2", - value = "dr_glow.m2", - }, - { - fileId = "192417", - text = "dr_glow_blue.m2", - value = "dr_glow_blue.m2", - }, - { - fileId = "192418", - text = "dr_rays_blue.m2", - value = "dr_rays_blue.m2", - }, - { - fileId = "192419", - text = "dr_rays_orange.m2", - value = "dr_rays_orange.m2", - }, - { - fileId = "192420", - text = "dr_rays_pink.m2", - value = "dr_rays_pink.m2", - }, - }, - text = "glow", - value = "glow", + fileId = "194420", + text = "crystalsongguardiantree01.m2", + value = "crystalsongguardiantree01.m2", }, { - children = { - { - fileId = "192423", - text = "dr_tomb.m2", - value = "dr_tomb.m2", - }, - { - fileId = "192424", - text = "dr_tombstone01.m2", - value = "dr_tombstone01.m2", - }, - { - fileId = "192425", - text = "dr_tombstone02.m2", - value = "dr_tombstone02.m2", - }, - { - fileId = "192426", - text = "dr_tombstone03.m2", - value = "dr_tombstone03.m2", - }, - }, - text = "graveyard", - value = "graveyard", + fileId = "194421", + text = "crystalsongguardiantree02.m2", + value = "crystalsongguardiantree02.m2", }, { - children = { - { - fileId = "192427", - text = "dr_draenei_holorunes01.m2", - value = "dr_draenei_holorunes01.m2", - }, - { - fileId = "192428", - text = "dr_draenei_holorunes01_big.m2", - value = "dr_draenei_holorunes01_big.m2", - }, - { - fileId = "192429", - text = "dr_draenei_holorunes01_bigred.m2", - value = "dr_draenei_holorunes01_bigred.m2", - }, - { - fileId = "192430", - text = "dr_draenei_holorunes02.m2", - value = "dr_draenei_holorunes02.m2", - }, - { - fileId = "192431", - text = "dr_draenei_holorunes02_big.m2", - value = "dr_draenei_holorunes02_big.m2", - }, - { - fileId = "192432", - text = "dr_draenei_holorunes02_bigred.m2", - value = "dr_draenei_holorunes02_bigred.m2", - }, - { - fileId = "192433", - text = "dr_draenei_holorunes03.m2", - value = "dr_draenei_holorunes03.m2", - }, - { - fileId = "192434", - text = "dr_draenei_holorunes03_big.m2", - value = "dr_draenei_holorunes03_big.m2", - }, - { - fileId = "192435", - text = "dr_draenei_holorunes03_bigred.m2", - value = "dr_draenei_holorunes03_bigred.m2", - }, - }, - text = "holo", - value = "holo", + fileId = "194422", + text = "crystalsongtree01.m2", + value = "crystalsongtree01.m2", }, { - children = { - { - fileId = "192441", - text = "dr_holographic_stand.m2", - value = "dr_holographic_stand.m2", - }, - }, - text = "holographicstand", - value = "holographicstand", + fileId = "194423", + text = "crystalsongtree02.m2", + value = "crystalsongtree02.m2", }, { - children = { - { - fileId = "370668", - text = "doodadsword_1h_draenei_b_01.m2", - value = "doodadsword_1h_draenei_b_01.m2", - }, - { - fileId = "370669", - text = "doodadsword_1h_draenei_c_01.m2", - value = "doodadsword_1h_draenei_c_01.m2", - }, - { - fileId = "192445", - text = "dr_banner02.m2", - value = "dr_banner02.m2", - }, - { - fileId = "192446", - text = "dr_cryopod_intact2.m2", - value = "dr_cryopod_intact2.m2", - }, - { - fileId = "192447", - text = "dr_knickknack_01.m2", - value = "dr_knickknack_01.m2", - }, - { - fileId = "192448", - text = "dr_knickknack_02.m2", - value = "dr_knickknack_02.m2", - }, - { - fileId = "192449", - text = "dr_knickknack_02b.m2", - value = "dr_knickknack_02b.m2", - }, - { - fileId = "192450", - text = "dr_knickknack_03.m2", - value = "dr_knickknack_03.m2", - }, - { - fileId = "192451", - text = "dr_knickknack_04.m2", - value = "dr_knickknack_04.m2", - }, - }, - text = "knickknacks", - value = "knickknacks", + fileId = "194424", + text = "crystalsongtree03.m2", + value = "crystalsongtree03.m2", }, { - children = { - { - fileId = "192455", - text = "dr_lamppost_01.m2", - value = "dr_lamppost_01.m2", - }, - { - fileId = "192456", - text = "dr_lamppost_02.m2", - value = "dr_lamppost_02.m2", - }, - }, - text = "lampposts", - value = "lampposts", + fileId = "194425", + text = "crystalsongtree04.m2", + value = "crystalsongtree04.m2", }, + }, + text = "trees", + value = "trees", + }, + }, + text = "crystalsongforest", + value = "crystalsongforest", + }, + { + children = { + { + children = { { - children = { - { - fileId = "192458", - text = "dr_lantern_01.m2", - value = "dr_lantern_01.m2", - }, - }, - text = "lanterns", - value = "lanterns", + fileId = "194455", + text = "hf_burningship_frontpiece.m2", + value = "hf_burningship_frontpiece.m2", }, { - children = { - { - fileId = "192460", - text = "dr_loom_01.m2", - value = "dr_loom_01.m2", - }, - }, - text = "loom", - value = "loom", + fileId = "194456", + text = "hf_burningship_mast.m2", + value = "hf_burningship_mast.m2", }, { - children = { - { - fileId = "192461", - text = "dr_machineparts01.m2", - value = "dr_machineparts01.m2", - }, - }, - text = "machines", - value = "machines", + fileId = "194457", + text = "hf_burningship_plank1.m2", + value = "hf_burningship_plank1.m2", }, { - children = { - { - fileId = "242720", - text = "dalaranpostbox.m2", - value = "dalaranpostbox.m2", - }, - { - fileId = "192464", - text = "draeneipostbox.m2", - value = "draeneipostbox.m2", - }, - }, - text = "mailbox", - value = "mailbox", + fileId = "194458", + text = "hf_burningship_plank2.m2", + value = "hf_burningship_plank2.m2", }, { - children = { - { - fileId = "192465", - text = "dr_parasol_large.m2", - value = "dr_parasol_large.m2", - }, - { - fileId = "192466", - text = "dr_parasol_small.m2", - value = "dr_parasol_small.m2", - }, - }, - text = "parasol", - value = "parasol", + fileId = "194459", + text = "hf_burningship_plank3.m2", + value = "hf_burningship_plank3.m2", }, { - children = { - { - fileId = "192468", - text = "dr_signs_wanted.m2", - value = "dr_signs_wanted.m2", - }, - }, - text = "posters", - value = "posters", + fileId = "194460", + text = "hf_burningship_plank4.m2", + value = "hf_burningship_plank4.m2", }, { - children = { - { - fileId = "192470", - text = "dr_signs_alchemy.m2", - value = "dr_signs_alchemy.m2", - }, - { - fileId = "192472", - text = "dr_signs_anvil.m2", - value = "dr_signs_anvil.m2", - }, - { - fileId = "192474", - text = "dr_signs_axes.m2", - value = "dr_signs_axes.m2", - }, - { - fileId = "192476", - text = "dr_signs_bank.m2", - value = "dr_signs_bank.m2", - }, - { - fileId = "192479", - text = "dr_signs_book.m2", - value = "dr_signs_book.m2", - }, - { - fileId = "192481", - text = "dr_signs_bow.m2", - value = "dr_signs_bow.m2", - }, - { - fileId = "192483", - text = "dr_signs_bread.m2", - value = "dr_signs_bread.m2", - }, - { - fileId = "192485", - text = "dr_signs_cheese.m2", - value = "dr_signs_cheese.m2", - }, - { - fileId = "192487", - text = "dr_signs_container.m2", - value = "dr_signs_container.m2", - }, - { - fileId = "192489", - text = "dr_signs_cooking.m2", - value = "dr_signs_cooking.m2", - }, - { - fileId = "192491", - text = "dr_signs_engineering.m2", - value = "dr_signs_engineering.m2", - }, - { - fileId = "192493", - text = "dr_signs_generalshop.m2", - value = "dr_signs_generalshop.m2", - }, - { - fileId = "192495", - text = "dr_signs_helm.m2", - value = "dr_signs_helm.m2", - }, - { - fileId = "192497", - text = "dr_signs_herbalism.m2", - value = "dr_signs_herbalism.m2", - }, - { - fileId = "192499", - text = "dr_signs_meat.m2", - value = "dr_signs_meat.m2", - }, - { - fileId = "192501", - text = "dr_signs_poisons.m2", - value = "dr_signs_poisons.m2", - }, - { - fileId = "192503", - text = "dr_signs_shield.m2", - value = "dr_signs_shield.m2", - }, - { - fileId = "192505", - text = "dr_signs_staff.m2", - value = "dr_signs_staff.m2", - }, - { - fileId = "192507", - text = "dr_signs_swords.m2", - value = "dr_signs_swords.m2", - }, - { - fileId = "192509", - text = "dr_signs_tailor.m2", - value = "dr_signs_tailor.m2", - }, - { - fileId = "192511", - text = "dr_signs_tavern.m2", - value = "dr_signs_tavern.m2", - }, - }, - text = "shopsigns", - value = "shopsigns", + fileId = "194461", + text = "hf_burningship_rail.m2", + value = "hf_burningship_rail.m2", + }, + { + fileId = "194462", + text = "howlingfjord_burningship.m2", + value = "howlingfjord_burningship.m2", }, + }, + text = "burningship", + value = "burningship", + }, + }, + text = "daggercap", + value = "daggercap", + }, + { + children = { + { + fileId = "242950", + text = "carrot_on_a_stick.m2", + value = "carrot_on_a_stick.m2", + }, + { + fileId = "242957", + text = "dalaran_airportstatue_01.m2", + value = "dalaran_airportstatue_01.m2", + }, + { + fileId = "242964", + text = "dalaran_anvil.m2", + value = "dalaran_anvil.m2", + }, + { + fileId = "242967", + text = "dalaran_aquarium_01.m2", + value = "dalaran_aquarium_01.m2", + }, + { + fileId = "242971", + text = "dalaran_assorted_counter01.m2", + value = "dalaran_assorted_counter01.m2", + }, + { + fileId = "242972", + text = "dalaran_assorted_counter02.m2", + value = "dalaran_assorted_counter02.m2", + }, + { + fileId = "242973", + text = "dalaran_banner_01.m2", + value = "dalaran_banner_01.m2", + }, + { + fileId = "242974", + text = "dalaran_banner_02.m2", + value = "dalaran_banner_02.m2", + }, + { + fileId = "242975", + text = "dalaran_banner_alliance_01.m2", + value = "dalaran_banner_alliance_01.m2", + }, + { + fileId = "242976", + text = "dalaran_banner_alliance_02.m2", + value = "dalaran_banner_alliance_02.m2", + }, + { + fileId = "242977", + text = "dalaran_banner_horde_01.m2", + value = "dalaran_banner_horde_01.m2", + }, + { + fileId = "242978", + text = "dalaran_banner_horde_02.m2", + value = "dalaran_banner_horde_02.m2", + }, + { + fileId = "242979", + text = "dalaran_banner_main_01.m2", + value = "dalaran_banner_main_01.m2", + }, + { + fileId = "242981", + text = "dalaran_bannerwall_01.m2", + value = "dalaran_bannerwall_01.m2", + }, + { + fileId = "242983", + text = "dalaran_bannerwall_02.m2", + value = "dalaran_bannerwall_02.m2", + }, + { + fileId = "242985", + text = "dalaran_bannerwall_03.m2", + value = "dalaran_bannerwall_03.m2", + }, + { + fileId = "242986", + text = "dalaran_barrel_01.m2", + value = "dalaran_barrel_01.m2", + }, + { + fileId = "242988", + text = "dalaran_bed_01.m2", + value = "dalaran_bed_01.m2", + }, + { + fileId = "242990", + text = "dalaran_bed_02.m2", + value = "dalaran_bed_02.m2", + }, + { + fileId = "242991", + text = "dalaran_beertable_01.m2", + value = "dalaran_beertable_01.m2", + }, + { + fileId = "242992", + text = "dalaran_beertable_seat_01.m2", + value = "dalaran_beertable_seat_01.m2", + }, + { + fileId = "194464", + text = "dalaran_bench01.m2", + value = "dalaran_bench01.m2", + }, + { + fileId = "194465", + text = "dalaran_bench02.m2", + value = "dalaran_bench02.m2", + }, + { + fileId = "242994", + text = "dalaran_bookcase_01.m2", + value = "dalaran_bookcase_01.m2", + }, + { + fileId = "242995", + text = "dalaran_bookcase_empty_01.m2", + value = "dalaran_bookcase_empty_01.m2", + }, + { + fileId = "242997", + text = "dalaran_buildingcrystal_01.m2", + value = "dalaran_buildingcrystal_01.m2", + }, + { + fileId = "242998", + text = "dalaran_buildingcrystal_02.m2", + value = "dalaran_buildingcrystal_02.m2", + }, + { + fileId = "242999", + text = "dalaran_buildingcrystal_02off.m2", + value = "dalaran_buildingcrystal_02off.m2", + }, + { + fileId = "243000", + text = "dalaran_cake_01.m2", + value = "dalaran_cake_01.m2", + }, + { + fileId = "243001", + text = "dalaran_cake_02.m2", + value = "dalaran_cake_02.m2", + }, + { + fileId = "243002", + text = "dalaran_cake_03.m2", + value = "dalaran_cake_03.m2", + }, + { + fileId = "243003", + text = "dalaran_cakeslice_01.m2", + value = "dalaran_cakeslice_01.m2", + }, + { + fileId = "243004", + text = "dalaran_cakeslice_02.m2", + value = "dalaran_cakeslice_02.m2", + }, + { + fileId = "243005", + text = "dalaran_cakeslice_03.m2", + value = "dalaran_cakeslice_03.m2", + }, + { + fileId = "243006", + text = "dalaran_cakeslice_04.m2", + value = "dalaran_cakeslice_04.m2", + }, + { + fileId = "243007", + text = "dalaran_cakestand_01.m2", + value = "dalaran_cakestand_01.m2", + }, + { + fileId = "243008", + text = "dalaran_cakestandlid_01.m2", + value = "dalaran_cakestandlid_01.m2", + }, + { + fileId = "194466", + text = "dalaran_chair01.m2", + value = "dalaran_chair01.m2", + }, + { + fileId = "243010", + text = "dalaran_chair_01.m2", + value = "dalaran_chair_01.m2", + }, + { + fileId = "243011", + text = "dalaran_chair_02.m2", + value = "dalaran_chair_02.m2", + }, + { + fileId = "243013", + text = "dalaran_chandelier01.m2", + value = "dalaran_chandelier01.m2", + }, + { + fileId = "243014", + text = "dalaran_chandelier01_short.m2", + value = "dalaran_chandelier01_short.m2", + }, + { + fileId = "243015", + text = "dalaran_chandelier02.m2", + value = "dalaran_chandelier02.m2", + }, + { + fileId = "243016", + text = "dalaran_chandelier02_short.m2", + value = "dalaran_chandelier02_short.m2", + }, + { + fileId = "243018", + text = "dalaran_cherryblossoms.m2", + value = "dalaran_cherryblossoms.m2", + }, + { + fileId = "243019", + text = "dalaran_cloth_counter01.m2", + value = "dalaran_cloth_counter01.m2", + }, + { + fileId = "243020", + text = "dalaran_cloth_counter02.m2", + value = "dalaran_cloth_counter02.m2", + }, + { + fileId = "243021", + text = "dalaran_cookie_01.m2", + value = "dalaran_cookie_01.m2", + }, + { + fileId = "243022", + text = "dalaran_cookie_02.m2", + value = "dalaran_cookie_02.m2", + }, + { + fileId = "243023", + text = "dalaran_cookie_03.m2", + value = "dalaran_cookie_03.m2", + }, + { + fileId = "243024", + text = "dalaran_cookie_04.m2", + value = "dalaran_cookie_04.m2", + }, + { + fileId = "243025", + text = "dalaran_cookie_05.m2", + value = "dalaran_cookie_05.m2", + }, + { + fileId = "243026", + text = "dalaran_counter_01.m2", + value = "dalaran_counter_01.m2", + }, + { + fileId = "243027", + text = "dalaran_counter_alchemy.m2", + value = "dalaran_counter_alchemy.m2", + }, + { + fileId = "243029", + text = "dalaran_crate_01.m2", + value = "dalaran_crate_01.m2", + }, + { + fileId = "243030", + text = "dalaran_crate_03.m2", + value = "dalaran_crate_03.m2", + }, + { + fileId = "243031", + text = "dalaran_crate_04.m2", + value = "dalaran_crate_04.m2", + }, + { + fileId = "243032", + text = "dalaran_craterdome.m2", + value = "dalaran_craterdome.m2", + }, + { + fileId = "243033", + text = "dalaran_crystalball_01.m2", + value = "dalaran_crystalball_01.m2", + }, + { + fileId = "243034", + text = "dalaran_cupcake_01.m2", + value = "dalaran_cupcake_01.m2", + }, + { + fileId = "243035", + text = "dalaran_cupcake_02.m2", + value = "dalaran_cupcake_02.m2", + }, + { + fileId = "243036", + text = "dalaran_cupcake_03.m2", + value = "dalaran_cupcake_03.m2", + }, + { + fileId = "243037", + text = "dalaran_cupcake_04.m2", + value = "dalaran_cupcake_04.m2", + }, + { + fileId = "243038", + text = "dalaran_doughnut_01.m2", + value = "dalaran_doughnut_01.m2", + }, + { + fileId = "243039", + text = "dalaran_doughnut_02.m2", + value = "dalaran_doughnut_02.m2", + }, + { + fileId = "243040", + text = "dalaran_doughnut_stand.m2", + value = "dalaran_doughnut_stand.m2", + }, + { + fileId = "243044", + text = "dalaran_eye_01.m2", + value = "dalaran_eye_01.m2", + }, + { + fileId = "243046", + text = "dalaran_flower_stand.m2", + value = "dalaran_flower_stand.m2", + }, + { + fileId = "243047", + text = "dalaran_forge.m2", + value = "dalaran_forge.m2", + }, + { + fileId = "243050", + text = "dalaran_forgearms.m2", + value = "dalaran_forgearms.m2", + }, + { + fileId = "243052", + text = "dalaran_forgesmelter.m2", + value = "dalaran_forgesmelter.m2", + }, + { + fileId = "243054", + text = "dalaran_forsale_01.m2", + value = "dalaran_forsale_01.m2", + }, + { + fileId = "243055", + text = "dalaran_fountain_01.m2", + value = "dalaran_fountain_01.m2", + }, + { + fileId = "243056", + text = "dalaran_fountain_02.m2", + value = "dalaran_fountain_02.m2", + }, + { + fileId = "243065", + text = "dalaran_fruit_stand.m2", + value = "dalaran_fruit_stand.m2", + }, + { + fileId = "243067", + text = "dalaran_greenhouse.m2", + value = "dalaran_greenhouse.m2", + }, + { + fileId = "243068", + text = "dalaran_greenhouse_glass.m2", + value = "dalaran_greenhouse_glass.m2", + }, + { + fileId = "243071", + text = "dalaran_guild_counter01.m2", + value = "dalaran_guild_counter01.m2", + }, + { + fileId = "243072", + text = "dalaran_guild_counter02.m2", + value = "dalaran_guild_counter02.m2", + }, + { + fileId = "243074", + text = "dalaran_guildvault_01.m2", + value = "dalaran_guildvault_01.m2", + }, + { + fileId = "243076", + text = "dalaran_hat_01.m2", + value = "dalaran_hat_01.m2", + }, + { + fileId = "243077", + text = "dalaran_helm_deepdivehelm_space.m2", + value = "dalaran_helm_deepdivehelm_space.m2", + }, + { + fileId = "243078", + text = "dalaran_helm_mail_northrend_d_01.m2", + value = "dalaran_helm_mail_northrend_d_01.m2", + }, + { + fileId = "243079", + text = "dalaran_helm_mask_plague.m2", + value = "dalaran_helm_mask_plague.m2", + }, + { + fileId = "243080", + text = "dalaran_helm_plate_northrend_d_01.m2", + value = "dalaran_helm_plate_northrend_d_01.m2", + }, + { + fileId = "243081", + text = "dalaran_helm_plate_viking_d_01.m2", + value = "dalaran_helm_plate_viking_d_01.m2", + }, + { + fileId = "243082", + text = "dalaran_helm_robe_mage_b_01.m2", + value = "dalaran_helm_robe_mage_b_01.m2", + }, + { + fileId = "243083", + text = "dalaran_helm_robe_raidmage_b_01.m2", + value = "dalaran_helm_robe_raidmage_b_01.m2", + }, + { + fileId = "243084", + text = "dalaran_helm_robe_raidmage_d_01.m2", + value = "dalaran_helm_robe_raidmage_d_01.m2", + }, + { + fileId = "243085", + text = "dalaran_helm_robe_raidmage_f_01.m2", + value = "dalaran_helm_robe_raidmage_f_01.m2", + }, + { + fileId = "243087", + text = "dalaran_inn_window.m2", + value = "dalaran_inn_window.m2", + }, + { + fileId = "243088", + text = "dalaran_jewelcounter.m2", + value = "dalaran_jewelcounter.m2", + }, + { + fileId = "194468", + text = "dalaran_lamppost01.m2", + value = "dalaran_lamppost01.m2", + }, + { + fileId = "194470", + text = "dalaran_lampwall01.m2", + value = "dalaran_lampwall01.m2", + }, + { + fileId = "243090", + text = "dalaran_longbanners01.m2", + value = "dalaran_longbanners01.m2", + }, + { + fileId = "243091", + text = "dalaran_mageportal_01.m2", + value = "dalaran_mageportal_01.m2", + }, + { + fileId = "243092", + text = "dalaran_magicaltrash_01.m2", + value = "dalaran_magicaltrash_01.m2", + }, + { + fileId = "243093", + text = "dalaran_magicaltrash_02.m2", + value = "dalaran_magicaltrash_02.m2", + }, + { + fileId = "243094", + text = "dalaran_magicaltrash_03.m2", + value = "dalaran_magicaltrash_03.m2", + }, + { + fileId = "243095", + text = "dalaran_magicaltrash_04.m2", + value = "dalaran_magicaltrash_04.m2", + }, + { + fileId = "243096", + text = "dalaran_painting_01.m2", + value = "dalaran_painting_01.m2", + }, + { + fileId = "243097", + text = "dalaran_painting_02.m2", + value = "dalaran_painting_02.m2", + }, + { + fileId = "243098", + text = "dalaran_painting_03.m2", + value = "dalaran_painting_03.m2", + }, + { + fileId = "243099", + text = "dalaran_painting_04.m2", + value = "dalaran_painting_04.m2", + }, + { + fileId = "243100", + text = "dalaran_painting_05.m2", + value = "dalaran_painting_05.m2", + }, + { + fileId = "243101", + text = "dalaran_painting_06.m2", + value = "dalaran_painting_06.m2", + }, + { + fileId = "243102", + text = "dalaran_painting_07.m2", + value = "dalaran_painting_07.m2", + }, + { + fileId = "243103", + text = "dalaran_painting_08.m2", + value = "dalaran_painting_08.m2", + }, + { + fileId = "243104", + text = "dalaran_painting_09.m2", + value = "dalaran_painting_09.m2", + }, + { + fileId = "243105", + text = "dalaran_painting_10.m2", + value = "dalaran_painting_10.m2", + }, + { + fileId = "243106", + text = "dalaran_painting_11.m2", + value = "dalaran_painting_11.m2", + }, + { + fileId = "243108", + text = "dalaran_petcage_01.m2", + value = "dalaran_petcage_01.m2", + }, + { + fileId = "243109", + text = "dalaran_planter_01.m2", + value = "dalaran_planter_01.m2", + }, + { + fileId = "243110", + text = "dalaran_planter_02.m2", + value = "dalaran_planter_02.m2", + }, + { + fileId = "243112", + text = "dalaran_prisondoor_01.m2", + value = "dalaran_prisondoor_01.m2", + }, + { + fileId = "243113", + text = "dalaran_prisondoor_02.m2", + value = "dalaran_prisondoor_02.m2", + }, + { + fileId = "243118", + text = "dalaran_prisondoor_03.m2", + value = "dalaran_prisondoor_03.m2", + }, + { + fileId = "243119", + text = "dalaran_prisondoor_04.m2", + value = "dalaran_prisondoor_04.m2", + }, + { + fileId = "243120", + text = "dalaran_prisondoor_05.m2", + value = "dalaran_prisondoor_05.m2", + }, + { + fileId = "243121", + text = "dalaran_prisondoor_glow.m2", + value = "dalaran_prisondoor_glow.m2", + }, + { + fileId = "243122", + text = "dalaran_rhinorug_01.m2", + value = "dalaran_rhinorug_01.m2", + }, + { + fileId = "243124", + text = "dalaran_rug_01.m2", + value = "dalaran_rug_01.m2", + }, + { + fileId = "243126", + text = "dalaran_rug_02.m2", + value = "dalaran_rug_02.m2", + }, + { + fileId = "243127", + text = "dalaran_rug_03.m2", + value = "dalaran_rug_03.m2", + }, + { + fileId = "243129", + text = "dalaran_rug_04.m2", + value = "dalaran_rug_04.m2", + }, + { + fileId = "243133", + text = "dalaran_sconce_indoor_01.m2", + value = "dalaran_sconce_indoor_01.m2", + }, + { + fileId = "243134", + text = "dalaran_sconce_indoor_02.m2", + value = "dalaran_sconce_indoor_02.m2", + }, + { + fileId = "243135", + text = "dalaran_sconce_indoor_03.m2", + value = "dalaran_sconce_indoor_03.m2", + }, + { + fileId = "243136", + text = "dalaran_sculpture.m2", + value = "dalaran_sculpture.m2", + }, + { + fileId = "243141", + text = "dalaran_sewer_oldworld_pipe01.m2", + value = "dalaran_sewer_oldworld_pipe01.m2", + }, + { + fileId = "243142", + text = "dalaran_sewer_oldworld_pipe02.m2", + value = "dalaran_sewer_oldworld_pipe02.m2", + }, + { + fileId = "243143", + text = "dalaran_sewerdoor_01.m2", + value = "dalaran_sewerdoor_01.m2", + }, + { + fileId = "243144", + text = "dalaran_sewergrate_01.m2", + value = "dalaran_sewergrate_01.m2", + }, + { + fileId = "243147", + text = "dalaran_sign_alchemy.m2", + value = "dalaran_sign_alchemy.m2", + }, + { + fileId = "243152", + text = "dalaran_sign_armorshop.m2", + value = "dalaran_sign_armorshop.m2", + }, + { + fileId = "243154", + text = "dalaran_sign_bank.m2", + value = "dalaran_sign_bank.m2", + }, + { + fileId = "243156", + text = "dalaran_sign_cheeseshop.m2", + value = "dalaran_sign_cheeseshop.m2", + }, + { + fileId = "243157", + text = "dalaran_sign_enchanting.m2", + value = "dalaran_sign_enchanting.m2", + }, + { + fileId = "243158", + text = "dalaran_sign_engineering.m2", + value = "dalaran_sign_engineering.m2", + }, + { + fileId = "243159", + text = "dalaran_sign_firstaid.m2", + value = "dalaran_sign_firstaid.m2", + }, + { + fileId = "243161", + text = "dalaran_sign_generalgoods.m2", + value = "dalaran_sign_generalgoods.m2", + }, + { + fileId = "243163", + text = "dalaran_sign_informationcenter.m2", + value = "dalaran_sign_informationcenter.m2", + }, + { + fileId = "243164", + text = "dalaran_sign_inscription.m2", + value = "dalaran_sign_inscription.m2", + }, + { + fileId = "243165", + text = "dalaran_sign_jewelcrafting.m2", + value = "dalaran_sign_jewelcrafting.m2", + }, + { + fileId = "243166", + text = "dalaran_sign_leatherworking.m2", + value = "dalaran_sign_leatherworking.m2", + }, + { + fileId = "243168", + text = "dalaran_sign_magicshop.m2", + value = "dalaran_sign_magicshop.m2", + }, + { + fileId = "243169", + text = "dalaran_sign_mining.m2", + value = "dalaran_sign_mining.m2", + }, + { + fileId = "243170", + text = "dalaran_sign_petshop.m2", + value = "dalaran_sign_petshop.m2", + }, + { + fileId = "243172", + text = "dalaran_sign_rangedweaponshop.m2", + value = "dalaran_sign_rangedweaponshop.m2", + }, + { + fileId = "243174", + text = "dalaran_sign_staveswands.m2", + value = "dalaran_sign_staveswands.m2", + }, + { + fileId = "243175", + text = "dalaran_sign_tailoring.m2", + value = "dalaran_sign_tailoring.m2", + }, + { + fileId = "243177", + text = "dalaran_sign_tavern.m2", + value = "dalaran_sign_tavern.m2", + }, + { + fileId = "243179", + text = "dalaran_sign_toyshop.m2", + value = "dalaran_sign_toyshop.m2", + }, + { + fileId = "243181", + text = "dalaran_sign_weaponshop.m2", + value = "dalaran_sign_weaponshop.m2", + }, + { + fileId = "194471", + text = "dalaran_signpost.m2", + value = "dalaran_signpost.m2", + }, + { + fileId = "243184", + text = "dalaran_signpostsign.m2", + value = "dalaran_signpostsign.m2", + }, + { + fileId = "243186", + text = "dalaran_skinning_stand.m2", + value = "dalaran_skinning_stand.m2", + }, + { + fileId = "243187", + text = "dalaran_statueantonidas.m2", + value = "dalaran_statueantonidas.m2", + }, + { + fileId = "243188", + text = "dalaran_statueantonidas_plaque.m2", + value = "dalaran_statueantonidas_plaque.m2", + }, + { + fileId = "243189", + text = "dalaran_table_01.m2", + value = "dalaran_table_01.m2", + }, + { + fileId = "243191", + text = "dalaran_toy_counter.m2", + value = "dalaran_toy_counter.m2", + }, + { + fileId = "243192", + text = "dalaran_toy_shelves01.m2", + value = "dalaran_toy_shelves01.m2", + }, + { + fileId = "243193", + text = "dalaran_toy_shelves02.m2", + value = "dalaran_toy_shelves02.m2", + }, + { + fileId = "243194", + text = "dalaran_toy_shelves03.m2", + value = "dalaran_toy_shelves03.m2", + }, + { + fileId = "243195", + text = "dalaran_toy_shelves04.m2", + value = "dalaran_toy_shelves04.m2", + }, + { + fileId = "243196", + text = "dalaran_wagon01.m2", + value = "dalaran_wagon01.m2", + }, + { + fileId = "243197", + text = "dalaran_wand_stand.m2", + value = "dalaran_wand_stand.m2", + }, + { + fileId = "243198", + text = "dalaran_weapon_stand.m2", + value = "dalaran_weapon_stand.m2", + }, + { + fileId = "243200", + text = "dalaran_well_01.m2", + value = "dalaran_well_01.m2", + }, + { + fileId = "243203", + text = "dalarancounter_01.m2", + value = "dalarancounter_01.m2", + }, + { + fileId = "243210", + text = "dalaranshrub.m2", + value = "dalaranshrub.m2", + }, + { + fileId = "243231", + text = "inscriptionshopdoodads.m2", + value = "inscriptionshopdoodads.m2", + }, + { + fileId = "243232", + text = "jewelry_posterscroll_01.m2", + value = "jewelry_posterscroll_01.m2", + }, + { + fileId = "243233", + text = "jewelry_posterscroll_02.m2", + value = "jewelry_posterscroll_02.m2", + }, + { + fileId = "243235", + text = "jewelrystore_rug_01.m2", + value = "jewelrystore_rug_01.m2", + }, + { + fileId = "243239", + text = "nifty_stopwatch.m2", + value = "nifty_stopwatch.m2", + }, + { + fileId = "243255", + text = "robe_female_a_01.m2", + value = "robe_female_a_01.m2", + }, + { + fileId = "243256", + text = "robe_mage_b_01.m2", + value = "robe_mage_b_01.m2", + }, + { + fileId = "243257", + text = "robe_mage_d_01.m2", + value = "robe_mage_d_01.m2", + }, + { + fileId = "243258", + text = "robe_mage_f_01.m2", + value = "robe_mage_f_01.m2", + }, + { + children = { { - children = { - { - fileId = "192513", - text = "dr_signpost_01.m2", - value = "dr_signpost_01.m2", - }, - { - fileId = "192514", - text = "dr_signpost_sign01.m2", - value = "dr_signpost_sign01.m2", - }, - }, - text = "signs", - value = "signs", + fileId = "194472", + text = "dalaransewer01.m2", + value = "dalaransewer01.m2", }, { - children = { - { - fileId = "192515", - text = "dr_table_medium_01.m2", - value = "dr_table_medium_01.m2", - }, - { - fileId = "192516", - text = "dr_table_small_02.m2", - value = "dr_table_small_02.m2", - }, - }, - text = "tables", - value = "tables", + fileId = "243263", + text = "dalaransewer_arena_wave_01.m2", + value = "dalaransewer_arena_wave_01.m2", }, { - children = { - { - fileId = "192518", - text = "atriumbridge.m2", - value = "atriumbridge.m2", - }, - { - fileId = "192529", - text = "factorybridge.m2", - value = "factorybridge.m2", - }, - { - fileId = "192530", - text = "factoryelevator.m2", - value = "factoryelevator.m2", - }, - { - fileId = "192531", - text = "factoryenergycube.m2", - value = "factoryenergycube.m2", - }, - { - fileId = "192532", - text = "factoryenergycube_3x3.m2", - value = "factoryenergycube_3x3.m2", - }, - { - fileId = "192533", - text = "factoryfloor.m2", - value = "factoryfloor.m2", - }, - { - fileId = "192535", - text = "narru_crystal_corrupted.m2", - value = "narru_crystal_corrupted.m2", - }, - { - fileId = "192536", - text = "narru_crystal_corrupted_no_lightning.m2", - value = "narru_crystal_corrupted_no_lightning.m2", - }, - { - fileId = "192537", - text = "raid_circle_floor.m2", - value = "raid_circle_floor.m2", - }, - }, - text = "tempestkeep", - value = "tempestkeep", + fileId = "243264", + text = "dalaransewer_arenawaterfall.m2", + value = "dalaransewer_arenawaterfall.m2", }, { - children = { - { - fileId = "192542", - text = "dr_tent_01.m2", - value = "dr_tent_01.m2", - }, - { - fileId = "192543", - text = "dr_tent_02.m2", - value = "dr_tent_02.m2", - }, - }, - text = "tents", - value = "tents", + fileId = "252201", + text = "dalaransewer_arenawaterfall_collision.m2", + value = "dalaransewer_arenawaterfall_collision.m2", }, { - children = { - { - fileId = "192545", - text = "draenei_tubes.m2", - value = "draenei_tubes.m2", - }, - { - fileId = "192546", - text = "draenei_tubes_offset.m2", - value = "draenei_tubes_offset.m2", - }, - }, - text = "tubes", - value = "tubes", + fileId = "243265", + text = "dalaransewer_sewerwater_01.m2", + value = "dalaransewer_sewerwater_01.m2", }, { - children = { - { - fileId = "192554", - text = "draenei_ancientwall01.m2", - value = "draenei_ancientwall01.m2", - }, - { - fileId = "192555", - text = "draenei_ancientwall02.m2", - value = "draenei_ancientwall02.m2", - }, - }, - text = "wall", - value = "wall", + fileId = "243266", + text = "dalaransewer_sewerwater_02.m2", + value = "dalaransewer_sewerwater_02.m2", }, - }, - text = "draenei", - value = "draenei", - }, - { - children = { { - children = { - { - fileId = "192556", - text = "et_barrel01.m2", - value = "et_barrel01.m2", - }, - { - fileId = "192557", - text = "et_barrel01off.m2", - value = "et_barrel01off.m2", - }, - }, - text = "barrel", - value = "barrel", + fileId = "243267", + text = "dalaransewer_sewerwater_03.m2", + value = "dalaransewer_sewerwater_03.m2", }, { - children = { - { - fileId = "192559", - text = "et_cage.m2", - value = "et_cage.m2", - }, - { - fileId = "192561", - text = "et_cagebase.m2", - value = "et_cagebase.m2", - }, - }, - text = "cage", - value = "cage", + fileId = "243268", + text = "dalaransewer_sewerwater_04.m2", + value = "dalaransewer_sewerwater_04.m2", }, { - children = { - { - fileId = "192562", - text = "et_collector01.m2", - value = "et_collector01.m2", - }, - }, - text = "collector", - value = "collector", + fileId = "243269", + text = "dalaransewer_sewerwater_05.m2", + value = "dalaransewer_sewerwater_05.m2", }, { - children = { - { - fileId = "192563", - text = "et_crate01.m2", - value = "et_crate01.m2", - }, - { - fileId = "192564", - text = "et_crate01off.m2", - value = "et_crate01off.m2", - }, - }, - text = "crate", - value = "crate", + fileId = "243270", + text = "dalaransewer_waterfall_endtube_long.m2", + value = "dalaransewer_waterfall_endtube_long.m2", }, { - children = { - { - fileId = "192566", - text = "et_crystalforge.m2", - value = "et_crystalforge.m2", - }, - { - fileId = "192567", - text = "et_crystalforgecontroller.m2", - value = "et_crystalforgecontroller.m2", - }, - }, - text = "crystalforge", - value = "crystalforge", + fileId = "243271", + text = "dalaransewer_waterfall_endtube_med.m2", + value = "dalaransewer_waterfall_endtube_med.m2", }, { - children = { - { - fileId = "192568", - text = "et_holographic_stand.m2", - value = "et_holographic_stand.m2", - }, - }, - text = "holographicstand", - value = "holographicstand", + fileId = "243272", + text = "dalaransewer_waterfall_endtube_short.m2", + value = "dalaransewer_waterfall_endtube_short.m2", }, - { - children = { - { - fileId = "192569", - text = "et_lamppost01.m2", - value = "et_lamppost01.m2", - }, - { - fileId = "192570", - text = "et_lamppost01off.m2", - value = "et_lamppost01off.m2", - }, - }, - text = "lamppost", - value = "lamppost", + { + fileId = "243273", + text = "dalaransewer_waterfall_halftube_long.m2", + value = "dalaransewer_waterfall_halftube_long.m2", }, { - children = { - { - fileId = "192572", - text = "et_portal01.m2", - value = "et_portal01.m2", - }, - { - fileId = "192573", - text = "et_portal01off.m2", - value = "et_portal01off.m2", - }, - { - fileId = "192574", - text = "et_portal01offhalf.m2", - value = "et_portal01offhalf.m2", - }, - }, - text = "portal", - value = "portal", + fileId = "243274", + text = "dalaransewer_waterfall_halftube_med.m2", + value = "dalaransewer_waterfall_halftube_med.m2", }, { - children = { - { - fileId = "192576", - text = "et_standard.m2", - value = "et_standard.m2", - }, - }, - text = "standard", - value = "standard", + fileId = "243275", + text = "dalaransewer_waterfall_halftube_short.m2", + value = "dalaransewer_waterfall_halftube_short.m2", }, { - children = { - { - fileId = "192577", - text = "et_tent01.m2", - value = "et_tent01.m2", - }, - { - fileId = "192578", - text = "et_tent02.m2", - value = "et_tent02.m2", - }, - }, - text = "tents", - value = "tents", + fileId = "243276", + text = "dalaransewer_waterfall_tube_01.m2", + value = "dalaransewer_waterfall_tube_01.m2", }, }, - text = "ethereal", - value = "ethereal", + text = "sewer", + value = "sewer", + }, + { + fileId = "243291", + text = "shoulder_mage_b_01.m2", + value = "shoulder_mage_b_01.m2", + }, + { + fileId = "243292", + text = "shoulder_mage_f_01.m2", + value = "shoulder_mage_f_01.m2", }, { children = { { - fileId = "192579", - text = "fishfrenzy.m2", - value = "fishfrenzy.m2", + fileId = "358381", + text = "dalaran_tirionstatue_plaque.m2", + value = "dalaran_tirionstatue_plaque.m2", }, }, - text = "fishfrenzy", - value = "fishfrenzy", + text = "statue", + value = "statue", + }, + { + fileId = "243295", + text = "tradeskill_enchanting_01.m2", + value = "tradeskill_enchanting_01.m2", + }, + { + fileId = "243296", + text = "tradeskill_enchanting_02.m2", + value = "tradeskill_enchanting_02.m2", + }, + { + fileId = "243297", + text = "tradeskill_firstaid_01.m2", + value = "tradeskill_firstaid_01.m2", + }, + { + fileId = "243298", + text = "tradeskill_firstaid_02.m2", + value = "tradeskill_firstaid_02.m2", + }, + { + fileId = "243299", + text = "tradeskill_fishing_01.m2", + value = "tradeskill_fishing_01.m2", + }, + { + fileId = "243300", + text = "tradeskill_herbs_01.m2", + value = "tradeskill_herbs_01.m2", + }, + { + fileId = "243301", + text = "tradeskill_herbs_02.m2", + value = "tradeskill_herbs_02.m2", + }, + { + fileId = "243302", + text = "tradeskill_leatherworking_01.m2", + value = "tradeskill_leatherworking_01.m2", + }, + { + fileId = "243303", + text = "tradeskill_leatherworking_02.m2", + value = "tradeskill_leatherworking_02.m2", + }, + { + fileId = "243304", + text = "tradeskill_skinning_01.m2", + value = "tradeskill_skinning_01.m2", + }, + { + fileId = "243305", + text = "tradeskill_skinning_02.m2", + value = "tradeskill_skinning_02.m2", + }, + { + fileId = "243306", + text = "tradeskill_tailoring_01.m2", + value = "tradeskill_tailoring_01.m2", + }, + { + fileId = "243307", + text = "tradeskill_tailoring_02.m2", + value = "tradeskill_tailoring_02.m2", + }, + { + children = { + { + fileId = "243313", + text = "dalaranbigtree_01.m2", + value = "dalaranbigtree_01.m2", + }, + { + fileId = "243314", + text = "dalaranbush_01.m2", + value = "dalaranbush_01.m2", + }, + { + fileId = "243315", + text = "dalarantree_01.m2", + value = "dalarantree_01.m2", + }, + { + fileId = "243316", + text = "dalarantree_02.m2", + value = "dalarantree_02.m2", + }, + }, + text = "tree", + value = "tree", + }, + }, + text = "dalaran", + value = "dalaran", + }, + { + children = { + { + fileId = "194474", + text = "bd_lavafall01.m2", + value = "bd_lavafall01.m2", + }, + { + fileId = "194475", + text = "bd_lavafall02.m2", + value = "bd_lavafall02.m2", + }, + { + fileId = "194476", + text = "bd_lavafall03.m2", + value = "bd_lavafall03.m2", + }, + { + fileId = "194478", + text = "db_dragonarm01_left.m2", + value = "db_dragonarm01_left.m2", + }, + { + fileId = "194479", + text = "db_dragonarm01_leftblack.m2", + value = "db_dragonarm01_leftblack.m2", + }, + { + fileId = "194480", + text = "db_dragonarm01_leftblue.m2", + value = "db_dragonarm01_leftblue.m2", + }, + { + fileId = "194481", + text = "db_dragonarm01_leftgray.m2", + value = "db_dragonarm01_leftgray.m2", + }, + { + fileId = "194482", + text = "db_dragonarm01_leftwhite.m2", + value = "db_dragonarm01_leftwhite.m2", + }, + { + fileId = "194483", + text = "db_dragonarm01_right.m2", + value = "db_dragonarm01_right.m2", + }, + { + fileId = "194484", + text = "db_dragonarm01_rightblack.m2", + value = "db_dragonarm01_rightblack.m2", + }, + { + fileId = "194485", + text = "db_dragonarm01_rightblue.m2", + value = "db_dragonarm01_rightblue.m2", + }, + { + fileId = "194486", + text = "db_dragonarm01_rightgray.m2", + value = "db_dragonarm01_rightgray.m2", + }, + { + fileId = "194487", + text = "db_dragonarm01_rightwhite.m2", + value = "db_dragonarm01_rightwhite.m2", + }, + { + fileId = "194488", + text = "db_dragonarmstraight_left.m2", + value = "db_dragonarmstraight_left.m2", + }, + { + fileId = "194489", + text = "db_dragonarmstraight_leftblack.m2", + value = "db_dragonarmstraight_leftblack.m2", + }, + { + fileId = "194490", + text = "db_dragonarmstraight_leftblue.m2", + value = "db_dragonarmstraight_leftblue.m2", + }, + { + fileId = "194491", + text = "db_dragonarmstraight_right.m2", + value = "db_dragonarmstraight_right.m2", + }, + { + fileId = "194492", + text = "db_dragonarmstraight_rightblack.m2", + value = "db_dragonarmstraight_rightblack.m2", + }, + { + fileId = "194493", + text = "db_dragonarmstraight_rightblue.m2", + value = "db_dragonarmstraight_rightblue.m2", + }, + { + fileId = "194494", + text = "db_dragonclaw01_leftblue.m2", + value = "db_dragonclaw01_leftblue.m2", + }, + { + fileId = "194495", + text = "db_dragonfrozen001.m2", + value = "db_dragonfrozen001.m2", + }, + { + fileId = "194496", + text = "db_dragonfrozen002.m2", + value = "db_dragonfrozen002.m2", + }, + { + fileId = "519269", + text = "db_dragonfrozen002_burned.m2", + value = "db_dragonfrozen002_burned.m2", + }, + { + fileId = "575929", + text = "db_dragonfrozen002_burned02.m2", + value = "db_dragonfrozen002_burned02.m2", + }, + { + fileId = "194497", + text = "db_dragonfrozen003.m2", + value = "db_dragonfrozen003.m2", + }, + { + fileId = "194498", + text = "db_dragonhead01.m2", + value = "db_dragonhead01.m2", + }, + { + fileId = "194499", + text = "db_dragonhead02.m2", + value = "db_dragonhead02.m2", + }, + { + fileId = "194500", + text = "db_dragonhead03.m2", + value = "db_dragonhead03.m2", + }, + { + fileId = "194501", + text = "db_dragonhead04.m2", + value = "db_dragonhead04.m2", + }, + { + fileId = "194502", + text = "db_dragonjaw01.m2", + value = "db_dragonjaw01.m2", + }, + { + fileId = "194503", + text = "db_dragonjaw02.m2", + value = "db_dragonjaw02.m2", + }, + { + fileId = "194504", + text = "db_dragonjaw03.m2", + value = "db_dragonjaw03.m2", + }, + { + fileId = "194505", + text = "db_dragonjaw04.m2", + value = "db_dragonjaw04.m2", + }, + { + fileId = "194506", + text = "db_dragonleg01_left.m2", + value = "db_dragonleg01_left.m2", + }, + { + fileId = "430957", + text = "db_dragonleg01_left2.m2", + value = "db_dragonleg01_left2.m2", + }, + { + fileId = "194507", + text = "db_dragonleg01_right.m2", + value = "db_dragonleg01_right.m2", + }, + { + fileId = "194508", + text = "db_dragonrib01.m2", + value = "db_dragonrib01.m2", + }, + { + fileId = "194509", + text = "db_dragonrib01black.m2", + value = "db_dragonrib01black.m2", + }, + { + fileId = "194510", + text = "db_dragonrib01blue.m2", + value = "db_dragonrib01blue.m2", + }, + { + fileId = "194511", + text = "db_dragonrib01gray.m2", + value = "db_dragonrib01gray.m2", + }, + { + fileId = "194512", + text = "db_dragonrib01white.m2", + value = "db_dragonrib01white.m2", + }, + { + fileId = "194513", + text = "db_dragonribcage01.m2", + value = "db_dragonribcage01.m2", + }, + { + fileId = "194514", + text = "db_dragonribcage02.m2", + value = "db_dragonribcage02.m2", + }, + { + fileId = "194515", + text = "db_dragonribcage03.m2", + value = "db_dragonribcage03.m2", + }, + { + fileId = "194516", + text = "db_dragonribcage05.m2", + value = "db_dragonribcage05.m2", + }, + { + fileId = "194517", + text = "db_dragonshoulder01.m2", + value = "db_dragonshoulder01.m2", + }, + { + fileId = "194518", + text = "db_dragonshoulder02.m2", + value = "db_dragonshoulder02.m2", + }, + { + fileId = "194519", + text = "db_dragonsinglerib01.m2", + value = "db_dragonsinglerib01.m2", + }, + { + fileId = "194520", + text = "db_dragonsinglerib02.m2", + value = "db_dragonsinglerib02.m2", + }, + { + fileId = "194521", + text = "db_dragonsinglerib03.m2", + value = "db_dragonsinglerib03.m2", + }, + { + fileId = "194522", + text = "db_dragonskull01.m2", + value = "db_dragonskull01.m2", + }, + { + fileId = "194523", + text = "db_dragonskull02.m2", + value = "db_dragonskull02.m2", + }, + { + fileId = "519271", + text = "db_dragonskull02_burned.m2", + value = "db_dragonskull02_burned.m2", + }, + { + fileId = "194524", + text = "db_dragonskull03.m2", + value = "db_dragonskull03.m2", + }, + { + fileId = "519273", + text = "db_dragonskull03_burned.m2", + value = "db_dragonskull03_burned.m2", + }, + { + fileId = "194525", + text = "db_dragonskull04.m2", + value = "db_dragonskull04.m2", + }, + { + fileId = "519275", + text = "db_dragonskull04_burned.m2", + value = "db_dragonskull04_burned.m2", + }, + { + fileId = "194526", + text = "db_dragonskull05.m2", + value = "db_dragonskull05.m2", + }, + { + fileId = "194527", + text = "db_dragonskull_black.m2", + value = "db_dragonskull_black.m2", + }, + { + fileId = "194528", + text = "db_dragonsparerib01.m2", + value = "db_dragonsparerib01.m2", + }, + { + fileId = "194529", + text = "db_dragonspareribs01.m2", + value = "db_dragonspareribs01.m2", + }, + { + fileId = "521962", + text = "db_dragonspareribs01_burned.m2", + value = "db_dragonspareribs01_burned.m2", + }, + { + fileId = "194530", + text = "db_dragonspareribs01blue.m2", + value = "db_dragonspareribs01blue.m2", + }, + { + fileId = "194531", + text = "db_dragonspareribs02.m2", + value = "db_dragonspareribs02.m2", + }, + { + fileId = "194532", + text = "db_dragonspike01.m2", + value = "db_dragonspike01.m2", + }, + { + fileId = "194533", + text = "db_dragonspike01black.m2", + value = "db_dragonspike01black.m2", + }, + { + fileId = "194534", + text = "db_dragonspike01blue.m2", + value = "db_dragonspike01blue.m2", + }, + { + fileId = "194535", + text = "db_dragonspike01tan.m2", + value = "db_dragonspike01tan.m2", + }, + { + fileId = "194536", + text = "db_dragonspike02.m2", + value = "db_dragonspike02.m2", + }, + { + fileId = "194537", + text = "db_dragonspike03.m2", + value = "db_dragonspike03.m2", + }, + { + fileId = "194538", + text = "db_dragonspine01.m2", + value = "db_dragonspine01.m2", + }, + { + fileId = "194539", + text = "db_dragonspine01_black.m2", + value = "db_dragonspine01_black.m2", }, { - children = { - { - children = { - { - fileId = "192581", - text = "ghostlands_gravestone01.m2", - value = "ghostlands_gravestone01.m2", - }, - { - fileId = "192582", - text = "ghostlands_gravestone02.m2", - value = "ghostlands_gravestone02.m2", - }, - { - fileId = "192583", - text = "ghostlands_gravestone03.m2", - value = "ghostlands_gravestone03.m2", - }, - { - fileId = "192585", - text = "ghostlands_tomb01.m2", - value = "ghostlands_tomb01.m2", - }, - }, - text = "graveyard", - value = "graveyard", - }, - }, - text = "ghostlands", - value = "ghostlands", + fileId = "194540", + text = "db_dragonspine01_blue.m2", + value = "db_dragonspine01_blue.m2", }, { - children = { - { - fileId = "192586", - text = "hologram_doomguard.m2", - value = "hologram_doomguard.m2", - }, - { - fileId = "192590", - text = "hologram_dreadlord.m2", - value = "hologram_dreadlord.m2", - }, - { - fileId = "192593", - text = "hologram_eredar.m2", - value = "hologram_eredar.m2", - }, - { - fileId = "192596", - text = "hologram_felguard.m2", - value = "hologram_felguard.m2", - }, - { - fileId = "192598", - text = "hologram_felhound.m2", - value = "hologram_felhound.m2", - }, - { - fileId = "192600", - text = "hologram_ganarg.m2", - value = "hologram_ganarg.m2", - }, - { - fileId = "192602", - text = "hologram_imp.m2", - value = "hologram_imp.m2", - }, - { - fileId = "192604", - text = "hologram_infernal.m2", - value = "hologram_infernal.m2", - }, - { - fileId = "192606", - text = "hologram_moarg.m2", - value = "hologram_moarg.m2", - }, - { - fileId = "192608", - text = "hologram_pitlord.m2", - value = "hologram_pitlord.m2", - }, - { - fileId = "192612", - text = "hologram_shivan.m2", - value = "hologram_shivan.m2", - }, - { - fileId = "192615", - text = "hologram_succubus.m2", - value = "hologram_succubus.m2", - }, - { - fileId = "192619", - text = "hologram_voidwalker.m2", - value = "hologram_voidwalker.m2", - }, - { - fileId = "192621", - text = "hologram_wrathguard.m2", - value = "hologram_wrathguard.m2", - }, - }, - text = "holograms", - value = "holograms", + fileId = "194541", + text = "db_dragonspine01_gray.m2", + value = "db_dragonspine01_gray.m2", }, { - children = { - { - children = { - { - fileId = "192623", - text = "bannerillidan.m2", - value = "bannerillidan.m2", - }, - }, - text = "banners", - value = "banners", - }, - }, - text = "illidan", - value = "illidan", + fileId = "194542", + text = "db_dragonspine01_white.m2", + value = "db_dragonspine01_white.m2", }, { - children = { - { - children = { - { - fileId = "192626", - text = "lo_wagon_01.m2", - value = "lo_wagon_01.m2", - }, - }, - text = "wagon", - value = "wagon", - }, - { - children = { - { - fileId = "192631", - text = "lo_weaponrack.m2", - value = "lo_weaponrack.m2", - }, - }, - text = "weaponrack", - value = "weaponrack", - }, - }, - text = "lostones", - value = "lostones", + fileId = "194543", + text = "db_dragonspine02.m2", + value = "db_dragonspine02.m2", }, { - children = { - { - children = { - { - fileId = "192633", - text = "na_ark.m2", - value = "na_ark.m2", - }, - }, - text = "ark", - value = "ark", - }, - { - children = { - { - fileId = "192637", - text = "na_banner01.m2", - value = "na_banner01.m2", - }, - }, - text = "banner", - value = "banner", - }, - { - children = { - { - fileId = "192638", - text = "na_crate01.m2", - value = "na_crate01.m2", - }, - { - fileId = "192639", - text = "na_crate02.m2", - value = "na_crate02.m2", - }, - }, - text = "crates", - value = "crates", - }, - { - children = { - { - fileId = "192641", - text = "na_distiller.m2", - value = "na_distiller.m2", - }, - }, - text = "distiller", - value = "distiller", - }, - { - children = { - { - fileId = "192642", - text = "na_jar01.m2", - value = "na_jar01.m2", - }, - { - fileId = "192643", - text = "na_jar02.m2", - value = "na_jar02.m2", - }, - }, - text = "jars", - value = "jars", - }, - { - children = { - { - fileId = "192645", - text = "nagapagodahut01.m2", - value = "nagapagodahut01.m2", - }, - }, - text = "pagoda", - value = "pagoda", - }, - { - children = { - { - fileId = "192647", - text = "na_torch01.m2", - value = "na_torch01.m2", - }, - }, - text = "torch", - value = "torch", - }, - { - children = { - { - fileId = "192649", - text = "na_weaponstack01.m2", - value = "na_weaponstack01.m2", - }, - { - fileId = "192650", - text = "na_weaponstack02.m2", - value = "na_weaponstack02.m2", - }, - }, - text = "weaponstacks", - value = "weaponstacks", - }, - }, - text = "naga", - value = "naga", + fileId = "194544", + text = "db_dragonspine02blue.m2", + value = "db_dragonspine02blue.m2", }, { - children = { - { - children = { - { - fileId = "192651", - text = "om_bones_01.m2", - value = "om_bones_01.m2", - }, - { - fileId = "192652", - text = "om_bones_02.m2", - value = "om_bones_02.m2", - }, - { - fileId = "192653", - text = "om_bones_03.m2", - value = "om_bones_03.m2", - }, - }, - text = "bones", - value = "bones", - }, - { - children = { - { - fileId = "192655", - text = "om_chains_01.m2", - value = "om_chains_01.m2", - }, - { - fileId = "192656", - text = "om_chains_02.m2", - value = "om_chains_02.m2", - }, - { - fileId = "192657", - text = "om_chains_03.m2", - value = "om_chains_03.m2", - }, - { - fileId = "192658", - text = "om_chains_04.m2", - value = "om_chains_04.m2", - }, - }, - text = "chains", - value = "chains", - }, - { - children = { - { - fileId = "192659", - text = "om_chair_01.m2", - value = "om_chair_01.m2", - }, - }, - text = "chair", - value = "chair", - }, - { - children = { - { - fileId = "192662", - text = "om_campfire_01.m2", - value = "om_campfire_01.m2", - }, - { - fileId = "192664", - text = "om_torch_01.m2", - value = "om_torch_01.m2", - }, - }, - text = "fires", - value = "fires", - }, - { - children = { - { - fileId = "192666", - text = "om_forge_01.m2", - value = "om_forge_01.m2", - }, - }, - text = "forge", - value = "forge", - }, - { - children = { - { - fileId = "192667", - text = "om_pillar_01.m2", - value = "om_pillar_01.m2", - }, - }, - text = "pillar", - value = "pillar", - }, - { - children = { - { - fileId = "192668", - text = "om_rock_01.m2", - value = "om_rock_01.m2", - }, - { - fileId = "192669", - text = "om_rock_02.m2", - value = "om_rock_02.m2", - }, - { - fileId = "192670", - text = "om_rock_03.m2", - value = "om_rock_03.m2", - }, - { - fileId = "192671", - text = "om_rock_04.m2", - value = "om_rock_04.m2", - }, - { - fileId = "192672", - text = "om_rock_05.m2", - value = "om_rock_05.m2", - }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { - { - fileId = "192674", - text = "om_iron_spike_01.m2", - value = "om_iron_spike_01.m2", - }, - { - fileId = "192675", - text = "om_iron_spike_02.m2", - value = "om_iron_spike_02.m2", - }, - }, - text = "spikes", - value = "spikes", - }, - { - children = { - { - fileId = "192677", - text = "om_stonehenge_01.m2", - value = "om_stonehenge_01.m2", - }, - { - fileId = "192678", - text = "om_stonehenge_02.m2", - value = "om_stonehenge_02.m2", - }, - { - fileId = "192679", - text = "om_stonehenge_03.m2", - value = "om_stonehenge_03.m2", - }, - }, - text = "stonehenge", - value = "stonehenge", - }, - { - children = { - { - fileId = "192680", - text = "om_table_01.m2", - value = "om_table_01.m2", - }, - }, - text = "table", - value = "table", - }, - { - children = { - { - fileId = "192682", - text = "om_tent_01.m2", - value = "om_tent_01.m2", - }, - { - fileId = "192683", - text = "om_tent_02.m2", - value = "om_tent_02.m2", - }, - { - fileId = "192684", - text = "om_tent_03.m2", - value = "om_tent_03.m2", - }, - }, - text = "tents", - value = "tents", - }, - { - children = { - { - fileId = "192685", - text = "om_totem_01.m2", - value = "om_totem_01.m2", - }, - }, - text = "totem", - value = "totem", - }, - { - children = { - { - fileId = "192686", - text = "om_weaponrack_01.m2", - value = "om_weaponrack_01.m2", - }, - { - fileId = "192687", - text = "om_weapons_01.m2", - value = "om_weapons_01.m2", - }, - { - fileId = "192688", - text = "om_weapons_02.m2", - value = "om_weapons_02.m2", - }, - { - fileId = "192689", - text = "om_weapons_03.m2", - value = "om_weapons_03.m2", - }, - { - fileId = "192690", - text = "om_weapons_04.m2", - value = "om_weapons_04.m2", - }, - }, - text = "weapons", - value = "weapons", - }, - }, - text = "ogre", - value = "ogre", + fileId = "521965", + text = "db_dragonspine02blue_burned.m2", + value = "db_dragonspine02blue_burned.m2", }, { - children = { - { - children = { - { - fileId = "192692", - text = "overhangrock_large_01.m2", - value = "overhangrock_large_01.m2", - }, - { - fileId = "192693", - text = "overhangrock_large_02.m2", - value = "overhangrock_large_02.m2", - }, - { - fileId = "192694", - text = "overhangrock_large_03.m2", - value = "overhangrock_large_03.m2", - }, - { - fileId = "192695", - text = "overhangrock_small_01.m2", - value = "overhangrock_small_01.m2", - }, - { - fileId = "192696", - text = "overhangrock_small_02.m2", - value = "overhangrock_small_02.m2", - }, - { - fileId = "192697", - text = "overhangrock_small_03.m2", - value = "overhangrock_small_03.m2", - }, - }, - text = "rocks", - value = "rocks", - }, - }, - text = "outland", - value = "outland", + fileId = "194545", + text = "db_dragonspine03.m2", + value = "db_dragonspine03.m2", }, { - children = { - { - children = { - { - fileId = "192699", - text = "shadowcouncil_banner01.m2", - value = "shadowcouncil_banner01.m2", - }, - { - fileId = "192700", - text = "shadowcouncil_banner02.m2", - value = "shadowcouncil_banner02.m2", - }, - }, - text = "banners", - value = "banners", - }, - { - children = { - { - fileId = "192701", - text = "shadowcouncil_magicdevice01.m2", - value = "shadowcouncil_magicdevice01.m2", - }, - { - fileId = "192702", - text = "shadowcouncil_magicdevice02.m2", - value = "shadowcouncil_magicdevice02.m2", - }, - }, - text = "magicdevices", - value = "magicdevices", - }, - { - children = { - { - fileId = "192704", - text = "shadowcouncil_tent01.m2", - value = "shadowcouncil_tent01.m2", - }, - { - fileId = "192705", - text = "shadowcouncil_tent02.m2", - value = "shadowcouncil_tent02.m2", - }, - }, - text = "tents", - value = "tents", - }, - { - children = { - { - fileId = "192707", - text = "shadowcouncil_torch.m2", - value = "shadowcouncil_torch.m2", - }, - }, - text = "torch", - value = "torch", - }, - }, - text = "shadowcouncil", - value = "shadowcouncil", + fileId = "194546", + text = "db_dragonspine04.m2", + value = "db_dragonspine04.m2", }, { - children = { - { - children = { - { - fileId = "249606", - text = "jewelcraft_blueheart_01.m2", - value = "jewelcraft_blueheart_01.m2", - }, - { - fileId = "192710", - text = "jewelcraft_figurine01.m2", - value = "jewelcraft_figurine01.m2", - }, - { - fileId = "192711", - text = "jewelcraft_figurine02.m2", - value = "jewelcraft_figurine02.m2", - }, - { - fileId = "242724", - text = "jewelcraft_figurine03.m2", - value = "jewelcraft_figurine03.m2", - }, - { - fileId = "192712", - text = "jewelcraft_gemcut_01.m2", - value = "jewelcraft_gemcut_01.m2", - }, - { - fileId = "192713", - text = "jewelcraft_gemcut_02.m2", - value = "jewelcraft_gemcut_02.m2", - }, - { - fileId = "192714", - text = "jewelcraft_gemcut_03.m2", - value = "jewelcraft_gemcut_03.m2", - }, - { - fileId = "242725", - text = "jewelcraft_gemcut_04.m2", - value = "jewelcraft_gemcut_04.m2", - }, - { - fileId = "192715", - text = "jewelcraft_gemuncut_01.m2", - value = "jewelcraft_gemuncut_01.m2", - }, - { - fileId = "192716", - text = "jewelcraft_gemuncut_02.m2", - value = "jewelcraft_gemuncut_02.m2", - }, - { - fileId = "192717", - text = "jewelcraft_gemuncut_03.m2", - value = "jewelcraft_gemuncut_03.m2", - }, - { - fileId = "192718", - text = "jewelcraft_grinder01.m2", - value = "jewelcraft_grinder01.m2", - }, - { - fileId = "242726", - text = "jewelcraft_necklace01.m2", - value = "jewelcraft_necklace01.m2", - }, - { - fileId = "242727", - text = "jewelcraft_necklace02.m2", - value = "jewelcraft_necklace02.m2", - }, - { - fileId = "242728", - text = "jewelcraft_ring01.m2", - value = "jewelcraft_ring01.m2", - }, - { - fileId = "242729", - text = "jewelcraft_ring02.m2", - value = "jewelcraft_ring02.m2", - }, - { - fileId = "242730", - text = "jewelcraft_ring03.m2", - value = "jewelcraft_ring03.m2", - }, - }, - text = "jewelcrafting", - value = "jewelcrafting", - }, - }, - text = "tradeskill", - value = "tradeskill", + fileId = "521967", + text = "db_dragonspine04_burned.m2", + value = "db_dragonspine04_burned.m2", }, { - children = { - { - children = { - { - fileId = "192721", - text = "vr_weaponrack_01.m2", - value = "vr_weaponrack_01.m2", - }, - }, - text = "weaponracks", - value = "weaponracks", - }, - }, - text = "vrykul", - value = "vrykul", + fileId = "194547", + text = "db_dragonspinepiece01.m2", + value = "db_dragonspinepiece01.m2", }, - }, - text = "generic", - value = "generic", - }, - { - children = { { - children = { - { - fileId = "192723", - text = "ghostlands_arch_01.m2", - value = "ghostlands_arch_01.m2", - }, - }, - text = "arch", - value = "arch", + fileId = "194548", + text = "db_dragonspinepiece02.m2", + value = "db_dragonspinepiece02.m2", }, { - children = { - { - fileId = "192725", - text = "ghostlandsbush01.m2", - value = "ghostlandsbush01.m2", - }, - { - fileId = "192726", - text = "ghostlandsbush02.m2", - value = "ghostlandsbush02.m2", - }, - }, - text = "bushes", - value = "bushes", + fileId = "194549", + text = "db_dragonspinepiece03.m2", + value = "db_dragonspinepiece03.m2", }, { - children = { - { - fileId = "192727", - text = "fence_ghostlands01.m2", - value = "fence_ghostlands01.m2", - }, - { - fileId = "192728", - text = "fence_ghostlands02.m2", - value = "fence_ghostlands02.m2", - }, - { - fileId = "192729", - text = "fence_ghostlands03.m2", - value = "fence_ghostlands03.m2", - }, - { - fileId = "192730", - text = "fence_ghostlands04.m2", - value = "fence_ghostlands04.m2", - }, - }, - text = "fence", - value = "fence", + fileId = "194550", + text = "db_dragonwing01_left.m2", + value = "db_dragonwing01_left.m2", }, { - children = { - { - fileId = "192732", - text = "be_lamppost_ghostlands01.m2", - value = "be_lamppost_ghostlands01.m2", - }, - { - fileId = "192733", - text = "be_lamppost_ghostlands02.m2", - value = "be_lamppost_ghostlands02.m2", - }, - }, - text = "lampposts", - value = "lampposts", + fileId = "194551", + text = "db_dragonwing01_leftblack.m2", + value = "db_dragonwing01_leftblack.m2", }, { - children = { - { - fileId = "192734", - text = "ghostlands_moonstone.m2", - value = "ghostlands_moonstone.m2", - }, - }, - text = "moonstone", - value = "moonstone", + fileId = "194552", + text = "db_dragonwing01_leftblue.m2", + value = "db_dragonwing01_leftblue.m2", }, { - children = { - { - fileId = "192738", - text = "ghostland_obelisk_01.m2", - value = "ghostland_obelisk_01.m2", - }, - { - fileId = "192739", - text = "ghostland_obelisk_02.m2", - value = "ghostland_obelisk_02.m2", - }, - { - fileId = "192740", - text = "ghostland_obelisk_03.m2", - value = "ghostland_obelisk_03.m2", - }, - }, - text = "obelisk", - value = "obelisk", + fileId = "194553", + text = "db_dragonwing01_leftgray.m2", + value = "db_dragonwing01_leftgray.m2", }, { - children = { - { - fileId = "192742", - text = "ghostland_planter_01.m2", - value = "ghostland_planter_01.m2", - }, - { - fileId = "192743", - text = "ghostland_planter_02.m2", - value = "ghostland_planter_02.m2", - }, - { - fileId = "192744", - text = "ghostland_planter_03.m2", - value = "ghostland_planter_03.m2", - }, - }, - text = "planter", - value = "planter", + fileId = "194554", + text = "db_dragonwing01_leftwhite.m2", + value = "db_dragonwing01_leftwhite.m2", }, { - children = { - { - fileId = "192746", - text = "gl_bluepollen.m2", - value = "gl_bluepollen.m2", - }, - }, - text = "pollen", - value = "pollen", + fileId = "194555", + text = "db_dragonwing01_right.m2", + value = "db_dragonwing01_right.m2", }, { - children = { - { - fileId = "192747", - text = "ghostlandscliffrock01.m2", - value = "ghostlandscliffrock01.m2", - }, - { - fileId = "192748", - text = "ghostlandscliffrock02.m2", - value = "ghostlandscliffrock02.m2", - }, - }, - text = "rocks", - value = "rocks", + fileId = "194556", + text = "db_dragonwing01_rightblack.m2", + value = "db_dragonwing01_rightblack.m2", }, { - children = { - { - fileId = "192750", - text = "ghostlandssmallroots01.m2", - value = "ghostlandssmallroots01.m2", - }, - { - fileId = "192751", - text = "ghostlandssmallroots02.m2", - value = "ghostlandssmallroots02.m2", - }, - { - fileId = "192752", - text = "ghostlandssmallroots03.m2", - value = "ghostlandssmallroots03.m2", - }, - { - fileId = "192753", - text = "ghostlandssmallroots04.m2", - value = "ghostlandssmallroots04.m2", - }, - }, - text = "roots", - value = "roots", + fileId = "194557", + text = "db_dragonwing01_rightblue.m2", + value = "db_dragonwing01_rightblue.m2", }, { - children = { - { - fileId = "192754", - text = "be_signpost_ghostlands.m2", - value = "be_signpost_ghostlands.m2", - }, - { - fileId = "192755", - text = "be_signpost_sign_ghostlands.m2", - value = "be_signpost_sign_ghostlands.m2", - }, - }, - text = "signpost", - value = "signpost", + fileId = "194558", + text = "db_dragonwing01_rightgray.m2", + value = "db_dragonwing01_rightgray.m2", }, { - children = { - { - fileId = "192756", - text = "swath_skull.m2", - value = "swath_skull.m2", - }, - }, - text = "skulls", - value = "skulls", + fileId = "194559", + text = "db_dragonwing01_rightwhite.m2", + value = "db_dragonwing01_rightwhite.m2", + }, + { + fileId = "194560", + text = "db_flowers01.m2", + value = "db_flowers01.m2", + }, + { + fileId = "194561", + text = "db_flowers02.m2", + value = "db_flowers02.m2", + }, + { + fileId = "194562", + text = "db_flowers03.m2", + value = "db_flowers03.m2", + }, + { + fileId = "194563", + text = "db_frostmornealtar_01.m2", + value = "db_frostmornealtar_01.m2", + }, + { + fileId = "194564", + text = "db_frostmornealtar_02.m2", + value = "db_frostmornealtar_02.m2", + }, + { + fileId = "194565", + text = "db_leaves_fall.m2", + value = "db_leaves_fall.m2", + }, + { + fileId = "194566", + text = "db_leaves_fall02.m2", + value = "db_leaves_fall02.m2", + }, + { + fileId = "194567", + text = "db_lilypads01.m2", + value = "db_lilypads01.m2", + }, + { + fileId = "194568", + text = "db_lilypads02.m2", + value = "db_lilypads02.m2", + }, + { + fileId = "194571", + text = "db_red_dragon_shrine_leafs.m2", + value = "db_red_dragon_shrine_leafs.m2", + }, + { + fileId = "194580", + text = "dragonblight_bush01.m2", + value = "dragonblight_bush01.m2", + }, + { + fileId = "194581", + text = "dragonblight_bush02.m2", + value = "dragonblight_bush02.m2", + }, + { + fileId = "194583", + text = "dragonblight_bush03.m2", + value = "dragonblight_bush03.m2", + }, + { + fileId = "194584", + text = "dragonblight_cliff_01.m2", + value = "dragonblight_cliff_01.m2", }, { - children = { - { - fileId = "192759", - text = "ghostlands_webstretch_01.m2", - value = "ghostlands_webstretch_01.m2", - }, - { - fileId = "192760", - text = "ghostlandsweb_01.m2", - value = "ghostlandsweb_01.m2", - }, - { - fileId = "192761", - text = "ghostlandsweb_02.m2", - value = "ghostlandsweb_02.m2", - }, - { - fileId = "192762", - text = "ghostlandsweb_03.m2", - value = "ghostlandsweb_03.m2", - }, - { - fileId = "192763", - text = "ghostlandswebdangle_01.m2", - value = "ghostlandswebdangle_01.m2", - }, - { - fileId = "192764", - text = "ghostlandswebdangle_02.m2", - value = "ghostlandswebdangle_02.m2", - }, - }, - text = "webs", - value = "webs", + fileId = "194585", + text = "dragonblight_cliff_02.m2", + value = "dragonblight_cliff_02.m2", }, - }, - text = "ghostlands", - value = "ghostlands", - }, - { - children = { { - children = { - { - children = { - { - fileId = "192766", - text = "magtheradoncube.m2", - value = "magtheradoncube.m2", - }, - }, - text = "cube", - value = "cube", - }, - { - children = { - { - fileId = "192768", - text = "hellfire_bossdoor01.m2", - value = "hellfire_bossdoor01.m2", - }, - { - fileId = "192769", - text = "hf_mag_door.m2", - value = "hf_mag_door.m2", - }, - }, - text = "doors", - value = "doors", - }, - { - children = { - { - fileId = "192771", - text = "hellfire_raid_fx.m2", - value = "hellfire_raid_fx.m2", - }, - { - fileId = "192772", - text = "raid_column_fx.m2", - value = "raid_column_fx.m2", - }, - }, - text = "raid_fx", - value = "raid_fx", - }, - }, - text = "activedoodads", - value = "activedoodads", + fileId = "194586", + text = "dragonblight_cliff_03.m2", + value = "dragonblight_cliff_03.m2", }, { - children = { - { - children = { - { - children = { - { - fileId = "192781", - text = "hellfire_dw_fellconversionchamber.m2", - value = "hellfire_dw_fellconversionchamber.m2", - }, - }, - text = "chamber", - value = "chamber", - }, - { - children = { - { - fileId = "192782", - text = "hellfire_dw_largefloor_crack_onoff.m2", - value = "hellfire_dw_largefloor_crack_onoff.m2", - }, - { - fileId = "192783", - text = "hellfire_dw_smallfloor_crack_onoff.m2", - value = "hellfire_dw_smallfloor_crack_onoff.m2", - }, - }, - text = "cracks", - value = "cracks", - }, - { - children = { - { - fileId = "192784", - text = "hellfire_dw_mainprisonentry.m2", - value = "hellfire_dw_mainprisonentry.m2", - }, - { - fileId = "192785", - text = "hellfire_dw_prisondoor.m2", - value = "hellfire_dw_prisondoor.m2", - }, - }, - text = "doors", - value = "doors", - }, - { - children = { - { - fileId = "192786", - text = "hellfire_dw_summonroomdoor.m2", - value = "hellfire_dw_summonroomdoor.m2", - }, - }, - text = "summon_door", - value = "summon_door", - }, - { - children = { - { - fileId = "192790", - text = "hellfire_dw_summonpower.m2", - value = "hellfire_dw_summonpower.m2", - }, - }, - text = "summoning_power_room", - value = "summoning_power_room", - }, - { - children = { - { - fileId = "192793", - text = "hf_floor_switch.m2", - value = "hf_floor_switch.m2", - }, - }, - text = "switches", - value = "switches", - }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { - { - children = { - { - fileId = "192802", - text = "dw_conversionchamber.m2", - value = "dw_conversionchamber.m2", - }, - { - fileId = "192806", - text = "hellfire_dw_conversionchamber_broken.m2", - value = "hellfire_dw_conversionchamber_broken.m2", - }, - }, - text = "chamber", - value = "chamber", - }, - { - children = { - { - fileId = "192811", - text = "hellfire_dw_largefloor_crack.m2", - value = "hellfire_dw_largefloor_crack.m2", - }, - { - fileId = "192812", - text = "hellfire_dw_largewall_crack.m2", - value = "hellfire_dw_largewall_crack.m2", - }, - { - fileId = "192813", - text = "hellfire_dw_smallfloor_crack.m2", - value = "hellfire_dw_smallfloor_crack.m2", - }, - { - fileId = "192814", - text = "hellfire_dw_smallwall_crack.m2", - value = "hellfire_dw_smallwall_crack.m2", - }, - }, - text = "cracks", - value = "cracks", - }, - { - children = { - { - fileId = "192818", - text = "hellfire_dw_celldoor.m2", - value = "hellfire_dw_celldoor.m2", - }, - { - fileId = "192819", - text = "hellfire_dw_prisonentry.m2", - value = "hellfire_dw_prisonentry.m2", - }, - }, - text = "doors", - value = "doors", - }, - { - children = { - { - fileId = "192822", - text = "hellfire_dw_banner_type01.m2", - value = "hellfire_dw_banner_type01.m2", - }, - { - fileId = "192823", - text = "hellfire_dw_banner_type02.m2", - value = "hellfire_dw_banner_type02.m2", - }, - { - fileId = "192824", - text = "hellfire_dw_banner_type03.m2", - value = "hellfire_dw_banner_type03.m2", - }, - { - fileId = "192825", - text = "hellfire_dw_banner_type04.m2", - value = "hellfire_dw_banner_type04.m2", - }, - { - fileId = "192826", - text = "hellfire_dw_banner_typelarge_longchain.m2", - value = "hellfire_dw_banner_typelarge_longchain.m2", - }, - { - fileId = "192827", - text = "hellfire_dw_banner_typewide.m2", - value = "hellfire_dw_banner_typewide.m2", - }, - }, - text = "dw_banners", - value = "dw_banners", - }, - { - children = { - { - fileId = "192830", - text = "hellfire_dw_floorbraizer.m2", - value = "hellfire_dw_floorbraizer.m2", - }, - { - fileId = "192831", - text = "hellfire_dw_hangingbraizer.m2", - value = "hellfire_dw_hangingbraizer.m2", - }, - }, - text = "dw_braizer", - value = "dw_braizer", - }, - { - children = { - { - fileId = "192833", - text = "hellfire_dw_hook.m2", - value = "hellfire_dw_hook.m2", - }, - { - fileId = "192834", - text = "hellfire_dw_hook_swing.m2", - value = "hellfire_dw_hook_swing.m2", - }, - }, - text = "dw_hooks", - value = "dw_hooks", - }, - { - children = { - { - fileId = "192836", - text = "hf_demonwing_lantern_nolight.m2", - value = "hf_demonwing_lantern_nolight.m2", - }, - }, - text = "dw_lantern", - value = "dw_lantern", - }, - { - children = { - { - fileId = "192839", - text = "hellfire_dw_pipe_type1.m2", - value = "hellfire_dw_pipe_type1.m2", - }, - { - fileId = "192840", - text = "hellfire_dw_pipe_type2.m2", - value = "hellfire_dw_pipe_type2.m2", - }, - { - fileId = "192841", - text = "hellfire_dw_pipe_type3.m2", - value = "hellfire_dw_pipe_type3.m2", - }, - { - fileId = "192842", - text = "hellfire_dw_pipe_type4.m2", - value = "hellfire_dw_pipe_type4.m2", - }, - { - fileId = "192843", - text = "hellfire_dw_pipe_typebasic.m2", - value = "hellfire_dw_pipe_typebasic.m2", - }, - }, - text = "dw_pipes", - value = "dw_pipes", - }, - { - children = { - { - fileId = "192853", - text = "hf_demonwing_lantern.m2", - value = "hf_demonwing_lantern.m2", - }, - }, - text = "lantern", - value = "lantern", - }, - { - children = { - { - fileId = "192863", - text = "hellfire_dw_machine_fin2.m2", - value = "hellfire_dw_machine_fin2.m2", - }, - { - fileId = "192864", - text = "hellfire_dw_machine_ver2.m2", - value = "hellfire_dw_machine_ver2.m2", - }, - { - fileId = "192865", - text = "hellfire_dw_machine_ver3.m2", - value = "hellfire_dw_machine_ver3.m2", - }, - { - fileId = "192866", - text = "hellfire_dw_tank.m2", - value = "hellfire_dw_tank.m2", - }, - }, - text = "machine", - value = "machine", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "demonwing", - value = "demonwing", + fileId = "194587", + text = "dragonblight_cliff_04.m2", + value = "dragonblight_cliff_04.m2", }, { - children = { - { - children = { - { - fileId = "192870", - text = "hellfire_banner_type01.m2", - value = "hellfire_banner_type01.m2", - }, - { - fileId = "192871", - text = "hellfire_banner_type01_burning.m2", - value = "hellfire_banner_type01_burning.m2", - }, - { - fileId = "192872", - text = "hellfire_banner_type02.m2", - value = "hellfire_banner_type02.m2", - }, - { - fileId = "192873", - text = "hellfire_banner_type03.m2", - value = "hellfire_banner_type03.m2", - }, - { - fileId = "192874", - text = "hellfire_banner_type04.m2", - value = "hellfire_banner_type04.m2", - }, - { - fileId = "192875", - text = "hellfire_banner_typelarge_longchain.m2", - value = "hellfire_banner_typelarge_longchain.m2", - }, - { - fileId = "192876", - text = "hellfire_banner_typesmall_shortchain.m2", - value = "hellfire_banner_typesmall_shortchain.m2", - }, - { - fileId = "192877", - text = "hellfire_banner_typewide.m2", - value = "hellfire_banner_typewide.m2", - }, - }, - text = "banners", - value = "banners", - }, - { - children = { - { - fileId = "192879", - text = "hellfire_barrier.m2", - value = "hellfire_barrier.m2", - }, - }, - text = "barrier", - value = "barrier", - }, - { - children = { - { - fileId = "192883", - text = "hellfire_floorbraizer.m2", - value = "hellfire_floorbraizer.m2", - }, - { - fileId = "192884", - text = "hellfire_floorbraizer_broken.m2", - value = "hellfire_floorbraizer_broken.m2", - }, - { - fileId = "192885", - text = "hellfire_floorbraizer_purple.m2", - value = "hellfire_floorbraizer_purple.m2", - }, - { - fileId = "192886", - text = "hellfire_hangingbraizer.m2", - value = "hellfire_hangingbraizer.m2", - }, - { - fileId = "192887", - text = "hellfire_hangingbraizer_purpleflame.m2", - value = "hellfire_hangingbraizer_purpleflame.m2", - }, - { - fileId = "192888", - text = "hellfire_standingbraizer_purple.m2", - value = "hellfire_standingbraizer_purple.m2", - }, - }, - text = "braizers", - value = "braizers", - }, - { - children = { - { - fileId = "192891", - text = "hellfire_militarywing_throne.m2", - value = "hellfire_militarywing_throne.m2", - }, - }, - text = "throne", - value = "throne", - }, - { - children = { - { - fileId = "192893", - text = "hellfire_gastorch01.m2", - value = "hellfire_gastorch01.m2", - }, - }, - text = "torches", - value = "torches", - }, - }, - text = "passivedoodads", - value = "passivedoodads", + fileId = "194588", + text = "dragonblight_cliff_05.m2", + value = "dragonblight_cliff_05.m2", }, - }, - text = "hellfirecitadel", - value = "hellfirecitadel", - }, - { - children = { { - children = { - { - fileId = "192895", - text = "hellfire_oldorcbanner01.m2", - value = "hellfire_oldorcbanner01.m2", - }, - { - fileId = "192896", - text = "hellfire_oldorcbanner02.m2", - value = "hellfire_oldorcbanner02.m2", - }, - }, - text = "banners", - value = "banners", + fileId = "194589", + text = "dragonblight_cliff_06.m2", + value = "dragonblight_cliff_06.m2", }, { - children = { - { - fileId = "192899", - text = "hellfirebushthorn01.m2", - value = "hellfirebushthorn01.m2", - }, - { - fileId = "192900", - text = "hellfirebushthorn02.m2", - value = "hellfirebushthorn02.m2", - }, - { - fileId = "192901", - text = "hellfirebushthorn03.m2", - value = "hellfirebushthorn03.m2", - }, - }, - text = "bushes", - value = "bushes", + fileId = "243323", + text = "dragonblight_cliff_grey_01.m2", + value = "dragonblight_cliff_grey_01.m2", }, { - children = { - { - fileId = "192903", - text = "hellfirecrystal01.m2", - value = "hellfirecrystal01.m2", - }, - { - fileId = "192905", - text = "hellfirecrystalformation_01.m2", - value = "hellfirecrystalformation_01.m2", - }, - { - fileId = "192906", - text = "hellfirecrystalformation_02.m2", - value = "hellfirecrystalformation_02.m2", - }, - { - fileId = "192907", - text = "hellfirecrystalformation_03.m2", - value = "hellfirecrystalformation_03.m2", - }, - }, - text = "crystals", - value = "crystals", + fileId = "243324", + text = "dragonblight_cliff_grey_02.m2", + value = "dragonblight_cliff_grey_02.m2", }, { - children = { - { - fileId = "192909", - text = "hellfire_fireparticle.m2", - value = "hellfire_fireparticle.m2", - }, - { - fileId = "192910", - text = "hellfirecurb_01.m2", - value = "hellfirecurb_01.m2", - }, - { - fileId = "192911", - text = "hellfirecurb_02.m2", - value = "hellfirecurb_02.m2", - }, - { - fileId = "192912", - text = "hellfirecurb_03.m2", - value = "hellfirecurb_03.m2", - }, - { - fileId = "192913", - text = "hellfirecurb_fire_01.m2", - value = "hellfirecurb_fire_01.m2", - }, - { - fileId = "192914", - text = "hellfirecurb_fire_02.m2", - value = "hellfirecurb_fire_02.m2", - }, - }, - text = "curb", - value = "curb", + fileId = "243325", + text = "dragonblight_cliff_grey_03.m2", + value = "dragonblight_cliff_grey_03.m2", }, { - children = { - { - fileId = "192920", - text = "hellfire_darkportal_fx.m2", - value = "hellfire_darkportal_fx.m2", - }, - }, - text = "darkportal", - value = "darkportal", + fileId = "243326", + text = "dragonblight_cliff_grey_04.m2", + value = "dragonblight_cliff_grey_04.m2", }, { - children = { - { - fileId = "192930", - text = "dr_post_hellfire.m2", - value = "dr_post_hellfire.m2", - }, - { - fileId = "192931", - text = "dr_post_hellfire_ruin.m2", - value = "dr_post_hellfire_ruin.m2", - }, - { - fileId = "192932", - text = "dr_wall_hellfire.m2", - value = "dr_wall_hellfire.m2", - }, - { - fileId = "192933", - text = "dr_wall_hellfire_ruin.m2", - value = "dr_wall_hellfire_ruin.m2", - }, - }, - text = "draeneifence", - value = "draeneifence", + fileId = "243327", + text = "dragonblight_cliff_grey_05.m2", + value = "dragonblight_cliff_grey_05.m2", }, { - children = { - { - fileId = "192938", - text = "hellfire_fel_firewall_01.m2", - value = "hellfire_fel_firewall_01.m2", - }, - { - fileId = "192939", - text = "hellfire_firewall_01.m2", - value = "hellfire_firewall_01.m2", - }, - }, - text = "firewall", - value = "firewall", + fileId = "243328", + text = "dragonblight_cliff_grey_06.m2", + value = "dragonblight_cliff_grey_06.m2", }, { - children = { - { - fileId = "192940", - text = "hellfire_gravestones_alliance_01.m2", - value = "hellfire_gravestones_alliance_01.m2", - }, - { - fileId = "192941", - text = "hellfire_gravestones_alliance_02.m2", - value = "hellfire_gravestones_alliance_02.m2", - }, - { - fileId = "192942", - text = "hellfire_gravestones_alliance_03.m2", - value = "hellfire_gravestones_alliance_03.m2", - }, - { - fileId = "192943", - text = "hellfire_gravestones_horde_01.m2", - value = "hellfire_gravestones_horde_01.m2", - }, - { - fileId = "192944", - text = "hellfire_gravestones_horde_02.m2", - value = "hellfire_gravestones_horde_02.m2", - }, - { - fileId = "192945", - text = "hellfire_gravestones_horde_03.m2", - value = "hellfire_gravestones_horde_03.m2", - }, - }, - text = "gravestones", - value = "gravestones", + fileId = "194592", + text = "dragonblight_debrispile_01.m2", + value = "dragonblight_debrispile_01.m2", }, { - children = { - { - fileId = "192948", - text = "hellfirefloatingrock_large_01.m2", - value = "hellfirefloatingrock_large_01.m2", - }, - { - fileId = "192949", - text = "hellfirefloatingrock_large_02.m2", - value = "hellfirefloatingrock_large_02.m2", - }, - { - fileId = "192950", - text = "hellfirefloatingrock_large_03.m2", - value = "hellfirefloatingrock_large_03.m2", - }, - { - fileId = "192951", - text = "hellfirefloatingrock_small_01.m2", - value = "hellfirefloatingrock_small_01.m2", - }, - { - fileId = "192952", - text = "hellfirefloatingrock_small_02.m2", - value = "hellfirefloatingrock_small_02.m2", - }, - { - fileId = "192953", - text = "hellfirefloatingrock_small_03.m2", - value = "hellfirefloatingrock_small_03.m2", - }, - }, - text = "hellfirefloatingrock", - value = "hellfirefloatingrock", + fileId = "194593", + text = "dragonblight_debrispile_02.m2", + value = "dragonblight_debrispile_02.m2", }, { - children = { - { - fileId = "192956", - text = "hellfire_overhangrock_large_01.m2", - value = "hellfire_overhangrock_large_01.m2", - }, - { - fileId = "192957", - text = "hellfire_overhangrock_large_02.m2", - value = "hellfire_overhangrock_large_02.m2", - }, - { - fileId = "192958", - text = "hellfire_overhangrock_large_03.m2", - value = "hellfire_overhangrock_large_03.m2", - }, - { - fileId = "192959", - text = "hellfire_overhangrock_small_01.m2", - value = "hellfire_overhangrock_small_01.m2", - }, - { - fileId = "192960", - text = "hellfire_overhangrock_small_02.m2", - value = "hellfire_overhangrock_small_02.m2", - }, - { - fileId = "192961", - text = "hellfire_overhangrock_small_03.m2", - value = "hellfire_overhangrock_small_03.m2", - }, - }, - text = "hellfireoverhangrock", - value = "hellfireoverhangrock", + fileId = "243331", + text = "dragonblight_fires_lower_01.m2", + value = "dragonblight_fires_lower_01.m2", }, { - children = { - { - fileId = "192964", - text = "hellfirewarpstorm01.m2", - value = "hellfirewarpstorm01.m2", - }, - }, - text = "hellfirewarpstorm", - value = "hellfirewarpstorm", + fileId = "243332", + text = "dragonblight_fires_lower_east_02.m2", + value = "dragonblight_fires_lower_east_02.m2", }, { - children = { - { - fileId = "192965", - text = "ancient_drainei_lamppost.m2", - value = "ancient_drainei_lamppost.m2", - }, - { - fileId = "192966", - text = "ancient_drainei_lamppost_ruined.m2", - value = "ancient_drainei_lamppost_ruined.m2", - }, - { - fileId = "192968", - text = "dr_signpost_ancient.m2", - value = "dr_signpost_ancient.m2", - }, - { - fileId = "192969", - text = "dr_signpost_sign_ancient.m2", - value = "dr_signpost_sign_ancient.m2", - }, - }, - text = "lamppost", - value = "lamppost", + fileId = "243333", + text = "dragonblight_fires_lower_west_03.m2", + value = "dragonblight_fires_lower_west_03.m2", }, { - children = { - { - fileId = "192972", - text = "hellfiremonolith01.m2", - value = "hellfiremonolith01.m2", - }, - }, - text = "monolith", - value = "monolith", + fileId = "243334", + text = "dragonblight_fires_upper_east_01.m2", + value = "dragonblight_fires_upper_east_01.m2", }, { - children = { - { - fileId = "192973", - text = "ancient_draenei_plaform_06.m2", - value = "ancient_draenei_plaform_06.m2", - }, - { - fileId = "192974", - text = "ancient_draenei_plaform_07.m2", - value = "ancient_draenei_plaform_07.m2", - }, - }, - text = "platform", - value = "platform", + fileId = "243335", + text = "dragonblight_fires_upper_north_03.m2", + value = "dragonblight_fires_upper_north_03.m2", }, { - children = { - { - fileId = "192977", - text = "hellfire_pvpflags_northfort.m2", - value = "hellfire_pvpflags_northfort.m2", - }, - { - fileId = "192978", - text = "hellfire_pvpflags_northfortflagsa.m2", - value = "hellfire_pvpflags_northfortflagsa.m2", - }, - { - fileId = "192979", - text = "hellfire_pvpflags_northfortflagsh.m2", - value = "hellfire_pvpflags_northfortflagsh.m2", - }, - { - fileId = "192980", - text = "hellfire_pvpflags_northfortflagsn.m2", - value = "hellfire_pvpflags_northfortflagsn.m2", - }, - { - fileId = "192981", - text = "hellfire_pvpflags_southfort.m2", - value = "hellfire_pvpflags_southfort.m2", - }, - { - fileId = "192982", - text = "hellfire_pvpflags_southfortflagsa.m2", - value = "hellfire_pvpflags_southfortflagsa.m2", - }, - { - fileId = "192983", - text = "hellfire_pvpflags_southfortflagsh.m2", - value = "hellfire_pvpflags_southfortflagsh.m2", - }, - { - fileId = "192984", - text = "hellfire_pvpflags_southfortflagsn.m2", - value = "hellfire_pvpflags_southfortflagsn.m2", - }, - { - fileId = "192985", - text = "hellfire_pvpflags_westfort.m2", - value = "hellfire_pvpflags_westfort.m2", - }, - { - fileId = "192986", - text = "hellfire_pvpflags_westfortflagsa.m2", - value = "hellfire_pvpflags_westfortflagsa.m2", - }, - { - fileId = "192987", - text = "hellfire_pvpflags_westfortflagsh.m2", - value = "hellfire_pvpflags_westfortflagsh.m2", - }, - { - fileId = "192988", - text = "hellfire_pvpflags_westfortflagsn.m2", - value = "hellfire_pvpflags_westfortflagsn.m2", - }, - }, - text = "pvpflags", - value = "pvpflags", + fileId = "243336", + text = "dragonblight_fires_upper_west_02.m2", + value = "dragonblight_fires_upper_west_02.m2", }, { - children = { - { - fileId = "192990", - text = "hellfirerock_razor01.m2", - value = "hellfirerock_razor01.m2", - }, - { - fileId = "192991", - text = "hellfirerock_razor02.m2", - value = "hellfirerock_razor02.m2", - }, - { - fileId = "192992", - text = "hellfirerock_razor03.m2", - value = "hellfirerock_razor03.m2", - }, - { - fileId = "192993", - text = "hellfirerock_short01.m2", - value = "hellfirerock_short01.m2", - }, - { - fileId = "192994", - text = "hellfirerock_short02.m2", - value = "hellfirerock_short02.m2", - }, - { - fileId = "192995", - text = "hellfirerock_short03.m2", - value = "hellfirerock_short03.m2", - }, - { - fileId = "192996", - text = "hellfirerock_tall01.m2", - value = "hellfirerock_tall01.m2", - }, - { - fileId = "192997", - text = "hellfirerock_tall02.m2", - value = "hellfirerock_tall02.m2", - }, - { - fileId = "192998", - text = "hellfirerock_tall03.m2", - value = "hellfirerock_tall03.m2", - }, - }, - text = "rocks", - value = "rocks", + fileId = "194594", + text = "dragonblight_icearch_01.m2", + value = "dragonblight_icearch_01.m2", + }, + { + fileId = "194595", + text = "dragonblight_icearch_02.m2", + value = "dragonblight_icearch_02.m2", + }, + { + fileId = "194597", + text = "dragonblight_iceberg_large_01.m2", + value = "dragonblight_iceberg_large_01.m2", + }, + { + fileId = "194598", + text = "dragonblight_iceberg_large_02.m2", + value = "dragonblight_iceberg_large_02.m2", + }, + { + fileId = "194599", + text = "dragonblight_iceberg_large_03.m2", + value = "dragonblight_iceberg_large_03.m2", + }, + { + fileId = "194600", + text = "dragonblight_iceberg_large_04.m2", + value = "dragonblight_iceberg_large_04.m2", + }, + { + fileId = "194601", + text = "dragonblight_iceberg_large_05.m2", + value = "dragonblight_iceberg_large_05.m2", + }, + { + fileId = "194602", + text = "dragonblight_iceberg_large_06.m2", + value = "dragonblight_iceberg_large_06.m2", + }, + { + fileId = "194605", + text = "dragonblight_icecliff_01.m2", + value = "dragonblight_icecliff_01.m2", + }, + { + fileId = "194606", + text = "dragonblight_icecliff_02.m2", + value = "dragonblight_icecliff_02.m2", + }, + { + fileId = "194607", + text = "dragonblight_icecliff_03.m2", + value = "dragonblight_icecliff_03.m2", }, { - children = { - { - fileId = "193001", - text = "hellfirecliffrocks01.m2", - value = "hellfirecliffrocks01.m2", - }, - { - fileId = "193002", - text = "hellfirecliffrocks02.m2", - value = "hellfirecliffrocks02.m2", - }, - { - fileId = "193003", - text = "hellfirecliffrocks03.m2", - value = "hellfirecliffrocks03.m2", - }, - { - fileId = "193004", - text = "hellfirecliffrocks04.m2", - value = "hellfirecliffrocks04.m2", - }, - { - fileId = "193005", - text = "hellfirecliffrocks05.m2", - value = "hellfirecliffrocks05.m2", - }, - }, - text = "rockscliff", - value = "rockscliff", + fileId = "194608", + text = "dragonblight_icecliff_04.m2", + value = "dragonblight_icecliff_04.m2", }, { - children = { - { - fileId = "193007", - text = "hellfirerocks_floatinglarge01.m2", - value = "hellfirerocks_floatinglarge01.m2", - }, - { - fileId = "193008", - text = "hellfirerocks_floatinglarge02.m2", - value = "hellfirerocks_floatinglarge02.m2", - }, - { - fileId = "193009", - text = "hellfirerocks_floatinglarge03.m2", - value = "hellfirerocks_floatinglarge03.m2", - }, - { - fileId = "193010", - text = "hellfirerocks_floatingmedium01.m2", - value = "hellfirerocks_floatingmedium01.m2", - }, - { - fileId = "193011", - text = "hellfirerocks_floatingmedium02.m2", - value = "hellfirerocks_floatingmedium02.m2", - }, - { - fileId = "193012", - text = "hellfirerocks_floatingmedium03.m2", - value = "hellfirerocks_floatingmedium03.m2", - }, - { - fileId = "193013", - text = "hellfirerocks_floatingsmall01.m2", - value = "hellfirerocks_floatingsmall01.m2", - }, - { - fileId = "193014", - text = "hellfirerocks_floatingsmall02.m2", - value = "hellfirerocks_floatingsmall02.m2", - }, - { - fileId = "193015", - text = "hellfirerocks_floatingsmall03.m2", - value = "hellfirerocks_floatingsmall03.m2", - }, - }, - text = "rocksfloating", - value = "rocksfloating", + fileId = "194609", + text = "dragonblight_icecliff_05.m2", + value = "dragonblight_icecliff_05.m2", }, { - children = { - { - fileId = "193016", - text = "hellfiresandtrap.m2", - value = "hellfiresandtrap.m2", - }, - }, - text = "sandtrap", - value = "sandtrap", + fileId = "194610", + text = "dragonblight_icecliff_06.m2", + value = "dragonblight_icecliff_06.m2", }, { - children = { - { - fileId = "193019", - text = "hellfiresupplies_01.m2", - value = "hellfiresupplies_01.m2", - }, - { - fileId = "193020", - text = "hellfiresupplies_02.m2", - value = "hellfiresupplies_02.m2", - }, - { - fileId = "193021", - text = "hellfiresupplies_03.m2", - value = "hellfiresupplies_03.m2", - }, - { - fileId = "193022", - text = "hellfiresupplies_04.m2", - value = "hellfiresupplies_04.m2", - }, - { - fileId = "193023", - text = "hellfiresupplies_05.m2", - value = "hellfiresupplies_05.m2", - }, - { - fileId = "193024", - text = "hellfiresupplies_06.m2", - value = "hellfiresupplies_06.m2", - }, - }, - text = "supplies", - value = "supplies", + fileId = "194613", + text = "dragonblight_icedragonwall_01.m2", + value = "dragonblight_icedragonwall_01.m2", }, { - children = { - { - fileId = "193027", - text = "hellfireseedpod01.m2", - value = "hellfireseedpod01.m2", - }, - { - fileId = "193028", - text = "hellfiretreethorns01.m2", - value = "hellfiretreethorns01.m2", - }, - { - fileId = "193029", - text = "hellfiretreethorns02.m2", - value = "hellfiretreethorns02.m2", - }, - { - fileId = "193030", - text = "hellfiretreethorns03.m2", - value = "hellfiretreethorns03.m2", - }, - { - fileId = "193031", - text = "hellfiretreethorns04.m2", - value = "hellfiretreethorns04.m2", - }, - { - fileId = "193032", - text = "hellfiretreethorns05.m2", - value = "hellfiretreethorns05.m2", - }, - { - fileId = "193033", - text = "hellfiretreethorns06.m2", - value = "hellfiretreethorns06.m2", - }, - { - fileId = "193034", - text = "hellfiretreethornspods01.m2", - value = "hellfiretreethornspods01.m2", - }, - }, - text = "trees", - value = "trees", + fileId = "194614", + text = "dragonblight_icerock_01.m2", + value = "dragonblight_icerock_01.m2", }, { - children = { - { - fileId = "193036", - text = "humanwagon01.m2", - value = "humanwagon01.m2", - }, - { - fileId = "193038", - text = "orcwagon07.m2", - value = "orcwagon07.m2", - }, - }, - text = "wagons", - value = "wagons", + fileId = "194615", + text = "dragonblight_icerock_02.m2", + value = "dragonblight_icerock_02.m2", }, - }, - text = "hellfirepeninsula", - value = "hellfirepeninsula", - }, - { - children = { { - fileId = "193039", - text = "m2_light_lightblue.m2", - value = "m2_light_lightblue.m2", + fileId = "194616", + text = "dragonblight_icerock_03.m2", + value = "dragonblight_icerock_03.m2", }, - }, - text = "m2lights", - value = "m2lights", - }, - { - children = { { - children = { - { - fileId = "193041", - text = "nagrandbush01.m2", - value = "nagrandbush01.m2", - }, - { - fileId = "193043", - text = "nagrandbush02.m2", - value = "nagrandbush02.m2", - }, - { - fileId = "193045", - text = "nagrandbush03.m2", - value = "nagrandbush03.m2", - }, - { - fileId = "193047", - text = "nagrandbush04.m2", - value = "nagrandbush04.m2", - }, - }, - text = "bush", - value = "bush", + fileId = "194617", + text = "dragonblight_icerock_04.m2", + value = "dragonblight_icerock_04.m2", }, { - children = { - { - fileId = "193048", - text = "darkportal_nagrand_particles.m2", - value = "darkportal_nagrand_particles.m2", - }, - }, - text = "darkportal", - value = "darkportal", + fileId = "194618", + text = "dragonblight_icerock_05.m2", + value = "dragonblight_icerock_05.m2", }, { - children = { - { - fileId = "193063", - text = "diamondmountain_bit.m2", - value = "diamondmountain_bit.m2", - }, - { - fileId = "193064", - text = "diamondmountain_final.m2", - value = "diamondmountain_final.m2", - }, - { - fileId = "193065", - text = "diamondmountain_mediumbit.m2", - value = "diamondmountain_mediumbit.m2", - }, - { - fileId = "193066", - text = "dm_crystal_bunch.m2", - value = "dm_crystal_bunch.m2", - }, - { - fileId = "193067", - text = "dm_crystal_large.m2", - value = "dm_crystal_large.m2", - }, - { - fileId = "193068", - text = "dm_crystal_slim.m2", - value = "dm_crystal_slim.m2", - }, - }, - text = "diamondmount", - value = "diamondmount", + fileId = "194619", + text = "dragonblight_icerock_06.m2", + value = "dragonblight_icerock_06.m2", }, { - children = { - { - fileId = "193074", - text = "nagrandtest.m2", - value = "nagrandtest.m2", - }, - }, - text = "grass", - value = "grass", + fileId = "194621", + text = "dragonblight_iceshard_01.m2", + value = "dragonblight_iceshard_01.m2", }, { - children = { - { - fileId = "193077", - text = "nagrand_arch_01.m2", - value = "nagrand_arch_01.m2", - }, - { - fileId = "193078", - text = "nagrand_arch_02.m2", - value = "nagrand_arch_02.m2", - }, - { - fileId = "193079", - text = "nagrand_arch_03.m2", - value = "nagrand_arch_03.m2", - }, - { - fileId = "193080", - text = "nagrand_arch_04.m2", - value = "nagrand_arch_04.m2", - }, - { - fileId = "193081", - text = "nagrand_arch_05.m2", - value = "nagrand_arch_05.m2", - }, - { - fileId = "193082", - text = "nagrand_arch_06.m2", - value = "nagrand_arch_06.m2", - }, - { - fileId = "193083", - text = "nagrand_arch_07.m2", - value = "nagrand_arch_07.m2", - }, - { - fileId = "193084", - text = "nagrand_arch_08.m2", - value = "nagrand_arch_08.m2", - }, - { - fileId = "193085", - text = "nagrand_arch_09.m2", - value = "nagrand_arch_09.m2", - }, - { - fileId = "193086", - text = "nagrand_arch_10.m2", - value = "nagrand_arch_10.m2", - }, - { - fileId = "193087", - text = "nagrand_arch_11.m2", - value = "nagrand_arch_11.m2", - }, - { - fileId = "193088", - text = "nagrand_largerock_01.m2", - value = "nagrand_largerock_01.m2", - }, - { - fileId = "193089", - text = "nagrand_largerock_02.m2", - value = "nagrand_largerock_02.m2", - }, - { - fileId = "193090", - text = "nagrand_largerock_03.m2", - value = "nagrand_largerock_03.m2", - }, - { - fileId = "193091", - text = "nagrand_rockfloating_huge01.m2", - value = "nagrand_rockfloating_huge01.m2", - }, - { - fileId = "193096", - text = "nagrand_smallrock_01.m2", - value = "nagrand_smallrock_01.m2", - }, - { - fileId = "193097", - text = "nagrand_smallrock_02.m2", - value = "nagrand_smallrock_02.m2", - }, - { - fileId = "193098", - text = "nagrand_smallrock_03.m2", - value = "nagrand_smallrock_03.m2", - }, - { - fileId = "193099", - text = "nagrand_smallrock_04.m2", - value = "nagrand_smallrock_04.m2", - }, - { - fileId = "193100", - text = "nagrand_smallrock_05.m2", - value = "nagrand_smallrock_05.m2", - }, - { - fileId = "193101", - text = "nagrand_smallrock_06.m2", - value = "nagrand_smallrock_06.m2", - }, - { - fileId = "193102", - text = "nagrand_waterfalls_forfloatingrocks.m2", - value = "nagrand_waterfalls_forfloatingrocks.m2", - }, - }, - text = "rocks", - value = "rocks", + fileId = "194622", + text = "dragonblight_iceshard_02.m2", + value = "dragonblight_iceshard_02.m2", }, { - children = { - { - fileId = "193108", - text = "nagrandcorruptedroot01.m2", - value = "nagrandcorruptedroot01.m2", - }, - { - fileId = "193109", - text = "nagrandcorruptedroot02.m2", - value = "nagrandcorruptedroot02.m2", - }, - { - fileId = "193110", - text = "nagrandroot01.m2", - value = "nagrandroot01.m2", - }, - { - fileId = "193111", - text = "nagrandroot01vara.m2", - value = "nagrandroot01vara.m2", - }, - { - fileId = "193112", - text = "nagrandroot02.m2", - value = "nagrandroot02.m2", - }, - { - fileId = "193113", - text = "nagrandroot02vara.m2", - value = "nagrandroot02vara.m2", - }, - { - fileId = "193114", - text = "nagrandroot03.m2", - value = "nagrandroot03.m2", - }, - { - fileId = "193115", - text = "nagrandroot03vara.m2", - value = "nagrandroot03vara.m2", - }, - { - fileId = "193116", - text = "nagrandroot04.m2", - value = "nagrandroot04.m2", - }, - { - fileId = "193117", - text = "nagrandroot04vara.m2", - value = "nagrandroot04vara.m2", - }, - { - fileId = "193118", - text = "nagrandroot05.m2", - value = "nagrandroot05.m2", - }, - { - fileId = "193119", - text = "nagrandroot05vara.m2", - value = "nagrandroot05vara.m2", - }, - }, - text = "roots", - value = "roots", + fileId = "194623", + text = "dragonblight_iceshard_03.m2", + value = "dragonblight_iceshard_03.m2", + }, + { + fileId = "194624", + text = "dragonblight_iceshard_04.m2", + value = "dragonblight_iceshard_04.m2", + }, + { + fileId = "194625", + text = "dragonblight_iceshard_05.m2", + value = "dragonblight_iceshard_05.m2", + }, + { + fileId = "194626", + text = "dragonblight_iceshard_06.m2", + value = "dragonblight_iceshard_06.m2", + }, + { + fileId = "194627", + text = "dragonblight_icicle_01.m2", + value = "dragonblight_icicle_01.m2", + }, + { + fileId = "194628", + text = "dragonblight_icicle_02.m2", + value = "dragonblight_icicle_02.m2", }, { - children = { - { - fileId = "193123", - text = "nagrandcorruptedtree01.m2", - value = "nagrandcorruptedtree01.m2", - }, - { - fileId = "193124", - text = "nagrandcorruptedtree02.m2", - value = "nagrandcorruptedtree02.m2", - }, - { - fileId = "193125", - text = "nagrandcorruptedtree03.m2", - value = "nagrandcorruptedtree03.m2", - }, - { - fileId = "193127", - text = "nagrandtree01.m2", - value = "nagrandtree01.m2", - }, - { - fileId = "193128", - text = "nagrandtree02.m2", - value = "nagrandtree02.m2", - }, - { - fileId = "193129", - text = "nagrandtree03.m2", - value = "nagrandtree03.m2", - }, - { - fileId = "193130", - text = "nagrandtree04.m2", - value = "nagrandtree04.m2", - }, - { - fileId = "193131", - text = "nagrandtree05.m2", - value = "nagrandtree05.m2", - }, - { - fileId = "193132", - text = "nagrandtree06.m2", - value = "nagrandtree06.m2", - }, - { - fileId = "193133", - text = "nagrandtree07.m2", - value = "nagrandtree07.m2", - }, - { - fileId = "193134", - text = "nagrandtree08.m2", - value = "nagrandtree08.m2", - }, - { - fileId = "193135", - text = "nagrandtree09.m2", - value = "nagrandtree09.m2", - }, - }, - text = "trees", - value = "trees", + fileId = "243338", + text = "dragonblight_leaves_01.m2", + value = "dragonblight_leaves_01.m2", }, - }, - text = "nagrand", - value = "nagrand", - }, - { - children = { { - children = { - { - fileId = "193142", - text = "ns_biodome_all_fx_north.m2", - value = "ns_biodome_all_fx_north.m2", - }, - { - fileId = "193143", - text = "ns_biodome_all_fx_south.m2", - value = "ns_biodome_all_fx_south.m2", - }, - { - fileId = "193144", - text = "ns_biodome_all_fx_stormspire.m2", - value = "ns_biodome_all_fx_stormspire.m2", - }, - { - fileId = "193146", - text = "ns_biodome_bg.m2", - value = "ns_biodome_bg.m2", - }, - { - fileId = "193147", - text = "ns_biodome_device.m2", - value = "ns_biodome_device.m2", - }, - { - fileId = "193148", - text = "ns_biodome_generic.m2", - value = "ns_biodome_generic.m2", - }, - { - fileId = "193149", - text = "ns_biodome_pylon_effects.m2", - value = "ns_biodome_pylon_effects.m2", - }, - { - fileId = "193152", - text = "ns_biodome_stormspire.m2", - value = "ns_biodome_stormspire.m2", - }, - }, - text = "biodomes", - value = "biodomes", + fileId = "243339", + text = "dragonblight_leaveslarge.m2", + value = "dragonblight_leaveslarge.m2", }, { - children = { - { - fileId = "193155", - text = "nethercollectorcap.m2", - value = "nethercollectorcap.m2", - }, - }, - text = "collectorcap", - value = "collectorcap", + fileId = "194633", + text = "dragonblight_rock_01.m2", + value = "dragonblight_rock_01.m2", }, { - children = { - { - fileId = "193156", - text = "collectortop.m2", - value = "collectortop.m2", - }, - { - fileId = "193157", - text = "collectortop_nether.m2", - value = "collectortop_nether.m2", - }, - { - fileId = "193158", - text = "collectortop_off.m2", - value = "collectortop_off.m2", - }, - }, - text = "collectortop", - value = "collectortop", + fileId = "194634", + text = "dragonblight_rock_02.m2", + value = "dragonblight_rock_02.m2", }, { - children = { - { - fileId = "193165", - text = "collectortubes.m2", - value = "collectortubes.m2", - }, - { - fileId = "193166", - text = "collectortubes_building_attach.m2", - value = "collectortubes_building_attach.m2", - }, - { - fileId = "193167", - text = "collectortubes_building_attach_off.m2", - value = "collectortubes_building_attach_off.m2", - }, - { - fileId = "193168", - text = "collectortubes_joint_45.m2", - value = "collectortubes_joint_45.m2", - }, - { - fileId = "193169", - text = "collectortubes_joint_90.m2", - value = "collectortubes_joint_90.m2", - }, - { - fileId = "193170", - text = "collectortubes_joint_ground.m2", - value = "collectortubes_joint_ground.m2", - }, - { - fileId = "193171", - text = "collectortubes_straight.m2", - value = "collectortubes_straight.m2", - }, - { - fileId = "193172", - text = "collectortubes_straight_medium.m2", - value = "collectortubes_straight_medium.m2", - }, - { - fileId = "193173", - text = "collectortubes_straight_medium_off.m2", - value = "collectortubes_straight_medium_off.m2", - }, - { - fileId = "193174", - text = "collectortubes_straight_off.m2", - value = "collectortubes_straight_off.m2", - }, - { - fileId = "193175", - text = "collectortubes_straight_short.m2", - value = "collectortubes_straight_short.m2", - }, - { - fileId = "193176", - text = "collectortubes_straight_short_off.m2", - value = "collectortubes_straight_short_off.m2", - }, - { - fileId = "193177", - text = "collectortubes_straight_states.m2", - value = "collectortubes_straight_states.m2", - }, - { - fileId = "193178", - text = "collectortubes_support.m2", - value = "collectortubes_support.m2", - }, - }, - text = "collectortubes", - value = "collectortubes", + fileId = "194635", + text = "dragonblight_rock_03.m2", + value = "dragonblight_rock_03.m2", }, { - children = { - { - fileId = "193180", - text = "netherstormcracksmoke01.m2", - value = "netherstormcracksmoke01.m2", - }, - { - fileId = "193181", - text = "netherstormcracksmokeblue.m2", - value = "netherstormcracksmokeblue.m2", - }, - }, - text = "crackeffects", - value = "crackeffects", + fileId = "194636", + text = "dragonblight_rock_04.m2", + value = "dragonblight_rock_04.m2", }, { - children = { - { - fileId = "193184", - text = "nethergravedirtmound01.m2", - value = "nethergravedirtmound01.m2", - }, - }, - text = "dirt", - value = "dirt", + fileId = "194637", + text = "dragonblight_rock_05.m2", + value = "dragonblight_rock_05.m2", }, { - children = { - { - fileId = "193185", - text = "netherstorm_particles.m2", - value = "netherstorm_particles.m2", - }, - { - fileId = "193186", - text = "netherstorm_particles_pink.m2", - value = "netherstorm_particles_pink.m2", - }, - }, - text = "float_particles", - value = "float_particles", + fileId = "194638", + text = "dragonblight_rock_06.m2", + value = "dragonblight_rock_06.m2", }, { - children = { - { - fileId = "193191", - text = "netherstorm_floatingsmall01.m2", - value = "netherstorm_floatingsmall01.m2", - }, - { - fileId = "193192", - text = "netherstorm_floatingsmall02.m2", - value = "netherstorm_floatingsmall02.m2", - }, - { - fileId = "193193", - text = "netherstorm_overhangrock_large_01.m2", - value = "netherstorm_overhangrock_large_01.m2", - }, - { - fileId = "193194", - text = "netherstorm_overhangrock_large_02.m2", - value = "netherstorm_overhangrock_large_02.m2", - }, - { - fileId = "193195", - text = "netherstorm_overhangrock_small_01.m2", - value = "netherstorm_overhangrock_small_01.m2", - }, - { - fileId = "193196", - text = "netherstorm_overhangrock_small_02.m2", - value = "netherstorm_overhangrock_small_02.m2", - }, - { - fileId = "193197", - text = "netherstorm_overhangrock_small_03.m2", - value = "netherstorm_overhangrock_small_03.m2", - }, - { - fileId = "193198", - text = "netherstorm_short02.m2", - value = "netherstorm_short02.m2", - }, - }, - text = "floatingrocks", - value = "floatingrocks", + fileId = "243340", + text = "dragonblight_rock_grey_01.m2", + value = "dragonblight_rock_grey_01.m2", }, { - children = { - { - fileId = "193201", - text = "ol_goblinbridge_gears01.m2", - value = "ol_goblinbridge_gears01.m2", - }, - }, - text = "goblinbridge", - value = "goblinbridge", + fileId = "243341", + text = "dragonblight_rock_grey_02.m2", + value = "dragonblight_rock_grey_02.m2", }, { - children = { - { - fileId = "193203", - text = "netherstorm_goblinwall01.m2", - value = "netherstorm_goblinwall01.m2", - }, - { - fileId = "193204", - text = "netherstorm_goblinwall02.m2", - value = "netherstorm_goblinwall02.m2", - }, - { - fileId = "193205", - text = "netherstorm_goblinwall_blasteast.m2", - value = "netherstorm_goblinwall_blasteast.m2", - }, - { - fileId = "193206", - text = "netherstorm_goblinwall_blastwest.m2", - value = "netherstorm_goblinwall_blastwest.m2", - }, - { - fileId = "193207", - text = "netherstorm_goblinwallcurve01.m2", - value = "netherstorm_goblinwallcurve01.m2", - }, - { - fileId = "193208", - text = "netherstorm_goblinwallgate01.m2", - value = "netherstorm_goblinwallgate01.m2", - }, - { - fileId = "193210", - text = "netherstorm_goblinwallpost01.m2", - value = "netherstorm_goblinwallpost01.m2", - }, - }, - text = "goblinwall", - value = "goblinwall", + fileId = "243342", + text = "dragonblight_rock_grey_03.m2", + value = "dragonblight_rock_grey_03.m2", }, { - children = { - { - fileId = "193211", - text = "netherstormcracklighting01.m2", - value = "netherstormcracklighting01.m2", - }, - { - fileId = "193212", - text = "netherstormcracksmokeonly01.m2", - value = "netherstormcracksmokeonly01.m2", - }, - { - fileId = "193214", - text = "netherstormlightning01.m2", - value = "netherstormlightning01.m2", - }, - { - fileId = "193215", - text = "netherstormlightning02.m2", - value = "netherstormlightning02.m2", - }, - { - fileId = "193216", - text = "netherstormlightning03.m2", - value = "netherstormlightning03.m2", - }, - { - fileId = "193217", - text = "netherstormlightning04.m2", - value = "netherstormlightning04.m2", - }, - { - fileId = "193218", - text = "netherstormlightning05.m2", - value = "netherstormlightning05.m2", - }, - { - fileId = "193219", - text = "netherstormlightning06.m2", - value = "netherstormlightning06.m2", - }, - }, - text = "lightning", - value = "lightning", + fileId = "243343", + text = "dragonblight_rock_grey_04.m2", + value = "dragonblight_rock_grey_04.m2", }, { - children = { - { - fileId = "193227", - text = "ns_rock_01.m2", - value = "ns_rock_01.m2", - }, - { - fileId = "193228", - text = "ns_rock_02.m2", - value = "ns_rock_02.m2", - }, - { - fileId = "193229", - text = "ns_rock_03.m2", - value = "ns_rock_03.m2", - }, - { - fileId = "193230", - text = "ns_rock_04.m2", - value = "ns_rock_04.m2", - }, - { - fileId = "193231", - text = "ns_rock_05.m2", - value = "ns_rock_05.m2", - }, - { - fileId = "193232", - text = "ns_rock_06.m2", - value = "ns_rock_06.m2", - }, - { - fileId = "193233", - text = "ns_rock_07.m2", - value = "ns_rock_07.m2", - }, - { - fileId = "193234", - text = "ns_rock_08.m2", - value = "ns_rock_08.m2", - }, - { - fileId = "193235", - text = "ns_rock_09.m2", - value = "ns_rock_09.m2", - }, - { - fileId = "193236", - text = "ns_rock_10.m2", - value = "ns_rock_10.m2", - }, - { - fileId = "193237", - text = "ns_rock_11.m2", - value = "ns_rock_11.m2", - }, - { - fileId = "193238", - text = "ns_rock_12.m2", - value = "ns_rock_12.m2", - }, - { - fileId = "193239", - text = "ns_rock_13.m2", - value = "ns_rock_13.m2", - }, - { - fileId = "193240", - text = "ns_rock_14.m2", - value = "ns_rock_14.m2", - }, - }, - text = "rocks", - value = "rocks", + fileId = "243344", + text = "dragonblight_rock_grey_05.m2", + value = "dragonblight_rock_grey_05.m2", + }, + { + fileId = "243345", + text = "dragonblight_rock_grey_06.m2", + value = "dragonblight_rock_grey_06.m2", + }, + { + fileId = "194639", + text = "dragonblight_shard_01.m2", + value = "dragonblight_shard_01.m2", }, { - children = { - { - fileId = "193242", - text = "netherstormsporemound01.m2", - value = "netherstormsporemound01.m2", - }, - }, - text = "sporemound", - value = "sporemound", + fileId = "194640", + text = "dragonblight_shard_02.m2", + value = "dragonblight_shard_02.m2", }, - }, - text = "netherstorm", - value = "netherstorm", - }, - { - children = { { - children = { - { - children = { - { - fileId = "193243", - text = "pvp_lordaeron_door.m2", - value = "pvp_lordaeron_door.m2", - }, - { - fileId = "193244", - text = "pvp_ogre_door_front.m2", - value = "pvp_ogre_door_front.m2", - }, - { - fileId = "193245", - text = "pvp_ogre_door_interior.m2", - value = "pvp_ogre_door_interior.m2", - }, - { - fileId = "193246", - text = "pvp_orc_door_front.m2", - value = "pvp_orc_door_front.m2", - }, - { - fileId = "193247", - text = "pvp_orc_door_interior.m2", - value = "pvp_orc_door_interior.m2", - }, - }, - text = "doors", - value = "doors", - }, - }, - text = "activedoodads", - value = "activedoodads", + fileId = "194641", + text = "dragonblight_shard_03.m2", + value = "dragonblight_shard_03.m2", }, - }, - text = "pvp", - value = "pvp", - }, - { - children = { { - children = { - { - fileId = "193248", - text = "ol_dwarvenbattlementmossy01.m2", - value = "ol_dwarvenbattlementmossy01.m2", - }, - { - fileId = "193249", - text = "ol_dwarvenbattlementmossy02.m2", - value = "ol_dwarvenbattlementmossy02.m2", - }, - { - fileId = "193250", - text = "ol_dwarvenbattlementmossy03.m2", - value = "ol_dwarvenbattlementmossy03.m2", - }, - { - fileId = "193251", - text = "ol_dwarvenbattlementmossy04.m2", - value = "ol_dwarvenbattlementmossy04.m2", - }, - { - fileId = "193252", - text = "ol_dwarvenbattlementmossy05.m2", - value = "ol_dwarvenbattlementmossy05.m2", - }, - { - fileId = "193253", - text = "ol_dwarvenbattlementmossy06.m2", - value = "ol_dwarvenbattlementmossy06.m2", - }, - { - fileId = "193254", - text = "ol_dwarvenbattlementmossy07.m2", - value = "ol_dwarvenbattlementmossy07.m2", - }, - { - fileId = "193255", - text = "ol_lochlamppost.m2", - value = "ol_lochlamppost.m2", - }, - { - fileId = "193257", - text = "ol_lochmodanstonefence02.m2", - value = "ol_lochmodanstonefence02.m2", - }, - }, - text = "base", - value = "base", + fileId = "194642", + text = "dragonblight_shard_04.m2", + value = "dragonblight_shard_04.m2", }, { - children = { - { - fileId = "193261", - text = "shadowmoonblacktemplebrazier01.m2", - value = "shadowmoonblacktemplebrazier01.m2", - }, - }, - text = "brazier", - value = "brazier", + fileId = "194643", + text = "dragonblight_shard_05.m2", + value = "dragonblight_shard_05.m2", }, { - children = { - { - fileId = "193263", - text = "chromaticcrystralformation_01.m2", - value = "chromaticcrystralformation_01.m2", - }, - { - fileId = "193264", - text = "chromaticcrystralformation_02.m2", - value = "chromaticcrystralformation_02.m2", - }, - { - fileId = "193265", - text = "chromaticcrystralformation_03.m2", - value = "chromaticcrystralformation_03.m2", - }, - }, - text = "crystals", - value = "crystals", + fileId = "194644", + text = "dragonblight_shard_06.m2", + value = "dragonblight_shard_06.m2", }, { - children = { - { - fileId = "193269", - text = "shadowmoon_gravestones_horde_01.m2", - value = "shadowmoon_gravestones_horde_01.m2", - }, - { - fileId = "193270", - text = "shadowmoon_gravestones_horde_02.m2", - value = "shadowmoon_gravestones_horde_02.m2", - }, - { - fileId = "193271", - text = "shadowmoon_gravestones_horde_03.m2", - value = "shadowmoon_gravestones_horde_03.m2", - }, - }, - text = "graveyard", - value = "graveyard", + fileId = "243346", + text = "dragonblight_shard_grey_01.m2", + value = "dragonblight_shard_grey_01.m2", }, { - children = { - { - fileId = "193278", - text = "shadowmoon_lavaguyser.m2", - value = "shadowmoon_lavaguyser.m2", - }, - { - fileId = "193279", - text = "shadowmoon_lavasplash01.m2", - value = "shadowmoon_lavasplash01.m2", - }, - { - fileId = "193280", - text = "shadowmoon_lavasplash02.m2", - value = "shadowmoon_lavasplash02.m2", - }, - }, - text = "guyser", - value = "guyser", + fileId = "243347", + text = "dragonblight_shard_grey_02.m2", + value = "dragonblight_shard_grey_02.m2", }, { - children = { - { - fileId = "193282", - text = "shadowmoonlavaplaug01.m2", - value = "shadowmoonlavaplaug01.m2", - }, - { - fileId = "193283", - text = "shadowmoonlavaplaug02.m2", - value = "shadowmoonlavaplaug02.m2", - }, - }, - text = "lavaplugs", - value = "lavaplugs", + fileId = "243348", + text = "dragonblight_shard_grey_03.m2", + value = "dragonblight_shard_grey_03.m2", }, { - children = { - { - fileId = "193284", - text = "markofkael.m2", - value = "markofkael.m2", - }, - }, - text = "markofkael", - value = "markofkael", + fileId = "243349", + text = "dragonblight_shard_grey_04.m2", + value = "dragonblight_shard_grey_04.m2", }, { - children = { - { - fileId = "193286", - text = "shadowmoonmeteora.m2", - value = "shadowmoonmeteora.m2", - }, - { - fileId = "193287", - text = "shadowmoonmeteorb.m2", - value = "shadowmoonmeteorb.m2", - }, - { - fileId = "193288", - text = "shadowmoonmeteorc.m2", - value = "shadowmoonmeteorc.m2", - }, - { - fileId = "193289", - text = "shadowmoonmeteord.m2", - value = "shadowmoonmeteord.m2", - }, - { - fileId = "193290", - text = "shadowmoonmeteore.m2", - value = "shadowmoonmeteore.m2", - }, - }, - text = "meteor", - value = "meteor", + fileId = "243350", + text = "dragonblight_shard_grey_05.m2", + value = "dragonblight_shard_grey_05.m2", }, { - children = { - { - fileId = "193291", - text = "infernallowpoly.m2", - value = "infernallowpoly.m2", - }, - }, - text = "quest", - value = "quest", + fileId = "243351", + text = "dragonblight_shard_grey_06.m2", + value = "dragonblight_shard_grey_06.m2", }, { - children = { - { - fileId = "193293", - text = "shadowmoon_floatingsmall01.m2", - value = "shadowmoon_floatingsmall01.m2", - }, - { - fileId = "193294", - text = "shadowmoon_floatingsmall02.m2", - value = "shadowmoon_floatingsmall02.m2", - }, - { - fileId = "193295", - text = "shadowmoon_overhangrock_large_01.m2", - value = "shadowmoon_overhangrock_large_01.m2", - }, - { - fileId = "193296", - text = "shadowmoon_overhangrock_large_02.m2", - value = "shadowmoon_overhangrock_large_02.m2", - }, - { - fileId = "193297", - text = "shadowmoon_overhangrock_small_01.m2", - value = "shadowmoon_overhangrock_small_01.m2", - }, - { - fileId = "193298", - text = "shadowmoon_overhangrock_small_02.m2", - value = "shadowmoon_overhangrock_small_02.m2", - }, - { - fileId = "193299", - text = "shadowmoon_overhangrock_small_03.m2", - value = "shadowmoon_overhangrock_small_03.m2", - }, - { - fileId = "193300", - text = "shadowmoon_rock_01.m2", - value = "shadowmoon_rock_01.m2", - }, - { - fileId = "193301", - text = "shadowmoon_rock_02.m2", - value = "shadowmoon_rock_02.m2", - }, - { - fileId = "193302", - text = "shadowmoon_rock_03.m2", - value = "shadowmoon_rock_03.m2", - }, - { - fileId = "193303", - text = "shadowmoon_rock_04.m2", - value = "shadowmoon_rock_04.m2", - }, - { - fileId = "193304", - text = "shadowmoon_rock_05.m2", - value = "shadowmoon_rock_05.m2", - }, - { - fileId = "193305", - text = "shadowmoon_rock_06.m2", - value = "shadowmoon_rock_06.m2", - }, - { - fileId = "193306", - text = "shadowmoon_rock_07.m2", - value = "shadowmoon_rock_07.m2", - }, - { - fileId = "193307", - text = "shadowmoon_short02.m2", - value = "shadowmoon_short02.m2", - }, - }, - text = "rocks", - value = "rocks", + fileId = "194646", + text = "dragonblight_shoreline_ice_01.m2", + value = "dragonblight_shoreline_ice_01.m2", }, { - children = { - { - fileId = "193312", - text = "shadowmoon_rune1.m2", - value = "shadowmoon_rune1.m2", - }, - { - fileId = "193313", - text = "shadowmoon_rune2.m2", - value = "shadowmoon_rune2.m2", - }, - }, - text = "rune", - value = "rune", + fileId = "194647", + text = "dragonblight_shoreline_ice_02.m2", + value = "dragonblight_shoreline_ice_02.m2", }, { - children = { - { - fileId = "193314", - text = "shadowmoon_scaffolding01.m2", - value = "shadowmoon_scaffolding01.m2", - }, - { - fileId = "193315", - text = "shadowmoon_scaffolding02.m2", - value = "shadowmoon_scaffolding02.m2", - }, - { - fileId = "193316", - text = "shadowmoon_scaffolding03.m2", - value = "shadowmoon_scaffolding03.m2", - }, - }, - text = "scaffolding", - value = "scaffolding", + fileId = "243352", + text = "dragonblight_shoreline_ice_single.m2", + value = "dragonblight_shoreline_ice_single.m2", }, { - children = { - { - fileId = "193318", - text = "burningash02.m2", - value = "burningash02.m2", - }, - { - fileId = "193319", - text = "burningash03.m2", - value = "burningash03.m2", - }, - { - fileId = "193321", - text = "shadowmooncracksmoke01.m2", - value = "shadowmooncracksmoke01.m2", - }, - }, - text = "smoke", - value = "smoke", + fileId = "194650", + text = "dragonblight_titanicesheet_01.m2", + value = "dragonblight_titanicesheet_01.m2", }, { - children = { - { - fileId = "193326", - text = "shadowmoonvolcanotop.m2", - value = "shadowmoonvolcanotop.m2", - }, - }, - text = "volcano", - value = "volcano", + fileId = "194651", + text = "dragonblight_titanicesheet_02.m2", + value = "dragonblight_titanicesheet_02.m2", }, - }, - text = "shadowmoon", - value = "shadowmoon", - }, - { - children = { { - children = { - { - children = { - { - fileId = "193328", - text = "ancdrae_elevatorpiece.m2", - value = "ancdrae_elevatorpiece.m2", - }, - { - fileId = "193329", - text = "ancdrae_elevatorpiece_netherstorm.m2", - value = "ancdrae_elevatorpiece_netherstorm.m2", - }, - }, - text = "elevator", - value = "elevator", - }, - { - children = { - { - fileId = "193330", - text = "shattrathsouptent.m2", - value = "shattrathsouptent.m2", - }, - }, - text = "events", - value = "events", - }, - }, - text = "activedoodads", - value = "activedoodads", + fileId = "194652", + text = "dragonblight_titanicesheet_03.m2", + value = "dragonblight_titanicesheet_03.m2", + }, + { + fileId = "194654", + text = "dragonblight_tree01.m2", + value = "dragonblight_tree01.m2", + }, + { + fileId = "194656", + text = "dragonblight_tree02.m2", + value = "dragonblight_tree02.m2", + }, + { + fileId = "194658", + text = "dragonblight_tree03.m2", + value = "dragonblight_tree03.m2", + }, + { + fileId = "194660", + text = "dragonblight_tree04.m2", + value = "dragonblight_tree04.m2", + }, + { + fileId = "194662", + text = "dragonblight_tree05.m2", + value = "dragonblight_tree05.m2", + }, + { + fileId = "194663", + text = "dragonblight_tree06.m2", + value = "dragonblight_tree06.m2", + }, + { + fileId = "194664", + text = "dragonblight_tree07.m2", + value = "dragonblight_tree07.m2", + }, + { + fileId = "194665", + text = "dragonblight_treeinfected01.m2", + value = "dragonblight_treeinfected01.m2", + }, + { + fileId = "194666", + text = "dragonblight_treeinfected02.m2", + value = "dragonblight_treeinfected02.m2", + }, + { + fileId = "194667", + text = "dragonblight_treeinfected03.m2", + value = "dragonblight_treeinfected03.m2", }, { - children = { - { - children = { - { - fileId = "193331", - text = "battlemasterpedestal.m2", - value = "battlemasterpedestal.m2", - }, - }, - text = "battlemasterpedestal", - value = "battlemasterpedestal", - }, - { - children = { - { - fileId = "193332", - text = "ancient_d_bookshelf.m2", - value = "ancient_d_bookshelf.m2", - }, - }, - text = "bookshelf", - value = "bookshelf", - }, - { - children = { - { - fileId = "193340", - text = "shattrath_narru_energy_fx.m2", - value = "shattrath_narru_energy_fx.m2", - }, - }, - text = "central_energy_fx", - value = "central_energy_fx", - }, - { - children = { - { - fileId = "193342", - text = "hf_outpostcrystals.m2", - value = "hf_outpostcrystals.m2", - }, - { - fileId = "193343", - text = "outpost_crystals1.m2", - value = "outpost_crystals1.m2", - }, - { - fileId = "193347", - text = "shattrath_crystal_bank.m2", - value = "shattrath_crystal_bank.m2", - }, - { - fileId = "193348", - text = "shattrath_crystal_holyaldurtemple.m2", - value = "shattrath_crystal_holyaldurtemple.m2", - }, - { - fileId = "193349", - text = "shattrath_crystal_huta.m2", - value = "shattrath_crystal_huta.m2", - }, - { - fileId = "193350", - text = "shattrath_crystal_hutb.m2", - value = "shattrath_crystal_hutb.m2", - }, - { - fileId = "193351", - text = "shattrath_crystal_hutc.m2", - value = "shattrath_crystal_hutc.m2", - }, - { - fileId = "193352", - text = "shattrath_crystal_inn_bottom.m2", - value = "shattrath_crystal_inn_bottom.m2", - }, - { - fileId = "193353", - text = "shattrath_crystal_inn_floating.m2", - value = "shattrath_crystal_inn_floating.m2", - }, - { - fileId = "193355", - text = "shattrath_crystal_outpost.m2", - value = "shattrath_crystal_outpost.m2", - }, - { - fileId = "193356", - text = "shattrath_crystal_temple_ext.m2", - value = "shattrath_crystal_temple_ext.m2", - }, - { - fileId = "193357", - text = "shattrath_crystal_temple_int.m2", - value = "shattrath_crystal_temple_int.m2", - }, - { - fileId = "193358", - text = "shattrath_crystal_terrace.m2", - value = "shattrath_crystal_terrace.m2", - }, - }, - text = "crystal_tops", - value = "crystal_tops", - }, - { - children = { - { - fileId = "193359", - text = "shattrath_scryerdoodads.m2", - value = "shattrath_scryerdoodads.m2", - }, - { - fileId = "193360", - text = "shattrath_scryerdoodads_backcrates.m2", - value = "shattrath_scryerdoodads_backcrates.m2", - }, - }, - text = "giantdoodads", - value = "giantdoodads", - }, - { - children = { - { - fileId = "193362", - text = "shattrath_draenei_holy_fx.m2", - value = "shattrath_draenei_holy_fx.m2", - }, - }, - text = "holy_energy_fx", - value = "holy_energy_fx", - }, - { - children = { - { - fileId = "193363", - text = "ancient_d_braizer.m2", - value = "ancient_d_braizer.m2", - }, - { - fileId = "193364", - text = "ancient_d_braizer_blue.m2", - value = "ancient_d_braizer_blue.m2", - }, - { - fileId = "193365", - text = "ancient_d_braizer_blue_lowbatch.m2", - value = "ancient_d_braizer_blue_lowbatch.m2", - }, - { - fileId = "193366", - text = "ancient_d_braizer_blue_shortsmoke.m2", - value = "ancient_d_braizer_blue_shortsmoke.m2", - }, - { - fileId = "193367", - text = "ancient_d_braizer_broken.m2", - value = "ancient_d_braizer_broken.m2", - }, - { - fileId = "193368", - text = "ancient_d_braizer_red.m2", - value = "ancient_d_braizer_red.m2", - }, - { - fileId = "193369", - text = "ancient_d_sconce.m2", - value = "ancient_d_sconce.m2", - }, - { - fileId = "193370", - text = "ancient_d_sconce_off.m2", - value = "ancient_d_sconce_off.m2", - }, - { - fileId = "193371", - text = "ancient_d_standing_light.m2", - value = "ancient_d_standing_light.m2", - }, - { - fileId = "193372", - text = "ancient_d_standing_light_off.m2", - value = "ancient_d_standing_light_off.m2", - }, - }, - text = "lighting", - value = "lighting", - }, - }, - text = "passivedoodads", - value = "passivedoodads", + fileId = "194668", + text = "dragonblight_treeinfected04.m2", + value = "dragonblight_treeinfected04.m2", }, - }, - text = "shattrath", - value = "shattrath", - }, - { - children = { { children = { { - fileId = "193383", - text = "silvermoonbush05.m2", - value = "silvermoonbush05.m2", - }, - { - fileId = "193384", - text = "silvermoonbush06.m2", - value = "silvermoonbush06.m2", + fileId = "194697", + text = "hugeprotodragonskull01.m2", + value = "hugeprotodragonskull01.m2", }, }, - text = "bushes", - value = "bushes", + text = "hugeprotodragonskull", + value = "hugeprotodragonskull", }, { children = { { - fileId = "193386", - text = "floatingdandelions01.m2", - value = "floatingdandelions01.m2", + fileId = "194699", + text = "nd_cavespiderweb.m2", + value = "nd_cavespiderweb.m2", }, }, - text = "floatingdandelions", - value = "floatingdandelions", + text = "nerubianspiderwebs", + value = "nerubianspiderwebs", + }, + { + fileId = "243356", + text = "scytheofantiok.m2", + value = "scytheofantiok.m2", }, { children = { { - fileId = "193392", - text = "silvermoonflower01.m2", - value = "silvermoonflower01.m2", + fileId = "243357", + text = "dragonblight_combin_waterfall_01.m2", + value = "dragonblight_combin_waterfall_01.m2", }, { - fileId = "193393", - text = "silvermoonflower02.m2", - value = "silvermoonflower02.m2", + fileId = "243358", + text = "dragonblight_combin_waterfall_02.m2", + value = "dragonblight_combin_waterfall_02.m2", }, { - fileId = "193394", - text = "silvermoonflower03.m2", - value = "silvermoonflower03.m2", + fileId = "243359", + text = "dragonblight_combin_waterfall_03.m2", + value = "dragonblight_combin_waterfall_03.m2", }, { - fileId = "193395", - text = "silvermoonflower04.m2", - value = "silvermoonflower04.m2", + fileId = "243360", + text = "dragonblight_combin_waterfall_04.m2", + value = "dragonblight_combin_waterfall_04.m2", }, { - fileId = "193396", - text = "silvermoonflower05.m2", - value = "silvermoonflower05.m2", + fileId = "243361", + text = "dragonblight_combin_waterfall_05.m2", + value = "dragonblight_combin_waterfall_05.m2", }, { - fileId = "193397", - text = "silvermoonflower06.m2", - value = "silvermoonflower06.m2", + fileId = "243362", + text = "dragonblight_combin_waterfall_06.m2", + value = "dragonblight_combin_waterfall_06.m2", + }, + { + fileId = "243363", + text = "dragonblight_combin_waterfall_07.m2", + value = "dragonblight_combin_waterfall_07.m2", }, }, - text = "flowers", - value = "flowers", + text = "waterfalls", + value = "waterfalls", }, { children = { { - fileId = "193399", - text = "eversongcliffrock01.m2", - value = "eversongcliffrock01.m2", - }, - { - fileId = "193400", - text = "eversongcliffrock02.m2", - value = "eversongcliffrock02.m2", + fileId = "194702", + text = "dragonblight_windgust_01.m2", + value = "dragonblight_windgust_01.m2", }, }, - text = "rocks", - value = "rocks", + text = "weatherfx", + value = "weatherfx", }, + }, + text = "dragonblight", + value = "dragonblight", + }, + { + children = { { children = { { - fileId = "193402", - text = "silvermoontree08.m2", - value = "silvermoontree08.m2", + fileId = "194703", + text = "dt_bigdoor.m2", + value = "dt_bigdoor.m2", }, }, - text = "trees", - value = "trees", + text = "doors", + value = "doors", }, { children = { { - fileId = "193405", - text = "bigfountainwater.m2", - value = "bigfountainwater.m2", + fileId = "194706", + text = "gundrak_trapdoor01.m2", + value = "gundrak_trapdoor01.m2", }, }, - text = "water", - value = "water", + text = "trapdoors", + value = "trapdoors", }, }, - text = "silvermoon", - value = "silvermoon", + text = "draktheron", + value = "draktheron", }, { children = { { - children = { - { - fileId = "193407", - text = "silvermystbush01.m2", - value = "silvermystbush01.m2", - }, - { - fileId = "193408", - text = "silvermystbush02.m2", - value = "silvermystbush02.m2", - }, - { - fileId = "193409", - text = "silvermystbush03.m2", - value = "silvermystbush03.m2", - }, - }, - text = "bushes", - value = "bushes", + fileId = "458025", + text = "fb_beehive.m2", + value = "fb_beehive.m2", }, { - children = { - { - fileId = "193414", - text = "silvermystcompass01.m2", - value = "silvermystcompass01.m2", - }, - }, - text = "compass", - value = "compass", + fileId = "255423", + text = "fb_darkshore_totem01.m2", + value = "fb_darkshore_totem01.m2", + }, + { + fileId = "255424", + text = "fb_darkshore_totem02.m2", + value = "fb_darkshore_totem02.m2", + }, + { + fileId = "458026", + text = "fb_lampost_gh_alone.m2", + value = "fb_lampost_gh_alone.m2", + }, + { + fileId = "255403", + text = "fb_lamppost_darkshore_01.m2", + value = "fb_lamppost_darkshore_01.m2", + }, + { + fileId = "194710", + text = "fb_lamppost_gh_01.m2", + value = "fb_lamppost_gh_01.m2", + }, + { + fileId = "255405", + text = "fb_loghouse_darkshore_01.m2", + value = "fb_loghouse_darkshore_01.m2", + }, + { + fileId = "255406", + text = "fb_loghouse_darkshore_02.m2", + value = "fb_loghouse_darkshore_02.m2", + }, + { + fileId = "255407", + text = "fb_loghouse_darkshore_03.m2", + value = "fb_loghouse_darkshore_03.m2", + }, + { + fileId = "194711", + text = "fb_loghouse_gh_01.m2", + value = "fb_loghouse_gh_01.m2", + }, + { + fileId = "194712", + text = "fb_loghouse_gh_02.m2", + value = "fb_loghouse_gh_02.m2", + }, + { + fileId = "194713", + text = "fb_loghouse_gh_03.m2", + value = "fb_loghouse_gh_03.m2", + }, + { + fileId = "194714", + text = "fb_loghouse_gh_snow_01.m2", + value = "fb_loghouse_gh_snow_01.m2", + }, + { + fileId = "194715", + text = "fb_loghouse_gh_snow_02.m2", + value = "fb_loghouse_gh_snow_02.m2", + }, + { + fileId = "194716", + text = "fb_loghouse_gh_snow_03.m2", + value = "fb_loghouse_gh_snow_03.m2", + }, + { + fileId = "194719", + text = "fb_totem01.m2", + value = "fb_totem01.m2", + }, + { + fileId = "194720", + text = "fb_totem01_snow.m2", + value = "fb_totem01_snow.m2", + }, + { + fileId = "194721", + text = "fb_totem02.m2", + value = "fb_totem02.m2", + }, + { + fileId = "194722", + text = "fb_totem02_snow.m2", + value = "fb_totem02_snow.m2", + }, + { + fileId = "293765", + text = "fb_wall_01_darkshore.m2", + value = "fb_wall_01_darkshore.m2", + }, + { + fileId = "194725", + text = "fb_wall_01_grizzlyhills.m2", + value = "fb_wall_01_grizzlyhills.m2", + }, + { + fileId = "194726", + text = "fb_wall_01_grizzlyhills_snow.m2", + value = "fb_wall_01_grizzlyhills_snow.m2", + }, + { + fileId = "293774", + text = "fb_wall_02_darkshore.m2", + value = "fb_wall_02_darkshore.m2", + }, + { + fileId = "194727", + text = "fb_wall_02_grizzlyhills.m2", + value = "fb_wall_02_grizzlyhills.m2", + }, + { + fileId = "194728", + text = "fb_wall_02_grizzlyhills_snow.m2", + value = "fb_wall_02_grizzlyhills_snow.m2", + }, + { + fileId = "293775", + text = "fb_wall_03_darkshore.m2", + value = "fb_wall_03_darkshore.m2", + }, + { + fileId = "194729", + text = "fb_wall_03_grizzlyhills.m2", + value = "fb_wall_03_grizzlyhills.m2", + }, + { + fileId = "194730", + text = "fb_wall_03_grizzlyhills_snow.m2", + value = "fb_wall_03_grizzlyhills_snow.m2", + }, + { + fileId = "293783", + text = "fb_wallgate_01_darkshore.m2", + value = "fb_wallgate_01_darkshore.m2", + }, + { + fileId = "194733", + text = "fb_wallgate_01_grizzlyhills.m2", + value = "fb_wallgate_01_grizzlyhills.m2", + }, + { + fileId = "194734", + text = "fb_wallgate_01_grizzlyhills_snow.m2", + value = "fb_wallgate_01_grizzlyhills_snow.m2", + }, + { + fileId = "293782", + text = "fb_wallgateteeth_01_darkshore.m2", + value = "fb_wallgateteeth_01_darkshore.m2", + }, + { + fileId = "194735", + text = "fb_wallgateteeth_01_grizzlyhills.m2", + value = "fb_wallgateteeth_01_grizzlyhills.m2", + }, + { + fileId = "194736", + text = "fb_wallgateteeth_01_grizzlyhills_snow.m2", + value = "fb_wallgateteeth_01_grizzlyhills_snow.m2", + }, + }, + text = "furbolgs", + value = "furbolgs", + }, + { + children = { + { + fileId = "243364", + text = "alliance_tabard.m2", + value = "alliance_tabard.m2", }, { children = { { - fileId = "193420", - text = "silvermyst_elfinn_crystal.m2", - value = "silvermyst_elfinn_crystal.m2", - }, - { - fileId = "193421", - text = "silvermystcrystal01.m2", - value = "silvermystcrystal01.m2", - }, - { - fileId = "193422", - text = "silvermystcrystal01_orange.m2", - value = "silvermystcrystal01_orange.m2", - }, - { - fileId = "193423", - text = "silvermystcrystal01_yellow.m2", - value = "silvermystcrystal01_yellow.m2", - }, - { - fileId = "193424", - text = "silvermystcrystal02.m2", - value = "silvermystcrystal02.m2", - }, - { - fileId = "193425", - text = "silvermystcrystal02_orange.m2", - value = "silvermystcrystal02_orange.m2", - }, - { - fileId = "193426", - text = "silvermystcrystal02_yellow.m2", - value = "silvermystcrystal02_yellow.m2", - }, - { - fileId = "193427", - text = "silvermystcrystal03.m2", - value = "silvermystcrystal03.m2", - }, - { - fileId = "193428", - text = "silvermystcrystal03_orange.m2", - value = "silvermystcrystal03_orange.m2", - }, - { - fileId = "193429", - text = "silvermystcrystal03_yellow.m2", - value = "silvermystcrystal03_yellow.m2", - }, - { - fileId = "193434", - text = "silvermystcrystalbig01.m2", - value = "silvermystcrystalbig01.m2", - }, - { - fileId = "193435", - text = "silvermystcrystalbig01_orange.m2", - value = "silvermystcrystalbig01_orange.m2", - }, - { - fileId = "193436", - text = "silvermystcrystalbig01_yellow.m2", - value = "silvermystcrystalbig01_yellow.m2", - }, - { - fileId = "193437", - text = "silvermystcrystalbig02.m2", - value = "silvermystcrystalbig02.m2", - }, - { - fileId = "193438", - text = "silvermystcrystalbig02_orange.m2", - value = "silvermystcrystalbig02_orange.m2", - }, - { - fileId = "193439", - text = "silvermystcrystalbig02_yellow.m2", - value = "silvermystcrystalbig02_yellow.m2", - }, - { - fileId = "193440", - text = "silvermystcrystalbig03.m2", - value = "silvermystcrystalbig03.m2", + fileId = "194737", + text = "borean_brokenroadlamp01.m2", + value = "borean_brokenroadlamp01.m2", }, { - fileId = "193441", - text = "silvermystcrystalbig03_orange.m2", - value = "silvermystcrystalbig03_orange.m2", + fileId = "194739", + text = "borean_roadlamp01.m2", + value = "borean_roadlamp01.m2", }, { - fileId = "193442", - text = "silvermystcrystalbig03_yellow.m2", - value = "silvermystcrystalbig03_yellow.m2", + fileId = "194742", + text = "borean_signpost01.m2", + value = "borean_signpost01.m2", }, + }, + text = "ancientnightelf", + value = "ancientnightelf", + }, + { + children = { { - fileId = "193446", - text = "silvermystcrystalsmall01.m2", - value = "silvermystcrystalsmall01.m2", + fileId = "252835", + text = "argent_long_banner_01.m2", + value = "argent_long_banner_01.m2", }, { - fileId = "193447", - text = "silvermystcrystalsmall01_orange.m2", - value = "silvermystcrystalsmall01_orange.m2", + fileId = "329303", + text = "argent_shield.m2", + value = "argent_shield.m2", }, { - fileId = "193448", - text = "silvermystcrystalsmall01_yellow.m2", - value = "silvermystcrystalsmall01_yellow.m2", + fileId = "311949", + text = "argent_web_door_01.m2", + value = "argent_web_door_01.m2", }, { - fileId = "193449", - text = "silvermystcrystalsmall02.m2", - value = "silvermystcrystalsmall02.m2", + fileId = "254462", + text = "argentcrusade_arch_01.m2", + value = "argentcrusade_arch_01.m2", }, { - fileId = "193450", - text = "silvermystcrystalsmall02_orange.m2", - value = "silvermystcrystalsmall02_orange.m2", + fileId = "194744", + text = "argentcrusade_banner01.m2", + value = "argentcrusade_banner01.m2", }, { - fileId = "193451", - text = "silvermystcrystalsmall02_yellow.m2", - value = "silvermystcrystalsmall02_yellow.m2", + fileId = "309202", + text = "argentcrusade_banner01_nocoll.m2", + value = "argentcrusade_banner01_nocoll.m2", }, { - fileId = "193452", - text = "silvermystcrystalsmall03.m2", - value = "silvermystcrystalsmall03.m2", + fileId = "194745", + text = "argentcrusade_banner02.m2", + value = "argentcrusade_banner02.m2", }, { - fileId = "193453", - text = "silvermystcrystalsmall03_orange.m2", - value = "silvermystcrystalsmall03_orange.m2", + fileId = "335580", + text = "argentcrusade_batteringram_01.m2", + value = "argentcrusade_batteringram_01.m2", }, { - fileId = "193454", - text = "silvermystcrystalsmall03_yellow.m2", - value = "silvermystcrystalsmall03_yellow.m2", + fileId = "339913", + text = "argentcrusade_batteringram_02.m2", + value = "argentcrusade_batteringram_02.m2", }, - }, - text = "crystals", - value = "crystals", - }, - { - children = { { - fileId = "193457", - text = "silvermyst_leafpile.m2", - value = "silvermyst_leafpile.m2", + fileId = "251630", + text = "argentcrusade_beervendor.m2", + value = "argentcrusade_beervendor.m2", }, - }, - text = "leafpile", - value = "leafpile", - }, - { - children = { { - fileId = "193458", - text = "silvermystlightningbolt01.m2", - value = "silvermystlightningbolt01.m2", + fileId = "254463", + text = "argentcrusade_brick_01.m2", + value = "argentcrusade_brick_01.m2", }, - }, - text = "lightning", - value = "lightning", - }, - { - children = { { - fileId = "193460", - text = "silvermyst_lightshaft.m2", - value = "silvermyst_lightshaft.m2", + fileId = "254464", + text = "argentcrusade_brick_02.m2", + value = "argentcrusade_brick_02.m2", }, { - fileId = "193461", - text = "silvermyst_lightshaft02.m2", - value = "silvermyst_lightshaft02.m2", + fileId = "312682", + text = "argentcrusade_chest_01.m2", + value = "argentcrusade_chest_01.m2", }, { - fileId = "193462", - text = "silvermyst_lightshaft03.m2", - value = "silvermyst_lightshaft03.m2", + fileId = "254465", + text = "argentcrusade_fence_01.m2", + value = "argentcrusade_fence_01.m2", }, - }, - text = "lightshaft", - value = "lightshaft", - }, - { - children = { { - fileId = "193464", - text = "silvermyst_moonstone_blue.m2", - value = "silvermyst_moonstone_blue.m2", + fileId = "251631", + text = "argentcrusade_foodtent.m2", + value = "argentcrusade_foodtent.m2", }, { - fileId = "193466", - text = "silvermyst_moonstone_green.m2", - value = "silvermyst_moonstone_green.m2", + fileId = "251633", + text = "argentcrusade_foodtent_02.m2", + value = "argentcrusade_foodtent_02.m2", }, { - fileId = "193468", - text = "silvermyst_moonstone_red.m2", - value = "silvermyst_moonstone_red.m2", + fileId = "250882", + text = "argentcrusade_jousting_lane_end.m2", + value = "argentcrusade_jousting_lane_end.m2", }, - }, - text = "moonstone", - value = "moonstone", - }, - { - children = { { - fileId = "193469", - text = "d_smoke.m2", - value = "d_smoke.m2", + fileId = "250883", + text = "argentcrusade_jousting_lane_middle.m2", + value = "argentcrusade_jousting_lane_middle.m2", }, - }, - text = "smoke", - value = "smoke", - }, - { - children = { { - fileId = "193478", - text = "silvermysttree01.m2", - value = "silvermysttree01.m2", + fileId = "254466", + text = "argentcrusade_log_01.m2", + value = "argentcrusade_log_01.m2", }, { - fileId = "193479", - text = "silvermysttree02.m2", - value = "silvermysttree02.m2", + fileId = "311967", + text = "argentcrusade_monsterdoor.m2", + value = "argentcrusade_monsterdoor.m2", }, { - fileId = "193480", - text = "silvermysttree03.m2", - value = "silvermysttree03.m2", + fileId = "251634", + text = "argentcrusade_opentent.m2", + value = "argentcrusade_opentent.m2", }, { - fileId = "193481", - text = "silvermysttree04.m2", - value = "silvermysttree04.m2", + fileId = "251635", + text = "argentcrusade_small01.m2", + value = "argentcrusade_small01.m2", }, { - fileId = "193482", - text = "silvermysttree05.m2", - value = "silvermysttree05.m2", + fileId = "254264", + text = "argentcrusade_sword_in_ice.m2", + value = "argentcrusade_sword_in_ice.m2", }, { - fileId = "193483", - text = "silvermysttree_fallen01.m2", - value = "silvermysttree_fallen01.m2", + fileId = "250884", + text = "argentcrusade_sword_n_stone.m2", + value = "argentcrusade_sword_n_stone.m2", }, { - fileId = "193484", - text = "silvermysttreeroots01.m2", - value = "silvermysttreeroots01.m2", + fileId = "251637", + text = "argentcrusade_tent05.m2", + value = "argentcrusade_tent05.m2", }, { - fileId = "193485", - text = "silvermysttreetorn01.m2", - value = "silvermysttreetorn01.m2", + fileId = "251738", + text = "argentcrusade_tent06.m2", + value = "argentcrusade_tent06.m2", }, { - fileId = "193486", - text = "silvermysttreetorn02.m2", - value = "silvermysttreetorn02.m2", + fileId = "340025", + text = "argentcrusade_tent07.m2", + value = "argentcrusade_tent07.m2", }, { - fileId = "193487", - text = "silvermysttreetorn03.m2", - value = "silvermysttreetorn03.m2", + fileId = "254467", + text = "argentcrusade_wall_01.m2", + value = "argentcrusade_wall_01.m2", }, { - fileId = "193488", - text = "silvermysttreetorn04.m2", - value = "silvermysttreetorn04.m2", + fileId = "254468", + text = "argentcrusade_wall_02.m2", + value = "argentcrusade_wall_02.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "silvermyst", - value = "silvermyst", - }, - { - children = { - { - children = { { children = { { - fileId = "193491", - text = "frostwurmfellfire_birth.m2", - value = "frostwurmfellfire_birth.m2", + fileId = "252745", + text = "argentcursade_windypennant01.m2", + value = "argentcursade_windypennant01.m2", }, { - fileId = "193497", - text = "sunwell_bosscollision01.m2", - value = "sunwell_bosscollision01.m2", + fileId = "252836", + text = "tournament_banner_be02.m2", + value = "tournament_banner_be02.m2", }, { - fileId = "193498", - text = "sunwell_bosscollision02.m2", - value = "sunwell_bosscollision02.m2", + fileId = "252724", + text = "tournament_banner_bloodelf01.m2", + value = "tournament_banner_bloodelf01.m2", }, { - fileId = "193499", - text = "sunwell_bossforcefield.m2", - value = "sunwell_bossforcefield.m2", + fileId = "252725", + text = "tournament_banner_bloodelf02.m2", + value = "tournament_banner_bloodelf02.m2", }, { - fileId = "193508", - text = "sunwell_fx.m2", - value = "sunwell_fx.m2", + fileId = "511470", + text = "tournament_banner_bloodelf02_nocol.m2", + value = "tournament_banner_bloodelf02_nocol.m2", }, { - fileId = "193511", - text = "sunwell_ice_barrier.m2", - value = "sunwell_ice_barrier.m2", + fileId = "252727", + text = "tournament_banner_draenei01.m2", + value = "tournament_banner_draenei01.m2", }, { - fileId = "193518", - text = "sunwell_replica.m2", - value = "sunwell_replica.m2", + fileId = "252728", + text = "tournament_banner_draenei02.m2", + value = "tournament_banner_draenei02.m2", }, { - fileId = "193525", - text = "sunwell_windowdust.m2", - value = "sunwell_windowdust.m2", + fileId = "511472", + text = "tournament_banner_draenei02_nocol.m2", + value = "tournament_banner_draenei02_nocol.m2", }, { - fileId = "193527", - text = "sunwellraid_gate_01.m2", - value = "sunwellraid_gate_01.m2", + fileId = "252730", + text = "tournament_banner_dwarf01.m2", + value = "tournament_banner_dwarf01.m2", }, { - fileId = "193528", - text = "sunwellraid_gate_02.m2", - value = "sunwellraid_gate_02.m2", + fileId = "252731", + text = "tournament_banner_dwarf02.m2", + value = "tournament_banner_dwarf02.m2", }, { - fileId = "193529", - text = "sunwellraid_gate_03.m2", - value = "sunwellraid_gate_03.m2", + fileId = "511474", + text = "tournament_banner_dwarf02_nocol.m2", + value = "tournament_banner_dwarf02_nocol.m2", }, { - fileId = "193530", - text = "sunwellraid_gate_04.m2", - value = "sunwellraid_gate_04.m2", + fileId = "252733", + text = "tournament_banner_fk01.m2", + value = "tournament_banner_fk01.m2", + }, + { + fileId = "252734", + text = "tournament_banner_fk02.m2", + value = "tournament_banner_fk02.m2", + }, + { + fileId = "511476", + text = "tournament_banner_fk02_nocol.m2", + value = "tournament_banner_fk02_nocol.m2", + }, + { + fileId = "252736", + text = "tournament_banner_gnome01.m2", + value = "tournament_banner_gnome01.m2", + }, + { + fileId = "252737", + text = "tournament_banner_gnome02.m2", + value = "tournament_banner_gnome02.m2", + }, + { + fileId = "511478", + text = "tournament_banner_gnome02_nocol.m2", + value = "tournament_banner_gnome02_nocol.m2", + }, + { + fileId = "252739", + text = "tournament_banner_horde01.m2", + value = "tournament_banner_horde01.m2", + }, + { + fileId = "252740", + text = "tournament_banner_horde02.m2", + value = "tournament_banner_horde02.m2", + }, + { + fileId = "511480", + text = "tournament_banner_horde02_nocol.m2", + value = "tournament_banner_horde02_nocol.m2", + }, + { + fileId = "252742", + text = "tournament_banner_human01.m2", + value = "tournament_banner_human01.m2", + }, + { + fileId = "252743", + text = "tournament_banner_human02.m2", + value = "tournament_banner_human02.m2", + }, + { + fileId = "511482", + text = "tournament_banner_human02_nocol.m2", + value = "tournament_banner_human02_nocol.m2", + }, + { + fileId = "252747", + text = "tournament_banner_nelf01.m2", + value = "tournament_banner_nelf01.m2", + }, + { + fileId = "252748", + text = "tournament_banner_nelf02.m2", + value = "tournament_banner_nelf02.m2", + }, + { + fileId = "511484", + text = "tournament_banner_nelf02_nocol.m2", + value = "tournament_banner_nelf02_nocol.m2", + }, + { + fileId = "252750", + text = "tournament_banner_tauren01.m2", + value = "tournament_banner_tauren01.m2", + }, + { + fileId = "252751", + text = "tournament_banner_tauren02.m2", + value = "tournament_banner_tauren02.m2", + }, + { + fileId = "511486", + text = "tournament_banner_tauren02_nocol.m2", + value = "tournament_banner_tauren02_nocol.m2", + }, + { + fileId = "252753", + text = "tournament_banner_trolls01.m2", + value = "tournament_banner_trolls01.m2", + }, + { + fileId = "252754", + text = "tournament_banner_trolls02.m2", + value = "tournament_banner_trolls02.m2", + }, + { + fileId = "511488", + text = "tournament_banner_trolls02_nocol.m2", + value = "tournament_banner_trolls02_nocol.m2", }, }, - text = "sunwell", - value = "sunwell", + text = "banners", + value = "banners", + }, + { + fileId = "311589", + text = "nd_argentcrusadecoliseum_floorpieces.m2", + value = "nd_argentcrusadecoliseum_floorpieces.m2", + }, + { + fileId = "311954", + text = "nd_argentcrusadecoliseum_trapdoor_01.m2", + value = "nd_argentcrusadecoliseum_trapdoor_01.m2", }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "sunwell", - value = "sunwell", - }, - { - children = { - { - children = { { children = { { - fileId = "193538", - text = "tk_boss_pod.m2", - value = "tk_boss_pod.m2", + fileId = "253328", + text = "tournament_pennant_argentcru01.m2", + value = "tournament_pennant_argentcru01.m2", + }, + { + fileId = "253329", + text = "tournament_pennant_argentcru02.m2", + value = "tournament_pennant_argentcru02.m2", }, - }, - text = "arcane_boss_pod", - value = "arcane_boss_pod", - }, - { - children = { { - fileId = "193539", - text = "tk_arcane_door_horiz.m2", - value = "tk_arcane_door_horiz.m2", + fileId = "253330", + text = "tournament_pennant_argentcru03.m2", + value = "tournament_pennant_argentcru03.m2", }, { - fileId = "193540", - text = "tk_arcane_door_vert.m2", - value = "tk_arcane_door_vert.m2", + fileId = "311968", + text = "tournament_pennant_argentcru_low.m2", + value = "tournament_pennant_argentcru_low.m2", }, - }, - text = "arcane_doors", - value = "arcane_doors", - }, - { - children = { { - fileId = "193541", - text = "tk_prison_cell.m2", - value = "tk_prison_cell.m2", + fileId = "252788", + text = "tournament_pennant_be01.m2", + value = "tournament_pennant_be01.m2", }, - }, - text = "arcane_pod", - value = "arcane_pod", - }, - { - children = { { - fileId = "193551", - text = "tk_main_control_console.m2", - value = "tk_main_control_console.m2", + fileId = "252789", + text = "tournament_pennant_be02.m2", + value = "tournament_pennant_be02.m2", }, { - fileId = "193552", - text = "tk_short_control_console.m2", - value = "tk_short_control_console.m2", + fileId = "252790", + text = "tournament_pennant_be03.m2", + value = "tournament_pennant_be03.m2", }, { - fileId = "193553", - text = "tk_tall_control_console.m2", - value = "tk_tall_control_console.m2", + fileId = "311957", + text = "tournament_pennant_be_low.m2", + value = "tournament_pennant_be_low.m2", }, - }, - text = "control_console", - value = "control_console", - }, - { - children = { { - fileId = "193558", - text = "tk_exterior_crystals.m2", - value = "tk_exterior_crystals.m2", + fileId = "252925", + text = "tournament_pennant_draenei01.m2", + value = "tournament_pennant_draenei01.m2", }, - }, - text = "crystals", - value = "crystals", - }, - { - children = { { - fileId = "193564", - text = "tk_factory_door.m2", - value = "tk_factory_door.m2", + fileId = "252926", + text = "tournament_pennant_draenei02.m2", + value = "tournament_pennant_draenei02.m2", }, { - fileId = "193565", - text = "tk_factory_door_vert.m2", - value = "tk_factory_door_vert.m2", + fileId = "252927", + text = "tournament_pennant_draenei03.m2", + value = "tournament_pennant_draenei03.m2", }, - }, - text = "factory_door", - value = "factory_door", - }, - { - children = { { - fileId = "193566", - text = "kael_explode_fx_left.m2", - value = "kael_explode_fx_left.m2", + fileId = "311958", + text = "tournament_pennant_draenei_low.m2", + value = "tournament_pennant_draenei_low.m2", }, { - fileId = "193567", - text = "kael_explode_fx_right.m2", - value = "kael_explode_fx_right.m2", + fileId = "252929", + text = "tournament_pennant_dwarf01.m2", + value = "tournament_pennant_dwarf01.m2", }, - }, - text = "kael_statue", - value = "kael_statue", - }, - { - children = { { - fileId = "193569", - text = "tk_raid_door.m2", - value = "tk_raid_door.m2", + fileId = "252930", + text = "tournament_pennant_dwarf02.m2", + value = "tournament_pennant_dwarf02.m2", }, - }, - text = "raid_door", - value = "raid_door", - }, - { - children = { { - fileId = "193572", - text = "tk_raid_windows_tall.m2", - value = "tk_raid_windows_tall.m2", + fileId = "252931", + text = "tournament_pennant_dwarf03.m2", + value = "tournament_pennant_dwarf03.m2", }, - }, - text = "raid_windows", - value = "raid_windows", - }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { - { - children = { { - fileId = "193573", - text = "tk_bridge_graphics.m2", - value = "tk_bridge_graphics.m2", + fileId = "311959", + text = "tournament_pennant_dwarf_low.m2", + value = "tournament_pennant_dwarf_low.m2", }, { - fileId = "193574", - text = "tk_bridge_graphics2.m2", - value = "tk_bridge_graphics2.m2", + fileId = "253379", + text = "tournament_pennant_ebonblade01.m2", + value = "tournament_pennant_ebonblade01.m2", }, - }, - text = "bridges", - value = "bridges", - }, - { - children = { { - fileId = "193577", - text = "tk_container_01.m2", - value = "tk_container_01.m2", + fileId = "253380", + text = "tournament_pennant_ebonblade02.m2", + value = "tournament_pennant_ebonblade02.m2", }, { - fileId = "193578", - text = "tk_container_02.m2", - value = "tk_container_02.m2", + fileId = "253381", + text = "tournament_pennant_ebonblade03.m2", + value = "tournament_pennant_ebonblade03.m2", }, - }, - text = "container", - value = "container", - }, - { - children = { { - fileId = "193585", - text = "tk_exterior_crystals_bottom.m2", - value = "tk_exterior_crystals_bottom.m2", + fileId = "311960", + text = "tournament_pennant_ebonblade_low.m2", + value = "tournament_pennant_ebonblade_low.m2", }, { - fileId = "193586", - text = "tk_exterior_crystals_top.m2", - value = "tk_exterior_crystals_top.m2", + fileId = "252838", + text = "tournament_pennant_fk01.m2", + value = "tournament_pennant_fk01.m2", }, { - fileId = "193587", - text = "tk_smallwing_arcane_crystals_bottom.m2", - value = "tk_smallwing_arcane_crystals_bottom.m2", + fileId = "252839", + text = "tournament_pennant_fk02.m2", + value = "tournament_pennant_fk02.m2", }, { - fileId = "193588", - text = "tk_smallwing_arcane_crystals_top.m2", - value = "tk_smallwing_arcane_crystals_top.m2", + fileId = "252840", + text = "tournament_pennant_fk03.m2", + value = "tournament_pennant_fk03.m2", }, { - fileId = "193589", - text = "tk_smallwing_crystals.m2", - value = "tk_smallwing_crystals.m2", + fileId = "311961", + text = "tournament_pennant_fk_low.m2", + value = "tournament_pennant_fk_low.m2", }, { - fileId = "193590", - text = "tk_smallwing_crystals_bottom.m2", - value = "tk_smallwing_crystals_bottom.m2", + fileId = "252823", + text = "tournament_pennant_gnome01.m2", + value = "tournament_pennant_gnome01.m2", }, { - fileId = "193591", - text = "tk_smallwing_crystals_top.m2", - value = "tk_smallwing_crystals_top.m2", + fileId = "252824", + text = "tournament_pennant_gnome02.m2", + value = "tournament_pennant_gnome02.m2", }, { - fileId = "193592", - text = "tk_smallwing_factory_crystals_bottom.m2", - value = "tk_smallwing_factory_crystals_bottom.m2", + fileId = "252825", + text = "tournament_pennant_gnome03.m2", + value = "tournament_pennant_gnome03.m2", }, { - fileId = "193593", - text = "tk_smallwing_factory_crystals_top.m2", - value = "tk_smallwing_factory_crystals_top.m2", + fileId = "311962", + text = "tournament_pennant_gnome_low.m2", + value = "tournament_pennant_gnome_low.m2", }, - }, - text = "crystals", - value = "crystals", - }, - { - children = { { - fileId = "193595", - text = "tk_energy_exhaust_01.m2", - value = "tk_energy_exhaust_01.m2", + fileId = "252792", + text = "tournament_pennant_human01.m2", + value = "tournament_pennant_human01.m2", }, { - fileId = "193596", - text = "tk_forcefield_atrium_outline.m2", - value = "tk_forcefield_atrium_outline.m2", + fileId = "252793", + text = "tournament_pennant_human02.m2", + value = "tournament_pennant_human02.m2", }, { - fileId = "193597", - text = "tk_forcefield_entry_outline.m2", - value = "tk_forcefield_entry_outline.m2", + fileId = "252794", + text = "tournament_pennant_human03.m2", + value = "tournament_pennant_human03.m2", }, { - fileId = "193598", - text = "tk_forcefield_outline.m2", - value = "tk_forcefield_outline.m2", + fileId = "311963", + text = "tournament_pennant_human_low.m2", + value = "tournament_pennant_human_low.m2", }, - }, - text = "forcefields", - value = "forcefields", - }, - { - children = { { - fileId = "193605", - text = "tk_helix_floor_reflection.m2", - value = "tk_helix_floor_reflection.m2", + fileId = "252796", + text = "tournament_pennant_nelf01.m2", + value = "tournament_pennant_nelf01.m2", }, { - fileId = "193606", - text = "tk_main_bridge_reflection.m2", - value = "tk_main_bridge_reflection.m2", + fileId = "252797", + text = "tournament_pennant_nelf02.m2", + value = "tournament_pennant_nelf02.m2", }, { - fileId = "193607", - text = "tk_ramp_reflection.m2", - value = "tk_ramp_reflection.m2", + fileId = "252798", + text = "tournament_pennant_nelf03.m2", + value = "tournament_pennant_nelf03.m2", }, - }, - text = "prisonbridges", - value = "prisonbridges", - }, - { - children = { { - fileId = "193614", - text = "tk_prison_cell_dark.m2", - value = "tk_prison_cell_dark.m2", + fileId = "311964", + text = "tournament_pennant_nelf_low.m2", + value = "tournament_pennant_nelf_low.m2", }, { - fileId = "193615", - text = "tk_prison_cell_illuminated.m2", - value = "tk_prison_cell_illuminated.m2", + fileId = "252800", + text = "tournament_pennant_orc01.m2", + value = "tournament_pennant_orc01.m2", }, { - fileId = "193616", - text = "tk_prison_cell_toponly.m2", - value = "tk_prison_cell_toponly.m2", + fileId = "252801", + text = "tournament_pennant_orc02.m2", + value = "tournament_pennant_orc02.m2", }, - }, - text = "prisoncellglass", - value = "prisoncellglass", - }, - { - children = { { - fileId = "193626", - text = "tk_lightning_ball.m2", - value = "tk_lightning_ball.m2", + fileId = "252802", + text = "tournament_pennant_orc03.m2", + value = "tournament_pennant_orc03.m2", }, { - fileId = "193627", - text = "tk_lightning_diagonal.m2", - value = "tk_lightning_diagonal.m2", + fileId = "311969", + text = "tournament_pennant_orc_low.m2", + value = "tournament_pennant_orc_low.m2", }, { - fileId = "193628", - text = "tk_lightning_diagonal_ball.m2", - value = "tk_lightning_diagonal_ball.m2", + fileId = "252923", + text = "tournament_pennant_tauren01.m2", + value = "tournament_pennant_tauren01.m2", }, { - fileId = "193629", - text = "tk_lightning_fx_3_sides_room.m2", - value = "tk_lightning_fx_3_sides_room.m2", + fileId = "252932", + text = "tournament_pennant_tauren02.m2", + value = "tournament_pennant_tauren02.m2", }, { - fileId = "193630", - text = "tk_lightning_fx_helix_room.m2", - value = "tk_lightning_fx_helix_room.m2", + fileId = "252933", + text = "tournament_pennant_tauren03.m2", + value = "tournament_pennant_tauren03.m2", }, { - fileId = "193631", - text = "tk_lightning_fx_tri_room.m2", - value = "tk_lightning_fx_tri_room.m2", + fileId = "311970", + text = "tournament_pennant_tauren_low.m2", + value = "tournament_pennant_tauren_low.m2", }, { - fileId = "193632", - text = "tk_lightning_horizontal.m2", - value = "tk_lightning_horizontal.m2", + fileId = "252827", + text = "tournament_pennant_troll01.m2", + value = "tournament_pennant_troll01.m2", }, { - fileId = "193633", - text = "tk_prison_fx.m2", - value = "tk_prison_fx.m2", + fileId = "252828", + text = "tournament_pennant_troll02.m2", + value = "tournament_pennant_troll02.m2", }, - }, - text = "prisonfx", - value = "prisonfx", - }, - }, - text = "passivedoodads", - value = "passivedoodads", - }, - }, - text = "tempestkeep", - value = "tempestkeep", - }, - { - children = { - { - children = { - { - fileId = "193634", - text = "be_arcanebomb.m2", - value = "be_arcanebomb.m2", - }, - { - fileId = "193639", - text = "be_arcanebomb_orb.m2", - value = "be_arcanebomb_orb.m2", - }, - }, - text = "bomb", - value = "bomb", - }, - { - children = { - { - fileId = "193645", - text = "terokkar_bonepile01.m2", - value = "terokkar_bonepile01.m2", - }, - { - fileId = "193646", - text = "terokkar_bonepile02.m2", - value = "terokkar_bonepile02.m2", - }, - }, - text = "bonepile", - value = "bonepile", - }, - { - children = { - { - fileId = "193648", - text = "chokeberrybush.m2", - value = "chokeberrybush.m2", - }, - { - fileId = "193650", - text = "terokkarbush01.m2", - value = "terokkarbush01.m2", - }, - }, - text = "bushes", - value = "bushes", - }, - { - children = { - { - fileId = "193653", - text = "terokkarcrystal01.m2", - value = "terokkarcrystal01.m2", - }, - { - fileId = "193654", - text = "terokkarcrystal02.m2", - value = "terokkarcrystal02.m2", - }, - { - fileId = "193655", - text = "terokkarcrystal03.m2", - value = "terokkarcrystal03.m2", - }, - }, - text = "crystal", - value = "crystal", - }, - { - children = { - { - fileId = "193659", - text = "terokkar_lightray01.m2", - value = "terokkar_lightray01.m2", - }, - { - fileId = "193660", - text = "terokkar_lightray02.m2", - value = "terokkar_lightray02.m2", - }, - }, - text = "lightray", - value = "lightray", - }, - { - children = { - { - fileId = "193663", - text = "terokkarpinecone.m2", - value = "terokkarpinecone.m2", - }, - }, - text = "pinecone", - value = "pinecone", - }, - { - children = { - { - fileId = "193666", - text = "terokkar_floatingsmall01.m2", - value = "terokkar_floatingsmall01.m2", - }, - { - fileId = "193667", - text = "terokkar_floatingsmall02.m2", - value = "terokkar_floatingsmall02.m2", - }, - { - fileId = "193668", - text = "terokkar_overhangrock_large_01.m2", - value = "terokkar_overhangrock_large_01.m2", - }, - { - fileId = "193669", - text = "terokkar_overhangrock_large_02.m2", - value = "terokkar_overhangrock_large_02.m2", - }, - { - fileId = "193670", - text = "terokkar_overhangrock_small_01.m2", - value = "terokkar_overhangrock_small_01.m2", - }, - { - fileId = "193671", - text = "terokkar_overhangrock_small_02.m2", - value = "terokkar_overhangrock_small_02.m2", - }, - { - fileId = "193672", - text = "terokkar_overhangrock_small_03.m2", - value = "terokkar_overhangrock_small_03.m2", + { + fileId = "252829", + text = "tournament_pennant_troll03.m2", + value = "tournament_pennant_troll03.m2", + }, + { + fileId = "311971", + text = "tournament_pennant_troll_low.m2", + value = "tournament_pennant_troll_low.m2", + }, + }, + text = "pennants", + value = "pennants", }, }, - text = "rocks", - value = "rocks", + text = "argentcrusade", + value = "argentcrusade", }, { children = { { - fileId = "193674", - text = "terokkar_auch_ruin01.m2", - value = "terokkar_auch_ruin01.m2", + fileId = "194748", + text = "barbershop_chair01.m2", + value = "barbershop_chair01.m2", }, { - fileId = "193675", - text = "terokkar_auch_ruin02.m2", - value = "terokkar_auch_ruin02.m2", + fileId = "243367", + text = "barbershop_mirror_01.m2", + value = "barbershop_mirror_01.m2", }, { - fileId = "193676", - text = "terokkar_auch_ruin03.m2", - value = "terokkar_auch_ruin03.m2", + fileId = "194749", + text = "barbershop_polestanding.m2", + value = "barbershop_polestanding.m2", }, { - fileId = "193677", - text = "terokkar_auch_ruin04.m2", - value = "terokkar_auch_ruin04.m2", + fileId = "194750", + text = "barbershop_polewall.m2", + value = "barbershop_polewall.m2", }, { - fileId = "193678", - text = "terokkar_auch_ruin05.m2", - value = "terokkar_auch_ruin05.m2", + fileId = "194751", + text = "barbershop_poster01.m2", + value = "barbershop_poster01.m2", }, { - fileId = "193679", - text = "terokkar_auch_ruin06.m2", - value = "terokkar_auch_ruin06.m2", + fileId = "194752", + text = "barbershop_poster02.m2", + value = "barbershop_poster02.m2", }, { - fileId = "193680", - text = "terokkar_auch_ruin07.m2", - value = "terokkar_auch_ruin07.m2", + fileId = "194753", + text = "barbershop_razor.m2", + value = "barbershop_razor.m2", }, { - fileId = "193681", - text = "terokkar_auch_ruin08.m2", - value = "terokkar_auch_ruin08.m2", + fileId = "194754", + text = "barbershop_shavebrush.m2", + value = "barbershop_shavebrush.m2", }, { - fileId = "193682", - text = "terokkar_auch_ruin09.m2", - value = "terokkar_auch_ruin09.m2", + fileId = "194755", + text = "barbershop_shavecup.m2", + value = "barbershop_shavecup.m2", }, { - fileId = "193683", - text = "terokkar_auch_ruin10.m2", - value = "terokkar_auch_ruin10.m2", + fileId = "194756", + text = "barbershop_wig01.m2", + value = "barbershop_wig01.m2", }, - }, - text = "ruin", - value = "ruin", - }, - { - children = { { - fileId = "193686", - text = "terokkar_boneshrine_arch01.m2", - value = "terokkar_boneshrine_arch01.m2", + fileId = "194757", + text = "barbershop_wig02.m2", + value = "barbershop_wig02.m2", }, { - fileId = "193687", - text = "terokkar_boneshrine_arch02.m2", - value = "terokkar_boneshrine_arch02.m2", + fileId = "194758", + text = "barbershop_wig03.m2", + value = "barbershop_wig03.m2", }, - }, - text = "shrine", - value = "shrine", - }, - { - children = { { - fileId = "193688", - text = "terokkar_signpost_01.m2", - value = "terokkar_signpost_01.m2", + fileId = "194759", + text = "barbershop_wig04.m2", + value = "barbershop_wig04.m2", }, { - fileId = "193689", - text = "terokkar_signpost_sign.m2", - value = "terokkar_signpost_sign.m2", + fileId = "194760", + text = "barbershop_wig05.m2", + value = "barbershop_wig05.m2", }, }, - text = "signposts", - value = "signposts", + text = "barbershop", + value = "barbershop", }, { children = { { - fileId = "193691", - text = "terokkarfallentree.m2", - value = "terokkarfallentree.m2", - }, - { - fileId = "193692", - text = "terokkartreelarge.m2", - value = "terokkartreelarge.m2", - }, - { - fileId = "193693", - text = "terokkartreelargepinecones.m2", - value = "terokkartreelargepinecones.m2", - }, - { - fileId = "193694", - text = "terokkartreemedium.m2", - value = "terokkartreemedium.m2", - }, - { - fileId = "193695", - text = "terokkartreemediumpinecones.m2", - value = "terokkartreemediumpinecones.m2", - }, - { - fileId = "193696", - text = "terokkartreenoleaves01.m2", - value = "terokkartreenoleaves01.m2", - }, - { - fileId = "193697", - text = "terokkartreenoleaves02.m2", - value = "terokkartreenoleaves02.m2", - }, - { - fileId = "193698", - text = "terokkartreesapling.m2", - value = "terokkartreesapling.m2", - }, - { - fileId = "193699", - text = "terokkartreesmall.m2", - value = "terokkartreesmall.m2", - }, - { - fileId = "193700", - text = "terokkartreestump.m2", - value = "terokkartreestump.m2", + fileId = "194762", + text = "bonfirenorthrend_01.m2", + value = "bonfirenorthrend_01.m2", }, { - fileId = "193701", - text = "terokkartreestump02.m2", - value = "terokkartreestump02.m2", + fileId = "194763", + text = "bonfirenorthrend_01blue.m2", + value = "bonfirenorthrend_01blue.m2", }, }, - text = "trees", - value = "trees", + text = "bonfire", + value = "bonfire", }, { children = { { - fileId = "193710", - text = "terokkar_post_01.m2", - value = "terokkar_post_01.m2", - }, - { - fileId = "193711", - text = "terokkar_post_ruin_01.m2", - value = "terokkar_post_ruin_01.m2", - }, - { - fileId = "193712", - text = "terokkar_wall_01.m2", - value = "terokkar_wall_01.m2", + fileId = "243368", + text = "catwolf_footprint_brush01.m2", + value = "catwolf_footprint_brush01.m2", }, { - fileId = "193713", - text = "terokkar_wall_ruin_01.m2", - value = "terokkar_wall_ruin_01.m2", + fileId = "243369", + text = "catwolf_footprint_debris01.m2", + value = "catwolf_footprint_debris01.m2", }, - }, - text = "walls", - value = "walls", - }, - { - children = { { - fileId = "193719", - text = "terokkarweb01.m2", - value = "terokkarweb01.m2", + fileId = "243370", + text = "catwolf_footprint_grass01.m2", + value = "catwolf_footprint_grass01.m2", }, { - fileId = "193720", - text = "terokkarweb02.m2", - value = "terokkarweb02.m2", + fileId = "243371", + text = "catwolf_footprint_moss01.m2", + value = "catwolf_footprint_moss01.m2", }, { - fileId = "193721", - text = "terokkarweb03.m2", - value = "terokkarweb03.m2", + fileId = "243372", + text = "catwolf_footprint_mud01.m2", + value = "catwolf_footprint_mud01.m2", }, { - fileId = "193722", - text = "terokkarweb04.m2", - value = "terokkarweb04.m2", + fileId = "243373", + text = "catwolf_footprint_snow01.m2", + value = "catwolf_footprint_snow01.m2", }, }, - text = "webs", - value = "webs", + text = "catwolftracks", + value = "catwolftracks", + }, + { + fileId = "243380", + text = "dalaran_tabard.m2", + value = "dalaran_tabard.m2", }, - }, - text = "terokkar", - value = "terokkar", - }, - { - children = { { children = { { children = { { - fileId = "193727", - text = "exodar_long_banner.m2", - value = "exodar_long_banner.m2", - }, - { - fileId = "193728", - text = "exodar_long_banner_anim.m2", - value = "exodar_long_banner_anim.m2", - }, - { - fileId = "193729", - text = "exodar_medium_banner.m2", - value = "exodar_medium_banner.m2", - }, - { - fileId = "193730", - text = "exodar_medium_banner_anim.m2", - value = "exodar_medium_banner_anim.m2", - }, - { - fileId = "193731", - text = "exodar_medium_hang_banner.m2", - value = "exodar_medium_hang_banner.m2", - }, - { - fileId = "193732", - text = "exodar_medium_hang_banner_anim.m2", - value = "exodar_medium_hang_banner_anim.m2", - }, - { - fileId = "193733", - text = "exodar_medium_hang_banner_anim_type2.m2", - value = "exodar_medium_hang_banner_anim_type2.m2", - }, - { - fileId = "193734", - text = "exodar_thin2_hang_banner.m2", - value = "exodar_thin2_hang_banner.m2", - }, - { - fileId = "193735", - text = "exodar_thin_banner.m2", - value = "exodar_thin_banner.m2", - }, - { - fileId = "193736", - text = "exodar_thin_banner_anim.m2", - value = "exodar_thin_banner_anim.m2", - }, - { - fileId = "193737", - text = "exodar_thin_hang_banner.m2", - value = "exodar_thin_hang_banner.m2", - }, - { - fileId = "193738", - text = "exodar_thin_hang_banner_anim.m2", - value = "exodar_thin_hang_banner_anim.m2", - }, - { - fileId = "193739", - text = "exodar_thin_hang_banner_animtype2.m2", - value = "exodar_thin_hang_banner_animtype2.m2", - }, - { - fileId = "193740", - text = "exodar_thin_hang_banner_animtype3.m2", - value = "exodar_thin_hang_banner_animtype3.m2", - }, - { - fileId = "193741", - text = "exodar_tri_banner_blue.m2", - value = "exodar_tri_banner_blue.m2", - }, - { - fileId = "193742", - text = "exodar_tri_banner_red.m2", - value = "exodar_tri_banner_red.m2", - }, - { - fileId = "193743", - text = "exodar_tri_banner_s_blue.m2", - value = "exodar_tri_banner_s_blue.m2", - }, - { - fileId = "193744", - text = "exodar_tri_banner_s_red.m2", - value = "exodar_tri_banner_s_red.m2", - }, - { - fileId = "193745", - text = "exodar_wide_banner.m2", - value = "exodar_wide_banner.m2", - }, - { - fileId = "193746", - text = "exodar_wide_banner_anim.m2", - value = "exodar_wide_banner_anim.m2", - }, - { - fileId = "193747", - text = "exodar_wide_hang_banner.m2", - value = "exodar_wide_hang_banner.m2", - }, - { - fileId = "193748", - text = "exodar_wide_hang_banner_anim.m2", - value = "exodar_wide_hang_banner_anim.m2", + fileId = "194765", + text = "dest_tower_1_a.m2", + value = "dest_tower_1_a.m2", }, { - fileId = "193749", - text = "exodar_wide_hang_banner_anim_type2.m2", - value = "exodar_wide_hang_banner_anim_type2.m2", + fileId = "194766", + text = "dest_tower_1_b.m2", + value = "dest_tower_1_b.m2", }, { - fileId = "193750", - text = "exodar_wide_hang_banner_anim_type3.m2", - value = "exodar_wide_hang_banner_anim_type3.m2", + fileId = "194767", + text = "dest_tower_1_c.m2", + value = "dest_tower_1_c.m2", }, - }, - text = "clothobjects", - value = "clothobjects", - }, - { - children = { { - fileId = "193754", - text = "crystal_corrupted.m2", - value = "crystal_corrupted.m2", + fileId = "194768", + text = "dest_tower_1_d.m2", + value = "dest_tower_1_d.m2", }, { - fileId = "193756", - text = "narru_crystal_pot.m2", - value = "narru_crystal_pot.m2", + fileId = "194769", + text = "dest_tower_1_e.m2", + value = "dest_tower_1_e.m2", }, { - fileId = "193757", - text = "narru_crystal_pure.m2", - value = "narru_crystal_pure.m2", + fileId = "194770", + text = "dest_tower_1_f.m2", + value = "dest_tower_1_f.m2", }, - }, - text = "crystal", - value = "crystal", - }, - { - children = { { - fileId = "193760", - text = "exodar_center_naaru_crystals.m2", - value = "exodar_center_naaru_crystals.m2", + fileId = "194771", + text = "dest_tower_1_g.m2", + value = "dest_tower_1_g.m2", }, { - fileId = "193761", - text = "exodar_crystal_chandelier.m2", - value = "exodar_crystal_chandelier.m2", + fileId = "194772", + text = "dest_tower_1_h.m2", + value = "dest_tower_1_h.m2", }, { - fileId = "193762", - text = "exodar_crystal_large.m2", - value = "exodar_crystal_large.m2", + fileId = "194773", + text = "dest_tower_1_i.m2", + value = "dest_tower_1_i.m2", }, { - fileId = "193763", - text = "exodar_crystal_large_yelllow.m2", - value = "exodar_crystal_large_yelllow.m2", + fileId = "194774", + text = "dest_tower_1_j.m2", + value = "dest_tower_1_j.m2", }, { - fileId = "193764", - text = "exodar_crystal_thin.m2", - value = "exodar_crystal_thin.m2", + fileId = "194775", + text = "dest_tower_1_k.m2", + value = "dest_tower_1_k.m2", }, { - fileId = "193765", - text = "exodar_crystal_thin_type2.m2", - value = "exodar_crystal_thin_type2.m2", + fileId = "194776", + text = "dest_tower_1_l.m2", + value = "dest_tower_1_l.m2", }, { - fileId = "193766", - text = "exodar_crystal_thin_yellow.m2", - value = "exodar_crystal_thin_yellow.m2", + fileId = "194777", + text = "dest_tower_1_m.m2", + value = "dest_tower_1_m.m2", }, { - fileId = "193767", - text = "exodar_crystal_yellow_bunch.m2", - value = "exodar_crystal_yellow_bunch.m2", + fileId = "194778", + text = "dest_tower_2_a.m2", + value = "dest_tower_2_a.m2", }, - }, - text = "crystals", - value = "crystals", - }, - { - children = { { - fileId = "193780", - text = "exodar_sconce.m2", - value = "exodar_sconce.m2", + fileId = "194779", + text = "dest_tower_2_b.m2", + value = "dest_tower_2_b.m2", }, { - fileId = "193781", - text = "exodar_sconce_blue.m2", - value = "exodar_sconce_blue.m2", + fileId = "194780", + text = "dest_tower_2_c.m2", + value = "dest_tower_2_c.m2", }, { - fileId = "193782", - text = "exodar_sconce_magenta.m2", - value = "exodar_sconce_magenta.m2", + fileId = "194781", + text = "dest_tower_2_d.m2", + value = "dest_tower_2_d.m2", }, - }, - text = "light_sconces", - value = "light_sconces", - }, - { - children = { { - fileId = "193789", - text = "exodar_narucore_fx.m2", - value = "exodar_narucore_fx.m2", + fileId = "194782", + text = "dest_tower_2_e.m2", + value = "dest_tower_2_e.m2", }, - }, - text = "naaru_core", - value = "naaru_core", - }, - { - children = { { - fileId = "193800", - text = "exodar_paladin_shrine_energyfx.m2", - value = "exodar_paladin_shrine_energyfx.m2", + fileId = "194783", + text = "dest_tower_2_f.m2", + value = "dest_tower_2_f.m2", }, - }, - text = "paladin_energy_fx", - value = "paladin_energy_fx", - }, - { - children = { { - fileId = "193805", - text = "draenei_shamen_stones_t1.m2", - value = "draenei_shamen_stones_t1.m2", + fileId = "194784", + text = "dest_tower_2_g.m2", + value = "dest_tower_2_g.m2", }, { - fileId = "193806", - text = "draenei_shamen_stones_t1_broken.m2", - value = "draenei_shamen_stones_t1_broken.m2", + fileId = "194785", + text = "dest_tower_2_h.m2", + value = "dest_tower_2_h.m2", }, - { - fileId = "193807", - text = "draenei_shamen_stones_t2.m2", - value = "draenei_shamen_stones_t2.m2", + { + fileId = "194786", + text = "dest_tower_2_i.m2", + value = "dest_tower_2_i.m2", }, { - fileId = "193808", - text = "draenei_shamen_stones_yellow_t1.m2", - value = "draenei_shamen_stones_yellow_t1.m2", + fileId = "194787", + text = "dest_tower_2_j.m2", + value = "dest_tower_2_j.m2", }, { - fileId = "193809", - text = "draenei_shamen_stones_yellow_t1_broken.m2", - value = "draenei_shamen_stones_yellow_t1_broken.m2", + fileId = "194788", + text = "dest_tower_2_k.m2", + value = "dest_tower_2_k.m2", }, { - fileId = "193810", - text = "draenei_shamen_stones_yellow_t2.m2", - value = "draenei_shamen_stones_yellow_t2.m2", + fileId = "194789", + text = "dest_tower_2_l.m2", + value = "dest_tower_2_l.m2", }, - }, - text = "shamen_stones", - value = "shamen_stones", - }, - { - children = { { - fileId = "193823", - text = "exodar_cheese_sign.m2", - value = "exodar_cheese_sign.m2", + fileId = "194790", + text = "dest_tower_2_m.m2", + value = "dest_tower_2_m.m2", }, { - fileId = "193824", - text = "exodar_herbalism_sign.m2", - value = "exodar_herbalism_sign.m2", + fileId = "194791", + text = "dest_tower_damaged.m2", + value = "dest_tower_damaged.m2", }, { - fileId = "193825", - text = "exodar_hunter_sign.m2", - value = "exodar_hunter_sign.m2", + fileId = "194792", + text = "dest_tower_destroyed.m2", + value = "dest_tower_destroyed.m2", }, { - fileId = "193826", - text = "exodar_inn_sign.m2", - value = "exodar_inn_sign.m2", + fileId = "194793", + text = "dest_tower_pieces.m2", + value = "dest_tower_pieces.m2", }, { - fileId = "193828", - text = "exodar_smith_sign.m2", - value = "exodar_smith_sign.m2", + fileId = "194794", + text = "guardtower_damaged_fade.m2", + value = "guardtower_damaged_fade.m2", }, { - fileId = "193829", - text = "exodar_warrior_sign.m2", - value = "exodar_warrior_sign.m2", + fileId = "194796", + text = "guardtower_destroyed_fade.m2", + value = "guardtower_destroyed_fade.m2", }, - }, - text = "signs", - value = "signs", - }, - { - children = { { - fileId = "193841", - text = "exodar_sky_portal.m2", - value = "exodar_sky_portal.m2", + fileId = "194797", + text = "guardtower_intact_fade.m2", + value = "guardtower_intact_fade.m2", }, }, - text = "sky_portal", - value = "sky_portal", + text = "guardtower", + value = "guardtower", }, }, - text = "passivedoodads", - value = "passivedoodads", + text = "destructible", + value = "destructible", }, - }, - text = "theexodar", - value = "theexodar", - }, - { - children = { { children = { { - fileId = "193845", - text = "zangargrass01.m2", - value = "zangargrass01.m2", + fileId = "194802", + text = "ebonblade_banner01.m2", + value = "ebonblade_banner01.m2", }, { - fileId = "193846", - text = "zangargrass01_husk.m2", - value = "zangargrass01_husk.m2", + fileId = "194803", + text = "ebonblade_banner02.m2", + value = "ebonblade_banner02.m2", + }, + { + fileId = "303710", + text = "ebonblade_banner02_nocollision.m2", + value = "ebonblade_banner02_nocollision.m2", }, }, - text = "bush", - value = "bush", + text = "ebonblade", + value = "ebonblade", }, { children = { { - fileId = "193856", - text = "zangarmarsh_floatingspore01.m2", - value = "zangarmarsh_floatingspore01.m2", + fileId = "243381", + text = "firstaid_nocollision.m2", + value = "firstaid_nocollision.m2", }, + }, + text = "firstaid", + value = "firstaid", + }, + { + children = { { - fileId = "193857", - text = "zangarmarsh_floatingspore02.m2", - value = "zangarmarsh_floatingspore02.m2", + fileId = "194805", + text = "fk_banner01.m2", + value = "fk_banner01.m2", }, { - fileId = "193858", - text = "zm_big_spore_01.m2", - value = "zm_big_spore_01.m2", + fileId = "194806", + text = "fk_banner01wall.m2", + value = "fk_banner01wall.m2", }, { - fileId = "193859", - text = "zm_big_spore_02.m2", - value = "zm_big_spore_02.m2", + fileId = "194807", + text = "fk_banner02wall.m2", + value = "fk_banner02wall.m2", }, { - fileId = "193860", - text = "zm_big_spore_03.m2", - value = "zm_big_spore_03.m2", + fileId = "194809", + text = "fk_barricade_01.m2", + value = "fk_barricade_01.m2", }, { - fileId = "193861", - text = "zm_big_spore_anim_01.m2", - value = "zm_big_spore_anim_01.m2", + fileId = "322809", + text = "fk_catapult_broke.m2", + value = "fk_catapult_broke.m2", }, { - fileId = "193862", - text = "zm_big_spore_anim_02.m2", - value = "zm_big_spore_anim_02.m2", + fileId = "194811", + text = "fk_chemistryset_02.m2", + value = "fk_chemistryset_02.m2", }, { - fileId = "193863", - text = "zm_big_spore_anim_03.m2", - value = "zm_big_spore_anim_03.m2", + fileId = "194812", + text = "fk_chemistryset_03.m2", + value = "fk_chemistryset_03.m2", }, - }, - text = "floatingspore", - value = "floatingspore", - }, - { - children = { { - fileId = "193865", - text = "zangarfogring01.m2", - value = "zangarfogring01.m2", + fileId = "194813", + text = "fk_chemistryset_04.m2", + value = "fk_chemistryset_04.m2", }, - }, - text = "fog", - value = "fog", - }, - { - children = { { - fileId = "193876", - text = "zangarfountain01.m2", - value = "zangarfountain01.m2", + fileId = "194814", + text = "fk_chemistryset_05.m2", + value = "fk_chemistryset_05.m2", }, - }, - text = "fountain", - value = "fountain", - }, - { - children = { { - fileId = "193878", - text = "zangarlamppost01.m2", - value = "zangarlamppost01.m2", + fileId = "194815", + text = "fk_chemistryset_06.m2", + value = "fk_chemistryset_06.m2", }, - }, - text = "lamp", - value = "lamp", - }, - { - children = { { - fileId = "193882", - text = "zangarlilypad01.m2", - value = "zangarlilypad01.m2", + fileId = "194816", + text = "fk_chemistryset_07.m2", + value = "fk_chemistryset_07.m2", }, { - fileId = "193886", - text = "zangarlilypad02.m2", - value = "zangarlilypad02.m2", + fileId = "194817", + text = "fk_chemistryset_forbuilding_01.m2", + value = "fk_chemistryset_forbuilding_01.m2", }, { - fileId = "193887", - text = "zangarlilypad03.m2", - value = "zangarlilypad03.m2", + fileId = "194818", + text = "fk_chemistryset_forbuilding_02.m2", + value = "fk_chemistryset_forbuilding_02.m2", }, { - fileId = "193888", - text = "zangarlilypad04.m2", - value = "zangarlilypad04.m2", + fileId = "194819", + text = "fk_chemistrytube_01.m2", + value = "fk_chemistrytube_01.m2", }, { - fileId = "193889", - text = "zangarlilypad05.m2", - value = "zangarlilypad05.m2", + fileId = "194820", + text = "fk_chemistrytube_02.m2", + value = "fk_chemistrytube_02.m2", }, { - fileId = "193890", - text = "zangarlilypad06.m2", - value = "zangarlilypad06.m2", + fileId = "194821", + text = "fk_chemistrytube_03.m2", + value = "fk_chemistrytube_03.m2", }, - }, - text = "lilypads", - value = "lilypads", - }, - { - children = { { - fileId = "193892", - text = "zangarlog01.m2", - value = "zangarlog01.m2", + fileId = "194822", + text = "fk_chemistrytube_04.m2", + value = "fk_chemistrytube_04.m2", }, { - fileId = "193894", - text = "zangarlog02.m2", - value = "zangarlog02.m2", + fileId = "194825", + text = "fk_fence01.m2", + value = "fk_fence01.m2", }, - }, - text = "logs", - value = "logs", - }, - { - children = { { - fileId = "193897", - text = "lo_well_01.m2", - value = "lo_well_01.m2", + fileId = "194826", + text = "fk_fence02.m2", + value = "fk_fence02.m2", + }, + { + fileId = "397900", + text = "fk_fence03.m2", + value = "fk_fence03.m2", + }, + { + fileId = "397906", + text = "fk_fence04.m2", + value = "fk_fence04.m2", + }, + { + fileId = "397956", + text = "fk_fence05.m2", + value = "fk_fence05.m2", + }, + { + fileId = "194827", + text = "fk_fencepost.m2", + value = "fk_fencepost.m2", + }, + { + fileId = "397901", + text = "fk_fencepost01.m2", + value = "fk_fencepost01.m2", + }, + { + fileId = "194833", + text = "fk_lamphanging.m2", + value = "fk_lamphanging.m2", + }, + { + fileId = "194834", + text = "fk_lamppost.m2", + value = "fk_lamppost.m2", + }, + { + fileId = "194836", + text = "fk_lamppost_unlit.m2", + value = "fk_lamppost_unlit.m2", + }, + { + fileId = "194837", + text = "fk_painting01.m2", + value = "fk_painting01.m2", + }, + { + fileId = "194838", + text = "fk_painting02.m2", + value = "fk_painting02.m2", + }, + { + fileId = "194839", + text = "fk_painting03.m2", + value = "fk_painting03.m2", + }, + { + fileId = "194840", + text = "fk_painting04.m2", + value = "fk_painting04.m2", + }, + { + fileId = "194841", + text = "fk_painting05.m2", + value = "fk_painting05.m2", + }, + { + fileId = "194843", + text = "fk_plaguebarrel.m2", + value = "fk_plaguebarrel.m2", + }, + { + fileId = "194844", + text = "fk_plaguebarrelbroken01.m2", + value = "fk_plaguebarrelbroken01.m2", + }, + { + fileId = "194845", + text = "fk_plaguebarrelbroken02.m2", + value = "fk_plaguebarrelbroken02.m2", + }, + { + fileId = "194846", + text = "fk_plaguebarrelempty.m2", + value = "fk_plaguebarrelempty.m2", + }, + { + fileId = "194847", + text = "fk_plaguecistern.m2", + value = "fk_plaguecistern.m2", + }, + { + fileId = "194848", + text = "fk_plaguewagon.m2", + value = "fk_plaguewagon.m2", + }, + { + fileId = "194851", + text = "fk_plaguewagon_empty.m2", + value = "fk_plaguewagon_empty.m2", + }, + { + fileId = "466135", + text = "fk_plaguewagon_low.m2", + value = "fk_plaguewagon_low.m2", + }, + { + fileId = "194852", + text = "fk_signpost.m2", + value = "fk_signpost.m2", + }, + { + fileId = "194853", + text = "fk_signpost_sign.m2", + value = "fk_signpost_sign.m2", + }, + { + fileId = "194857", + text = "fk_tent01.m2", + value = "fk_tent01.m2", + }, + { + fileId = "194858", + text = "fk_tent01_ruined.m2", + value = "fk_tent01_ruined.m2", + }, + { + fileId = "194860", + text = "fk_tent02.m2", + value = "fk_tent02.m2", + }, + { + fileId = "194861", + text = "fk_tent02_ruined.m2", + value = "fk_tent02_ruined.m2", + }, + { + fileId = "194862", + text = "fk_tent03.m2", + value = "fk_tent03.m2", + }, + { + fileId = "194863", + text = "fk_tent04.m2", + value = "fk_tent04.m2", + }, + { + fileId = "194864", + text = "fk_tent05.m2", + value = "fk_tent05.m2", + }, + { + fileId = "194865", + text = "fk_wagon01.m2", + value = "fk_wagon01.m2", + }, + { + fileId = "194866", + text = "fk_wagon02.m2", + value = "fk_wagon02.m2", }, }, - text = "lostones", - value = "lostones", + text = "forsaken", + value = "forsaken", }, { children = { { - fileId = "193909", - text = "zangarfallenshroom01.m2", - value = "zangarfallenshroom01.m2", + fileId = "194868", + text = "frostgiant_club01.m2", + value = "frostgiant_club01.m2", }, { - fileId = "193910", - text = "zangarfallenshroom02.m2", - value = "zangarfallenshroom02.m2", + fileId = "194869", + text = "frostgiant_collumn01.m2", + value = "frostgiant_collumn01.m2", }, { - fileId = "193911", - text = "zangarmushroom01.m2", - value = "zangarmushroom01.m2", + fileId = "194870", + text = "frostgiant_collumn02.m2", + value = "frostgiant_collumn02.m2", }, { - fileId = "193912", - text = "zangarmushroom02.m2", - value = "zangarmushroom02.m2", + fileId = "194871", + text = "frostgiant_frostorb01.m2", + value = "frostgiant_frostorb01.m2", }, { - fileId = "193914", - text = "zangarmushroom03.m2", - value = "zangarmushroom03.m2", + fileId = "194872", + text = "frostgiant_frostorbbroken01.m2", + value = "frostgiant_frostorbbroken01.m2", }, { - fileId = "193915", - text = "zangarmushroom04.m2", - value = "zangarmushroom04.m2", + fileId = "194876", + text = "frostgiant_shield01.m2", + value = "frostgiant_shield01.m2", }, { - fileId = "193917", - text = "zangarmushroom05.m2", - value = "zangarmushroom05.m2", + fileId = "194877", + text = "frostgiant_shield02.m2", + value = "frostgiant_shield02.m2", }, { - fileId = "193918", - text = "zangarmushroom06_blue.m2", - value = "zangarmushroom06_blue.m2", + fileId = "194878", + text = "frostgiant_shield03.m2", + value = "frostgiant_shield03.m2", }, { - fileId = "193919", - text = "zangarmushroom06_green.m2", - value = "zangarmushroom06_green.m2", + fileId = "194879", + text = "frostgiant_shield04.m2", + value = "frostgiant_shield04.m2", }, { - fileId = "193920", - text = "zangarmushroom06_orange.m2", - value = "zangarmushroom06_orange.m2", + fileId = "194880", + text = "frostgiant_spear01.m2", + value = "frostgiant_spear01.m2", }, { - fileId = "193921", - text = "zangarmushroom07_blue.m2", - value = "zangarmushroom07_blue.m2", + fileId = "243382", + text = "frostgiant_spear02.m2", + value = "frostgiant_spear02.m2", + }, + }, + text = "frostgiant", + value = "frostgiant", + }, + { + children = { + { + fileId = "194881", + text = "gnome_pipe_01.m2", + value = "gnome_pipe_01.m2", }, { - fileId = "193922", - text = "zangarmushroom07_green.m2", - value = "zangarmushroom07_green.m2", + fileId = "194882", + text = "gnome_pipe_02.m2", + value = "gnome_pipe_02.m2", }, { - fileId = "193923", - text = "zangarmushroom07_orange.m2", - value = "zangarmushroom07_orange.m2", + fileId = "194883", + text = "gnome_pipe_03.m2", + value = "gnome_pipe_03.m2", }, { - fileId = "193924", - text = "zangarmushroomblue.m2", - value = "zangarmushroomblue.m2", + fileId = "194884", + text = "gnome_pipe_04.m2", + value = "gnome_pipe_04.m2", }, { - fileId = "193925", - text = "zangarmushroomgreen.m2", - value = "zangarmushroomgreen.m2", + fileId = "194885", + text = "gnome_pipe_05.m2", + value = "gnome_pipe_05.m2", + }, + { + fileId = "194886", + text = "gnome_pipe_06.m2", + value = "gnome_pipe_06.m2", }, { - fileId = "193926", - text = "zangarmushroompurple.m2", - value = "zangarmushroompurple.m2", + fileId = "194887", + text = "gnome_pipe_08.m2", + value = "gnome_pipe_08.m2", }, { - fileId = "193932", - text = "zangarmushroomshelf01.m2", - value = "zangarmushroomshelf01.m2", + fileId = "194888", + text = "gnome_pipe_09.m2", + value = "gnome_pipe_09.m2", }, { - fileId = "193933", - text = "zangarmushroomshelf02.m2", - value = "zangarmushroomshelf02.m2", + fileId = "367502", + text = "gnome_radiation_bomb_01.m2", + value = "gnome_radiation_bomb_01.m2", }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { { - fileId = "193934", - text = "zangarmushroomshelf03.m2", - value = "zangarmushroomshelf03.m2", + children = { + { + fileId = "194890", + text = "goblinbench01.m2", + value = "goblinbench01.m2", + }, + }, + text = "bench", + value = "bench", }, { - fileId = "193936", - text = "zangarmushroomtree05.m2", - value = "zangarmushroomtree05.m2", + fileId = "243384", + text = "goblin_fuelcell.m2", + value = "goblin_fuelcell.m2", }, { - fileId = "193937", - text = "zangarmushroomtree06.m2", - value = "zangarmushroomtree06.m2", + children = { + { + fileId = "194892", + text = "radiotowerflag01.m2", + value = "radiotowerflag01.m2", + }, + }, + text = "radiotower", + value = "radiotower", }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { { - fileId = "193938", - text = "zangarmushroomtree07.m2", - value = "zangarmushroomtree07.m2", + fileId = "243385", + text = "hanging_strider01.m2", + value = "hanging_strider01.m2", }, + }, + text = "hangingmeat", + value = "hangingmeat", + }, + { + children = { { - fileId = "193940", - text = "zangarmushroomtree08dead.m2", - value = "zangarmushroomtree08dead.m2", + fileId = "243387", + text = "he_ballista_01.m2", + value = "he_ballista_01.m2", }, { - fileId = "193942", - text = "zangarmushroomtree09dying.m2", - value = "zangarmushroomtree09dying.m2", + fileId = "243391", + text = "he_banner_01.m2", + value = "he_banner_01.m2", }, { - fileId = "193944", - text = "zangarmushroomtreesmall01.m2", - value = "zangarmushroomtreesmall01.m2", + fileId = "243392", + text = "he_banner_02.m2", + value = "he_banner_02.m2", }, { - fileId = "193945", - text = "zangarmushroomtreesmall02.m2", - value = "zangarmushroomtreesmall02.m2", + fileId = "243393", + text = "he_banner_03.m2", + value = "he_banner_03.m2", }, { - fileId = "193946", - text = "zangarmushroomtreesmall03.m2", - value = "zangarmushroomtreesmall03.m2", + fileId = "243395", + text = "he_tent_01.m2", + value = "he_tent_01.m2", }, { - fileId = "193947", - text = "zangarmushroomwater01.m2", - value = "zangarmushroomwater01.m2", + fileId = "243396", + text = "he_wagon_01.m2", + value = "he_wagon_01.m2", }, + }, + text = "highelf", + value = "highelf", + }, + { + fileId = "243397", + text = "horde_gunship_deckflakgun.m2", + value = "horde_gunship_deckflakgun.m2", + }, + { + fileId = "243398", + text = "horde_tabard.m2", + value = "horde_tabard.m2", + }, + { + children = { { - fileId = "193948", - text = "zangarmushroomwater02.m2", - value = "zangarmushroomwater02.m2", + children = { + { + fileId = "194893", + text = "nd_human_barrier.m2", + value = "nd_human_barrier.m2", + }, + { + fileId = "194894", + text = "nd_human_barrier_end.m2", + value = "nd_human_barrier_end.m2", + }, + }, + text = "barriers", + value = "barriers", }, { - fileId = "193949", - text = "zangarmushroomwater03.m2", - value = "zangarmushroomwater03.m2", + children = { + { + fileId = "194896", + text = "cuckooclock_01.m2", + value = "cuckooclock_01.m2", + }, + { + fileId = "194899", + text = "grandfather_clock_01.m2", + value = "grandfather_clock_01.m2", + }, + }, + text = "clocks", + value = "clocks", }, { - fileId = "193950", - text = "zangartreesmallblue.m2", - value = "zangartreesmallblue.m2", + children = { + { + fileId = "194900", + text = "crategrainnormal_01.m2", + value = "crategrainnormal_01.m2", + }, + { + fileId = "194901", + text = "crategrainplagued_01.m2", + value = "crategrainplagued_01.m2", + }, + }, + text = "crates", + value = "crates", }, { - fileId = "193951", - text = "zangartreesmallblue01.m2", - value = "zangartreesmallblue01.m2", + children = { + { + fileId = "194903", + text = "hu_fence01_northrend.m2", + value = "hu_fence01_northrend.m2", + }, + { + fileId = "194904", + text = "hu_fence02_northrend.m2", + value = "hu_fence02_northrend.m2", + }, + { + fileId = "194905", + text = "hu_fence03_northrend.m2", + value = "hu_fence03_northrend.m2", + }, + { + fileId = "194906", + text = "hu_fence04_northrend.m2", + value = "hu_fence04_northrend.m2", + }, + { + fileId = "194907", + text = "hu_fence05_northrend.m2", + value = "hu_fence05_northrend.m2", + }, + { + fileId = "194908", + text = "hu_fence06_northrend.m2", + value = "hu_fence06_northrend.m2", + }, + { + fileId = "194909", + text = "hu_fencepost_northrend.m2", + value = "hu_fencepost_northrend.m2", + }, + }, + text = "fence", + value = "fence", }, { - fileId = "193952", - text = "zangartreesmallgreen.m2", - value = "zangartreesmallgreen.m2", + children = { + { + fileId = "194912", + text = "alliance_banner_01.m2", + value = "alliance_banner_01.m2", + }, + }, + text = "flags", + value = "flags", }, { - fileId = "193953", - text = "zangartreesmallgreen01.m2", - value = "zangartreesmallgreen01.m2", + fileId = "194913", + text = "hu_brick_pile01.m2", + value = "hu_brick_pile01.m2", }, { - fileId = "193954", - text = "zangartreesmallpurple.m2", - value = "zangartreesmallpurple.m2", + fileId = "194914", + text = "hu_brick_pile02.m2", + value = "hu_brick_pile02.m2", }, { - fileId = "193955", - text = "zangartreesmallpurple01.m2", - value = "zangartreesmallpurple01.m2", + fileId = "194919", + text = "hu_crane_dock.m2", + value = "hu_crane_dock.m2", }, - }, - text = "mushroom", - value = "mushroom", - }, - { - children = { { - fileId = "193956", - text = "mushroombase_beacon.m2", - value = "mushroombase_beacon.m2", + fileId = "194920", + text = "hu_crane_woodpile.m2", + value = "hu_crane_woodpile.m2", }, { - fileId = "193957", - text = "mushroombase_bottom.m2", - value = "mushroombase_bottom.m2", + fileId = "194921", + text = "hu_dock_destruction_piling.m2", + value = "hu_dock_destruction_piling.m2", }, { - fileId = "193958", - text = "mushroombase_elevator.m2", - value = "mushroombase_elevator.m2", + fileId = "194923", + text = "hu_jail_door_01.m2", + value = "hu_jail_door_01.m2", }, - }, - text = "mushroombase", - value = "mushroombase", - }, - { - children = { { - fileId = "193962", - text = "zangarbushwithered01.m2", - value = "zangarbushwithered01.m2", + fileId = "194924", + text = "hu_justice_flags_01.m2", + value = "hu_justice_flags_01.m2", }, { - fileId = "193963", - text = "zangarbushwithered02.m2", - value = "zangarbushwithered02.m2", + fileId = "194925", + text = "hu_justice_flags_02.m2", + value = "hu_justice_flags_02.m2", }, { - fileId = "193970", - text = "zangarmushroomtree01.m2", - value = "zangarmushroomtree01.m2", + fileId = "194926", + text = "hu_justice_flags_03.m2", + value = "hu_justice_flags_03.m2", }, { - fileId = "193971", - text = "zangarmushroomtree02.m2", - value = "zangarmushroomtree02.m2", + fileId = "194927", + text = "hu_justice_flags_04.m2", + value = "hu_justice_flags_04.m2", }, { - fileId = "193972", - text = "zangarmushroomtree03.m2", - value = "zangarmushroomtree03.m2", + fileId = "194928", + text = "hu_justice_flags_05.m2", + value = "hu_justice_flags_05.m2", }, { - fileId = "193973", - text = "zangarmushroomtree04.m2", - value = "zangarmushroomtree04.m2", + fileId = "194929", + text = "hu_justice_flags_06.m2", + value = "hu_justice_flags_06.m2", }, { - fileId = "193978", - text = "zangartreeblue01.m2", - value = "zangartreeblue01.m2", + fileId = "194930", + text = "hu_justice_flags_08.m2", + value = "hu_justice_flags_08.m2", }, { - fileId = "193979", - text = "zangartreeblue02.m2", - value = "zangartreeblue02.m2", + fileId = "194933", + text = "hu_piling.m2", + value = "hu_piling.m2", }, { - fileId = "193980", - text = "zangartreeblue03.m2", - value = "zangartreeblue03.m2", + fileId = "194934", + text = "hu_portcullis.m2", + value = "hu_portcullis.m2", }, { - fileId = "193981", - text = "zangartreeblue04.m2", - value = "zangartreeblue04.m2", + fileId = "194935", + text = "hu_pulley.m2", + value = "hu_pulley.m2", }, { - fileId = "193982", - text = "zangartreegreen01.m2", - value = "zangartreegreen01.m2", + fileId = "194936", + text = "hu_pulley_crates.m2", + value = "hu_pulley_crates.m2", }, { - fileId = "193983", - text = "zangartreegreen02.m2", - value = "zangartreegreen02.m2", + fileId = "194937", + text = "hu_rope01.m2", + value = "hu_rope01.m2", }, { - fileId = "193984", - text = "zangartreegreen03.m2", - value = "zangartreegreen03.m2", + fileId = "194938", + text = "hu_scaffolding.m2", + value = "hu_scaffolding.m2", }, { - fileId = "193985", - text = "zangartreegreen04.m2", - value = "zangartreegreen04.m2", + fileId = "194939", + text = "hu_scaffolding02.m2", + value = "hu_scaffolding02.m2", }, { - fileId = "193986", - text = "zangartreepurple01.m2", - value = "zangartreepurple01.m2", + fileId = "194940", + text = "hu_scaffolding03.m2", + value = "hu_scaffolding03.m2", }, { - fileId = "193987", - text = "zangartreepurple02.m2", - value = "zangartreepurple02.m2", + fileId = "194941", + text = "hu_scaffolding04.m2", + value = "hu_scaffolding04.m2", }, { - fileId = "193988", - text = "zangartreepurple03.m2", - value = "zangartreepurple03.m2", + fileId = "194942", + text = "hu_tarp_boxes.m2", + value = "hu_tarp_boxes.m2", }, { - fileId = "193989", - text = "zangartreepurple04.m2", - value = "zangartreepurple04.m2", + children = { + { + fileId = "194949", + text = "hu_lamp_northrend.m2", + value = "hu_lamp_northrend.m2", + }, + }, + text = "lamp", + value = "lamp", }, { - fileId = "193990", - text = "zangartreewithered01.m2", - value = "zangartreewithered01.m2", + children = { + { + fileId = "194951", + text = "hu_lamp_arm_northrend.m2", + value = "hu_lamp_arm_northrend.m2", + }, + { + fileId = "194952", + text = "hu_lamppost_northrend.m2", + value = "hu_lamppost_northrend.m2", + }, + }, + text = "lamppost", + value = "lamppost", }, { - fileId = "193991", - text = "zangartreewithered02.m2", - value = "zangartreewithered02.m2", + fileId = "317602", + text = "nd_human_gate_closed_collision.m2", + value = "nd_human_gate_closed_collision.m2", }, { - fileId = "193992", - text = "zangartreewithered03.m2", - value = "zangartreewithered03.m2", + fileId = "307074", + text = "nd_human_gate_closedfx.m2", + value = "nd_human_gate_closedfx.m2", }, { - fileId = "193993", - text = "zangartreewithered04.m2", - value = "zangartreewithered04.m2", + fileId = "311950", + text = "nd_human_gate_closedfx_door.m2", + value = "nd_human_gate_closedfx_door.m2", }, { - fileId = "193994", - text = "zangartreewithered05.m2", - value = "zangartreewithered05.m2", + fileId = "194953", + text = "nd_human_wall_damagedfx.m2", + value = "nd_human_wall_damagedfx.m2", }, - }, - text = "mushroomtrees", - value = "mushroomtrees", - }, - { - children = { { - fileId = "193995", - text = "zangarplantgroup01.m2", - value = "zangarplantgroup01.m2", + fileId = "194954", + text = "nd_human_wall_end_damagedfx.m2", + value = "nd_human_wall_end_damagedfx.m2", }, { - fileId = "193996", - text = "zangarplantgroup02.m2", - value = "zangarplantgroup02.m2", + fileId = "243399", + text = "nd_human_wall_end_small_damagedfx02.m2", + value = "nd_human_wall_end_small_damagedfx02.m2", }, { - fileId = "193997", - text = "zangarplantgroup03.m2", - value = "zangarplantgroup03.m2", + fileId = "243400", + text = "nd_human_wall_small_damagedfx02.m2", + value = "nd_human_wall_small_damagedfx02.m2", }, { - fileId = "193998", - text = "zangarplantgroup04.m2", - value = "zangarplantgroup04.m2", + children = { + { + children = { + { + fileId = "194957", + text = "hu_humanladder.m2", + value = "hu_humanladder.m2", + }, + }, + text = "final", + value = "final", + }, + }, + text = "northrend_humanladder", + value = "northrend_humanladder", }, { - fileId = "193999", - text = "zangarplantgroup05.m2", - value = "zangarplantgroup05.m2", + children = { + { + fileId = "194959", + text = "hu_signpost_northrend.m2", + value = "hu_signpost_northrend.m2", + }, + { + fileId = "194960", + text = "hu_signpost_sign_northrend.m2", + value = "hu_signpost_sign_northrend.m2", + }, + }, + text = "signpost", + value = "signpost", }, - }, - text = "plantgroups", - value = "plantgroups", - }, - { - children = { { - fileId = "194001", - text = "zm_bluepollen.m2", - value = "zm_bluepollen.m2", + children = { + { + fileId = "194961", + text = "hu_tent01.m2", + value = "hu_tent01.m2", + }, + { + fileId = "194962", + text = "hu_tent02.m2", + value = "hu_tent02.m2", + }, + }, + text = "tents", + value = "tents", }, { - fileId = "194002", - text = "zm_orangepollen.m2", - value = "zm_orangepollen.m2", + children = { + { + fileId = "194965", + text = "northrendtorch_01.m2", + value = "northrendtorch_01.m2", + }, + { + fileId = "194966", + text = "northrendtorch_01blue.m2", + value = "northrendtorch_01blue.m2", + }, + }, + text = "torch", + value = "torch", }, }, - text = "pollen", - value = "pollen", + text = "human", + value = "human", }, { children = { { - fileId = "194003", - text = "zangarwalkway01.m2", - value = "zangarwalkway01.m2", - }, - { - fileId = "194004", - text = "zangarwalkway02.m2", - value = "zangarwalkway02.m2", - }, - { - fileId = "194005", - text = "zangarwalkway03.m2", - value = "zangarwalkway03.m2", + fileId = "243402", + text = "inscription_inkbottle_black01.m2", + value = "inscription_inkbottle_black01.m2", }, { - fileId = "194006", - text = "zangarwalkway_board.m2", - value = "zangarwalkway_board.m2", + fileId = "243403", + text = "inscription_inkbottle_black02.m2", + value = "inscription_inkbottle_black02.m2", }, { - fileId = "194007", - text = "zangarwalkway_pole.m2", - value = "zangarwalkway_pole.m2", + fileId = "243404", + text = "inscription_inkbottle_black03.m2", + value = "inscription_inkbottle_black03.m2", }, { - fileId = "194008", - text = "zangarwalkway_wide01.m2", - value = "zangarwalkway_wide01.m2", + fileId = "243405", + text = "inscription_inkbottle_black04.m2", + value = "inscription_inkbottle_black04.m2", }, { - fileId = "194009", - text = "zangarwalkway_wide02.m2", - value = "zangarwalkway_wide02.m2", + fileId = "243406", + text = "inscription_inkbottle_black05.m2", + value = "inscription_inkbottle_black05.m2", }, { - fileId = "194010", - text = "zangarwalkway_wide03.m2", - value = "zangarwalkway_wide03.m2", + fileId = "243407", + text = "inscription_inkbottle_blue01.m2", + value = "inscription_inkbottle_blue01.m2", }, { - fileId = "194011", - text = "zangarwalkway_wide04.m2", - value = "zangarwalkway_wide04.m2", + fileId = "243408", + text = "inscription_inkbottle_blue02.m2", + value = "inscription_inkbottle_blue02.m2", }, { - fileId = "194012", - text = "zangarwalkwayend01.m2", - value = "zangarwalkwayend01.m2", + fileId = "243409", + text = "inscription_inkbottle_blue03.m2", + value = "inscription_inkbottle_blue03.m2", }, { - fileId = "194013", - text = "zangarwalkwayend02.m2", - value = "zangarwalkwayend02.m2", + fileId = "243410", + text = "inscription_inkbottle_gold01.m2", + value = "inscription_inkbottle_gold01.m2", }, - }, - text = "road", - value = "road", - }, - { - children = { { - fileId = "194015", - text = "dirtmound_zangar.m2", - value = "dirtmound_zangar.m2", + fileId = "243411", + text = "inscription_inkbottle_green01.m2", + value = "inscription_inkbottle_green01.m2", }, { - fileId = "194017", - text = "zangar_floatingsmall01.m2", - value = "zangar_floatingsmall01.m2", + fileId = "243412", + text = "inscription_inkbottle_green02.m2", + value = "inscription_inkbottle_green02.m2", }, { - fileId = "194018", - text = "zangar_floatingsmall02.m2", - value = "zangar_floatingsmall02.m2", + fileId = "243413", + text = "inscription_inkbottle_green03.m2", + value = "inscription_inkbottle_green03.m2", }, { - fileId = "194019", - text = "zangar_overhangrock_large_01.m2", - value = "zangar_overhangrock_large_01.m2", + fileId = "243414", + text = "inscription_inkbottle_green04.m2", + value = "inscription_inkbottle_green04.m2", }, { - fileId = "194020", - text = "zangar_overhangrock_large_02.m2", - value = "zangar_overhangrock_large_02.m2", + fileId = "243415", + text = "inscription_inkbottle_iron01.m2", + value = "inscription_inkbottle_iron01.m2", }, { - fileId = "194021", - text = "zangar_overhangrock_small_01.m2", - value = "zangar_overhangrock_small_01.m2", + fileId = "243416", + text = "inscription_inkbottle_purple01.m2", + value = "inscription_inkbottle_purple01.m2", }, { - fileId = "194022", - text = "zangar_overhangrock_small_02.m2", - value = "zangar_overhangrock_small_02.m2", + fileId = "243417", + text = "inscription_inkbottle_purple02.m2", + value = "inscription_inkbottle_purple02.m2", }, { - fileId = "194023", - text = "zangar_overhangrock_small_03.m2", - value = "zangar_overhangrock_small_03.m2", + fileId = "243418", + text = "inscription_inkbottle_purple03.m2", + value = "inscription_inkbottle_purple03.m2", }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { { - fileId = "194025", - text = "zangarsignpost01.m2", - value = "zangarsignpost01.m2", + fileId = "243419", + text = "inscription_inkbottle_red01.m2", + value = "inscription_inkbottle_red01.m2", }, { - fileId = "194026", - text = "zangarsignpostpointer01.m2", - value = "zangarsignpostpointer01.m2", + fileId = "243420", + text = "inscription_inkbottle_red02.m2", + value = "inscription_inkbottle_red02.m2", }, - }, - text = "signposts", - value = "signposts", - }, - { - children = { { - fileId = "194028", - text = "zangarshroomstump01.m2", - value = "zangarshroomstump01.m2", + fileId = "243421", + text = "inscription_inkbottle_red03.m2", + value = "inscription_inkbottle_red03.m2", }, { - fileId = "194030", - text = "zangarshroomstump02.m2", - value = "zangarshroomstump02.m2", + fileId = "243422", + text = "inscription_inkbottle_red04.m2", + value = "inscription_inkbottle_red04.m2", }, { - fileId = "194032", - text = "zangarshroomstump03.m2", - value = "zangarshroomstump03.m2", + fileId = "243423", + text = "inscription_inkbottle_silver01.m2", + value = "inscription_inkbottle_silver01.m2", }, - }, - text = "stump", - value = "stump", - }, - }, - text = "zangar", - value = "zangar", - }, - { - children = { - { - children = { { - fileId = "194044", - text = "zulaman_entrancegate.m2", - value = "zulaman_entrancegate.m2", + fileId = "243425", + text = "inscription_quill01.m2", + value = "inscription_quill01.m2", }, { - fileId = "194045", - text = "zulaman_firedoor.m2", - value = "zulaman_firedoor.m2", + fileId = "243426", + text = "inscription_quill02.m2", + value = "inscription_quill02.m2", }, { - fileId = "194046", - text = "zulaman_lynxgate.m2", - value = "zulaman_lynxgate.m2", + fileId = "243427", + text = "inscription_quill03.m2", + value = "inscription_quill03.m2", }, { - fileId = "194047", - text = "zulaman_torchfire.m2", - value = "zulaman_torchfire.m2", + fileId = "243428", + text = "inscription_quill04.m2", + value = "inscription_quill04.m2", }, { - fileId = "194048", - text = "zulaman_winddoor.m2", - value = "zulaman_winddoor.m2", + fileId = "243429", + text = "inscription_quill_frosty.m2", + value = "inscription_quill_frosty.m2", }, - }, - text = "doors", - value = "doors", - }, - { - children = { { - fileId = "194050", - text = "foresttrolldungeonfountain.m2", - value = "foresttrolldungeonfountain.m2", + fileId = "243430", + text = "inscription_quill_phoenix.m2", + value = "inscription_quill_phoenix.m2", }, - }, - text = "fountain", - value = "fountain", - }, - { - children = { { - fileId = "194052", - text = "eaglegargoyle.m2", - value = "eaglegargoyle.m2", + fileId = "243431", + text = "inscription_quillostrich01.m2", + value = "inscription_quillostrich01.m2", }, - }, - text = "gargoyle", - value = "gargoyle", - }, - { - children = { { - fileId = "194054", - text = "foresttrolldungeongong.m2", - value = "foresttrolldungeongong.m2", + fileId = "243432", + text = "inscription_quillpeacock01.m2", + value = "inscription_quillpeacock01.m2", }, - }, - text = "gong", - value = "gong", - }, - { - children = { { - fileId = "194057", - text = "trollruins_zulaman_01.m2", - value = "trollruins_zulaman_01.m2", + fileId = "243435", + text = "inscription_scroll_boxside.m2", + value = "inscription_scroll_boxside.m2", }, { - fileId = "194058", - text = "trollruins_zulaman_02.m2", - value = "trollruins_zulaman_02.m2", + fileId = "243436", + text = "inscription_scroll_boxup.m2", + value = "inscription_scroll_boxup.m2", }, { - fileId = "194059", - text = "trollruins_zulaman_03.m2", - value = "trollruins_zulaman_03.m2", + fileId = "243437", + text = "inscription_scroll_rolledblank.m2", + value = "inscription_scroll_rolledblank.m2", }, { - fileId = "194060", - text = "trollruins_zulaman_04.m2", - value = "trollruins_zulaman_04.m2", + fileId = "243438", + text = "inscription_scroll_rolledblue.m2", + value = "inscription_scroll_rolledblue.m2", }, { - fileId = "194061", - text = "trollruins_zulaman_05.m2", - value = "trollruins_zulaman_05.m2", + fileId = "243439", + text = "inscription_scroll_rolledgreen.m2", + value = "inscription_scroll_rolledgreen.m2", }, { - fileId = "194062", - text = "trollruins_zulaman_06.m2", - value = "trollruins_zulaman_06.m2", + fileId = "243440", + text = "inscription_scroll_rolledpin01.m2", + value = "inscription_scroll_rolledpin01.m2", }, { - fileId = "194063", - text = "trollruins_zulaman_07.m2", - value = "trollruins_zulaman_07.m2", + fileId = "243441", + text = "inscription_scroll_rolledpin02.m2", + value = "inscription_scroll_rolledpin02.m2", }, { - fileId = "194064", - text = "trollruins_zulaman_08.m2", - value = "trollruins_zulaman_08.m2", + fileId = "243442", + text = "inscription_scroll_rolledpin03.m2", + value = "inscription_scroll_rolledpin03.m2", }, { - fileId = "194065", - text = "trollruins_zulaman_09.m2", - value = "trollruins_zulaman_09.m2", + fileId = "243443", + text = "inscription_scroll_rolledpin04.m2", + value = "inscription_scroll_rolledpin04.m2", }, { - fileId = "194066", - text = "trollruins_zulaman_10.m2", - value = "trollruins_zulaman_10.m2", + fileId = "243444", + text = "inscription_scroll_rolledpindouble01.m2", + value = "inscription_scroll_rolledpindouble01.m2", }, { - fileId = "194067", - text = "trollruins_zulaman_11.m2", - value = "trollruins_zulaman_11.m2", + fileId = "243445", + text = "inscription_scroll_rolledpurple.m2", + value = "inscription_scroll_rolledpurple.m2", }, { - fileId = "194068", - text = "trollruins_zulaman_12.m2", - value = "trollruins_zulaman_12.m2", + fileId = "243446", + text = "inscription_scroll_rolledred.m2", + value = "inscription_scroll_rolledred.m2", }, { - fileId = "194069", - text = "trollruins_zulaman_14.m2", - value = "trollruins_zulaman_14.m2", + fileId = "243447", + text = "inscription_scroll_sealed01.m2", + value = "inscription_scroll_sealed01.m2", }, { - fileId = "194070", - text = "trollruins_zulaman_15.m2", - value = "trollruins_zulaman_15.m2", + fileId = "243448", + text = "inscription_scroll_sealed02.m2", + value = "inscription_scroll_sealed02.m2", }, { - fileId = "194071", - text = "trollruins_zulaman_16.m2", - value = "trollruins_zulaman_16.m2", + fileId = "243449", + text = "inscription_scroll_sealed03.m2", + value = "inscription_scroll_sealed03.m2", }, { - fileId = "194072", - text = "trollruins_zulaman_17.m2", - value = "trollruins_zulaman_17.m2", + fileId = "243450", + text = "inscription_scroll_sealed04.m2", + value = "inscription_scroll_sealed04.m2", }, + }, + text = "inscription", + value = "inscription", + }, + { + children = { { - fileId = "194073", - text = "trollruins_zulaman_18.m2", - value = "trollruins_zulaman_18.m2", + fileId = "194971", + text = "id_anvil.m2", + value = "id_anvil.m2", }, { - fileId = "194074", - text = "trollruins_zulaman_20.m2", - value = "trollruins_zulaman_20.m2", + fileId = "194973", + text = "id_banner1.m2", + value = "id_banner1.m2", }, { - fileId = "194075", - text = "trollruins_zulaman_21.m2", - value = "trollruins_zulaman_21.m2", + fileId = "194974", + text = "id_banner2.m2", + value = "id_banner2.m2", }, - }, - text = "ruins", - value = "ruins", - }, - { - children = { { - fileId = "194083", - text = "eaglestatue01.m2", - value = "eaglestatue01.m2", + fileId = "194975", + text = "id_barrel.m2", + value = "id_barrel.m2", }, - }, - text = "statues", - value = "statues", - }, - { - children = { { - fileId = "194086", - text = "foresttrolltablet.m2", - value = "foresttrolltablet.m2", + fileId = "194977", + text = "id_bed1.m2", + value = "id_bed1.m2", }, - }, - text = "tablet", - value = "tablet", - }, - { - children = { { - fileId = "194087", - text = "eaglethrone01.m2", - value = "eaglethrone01.m2", + fileId = "194978", + text = "id_bed2.m2", + value = "id_bed2.m2", }, - }, - text = "throne", - value = "throne", - }, - { - children = { { - fileId = "194088", - text = "trollskulltiki.m2", - value = "trollskulltiki.m2", + fileId = "194979", + text = "id_bed3.m2", + value = "id_bed3.m2", }, - }, - text = "tiki", - value = "tiki", - }, - { - children = { { - fileId = "194097", - text = "zulamantree01.m2", - value = "zulamantree01.m2", + fileId = "194980", + text = "id_benchsimple.m2", + value = "id_benchsimple.m2", }, { - fileId = "194098", - text = "zulamantree02.m2", - value = "zulamantree02.m2", + fileId = "194982", + text = "id_cage.m2", + value = "id_cage.m2", }, { - fileId = "194099", - text = "zulamantree03.m2", - value = "zulamantree03.m2", + fileId = "194983", + text = "id_chairmedium.m2", + value = "id_chairmedium.m2", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "194100", - text = "foresttrolldungeonbasinwall.m2", - value = "foresttrolldungeonbasinwall.m2", + fileId = "194984", + text = "id_chairmedium_broken.m2", + value = "id_chairmedium_broken.m2", }, - }, - text = "wall", - value = "wall", - }, - { - children = { { - fileId = "194105", - text = "zulamanwaterfalls.m2", - value = "zulamanwaterfalls.m2", - }, - }, - text = "waterfalls", - value = "waterfalls", - }, - }, - text = "zulaman", - value = "zulaman", - }, - }, - text = "doodads", - value = "doodads", - }, - }, - text = "expansion01", - value = "expansion01", - }, - { - children = { - { - children = { - { - children = { - { - children = { + fileId = "194986", + text = "id_chairsmall.m2", + value = "id_chairsmall.m2", + }, { - fileId = "242735", - text = "azjol_arch_a.m2", - value = "azjol_arch_a.m2", + fileId = "194987", + text = "id_chairsmall_broken.m2", + value = "id_chairsmall_broken.m2", }, { - fileId = "242736", - text = "azjol_arch_a_closed.m2", - value = "azjol_arch_a_closed.m2", + fileId = "194988", + text = "id_chairthrone.m2", + value = "id_chairthrone.m2", }, { - fileId = "242737", - text = "azjol_arch_b.m2", - value = "azjol_arch_b.m2", + fileId = "194989", + text = "id_chandelier-off.m2", + value = "id_chandelier-off.m2", }, { - fileId = "242738", - text = "azjol_arch_b_closed.m2", - value = "azjol_arch_b_closed.m2", + fileId = "194990", + text = "id_chandelier.m2", + value = "id_chandelier.m2", }, { - fileId = "242739", - text = "azjol_arch_corner.m2", - value = "azjol_arch_corner.m2", + fileId = "194991", + text = "id_cliff_facade01.m2", + value = "id_cliff_facade01.m2", }, { - fileId = "242740", - text = "azjol_arch_corner_b.m2", - value = "azjol_arch_corner_b.m2", + fileId = "194992", + text = "id_cliff_facade02.m2", + value = "id_cliff_facade02.m2", }, { - fileId = "242741", - text = "azjol_arch_corner_b_closed.m2", - value = "azjol_arch_corner_b_closed.m2", + fileId = "194994", + text = "id_crate.m2", + value = "id_crate.m2", }, { - fileId = "242742", - text = "azjol_arch_corner_closed.m2", - value = "azjol_arch_corner_closed.m2", + fileId = "194995", + text = "id_crate2.m2", + value = "id_crate2.m2", }, { - fileId = "194106", - text = "azjol_bigarchhalf01.m2", - value = "azjol_bigarchhalf01.m2", + fileId = "194996", + text = "id_crate3.m2", + value = "id_crate3.m2", }, { - fileId = "194107", - text = "azjol_spiderarch01.m2", - value = "azjol_spiderarch01.m2", + fileId = "194997", + text = "id_crate4.m2", + value = "id_crate4.m2", }, { - fileId = "242743", - text = "azjol_wall_arch.m2", - value = "azjol_wall_arch.m2", + fileId = "194999", + text = "id_elevator.m2", + value = "id_elevator.m2", }, { - fileId = "242744", - text = "azjol_wall_arch_closed.m2", - value = "azjol_wall_arch_closed.m2", + fileId = "195000", + text = "id_fencepost01.m2", + value = "id_fencepost01.m2", }, { - fileId = "242745", - text = "azjol_wall_arch_window.m2", - value = "azjol_wall_arch_window.m2", + fileId = "195001", + text = "id_fencepost02.m2", + value = "id_fencepost02.m2", }, - }, - text = "arches", - value = "arches", - }, - { - fileId = "194108", - text = "azjol_arch01.m2", - value = "azjol_arch01.m2", - }, - { - fileId = "194109", - text = "azjol_arch02.m2", - value = "azjol_arch02.m2", - }, - { - fileId = "242749", - text = "azjol_banner_01.m2", - value = "azjol_banner_01.m2", - }, - { - fileId = "242751", - text = "azjol_banner_02.m2", - value = "azjol_banner_02.m2", - }, - { - fileId = "242753", - text = "azjol_banner_03.m2", - value = "azjol_banner_03.m2", - }, - { - fileId = "242755", - text = "azjol_banner_04.m2", - value = "azjol_banner_04.m2", - }, - { - fileId = "242756", - text = "azjol_banner_05.m2", - value = "azjol_banner_05.m2", - }, - { - fileId = "242757", - text = "azjol_brazier_01.m2", - value = "azjol_brazier_01.m2", - }, - { - fileId = "242758", - text = "azjol_brazier_02.m2", - value = "azjol_brazier_02.m2", - }, - { - fileId = "242759", - text = "azjol_brazier_03.m2", - value = "azjol_brazier_03.m2", - }, - { - fileId = "242760", - text = "azjol_brazier_04.m2", - value = "azjol_brazier_04.m2", - }, - { - fileId = "242761", - text = "azjol_brazier_05.m2", - value = "azjol_brazier_05.m2", - }, - { - fileId = "242762", - text = "azjol_brazier_06.m2", - value = "azjol_brazier_06.m2", - }, - { - fileId = "242764", - text = "azjol_chandelier_01.m2", - value = "azjol_chandelier_01.m2", - }, - { - fileId = "242765", - text = "azjol_chandelier_02.m2", - value = "azjol_chandelier_02.m2", - }, - { - fileId = "242766", - text = "azjol_circleplatform01.m2", - value = "azjol_circleplatform01.m2", - }, - { - fileId = "242767", - text = "azjol_circleplatform02.m2", - value = "azjol_circleplatform02.m2", - }, - { - fileId = "194110", - text = "azjol_cliff01.m2", - value = "azjol_cliff01.m2", - }, - { - fileId = "194111", - text = "azjol_cliff02.m2", - value = "azjol_cliff02.m2", - }, - { - fileId = "194112", - text = "azjol_cliff03.m2", - value = "azjol_cliff03.m2", - }, - { - fileId = "194113", - text = "azjol_cliff04.m2", - value = "azjol_cliff04.m2", - }, - { - fileId = "242768", - text = "azjol_console_01.m2", - value = "azjol_console_01.m2", - }, - { - fileId = "242770", - text = "azjol_door_boss_01.m2", - value = "azjol_door_boss_01.m2", - }, - { - fileId = "242771", - text = "azjol_door_boss_02.m2", - value = "azjol_door_boss_02.m2", - }, - { - fileId = "242772", - text = "azjol_door_boss_03.m2", - value = "azjol_door_boss_03.m2", - }, - { - fileId = "242773", - text = "azjol_door_large_01.m2", - value = "azjol_door_large_01.m2", - }, - { - fileId = "242774", - text = "azjol_door_small_01.m2", - value = "azjol_door_small_01.m2", - }, - { - fileId = "242775", - text = "azjol_ghostbats_01.m2", - value = "azjol_ghostbats_01.m2", - }, - { - fileId = "242776", - text = "azjol_giantmushroom01.m2", - value = "azjol_giantmushroom01.m2", - }, - { - fileId = "242777", - text = "azjol_giantmushroom02.m2", - value = "azjol_giantmushroom02.m2", - }, - { - fileId = "242778", - text = "azjol_giantmushroom03.m2", - value = "azjol_giantmushroom03.m2", - }, - { - fileId = "242780", - text = "azjol_glow_worms_01.m2", - value = "azjol_glow_worms_01.m2", - }, - { - fileId = "242791", - text = "azjol_mushroom04.m2", - value = "azjol_mushroom04.m2", - }, - { - fileId = "242792", - text = "azjol_mushroom05.m2", - value = "azjol_mushroom05.m2", - }, - { - fileId = "242793", - text = "azjol_mushroom06.m2", - value = "azjol_mushroom06.m2", - }, - { - fileId = "242794", - text = "azjol_ornatespider.m2", - value = "azjol_ornatespider.m2", - }, - { - fileId = "242795", - text = "azjol_ornatespike.m2", - value = "azjol_ornatespike.m2", - }, - { - fileId = "242796", - text = "azjol_platform01.m2", - value = "azjol_platform01.m2", - }, - { - fileId = "242797", - text = "azjol_platform_bottom_01.m2", - value = "azjol_platform_bottom_01.m2", - }, - { - fileId = "242798", - text = "azjol_platform_fx_01.m2", - value = "azjol_platform_fx_01.m2", - }, - { - fileId = "242799", - text = "azjol_platform_top_01.m2", - value = "azjol_platform_top_01.m2", - }, - { - fileId = "194114", - text = "azjol_roof.m2", - value = "azjol_roof.m2", - }, - { - fileId = "242801", - text = "azjol_sarcophagus_01.m2", - value = "azjol_sarcophagus_01.m2", - }, - { - fileId = "242802", - text = "azjol_sconce_01.m2", - value = "azjol_sconce_01.m2", - }, - { - fileId = "242803", - text = "azjol_sconce_02.m2", - value = "azjol_sconce_02.m2", - }, - { - fileId = "242804", - text = "azjol_sconce_03.m2", - value = "azjol_sconce_03.m2", - }, - { - fileId = "242805", - text = "azjol_sconce_04.m2", - value = "azjol_sconce_04.m2", - }, - { - fileId = "242806", - text = "azjol_sconce_05.m2", - value = "azjol_sconce_05.m2", - }, - { - fileId = "242807", - text = "azjol_sconce_06.m2", - value = "azjol_sconce_06.m2", - }, - { - fileId = "242809", - text = "azjol_shelfmushroom_02.m2", - value = "azjol_shelfmushroom_02.m2", - }, - { - fileId = "242813", - text = "azjol_shelfmushroom_04.m2", - value = "azjol_shelfmushroom_04.m2", - }, - { - fileId = "242814", - text = "azjol_shelfmushroom_05.m2", - value = "azjol_shelfmushroom_05.m2", - }, - { - fileId = "242815", - text = "azjol_shelfmushroom_06.m2", - value = "azjol_shelfmushroom_06.m2", - }, - { - fileId = "194115", - text = "azjol_spiderfinger01.m2", - value = "azjol_spiderfinger01.m2", - }, - { - fileId = "242816", - text = "azjol_spiderleg01.m2", - value = "azjol_spiderleg01.m2", - }, - { - fileId = "242817", - text = "azjol_spiderleg02.m2", - value = "azjol_spiderleg02.m2", - }, - { - fileId = "194116", - text = "azjol_spike01.m2", - value = "azjol_spike01.m2", - }, - { - fileId = "242819", - text = "azjol_statue_01.m2", - value = "azjol_statue_01.m2", - }, - { - fileId = "242820", - text = "azjol_statue_02.m2", - value = "azjol_statue_02.m2", - }, - { - fileId = "242821", - text = "azjol_vase_01.m2", - value = "azjol_vase_01.m2", - }, - { - fileId = "242822", - text = "azjol_vase_02.m2", - value = "azjol_vase_02.m2", - }, - { - fileId = "242824", - text = "azjol_water_pool_01.m2", - value = "azjol_water_pool_01.m2", - }, - { - fileId = "242826", - text = "azjol_water_pool_02.m2", - value = "azjol_water_pool_02.m2", - }, - { - fileId = "194117", - text = "azjol_web_01.m2", - value = "azjol_web_01.m2", - }, - { - fileId = "194118", - text = "azjol_web_02.m2", - value = "azjol_web_02.m2", - }, - { - fileId = "242830", - text = "azjol_web_rope_angled_01.m2", - value = "azjol_web_rope_angled_01.m2", - }, - { - fileId = "242831", - text = "azjol_web_rope_angled_02.m2", - value = "azjol_web_rope_angled_02.m2", - }, - { - fileId = "242832", - text = "azjol_web_rope_angled_03.m2", - value = "azjol_web_rope_angled_03.m2", - }, - { - fileId = "242833", - text = "azjol_web_rope_looped_01.m2", - value = "azjol_web_rope_looped_01.m2", - }, - { - fileId = "242834", - text = "azjol_web_rope_looped_02.m2", - value = "azjol_web_rope_looped_02.m2", - }, - { - fileId = "242835", - text = "azjol_web_rope_looped_03.m2", - value = "azjol_web_rope_looped_03.m2", - }, - { - fileId = "242836", - text = "azjol_web_rope_looped_04.m2", - value = "azjol_web_rope_looped_04.m2", - }, - { - fileId = "242837", - text = "azjol_web_rope_straight_01.m2", - value = "azjol_web_rope_straight_01.m2", - }, - { - fileId = "242838", - text = "azjol_web_rope_straight_02.m2", - value = "azjol_web_rope_straight_02.m2", - }, - { - fileId = "242839", - text = "azjol_web_rope_straight_03.m2", - value = "azjol_web_rope_straight_03.m2", - }, - { - fileId = "242841", - text = "azjol_webbridge_01.m2", - value = "azjol_webbridge_01.m2", - }, - { - fileId = "242842", - text = "azjol_webbridge_02.m2", - value = "azjol_webbridge_02.m2", - }, - { - fileId = "242843", - text = "azjol_webbridge_03.m2", - value = "azjol_webbridge_03.m2", - }, - { - fileId = "242844", - text = "azjol_webbridge_04.m2", - value = "azjol_webbridge_04.m2", - }, - { - fileId = "194119", - text = "azjol_webfloor_01.m2", - value = "azjol_webfloor_01.m2", - }, - { - fileId = "242845", - text = "azjol_webfloor_01b.m2", - value = "azjol_webfloor_01b.m2", - }, - { - fileId = "194120", - text = "azjol_webfloor_02.m2", - value = "azjol_webfloor_02.m2", - }, - { - fileId = "242846", - text = "azjol_webfloor_02b.m2", - value = "azjol_webfloor_02b.m2", - }, - { - fileId = "242847", - text = "azjol_webfloor_03.m2", - value = "azjol_webfloor_03.m2", + { + fileId = "195002", + text = "id_fencepost03.m2", + value = "id_fencepost03.m2", + }, + { + fileId = "195003", + text = "id_fencepost_base.m2", + value = "id_fencepost_base.m2", + }, + { + fileId = "195006", + text = "id_forge.m2", + value = "id_forge.m2", + }, + { + fileId = "429721", + text = "id_forge_02.m2", + value = "id_forge_02.m2", + }, + { + fileId = "195009", + text = "id_kegmetalfree.m2", + value = "id_kegmetalfree.m2", + }, + { + fileId = "195010", + text = "id_kegmetalstand.m2", + value = "id_kegmetalstand.m2", + }, + { + fileId = "195011", + text = "id_lamppost-off.m2", + value = "id_lamppost-off.m2", + }, + { + fileId = "195012", + text = "id_lamppost.m2", + value = "id_lamppost.m2", + }, + { + fileId = "195013", + text = "id_lamppost_broken.m2", + value = "id_lamppost_broken.m2", + }, + { + fileId = "195014", + text = "id_lantern.m2", + value = "id_lantern.m2", + }, + { + fileId = "195015", + text = "id_large-lantern.m2", + value = "id_large-lantern.m2", + }, + { + fileId = "243453", + text = "id_lightning01_blue.m2", + value = "id_lightning01_blue.m2", + }, + { + fileId = "195016", + text = "id_lowstairs.m2", + value = "id_lowstairs.m2", + }, + { + fileId = "195017", + text = "id_lowstairs_small.m2", + value = "id_lowstairs_small.m2", + }, + { + fileId = "195018", + text = "id_lowwall.m2", + value = "id_lowwall.m2", + }, + { + fileId = "195019", + text = "id_pillar.m2", + value = "id_pillar.m2", + }, + { + fileId = "195020", + text = "id_pillarbase.m2", + value = "id_pillarbase.m2", + }, + { + fileId = "195022", + text = "id_signpost.m2", + value = "id_signpost.m2", + }, + { + fileId = "195023", + text = "id_signpost_sign.m2", + value = "id_signpost_sign.m2", + }, + { + fileId = "195025", + text = "id_tablelarge.m2", + value = "id_tablelarge.m2", + }, + { + fileId = "195026", + text = "id_tablemedium.m2", + value = "id_tablemedium.m2", + }, + { + fileId = "195027", + text = "id_tablemedium_broken.m2", + value = "id_tablemedium_broken.m2", + }, + { + fileId = "195029", + text = "id_tablesmall.m2", + value = "id_tablesmall.m2", + }, + { + fileId = "195030", + text = "id_tablesmall_broken.m2", + value = "id_tablesmall_broken.m2", + }, + { + fileId = "195031", + text = "id_wall_lamp-off.m2", + value = "id_wall_lamp-off.m2", + }, + { + fileId = "195032", + text = "id_wall_lamp.m2", + value = "id_wall_lamp.m2", + }, + { + children = { + { + fileId = "195035", + text = "id_cage-active.m2", + value = "id_cage-active.m2", + }, + }, + text = "quest", + value = "quest", + }, + }, + text = "irondwarf", + value = "irondwarf", }, { - fileId = "242848", - text = "azjol_webfloor_03b.m2", - value = "azjol_webfloor_03b.m2", + fileId = "243454", + text = "leather_chest_armor_01.m2", + value = "leather_chest_armor_01.m2", }, { - fileId = "194121", - text = "azjolcolumn01.m2", - value = "azjolcolumn01.m2", + fileId = "243456", + text = "mail_chest_armor_01.m2", + value = "mail_chest_armor_01.m2", }, { - fileId = "194122", - text = "azjolcolumn02.m2", - value = "azjolcolumn02.m2", + children = { + { + fileId = "365273", + text = "nd_winterorc_column.m2", + value = "nd_winterorc_column.m2", + }, + { + fileId = "331067", + text = "nd_winterorc_wall.m2", + value = "nd_winterorc_wall.m2", + }, + { + fileId = "331068", + text = "nd_winterorc_wall2.m2", + value = "nd_winterorc_wall2.m2", + }, + { + fileId = "306985", + text = "nd_winterorc_wall_gatefx.m2", + value = "nd_winterorc_wall_gatefx.m2", + }, + { + fileId = "311752", + text = "nd_winterorc_wall_gatefx_door.m2", + value = "nd_winterorc_wall_gatefx_door.m2", + }, + { + fileId = "307053", + text = "nd_winterorc_wallfx.m2", + value = "nd_winterorc_wallfx.m2", + }, + { + fileId = "365274", + text = "nd_winterorc_wallmedium.m2", + value = "nd_winterorc_wallmedium.m2", + }, + }, + text = "nd_winterorc", + value = "nd_winterorc", }, { - fileId = "194123", - text = "azjolcolumn03.m2", - value = "azjolcolumn03.m2", + children = { + { + fileId = "195036", + text = "nerubian_livingegg_01.m2", + value = "nerubian_livingegg_01.m2", + }, + { + fileId = "195037", + text = "nerubian_scourgeegg_01.m2", + value = "nerubian_scourgeegg_01.m2", + }, + { + fileId = "243457", + text = "nerubian_water_01.m2", + value = "nerubian_water_01.m2", + }, + { + children = { + { + fileId = "195039", + text = "nb_smallsinkhole01.m2", + value = "nb_smallsinkhole01.m2", + }, + }, + text = "pits", + value = "pits", + }, + }, + text = "nerubian", + value = "nerubian", }, { - fileId = "194124", - text = "azjolcolumn04.m2", - value = "azjolcolumn04.m2", + fileId = "243460", + text = "northrend_armor_01.m2", + value = "northrend_armor_01.m2", }, { - fileId = "194125", - text = "azjolcolumn05.m2", - value = "azjolcolumn05.m2", + fileId = "243462", + text = "northrend_armor_02.m2", + value = "northrend_armor_02.m2", }, { - fileId = "194126", - text = "azjolcolumn06.m2", - value = "azjolcolumn06.m2", + fileId = "243465", + text = "northrend_helm_01.m2", + value = "northrend_helm_01.m2", }, { - fileId = "242849", - text = "azjolcolumn06_long.m2", - value = "azjolcolumn06_long.m2", + fileId = "243466", + text = "northrend_helm_02.m2", + value = "northrend_helm_02.m2", }, { - fileId = "194127", - text = "azjolcolumn07.m2", - value = "azjolcolumn07.m2", + fileId = "243467", + text = "northrend_helm_03.m2", + value = "northrend_helm_03.m2", }, { - fileId = "194128", - text = "azjolcolumn08.m2", - value = "azjolcolumn08.m2", + fileId = "243468", + text = "northrend_helm_04.m2", + value = "northrend_helm_04.m2", }, { - fileId = "242850", - text = "azjolcolumn08_long.m2", - value = "azjolcolumn08_long.m2", + fileId = "243469", + text = "northrend_helm_05.m2", + value = "northrend_helm_05.m2", }, { - fileId = "194129", - text = "azjolcolumn09.m2", - value = "azjolcolumn09.m2", + fileId = "243470", + text = "northrend_helm_06.m2", + value = "northrend_helm_06.m2", }, { - fileId = "194130", - text = "azjolcolumn10.m2", - value = "azjolcolumn10.m2", + fileId = "243471", + text = "northrend_helm_07.m2", + value = "northrend_helm_07.m2", }, { - fileId = "194131", - text = "azjolcolumn11.m2", - value = "azjolcolumn11.m2", + fileId = "243472", + text = "northrend_helm_08.m2", + value = "northrend_helm_08.m2", }, { - fileId = "194132", - text = "azjolcolumn12.m2", - value = "azjolcolumn12.m2", + fileId = "243473", + text = "northrend_helm_09.m2", + value = "northrend_helm_09.m2", }, { - fileId = "194133", - text = "azjolcolumn13.m2", - value = "azjolcolumn13.m2", + fileId = "243474", + text = "northrend_shoulder_01.m2", + value = "northrend_shoulder_01.m2", }, { - fileId = "194134", - text = "azjolcolumn14.m2", - value = "azjolcolumn14.m2", + fileId = "243475", + text = "northrend_shoulder_02.m2", + value = "northrend_shoulder_02.m2", }, { - fileId = "194135", - text = "azjolcolumn15.m2", - value = "azjolcolumn15.m2", + fileId = "243476", + text = "northrend_shoulder_03.m2", + value = "northrend_shoulder_03.m2", }, { - fileId = "194136", - text = "azjolcolumn16.m2", - value = "azjolcolumn16.m2", + fileId = "243477", + text = "northrend_shoulder_04.m2", + value = "northrend_shoulder_04.m2", }, { - fileId = "194137", - text = "azjolcolumn17.m2", - value = "azjolcolumn17.m2", + fileId = "243478", + text = "northrend_shoulder_05.m2", + value = "northrend_shoulder_05.m2", }, { - fileId = "194138", - text = "azjolcolumn18.m2", - value = "azjolcolumn18.m2", + children = { + { + fileId = "195050", + text = "o_crystal_01.m2", + value = "o_crystal_01.m2", + }, + { + fileId = "195051", + text = "o_crystal_02.m2", + value = "o_crystal_02.m2", + }, + { + fileId = "195052", + text = "o_crystal_large.m2", + value = "o_crystal_large.m2", + }, + { + fileId = "195053", + text = "o_egg_01.m2", + value = "o_egg_01.m2", + }, + { + fileId = "195054", + text = "o_egg_02.m2", + value = "o_egg_02.m2", + }, + { + fileId = "195055", + text = "o_egg_03.m2", + value = "o_egg_03.m2", + }, + { + fileId = "195056", + text = "o_egg_04.m2", + value = "o_egg_04.m2", + }, + { + fileId = "195057", + text = "o_egg_05.m2", + value = "o_egg_05.m2", + }, + { + fileId = "195059", + text = "o_hanger_bones.m2", + value = "o_hanger_bones.m2", + }, + { + fileId = "195060", + text = "o_hanger_coconuts.m2", + value = "o_hanger_coconuts.m2", + }, + { + fileId = "195061", + text = "o_hanger_crystal01.m2", + value = "o_hanger_crystal01.m2", + }, + { + fileId = "195062", + text = "o_hanger_crystal02.m2", + value = "o_hanger_crystal02.m2", + }, + { + fileId = "195063", + text = "o_hanger_extension.m2", + value = "o_hanger_extension.m2", + }, + { + fileId = "195065", + text = "o_lamppost_01.m2", + value = "o_lamppost_01.m2", + }, + { + fileId = "195066", + text = "o_lampwall_01.m2", + value = "o_lampwall_01.m2", + }, + { + fileId = "195067", + text = "o_surfboard01.m2", + value = "o_surfboard01.m2", + }, + { + fileId = "195068", + text = "o_surfboard02.m2", + value = "o_surfboard02.m2", + }, + { + fileId = "195069", + text = "o_surfboard03.m2", + value = "o_surfboard03.m2", + }, + { + fileId = "195070", + text = "o_surfboard04.m2", + value = "o_surfboard04.m2", + }, + { + fileId = "195073", + text = "o_totem_01.m2", + value = "o_totem_01.m2", + }, + { + fileId = "195074", + text = "o_trashpile_01.m2", + value = "o_trashpile_01.m2", + }, + { + fileId = "195075", + text = "o_trashpile_02.m2", + value = "o_trashpile_02.m2", + }, + }, + text = "oracle", + value = "oracle", }, { - fileId = "194139", - text = "azjolcolumn19.m2", - value = "azjolcolumn19.m2", + children = { + { + fileId = "243479", + text = "potion_black01.m2", + value = "potion_black01.m2", + }, + { + fileId = "243480", + text = "potion_black03.m2", + value = "potion_black03.m2", + }, + { + fileId = "243481", + text = "potion_blue01.m2", + value = "potion_blue01.m2", + }, + { + fileId = "243482", + text = "potion_empty01.m2", + value = "potion_empty01.m2", + }, + { + fileId = "243483", + text = "potion_empty02.m2", + value = "potion_empty02.m2", + }, + { + fileId = "243484", + text = "potion_gold01.m2", + value = "potion_gold01.m2", + }, + { + fileId = "243485", + text = "potion_green01.m2", + value = "potion_green01.m2", + }, + { + fileId = "243486", + text = "potion_green04.m2", + value = "potion_green04.m2", + }, + { + fileId = "243487", + text = "potion_iron01.m2", + value = "potion_iron01.m2", + }, + { + fileId = "243488", + text = "potion_purple01.m2", + value = "potion_purple01.m2", + }, + { + fileId = "243489", + text = "potion_red01.m2", + value = "potion_red01.m2", + }, + { + fileId = "243490", + text = "potion_red04.m2", + value = "potion_red04.m2", + }, + { + fileId = "243491", + text = "potion_silver01.m2", + value = "potion_silver01.m2", + }, + }, + text = "potions", + value = "potions", }, { - fileId = "194140", - text = "azjolcolumn20.m2", - value = "azjolcolumn20.m2", + fileId = "366691", + text = "sandbag_wall_01.m2", + value = "sandbag_wall_01.m2", }, { - fileId = "194141", - text = "azjolcolumn21.m2", - value = "azjolcolumn21.m2", + children = { + { + fileId = "195079", + text = "scarleto_banner01.m2", + value = "scarleto_banner01.m2", + }, + { + fileId = "195080", + text = "scarleto_banner01wall.m2", + value = "scarleto_banner01wall.m2", + }, + { + fileId = "195081", + text = "scarleto_banner02.m2", + value = "scarleto_banner02.m2", + }, + { + fileId = "195082", + text = "scarleto_banner02wall.m2", + value = "scarleto_banner02wall.m2", + }, + { + fileId = "243492", + text = "scarleto_brazier_fire.m2", + value = "scarleto_brazier_fire.m2", + }, + { + fileId = "195084", + text = "scarleto_brazier_lit.m2", + value = "scarleto_brazier_lit.m2", + }, + { + fileId = "195085", + text = "scarleto_brazier_smoker.m2", + value = "scarleto_brazier_smoker.m2", + }, + { + fileId = "195086", + text = "scarleto_brazier_unlit.m2", + value = "scarleto_brazier_unlit.m2", + }, + { + fileId = "243493", + text = "scarleto_brazier_unlit_base.m2", + value = "scarleto_brazier_unlit_base.m2", + }, + { + fileId = "195087", + text = "scarleto_gallows.m2", + value = "scarleto_gallows.m2", + }, + }, + text = "scarletonslaught", + value = "scarletonslaught", }, { - fileId = "194142", - text = "azjolcolumn22.m2", - value = "azjolcolumn22.m2", + children = { + { + children = { + { + fileId = "195090", + text = "cd_altar_02.m2", + value = "cd_altar_02.m2", + }, + }, + text = "cd", + value = "cd", + }, + { + fileId = "195095", + text = "icecrown_stairs01.m2", + value = "icecrown_stairs01.m2", + }, + { + fileId = "243506", + text = "sc_alchemy_table.m2", + value = "sc_alchemy_table.m2", + }, + { + fileId = "195098", + text = "sc_banner.m2", + value = "sc_banner.m2", + }, + { + fileId = "243511", + text = "sc_banner_02.m2", + value = "sc_banner_02.m2", + }, + { + fileId = "243512", + text = "sc_banner_03.m2", + value = "sc_banner_03.m2", + }, + { + fileId = "243513", + text = "sc_banner_04.m2", + value = "sc_banner_04.m2", + }, + { + fileId = "243514", + text = "sc_banner_05.m2", + value = "sc_banner_05.m2", + }, + { + fileId = "243515", + text = "sc_banner_06.m2", + value = "sc_banner_06.m2", + }, + { + fileId = "243519", + text = "sc_barrel_01.m2", + value = "sc_barrel_01.m2", + }, + { + fileId = "243520", + text = "sc_barrel_01_broken.m2", + value = "sc_barrel_01_broken.m2", + }, + { + fileId = "243521", + text = "sc_barrel_02_broken.m2", + value = "sc_barrel_02_broken.m2", + }, + { + fileId = "195100", + text = "sc_barricade.m2", + value = "sc_barricade.m2", + }, + { + fileId = "243523", + text = "sc_barricade_broken.m2", + value = "sc_barricade_broken.m2", + }, + { + fileId = "195101", + text = "sc_blighter.m2", + value = "sc_blighter.m2", + }, + { + fileId = "195104", + text = "sc_blighter2.m2", + value = "sc_blighter2.m2", + }, + { + fileId = "243526", + text = "sc_blighter2_green.m2", + value = "sc_blighter2_green.m2", + }, + { + fileId = "195105", + text = "sc_blighter_broken.m2", + value = "sc_blighter_broken.m2", + }, + { + fileId = "243527", + text = "sc_blighter_green.m2", + value = "sc_blighter_green.m2", + }, + { + fileId = "243528", + text = "sc_bloodorb.m2", + value = "sc_bloodorb.m2", + }, + { + fileId = "243533", + text = "sc_bodycart_01.m2", + value = "sc_bodycart_01.m2", + }, + { + fileId = "243535", + text = "sc_bodycart_02.m2", + value = "sc_bodycart_02.m2", + }, + { + fileId = "243536", + text = "sc_bodycart_body.m2", + value = "sc_bodycart_body.m2", + }, + { + fileId = "243537", + text = "sc_bodycart_destroyed.m2", + value = "sc_bodycart_destroyed.m2", + }, + { + fileId = "243538", + text = "sc_bodycart_nobody.m2", + value = "sc_bodycart_nobody.m2", + }, + { + fileId = "243539", + text = "sc_bodyhook.m2", + value = "sc_bodyhook.m2", + }, + { + fileId = "243540", + text = "sc_bodyhook_arm_01.m2", + value = "sc_bodyhook_arm_01.m2", + }, + { + fileId = "243541", + text = "sc_bodyhook_arm_02.m2", + value = "sc_bodyhook_arm_02.m2", + }, + { + fileId = "243542", + text = "sc_bodyhook_boot.m2", + value = "sc_bodyhook_boot.m2", + }, + { + fileId = "243543", + text = "sc_bodyhook_torso.m2", + value = "sc_bodyhook_torso.m2", + }, + { + fileId = "243545", + text = "sc_bodyjar.m2", + value = "sc_bodyjar.m2", + }, + { + fileId = "333851", + text = "sc_bodyjar_03.m2", + value = "sc_bodyjar_03.m2", + }, + { + fileId = "243546", + text = "sc_bodyjar_ghoul.m2", + value = "sc_bodyjar_ghoul.m2", + }, + { + fileId = "327391", + text = "sc_bodyjar_orange.m2", + value = "sc_bodyjar_orange.m2", + }, + { + fileId = "329355", + text = "sc_bodyjar_orange_02.m2", + value = "sc_bodyjar_orange_02.m2", + }, + { + fileId = "333852", + text = "sc_bodyjar_orange_03.m2", + value = "sc_bodyjar_orange_03.m2", + }, + { + fileId = "243547", + text = "sc_bodyjar_skeleton.m2", + value = "sc_bodyjar_skeleton.m2", + }, + { + fileId = "195106", + text = "sc_bonearm_01.m2", + value = "sc_bonearm_01.m2", + }, + { + fileId = "243550", + text = "sc_bonearm_green_01.m2", + value = "sc_bonearm_green_01.m2", + }, + { + fileId = "195107", + text = "sc_bonesawtable_01.m2", + value = "sc_bonesawtable_01.m2", + }, + { + fileId = "195109", + text = "sc_brazier1.m2", + value = "sc_brazier1.m2", + }, + { + fileId = "195110", + text = "sc_brazier1_long.m2", + value = "sc_brazier1_long.m2", + }, + { + fileId = "315184", + text = "sc_brazier1_long_orange.m2", + value = "sc_brazier1_long_orange.m2", + }, + { + fileId = "195111", + text = "sc_brazier2.m2", + value = "sc_brazier2.m2", + }, + { + fileId = "195112", + text = "sc_brazier2_long.m2", + value = "sc_brazier2_long.m2", + }, + { + fileId = "315185", + text = "sc_brazier2_long_orange.m2", + value = "sc_brazier2_long_orange.m2", + }, + { + fileId = "315186", + text = "sc_brazier2_orange.m2", + value = "sc_brazier2_orange.m2", + }, + { + fileId = "243551", + text = "sc_brazier2_short.m2", + value = "sc_brazier2_short.m2", + }, + { + fileId = "195113", + text = "sc_brazier3.m2", + value = "sc_brazier3.m2", + }, + { + fileId = "315187", + text = "sc_brazier3_orange.m2", + value = "sc_brazier3_orange.m2", + }, + { + fileId = "195115", + text = "sc_cages_01.m2", + value = "sc_cages_01.m2", + }, + { + fileId = "243553", + text = "sc_cages_02.m2", + value = "sc_cages_02.m2", + }, + { + fileId = "195116", + text = "sc_castingcircle_01.m2", + value = "sc_castingcircle_01.m2", + }, + { + fileId = "195118", + text = "sc_cauldron.m2", + value = "sc_cauldron.m2", + }, + { + fileId = "243555", + text = "sc_cauldron_empty.m2", + value = "sc_cauldron_empty.m2", + }, + { + fileId = "243557", + text = "sc_cauldron_green.m2", + value = "sc_cauldron_green.m2", + }, + { + fileId = "243558", + text = "sc_cauldron_green_02.m2", + value = "sc_cauldron_green_02.m2", + }, + { + fileId = "243560", + text = "sc_chain.m2", + value = "sc_chain.m2", + }, + { + fileId = "195121", + text = "sc_chest.m2", + value = "sc_chest.m2", + }, + { + fileId = "243561", + text = "sc_conveyer.m2", + value = "sc_conveyer.m2", + }, + { + fileId = "243563", + text = "sc_crane_01.m2", + value = "sc_crane_01.m2", + }, + { + fileId = "243565", + text = "sc_crane_02.m2", + value = "sc_crane_02.m2", + }, + { + fileId = "243568", + text = "sc_crate_01.m2", + value = "sc_crate_01.m2", + }, + { + fileId = "243569", + text = "sc_crate_02.m2", + value = "sc_crate_02.m2", + }, + { + fileId = "243570", + text = "sc_crystal.m2", + value = "sc_crystal.m2", + }, + { + fileId = "243571", + text = "sc_crystal_base.m2", + value = "sc_crystal_base.m2", + }, + { + fileId = "243572", + text = "sc_deathstar_01.m2", + value = "sc_deathstar_01.m2", + }, + { + fileId = "243574", + text = "sc_embalmingfluid.m2", + value = "sc_embalmingfluid.m2", + }, + { + fileId = "315157", + text = "sc_engineofsouls_effect_01.m2", + value = "sc_engineofsouls_effect_01.m2", + }, + { + fileId = "243578", + text = "sc_eyeofacherus.m2", + value = "sc_eyeofacherus.m2", + }, + { + fileId = "243581", + text = "sc_eyeofacherus_02.m2", + value = "sc_eyeofacherus_02.m2", + }, + { + fileId = "328250", + text = "sc_eyeofacherus_03.m2", + value = "sc_eyeofacherus_03.m2", + }, + { + fileId = "243584", + text = "sc_fence.m2", + value = "sc_fence.m2", + }, + { + fileId = "243585", + text = "sc_fence_base.m2", + value = "sc_fence_base.m2", + }, + { + fileId = "243586", + text = "sc_fleshgiant_arm_01.m2", + value = "sc_fleshgiant_arm_01.m2", + }, + { + fileId = "243587", + text = "sc_fleshgiant_arm_02.m2", + value = "sc_fleshgiant_arm_02.m2", + }, + { + fileId = "243588", + text = "sc_fleshgiant_boot.m2", + value = "sc_fleshgiant_boot.m2", + }, + { + fileId = "243589", + text = "sc_fleshgiant_leg.m2", + value = "sc_fleshgiant_leg.m2", + }, + { + fileId = "243590", + text = "sc_fleshgiant_torso.m2", + value = "sc_fleshgiant_torso.m2", + }, + { + fileId = "243591", + text = "sc_floor_decoration_01.m2", + value = "sc_floor_decoration_01.m2", + }, + { + fileId = "243593", + text = "sc_frostglow.m2", + value = "sc_frostglow.m2", + }, + { + fileId = "195122", + text = "sc_meatwagon_01.m2", + value = "sc_meatwagon_01.m2", + }, + { + fileId = "243594", + text = "sc_meatwagon_01_broken.m2", + value = "sc_meatwagon_01_broken.m2", + }, + { + fileId = "195125", + text = "sc_obelisk1.m2", + value = "sc_obelisk1.m2", + }, + { + fileId = "195126", + text = "sc_obelisk2.m2", + value = "sc_obelisk2.m2", + }, + { + fileId = "243595", + text = "sc_operation_table.m2", + value = "sc_operation_table.m2", + }, + { + fileId = "243596", + text = "sc_pitcylinder.m2", + value = "sc_pitcylinder.m2", + }, + { + fileId = "243597", + text = "sc_pitcylinder_02.m2", + value = "sc_pitcylinder_02.m2", + }, + { + fileId = "243598", + text = "sc_pitcylinder_temp.m2", + value = "sc_pitcylinder_temp.m2", + }, + { + fileId = "243599", + text = "sc_plaguebarrel.m2", + value = "sc_plaguebarrel.m2", + }, + { + fileId = "243600", + text = "sc_plaguebarrel_02.m2", + value = "sc_plaguebarrel_02.m2", + }, + { + fileId = "243601", + text = "sc_plaguebomb_green.m2", + value = "sc_plaguebomb_green.m2", + }, + { + fileId = "243602", + text = "sc_plaguebomb_orange.m2", + value = "sc_plaguebomb_orange.m2", + }, + { + fileId = "195127", + text = "sc_platform.m2", + value = "sc_platform.m2", + }, + { + fileId = "195128", + text = "sc_platform2.m2", + value = "sc_platform2.m2", + }, + { + fileId = "195129", + text = "sc_runeforge_01.m2", + value = "sc_runeforge_01.m2", + }, + { + fileId = "243603", + text = "sc_runeforge_02.m2", + value = "sc_runeforge_02.m2", + }, + { + fileId = "195130", + text = "sc_skullpikes_01.m2", + value = "sc_skullpikes_01.m2", + }, + { + fileId = "195131", + text = "sc_skullpikes_02.m2", + value = "sc_skullpikes_02.m2", + }, + { + fileId = "243604", + text = "sc_slimepool_green.m2", + value = "sc_slimepool_green.m2", + }, + { + fileId = "243605", + text = "sc_slimepool_orange.m2", + value = "sc_slimepool_orange.m2", + }, + { + fileId = "243606", + text = "sc_spiriteffect_01.m2", + value = "sc_spiriteffect_01.m2", + }, + { + fileId = "243608", + text = "sc_spirits_01.m2", + value = "sc_spirits_01.m2", + }, + { + fileId = "327767", + text = "sc_spirits_02.m2", + value = "sc_spirits_02.m2", + }, + { + fileId = "348932", + text = "sc_spirits_03.m2", + value = "sc_spirits_03.m2", + }, + { + fileId = "195133", + text = "sc_stairs.m2", + value = "sc_stairs.m2", + }, + { + fileId = "195134", + text = "sc_stairs2.m2", + value = "sc_stairs2.m2", + }, + { + fileId = "195135", + text = "sc_surgicaltable_01.m2", + value = "sc_surgicaltable_01.m2", + }, + { + fileId = "195136", + text = "sc_surgicaltable_02.m2", + value = "sc_surgicaltable_02.m2", + }, + { + fileId = "243610", + text = "sc_tanktrap.m2", + value = "sc_tanktrap.m2", + }, + { + fileId = "320159", + text = "sc_teleportpad.m2", + value = "sc_teleportpad.m2", + }, + { + fileId = "328180", + text = "sc_teleportpad2.m2", + value = "sc_teleportpad2.m2", + }, + { + fileId = "347030", + text = "sc_teleportpad3.m2", + value = "sc_teleportpad3.m2", + }, + { + fileId = "195139", + text = "sc_tent1.m2", + value = "sc_tent1.m2", + }, + { + fileId = "243612", + text = "sc_tent1_destroyed.m2", + value = "sc_tent1_destroyed.m2", + }, + { + fileId = "195140", + text = "sc_tent2.m2", + value = "sc_tent2.m2", + }, + { + fileId = "195141", + text = "sc_tent_destroyed.m2", + value = "sc_tent_destroyed.m2", + }, + { + fileId = "243613", + text = "sc_tools_table.m2", + value = "sc_tools_table.m2", + }, + { + fileId = "195142", + text = "sc_trench_c_long.m2", + value = "sc_trench_c_long.m2", + }, + { + fileId = "195143", + text = "sc_trench_c_medium.m2", + value = "sc_trench_c_medium.m2", + }, + { + fileId = "195144", + text = "sc_trench_c_tall.m2", + value = "sc_trench_c_tall.m2", + }, + { + fileId = "243614", + text = "sc_trench_m_brace.m2", + value = "sc_trench_m_brace.m2", + }, + { + fileId = "195145", + text = "sc_trench_m_long.m2", + value = "sc_trench_m_long.m2", + }, + { + fileId = "195146", + text = "sc_trench_m_medium.m2", + value = "sc_trench_m_medium.m2", + }, + { + fileId = "195147", + text = "sc_trench_m_tall.m2", + value = "sc_trench_m_tall.m2", + }, + { + fileId = "195148", + text = "sc_trench_p_bar.m2", + value = "sc_trench_p_bar.m2", + }, + { + fileId = "195149", + text = "sc_trench_p_bone1.m2", + value = "sc_trench_p_bone1.m2", + }, + { + fileId = "195150", + text = "sc_trench_p_bone2.m2", + value = "sc_trench_p_bone2.m2", + }, + { + fileId = "195151", + text = "sc_trench_p_bone3.m2", + value = "sc_trench_p_bone3.m2", + }, + { + fileId = "195152", + text = "sc_trench_p_bracer.m2", + value = "sc_trench_p_bracer.m2", + }, + { + fileId = "195153", + text = "sc_trench_p_chain.m2", + value = "sc_trench_p_chain.m2", + }, + { + fileId = "195154", + text = "sc_wagon.m2", + value = "sc_wagon.m2", + }, + { + fileId = "195157", + text = "sc_wagon_02.m2", + value = "sc_wagon_02.m2", + }, + { + fileId = "243615", + text = "sc_wagon_02_broken.m2", + value = "sc_wagon_02_broken.m2", + }, + { + fileId = "243616", + text = "sc_wagon_broken.m2", + value = "sc_wagon_broken.m2", + }, + { + fileId = "243618", + text = "sc_wall_01.m2", + value = "sc_wall_01.m2", + }, + { + fileId = "243619", + text = "sc_wall_01_cap.m2", + value = "sc_wall_01_cap.m2", + }, + { + fileId = "243620", + text = "sc_wall_01_ramp.m2", + value = "sc_wall_01_ramp.m2", + }, + { + fileId = "243621", + text = "sc_wall_02.m2", + value = "sc_wall_02.m2", + }, + { + fileId = "243622", + text = "sc_wall_02_cap.m2", + value = "sc_wall_02_cap.m2", + }, + { + fileId = "243623", + text = "sc_wall_02_ramp.m2", + value = "sc_wall_02_ramp.m2", + }, + { + fileId = "243624", + text = "sc_wall_03.m2", + value = "sc_wall_03.m2", + }, + { + fileId = "243625", + text = "sc_wall_04.m2", + value = "sc_wall_04.m2", + }, + { + fileId = "243626", + text = "sc_wall_05.m2", + value = "sc_wall_05.m2", + }, + { + fileId = "243627", + text = "sc_wall_05_piece.m2", + value = "sc_wall_05_piece.m2", + }, + { + fileId = "243628", + text = "sc_wall_06.m2", + value = "sc_wall_06.m2", + }, + { + fileId = "243629", + text = "sc_wall_06_piece.m2", + value = "sc_wall_06_piece.m2", + }, + { + fileId = "243630", + text = "sc_wall_decoration_01.m2", + value = "sc_wall_decoration_01.m2", + }, + { + fileId = "243631", + text = "sc_wall_decoration_02.m2", + value = "sc_wall_decoration_02.m2", + }, + { + fileId = "195160", + text = "sc_warmachine_01.m2", + value = "sc_warmachine_01.m2", + }, + { + fileId = "243633", + text = "sc_warmachine_01_broken.m2", + value = "sc_warmachine_01_broken.m2", + }, + { + fileId = "243634", + text = "sc_warmachine_01_green.m2", + value = "sc_warmachine_01_green.m2", + }, + { + fileId = "195161", + text = "sc_weaponrack-deathknight.m2", + value = "sc_weaponrack-deathknight.m2", + }, + { + fileId = "195162", + text = "sc_weaponrack-empty.m2", + value = "sc_weaponrack-empty.m2", + }, + { + fileId = "195164", + text = "sc_weaponrack-weapon1.m2", + value = "sc_weaponrack-weapon1.m2", + }, + { + fileId = "195165", + text = "sc_weaponrack-weapon2.m2", + value = "sc_weaponrack-weapon2.m2", + }, + { + fileId = "195166", + text = "sc_weaponrack-weapon3.m2", + value = "sc_weaponrack-weapon3.m2", + }, + { + fileId = "195167", + text = "sc_weaponrack-weapon4.m2", + value = "sc_weaponrack-weapon4.m2", + }, + { + fileId = "195168", + text = "sc_weaponrack-weapon5.m2", + value = "sc_weaponrack-weapon5.m2", + }, + { + fileId = "195170", + text = "sc_weaponrack1.m2", + value = "sc_weaponrack1.m2", + }, + { + fileId = "195171", + text = "sc_weaponrack2.m2", + value = "sc_weaponrack2.m2", + }, + { + fileId = "243636", + text = "sc_whole_body.m2", + value = "sc_whole_body.m2", + }, + { + fileId = "243637", + text = "sc_wolfskull_green_01.m2", + value = "sc_wolfskull_green_01.m2", + }, + { + fileId = "195172", + text = "sc_yoggthoritebar_01.m2", + value = "sc_yoggthoritebar_01.m2", + }, + { + fileId = "195173", + text = "sc_yoggthoritebar_stack_01.m2", + value = "sc_yoggthoritebar_stack_01.m2", + }, + }, + text = "scourge", + value = "scourge", }, { - fileId = "194143", - text = "azjolcolumn23.m2", - value = "azjolcolumn23.m2", + children = { + { + fileId = "243639", + text = "seamine_01.m2", + value = "seamine_01.m2", + }, + }, + text = "seamines", + value = "seamines", }, { - fileId = "194144", - text = "azjolcolumn24.m2", - value = "azjolcolumn24.m2", + children = { + { + children = { + { + fileId = "195179", + text = "vrs_chest_01.m2", + value = "vrs_chest_01.m2", + }, + { + fileId = "195181", + text = "vrs_crate_01.m2", + value = "vrs_crate_01.m2", + }, + { + fileId = "243640", + text = "vrs_crate_destroyed_01.m2", + value = "vrs_crate_destroyed_01.m2", + }, + { + fileId = "195185", + text = "vrs_netpile_01.m2", + value = "vrs_netpile_01.m2", + }, + { + fileId = "195187", + text = "vrs_tent_01.m2", + value = "vrs_tent_01.m2", + }, + { + fileId = "195188", + text = "vrs_tent_02.m2", + value = "vrs_tent_02.m2", + }, + }, + text = "shore", + value = "shore", + }, + { + children = { + { + fileId = "195189", + text = "vrs_weaponrack_01.m2", + value = "vrs_weaponrack_01.m2", + }, + { + fileId = "195190", + text = "vrs_weaponrack_02.m2", + value = "vrs_weaponrack_02.m2", + }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "seavrykul", + value = "seavrykul", }, { - fileId = "194145", - text = "azjolcolumn25.m2", - value = "azjolcolumn25.m2", + children = { + { + fileId = "243641", + text = "demolisherstatic.m2", + value = "demolisherstatic.m2", + }, + { + fileId = "243642", + text = "siegetankstatic.m2", + value = "siegetankstatic.m2", + }, + }, + text = "seigeequipment", + value = "seigeequipment", }, { - fileId = "194146", - text = "azjolcolumn26.m2", - value = "azjolcolumn26.m2", + children = { + { + fileId = "195191", + text = "skull_protodragon.m2", + value = "skull_protodragon.m2", + }, + { + fileId = "195192", + text = "skull_shoveltusk.m2", + value = "skull_shoveltusk.m2", + }, + { + fileId = "195194", + text = "skull_wolf.m2", + value = "skull_wolf.m2", + }, + { + fileId = "195195", + text = "skull_yeti.m2", + value = "skull_yeti.m2", + }, + }, + text = "skulls", + value = "skulls", }, { - fileId = "194147", - text = "azjolroofgiant.m2", - value = "azjolroofgiant.m2", + children = { + { + children = { + { + fileId = "195197", + text = "sunshatter_banner01.m2", + value = "sunshatter_banner01.m2", + }, + { + fileId = "195198", + text = "sunshatter_banner02.m2", + value = "sunshatter_banner02.m2", + }, + { + fileId = "195199", + text = "sunshatter_banner03.m2", + value = "sunshatter_banner03.m2", + }, + { + fileId = "195200", + text = "sunshatter_monument.m2", + value = "sunshatter_monument.m2", + }, + }, + text = "banner", + value = "banner", + }, + }, + text = "sunshatter", + value = "sunshatter", }, { children = { { - fileId = "194149", - text = "azjol_bridge01.m2", - value = "azjol_bridge01.m2", + fileId = "243646", + text = "ti_arch.m2", + value = "ti_arch.m2", }, { - fileId = "194150", - text = "azjol_bridge02.m2", - value = "azjol_bridge02.m2", + fileId = "243647", + text = "ti_archsingle.m2", + value = "ti_archsingle.m2", }, { - fileId = "194151", - text = "azjol_bridge03.m2", - value = "azjol_bridge03.m2", + fileId = "243648", + text = "ti_battlegroundportal_01.m2", + value = "ti_battlegroundportal_01.m2", }, { - fileId = "242851", - text = "azjol_bridge_a.m2", - value = "azjol_bridge_a.m2", + fileId = "243649", + text = "ti_block01.m2", + value = "ti_block01.m2", }, { - fileId = "242852", - text = "azjol_bridge_b.m2", - value = "azjol_bridge_b.m2", + fileId = "243650", + text = "ti_bottom01.m2", + value = "ti_bottom01.m2", }, - }, - text = "bridges", - value = "bridges", - }, - { - children = { { - fileId = "194152", - text = "azjol_archbuilding01.m2", - value = "azjol_archbuilding01.m2", + fileId = "243651", + text = "ti_bottom02.m2", + value = "ti_bottom02.m2", }, { - fileId = "194153", - text = "azjol_building01.m2", - value = "azjol_building01.m2", + fileId = "243652", + text = "ti_bridge.m2", + value = "ti_bridge.m2", }, { - fileId = "194154", - text = "azjol_building02.m2", - value = "azjol_building02.m2", + fileId = "243653", + text = "ti_brokenpillar.m2", + value = "ti_brokenpillar.m2", }, { - fileId = "194155", - text = "azjol_building03.m2", - value = "azjol_building03.m2", + fileId = "243654", + text = "ti_brokenroad01.m2", + value = "ti_brokenroad01.m2", }, { - fileId = "242853", - text = "azjol_facade1.m2", - value = "azjol_facade1.m2", + fileId = "243655", + text = "ti_brokenroad02.m2", + value = "ti_brokenroad02.m2", }, { - fileId = "242854", - text = "azjol_facade2.m2", - value = "azjol_facade2.m2", + fileId = "243656", + text = "ti_brokenroad03.m2", + value = "ti_brokenroad03.m2", }, { - fileId = "242855", - text = "azjol_facade3.m2", - value = "azjol_facade3.m2", + fileId = "243657", + text = "ti_brokenroad04.m2", + value = "ti_brokenroad04.m2", }, { - fileId = "242856", - text = "azjol_facade4.m2", - value = "azjol_facade4.m2", + fileId = "243658", + text = "ti_brokenroad05.m2", + value = "ti_brokenroad05.m2", }, { - fileId = "242857", - text = "azjol_facade5.m2", - value = "azjol_facade5.m2", + fileId = "254943", + text = "ti_brokenroad05_small.m2", + value = "ti_brokenroad05_small.m2", }, { - fileId = "242858", - text = "azjol_final_boss.m2", - value = "azjol_final_boss.m2", + fileId = "243659", + text = "ti_brokenroad06.m2", + value = "ti_brokenroad06.m2", }, { - fileId = "242859", - text = "azjol_pyramid1.m2", - value = "azjol_pyramid1.m2", + fileId = "243660", + text = "ti_brokenroad07.m2", + value = "ti_brokenroad07.m2", }, { - fileId = "242860", - text = "azjol_pyramid2.m2", - value = "azjol_pyramid2.m2", + fileId = "243661", + text = "ti_brokenroad08.m2", + value = "ti_brokenroad08.m2", }, { - fileId = "242861", - text = "azjol_pyramid3.m2", - value = "azjol_pyramid3.m2", + fileId = "195206", + text = "ti_building01.m2", + value = "ti_building01.m2", }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { { - fileId = "242865", - text = "azjol_column_a.m2", - value = "azjol_column_a.m2", + fileId = "195207", + text = "ti_building02.m2", + value = "ti_building02.m2", }, { - fileId = "242866", - text = "azjol_column_b.m2", - value = "azjol_column_b.m2", + fileId = "243662", + text = "ti_buildingblock01.m2", + value = "ti_buildingblock01.m2", }, { - fileId = "242867", - text = "azjol_column_c.m2", - value = "azjol_column_c.m2", + fileId = "243663", + text = "ti_buildingblock02.m2", + value = "ti_buildingblock02.m2", }, { - fileId = "194156", - text = "azjol_obelisk01.m2", - value = "azjol_obelisk01.m2", + fileId = "243664", + text = "ti_buildingblock03.m2", + value = "ti_buildingblock03.m2", }, { - fileId = "242868", - text = "azjol_obeliskgold01.m2", - value = "azjol_obeliskgold01.m2", + fileId = "243665", + text = "ti_buildingblock04.m2", + value = "ti_buildingblock04.m2", }, { - fileId = "242869", - text = "azjol_obeliskobsidian01.m2", - value = "azjol_obeliskobsidian01.m2", + fileId = "243667", + text = "ti_chamberportal_black01.m2", + value = "ti_chamberportal_black01.m2", }, { - fileId = "242870", - text = "azjol_obeliskorange.m2", - value = "azjol_obeliskorange.m2", + fileId = "243669", + text = "ti_chamberportal_blue01.m2", + value = "ti_chamberportal_blue01.m2", }, { - fileId = "194157", - text = "azjol_spidercolumn01.m2", - value = "azjol_spidercolumn01.m2", + fileId = "243671", + text = "ti_chamberportal_bronze01.m2", + value = "ti_chamberportal_bronze01.m2", }, { - fileId = "194158", - text = "azjol_spidercolumn02.m2", - value = "azjol_spidercolumn02.m2", + fileId = "243673", + text = "ti_chamberportal_green01.m2", + value = "ti_chamberportal_green01.m2", }, - }, - text = "columns", - value = "columns", - }, - { - children = { { - fileId = "242874", - text = "azjol_eggsacks_01.m2", - value = "azjol_eggsacks_01.m2", + fileId = "243675", + text = "ti_chamberportal_red01.m2", + value = "ti_chamberportal_red01.m2", }, { - fileId = "242875", - text = "azjol_eggsacks_02.m2", - value = "azjol_eggsacks_02.m2", + fileId = "367652", + text = "ti_chamberportal_red01_broken.m2", + value = "ti_chamberportal_red01_broken.m2", }, { - fileId = "242876", - text = "azjol_eggtower_01.m2", - value = "azjol_eggtower_01.m2", + fileId = "243677", + text = "ti_curvestair.m2", + value = "ti_curvestair.m2", }, { - fileId = "242877", - text = "azjol_eggtower_02.m2", - value = "azjol_eggtower_02.m2", + fileId = "243678", + text = "ti_disc_01.m2", + value = "ti_disc_01.m2", }, - }, - text = "eggs", - value = "eggs", - }, - { - children = { { - fileId = "194163", - text = "omnilight_purple.m2", - value = "omnilight_purple.m2", + fileId = "243679", + text = "ti_dome.m2", + value = "ti_dome.m2", }, - }, - text = "omnilights", - value = "omnilights", - }, - { - children = { { - fileId = "194164", - text = "azjol_rockcolumn01.m2", - value = "azjol_rockcolumn01.m2", + fileId = "243680", + text = "ti_dome02.m2", + value = "ti_dome02.m2", }, { - fileId = "194165", - text = "azjol_rockcolumn02.m2", - value = "azjol_rockcolumn02.m2", + fileId = "243681", + text = "ti_domesmall.m2", + value = "ti_domesmall.m2", }, { - fileId = "194166", - text = "azjol_rockcolumn03.m2", - value = "azjol_rockcolumn03.m2", + fileId = "243684", + text = "ti_dragon_roar_01.m2", + value = "ti_dragon_roar_01.m2", }, { - fileId = "194167", - text = "azjol_rockcolumn04.m2", - value = "azjol_rockcolumn04.m2", + fileId = "243685", + text = "ti_dragon_sit_01.m2", + value = "ti_dragon_sit_01.m2", }, { - fileId = "194168", - text = "azjol_rockcolumn05.m2", - value = "azjol_rockcolumn05.m2", + fileId = "195209", + text = "ti_elevatedroad01.m2", + value = "ti_elevatedroad01.m2", }, - }, - text = "rockcolumns", - value = "rockcolumns", - }, - { - children = { { - fileId = "194169", - text = "azjol_roof02.m2", - value = "azjol_roof02.m2", + fileId = "195210", + text = "ti_elevatedroadend01.m2", + value = "ti_elevatedroadend01.m2", }, { - fileId = "242881", - text = "azjol_roof03.m2", - value = "azjol_roof03.m2", + fileId = "195211", + text = "ti_fieldgenerator_01.m2", + value = "ti_fieldgenerator_01.m2", }, { - fileId = "242882", - text = "azjol_roof04.m2", - value = "azjol_roof04.m2", + fileId = "195212", + text = "ti_fieldgenerator_02.m2", + value = "ti_fieldgenerator_02.m2", }, - }, - text = "roof", - value = "roof", - }, - { - children = { { - fileId = "242884", - text = "saronite_arrow_01.m2", - value = "saronite_arrow_01.m2", + fileId = "195213", + text = "ti_fieldgenerator_03.m2", + value = "ti_fieldgenerator_03.m2", }, { - fileId = "194170", - text = "saronite_node_01.m2", - value = "saronite_node_01.m2", + fileId = "195214", + text = "ti_fieldgenerator_04.m2", + value = "ti_fieldgenerator_04.m2", }, { - fileId = "339945", - text = "saronite_node_01_pos.m2", - value = "saronite_node_01_pos.m2", + fileId = "195215", + text = "ti_fieldgenerator_05.m2", + value = "ti_fieldgenerator_05.m2", }, { - fileId = "242885", - text = "saronite_rock01.m2", - value = "saronite_rock01.m2", + fileId = "195218", + text = "ti_largewall01.m2", + value = "ti_largewall01.m2", }, { - fileId = "242886", - text = "saronite_rock02.m2", - value = "saronite_rock02.m2", + fileId = "195219", + text = "ti_largewall01_end.m2", + value = "ti_largewall01_end.m2", + }, + { + fileId = "243686", + text = "ti_lowwall01.m2", + value = "ti_lowwall01.m2", + }, + { + fileId = "243687", + text = "ti_lowwall02.m2", + value = "ti_lowwall02.m2", + }, + { + fileId = "243688", + text = "ti_maintower.m2", + value = "ti_maintower.m2", + }, + { + fileId = "243689", + text = "ti_maintower02.m2", + value = "ti_maintower02.m2", + }, + { + fileId = "243690", + text = "ti_mid01.m2", + value = "ti_mid01.m2", + }, + { + fileId = "243691", + text = "ti_mid02.m2", + value = "ti_mid02.m2", + }, + { + fileId = "243692", + text = "ti_mid03.m2", + value = "ti_mid03.m2", + }, + { + fileId = "243693", + text = "ti_mid04.m2", + value = "ti_mid04.m2", + }, + { + fileId = "243694", + text = "ti_mid05.m2", + value = "ti_mid05.m2", + }, + { + fileId = "243695", + text = "ti_mid06.m2", + value = "ti_mid06.m2", + }, + { + fileId = "195220", + text = "ti_mountainbridge01.m2", + value = "ti_mountainbridge01.m2", + }, + { + fileId = "195221", + text = "ti_mountainbridge02.m2", + value = "ti_mountainbridge02.m2", + }, + { + fileId = "195222", + text = "ti_mountainbridge03.m2", + value = "ti_mountainbridge03.m2", + }, + { + fileId = "195223", + text = "ti_mountainstairs01.m2", + value = "ti_mountainstairs01.m2", + }, + { + fileId = "195224", + text = "ti_obelisk01.m2", + value = "ti_obelisk01.m2", + }, + { + fileId = "243696", + text = "ti_pillar01.m2", + value = "ti_pillar01.m2", + }, + { + fileId = "243697", + text = "ti_pillar02.m2", + value = "ti_pillar02.m2", + }, + { + fileId = "243698", + text = "ti_pillar04.m2", + value = "ti_pillar04.m2", + }, + { + fileId = "243699", + text = "ti_resurrection_off_01.m2", + value = "ti_resurrection_off_01.m2", + }, + { + fileId = "243700", + text = "ti_resurrection_on_01.m2", + value = "ti_resurrection_on_01.m2", + }, + { + fileId = "195228", + text = "ti_roadbroken01.m2", + value = "ti_roadbroken01.m2", + }, + { + fileId = "195229", + text = "ti_roadbroken02.m2", + value = "ti_roadbroken02.m2", + }, + { + fileId = "195230", + text = "ti_roadcolumn01.m2", + value = "ti_roadcolumn01.m2", + }, + { + fileId = "195231", + text = "ti_roadcolumn02.m2", + value = "ti_roadcolumn02.m2", + }, + { + fileId = "195232", + text = "ti_roadcolumn03.m2", + value = "ti_roadcolumn03.m2", + }, + { + fileId = "195233", + text = "ti_roadcolumnarchpiece.m2", + value = "ti_roadcolumnarchpiece.m2", + }, + { + fileId = "195234", + text = "ti_roadcolumnbroken.m2", + value = "ti_roadcolumnbroken.m2", + }, + { + fileId = "195235", + text = "ti_roadcolumnpiece.m2", + value = "ti_roadcolumnpiece.m2", + }, + { + fileId = "195237", + text = "ti_roadcurbbroken01.m2", + value = "ti_roadcurbbroken01.m2", + }, + { + fileId = "195238", + text = "ti_roadcurblong01.m2", + value = "ti_roadcurblong01.m2", + }, + { + fileId = "195239", + text = "ti_roadcurblong02.m2", + value = "ti_roadcurblong02.m2", + }, + { + fileId = "195240", + text = "ti_roadcurbnub01.m2", + value = "ti_roadcurbnub01.m2", + }, + { + fileId = "195241", + text = "ti_roadcurbshort01.m2", + value = "ti_roadcurbshort01.m2", + }, + { + fileId = "195242", + text = "ti_roadcurbshort02.m2", + value = "ti_roadcurbshort02.m2", + }, + { + fileId = "195243", + text = "ti_roadpiece01.m2", + value = "ti_roadpiece01.m2", + }, + { + fileId = "195244", + text = "ti_roadpiece02.m2", + value = "ti_roadpiece02.m2", + }, + { + fileId = "195245", + text = "ti_roadpiece03.m2", + value = "ti_roadpiece03.m2", + }, + { + fileId = "251464", + text = "ti_roadpiece04.m2", + value = "ti_roadpiece04.m2", + }, + { + fileId = "252767", + text = "ti_roadpiece05.m2", + value = "ti_roadpiece05.m2", + }, + { + fileId = "252841", + text = "ti_roadpiece06.m2", + value = "ti_roadpiece06.m2", }, { - fileId = "242887", - text = "saronite_slimefalls.m2", - value = "saronite_slimefalls.m2", + fileId = "252842", + text = "ti_roadpiece07.m2", + value = "ti_roadpiece07.m2", }, - }, - text = "saronite", - value = "saronite", - }, - { - children = { { - fileId = "242888", - text = "azjol_fern_01.m2", - value = "azjol_fern_01.m2", + fileId = "252843", + text = "ti_roadpiece08.m2", + value = "ti_roadpiece08.m2", }, { - fileId = "242889", - text = "azjol_fern_02.m2", - value = "azjol_fern_02.m2", + fileId = "195246", + text = "ti_roadsolid01.m2", + value = "ti_roadsolid01.m2", }, { - fileId = "242891", - text = "azjol_glowthread_blue.m2", - value = "azjol_glowthread_blue.m2", + fileId = "195247", + text = "ti_roadwall01.m2", + value = "ti_roadwall01.m2", }, { - fileId = "242892", - text = "azjol_glowthread_white.m2", - value = "azjol_glowthread_white.m2", + fileId = "195248", + text = "ti_roadwall02.m2", + value = "ti_roadwall02.m2", }, { - fileId = "242893", - text = "azjol_glowthread_white_02.m2", - value = "azjol_glowthread_white_02.m2", + fileId = "195249", + text = "ti_roadwall03.m2", + value = "ti_roadwall03.m2", }, { - fileId = "242894", - text = "azjol_glowthread_yellow.m2", - value = "azjol_glowthread_yellow.m2", + fileId = "243701", + text = "ti_roof01.m2", + value = "ti_roof01.m2", }, { - fileId = "242895", - text = "azjol_hangingfern_01.m2", - value = "azjol_hangingfern_01.m2", + fileId = "243702", + text = "ti_shrine_01.m2", + value = "ti_shrine_01.m2", }, { - fileId = "194173", - text = "azjol_mushroom01.m2", - value = "azjol_mushroom01.m2", + fileId = "243703", + text = "ti_singlepillar.m2", + value = "ti_singlepillar.m2", }, { - fileId = "194175", - text = "azjol_mushroom02.m2", - value = "azjol_mushroom02.m2", + fileId = "195251", + text = "ti_smallwall01.m2", + value = "ti_smallwall01.m2", }, { - fileId = "194176", - text = "azjol_mushroom03.m2", - value = "azjol_mushroom03.m2", + fileId = "195252", + text = "ti_smallwall01_end.m2", + value = "ti_smallwall01_end.m2", }, { - fileId = "242897", - text = "azjol_shelfmushroom_01.m2", - value = "azjol_shelfmushroom_01.m2", + fileId = "195253", + text = "ti_smallwall02.m2", + value = "ti_smallwall02.m2", }, { - fileId = "242899", - text = "azjol_shelfmushroom_03.m2", - value = "azjol_shelfmushroom_03.m2", + fileId = "195254", + text = "ti_smallwall02_end.m2", + value = "ti_smallwall02_end.m2", }, { - fileId = "242900", - text = "azjol_spore_blue_01.m2", - value = "azjol_spore_blue_01.m2", + fileId = "243704", + text = "ti_spinningpiece01.m2", + value = "ti_spinningpiece01.m2", }, { - fileId = "242902", - text = "azjol_spore_white_01.m2", - value = "azjol_spore_white_01.m2", + fileId = "243705", + text = "ti_stair.m2", + value = "ti_stair.m2", }, { - fileId = "242903", - text = "azjol_thinmushroom_01.m2", - value = "azjol_thinmushroom_01.m2", + fileId = "243706", + text = "ti_stair02.m2", + value = "ti_stair02.m2", }, { - fileId = "242904", - text = "azjol_thinmushroom_02.m2", - value = "azjol_thinmushroom_02.m2", + fileId = "243707", + text = "ti_tallwall01.m2", + value = "ti_tallwall01.m2", }, { - fileId = "242905", - text = "azjol_thinmushroom_03.m2", - value = "azjol_thinmushroom_03.m2", + fileId = "243708", + text = "ti_tallwall02.m2", + value = "ti_tallwall02.m2", }, { - fileId = "242906", - text = "azjol_thinmushroom_04.m2", - value = "azjol_thinmushroom_04.m2", + fileId = "243709", + text = "ti_tallwallcurve.m2", + value = "ti_tallwallcurve.m2", }, - }, - text = "shrubs", - value = "shrubs", - }, - { - children = { { - fileId = "194177", - text = "azjol_stairs01.m2", - value = "azjol_stairs01.m2", + fileId = "243710", + text = "ti_tallwallpillar.m2", + value = "ti_tallwallpillar.m2", }, { - fileId = "194178", - text = "azjol_stairs02.m2", - value = "azjol_stairs02.m2", + fileId = "243711", + text = "ti_top01.m2", + value = "ti_top01.m2", }, { - fileId = "242913", - text = "azjol_stairs_lg.m2", - value = "azjol_stairs_lg.m2", + fileId = "243712", + text = "ti_top02.m2", + value = "ti_top02.m2", }, { - fileId = "242914", - text = "azjol_stairs_sm.m2", - value = "azjol_stairs_sm.m2", + fileId = "243713", + text = "ti_top03.m2", + value = "ti_top03.m2", }, - }, - text = "stairs", - value = "stairs", - }, - { - children = { { - fileId = "194179", - text = "azjol_wall01.m2", - value = "azjol_wall01.m2", + fileId = "195256", + text = "ti_tower_part01.m2", + value = "ti_tower_part01.m2", }, { - fileId = "194180", - text = "azjol_wall02.m2", - value = "azjol_wall02.m2", + fileId = "195257", + text = "ti_tower_part02.m2", + value = "ti_tower_part02.m2", }, { - fileId = "242915", - text = "azjol_wall_corner.m2", - value = "azjol_wall_corner.m2", + fileId = "195258", + text = "ti_tower_part03.m2", + value = "ti_tower_part03.m2", }, { - fileId = "194181", - text = "azjol_wall_curved01.m2", - value = "azjol_wall_curved01.m2", + fileId = "195259", + text = "ti_tower_part04.m2", + value = "ti_tower_part04.m2", }, { - fileId = "242916", - text = "azjol_wall_divider.m2", - value = "azjol_wall_divider.m2", + fileId = "195260", + text = "ti_tower_part05.m2", + value = "ti_tower_part05.m2", }, { - fileId = "242917", - text = "azjol_wall_long_seg.m2", - value = "azjol_wall_long_seg.m2", + fileId = "195261", + text = "ti_tower_part06.m2", + value = "ti_tower_part06.m2", }, { - fileId = "242918", - text = "azjol_wall_long_sideangle.m2", - value = "azjol_wall_long_sideangle.m2", + fileId = "243714", + text = "ti_triangleroof01.m2", + value = "ti_triangleroof01.m2", }, { - fileId = "242919", - text = "azjol_wall_long_vertangle.m2", - value = "azjol_wall_long_vertangle.m2", + fileId = "243715", + text = "ti_triangleroof02.m2", + value = "ti_triangleroof02.m2", }, { - fileId = "194182", - text = "azjol_wallend01.m2", - value = "azjol_wallend01.m2", + fileId = "243716", + text = "ti_trim01.m2", + value = "ti_trim01.m2", }, - }, - text = "walls", - value = "walls", - }, - { - children = { { - fileId = "242920", - text = "waterfalls_azjol_uppercity.m2", - value = "waterfalls_azjol_uppercity.m2", + fileId = "243717", + text = "ti_trim02.m2", + value = "ti_trim02.m2", }, - }, - text = "waterfalls", - value = "waterfalls", - }, - }, - text = "azjol-nerub", - value = "azjol-nerub", - }, - { - children = { - { - children = { { - fileId = "194183", - text = "bt_airport_light_red_blink.m2", - value = "bt_airport_light_red_blink.m2", + fileId = "243718", + text = "ti_trim03.m2", + value = "ti_trim03.m2", }, { - fileId = "194184", - text = "bt_airport_light_white_blink.m2", - value = "bt_airport_light_white_blink.m2", + fileId = "243719", + text = "ti_trim04.m2", + value = "ti_trim04.m2", }, { - fileId = "194185", - text = "bt_airport_light_white_static.m2", - value = "bt_airport_light_white_static.m2", + fileId = "243720", + text = "ti_trim05.m2", + value = "ti_trim05.m2", }, - }, - text = "airport", - value = "airport", - }, - { - children = { { - fileId = "194189", - text = "statue_varianwynn.m2", - value = "statue_varianwynn.m2", + fileId = "243721", + text = "ti_trim06.m2", + value = "ti_trim06.m2", }, - }, - text = "alliancestatue", - value = "alliancestatue", - }, - { - children = { { - fileId = "194194", - text = "borean_barnacle_plane.m2", - value = "borean_barnacle_plane.m2", + fileId = "243722", + text = "ti_walloval01.m2", + value = "ti_walloval01.m2", }, { - fileId = "194195", - text = "borean_barnaclelg.m2", - value = "borean_barnaclelg.m2", + fileId = "243723", + text = "ti_walloval02.m2", + value = "ti_walloval02.m2", }, { - fileId = "194196", - text = "borean_barnaclesm01.m2", - value = "borean_barnaclesm01.m2", + fileId = "243724", + text = "ti_walloval03.m2", + value = "ti_walloval03.m2", }, { - fileId = "194197", - text = "borean_barnaclesm02.m2", - value = "borean_barnaclesm02.m2", + fileId = "195263", + text = "ti_waygate_01.m2", + value = "ti_waygate_01.m2", }, { - fileId = "194198", - text = "borean_barnaclesm03.m2", - value = "borean_barnaclesm03.m2", + fileId = "243725", + text = "ti_weathergenerator.m2", + value = "ti_weathergenerator.m2", }, { - fileId = "194199", - text = "borean_starfish.m2", - value = "borean_starfish.m2", + fileId = "243726", + text = "ti_weathergenerator_broken.m2", + value = "ti_weathergenerator_broken.m2", }, }, - text = "barnacles", - value = "barnacles", + text = "titan", + value = "titan", }, { children = { { - fileId = "194201", - text = "borean_deadorca_01.m2", - value = "borean_deadorca_01.m2", + children = { + { + fileId = "195269", + text = "ts_crabbasket_01.m2", + value = "ts_crabbasket_01.m2", + }, + { + fileId = "195270", + text = "ts_fishingbasket_01.m2", + value = "ts_fishingbasket_01.m2", + }, + }, + text = "crate", + value = "crate", }, { - fileId = "194202", - text = "borean_deadorca_02.m2", - value = "borean_deadorca_02.m2", + children = { + { + fileId = "195274", + text = "ts_dock_01.m2", + value = "ts_dock_01.m2", + }, + }, + text = "dock", + value = "dock", }, { - fileId = "194204", - text = "borean_seaweed_01.m2", - value = "borean_seaweed_01.m2", + children = { + { + fileId = "195278", + text = "ts_fishingpole_01.m2", + value = "ts_fishingpole_01.m2", + }, + }, + text = "fishing", + value = "fishing", }, { - fileId = "194205", - text = "borean_seaweed_02.m2", - value = "borean_seaweed_02.m2", + children = { + { + fileId = "195286", + text = "ts_fishlight.m2", + value = "ts_fishlight.m2", + }, + }, + text = "fishlamp", + value = "fishlamp", }, { - fileId = "194206", - text = "borean_seaweed_03.m2", - value = "borean_seaweed_03.m2", + children = { + { + fileId = "195290", + text = "ts_log_pile_01.m2", + value = "ts_log_pile_01.m2", + }, + { + fileId = "195292", + text = "ts_log_pile_snowed_01.m2", + value = "ts_log_pile_snowed_01.m2", + }, + }, + text = "logs", + value = "logs", }, { - fileId = "194208", - text = "borean_starfish_01.m2", - value = "borean_starfish_01.m2", + children = { + { + fileId = "195293", + text = "ts_fence01.m2", + value = "ts_fence01.m2", + }, + { + fileId = "195294", + text = "ts_fence02.m2", + value = "ts_fence02.m2", + }, + { + fileId = "195295", + text = "ts_light02.m2", + value = "ts_light02.m2", + }, + { + fileId = "195297", + text = "ts_tarp_01.m2", + value = "ts_tarp_01.m2", + }, + { + fileId = "195299", + text = "ts_tarp_02.m2", + value = "ts_tarp_02.m2", + }, + }, + text = "misc", + value = "misc", }, - }, - text = "beach", - value = "beach", - }, - { - children = { { - fileId = "242921", - text = "broken_bridge_pillar.m2", - value = "broken_bridge_pillar.m2", + fileId = "195304", + text = "ts_long_table_02.m2", + value = "ts_long_table_02.m2", }, }, - text = "bridgepillar", - value = "bridgepillar", + text = "tuskar", + value = "tuskar", }, { children = { { - fileId = "194211", - text = "borean_bush_01.m2", - value = "borean_bush_01.m2", + children = { + { + fileId = "195306", + text = "ts_banner_01.m2", + value = "ts_banner_01.m2", + }, + }, + text = "banner", + value = "banner", }, { - fileId = "194213", - text = "borean_bush_02.m2", - value = "borean_bush_02.m2", + children = { + { + fileId = "195307", + text = "ts_chair_01.m2", + value = "ts_chair_01.m2", + }, + }, + text = "chairs", + value = "chairs", }, { - fileId = "194215", - text = "borean_bush_04.m2", - value = "borean_bush_04.m2", + children = { + { + fileId = "195309", + text = "ts_crabbasket_empty01.m2", + value = "ts_crabbasket_empty01.m2", + }, + { + fileId = "195310", + text = "ts_fishingbasket_empty_02.m2", + value = "ts_fishingbasket_empty_02.m2", + }, + { + fileId = "195311", + text = "ts_fishingline_01.m2", + value = "ts_fishingline_01.m2", + }, + }, + text = "fishing", + value = "fishing", }, { - fileId = "194216", - text = "borean_bush_05.m2", - value = "borean_bush_05.m2", + children = { + { + fileId = "195314", + text = "ts_anvil_01.m2", + value = "ts_anvil_01.m2", + }, + { + fileId = "195316", + text = "ts_forge_01.m2", + value = "ts_forge_01.m2", + }, + }, + text = "forge", + value = "forge", + }, + { + children = { + { + fileId = "195317", + text = "ts_giantnet01.m2", + value = "ts_giantnet01.m2", + }, + { + fileId = "195318", + text = "ts_giantnet01destroyed.m2", + value = "ts_giantnet01destroyed.m2", + }, + { + fileId = "195319", + text = "ts_giantnet02.m2", + value = "ts_giantnet02.m2", + }, + { + fileId = "195320", + text = "ts_giantnet02destroyed.m2", + value = "ts_giantnet02destroyed.m2", + }, + }, + text = "giantnets", + value = "giantnets", }, { - fileId = "194219", - text = "borean_groundcover_01.m2", - value = "borean_groundcover_01.m2", + children = { + { + fileId = "195324", + text = "ts_incenseburner_01.m2", + value = "ts_incenseburner_01.m2", + }, + }, + text = "incenseburner", + value = "incenseburner", }, { - fileId = "194221", - text = "borean_groundcover_02.m2", - value = "borean_groundcover_02.m2", + children = { + { + fileId = "195326", + text = "ts_kite_01.m2", + value = "ts_kite_01.m2", + }, + }, + text = "kites", + value = "kites", }, { - fileId = "194223", - text = "borean_groundcover_03.m2", - value = "borean_groundcover_03.m2", + children = { + { + fileId = "195329", + text = "ts_lantern01.m2", + value = "ts_lantern01.m2", + }, + { + fileId = "195330", + text = "ts_light.m2", + value = "ts_light.m2", + }, + { + fileId = "195331", + text = "ts_lighthanging.m2", + value = "ts_lighthanging.m2", + }, + { + fileId = "195332", + text = "ts_lightpole.m2", + value = "ts_lightpole.m2", + }, + }, + text = "lights", + value = "lights", }, { - fileId = "194225", - text = "borean_shrub_02.m2", - value = "borean_shrub_02.m2", + children = { + { + fileId = "195338", + text = "ts_logroller_01.m2", + value = "ts_logroller_01.m2", + }, + }, + text = "logs", + value = "logs", }, { - fileId = "194226", - text = "borean_shrub_03.m2", - value = "borean_shrub_03.m2", + children = { + { + fileId = "195340", + text = "ts_mailbox_01.m2", + value = "ts_mailbox_01.m2", + }, + }, + text = "mailbox", + value = "mailbox", }, { - fileId = "194228", - text = "borean_shrub_04.m2", - value = "borean_shrub_04.m2", + children = { + { + fileId = "195342", + text = "ts_long_table_01.m2", + value = "ts_long_table_01.m2", + }, + { + fileId = "195343", + text = "ts_shorttable_01.m2", + value = "ts_shorttable_01.m2", + }, + }, + text = "tables", + value = "tables", }, { - fileId = "194230", - text = "borean_shrub_05_q.m2", - value = "borean_shrub_05_q.m2", + children = { + { + fileId = "195344", + text = "nd_tuskarrwhale.m2", + value = "nd_tuskarrwhale.m2", + }, + }, + text = "tempfootprints", + value = "tempfootprints", }, - }, - text = "bushes", - value = "bushes", - }, - { - children = { { - fileId = "194232", - text = "borean_corrupted_crystals_01.m2", - value = "borean_corrupted_crystals_01.m2", + fileId = "195346", + text = "ts_boat_01.m2", + value = "ts_boat_01.m2", }, - }, - text = "crystals", - value = "crystals", - }, - { - children = { { - fileId = "194235", - text = "borean_bubbles_01.m2", - value = "borean_bubbles_01.m2", + fileId = "195347", + text = "ts_boat_02.m2", + value = "ts_boat_02.m2", }, { - fileId = "194238", - text = "borean_geyser_01.m2", - value = "borean_geyser_01.m2", + fileId = "195349", + text = "ts_chair_broken01.m2", + value = "ts_chair_broken01.m2", }, { - fileId = "194240", - text = "borean_geyser_02.m2", - value = "borean_geyser_02.m2", + fileId = "195350", + text = "ts_crabbasket_broken.m2", + value = "ts_crabbasket_broken.m2", }, { - fileId = "194241", - text = "borean_geyser_03.m2", - value = "borean_geyser_03.m2", + fileId = "195351", + text = "ts_dock_01_destroyed.m2", + value = "ts_dock_01_destroyed.m2", }, { - fileId = "194242", - text = "borean_geysernosteam_04.m2", - value = "borean_geysernosteam_04.m2", + fileId = "195352", + text = "ts_fishingbasket_broken02.m2", + value = "ts_fishingbasket_broken02.m2", }, { - fileId = "194243", - text = "borean_geysernosteam_05.m2", - value = "borean_geysernosteam_05.m2", + fileId = "195353", + text = "ts_fishinghook_broken.m2", + value = "ts_fishinghook_broken.m2", }, { - fileId = "194244", - text = "borean_geysersteam.m2", - value = "borean_geysersteam.m2", + fileId = "195354", + text = "ts_fishinghook_hook.m2", + value = "ts_fishinghook_hook.m2", }, { - fileId = "194246", - text = "borean_mineralpool_01.m2", - value = "borean_mineralpool_01.m2", + fileId = "195356", + text = "ts_idols_01.m2", + value = "ts_idols_01.m2", }, - }, - text = "geysers", - value = "geysers", - }, - { - children = { { - fileId = "194249", - text = "borean_towerparts.m2", - value = "borean_towerparts.m2", + fileId = "195357", + text = "ts_idols_02.m2", + value = "ts_idols_02.m2", }, - }, - text = "gnometower", - value = "gnometower", - }, - { - children = { { - fileId = "194251", - text = "borean_magnataurbed_01.m2", - value = "borean_magnataurbed_01.m2", + fileId = "195358", + text = "ts_light_broken02.m2", + value = "ts_light_broken02.m2", }, { - fileId = "194254", - text = "borean_redplant_bowl_01.m2", - value = "borean_redplant_bowl_01.m2", + fileId = "195359", + text = "ts_lighthanging02.m2", + value = "ts_lighthanging02.m2", }, { - fileId = "194255", - text = "borean_redplant_bowl_02.m2", - value = "borean_redplant_bowl_02.m2", + fileId = "195360", + text = "ts_lighthanging_broken.m2", + value = "ts_lighthanging_broken.m2", }, { - fileId = "194256", - text = "borean_redplant_burningpile_01.m2", - value = "borean_redplant_burningpile_01.m2", + fileId = "195361", + text = "ts_lightpole_broken.m2", + value = "ts_lightpole_broken.m2", }, { - fileId = "194257", - text = "borean_redplant_burningpile_02.m2", - value = "borean_redplant_burningpile_02.m2", + fileId = "195362", + text = "ts_long_table_broken02.m2", + value = "ts_long_table_broken02.m2", }, { - fileId = "194258", - text = "borean_redplant_burningpile_03.m2", - value = "borean_redplant_burningpile_03.m2", + fileId = "195364", + text = "ts_tarp_broken01.m2", + value = "ts_tarp_broken01.m2", }, + }, + text = "tuskarr", + value = "tuskarr", + }, + { + children = { { - fileId = "194260", - text = "borean_redplant_drying_01.m2", - value = "borean_redplant_drying_01.m2", + children = { + { + fileId = "195373", + text = "vr_anvil_cold_01.m2", + value = "vr_anvil_cold_01.m2", + }, + { + fileId = "195374", + text = "vr_anvil_glow_01.m2", + value = "vr_anvil_glow_01.m2", + }, + }, + text = "anvil", + value = "anvil", }, { - fileId = "194261", - text = "borean_redplant_drying_02.m2", - value = "borean_redplant_drying_02.m2", + children = { + { + fileId = "195376", + text = "vr_banner_01.m2", + value = "vr_banner_01.m2", + }, + { + fileId = "195378", + text = "vr_banner_02.m2", + value = "vr_banner_02.m2", + }, + { + fileId = "195380", + text = "vr_banner_03.m2", + value = "vr_banner_03.m2", + }, + { + fileId = "195382", + text = "vr_sea_banner_01.m2", + value = "vr_sea_banner_01.m2", + }, + { + fileId = "195383", + text = "vr_wall_banner_01.m2", + value = "vr_wall_banner_01.m2", + }, + { + fileId = "195384", + text = "vr_wall_banner_02.m2", + value = "vr_wall_banner_02.m2", + }, + { + fileId = "195385", + text = "vr_wall_banner_03.m2", + value = "vr_wall_banner_03.m2", + }, + }, + text = "banner", + value = "banner", }, { - fileId = "194262", - text = "borean_redplant_drying_03.m2", - value = "borean_redplant_drying_03.m2", + children = { + { + fileId = "195386", + text = "vr_bed_01.m2", + value = "vr_bed_01.m2", + }, + { + fileId = "195387", + text = "vr_bed_02.m2", + value = "vr_bed_02.m2", + }, + { + fileId = "195388", + text = "vr_wrecked_bed_01.m2", + value = "vr_wrecked_bed_01.m2", + }, + }, + text = "bed", + value = "bed", }, { - fileId = "194265", - text = "magnataur_axe01.m2", - value = "magnataur_axe01.m2", + children = { + { + fileId = "195393", + text = "vr_bellows_01.m2", + value = "vr_bellows_01.m2", + }, + }, + text = "bellows", + value = "bellows", }, { - fileId = "194268", - text = "magnataur_legfoot01.m2", - value = "magnataur_legfoot01.m2", + children = { + { + fileId = "195394", + text = "transport_vrykul_medium_doodad.m2", + value = "transport_vrykul_medium_doodad.m2", + }, + { + fileId = "195395", + text = "transport_vrykul_mediumlight_doodad.m2", + value = "transport_vrykul_mediumlight_doodad.m2", + }, + }, + text = "boats", + value = "boats", }, { - fileId = "194269", - text = "magnataur_legfull01.m2", - value = "magnataur_legfull01.m2", + children = { + { + fileId = "195397", + text = "vr_bookshelf_large_01.m2", + value = "vr_bookshelf_large_01.m2", + }, + { + fileId = "195398", + text = "vr_bookshelf_small_01.m2", + value = "vr_bookshelf_small_01.m2", + }, + { + fileId = "195399", + text = "vr_bookshelf_wrecked_01.m2", + value = "vr_bookshelf_wrecked_01.m2", + }, + { + fileId = "195400", + text = "vr_bookshelf_wrecked_02.m2", + value = "vr_bookshelf_wrecked_02.m2", + }, + }, + text = "bookshelf", + value = "bookshelf", }, { - fileId = "194270", - text = "magnataur_legfull02.m2", - value = "magnataur_legfull02.m2", + children = { + { + fileId = "195403", + text = "vr_brazier_01.m2", + value = "vr_brazier_01.m2", + }, + { + fileId = "243733", + text = "vr_brazier_01_blue.m2", + value = "vr_brazier_01_blue.m2", + }, + }, + text = "brazier", + value = "brazier", }, { - fileId = "194271", - text = "magnataur_legthigh01.m2", - value = "magnataur_legthigh01.m2", + children = { + { + fileId = "195405", + text = "vr_burialmound_01.m2", + value = "vr_burialmound_01.m2", + }, + { + fileId = "195406", + text = "vr_burialmound_02.m2", + value = "vr_burialmound_02.m2", + }, + }, + text = "burialmound", + value = "burialmound", }, { - fileId = "194272", - text = "magnataur_mace01.m2", - value = "magnataur_mace01.m2", + children = { + { + fileId = "195408", + text = "vr_buttress_01.m2", + value = "vr_buttress_01.m2", + }, + { + fileId = "195410", + text = "vr_buttress_snow01.m2", + value = "vr_buttress_snow01.m2", + }, + }, + text = "buttress", + value = "buttress", }, { - fileId = "194273", - text = "magnataur_ribcage01.m2", - value = "magnataur_ribcage01.m2", + children = { + { + fileId = "195413", + text = "vr_cage_01.m2", + value = "vr_cage_01.m2", + }, + { + fileId = "195414", + text = "vr_cage_01_snow.m2", + value = "vr_cage_01_snow.m2", + }, + { + fileId = "195415", + text = "vr_cage_02.m2", + value = "vr_cage_02.m2", + }, + { + fileId = "195416", + text = "vr_cage_base.m2", + value = "vr_cage_base.m2", + }, + { + fileId = "195417", + text = "vr_cage_top.m2", + value = "vr_cage_top.m2", + }, + }, + text = "cage", + value = "cage", }, { - fileId = "194274", - text = "magnataur_skull01.m2", - value = "magnataur_skull01.m2", + children = { + { + fileId = "195419", + text = "vr_candle_stand_01.m2", + value = "vr_candle_stand_01.m2", + }, + }, + text = "candles", + value = "candles", }, { - fileId = "194275", - text = "magnataur_skull02.m2", - value = "magnataur_skull02.m2", + children = { + { + fileId = "195421", + text = "vr_centerpiece_01.m2", + value = "vr_centerpiece_01.m2", + }, + { + fileId = "243735", + text = "vr_centerpiece_01blue.m2", + value = "vr_centerpiece_01blue.m2", + }, + }, + text = "centerpiece", + value = "centerpiece", }, { - fileId = "194276", - text = "magnataur_spear01.m2", - value = "magnataur_spear01.m2", + children = { + { + fileId = "195422", + text = "vr_chains_01.m2", + value = "vr_chains_01.m2", + }, + { + fileId = "195423", + text = "vr_chains_02.m2", + value = "vr_chains_02.m2", + }, + }, + text = "chains", + value = "chains", }, { - fileId = "194277", - text = "magnataur_torso01.m2", - value = "magnataur_torso01.m2", + children = { + { + fileId = "195425", + text = "vr_chair_01.m2", + value = "vr_chair_01.m2", + }, + }, + text = "chairs", + value = "chairs", }, { - fileId = "194278", - text = "magnataur_weaponbroken01.m2", - value = "magnataur_weaponbroken01.m2", + children = { + { + fileId = "195426", + text = "vr_chandelier_01.m2", + value = "vr_chandelier_01.m2", + }, + }, + text = "chandelier", + value = "chandelier", }, { - fileId = "194280", - text = "snobold_alter01.m2", - value = "snobold_alter01.m2", + children = { + { + fileId = "195428", + text = "vr_cookpot_01.m2", + value = "vr_cookpot_01.m2", + }, + { + fileId = "195429", + text = "vr_cookpot_02.m2", + value = "vr_cookpot_02.m2", + }, + { + fileId = "195430", + text = "vr_cookpot_off_01.m2", + value = "vr_cookpot_off_01.m2", + }, + }, + text = "cooking", + value = "cooking", }, { - fileId = "194281", - text = "snobold_cage_01.m2", - value = "snobold_cage_01.m2", + children = { + { + fileId = "195433", + text = "vr_bm_wood_01.m2", + value = "vr_bm_wood_01.m2", + }, + { + fileId = "195436", + text = "vr_crate_01.m2", + value = "vr_crate_01.m2", + }, + { + fileId = "195437", + text = "vr_crate_02.m2", + value = "vr_crate_02.m2", + }, + { + fileId = "195438", + text = "vr_crate_03.m2", + value = "vr_crate_03.m2", + }, + { + fileId = "195439", + text = "vr_crate_04.m2", + value = "vr_crate_04.m2", + }, + { + fileId = "195440", + text = "vr_crate_snow_01.m2", + value = "vr_crate_snow_01.m2", + }, + { + fileId = "195441", + text = "vr_crate_snow_02.m2", + value = "vr_crate_snow_02.m2", + }, + { + fileId = "195442", + text = "vr_crate_snow_03.m2", + value = "vr_crate_snow_03.m2", + }, + { + fileId = "195443", + text = "vr_wrecked_crate_01.m2", + value = "vr_wrecked_crate_01.m2", + }, + { + fileId = "195444", + text = "vr_wrecked_crate_02.m2", + value = "vr_wrecked_crate_02.m2", + }, + { + fileId = "195445", + text = "vr_wrecked_crate_snow_01.m2", + value = "vr_wrecked_crate_snow_01.m2", + }, + { + fileId = "195446", + text = "vr_wrecked_crate_snow_02.m2", + value = "vr_wrecked_crate_snow_02.m2", + }, + }, + text = "crates", + value = "crates", }, { - fileId = "194282", - text = "snobold_candle01.m2", - value = "snobold_candle01.m2", + children = { + { + fileId = "195457", + text = "vr_crestwood_01.m2", + value = "vr_crestwood_01.m2", + }, + { + fileId = "195458", + text = "vr_crestwood_02.m2", + value = "vr_crestwood_02.m2", + }, + }, + text = "crest", + value = "crest", }, { - fileId = "194283", - text = "snobold_candle02.m2", - value = "snobold_candle02.m2", + children = { + { + fileId = "195460", + text = "vr_elevator_gate.m2", + value = "vr_elevator_gate.m2", + }, + { + fileId = "195461", + text = "vr_elevator_gears.m2", + value = "vr_elevator_gears.m2", + }, + { + fileId = "195462", + text = "vr_elevator_lift.m2", + value = "vr_elevator_lift.m2", + }, + { + fileId = "195463", + text = "vr_elevator_pulley.m2", + value = "vr_elevator_pulley.m2", + }, + }, + text = "elevator", + value = "elevator", }, { - fileId = "194284", - text = "snobold_candle03.m2", - value = "snobold_candle03.m2", + children = { + { + fileId = "195464", + text = "vr_cliffpost.m2", + value = "vr_cliffpost.m2", + }, + { + fileId = "195466", + text = "vr_fence_01.m2", + value = "vr_fence_01.m2", + }, + { + fileId = "195467", + text = "vr_fence_02.m2", + value = "vr_fence_02.m2", + }, + { + fileId = "195468", + text = "vr_fence_03.m2", + value = "vr_fence_03.m2", + }, + { + fileId = "195469", + text = "vr_fence_04.m2", + value = "vr_fence_04.m2", + }, + { + fileId = "195470", + text = "vr_fence_05.m2", + value = "vr_fence_05.m2", + }, + { + fileId = "195472", + text = "vr_fence_snow02.m2", + value = "vr_fence_snow02.m2", + }, + { + fileId = "195473", + text = "vr_fence_snow04.m2", + value = "vr_fence_snow04.m2", + }, + { + fileId = "195474", + text = "vr_fence_snow05.m2", + value = "vr_fence_snow05.m2", + }, + }, + text = "fence", + value = "fence", }, { - fileId = "194285", - text = "snobold_candle04.m2", - value = "snobold_candle04.m2", + children = { + { + fileId = "195476", + text = "vr_forgefire_01.m2", + value = "vr_forgefire_01.m2", + }, + }, + text = "fires", + value = "fires", }, { - fileId = "194286", - text = "snobold_candle_group01.m2", - value = "snobold_candle_group01.m2", + children = { + { + fileId = "195481", + text = "vr_floorgrate.m2", + value = "vr_floorgrate.m2", + }, + }, + text = "floorgrate", + value = "floorgrate", }, { - fileId = "194287", - text = "snobold_candle_group02.m2", - value = "snobold_candle_group02.m2", + children = { + { + fileId = "195482", + text = "vr_gondola_pole_01.m2", + value = "vr_gondola_pole_01.m2", + }, + { + fileId = "195483", + text = "vr_gondola_wheel_02.m2", + value = "vr_gondola_wheel_02.m2", + }, + { + fileId = "195484", + text = "vr_gondola_wheel_03.m2", + value = "vr_gondola_wheel_03.m2", + }, + { + fileId = "195485", + text = "vrykul_gondola.m2", + value = "vrykul_gondola.m2", + }, + { + fileId = "195486", + text = "vrykul_gondola_02.m2", + value = "vrykul_gondola_02.m2", + }, + }, + text = "gondola", + value = "gondola", }, { - fileId = "194288", - text = "snobold_warningrock01_hibatch.m2", - value = "snobold_warningrock01_hibatch.m2", + children = { + { + fileId = "254024", + text = "vr_harpoon_02.m2", + value = "vr_harpoon_02.m2", + }, + }, + text = "harpoon", + value = "harpoon", }, { - fileId = "194289", - text = "snobold_warningrock02_hibatch.m2", - value = "snobold_warningrock02_hibatch.m2", + children = { + { + fileId = "343099", + text = "haybail_floating.m2", + value = "haybail_floating.m2", + }, + { + fileId = "195489", + text = "vr_haybail_01.m2", + value = "vr_haybail_01.m2", + }, + { + fileId = "195490", + text = "vr_straw_large_01.m2", + value = "vr_straw_large_01.m2", + }, + { + fileId = "195491", + text = "vr_straw_small_01.m2", + value = "vr_straw_small_01.m2", + }, + }, + text = "hay", + value = "hay", }, { - fileId = "194290", - text = "snobold_warningrock03.m2", - value = "snobold_warningrock03.m2", + children = { + { + fileId = "195498", + text = "vr_lamppost_01.m2", + value = "vr_lamppost_01.m2", + }, + { + fileId = "195499", + text = "vr_lamppost_02.m2", + value = "vr_lamppost_02.m2", + }, + { + fileId = "195500", + text = "vr_lamppost_03.m2", + value = "vr_lamppost_03.m2", + }, + { + fileId = "195501", + text = "vr_lamppost_snow_01.m2", + value = "vr_lamppost_snow_01.m2", + }, + { + fileId = "243737", + text = "vr_lamppost_snow_01blue.m2", + value = "vr_lamppost_snow_01blue.m2", + }, + }, + text = "lamppost", + value = "lamppost", }, - }, - text = "magnatauritems", - value = "magnatauritems", - }, - { - children = { { - fileId = "194293", - text = "borean_rock_01.m2", - value = "borean_rock_01.m2", + children = { + { + fileId = "195507", + text = "vr_chandelier_broken_01.m2", + value = "vr_chandelier_broken_01.m2", + }, + { + fileId = "195508", + text = "vr_chandelier_purple_01.m2", + value = "vr_chandelier_purple_01.m2", + }, + { + fileId = "195509", + text = "vr_hanginglight_01.m2", + value = "vr_hanginglight_01.m2", + }, + { + fileId = "243738", + text = "vr_hanginglight_01_blue.m2", + value = "vr_hanginglight_01_blue.m2", + }, + { + fileId = "195510", + text = "vr_hanginglight_02.m2", + value = "vr_hanginglight_02.m2", + }, + { + fileId = "243739", + text = "vr_hanginglight_02_blue.m2", + value = "vr_hanginglight_02_blue.m2", + }, + { + fileId = "195511", + text = "vr_hanginglight_03.m2", + value = "vr_hanginglight_03.m2", + }, + { + fileId = "243740", + text = "vr_hanginglight_03_blue.m2", + value = "vr_hanginglight_03_blue.m2", + }, + { + fileId = "195512", + text = "vr_hanginglight_broken_01.m2", + value = "vr_hanginglight_broken_01.m2", + }, + { + fileId = "195513", + text = "vr_hanginglight_purple_01.m2", + value = "vr_hanginglight_purple_01.m2", + }, + { + fileId = "195516", + text = "vr_standinglight_01.m2", + value = "vr_standinglight_01.m2", + }, + { + fileId = "195517", + text = "vr_standinglight_broken_01.m2", + value = "vr_standinglight_broken_01.m2", + }, + { + fileId = "195518", + text = "vr_standinglight_purple_01.m2", + value = "vr_standinglight_purple_01.m2", + }, + { + fileId = "195519", + text = "vr_standinglight_snow_01.m2", + value = "vr_standinglight_snow_01.m2", + }, + { + fileId = "243741", + text = "vr_standinglight_snow_blue_01.m2", + value = "vr_standinglight_snow_blue_01.m2", + }, + }, + text = "lights", + value = "lights", }, { - fileId = "194294", - text = "borean_rock_02.m2", - value = "borean_rock_02.m2", + children = { + { + fileId = "195520", + text = "vr_map_01.m2", + value = "vr_map_01.m2", + }, + { + fileId = "195521", + text = "vr_wallmap_01.m2", + value = "vr_wallmap_01.m2", + }, + }, + text = "map", + value = "map", }, { - fileId = "194295", - text = "borean_rock_03.m2", - value = "borean_rock_03.m2", + children = { + { + fileId = "195523", + text = "vr_portcullis.m2", + value = "vr_portcullis.m2", + }, + { + fileId = "195524", + text = "vr_portculliswithchain.m2", + value = "vr_portculliswithchain.m2", + }, + }, + text = "portcullis", + value = "portcullis", }, { - fileId = "194296", - text = "borean_rock_04.m2", - value = "borean_rock_04.m2", + children = { + { + fileId = "195530", + text = "vr_banner_01_q.m2", + value = "vr_banner_01_q.m2", + }, + { + fileId = "195531", + text = "vr_banner_02_q.m2", + value = "vr_banner_02_q.m2", + }, + { + fileId = "195532", + text = "vr_bones_01_q.m2", + value = "vr_bones_01_q.m2", + }, + { + fileId = "195533", + text = "vr_crate_01_q.m2", + value = "vr_crate_01_q.m2", + }, + { + fileId = "511892", + text = "vr_crate_01_q_nocol.m2", + value = "vr_crate_01_q_nocol.m2", + }, + { + fileId = "195534", + text = "vr_crystalnode_01_q.m2", + value = "vr_crystalnode_01_q.m2", + }, + { + fileId = "195535", + text = "vr_plants_01_q.m2", + value = "vr_plants_01_q.m2", + }, + { + fileId = "195536", + text = "vr_plants_02_q.m2", + value = "vr_plants_02_q.m2", + }, + { + fileId = "195537", + text = "vr_plants_03_q.m2", + value = "vr_plants_03_q.m2", + }, + { + fileId = "195538", + text = "vr_plants_04_q.m2", + value = "vr_plants_04_q.m2", + }, + { + fileId = "195539", + text = "vr_plants_05_q.m2", + value = "vr_plants_05_q.m2", + }, + { + fileId = "195540", + text = "vr_sack_01_q.m2", + value = "vr_sack_01_q.m2", + }, + { + fileId = "195541", + text = "vr_sack_02_q.m2", + value = "vr_sack_02_q.m2", + }, + { + fileId = "195542", + text = "vr_sack_03_q.m2", + value = "vr_sack_03_q.m2", + }, + { + fileId = "195543", + text = "vr_vase_01_q.m2", + value = "vr_vase_01_q.m2", + }, + { + fileId = "195544", + text = "vr_weaponrack_01_q.m2", + value = "vr_weaponrack_01_q.m2", + }, + }, + text = "quest", + value = "quest", }, { - fileId = "194297", - text = "borean_rock_05.m2", - value = "borean_rock_05.m2", + children = { + { + fileId = "195545", + text = "vr_footbridge_snow_01.m2", + value = "vr_footbridge_snow_01.m2", + }, + { + fileId = "195546", + text = "vr_roadedge_01.m2", + value = "vr_roadedge_01.m2", + }, + { + fileId = "195547", + text = "vr_roadplank_01.m2", + value = "vr_roadplank_01.m2", + }, + { + fileId = "195548", + text = "vr_roadplank_02.m2", + value = "vr_roadplank_02.m2", + }, + { + fileId = "195549", + text = "vr_roadplank_03.m2", + value = "vr_roadplank_03.m2", + }, + { + fileId = "195550", + text = "vr_roadplank_04.m2", + value = "vr_roadplank_04.m2", + }, + { + fileId = "195551", + text = "vr_roadplank_05.m2", + value = "vr_roadplank_05.m2", + }, + { + fileId = "195552", + text = "vr_roadplank_06.m2", + value = "vr_roadplank_06.m2", + }, + { + fileId = "195553", + text = "vr_roadplank_snow02.m2", + value = "vr_roadplank_snow02.m2", + }, + { + fileId = "195554", + text = "vr_roadplank_snow03.m2", + value = "vr_roadplank_snow03.m2", + }, + { + fileId = "195555", + text = "vr_roadplank_snow04.m2", + value = "vr_roadplank_snow04.m2", + }, + { + fileId = "195556", + text = "vr_roadplank_snow05.m2", + value = "vr_roadplank_snow05.m2", + }, + { + fileId = "195557", + text = "vr_roadplank_snow06.m2", + value = "vr_roadplank_snow06.m2", + }, + { + fileId = "195558", + text = "vr_roadplank_wide_01.m2", + value = "vr_roadplank_wide_01.m2", + }, + { + fileId = "195559", + text = "vr_roadplank_wide_02.m2", + value = "vr_roadplank_wide_02.m2", + }, + { + fileId = "195560", + text = "vr_roadplank_wide_03.m2", + value = "vr_roadplank_wide_03.m2", + }, + { + fileId = "195561", + text = "vr_roadplank_wide_04.m2", + value = "vr_roadplank_wide_04.m2", + }, + { + fileId = "195562", + text = "vr_roadplank_wide_snow01.m2", + value = "vr_roadplank_wide_snow01.m2", + }, + { + fileId = "195563", + text = "vr_roadplank_wide_snow02.m2", + value = "vr_roadplank_wide_snow02.m2", + }, + { + fileId = "195564", + text = "vr_roadplank_wide_snow03.m2", + value = "vr_roadplank_wide_snow03.m2", + }, + { + fileId = "195565", + text = "vr_roadplank_wide_snow04.m2", + value = "vr_roadplank_wide_snow04.m2", + }, + { + fileId = "195566", + text = "vr_roadplankandcurb_01.m2", + value = "vr_roadplankandcurb_01.m2", + }, + { + fileId = "195567", + text = "vr_roadplankandcurb_02.m2", + value = "vr_roadplankandcurb_02.m2", + }, + { + fileId = "195568", + text = "vr_roadplankandcurb_03.m2", + value = "vr_roadplankandcurb_03.m2", + }, + { + fileId = "195569", + text = "vr_roadplankandcurb_04.m2", + value = "vr_roadplankandcurb_04.m2", + }, + { + fileId = "195570", + text = "vr_roadplankandcurb_wide_01.m2", + value = "vr_roadplankandcurb_wide_01.m2", + }, + { + fileId = "195571", + text = "vr_roadplankandcurb_wide_02.m2", + value = "vr_roadplankandcurb_wide_02.m2", + }, + { + fileId = "195572", + text = "vr_roadplankandcurb_wide_04.m2", + value = "vr_roadplankandcurb_wide_04.m2", + }, + { + fileId = "195573", + text = "vr_roadplankandcurb_wide_05.m2", + value = "vr_roadplankandcurb_wide_05.m2", + }, + }, + text = "road", + value = "road", }, { - fileId = "194299", - text = "borean_rocklarge_01.m2", - value = "borean_rocklarge_01.m2", + children = { + { + fileId = "195583", + text = "vr_rubble_01.m2", + value = "vr_rubble_01.m2", + }, + { + fileId = "195584", + text = "vr_rubble_02.m2", + value = "vr_rubble_02.m2", + }, + { + fileId = "195585", + text = "vr_rubble_03.m2", + value = "vr_rubble_03.m2", + }, + }, + text = "rubble", + value = "rubble", }, { - fileId = "194301", - text = "borean_rocklarge_01_snowy.m2", - value = "borean_rocklarge_01_snowy.m2", + children = { + { + fileId = "195587", + text = "vr_rug_large_01.m2", + value = "vr_rug_large_01.m2", + }, + { + fileId = "195589", + text = "vr_rug_long_01.m2", + value = "vr_rug_long_01.m2", + }, + { + fileId = "195591", + text = "vr_rug_small_01.m2", + value = "vr_rug_small_01.m2", + }, + }, + text = "rug", + value = "rug", }, { - fileId = "194303", - text = "borean_rocklarge_02.m2", - value = "borean_rocklarge_02.m2", + children = { + { + fileId = "243742", + text = "seavrykul_dead_seaweed.m2", + value = "seavrykul_dead_seaweed.m2", + }, + }, + text = "seavrykul_dead", + value = "seavrykul_dead", }, { - fileId = "194305", - text = "borean_rocklarge_02_snowy.m2", - value = "borean_rocklarge_02_snowy.m2", + children = { + { + fileId = "195595", + text = "vr_crest_01.m2", + value = "vr_crest_01.m2", + }, + { + fileId = "195596", + text = "vr_crest_02.m2", + value = "vr_crest_02.m2", + }, + { + fileId = "195597", + text = "vr_crest_03.m2", + value = "vr_crest_03.m2", + }, + { + fileId = "195598", + text = "vr_crestshield_01.m2", + value = "vr_crestshield_01.m2", + }, + { + fileId = "195599", + text = "vr_crestshield_02.m2", + value = "vr_crestshield_02.m2", + }, + { + fileId = "195600", + text = "vr_crestshield_03.m2", + value = "vr_crestshield_03.m2", + }, + { + fileId = "195602", + text = "vr_shield_01.m2", + value = "vr_shield_01.m2", + }, + { + fileId = "195604", + text = "vr_shield_02.m2", + value = "vr_shield_02.m2", + }, + { + fileId = "195606", + text = "vr_shield_03.m2", + value = "vr_shield_03.m2", + }, + }, + text = "shield", + value = "shield", }, { - fileId = "194307", - text = "borean_rocklarge_03.m2", - value = "borean_rocklarge_03.m2", + children = { + { + fileId = "195607", + text = "vr_signpost_01.m2", + value = "vr_signpost_01.m2", + }, + { + fileId = "195608", + text = "vr_signpost_sign_01.m2", + value = "vr_signpost_sign_01.m2", + }, + { + fileId = "195609", + text = "vr_signpost_snow01.m2", + value = "vr_signpost_snow01.m2", + }, + }, + text = "signs", + value = "signs", }, { - fileId = "194309", - text = "borean_rocklarge_03_snowy.m2", - value = "borean_rocklarge_03_snowy.m2", + children = { + { + fileId = "352121", + text = "valgarde_skulls.m2", + value = "valgarde_skulls.m2", + }, + { + fileId = "361124", + text = "valgarde_skulls02.m2", + value = "valgarde_skulls02.m2", + }, + }, + text = "skulls", + value = "skulls", }, { - fileId = "194310", - text = "borean_rocklarge_04.m2", - value = "borean_rocklarge_04.m2", + children = { + { + fileId = "195613", + text = "vr_utgardepinnaclesnow_01.m2", + value = "vr_utgardepinnaclesnow_01.m2", + }, + }, + text = "snow", + value = "snow", }, { - fileId = "194311", - text = "borean_rocklarge_04_snowy.m2", - value = "borean_rocklarge_04_snowy.m2", + children = { + { + fileId = "195614", + text = "vr_bm_spike_01.m2", + value = "vr_bm_spike_01.m2", + }, + }, + text = "spike", + value = "spike", }, { - fileId = "194312", - text = "borean_rocklarge_05.m2", - value = "borean_rocklarge_05.m2", + children = { + { + fileId = "195619", + text = "vr_destroyed_table_01.m2", + value = "vr_destroyed_table_01.m2", + }, + { + fileId = "195620", + text = "vr_maptable_01.m2", + value = "vr_maptable_01.m2", + }, + { + fileId = "243743", + text = "vr_maptable_02.m2", + value = "vr_maptable_02.m2", + }, + { + fileId = "195621", + text = "vr_table_large_01.m2", + value = "vr_table_large_01.m2", + }, + { + fileId = "195622", + text = "vr_table_medium_01.m2", + value = "vr_table_medium_01.m2", + }, + { + fileId = "195623", + text = "vr_table_small_01.m2", + value = "vr_table_small_01.m2", + }, + { + fileId = "195624", + text = "vr_table_small_02.m2", + value = "vr_table_small_02.m2", + }, + }, + text = "table", + value = "table", }, { - fileId = "194313", - text = "borean_rocklarge_05_snowy.m2", - value = "borean_rocklarge_05_snowy.m2", + children = { + { + fileId = "195632", + text = "vr_tent_01.m2", + value = "vr_tent_01.m2", + }, + }, + text = "tent", + value = "tent", }, { - fileId = "194314", - text = "borean_rocklarge_06.m2", - value = "borean_rocklarge_06.m2", + children = { + { + fileId = "195633", + text = "vr_torch_01.m2", + value = "vr_torch_01.m2", + }, + { + fileId = "243744", + text = "vr_torch_01_blue.m2", + value = "vr_torch_01_blue.m2", + }, + { + fileId = "195634", + text = "vr_torch_broken_01.m2", + value = "vr_torch_broken_01.m2", + }, + { + fileId = "195635", + text = "vr_torch_broken_snow01.m2", + value = "vr_torch_broken_snow01.m2", + }, + { + fileId = "195637", + text = "vr_torch_snow01.m2", + value = "vr_torch_snow01.m2", + }, + }, + text = "torch", + value = "torch", }, { - fileId = "194315", - text = "borean_rocklarge_07.m2", - value = "borean_rocklarge_07.m2", + children = { + { + fileId = "195639", + text = "vr_trough.m2", + value = "vr_trough.m2", + }, + }, + text = "trough", + value = "trough", }, { - fileId = "194316", - text = "borean_rocklarge_08.m2", - value = "borean_rocklarge_08.m2", + children = { + { + fileId = "195643", + text = "vr_wagon_01.m2", + value = "vr_wagon_01.m2", + }, + { + fileId = "195645", + text = "vr_wagon_snow_01.m2", + value = "vr_wagon_snow_01.m2", + }, + }, + text = "wagon", + value = "wagon", }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { { - fileId = "194318", - text = "borean_rope_01.m2", - value = "borean_rope_01.m2", + children = { + { + fileId = "195650", + text = "vr_wallarch.m2", + value = "vr_wallarch.m2", + }, + { + fileId = "195651", + text = "vr_wallarch_snow.m2", + value = "vr_wallarch_snow.m2", + }, + }, + text = "wallarch", + value = "wallarch", }, - }, - text = "ropes", - value = "ropes", - }, - { - children = { { - fileId = "343852", - text = "nd_scourgewalls_skulls.m2", - value = "nd_scourgewalls_skulls.m2", + children = { + { + fileId = "195657", + text = "vr_crestaxe_01.m2", + value = "vr_crestaxe_01.m2", + }, + { + fileId = "195658", + text = "vr_crestaxe_02.m2", + value = "vr_crestaxe_02.m2", + }, + { + fileId = "195659", + text = "vr_crestsword_01.m2", + value = "vr_crestsword_01.m2", + }, + }, + text = "weapons", + value = "weapons", }, }, - text = "scourgewalls", - value = "scourgewalls", + text = "vrykul", + value = "vrykul", }, { children = { { - fileId = "194320", - text = "borean_snowpile_01.m2", - value = "borean_snowpile_01.m2", + fileId = "195664", + text = "northrendfrozenwaterfall_short.m2", + value = "northrendfrozenwaterfall_short.m2", }, { - fileId = "194321", - text = "borean_snowpile_02.m2", - value = "borean_snowpile_02.m2", + fileId = "195665", + text = "northrendfrozenwaterfall_stormpeaks.m2", + value = "northrendfrozenwaterfall_stormpeaks.m2", }, { - fileId = "194322", - text = "borean_snowpile_03.m2", - value = "borean_snowpile_03.m2", + fileId = "195666", + text = "northrendfrozenwaterfall_tall.m2", + value = "northrendfrozenwaterfall_tall.m2", }, { - fileId = "194323", - text = "borean_snowpile_04.m2", - value = "borean_snowpile_04.m2", + fileId = "195667", + text = "northrendfrozenwaterfall_wide.m2", + value = "northrendfrozenwaterfall_wide.m2", }, - }, - text = "snowpiles", - value = "snowpiles", - }, - { - children = { { - fileId = "194324", - text = "borean_flag_03.m2", - value = "borean_flag_03.m2", + fileId = "195674", + text = "waterfalls_set1_high.m2", + value = "waterfalls_set1_high.m2", }, { - fileId = "194325", - text = "borean_flag_04.m2", - value = "borean_flag_04.m2", + fileId = "195675", + text = "waterfalls_set1_high_hat.m2", + value = "waterfalls_set1_high_hat.m2", }, { - fileId = "194326", - text = "borean_flag_05.m2", - value = "borean_flag_05.m2", + fileId = "195676", + text = "waterfalls_set1_high_ripples.m2", + value = "waterfalls_set1_high_ripples.m2", }, { - fileId = "194327", - text = "borean_flags_01.m2", - value = "borean_flags_01.m2", + fileId = "195677", + text = "waterfalls_set1_low.m2", + value = "waterfalls_set1_low.m2", }, { - fileId = "194329", - text = "borean_flags_02.m2", - value = "borean_flags_02.m2", + fileId = "195678", + text = "waterfalls_set1_low_hat.m2", + value = "waterfalls_set1_low_hat.m2", }, - }, - text = "stoneflags", - value = "stoneflags", - }, - { - children = { { - fileId = "194333", - text = "borean_tuskarrstatue_01.m2", - value = "borean_tuskarrstatue_01.m2", + fileId = "195679", + text = "waterfalls_set1_low_ripples.m2", + value = "waterfalls_set1_low_ripples.m2", }, { - fileId = "194334", - text = "borean_tuskarrstatue_03.m2", - value = "borean_tuskarrstatue_03.m2", + fileId = "195680", + text = "waterfalls_set1_med.m2", + value = "waterfalls_set1_med.m2", }, { - fileId = "194335", - text = "borean_tuskarrstatue_broken_01.m2", - value = "borean_tuskarrstatue_broken_01.m2", + fileId = "195681", + text = "waterfalls_set1_med_hat.m2", + value = "waterfalls_set1_med_hat.m2", }, - }, - text = "stoneheads", - value = "stoneheads", - }, - }, - text = "boreantundra", - value = "boreantundra", - }, - { - children = { - { - children = { { - fileId = "242922", - text = "chamber_lavafalls_01.m2", - value = "chamber_lavafalls_01.m2", + fileId = "195682", + text = "waterfalls_set1_med_ripples.m2", + value = "waterfalls_set1_med_ripples.m2", }, { - fileId = "242923", - text = "chamber_lavafalls_02.m2", - value = "chamber_lavafalls_02.m2", + fileId = "243745", + text = "waterfalls_set2_high_hat.m2", + value = "waterfalls_set2_high_hat.m2", }, { - fileId = "242924", - text = "chamber_lavafalls_03.m2", - value = "chamber_lavafalls_03.m2", + fileId = "250175", + text = "waterfalls_set2_high_hat_flat.m2", + value = "waterfalls_set2_high_hat_flat.m2", }, { - fileId = "242925", - text = "chamber_lavafalls_04.m2", - value = "chamber_lavafalls_04.m2", + fileId = "243746", + text = "waterfalls_set2_med.m2", + value = "waterfalls_set2_med.m2", }, { - fileId = "242926", - text = "chamber_lavafalls_05.m2", - value = "chamber_lavafalls_05.m2", + fileId = "243747", + text = "waterfalls_set2_med_chop.m2", + value = "waterfalls_set2_med_chop.m2", }, { - fileId = "242927", - text = "chamber_lavafalls_06.m2", - value = "chamber_lavafalls_06.m2", + fileId = "243748", + text = "waterfalls_set2_med_doublewide.m2", + value = "waterfalls_set2_med_doublewide.m2", }, { - fileId = "242928", - text = "chamber_lavafountain01.m2", - value = "chamber_lavafountain01.m2", + fileId = "243749", + text = "waterfalls_set2_med_doublewide_short.m2", + value = "waterfalls_set2_med_doublewide_short.m2", }, - }, - text = "aspects_lavafalls", - value = "aspects_lavafalls", - }, - }, - text = "chamber_aspects_black", - value = "chamber_aspects_black", - }, - { - children = { - { - children = { { - fileId = "194337", - text = "coldarraberry_bush_01.m2", - value = "coldarraberry_bush_01.m2", + fileId = "243750", + text = "waterfalls_set2_med_doublewide_withchop.m2", + value = "waterfalls_set2_med_doublewide_withchop.m2", }, { - fileId = "194338", - text = "coldarrafrosty_bush01.m2", - value = "coldarrafrosty_bush01.m2", + fileId = "243751", + text = "waterfalls_set2_med_short.m2", + value = "waterfalls_set2_med_short.m2", }, - }, - text = "bushes", - value = "bushes", - }, - { - children = { { - fileId = "194339", - text = "camouflagebubble_coldarra.m2", - value = "camouflagebubble_coldarra.m2", + fileId = "243752", + text = "waterfalls_set2_med_tall.m2", + value = "waterfalls_set2_med_tall.m2", }, - }, - text = "camouflagebubble", - value = "camouflagebubble", - }, - { - fileId = "194345", - text = "coldarralocus.m2", - value = "coldarralocus.m2", - }, - { - children = { { - fileId = "194348", - text = "coldarratree_stump01.m2", - value = "coldarratree_stump01.m2", + fileId = "243753", + text = "waterfalls_set2_med_tall_withchop.m2", + value = "waterfalls_set2_med_tall_withchop.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "coldarra", - value = "coldarra", - }, - { - children = { - { - children = { { - fileId = "242931", - text = "camouflagebubble_crystalsong.m2", - value = "camouflagebubble_crystalsong.m2", + fileId = "243754", + text = "waterfalls_set2_med_top.m2", + value = "waterfalls_set2_med_top.m2", }, - }, - text = "bubble", - value = "bubble", - }, - { - children = { { - fileId = "194351", - text = "crystalsong_rocka.m2", - value = "crystalsong_rocka.m2", + fileId = "243755", + text = "waterfalls_set2_med_withchop.m2", + value = "waterfalls_set2_med_withchop.m2", }, { - fileId = "194352", - text = "crystalsong_rockb.m2", - value = "crystalsong_rockb.m2", + fileId = "243756", + text = "waterfalls_set2_rapids_divided.m2", + value = "waterfalls_set2_rapids_divided.m2", }, { - fileId = "194353", - text = "crystalsong_rockc.m2", - value = "crystalsong_rockc.m2", + fileId = "243757", + text = "waterfalls_set2_rapids_long.m2", + value = "waterfalls_set2_rapids_long.m2", }, { - fileId = "194354", - text = "crystalsong_rockd.m2", - value = "crystalsong_rockd.m2", + fileId = "243758", + text = "waterfalls_set2_rapids_short.m2", + value = "waterfalls_set2_rapids_short.m2", }, { - fileId = "194356", - text = "crystalsongaspenrock01.m2", - value = "crystalsongaspenrock01.m2", + fileId = "243759", + text = "waterfalls_set2_wide.m2", + value = "waterfalls_set2_wide.m2", }, { - fileId = "194357", - text = "crystalsongaspenrock02.m2", - value = "crystalsongaspenrock02.m2", + fileId = "243760", + text = "waterfalls_set2_wide_chop.m2", + value = "waterfalls_set2_wide_chop.m2", }, { - fileId = "194358", - text = "crystalsongaspenrock03.m2", - value = "crystalsongaspenrock03.m2", + fileId = "243761", + text = "waterfalls_set2_wide_short.m2", + value = "waterfalls_set2_wide_short.m2", }, { - fileId = "194359", - text = "crystalsongaspenrock04.m2", - value = "crystalsongaspenrock04.m2", + fileId = "243762", + text = "waterfalls_set2_wide_tall.m2", + value = "waterfalls_set2_wide_tall.m2", }, { - fileId = "194360", - text = "crystalsongaspenrock05.m2", - value = "crystalsongaspenrock05.m2", + fileId = "243763", + text = "waterfalls_set2_wide_tall_chop.m2", + value = "waterfalls_set2_wide_tall_chop.m2", }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + children = { { - fileId = "194361", - text = "crystalsongaspenrock06.m2", - value = "crystalsongaspenrock06.m2", + fileId = "195692", + text = "orc_fortress_elevator01.m2", + value = "orc_fortress_elevator01.m2", }, { - fileId = "194363", - text = "crystalsongmagicrock01.m2", - value = "crystalsongmagicrock01.m2", + fileId = "195693", + text = "orc_ship_broken_front_01.m2", + value = "orc_ship_broken_front_01.m2", }, { - fileId = "194364", - text = "crystalsongmagicrock02.m2", - value = "crystalsongmagicrock02.m2", + fileId = "195694", + text = "orc_ship_broken_ropes_01.m2", + value = "orc_ship_broken_ropes_01.m2", }, { - fileId = "194365", - text = "crystalsongmagicrock03.m2", - value = "crystalsongmagicrock03.m2", + fileId = "195695", + text = "orc_ship_broken_sail_01.m2", + value = "orc_ship_broken_sail_01.m2", }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { { - fileId = "242933", - text = "crystalsong_ruins_column_01.m2", - value = "crystalsong_ruins_column_01.m2", + fileId = "195696", + text = "worc_barricade.m2", + value = "worc_barricade.m2", }, { - fileId = "242934", - text = "crystalsong_ruins_ramp_01.m2", - value = "crystalsong_ruins_ramp_01.m2", + fileId = "195697", + text = "worc_excavationcrane.m2", + value = "worc_excavationcrane.m2", + }, + { + fileId = "195698", + text = "worc_minemachine.m2", + value = "worc_minemachine.m2", }, }, - text = "ruins", - value = "ruins", + text = "winterorc", + value = "winterorc", }, { children = { { - fileId = "194366", - text = "crystalsong_glow01.m2", - value = "crystalsong_glow01.m2", + fileId = "195703", + text = "wolvar_anvil.m2", + value = "wolvar_anvil.m2", }, { - fileId = "194368", - text = "crystalsong_sparkles01.m2", - value = "crystalsong_sparkles01.m2", + fileId = "195704", + text = "wolvar_anvil_dragonblight.m2", + value = "wolvar_anvil_dragonblight.m2", }, { - fileId = "194369", - text = "crystalsong_sparkles02.m2", - value = "crystalsong_sparkles02.m2", + fileId = "195706", + text = "wolvar_cage01.m2", + value = "wolvar_cage01.m2", }, { - fileId = "194370", - text = "crystalsong_sparkles03.m2", - value = "crystalsong_sparkles03.m2", + fileId = "195707", + text = "wolvar_cage01_dragonblight.m2", + value = "wolvar_cage01_dragonblight.m2", }, - }, - text = "sparkles", - value = "sparkles", - }, - { - children = { { - fileId = "242936", - text = "crystallineheartwood01.m2", - value = "crystallineheartwood01.m2", + fileId = "195709", + text = "wolvar_coals01.m2", + value = "wolvar_coals01.m2", }, { - fileId = "194409", - text = "crystalsongaspenbush01.m2", - value = "crystalsongaspenbush01.m2", + fileId = "195710", + text = "wolvar_coals02.m2", + value = "wolvar_coals02.m2", }, { - fileId = "194410", - text = "crystalsongaspenbush02.m2", - value = "crystalsongaspenbush02.m2", + fileId = "195712", + text = "wolvar_cookpot.m2", + value = "wolvar_cookpot.m2", }, { - fileId = "194411", - text = "crystalsongaspentree01.m2", - value = "crystalsongaspentree01.m2", + fileId = "195714", + text = "wolvar_cookpot_dragonblight.m2", + value = "wolvar_cookpot_dragonblight.m2", }, { - fileId = "194412", - text = "crystalsongaspentree02.m2", - value = "crystalsongaspentree02.m2", + fileId = "195715", + text = "wolvar_doorway01.m2", + value = "wolvar_doorway01.m2", }, { - fileId = "194413", - text = "crystalsongaspentree03.m2", - value = "crystalsongaspentree03.m2", + fileId = "195716", + text = "wolvar_doorway01_sholazar.m2", + value = "wolvar_doorway01_sholazar.m2", }, { - fileId = "194414", - text = "crystalsongaspentree04.m2", - value = "crystalsongaspentree04.m2", + fileId = "195717", + text = "wolvar_doorway01_snowy.m2", + value = "wolvar_doorway01_snowy.m2", }, { - fileId = "194415", - text = "crystalsongaspentree05.m2", - value = "crystalsongaspentree05.m2", + fileId = "195718", + text = "wolvar_forge.m2", + value = "wolvar_forge.m2", }, { - fileId = "194416", - text = "crystalsongaspentree06.m2", - value = "crystalsongaspentree06.m2", + fileId = "195721", + text = "wolvar_god_bot.m2", + value = "wolvar_god_bot.m2", }, { - fileId = "194417", - text = "crystalsongaspentree07.m2", - value = "crystalsongaspentree07.m2", + fileId = "195722", + text = "wolvar_god_protodragon.m2", + value = "wolvar_god_protodragon.m2", }, { - fileId = "242943", - text = "crystalsongaspentree08.m2", - value = "crystalsongaspentree08.m2", + fileId = "195723", + text = "wolvar_god_shoveltusk.m2", + value = "wolvar_god_shoveltusk.m2", }, { - fileId = "194418", - text = "crystalsongbush01.m2", - value = "crystalsongbush01.m2", + fileId = "195724", + text = "wolvar_god_yeti.m2", + value = "wolvar_god_yeti.m2", }, { - fileId = "194419", - text = "crystalsongbush02.m2", - value = "crystalsongbush02.m2", + fileId = "195726", + text = "wolvar_hut01.m2", + value = "wolvar_hut01.m2", }, { - fileId = "194420", - text = "crystalsongguardiantree01.m2", - value = "crystalsongguardiantree01.m2", + fileId = "195727", + text = "wolvar_hut01_sholazar.m2", + value = "wolvar_hut01_sholazar.m2", }, { - fileId = "194421", - text = "crystalsongguardiantree02.m2", - value = "crystalsongguardiantree02.m2", + fileId = "195729", + text = "wolvar_hut01_snowy.m2", + value = "wolvar_hut01_snowy.m2", }, { - fileId = "194422", - text = "crystalsongtree01.m2", - value = "crystalsongtree01.m2", + fileId = "195731", + text = "wolvar_hut02.m2", + value = "wolvar_hut02.m2", }, { - fileId = "194423", - text = "crystalsongtree02.m2", - value = "crystalsongtree02.m2", + fileId = "195733", + text = "wolvar_hut02_sholazar.m2", + value = "wolvar_hut02_sholazar.m2", }, { - fileId = "194424", - text = "crystalsongtree03.m2", - value = "crystalsongtree03.m2", + fileId = "195735", + text = "wolvar_hut02_snowy.m2", + value = "wolvar_hut02_snowy.m2", }, { - fileId = "194425", - text = "crystalsongtree04.m2", - value = "crystalsongtree04.m2", + fileId = "195736", + text = "wolvar_hut03.m2", + value = "wolvar_hut03.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "crystalsongforest", - value = "crystalsongforest", - }, - { - children = { - { - children = { { - fileId = "194455", - text = "hf_burningship_frontpiece.m2", - value = "hf_burningship_frontpiece.m2", + fileId = "195737", + text = "wolvar_hut03_sholazar.m2", + value = "wolvar_hut03_sholazar.m2", }, { - fileId = "194456", - text = "hf_burningship_mast.m2", - value = "hf_burningship_mast.m2", + fileId = "195739", + text = "wolvar_quench.m2", + value = "wolvar_quench.m2", }, { - fileId = "194457", - text = "hf_burningship_plank1.m2", - value = "hf_burningship_plank1.m2", + fileId = "195740", + text = "wolvar_quench_dragonblight.m2", + value = "wolvar_quench_dragonblight.m2", + }, + { + fileId = "195741", + text = "wolvar_spikes01.m2", + value = "wolvar_spikes01.m2", + }, + { + fileId = "195742", + text = "wolvar_spikes02.m2", + value = "wolvar_spikes02.m2", + }, + { + fileId = "195743", + text = "wolvar_spikes03.m2", + value = "wolvar_spikes03.m2", }, { - fileId = "194458", - text = "hf_burningship_plank2.m2", - value = "hf_burningship_plank2.m2", + fileId = "195745", + text = "wolvar_totem01.m2", + value = "wolvar_totem01.m2", }, { - fileId = "194459", - text = "hf_burningship_plank3.m2", - value = "hf_burningship_plank3.m2", + fileId = "195747", + text = "wolvar_totem01_dragonblight.m2", + value = "wolvar_totem01_dragonblight.m2", }, { - fileId = "194460", - text = "hf_burningship_plank4.m2", - value = "hf_burningship_plank4.m2", + fileId = "195748", + text = "wolvar_totem02.m2", + value = "wolvar_totem02.m2", }, { - fileId = "194461", - text = "hf_burningship_rail.m2", - value = "hf_burningship_rail.m2", + fileId = "195749", + text = "wolvar_totem02_dragonblight.m2", + value = "wolvar_totem02_dragonblight.m2", }, { - fileId = "194462", - text = "howlingfjord_burningship.m2", - value = "howlingfjord_burningship.m2", + fileId = "195750", + text = "wolvar_totem03.m2", + value = "wolvar_totem03.m2", }, - }, - text = "burningship", - value = "burningship", - }, - }, - text = "daggercap", - value = "daggercap", - }, - { - children = { - { - fileId = "242950", - text = "carrot_on_a_stick.m2", - value = "carrot_on_a_stick.m2", - }, - { - fileId = "242957", - text = "dalaran_airportstatue_01.m2", - value = "dalaran_airportstatue_01.m2", - }, - { - fileId = "242964", - text = "dalaran_anvil.m2", - value = "dalaran_anvil.m2", - }, - { - fileId = "242967", - text = "dalaran_aquarium_01.m2", - value = "dalaran_aquarium_01.m2", - }, - { - fileId = "242971", - text = "dalaran_assorted_counter01.m2", - value = "dalaran_assorted_counter01.m2", - }, - { - fileId = "242972", - text = "dalaran_assorted_counter02.m2", - value = "dalaran_assorted_counter02.m2", - }, - { - fileId = "242973", - text = "dalaran_banner_01.m2", - value = "dalaran_banner_01.m2", - }, - { - fileId = "242974", - text = "dalaran_banner_02.m2", - value = "dalaran_banner_02.m2", - }, - { - fileId = "242975", - text = "dalaran_banner_alliance_01.m2", - value = "dalaran_banner_alliance_01.m2", - }, - { - fileId = "242976", - text = "dalaran_banner_alliance_02.m2", - value = "dalaran_banner_alliance_02.m2", - }, - { - fileId = "242977", - text = "dalaran_banner_horde_01.m2", - value = "dalaran_banner_horde_01.m2", - }, - { - fileId = "242978", - text = "dalaran_banner_horde_02.m2", - value = "dalaran_banner_horde_02.m2", - }, - { - fileId = "242979", - text = "dalaran_banner_main_01.m2", - value = "dalaran_banner_main_01.m2", - }, - { - fileId = "242981", - text = "dalaran_bannerwall_01.m2", - value = "dalaran_bannerwall_01.m2", - }, - { - fileId = "242983", - text = "dalaran_bannerwall_02.m2", - value = "dalaran_bannerwall_02.m2", - }, - { - fileId = "242985", - text = "dalaran_bannerwall_03.m2", - value = "dalaran_bannerwall_03.m2", - }, - { - fileId = "242986", - text = "dalaran_barrel_01.m2", - value = "dalaran_barrel_01.m2", - }, - { - fileId = "242988", - text = "dalaran_bed_01.m2", - value = "dalaran_bed_01.m2", - }, - { - fileId = "242990", - text = "dalaran_bed_02.m2", - value = "dalaran_bed_02.m2", - }, - { - fileId = "242991", - text = "dalaran_beertable_01.m2", - value = "dalaran_beertable_01.m2", - }, - { - fileId = "242992", - text = "dalaran_beertable_seat_01.m2", - value = "dalaran_beertable_seat_01.m2", - }, - { - fileId = "194464", - text = "dalaran_bench01.m2", - value = "dalaran_bench01.m2", - }, - { - fileId = "194465", - text = "dalaran_bench02.m2", - value = "dalaran_bench02.m2", - }, - { - fileId = "242994", - text = "dalaran_bookcase_01.m2", - value = "dalaran_bookcase_01.m2", - }, - { - fileId = "242995", - text = "dalaran_bookcase_empty_01.m2", - value = "dalaran_bookcase_empty_01.m2", - }, - { - fileId = "242997", - text = "dalaran_buildingcrystal_01.m2", - value = "dalaran_buildingcrystal_01.m2", - }, - { - fileId = "242998", - text = "dalaran_buildingcrystal_02.m2", - value = "dalaran_buildingcrystal_02.m2", - }, - { - fileId = "242999", - text = "dalaran_buildingcrystal_02off.m2", - value = "dalaran_buildingcrystal_02off.m2", - }, - { - fileId = "243000", - text = "dalaran_cake_01.m2", - value = "dalaran_cake_01.m2", - }, - { - fileId = "243001", - text = "dalaran_cake_02.m2", - value = "dalaran_cake_02.m2", - }, - { - fileId = "243002", - text = "dalaran_cake_03.m2", - value = "dalaran_cake_03.m2", - }, - { - fileId = "243003", - text = "dalaran_cakeslice_01.m2", - value = "dalaran_cakeslice_01.m2", - }, - { - fileId = "243004", - text = "dalaran_cakeslice_02.m2", - value = "dalaran_cakeslice_02.m2", - }, - { - fileId = "243005", - text = "dalaran_cakeslice_03.m2", - value = "dalaran_cakeslice_03.m2", - }, - { - fileId = "243006", - text = "dalaran_cakeslice_04.m2", - value = "dalaran_cakeslice_04.m2", - }, - { - fileId = "243007", - text = "dalaran_cakestand_01.m2", - value = "dalaran_cakestand_01.m2", - }, - { - fileId = "243008", - text = "dalaran_cakestandlid_01.m2", - value = "dalaran_cakestandlid_01.m2", - }, - { - fileId = "194466", - text = "dalaran_chair01.m2", - value = "dalaran_chair01.m2", - }, - { - fileId = "243010", - text = "dalaran_chair_01.m2", - value = "dalaran_chair_01.m2", - }, - { - fileId = "243011", - text = "dalaran_chair_02.m2", - value = "dalaran_chair_02.m2", - }, - { - fileId = "243013", - text = "dalaran_chandelier01.m2", - value = "dalaran_chandelier01.m2", - }, - { - fileId = "243014", - text = "dalaran_chandelier01_short.m2", - value = "dalaran_chandelier01_short.m2", - }, - { - fileId = "243015", - text = "dalaran_chandelier02.m2", - value = "dalaran_chandelier02.m2", - }, - { - fileId = "243016", - text = "dalaran_chandelier02_short.m2", - value = "dalaran_chandelier02_short.m2", - }, - { - fileId = "243018", - text = "dalaran_cherryblossoms.m2", - value = "dalaran_cherryblossoms.m2", - }, - { - fileId = "243019", - text = "dalaran_cloth_counter01.m2", - value = "dalaran_cloth_counter01.m2", - }, - { - fileId = "243020", - text = "dalaran_cloth_counter02.m2", - value = "dalaran_cloth_counter02.m2", - }, - { - fileId = "243021", - text = "dalaran_cookie_01.m2", - value = "dalaran_cookie_01.m2", - }, - { - fileId = "243022", - text = "dalaran_cookie_02.m2", - value = "dalaran_cookie_02.m2", - }, - { - fileId = "243023", - text = "dalaran_cookie_03.m2", - value = "dalaran_cookie_03.m2", - }, - { - fileId = "243024", - text = "dalaran_cookie_04.m2", - value = "dalaran_cookie_04.m2", - }, - { - fileId = "243025", - text = "dalaran_cookie_05.m2", - value = "dalaran_cookie_05.m2", - }, - { - fileId = "243026", - text = "dalaran_counter_01.m2", - value = "dalaran_counter_01.m2", - }, - { - fileId = "243027", - text = "dalaran_counter_alchemy.m2", - value = "dalaran_counter_alchemy.m2", - }, - { - fileId = "243029", - text = "dalaran_crate_01.m2", - value = "dalaran_crate_01.m2", - }, - { - fileId = "243030", - text = "dalaran_crate_03.m2", - value = "dalaran_crate_03.m2", - }, - { - fileId = "243031", - text = "dalaran_crate_04.m2", - value = "dalaran_crate_04.m2", - }, - { - fileId = "243032", - text = "dalaran_craterdome.m2", - value = "dalaran_craterdome.m2", - }, - { - fileId = "243033", - text = "dalaran_crystalball_01.m2", - value = "dalaran_crystalball_01.m2", - }, - { - fileId = "243034", - text = "dalaran_cupcake_01.m2", - value = "dalaran_cupcake_01.m2", - }, - { - fileId = "243035", - text = "dalaran_cupcake_02.m2", - value = "dalaran_cupcake_02.m2", - }, - { - fileId = "243036", - text = "dalaran_cupcake_03.m2", - value = "dalaran_cupcake_03.m2", - }, - { - fileId = "243037", - text = "dalaran_cupcake_04.m2", - value = "dalaran_cupcake_04.m2", - }, - { - fileId = "243038", - text = "dalaran_doughnut_01.m2", - value = "dalaran_doughnut_01.m2", - }, - { - fileId = "243039", - text = "dalaran_doughnut_02.m2", - value = "dalaran_doughnut_02.m2", - }, - { - fileId = "243040", - text = "dalaran_doughnut_stand.m2", - value = "dalaran_doughnut_stand.m2", - }, - { - fileId = "243044", - text = "dalaran_eye_01.m2", - value = "dalaran_eye_01.m2", - }, - { - fileId = "243046", - text = "dalaran_flower_stand.m2", - value = "dalaran_flower_stand.m2", - }, - { - fileId = "243047", - text = "dalaran_forge.m2", - value = "dalaran_forge.m2", - }, - { - fileId = "243050", - text = "dalaran_forgearms.m2", - value = "dalaran_forgearms.m2", - }, - { - fileId = "243052", - text = "dalaran_forgesmelter.m2", - value = "dalaran_forgesmelter.m2", - }, - { - fileId = "243054", - text = "dalaran_forsale_01.m2", - value = "dalaran_forsale_01.m2", - }, - { - fileId = "243055", - text = "dalaran_fountain_01.m2", - value = "dalaran_fountain_01.m2", - }, - { - fileId = "243056", - text = "dalaran_fountain_02.m2", - value = "dalaran_fountain_02.m2", - }, - { - fileId = "243065", - text = "dalaran_fruit_stand.m2", - value = "dalaran_fruit_stand.m2", - }, - { - fileId = "243067", - text = "dalaran_greenhouse.m2", - value = "dalaran_greenhouse.m2", - }, - { - fileId = "243068", - text = "dalaran_greenhouse_glass.m2", - value = "dalaran_greenhouse_glass.m2", - }, - { - fileId = "243071", - text = "dalaran_guild_counter01.m2", - value = "dalaran_guild_counter01.m2", - }, - { - fileId = "243072", - text = "dalaran_guild_counter02.m2", - value = "dalaran_guild_counter02.m2", - }, - { - fileId = "243074", - text = "dalaran_guildvault_01.m2", - value = "dalaran_guildvault_01.m2", - }, - { - fileId = "243076", - text = "dalaran_hat_01.m2", - value = "dalaran_hat_01.m2", - }, - { - fileId = "243077", - text = "dalaran_helm_deepdivehelm_space.m2", - value = "dalaran_helm_deepdivehelm_space.m2", - }, - { - fileId = "243078", - text = "dalaran_helm_mail_northrend_d_01.m2", - value = "dalaran_helm_mail_northrend_d_01.m2", - }, - { - fileId = "243079", - text = "dalaran_helm_mask_plague.m2", - value = "dalaran_helm_mask_plague.m2", - }, - { - fileId = "243080", - text = "dalaran_helm_plate_northrend_d_01.m2", - value = "dalaran_helm_plate_northrend_d_01.m2", - }, - { - fileId = "243081", - text = "dalaran_helm_plate_viking_d_01.m2", - value = "dalaran_helm_plate_viking_d_01.m2", - }, - { - fileId = "243082", - text = "dalaran_helm_robe_mage_b_01.m2", - value = "dalaran_helm_robe_mage_b_01.m2", - }, - { - fileId = "243083", - text = "dalaran_helm_robe_raidmage_b_01.m2", - value = "dalaran_helm_robe_raidmage_b_01.m2", - }, - { - fileId = "243084", - text = "dalaran_helm_robe_raidmage_d_01.m2", - value = "dalaran_helm_robe_raidmage_d_01.m2", - }, - { - fileId = "243085", - text = "dalaran_helm_robe_raidmage_f_01.m2", - value = "dalaran_helm_robe_raidmage_f_01.m2", - }, - { - fileId = "243087", - text = "dalaran_inn_window.m2", - value = "dalaran_inn_window.m2", - }, - { - fileId = "243088", - text = "dalaran_jewelcounter.m2", - value = "dalaran_jewelcounter.m2", - }, - { - fileId = "194468", - text = "dalaran_lamppost01.m2", - value = "dalaran_lamppost01.m2", - }, - { - fileId = "194470", - text = "dalaran_lampwall01.m2", - value = "dalaran_lampwall01.m2", + { + fileId = "195751", + text = "wolvar_totem03_dragonblight.m2", + value = "wolvar_totem03_dragonblight.m2", + }, + { + fileId = "195752", + text = "wolvar_window01.m2", + value = "wolvar_window01.m2", + }, + { + fileId = "195753", + text = "wolvar_window01_sholazar.m2", + value = "wolvar_window01_sholazar.m2", + }, + { + fileId = "195754", + text = "wolvar_window01_snowy.m2", + value = "wolvar_window01_snowy.m2", + }, + { + fileId = "195755", + text = "wolvar_window02.m2", + value = "wolvar_window02.m2", + }, + { + fileId = "195756", + text = "wolvar_window02_sholazar.m2", + value = "wolvar_window02_sholazar.m2", + }, + { + fileId = "195757", + text = "wolvar_window02_snowy.m2", + value = "wolvar_window02_snowy.m2", + }, + }, + text = "wolvar", + value = "wolvar", }, { - fileId = "243090", - text = "dalaran_longbanners01.m2", - value = "dalaran_longbanners01.m2", + children = { + { + fileId = "195758", + text = "crashedzeppelinpiece_03.m2", + value = "crashedzeppelinpiece_03.m2", + }, + { + fileId = "195759", + text = "crashedzeppelinpiece_04.m2", + value = "crashedzeppelinpiece_04.m2", + }, + }, + text = "zeppelin", + value = "zeppelin", }, + }, + text = "generic", + value = "generic", + }, + { + children = { { - fileId = "243091", - text = "dalaran_mageportal_01.m2", - value = "dalaran_mageportal_01.m2", + children = { + { + fileId = "243767", + text = "grizzly_bearshrine_snow.m2", + value = "grizzly_bearshrine_snow.m2", + }, + { + fileId = "195764", + text = "grizzly_furbolgbearshrine.m2", + value = "grizzly_furbolgbearshrine.m2", + }, + }, + text = "bearshrine", + value = "bearshrine", }, { - fileId = "243092", - text = "dalaran_magicaltrash_01.m2", - value = "dalaran_magicaltrash_01.m2", + children = { + { + fileId = "195765", + text = "grizzlyhills_furbolgroad_01.m2", + value = "grizzlyhills_furbolgroad_01.m2", + }, + { + fileId = "195766", + text = "grizzlyhills_furbolgroad_02.m2", + value = "grizzlyhills_furbolgroad_02.m2", + }, + { + fileId = "195767", + text = "grizzlyhills_furbolgroad_03.m2", + value = "grizzlyhills_furbolgroad_03.m2", + }, + { + fileId = "195768", + text = "grizzlyhills_furbolgroad_snow_01.m2", + value = "grizzlyhills_furbolgroad_snow_01.m2", + }, + { + fileId = "195769", + text = "grizzlyhills_furbolgroad_snow_02.m2", + value = "grizzlyhills_furbolgroad_snow_02.m2", + }, + { + fileId = "195770", + text = "grizzlyhills_furbolgroad_snow_03.m2", + value = "grizzlyhills_furbolgroad_snow_03.m2", + }, + { + fileId = "195773", + text = "grizzlyhills_roadlog01.m2", + value = "grizzlyhills_roadlog01.m2", + }, + }, + text = "roadlogs", + value = "roadlogs", }, { - fileId = "243093", - text = "dalaran_magicaltrash_02.m2", - value = "dalaran_magicaltrash_02.m2", + children = { + { + fileId = "195776", + text = "grizzlyhills_boulder01.m2", + value = "grizzlyhills_boulder01.m2", + }, + { + fileId = "195778", + text = "grizzlyhills_rock_01.m2", + value = "grizzlyhills_rock_01.m2", + }, + { + fileId = "195779", + text = "grizzlyhills_rock_02.m2", + value = "grizzlyhills_rock_02.m2", + }, + { + fileId = "195780", + text = "grizzlyhills_rock_03.m2", + value = "grizzlyhills_rock_03.m2", + }, + { + fileId = "195781", + text = "grizzlyhills_rock_04.m2", + value = "grizzlyhills_rock_04.m2", + }, + { + fileId = "195782", + text = "grizzlyhills_rock_large_01.m2", + value = "grizzlyhills_rock_large_01.m2", + }, + { + fileId = "195783", + text = "grizzlyhills_rock_large_02.m2", + value = "grizzlyhills_rock_large_02.m2", + }, + }, + text = "rocks", + value = "rocks", }, { - fileId = "243094", - text = "dalaran_magicaltrash_03.m2", - value = "dalaran_magicaltrash_03.m2", + children = { + { + fileId = "195784", + text = "grizzlemawtermitechunk01.m2", + value = "grizzlemawtermitechunk01.m2", + }, + { + fileId = "195785", + text = "grizzlemawtermitechunk02.m2", + value = "grizzlemawtermitechunk02.m2", + }, + { + fileId = "195786", + text = "grizzlemawtermitechunk03.m2", + value = "grizzlemawtermitechunk03.m2", + }, + { + fileId = "195787", + text = "grizzlyhills_termite_tree.m2", + value = "grizzlyhills_termite_tree.m2", + }, + { + fileId = "195790", + text = "termite_rock01.m2", + value = "termite_rock01.m2", + }, + { + fileId = "195791", + text = "termite_rock02.m2", + value = "termite_rock02.m2", + }, + { + fileId = "195793", + text = "termite_shaft.m2", + value = "termite_shaft.m2", + }, + { + fileId = "195794", + text = "termitedust.m2", + value = "termitedust.m2", + }, + }, + text = "termites", + value = "termites", }, { - fileId = "243095", - text = "dalaran_magicaltrash_04.m2", - value = "dalaran_magicaltrash_04.m2", + children = { + { + fileId = "195795", + text = "gh_trapperdraping.m2", + value = "gh_trapperdraping.m2", + }, + { + fileId = "195800", + text = "trapper_potbellystove_01.m2", + value = "trapper_potbellystove_01.m2", + }, + { + fileId = "195801", + text = "trapper_snowshoe_01.m2", + value = "trapper_snowshoe_01.m2", + }, + { + fileId = "195802", + text = "trapper_wall01.m2", + value = "trapper_wall01.m2", + }, + { + fileId = "195803", + text = "trapper_wall02.m2", + value = "trapper_wall02.m2", + }, + { + fileId = "195804", + text = "trapper_wall03.m2", + value = "trapper_wall03.m2", + }, + { + fileId = "195805", + text = "trapper_wall04.m2", + value = "trapper_wall04.m2", + }, + { + fileId = "195806", + text = "trapper_wall05.m2", + value = "trapper_wall05.m2", + }, + { + fileId = "195807", + text = "trapperfence_01.m2", + value = "trapperfence_01.m2", + }, + { + fileId = "195808", + text = "trapperfence_02.m2", + value = "trapperfence_02.m2", + }, + { + fileId = "195809", + text = "trapperfence_03.m2", + value = "trapperfence_03.m2", + }, + { + fileId = "195810", + text = "trapperfence_large01.m2", + value = "trapperfence_large01.m2", + }, + { + fileId = "195811", + text = "trapperfence_large03.m2", + value = "trapperfence_large03.m2", + }, + { + fileId = "195812", + text = "trapperlamppost_01.m2", + value = "trapperlamppost_01.m2", + }, + { + fileId = "195813", + text = "trapperlamppost_01_unlit.m2", + value = "trapperlamppost_01_unlit.m2", + }, + { + fileId = "195814", + text = "trappersignpost.m2", + value = "trappersignpost.m2", + }, + { + fileId = "195815", + text = "trappersignpost_sign.m2", + value = "trappersignpost_sign.m2", + }, + }, + text = "trappers", + value = "trappers", }, { - fileId = "243096", - text = "dalaran_painting_01.m2", - value = "dalaran_painting_01.m2", + children = { + { + fileId = "195816", + text = "gh_bridgelightbeams.m2", + value = "gh_bridgelightbeams.m2", + }, + { + fileId = "195817", + text = "grizzly_amberpinetree.m2", + value = "grizzly_amberpinetree.m2", + }, + { + fileId = "195822", + text = "grizzlyhills_blurpleflower01.m2", + value = "grizzlyhills_blurpleflower01.m2", + }, + { + fileId = "195823", + text = "grizzlyhills_blurpleflower02.m2", + value = "grizzlyhills_blurpleflower02.m2", + }, + { + fileId = "195831", + text = "grizzlyhills_bush01.m2", + value = "grizzlyhills_bush01.m2", + }, + { + fileId = "195832", + text = "grizzlyhills_bush02.m2", + value = "grizzlyhills_bush02.m2", + }, + { + fileId = "195833", + text = "grizzlyhills_bush03.m2", + value = "grizzlyhills_bush03.m2", + }, + { + fileId = "195834", + text = "grizzlyhills_bush04.m2", + value = "grizzlyhills_bush04.m2", + }, + { + fileId = "195835", + text = "grizzlyhills_bush06.m2", + value = "grizzlyhills_bush06.m2", + }, + { + fileId = "195840", + text = "grizzlyhills_clovers01.m2", + value = "grizzlyhills_clovers01.m2", + }, + { + fileId = "195841", + text = "grizzlyhills_clovers02.m2", + value = "grizzlyhills_clovers02.m2", + }, + { + fileId = "195842", + text = "grizzlyhills_clovers03.m2", + value = "grizzlyhills_clovers03.m2", + }, + { + fileId = "195845", + text = "grizzlyhills_goldshrubs01.m2", + value = "grizzlyhills_goldshrubs01.m2", + }, + { + fileId = "195847", + text = "grizzlyhills_greenflower01.m2", + value = "grizzlyhills_greenflower01.m2", + }, + { + fileId = "195848", + text = "grizzlyhills_greenflower02.m2", + value = "grizzlyhills_greenflower02.m2", + }, + { + fileId = "195854", + text = "grizzlyhills_log01.m2", + value = "grizzlyhills_log01.m2", + }, + { + fileId = "195856", + text = "grizzlyhills_log02.m2", + value = "grizzlyhills_log02.m2", + }, + { + fileId = "195858", + text = "grizzlyhills_log03.m2", + value = "grizzlyhills_log03.m2", + }, + { + fileId = "195859", + text = "grizzlyhills_log04.m2", + value = "grizzlyhills_log04.m2", + }, + { + fileId = "195860", + text = "grizzlyhills_log05.m2", + value = "grizzlyhills_log05.m2", + }, + { + fileId = "195863", + text = "grizzlyhills_mushroom01.m2", + value = "grizzlyhills_mushroom01.m2", + }, + { + fileId = "195865", + text = "grizzlyhills_mushroom02.m2", + value = "grizzlyhills_mushroom02.m2", + }, + { + fileId = "195866", + text = "grizzlyhills_mushroom03.m2", + value = "grizzlyhills_mushroom03.m2", + }, + { + fileId = "525130", + text = "grizzlyhills_mushroom03_chair.m2", + value = "grizzlyhills_mushroom03_chair.m2", + }, + { + fileId = "195867", + text = "grizzlyhills_mushroomgroup01.m2", + value = "grizzlyhills_mushroomgroup01.m2", + }, + { + fileId = "195868", + text = "grizzlyhills_mushroomgroup02.m2", + value = "grizzlyhills_mushroomgroup02.m2", + }, + { + fileId = "195869", + text = "grizzlyhills_mushroomgroup03.m2", + value = "grizzlyhills_mushroomgroup03.m2", + }, + { + fileId = "195874", + text = "grizzlyhills_redishflower01.m2", + value = "grizzlyhills_redishflower01.m2", + }, + { + fileId = "195875", + text = "grizzlyhills_redishflower02.m2", + value = "grizzlyhills_redishflower02.m2", + }, + { + fileId = "195877", + text = "grizzlyhills_root01.m2", + value = "grizzlyhills_root01.m2", + }, + { + fileId = "195878", + text = "grizzlyhills_root02.m2", + value = "grizzlyhills_root02.m2", + }, + { + fileId = "195879", + text = "grizzlyhills_root03.m2", + value = "grizzlyhills_root03.m2", + }, + { + fileId = "195880", + text = "grizzlyhills_root04.m2", + value = "grizzlyhills_root04.m2", + }, + { + fileId = "195883", + text = "grizzlyhills_ropetree01.m2", + value = "grizzlyhills_ropetree01.m2", + }, + { + fileId = "195885", + text = "grizzlyhills_sapling.m2", + value = "grizzlyhills_sapling.m2", + }, + { + fileId = "195887", + text = "grizzlyhills_shrubs01.m2", + value = "grizzlyhills_shrubs01.m2", + }, + { + fileId = "195888", + text = "grizzlyhills_shrubs02.m2", + value = "grizzlyhills_shrubs02.m2", + }, + { + fileId = "195889", + text = "grizzlyhills_shrubs03.m2", + value = "grizzlyhills_shrubs03.m2", + }, + { + fileId = "195890", + text = "grizzlyhills_tree01.m2", + value = "grizzlyhills_tree01.m2", + }, + { + fileId = "195891", + text = "grizzlyhills_tree02.m2", + value = "grizzlyhills_tree02.m2", + }, + { + fileId = "195892", + text = "grizzlyhills_tree03.m2", + value = "grizzlyhills_tree03.m2", + }, + { + fileId = "195893", + text = "grizzlyhills_tree04.m2", + value = "grizzlyhills_tree04.m2", + }, + { + fileId = "195894", + text = "grizzlyhills_tree05.m2", + value = "grizzlyhills_tree05.m2", + }, + { + fileId = "195895", + text = "grizzlyhills_tree06.m2", + value = "grizzlyhills_tree06.m2", + }, + { + fileId = "195896", + text = "grizzlyhills_tree07.m2", + value = "grizzlyhills_tree07.m2", + }, + { + fileId = "195897", + text = "grizzlyhills_tree08.m2", + value = "grizzlyhills_tree08.m2", + }, + { + fileId = "195898", + text = "grizzlyhills_tree09.m2", + value = "grizzlyhills_tree09.m2", + }, + { + fileId = "195899", + text = "grizzlyhills_tree10.m2", + value = "grizzlyhills_tree10.m2", + }, + { + fileId = "195900", + text = "grizzlyhills_tree11.m2", + value = "grizzlyhills_tree11.m2", + }, + { + fileId = "195901", + text = "grizzlyhills_tree12.m2", + value = "grizzlyhills_tree12.m2", + }, + { + fileId = "195903", + text = "grizzlyhills_treetrunk01.m2", + value = "grizzlyhills_treetrunk01.m2", + }, + { + fileId = "195904", + text = "grizzlyhills_treetrunk02.m2", + value = "grizzlyhills_treetrunk02.m2", + }, + { + fileId = "195905", + text = "grizzlyhills_treetrunk03.m2", + value = "grizzlyhills_treetrunk03.m2", + }, + { + fileId = "195906", + text = "grizzlyhills_treetrunk04.m2", + value = "grizzlyhills_treetrunk04.m2", + }, + { + fileId = "195907", + text = "grizzlyhills_treetrunk05.m2", + value = "grizzlyhills_treetrunk05.m2", + }, + { + fileId = "195908", + text = "grizzlyhills_treetrunk06.m2", + value = "grizzlyhills_treetrunk06.m2", + }, + { + fileId = "195914", + text = "grizzlyhills_tunnelbridge01.m2", + value = "grizzlyhills_tunnelbridge01.m2", + }, + { + fileId = "195917", + text = "grizzlyhills_tunneltree.m2", + value = "grizzlyhills_tunneltree.m2", + }, + { + fileId = "195921", + text = "grizzlyhills_yellowflower01.m2", + value = "grizzlyhills_yellowflower01.m2", + }, + { + fileId = "195922", + text = "grizzlyhills_yellowflower02.m2", + value = "grizzlyhills_yellowflower02.m2", + }, + { + fileId = "195924", + text = "grizzlyhillshuge_tree.m2", + value = "grizzlyhillshuge_tree.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "243097", - text = "dalaran_painting_02.m2", - value = "dalaran_painting_02.m2", + children = { + { + fileId = "195932", + text = "grizzlyhillslogmachine01.m2", + value = "grizzlyhillslogmachine01.m2", + }, + { + fileId = "195933", + text = "logrun_gate.m2", + value = "logrun_gate.m2", + }, + { + fileId = "195935", + text = "logrun_pump01.m2", + value = "logrun_pump01.m2", + }, + { + fileId = "195936", + text = "logrun_pump02.m2", + value = "logrun_pump02.m2", + }, + { + fileId = "195937", + text = "logrun_pumpelevator01.m2", + value = "logrun_pumpelevator01.m2", + }, + { + fileId = "243769", + text = "logrun_pumpelevator02.m2", + value = "logrun_pumpelevator02.m2", + }, + { + fileId = "243770", + text = "logrun_pumpelevator03.m2", + value = "logrun_pumpelevator03.m2", + }, + { + fileId = "195938", + text = "nd_grizzly_logruns_water01.m2", + value = "nd_grizzly_logruns_water01.m2", + }, + { + fileId = "195939", + text = "nd_grizzly_logruns_water02.m2", + value = "nd_grizzly_logruns_water02.m2", + }, + }, + text = "ventureco", + value = "ventureco", }, + }, + text = "grizzlyhills", + value = "grizzlyhills", + }, + { + children = { { - fileId = "243098", - text = "dalaran_painting_03.m2", - value = "dalaran_painting_03.m2", + children = { + { + fileId = "195942", + text = "tempvrykulbridge.m2", + value = "tempvrykulbridge.m2", + }, + }, + text = "bridges", + value = "bridges", }, { - fileId = "243099", - text = "dalaran_painting_04.m2", - value = "dalaran_painting_04.m2", + children = { + { + fileId = "195943", + text = "hfjord_coastcliffwaterfall_01.m2", + value = "hfjord_coastcliffwaterfall_01.m2", + }, + { + fileId = "195944", + text = "hfjord_coastcliffwaterfall_02.m2", + value = "hfjord_coastcliffwaterfall_02.m2", + }, + { + fileId = "195945", + text = "hfjord_coastcliffwaterfall_03.m2", + value = "hfjord_coastcliffwaterfall_03.m2", + }, + }, + text = "coastcliff", + value = "coastcliff", }, { - fileId = "243100", - text = "dalaran_painting_05.m2", - value = "dalaran_painting_05.m2", + children = { + { + fileId = "195946", + text = "burntground01.m2", + value = "burntground01.m2", + }, + { + fileId = "195947", + text = "burntstonetree01_vfx.m2", + value = "burntstonetree01_vfx.m2", + }, + { + fileId = "195948", + text = "burntstonetree01_vfx2.m2", + value = "burntstonetree01_vfx2.m2", + }, + { + fileId = "195949", + text = "burntstonetree07_vfx.m2", + value = "burntstonetree07_vfx.m2", + }, + { + fileId = "195950", + text = "burntstonetree08_vfx.m2", + value = "burntstonetree08_vfx.m2", + }, + { + fileId = "195951", + text = "burntstonetreefireflies_vfx.m2", + value = "burntstonetreefireflies_vfx.m2", + }, + { + fileId = "195952", + text = "burntstonetreesmoke_vfx.m2", + value = "burntstonetreesmoke_vfx.m2", + }, + }, + text = "firefx", + value = "firefx", }, { - fileId = "243101", - text = "dalaran_painting_06.m2", - value = "dalaran_painting_06.m2", + children = { + { + fileId = "195956", + text = "hfjord_fog_01.m2", + value = "hfjord_fog_01.m2", + }, + { + fileId = "195958", + text = "hfjord_fog_02.m2", + value = "hfjord_fog_02.m2", + }, + { + fileId = "195960", + text = "hfjord_fog_03.m2", + value = "hfjord_fog_03.m2", + }, + { + fileId = "195961", + text = "hfjord_fog_04.m2", + value = "hfjord_fog_04.m2", + }, + { + fileId = "243772", + text = "hfjord_fog_05.m2", + value = "hfjord_fog_05.m2", + }, + }, + text = "fog", + value = "fog", }, { - fileId = "243102", - text = "dalaran_painting_07.m2", - value = "dalaran_painting_07.m2", + children = { + { + fileId = "195969", + text = "apothecary_fx.m2", + value = "apothecary_fx.m2", + }, + }, + text = "forsaken", + value = "forsaken", }, { - fileId = "243103", - text = "dalaran_painting_08.m2", - value = "dalaran_painting_08.m2", + fileId = "195971", + text = "hf_elevator_gate.m2", + value = "hf_elevator_gate.m2", }, { - fileId = "243104", - text = "dalaran_painting_09.m2", - value = "dalaran_painting_09.m2", + fileId = "195972", + text = "hf_elevator_lift.m2", + value = "hf_elevator_lift.m2", }, { - fileId = "243105", - text = "dalaran_painting_10.m2", - value = "dalaran_painting_10.m2", + fileId = "195973", + text = "hf_elevator_lift_02.m2", + value = "hf_elevator_lift_02.m2", }, { - fileId = "243106", - text = "dalaran_painting_11.m2", - value = "dalaran_painting_11.m2", + fileId = "195976", + text = "hfjord_bush_01.m2", + value = "hfjord_bush_01.m2", }, { - fileId = "243108", - text = "dalaran_petcage_01.m2", - value = "dalaran_petcage_01.m2", + fileId = "195978", + text = "hfjord_bush_02.m2", + value = "hfjord_bush_02.m2", }, { - fileId = "243109", - text = "dalaran_planter_01.m2", - value = "dalaran_planter_01.m2", + fileId = "195980", + text = "hfjord_bush_03.m2", + value = "hfjord_bush_03.m2", }, { - fileId = "243110", - text = "dalaran_planter_02.m2", - value = "dalaran_planter_02.m2", + fileId = "195983", + text = "hfjord_bush_04.m2", + value = "hfjord_bush_04.m2", }, { - fileId = "243112", - text = "dalaran_prisondoor_01.m2", - value = "dalaran_prisondoor_01.m2", + fileId = "195985", + text = "hfjord_bush_05.m2", + value = "hfjord_bush_05.m2", }, { - fileId = "243113", - text = "dalaran_prisondoor_02.m2", - value = "dalaran_prisondoor_02.m2", + fileId = "195988", + text = "hfjord_bush_snow_04.m2", + value = "hfjord_bush_snow_04.m2", }, { - fileId = "243118", - text = "dalaran_prisondoor_03.m2", - value = "dalaran_prisondoor_03.m2", + fileId = "195989", + text = "hfjord_canyontree_01.m2", + value = "hfjord_canyontree_01.m2", }, { - fileId = "243119", - text = "dalaran_prisondoor_04.m2", - value = "dalaran_prisondoor_04.m2", + fileId = "195990", + text = "hfjord_canyontree_02.m2", + value = "hfjord_canyontree_02.m2", }, { - fileId = "243120", - text = "dalaran_prisondoor_05.m2", - value = "dalaran_prisondoor_05.m2", + fileId = "195991", + text = "hfjord_canyontree_03.m2", + value = "hfjord_canyontree_03.m2", }, { - fileId = "243121", - text = "dalaran_prisondoor_glow.m2", - value = "dalaran_prisondoor_glow.m2", + fileId = "195995", + text = "hfjord_canyontreestump_01.m2", + value = "hfjord_canyontreestump_01.m2", }, { - fileId = "243122", - text = "dalaran_rhinorug_01.m2", - value = "dalaran_rhinorug_01.m2", + fileId = "195996", + text = "hfjord_canyontreestump_02.m2", + value = "hfjord_canyontreestump_02.m2", }, { - fileId = "243124", - text = "dalaran_rug_01.m2", - value = "dalaran_rug_01.m2", + fileId = "195998", + text = "hfjord_coastbush_01.m2", + value = "hfjord_coastbush_01.m2", }, { - fileId = "243126", - text = "dalaran_rug_02.m2", - value = "dalaran_rug_02.m2", + fileId = "196000", + text = "hfjord_coastbush_02.m2", + value = "hfjord_coastbush_02.m2", }, { - fileId = "243127", - text = "dalaran_rug_03.m2", - value = "dalaran_rug_03.m2", + fileId = "196001", + text = "hfjord_dryadshrine01.m2", + value = "hfjord_dryadshrine01.m2", }, { - fileId = "243129", - text = "dalaran_rug_04.m2", - value = "dalaran_rug_04.m2", + fileId = "196002", + text = "hfjord_dryadshrine02.m2", + value = "hfjord_dryadshrine02.m2", }, { - fileId = "243133", - text = "dalaran_sconce_indoor_01.m2", - value = "dalaran_sconce_indoor_01.m2", + fileId = "196006", + text = "hfjord_roots_01.m2", + value = "hfjord_roots_01.m2", }, { - fileId = "243134", - text = "dalaran_sconce_indoor_02.m2", - value = "dalaran_sconce_indoor_02.m2", + fileId = "196007", + text = "hfjord_roots_02.m2", + value = "hfjord_roots_02.m2", }, { - fileId = "243135", - text = "dalaran_sconce_indoor_03.m2", - value = "dalaran_sconce_indoor_03.m2", + fileId = "196008", + text = "hfjord_roots_03.m2", + value = "hfjord_roots_03.m2", }, { - fileId = "243136", - text = "dalaran_sculpture.m2", - value = "dalaran_sculpture.m2", + fileId = "196009", + text = "hfjord_tree_01.m2", + value = "hfjord_tree_01.m2", }, { - fileId = "243141", - text = "dalaran_sewer_oldworld_pipe01.m2", - value = "dalaran_sewer_oldworld_pipe01.m2", + fileId = "196010", + text = "hfjord_tree_01_lowpoly.m2", + value = "hfjord_tree_01_lowpoly.m2", }, { - fileId = "243142", - text = "dalaran_sewer_oldworld_pipe02.m2", - value = "dalaran_sewer_oldworld_pipe02.m2", + fileId = "196011", + text = "hfjord_tree_02.m2", + value = "hfjord_tree_02.m2", }, { - fileId = "243143", - text = "dalaran_sewerdoor_01.m2", - value = "dalaran_sewerdoor_01.m2", + fileId = "196012", + text = "hfjord_tree_02_lowpoly.m2", + value = "hfjord_tree_02_lowpoly.m2", }, { - fileId = "243144", - text = "dalaran_sewergrate_01.m2", - value = "dalaran_sewergrate_01.m2", + fileId = "196013", + text = "hfjord_tree_03.m2", + value = "hfjord_tree_03.m2", }, { - fileId = "243147", - text = "dalaran_sign_alchemy.m2", - value = "dalaran_sign_alchemy.m2", + fileId = "196014", + text = "hfjord_tree_03_lowpoly.m2", + value = "hfjord_tree_03_lowpoly.m2", }, { - fileId = "243152", - text = "dalaran_sign_armorshop.m2", - value = "dalaran_sign_armorshop.m2", + fileId = "196015", + text = "hfjord_tree_04.m2", + value = "hfjord_tree_04.m2", }, { - fileId = "243154", - text = "dalaran_sign_bank.m2", - value = "dalaran_sign_bank.m2", + fileId = "196016", + text = "hfjord_tree_04_lowpoly.m2", + value = "hfjord_tree_04_lowpoly.m2", }, { - fileId = "243156", - text = "dalaran_sign_cheeseshop.m2", - value = "dalaran_sign_cheeseshop.m2", + fileId = "196017", + text = "hfjord_tree_05.m2", + value = "hfjord_tree_05.m2", }, { - fileId = "243157", - text = "dalaran_sign_enchanting.m2", - value = "dalaran_sign_enchanting.m2", + fileId = "196018", + text = "hfjord_tree_06.m2", + value = "hfjord_tree_06.m2", }, { - fileId = "243158", - text = "dalaran_sign_engineering.m2", - value = "dalaran_sign_engineering.m2", + fileId = "196019", + text = "hfjord_tree_mid_01.m2", + value = "hfjord_tree_mid_01.m2", }, { - fileId = "243159", - text = "dalaran_sign_firstaid.m2", - value = "dalaran_sign_firstaid.m2", + fileId = "196020", + text = "hfjord_tree_mid_02.m2", + value = "hfjord_tree_mid_02.m2", }, { - fileId = "243161", - text = "dalaran_sign_generalgoods.m2", - value = "dalaran_sign_generalgoods.m2", + fileId = "196021", + text = "hfjord_tree_mid_03.m2", + value = "hfjord_tree_mid_03.m2", }, { - fileId = "243163", - text = "dalaran_sign_informationcenter.m2", - value = "dalaran_sign_informationcenter.m2", + fileId = "196022", + text = "hfjord_tree_mid_04.m2", + value = "hfjord_tree_mid_04.m2", }, { - fileId = "243164", - text = "dalaran_sign_inscription.m2", - value = "dalaran_sign_inscription.m2", + fileId = "196023", + text = "hfjord_tree_mid_04_lowpoly.m2", + value = "hfjord_tree_mid_04_lowpoly.m2", }, { - fileId = "243165", - text = "dalaran_sign_jewelcrafting.m2", - value = "dalaran_sign_jewelcrafting.m2", + fileId = "196024", + text = "hfjord_tree_mid_05.m2", + value = "hfjord_tree_mid_05.m2", }, { - fileId = "243166", - text = "dalaran_sign_leatherworking.m2", - value = "dalaran_sign_leatherworking.m2", + fileId = "196025", + text = "hfjord_tree_mid_06.m2", + value = "hfjord_tree_mid_06.m2", }, { - fileId = "243168", - text = "dalaran_sign_magicshop.m2", - value = "dalaran_sign_magicshop.m2", + fileId = "196026", + text = "hfjord_tree_mid_07.m2", + value = "hfjord_tree_mid_07.m2", }, - { - fileId = "243169", - text = "dalaran_sign_mining.m2", - value = "dalaran_sign_mining.m2", + { + fileId = "196027", + text = "hfjord_tree_snow_01.m2", + value = "hfjord_tree_snow_01.m2", }, { - fileId = "243170", - text = "dalaran_sign_petshop.m2", - value = "dalaran_sign_petshop.m2", + fileId = "196028", + text = "hfjord_tree_snow_05.m2", + value = "hfjord_tree_snow_05.m2", }, { - fileId = "243172", - text = "dalaran_sign_rangedweaponshop.m2", - value = "dalaran_sign_rangedweaponshop.m2", + fileId = "196029", + text = "hfjord_treefallen_01.m2", + value = "hfjord_treefallen_01.m2", }, { - fileId = "243174", - text = "dalaran_sign_staveswands.m2", - value = "dalaran_sign_staveswands.m2", + fileId = "196030", + text = "hfjord_treestump_01.m2", + value = "hfjord_treestump_01.m2", }, { - fileId = "243175", - text = "dalaran_sign_tailoring.m2", - value = "dalaran_sign_tailoring.m2", + children = { + { + fileId = "196036", + text = "hf_waterfall_cap_01.m2", + value = "hf_waterfall_cap_01.m2", + }, + { + fileId = "196039", + text = "hfjord_coastrock_01.m2", + value = "hfjord_coastrock_01.m2", + }, + { + fileId = "196040", + text = "hfjord_coastrock_02.m2", + value = "hfjord_coastrock_02.m2", + }, + { + fileId = "196041", + text = "hfjord_coastrock_03.m2", + value = "hfjord_coastrock_03.m2", + }, + { + fileId = "196042", + text = "hfjord_coastrock_04.m2", + value = "hfjord_coastrock_04.m2", + }, + { + fileId = "196043", + text = "hfjord_coastrock_05.m2", + value = "hfjord_coastrock_05.m2", + }, + { + fileId = "196044", + text = "hfjord_forestrock_01.m2", + value = "hfjord_forestrock_01.m2", + }, + { + fileId = "196045", + text = "hfjord_forestrock_02.m2", + value = "hfjord_forestrock_02.m2", + }, + { + fileId = "196046", + text = "hfjord_forestrock_03.m2", + value = "hfjord_forestrock_03.m2", + }, + { + fileId = "196047", + text = "hfjord_forestrock_04.m2", + value = "hfjord_forestrock_04.m2", + }, + { + fileId = "196048", + text = "hfjord_forestrock_05.m2", + value = "hfjord_forestrock_05.m2", + }, + { + fileId = "196049", + text = "hfjord_forestrock_cluster_01.m2", + value = "hfjord_forestrock_cluster_01.m2", + }, + }, + text = "rocks", + value = "rocks", }, { - fileId = "243177", - text = "dalaran_sign_tavern.m2", - value = "dalaran_sign_tavern.m2", + children = { + { + fileId = "196063", + text = "titanhead_waterfall.m2", + value = "titanhead_waterfall.m2", + }, + }, + text = "titanstatues", + value = "titanstatues", }, + }, + text = "howlingfjord", + value = "howlingfjord", + }, + { + children = { { - fileId = "243179", - text = "dalaran_sign_toyshop.m2", - value = "dalaran_sign_toyshop.m2", + children = { + { + fileId = "243773", + text = "ags_bomb.m2", + value = "ags_bomb.m2", + }, + { + fileId = "243774", + text = "ags_bombholder.m2", + value = "ags_bombholder.m2", + }, + { + fileId = "243776", + text = "ags_brasscannon.m2", + value = "ags_brasscannon.m2", + }, + { + fileId = "243778", + text = "ags_engines.m2", + value = "ags_engines.m2", + }, + { + fileId = "307762", + text = "ags_engines_bg.m2", + value = "ags_engines_bg.m2", + }, + { + fileId = "243780", + text = "ags_hazardlight_yellow.m2", + value = "ags_hazardlight_yellow.m2", + }, + { + fileId = "394986", + text = "brasscannon.m2", + value = "brasscannon.m2", + }, + }, + text = "alliance_gunship", + value = "alliance_gunship", }, { - fileId = "243181", - text = "dalaran_sign_weaponshop.m2", - value = "dalaran_sign_weaponshop.m2", + children = { + { + fileId = "331694", + text = "icecrown_frostmourne_altar.m2", + value = "icecrown_frostmourne_altar.m2", + }, + }, + text = "altar", + value = "altar", }, { - fileId = "194471", - text = "dalaran_signpost.m2", - value = "dalaran_signpost.m2", + children = { + { + fileId = "340503", + text = "icecrown_bloodchandelier_01.m2", + value = "icecrown_bloodchandelier_01.m2", + }, + { + fileId = "341529", + text = "icecrown_bloodprince_banner.m2", + value = "icecrown_bloodprince_banner.m2", + }, + { + fileId = "349239", + text = "icecrown_bloodprince_banner_02.m2", + value = "icecrown_bloodprince_banner_02.m2", + }, + { + fileId = "330977", + text = "icecrown_bloodprince_bloodorb.m2", + value = "icecrown_bloodprince_bloodorb.m2", + }, + { + fileId = "341986", + text = "icecrown_bloodprince_crest.m2", + value = "icecrown_bloodprince_crest.m2", + }, + { + fileId = "330978", + text = "icecrown_bloodprince_rooffog.m2", + value = "icecrown_bloodprince_rooffog.m2", + }, + }, + text = "bloodprince", + value = "bloodprince", }, { - fileId = "243184", - text = "dalaran_signpostsign.m2", - value = "dalaran_signpostsign.m2", + children = { + { + fileId = "315447", + text = "icecrown_bodyjar.m2", + value = "icecrown_bodyjar.m2", + }, + }, + text = "bodyjar", + value = "bodyjar", }, { - fileId = "243186", - text = "dalaran_skinning_stand.m2", - value = "dalaran_skinning_stand.m2", + children = { + { + fileId = "341989", + text = "icecrown_bonepile_01.m2", + value = "icecrown_bonepile_01.m2", + }, + { + fileId = "342585", + text = "icecrown_bonepile_02.m2", + value = "icecrown_bonepile_02.m2", + }, + { + fileId = "342410", + text = "icecrown_bonepile_light_01.m2", + value = "icecrown_bonepile_light_01.m2", + }, + { + fileId = "342586", + text = "icecrown_bonepile_light_02.m2", + value = "icecrown_bonepile_light_02.m2", + }, + { + fileId = "342663", + text = "icecrown_bonepile_skull.m2", + value = "icecrown_bonepile_skull.m2", + }, + { + fileId = "342664", + text = "icecrown_bonepile_skull_light.m2", + value = "icecrown_bonepile_skull_light.m2", + }, + }, + text = "bones", + value = "bones", }, { - fileId = "243187", - text = "dalaran_statueantonidas.m2", - value = "dalaran_statueantonidas.m2", + children = { + { + fileId = "333086", + text = "icecrown_cavein.m2", + value = "icecrown_cavein.m2", + }, + }, + text = "cavein", + value = "cavein", }, { - fileId = "243188", - text = "dalaran_statueantonidas_plaque.m2", - value = "dalaran_statueantonidas_plaque.m2", + children = { + { + fileId = "345030", + text = "icecrown_frostmourneghosts.m2", + value = "icecrown_frostmourneghosts.m2", + }, + { + fileId = "340011", + text = "icecrown_frostmourneskychains.m2", + value = "icecrown_frostmourneskychains.m2", + }, + { + fileId = "340504", + text = "icecrown_frostmourneskychains_02.m2", + value = "icecrown_frostmourneskychains_02.m2", + }, + }, + text = "chains", + value = "chains", }, { - fileId = "243189", - text = "dalaran_table_01.m2", - value = "dalaran_table_01.m2", + children = { + { + fileId = "314705", + text = "icecrown_bench_01.m2", + value = "icecrown_bench_01.m2", + }, + { + fileId = "314706", + text = "icecrown_chair_01.m2", + value = "icecrown_chair_01.m2", + }, + }, + text = "chairs", + value = "chairs", }, { - fileId = "243191", - text = "dalaran_toy_counter.m2", - value = "dalaran_toy_counter.m2", + children = { + { + fileId = "196065", + text = "ic_citadel_door01.m2", + value = "ic_citadel_door01.m2", + }, + { + fileId = "196066", + text = "ic_citadel_mouthdoor01.m2", + value = "ic_citadel_mouthdoor01.m2", + }, + { + fileId = "337075", + text = "icecrown_blooddoor_01.m2", + value = "icecrown_blooddoor_01.m2", + }, + { + fileId = "330979", + text = "icecrown_bloodprince_door_01.m2", + value = "icecrown_bloodprince_door_01.m2", + }, + { + fileId = "336508", + text = "icecrown_colddoor_01.m2", + value = "icecrown_colddoor_01.m2", + }, + { + fileId = "310114", + text = "icecrown_door_01.m2", + value = "icecrown_door_01.m2", + }, + { + fileId = "312957", + text = "icecrown_door_02_disappearing_green.m2", + value = "icecrown_door_02_disappearing_green.m2", + }, + { + fileId = "312958", + text = "icecrown_door_02_disappearing_orange.m2", + value = "icecrown_door_02_disappearing_orange.m2", + }, + { + fileId = "312959", + text = "icecrown_door_02_main.m2", + value = "icecrown_door_02_main.m2", + }, + { + fileId = "329523", + text = "icecrown_door_02collision.m2", + value = "icecrown_door_02collision.m2", + }, + { + fileId = "329524", + text = "icecrown_door_02left.m2", + value = "icecrown_door_02left.m2", + }, + { + fileId = "329525", + text = "icecrown_door_02right.m2", + value = "icecrown_door_02right.m2", + }, + { + fileId = "319877", + text = "icecrown_door_03.m2", + value = "icecrown_door_03.m2", + }, + { + fileId = "327204", + text = "icecrown_door_04.m2", + value = "icecrown_door_04.m2", + }, + { + fileId = "320870", + text = "icecrown_grate_01.m2", + value = "icecrown_grate_01.m2", + }, + { + fileId = "318772", + text = "icecrown_portcullis_01.m2", + value = "icecrown_portcullis_01.m2", + }, + { + fileId = "327455", + text = "icecrown_portcullis_02.m2", + value = "icecrown_portcullis_02.m2", + }, + { + fileId = "320223", + text = "icecrown_roostportcullis_01.m2", + value = "icecrown_roostportcullis_01.m2", + }, + }, + text = "doors", + value = "doors", }, { - fileId = "243192", - text = "dalaran_toy_shelves01.m2", - value = "dalaran_toy_shelves01.m2", + children = { + { + fileId = "345449", + text = "icecrown_citadel_exterioreffects.m2", + value = "icecrown_citadel_exterioreffects.m2", + }, + { + fileId = "350645", + text = "icecrown_frozenthrone_particle.m2", + value = "icecrown_frozenthrone_particle.m2", + }, + { + fileId = "317261", + text = "icecrown_icecore.m2", + value = "icecrown_icecore.m2", + }, + { + fileId = "344277", + text = "icecrown_thronefrostyedge.m2", + value = "icecrown_thronefrostyedge.m2", + }, + { + fileId = "342587", + text = "icecrownraid_icecore_precipice.m2", + value = "icecrownraid_icecore_precipice.m2", + }, + }, + text = "effects", + value = "effects", }, { - fileId = "243193", - text = "dalaran_toy_shelves02.m2", - value = "dalaran_toy_shelves02.m2", + children = { + { + fileId = "321125", + text = "icecrown_elevator.m2", + value = "icecrown_elevator.m2", + }, + { + fileId = "321602", + text = "icecrown_elevator02.m2", + value = "icecrown_elevator02.m2", + }, + }, + text = "elevator", + value = "elevator", }, { - fileId = "243194", - text = "dalaran_toy_shelves03.m2", - value = "dalaran_toy_shelves03.m2", + children = { + { + fileId = "342971", + text = "icecrown_fence.m2", + value = "icecrown_fence.m2", + }, + { + fileId = "342928", + text = "icecrown_fence_base.m2", + value = "icecrown_fence_base.m2", + }, + }, + text = "fence", + value = "fence", }, { - fileId = "243195", - text = "dalaran_toy_shelves04.m2", - value = "dalaran_toy_shelves04.m2", + children = { + { + fileId = "243783", + text = "icecrown_frozenwurm_01.m2", + value = "icecrown_frozenwurm_01.m2", + }, + }, + text = "frozen", + value = "frozen", }, { - fileId = "243196", - text = "dalaran_wagon01.m2", - value = "dalaran_wagon01.m2", + children = { + { + fileId = "243784", + text = "icecrown_wallanim.m2", + value = "icecrown_wallanim.m2", + }, + { + fileId = "243785", + text = "icecrowngatefog01.m2", + value = "icecrowngatefog01.m2", + }, + { + fileId = "243786", + text = "icecrowngatefog02.m2", + value = "icecrowngatefog02.m2", + }, + }, + text = "gatefog", + value = "gatefog", }, { - fileId = "243197", - text = "dalaran_wand_stand.m2", - value = "dalaran_wand_stand.m2", + children = { + { + fileId = "312684", + text = "ic_glow01.m2", + value = "ic_glow01.m2", + }, + { + fileId = "334827", + text = "ic_glow02.m2", + value = "ic_glow02.m2", + }, + }, + text = "glows", + value = "glows", }, { - fileId = "243198", - text = "dalaran_weapon_stand.m2", - value = "dalaran_weapon_stand.m2", + children = { + { + fileId = "315158", + text = "icecrown_grinder.m2", + value = "icecrown_grinder.m2", + }, + }, + text = "grinder", + value = "grinder", }, { - fileId = "243200", - text = "dalaran_well_01.m2", - value = "dalaran_well_01.m2", + children = { + { + fileId = "196069", + text = "icecrown_groundspikes01.m2", + value = "icecrown_groundspikes01.m2", + }, + }, + text = "groundspikes", + value = "groundspikes", }, { - fileId = "243203", - text = "dalarancounter_01.m2", - value = "dalarancounter_01.m2", + fileId = "307957", + text = "ic_arthas_iceshard01.m2", + value = "ic_arthas_iceshard01.m2", }, { - fileId = "243210", - text = "dalaranshrub.m2", - value = "dalaranshrub.m2", + fileId = "307958", + text = "ic_arthas_iceshard02.m2", + value = "ic_arthas_iceshard02.m2", }, { - fileId = "243231", - text = "inscriptionshopdoodads.m2", - value = "inscriptionshopdoodads.m2", + fileId = "307959", + text = "ic_arthas_iceshard03.m2", + value = "ic_arthas_iceshard03.m2", }, { - fileId = "243232", - text = "jewelry_posterscroll_01.m2", - value = "jewelry_posterscroll_01.m2", + fileId = "307960", + text = "ic_arthas_iceshard04.m2", + value = "ic_arthas_iceshard04.m2", }, { - fileId = "243233", - text = "jewelry_posterscroll_02.m2", - value = "jewelry_posterscroll_02.m2", + fileId = "307961", + text = "ic_arthas_iceshard05.m2", + value = "ic_arthas_iceshard05.m2", }, { - fileId = "243235", - text = "jewelrystore_rug_01.m2", - value = "jewelrystore_rug_01.m2", + fileId = "307962", + text = "ic_arthas_iceshard06.m2", + value = "ic_arthas_iceshard06.m2", }, { - fileId = "243239", - text = "nifty_stopwatch.m2", - value = "nifty_stopwatch.m2", + fileId = "307963", + text = "ic_arthas_iceshard07.m2", + value = "ic_arthas_iceshard07.m2", }, { - fileId = "243255", - text = "robe_female_a_01.m2", - value = "robe_female_a_01.m2", + fileId = "321453", + text = "ic_citadel_chest.m2", + value = "ic_citadel_chest.m2", }, { - fileId = "243256", - text = "robe_mage_b_01.m2", - value = "robe_mage_b_01.m2", + children = { + { + fileId = "343005", + text = "icecrown_icecore_middle.m2", + value = "icecrown_icecore_middle.m2", + }, + }, + text = "icecore", + value = "icecore", }, { - fileId = "243257", - text = "robe_mage_d_01.m2", - value = "robe_mage_d_01.m2", + children = { + { + fileId = "322905", + text = "iceshard_standing.m2", + value = "iceshard_standing.m2", + }, + { + fileId = "243793", + text = "icesharda.m2", + value = "icesharda.m2", + }, + }, + text = "iceshards", + value = "iceshards", }, { - fileId = "243258", - text = "robe_mage_f_01.m2", - value = "robe_mage_f_01.m2", + children = { + { + fileId = "332869", + text = "icecrown_icewall.m2", + value = "icecrown_icewall.m2", + }, + { + fileId = "538138", + text = "icecrown_icewall_v2.m2", + value = "icecrown_icewall_v2.m2", + }, + }, + text = "icewall", + value = "icewall", }, { children = { { - fileId = "194472", - text = "dalaransewer01.m2", - value = "dalaransewer01.m2", + fileId = "351040", + text = "icecrown_lavaman_chained.m2", + value = "icecrown_lavaman_chained.m2", }, { - fileId = "243263", - text = "dalaransewer_arena_wave_01.m2", - value = "dalaransewer_arena_wave_01.m2", + fileId = "350996", + text = "icecrown_lavaman_sit.m2", + value = "icecrown_lavaman_sit.m2", }, { - fileId = "243264", - text = "dalaransewer_arenawaterfall.m2", - value = "dalaransewer_arenawaterfall.m2", + fileId = "351041", + text = "icecrown_lavaman_unchained.m2", + value = "icecrown_lavaman_unchained.m2", }, + }, + text = "lava", + value = "lava", + }, + { + children = { { - fileId = "252201", - text = "dalaransewer_arenawaterfall_collision.m2", - value = "dalaransewer_arenawaterfall_collision.m2", + fileId = "337802", + text = "icecrown_lever.m2", + value = "icecrown_lever.m2", }, + }, + text = "lever", + value = "lever", + }, + { + children = { { - fileId = "243265", - text = "dalaransewer_sewerwater_01.m2", - value = "dalaransewer_sewerwater_01.m2", + fileId = "328953", + text = "icecrown_blue_fire.m2", + value = "icecrown_blue_fire.m2", }, { - fileId = "243266", - text = "dalaransewer_sewerwater_02.m2", - value = "dalaransewer_sewerwater_02.m2", + fileId = "320225", + text = "icecrown_blueglow_01.m2", + value = "icecrown_blueglow_01.m2", }, { - fileId = "243267", - text = "dalaransewer_sewerwater_03.m2", - value = "dalaransewer_sewerwater_03.m2", + fileId = "320226", + text = "icecrown_blueglow_02.m2", + value = "icecrown_blueglow_02.m2", }, { - fileId = "243268", - text = "dalaransewer_sewerwater_04.m2", - value = "dalaransewer_sewerwater_04.m2", + fileId = "325920", + text = "icecrown_chandelier.m2", + value = "icecrown_chandelier.m2", }, { - fileId = "243269", - text = "dalaransewer_sewerwater_05.m2", - value = "dalaransewer_sewerwater_05.m2", + fileId = "328954", + text = "icecrown_green_fire.m2", + value = "icecrown_green_fire.m2", }, { - fileId = "243270", - text = "dalaransewer_waterfall_endtube_long.m2", - value = "dalaransewer_waterfall_endtube_long.m2", + fileId = "327861", + text = "icecrown_greenglow_01.m2", + value = "icecrown_greenglow_01.m2", }, { - fileId = "243271", - text = "dalaransewer_waterfall_endtube_med.m2", - value = "dalaransewer_waterfall_endtube_med.m2", + fileId = "328252", + text = "icecrown_greenpillar_fire.m2", + value = "icecrown_greenpillar_fire.m2", }, { - fileId = "243272", - text = "dalaransewer_waterfall_endtube_short.m2", - value = "dalaransewer_waterfall_endtube_short.m2", + fileId = "313729", + text = "icecrown_hangingbase.m2", + value = "icecrown_hangingbase.m2", }, { - fileId = "243273", - text = "dalaransewer_waterfall_halftube_long.m2", - value = "dalaransewer_waterfall_halftube_long.m2", + fileId = "313731", + text = "icecrown_hangingbraizer_01.m2", + value = "icecrown_hangingbraizer_01.m2", }, { - fileId = "243274", - text = "dalaransewer_waterfall_halftube_med.m2", - value = "dalaransewer_waterfall_halftube_med.m2", + fileId = "325921", + text = "icecrown_lablamp.m2", + value = "icecrown_lablamp.m2", }, { - fileId = "243275", - text = "dalaransewer_waterfall_halftube_short.m2", - value = "dalaransewer_waterfall_halftube_short.m2", + fileId = "328956", + text = "icecrown_rays.m2", + value = "icecrown_rays.m2", }, { - fileId = "243276", - text = "dalaransewer_waterfall_tube_01.m2", - value = "dalaransewer_waterfall_tube_01.m2", + fileId = "320166", + text = "icecrown_redglow_01.m2", + value = "icecrown_redglow_01.m2", + }, + { + fileId = "318344", + text = "icecrown_wallsconce_01.m2", + value = "icecrown_wallsconce_01.m2", }, }, - text = "sewer", - value = "sewer", - }, - { - fileId = "243291", - text = "shoulder_mage_b_01.m2", - value = "shoulder_mage_b_01.m2", - }, - { - fileId = "243292", - text = "shoulder_mage_f_01.m2", - value = "shoulder_mage_f_01.m2", + text = "lights", + value = "lights", }, { children = { { - fileId = "358381", - text = "dalaran_tirionstatue_plaque.m2", - value = "dalaran_tirionstatue_plaque.m2", + fileId = "468700", + text = "icecrown_metalskull.m2", + value = "icecrown_metalskull.m2", }, }, - text = "statue", - value = "statue", - }, - { - fileId = "243295", - text = "tradeskill_enchanting_01.m2", - value = "tradeskill_enchanting_01.m2", - }, - { - fileId = "243296", - text = "tradeskill_enchanting_02.m2", - value = "tradeskill_enchanting_02.m2", - }, - { - fileId = "243297", - text = "tradeskill_firstaid_01.m2", - value = "tradeskill_firstaid_01.m2", - }, - { - fileId = "243298", - text = "tradeskill_firstaid_02.m2", - value = "tradeskill_firstaid_02.m2", - }, - { - fileId = "243299", - text = "tradeskill_fishing_01.m2", - value = "tradeskill_fishing_01.m2", - }, - { - fileId = "243300", - text = "tradeskill_herbs_01.m2", - value = "tradeskill_herbs_01.m2", - }, - { - fileId = "243301", - text = "tradeskill_herbs_02.m2", - value = "tradeskill_herbs_02.m2", - }, - { - fileId = "243302", - text = "tradeskill_leatherworking_01.m2", - value = "tradeskill_leatherworking_01.m2", - }, - { - fileId = "243303", - text = "tradeskill_leatherworking_02.m2", - value = "tradeskill_leatherworking_02.m2", - }, - { - fileId = "243304", - text = "tradeskill_skinning_01.m2", - value = "tradeskill_skinning_01.m2", - }, - { - fileId = "243305", - text = "tradeskill_skinning_02.m2", - value = "tradeskill_skinning_02.m2", - }, - { - fileId = "243306", - text = "tradeskill_tailoring_01.m2", - value = "tradeskill_tailoring_01.m2", - }, - { - fileId = "243307", - text = "tradeskill_tailoring_02.m2", - value = "tradeskill_tailoring_02.m2", + text = "metalskull", + value = "metalskull", }, { children = { { - fileId = "243313", - text = "dalaranbigtree_01.m2", - value = "dalaranbigtree_01.m2", + fileId = "330980", + text = "icecrown_bloodprince_portal_effect.m2", + value = "icecrown_bloodprince_portal_effect.m2", }, { - fileId = "243314", - text = "dalaranbush_01.m2", - value = "dalaranbush_01.m2", + fileId = "330981", + text = "icecrown_bloodprince_portal_floor.m2", + value = "icecrown_bloodprince_portal_floor.m2", }, { - fileId = "243315", - text = "dalarantree_01.m2", - value = "dalarantree_01.m2", + fileId = "331146", + text = "icecrown_bloodprince_portal_left.m2", + value = "icecrown_bloodprince_portal_left.m2", }, { - fileId = "243316", - text = "dalarantree_02.m2", - value = "dalarantree_02.m2", + fileId = "331148", + text = "icecrown_bloodprince_portal_middle.m2", + value = "icecrown_bloodprince_portal_middle.m2", + }, + { + fileId = "330983", + text = "icecrown_bloodprince_portal_right.m2", + value = "icecrown_bloodprince_portal_right.m2", + }, + { + fileId = "335581", + text = "icecrown_portal.m2", + value = "icecrown_portal.m2", }, }, - text = "tree", - value = "tree", - }, - }, - text = "dalaran", - value = "dalaran", - }, - { - children = { - { - fileId = "194474", - text = "bd_lavafall01.m2", - value = "bd_lavafall01.m2", - }, - { - fileId = "194475", - text = "bd_lavafall02.m2", - value = "bd_lavafall02.m2", - }, - { - fileId = "194476", - text = "bd_lavafall03.m2", - value = "bd_lavafall03.m2", - }, - { - fileId = "194478", - text = "db_dragonarm01_left.m2", - value = "db_dragonarm01_left.m2", - }, - { - fileId = "194479", - text = "db_dragonarm01_leftblack.m2", - value = "db_dragonarm01_leftblack.m2", - }, - { - fileId = "194480", - text = "db_dragonarm01_leftblue.m2", - value = "db_dragonarm01_leftblue.m2", - }, - { - fileId = "194481", - text = "db_dragonarm01_leftgray.m2", - value = "db_dragonarm01_leftgray.m2", - }, - { - fileId = "194482", - text = "db_dragonarm01_leftwhite.m2", - value = "db_dragonarm01_leftwhite.m2", - }, - { - fileId = "194483", - text = "db_dragonarm01_right.m2", - value = "db_dragonarm01_right.m2", - }, - { - fileId = "194484", - text = "db_dragonarm01_rightblack.m2", - value = "db_dragonarm01_rightblack.m2", - }, - { - fileId = "194485", - text = "db_dragonarm01_rightblue.m2", - value = "db_dragonarm01_rightblue.m2", - }, - { - fileId = "194486", - text = "db_dragonarm01_rightgray.m2", - value = "db_dragonarm01_rightgray.m2", + text = "portals", + value = "portals", }, { - fileId = "194487", - text = "db_dragonarm01_rightwhite.m2", - value = "db_dragonarm01_rightwhite.m2", + children = { + { + fileId = "341990", + text = "icecrown_pressureplate.m2", + value = "icecrown_pressureplate.m2", + }, + }, + text = "pressureplate", + value = "pressureplate", }, { - fileId = "194488", - text = "db_dragonarmstraight_left.m2", - value = "db_dragonarmstraight_left.m2", + children = { + { + fileId = "254621", + text = "icecrown_railing01.m2", + value = "icecrown_railing01.m2", + }, + { + fileId = "331696", + text = "icecrown_railing02.m2", + value = "icecrown_railing02.m2", + }, + { + fileId = "331697", + text = "icecrown_railing_rail.m2", + value = "icecrown_railing_rail.m2", + }, + }, + text = "railing", + value = "railing", }, { - fileId = "194489", - text = "db_dragonarmstraight_leftblack.m2", - value = "db_dragonarmstraight_leftblack.m2", + children = { + { + fileId = "196071", + text = "icecrown_rock_01.m2", + value = "icecrown_rock_01.m2", + }, + { + fileId = "196072", + text = "icecrown_rock_02.m2", + value = "icecrown_rock_02.m2", + }, + { + fileId = "196073", + text = "icecrown_rock_03.m2", + value = "icecrown_rock_03.m2", + }, + { + fileId = "196074", + text = "icecrown_rock_04.m2", + value = "icecrown_rock_04.m2", + }, + { + fileId = "196075", + text = "icecrown_rock_05.m2", + value = "icecrown_rock_05.m2", + }, + { + fileId = "196076", + text = "icecrown_rock_06.m2", + value = "icecrown_rock_06.m2", + }, + }, + text = "rocks", + value = "rocks", }, { - fileId = "194490", - text = "db_dragonarmstraight_leftblue.m2", - value = "db_dragonarmstraight_leftblue.m2", + children = { + { + fileId = "338497", + text = "icecrown_rug_long_01.m2", + value = "icecrown_rug_long_01.m2", + }, + { + fileId = "349241", + text = "icecrown_rug_long_02.m2", + value = "icecrown_rug_long_02.m2", + }, + }, + text = "rugs", + value = "rugs", }, { - fileId = "194491", - text = "db_dragonarmstraight_right.m2", - value = "db_dragonarmstraight_right.m2", + children = { + { + fileId = "337104", + text = "icecrown_runeforge_green.m2", + value = "icecrown_runeforge_green.m2", + }, + { + fileId = "337106", + text = "icecrown_runeforge_orange.m2", + value = "icecrown_runeforge_orange.m2", + }, + }, + text = "runeforge", + value = "runeforge", }, { - fileId = "194492", - text = "db_dragonarmstraight_rightblack.m2", - value = "db_dragonarmstraight_rightblack.m2", + children = { + { + fileId = "343848", + text = "icecrown_precipicerunes_01.m2", + value = "icecrown_precipicerunes_01.m2", + }, + }, + text = "runes", + value = "runes", }, { - fileId = "194493", - text = "db_dragonarmstraight_rightblue.m2", - value = "db_dragonarmstraight_rightblue.m2", + children = { + { + fileId = "338495", + text = "sindragosa_iceblock_collision.m2", + value = "sindragosa_iceblock_collision.m2", + }, + }, + text = "sindragosacollision", + value = "sindragosacollision", }, { - fileId = "194494", - text = "db_dragonclaw01_leftblue.m2", - value = "db_dragonclaw01_leftblue.m2", + children = { + { + fileId = "343920", + text = "icecrown_snowedgewarning.m2", + value = "icecrown_snowedgewarning.m2", + }, + }, + text = "snowledge", + value = "snowledge", }, { - fileId = "194495", - text = "db_dragonfrozen001.m2", - value = "db_dragonfrozen001.m2", + children = { + { + fileId = "327166", + text = "icecrown_spigot.m2", + value = "icecrown_spigot.m2", + }, + }, + text = "spigot", + value = "spigot", }, { - fileId = "194496", - text = "db_dragonfrozen002.m2", - value = "db_dragonfrozen002.m2", + children = { + { + fileId = "196078", + text = "icecrown_tentacles_01.m2", + value = "icecrown_tentacles_01.m2", + }, + }, + text = "tentacles", + value = "tentacles", }, { - fileId = "194497", - text = "db_dragonfrozen003.m2", - value = "db_dragonfrozen003.m2", + children = { + { + fileId = "335587", + text = "icecrown_throne.m2", + value = "icecrown_throne.m2", + }, + { + fileId = "350991", + text = "icecrown_throne_exteriorspires.m2", + value = "icecrown_throne_exteriorspires.m2", + }, + { + fileId = "340860", + text = "icecrown_thronefrostywind.m2", + value = "icecrown_thronefrostywind.m2", + }, + }, + text = "throne", + value = "throne", }, { - fileId = "194498", - text = "db_dragonhead01.m2", - value = "db_dragonhead01.m2", + children = { + { + fileId = "196081", + text = "icecrown_tree_01.m2", + value = "icecrown_tree_01.m2", + }, + { + fileId = "196082", + text = "icecrown_tree_02.m2", + value = "icecrown_tree_02.m2", + }, + { + fileId = "196083", + text = "icecrown_tree_03.m2", + value = "icecrown_tree_03.m2", + }, + { + fileId = "196084", + text = "icecrown_tree_04.m2", + value = "icecrown_tree_04.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "194499", - text = "db_dragonhead02.m2", - value = "db_dragonhead02.m2", + children = { + { + fileId = "327170", + text = "icecrown_greentubes.m2", + value = "icecrown_greentubes.m2", + }, + { + fileId = "327205", + text = "icecrown_greentubes_grate.m2", + value = "icecrown_greentubes_grate.m2", + }, + { + fileId = "327171", + text = "icecrown_orangetubes.m2", + value = "icecrown_orangetubes.m2", + }, + }, + text = "tubes", + value = "tubes", }, { - fileId = "194500", - text = "db_dragonhead03.m2", - value = "db_dragonhead03.m2", + children = { + { + fileId = "327172", + text = "icecrown_valve.m2", + value = "icecrown_valve.m2", + }, + }, + text = "valve", + value = "valve", }, { - fileId = "194501", - text = "db_dragonhead04.m2", - value = "db_dragonhead04.m2", + children = { + { + fileId = "340090", + text = "icecrown_axe_shadowsedge.m2", + value = "icecrown_axe_shadowsedge.m2", + }, + }, + text = "weapon", + value = "weapon", }, { - fileId = "194502", - text = "db_dragonjaw01.m2", - value = "db_dragonjaw01.m2", + children = { + { + fileId = "333853", + text = "wingsigil_blue.m2", + value = "wingsigil_blue.m2", + }, + { + fileId = "333854", + text = "wingsigil_green.m2", + value = "wingsigil_green.m2", + }, + { + fileId = "333855", + text = "wingsigil_red.m2", + value = "wingsigil_red.m2", + }, + }, + text = "wingsigils", + value = "wingsigils", }, + }, + text = "icecrown", + value = "icecrown", + }, + { + children = { { - fileId = "194503", - text = "db_dragonjaw02.m2", - value = "db_dragonjaw02.m2", + fileId = "314866", + text = "isleofconcquest_alliance_banner_01.m2", + value = "isleofconcquest_alliance_banner_01.m2", }, { - fileId = "194504", - text = "db_dragonjaw03.m2", - value = "db_dragonjaw03.m2", + fileId = "314863", + text = "isleofconcquest_horde_banner_01.m2", + value = "isleofconcquest_horde_banner_01.m2", }, { - fileId = "194505", - text = "db_dragonjaw04.m2", - value = "db_dragonjaw04.m2", + fileId = "311213", + text = "isleofconquest_portal_niche_alliance_01.m2", + value = "isleofconquest_portal_niche_alliance_01.m2", }, { - fileId = "194506", - text = "db_dragonleg01_left.m2", - value = "db_dragonleg01_left.m2", + fileId = "311214", + text = "isleofconquest_portal_niche_horde_01.m2", + value = "isleofconquest_portal_niche_horde_01.m2", }, + }, + text = "isleofconquest", + value = "isleofconquest", + }, + { + children = { { - fileId = "194507", - text = "db_dragonleg01_right.m2", - value = "db_dragonleg01_right.m2", + fileId = "243794", + text = "alliance_vehicle_piece_01.m2", + value = "alliance_vehicle_piece_01.m2", }, { - fileId = "194508", - text = "db_dragonrib01.m2", - value = "db_dragonrib01.m2", + fileId = "243795", + text = "alliance_vehicle_piece_02.m2", + value = "alliance_vehicle_piece_02.m2", }, { - fileId = "194509", - text = "db_dragonrib01black.m2", - value = "db_dragonrib01black.m2", + fileId = "243796", + text = "alliance_vehicle_piece_03.m2", + value = "alliance_vehicle_piece_03.m2", }, { - fileId = "194510", - text = "db_dragonrib01blue.m2", - value = "db_dragonrib01blue.m2", + children = { + { + fileId = "196087", + text = "wintergrasp_bush_01.m2", + value = "wintergrasp_bush_01.m2", + }, + { + fileId = "196089", + text = "wintergrasp_bush_02.m2", + value = "wintergrasp_bush_02.m2", + }, + { + fileId = "196091", + text = "wintergrasp_bush_03.m2", + value = "wintergrasp_bush_03.m2", + }, + { + fileId = "196092", + text = "wintergrasp_bush_04.m2", + value = "wintergrasp_bush_04.m2", + }, + }, + text = "bushes", + value = "bushes", }, { - fileId = "194511", - text = "db_dragonrib01gray.m2", - value = "db_dragonrib01gray.m2", + fileId = "243797", + text = "horde_vehicle_piece_01.m2", + value = "horde_vehicle_piece_01.m2", }, { - fileId = "194512", - text = "db_dragonrib01white.m2", - value = "db_dragonrib01white.m2", + fileId = "243798", + text = "horde_vehicle_piece_02.m2", + value = "horde_vehicle_piece_02.m2", }, { - fileId = "194513", - text = "db_dragonribcage01.m2", - value = "db_dragonribcage01.m2", + fileId = "243799", + text = "horde_vehicle_piece_03.m2", + value = "horde_vehicle_piece_03.m2", }, { - fileId = "194514", - text = "db_dragonribcage02.m2", - value = "db_dragonribcage02.m2", + children = { + { + fileId = "243801", + text = "wintergrasp_keepcurb01.m2", + value = "wintergrasp_keepcurb01.m2", + }, + { + fileId = "243802", + text = "wintergrasp_keepcurb02.m2", + value = "wintergrasp_keepcurb02.m2", + }, + { + fileId = "243803", + text = "wintergrasp_keepcurb03.m2", + value = "wintergrasp_keepcurb03.m2", + }, + }, + text = "titanpieces", + value = "titanpieces", }, { - fileId = "194515", - text = "db_dragonribcage03.m2", - value = "db_dragonribcage03.m2", + children = { + { + fileId = "196096", + text = "wintergrasp_brokentree_01.m2", + value = "wintergrasp_brokentree_01.m2", + }, + { + fileId = "196097", + text = "wintergrasp_brokentree_02.m2", + value = "wintergrasp_brokentree_02.m2", + }, + { + fileId = "196098", + text = "wintergrasp_brokentree_03.m2", + value = "wintergrasp_brokentree_03.m2", + }, + { + fileId = "196099", + text = "wintergrasp_brokentree_04.m2", + value = "wintergrasp_brokentree_04.m2", + }, + { + fileId = "196104", + text = "wintergrasp_tree_02.m2", + value = "wintergrasp_tree_02.m2", + }, + { + fileId = "196105", + text = "wintergrasp_tree_03.m2", + value = "wintergrasp_tree_03.m2", + }, + { + fileId = "196106", + text = "wintergrasp_tree_04.m2", + value = "wintergrasp_tree_04.m2", + }, + { + fileId = "196107", + text = "wintergrasp_tree_05.m2", + value = "wintergrasp_tree_05.m2", + }, + { + fileId = "196108", + text = "wintergrasp_tree_scourge_02.m2", + value = "wintergrasp_tree_scourge_02.m2", + }, + { + fileId = "196109", + text = "wintergrasp_tree_scourge_03.m2", + value = "wintergrasp_tree_scourge_03.m2", + }, + { + fileId = "196110", + text = "wintergrasp_tree_scourge_04.m2", + value = "wintergrasp_tree_scourge_04.m2", + }, + { + fileId = "196111", + text = "wintergrasp_tree_scourge_05.m2", + value = "wintergrasp_tree_scourge_05.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "194516", - text = "db_dragonribcage05.m2", - value = "db_dragonribcage05.m2", + children = { + { + fileId = "196112", + text = "wintergraspwaterfall-01.m2", + value = "wintergraspwaterfall-01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, { - fileId = "194517", - text = "db_dragonshoulder01.m2", - value = "db_dragonshoulder01.m2", + fileId = "243804", + text = "wg_bridge02_fx1.m2", + value = "wg_bridge02_fx1.m2", }, { - fileId = "194518", - text = "db_dragonshoulder02.m2", - value = "db_dragonshoulder02.m2", + fileId = "243805", + text = "wg_bridge02_fx2.m2", + value = "wg_bridge02_fx2.m2", }, { - fileId = "194519", - text = "db_dragonsinglerib01.m2", - value = "db_dragonsinglerib01.m2", + fileId = "243806", + text = "wg_gate01_fx1.m2", + value = "wg_gate01_fx1.m2", }, { - fileId = "194520", - text = "db_dragonsinglerib02.m2", - value = "db_dragonsinglerib02.m2", + fileId = "243807", + text = "wg_gate01_fx2.m2", + value = "wg_gate01_fx2.m2", }, { - fileId = "194521", - text = "db_dragonsinglerib03.m2", - value = "db_dragonsinglerib03.m2", + fileId = "243808", + text = "wg_invisible_door.m2", + value = "wg_invisible_door.m2", }, { - fileId = "194522", - text = "db_dragonskull01.m2", - value = "db_dragonskull01.m2", + fileId = "243809", + text = "wg_keep_door01_fx1.m2", + value = "wg_keep_door01_fx1.m2", }, { - fileId = "194523", - text = "db_dragonskull02.m2", - value = "db_dragonskull02.m2", + fileId = "243810", + text = "wg_keep_door01_fx2.m2", + value = "wg_keep_door01_fx2.m2", }, { - fileId = "194524", - text = "db_dragonskull03.m2", - value = "db_dragonskull03.m2", + fileId = "243811", + text = "wg_siege01_fx1.m2", + value = "wg_siege01_fx1.m2", }, { - fileId = "194525", - text = "db_dragonskull04.m2", - value = "db_dragonskull04.m2", + fileId = "243812", + text = "wg_siege01_fx2.m2", + value = "wg_siege01_fx2.m2", }, { - fileId = "194526", - text = "db_dragonskull05.m2", - value = "db_dragonskull05.m2", + fileId = "243813", + text = "wg_siege_door.m2", + value = "wg_siege_door.m2", }, { - fileId = "194527", - text = "db_dragonskull_black.m2", - value = "db_dragonskull_black.m2", + fileId = "243814", + text = "wg_tower01_fx1.m2", + value = "wg_tower01_fx1.m2", }, { - fileId = "194528", - text = "db_dragonsparerib01.m2", - value = "db_dragonsparerib01.m2", + fileId = "243815", + text = "wg_tower01_fx2.m2", + value = "wg_tower01_fx2.m2", }, { - fileId = "194529", - text = "db_dragonspareribs01.m2", - value = "db_dragonspareribs01.m2", + fileId = "243816", + text = "wg_tower01_fx2b.m2", + value = "wg_tower01_fx2b.m2", }, { - fileId = "194530", - text = "db_dragonspareribs01blue.m2", - value = "db_dragonspareribs01blue.m2", + fileId = "196113", + text = "wg_wall01_fx1.m2", + value = "wg_wall01_fx1.m2", }, { - fileId = "194531", - text = "db_dragonspareribs02.m2", - value = "db_dragonspareribs02.m2", + fileId = "196114", + text = "wg_wall01_fx2.m2", + value = "wg_wall01_fx2.m2", }, { - fileId = "194532", - text = "db_dragonspike01.m2", - value = "db_dragonspike01.m2", + fileId = "243817", + text = "wg_wall02_fx1.m2", + value = "wg_wall02_fx1.m2", }, { - fileId = "194533", - text = "db_dragonspike01black.m2", - value = "db_dragonspike01black.m2", + fileId = "243818", + text = "wg_wall02_fx2.m2", + value = "wg_wall02_fx2.m2", }, + }, + text = "lakewintergrasp", + value = "lakewintergrasp", + }, + { + children = { { - fileId = "194534", - text = "db_dragonspike01blue.m2", - value = "db_dragonspike01blue.m2", + fileId = "196119", + text = "nexus_blue_energyball_fast.m2", + value = "nexus_blue_energyball_fast.m2", }, { - fileId = "194535", - text = "db_dragonspike01tan.m2", - value = "db_dragonspike01tan.m2", + fileId = "196122", + text = "nexus_blueenergywell.m2", + value = "nexus_blueenergywell.m2", }, - { - fileId = "194536", - text = "db_dragonspike02.m2", - value = "db_dragonspike02.m2", + { + fileId = "196123", + text = "nexus_bossroom_lightshaft01.m2", + value = "nexus_bossroom_lightshaft01.m2", }, { - fileId = "194537", - text = "db_dragonspike03.m2", - value = "db_dragonspike03.m2", + fileId = "243821", + text = "nexus_cage_active_01.m2", + value = "nexus_cage_active_01.m2", }, { - fileId = "194538", - text = "db_dragonspine01.m2", - value = "db_dragonspine01.m2", + fileId = "243822", + text = "nexus_cage_active_door_01.m2", + value = "nexus_cage_active_door_01.m2", }, { - fileId = "194539", - text = "db_dragonspine01_black.m2", - value = "db_dragonspine01_black.m2", + fileId = "196129", + text = "nexus_crashed_platform_01.m2", + value = "nexus_crashed_platform_01.m2", }, { - fileId = "194540", - text = "db_dragonspine01_blue.m2", - value = "db_dragonspine01_blue.m2", + fileId = "196130", + text = "nexus_crashed_platform_02.m2", + value = "nexus_crashed_platform_02.m2", }, { - fileId = "194541", - text = "db_dragonspine01_gray.m2", - value = "db_dragonspine01_gray.m2", + fileId = "196132", + text = "nexus_crystals_01.m2", + value = "nexus_crystals_01.m2", }, { - fileId = "194542", - text = "db_dragonspine01_white.m2", - value = "db_dragonspine01_white.m2", + fileId = "196143", + text = "nexus_dragon_broken_body.m2", + value = "nexus_dragon_broken_body.m2", }, { - fileId = "194543", - text = "db_dragonspine02.m2", - value = "db_dragonspine02.m2", + fileId = "196144", + text = "nexus_dragon_broken_head.m2", + value = "nexus_dragon_broken_head.m2", }, { - fileId = "194544", - text = "db_dragonspine02blue.m2", - value = "db_dragonspine02blue.m2", + fileId = "196145", + text = "nexus_dragon_broken_leftwing.m2", + value = "nexus_dragon_broken_leftwing.m2", }, { - fileId = "194545", - text = "db_dragonspine03.m2", - value = "db_dragonspine03.m2", + fileId = "196146", + text = "nexus_dragon_broken_rightarm.m2", + value = "nexus_dragon_broken_rightarm.m2", }, { - fileId = "194546", - text = "db_dragonspine04.m2", - value = "db_dragonspine04.m2", + fileId = "196147", + text = "nexus_dragon_broken_rightwing.m2", + value = "nexus_dragon_broken_rightwing.m2", }, { - fileId = "194547", - text = "db_dragonspinepiece01.m2", - value = "db_dragonspinepiece01.m2", + fileId = "196148", + text = "nexus_dragon_broken_rubble.m2", + value = "nexus_dragon_broken_rubble.m2", }, { - fileId = "194548", - text = "db_dragonspinepiece02.m2", - value = "db_dragonspinepiece02.m2", + fileId = "196149", + text = "nexus_dragon_broken_tail.m2", + value = "nexus_dragon_broken_tail.m2", }, { - fileId = "194549", - text = "db_dragonspinepiece03.m2", - value = "db_dragonspinepiece03.m2", + fileId = "196150", + text = "nexus_dragon_broken_tailend.m2", + value = "nexus_dragon_broken_tailend.m2", }, { - fileId = "194550", - text = "db_dragonwing01_left.m2", - value = "db_dragonwing01_left.m2", + fileId = "196152", + text = "nexus_dragonegg_01.m2", + value = "nexus_dragonegg_01.m2", }, { - fileId = "194551", - text = "db_dragonwing01_leftblack.m2", - value = "db_dragonwing01_leftblack.m2", + fileId = "196153", + text = "nexus_dragonegg_02.m2", + value = "nexus_dragonegg_02.m2", }, { - fileId = "194552", - text = "db_dragonwing01_leftblue.m2", - value = "db_dragonwing01_leftblue.m2", + fileId = "196155", + text = "nexus_dragonorb_01.m2", + value = "nexus_dragonorb_01.m2", }, { - fileId = "194553", - text = "db_dragonwing01_leftgray.m2", - value = "db_dragonwing01_leftgray.m2", + fileId = "196156", + text = "nexus_elevator_basestructure_01.m2", + value = "nexus_elevator_basestructure_01.m2", }, { - fileId = "194554", - text = "db_dragonwing01_leftwhite.m2", - value = "db_dragonwing01_leftwhite.m2", + fileId = "243823", + text = "nexus_energychains.m2", + value = "nexus_energychains.m2", }, { - fileId = "194555", - text = "db_dragonwing01_right.m2", - value = "db_dragonwing01_right.m2", + fileId = "196158", + text = "nexus_energyfalls_01.m2", + value = "nexus_energyfalls_01.m2", }, { - fileId = "194556", - text = "db_dragonwing01_rightblack.m2", - value = "db_dragonwing01_rightblack.m2", + fileId = "196160", + text = "nexus_energytrail_01.m2", + value = "nexus_energytrail_01.m2", }, { - fileId = "194557", - text = "db_dragonwing01_rightblue.m2", - value = "db_dragonwing01_rightblue.m2", + fileId = "196161", + text = "nexus_energytrail_02.m2", + value = "nexus_energytrail_02.m2", }, { - fileId = "194558", - text = "db_dragonwing01_rightgray.m2", - value = "db_dragonwing01_rightgray.m2", + fileId = "196163", + text = "nexus_falling_magicleaf_01.m2", + value = "nexus_falling_magicleaf_01.m2", }, { - fileId = "194559", - text = "db_dragonwing01_rightwhite.m2", - value = "db_dragonwing01_rightwhite.m2", + fileId = "196165", + text = "nexus_fire_conduit.m2", + value = "nexus_fire_conduit.m2", }, { - fileId = "194560", - text = "db_flowers01.m2", - value = "db_flowers01.m2", + fileId = "196175", + text = "nexus_frost_ritualdesign01.m2", + value = "nexus_frost_ritualdesign01.m2", }, { - fileId = "194561", - text = "db_flowers02.m2", - value = "db_flowers02.m2", + fileId = "196176", + text = "nexus_frost_ritualdesign02_red.m2", + value = "nexus_frost_ritualdesign02_red.m2", }, { - fileId = "194562", - text = "db_flowers03.m2", - value = "db_flowers03.m2", + fileId = "196177", + text = "nexus_fx_exterior_beam.m2", + value = "nexus_fx_exterior_beam.m2", }, { - fileId = "194563", - text = "db_frostmornealtar_01.m2", - value = "db_frostmornealtar_01.m2", + fileId = "196178", + text = "nexus_hallway_lightshaft01.m2", + value = "nexus_hallway_lightshaft01.m2", }, { - fileId = "194564", - text = "db_frostmornealtar_02.m2", - value = "db_frostmornealtar_02.m2", + fileId = "196181", + text = "nexus_hanging_energy_beads_01.m2", + value = "nexus_hanging_energy_beads_01.m2", }, { - fileId = "194565", - text = "db_leaves_fall.m2", - value = "db_leaves_fall.m2", + fileId = "196182", + text = "nexus_ice_conduit.m2", + value = "nexus_ice_conduit.m2", }, { - fileId = "194566", - text = "db_leaves_fall02.m2", - value = "db_leaves_fall02.m2", + fileId = "196185", + text = "nexus_iciclea.m2", + value = "nexus_iciclea.m2", }, { - fileId = "194567", - text = "db_lilypads01.m2", - value = "db_lilypads01.m2", + fileId = "196186", + text = "nexus_library_lightshaft01.m2", + value = "nexus_library_lightshaft01.m2", }, { - fileId = "194568", - text = "db_lilypads02.m2", - value = "db_lilypads02.m2", + fileId = "196187", + text = "nexus_library_mainfx.m2", + value = "nexus_library_mainfx.m2", }, { - fileId = "194571", - text = "db_red_dragon_shrine_leafs.m2", - value = "db_red_dragon_shrine_leafs.m2", + fileId = "517240", + text = "nexus_library_mainfx_origin.m2", + value = "nexus_library_mainfx_origin.m2", }, { - fileId = "194580", - text = "dragonblight_bush01.m2", - value = "dragonblight_bush01.m2", + fileId = "196188", + text = "nexus_library_platformfx.m2", + value = "nexus_library_platformfx.m2", }, { - fileId = "194581", - text = "dragonblight_bush02.m2", - value = "dragonblight_bush02.m2", + fileId = "196189", + text = "nexus_library_trickle_a.m2", + value = "nexus_library_trickle_a.m2", }, { - fileId = "194583", - text = "dragonblight_bush03.m2", - value = "dragonblight_bush03.m2", + fileId = "196190", + text = "nexus_library_trickle_b.m2", + value = "nexus_library_trickle_b.m2", }, { - fileId = "194584", - text = "dragonblight_cliff_01.m2", - value = "dragonblight_cliff_01.m2", + fileId = "196191", + text = "nexus_library_trickle_c.m2", + value = "nexus_library_trickle_c.m2", }, { - fileId = "194585", - text = "dragonblight_cliff_02.m2", - value = "dragonblight_cliff_02.m2", + fileId = "196193", + text = "nexus_magicdrop_blue_01.m2", + value = "nexus_magicdrop_blue_01.m2", }, { - fileId = "194586", - text = "dragonblight_cliff_03.m2", - value = "dragonblight_cliff_03.m2", + fileId = "196194", + text = "nexus_magicdrop_blue_02.m2", + value = "nexus_magicdrop_blue_02.m2", }, { - fileId = "194587", - text = "dragonblight_cliff_04.m2", - value = "dragonblight_cliff_04.m2", + fileId = "196195", + text = "nexus_magicdrop_orange_01.m2", + value = "nexus_magicdrop_orange_01.m2", }, { - fileId = "194588", - text = "dragonblight_cliff_05.m2", - value = "dragonblight_cliff_05.m2", + fileId = "196196", + text = "nexus_magicorb_blue_01.m2", + value = "nexus_magicorb_blue_01.m2", }, { - fileId = "194589", - text = "dragonblight_cliff_06.m2", - value = "dragonblight_cliff_06.m2", + fileId = "196197", + text = "nexus_magicorb_orange_01.m2", + value = "nexus_magicorb_orange_01.m2", }, { - fileId = "243323", - text = "dragonblight_cliff_grey_01.m2", - value = "dragonblight_cliff_grey_01.m2", + fileId = "243824", + text = "nexus_mananeedleplatform_effects_01.m2", + value = "nexus_mananeedleplatform_effects_01.m2", }, { - fileId = "243324", - text = "dragonblight_cliff_grey_02.m2", - value = "dragonblight_cliff_grey_02.m2", + fileId = "196198", + text = "nexus_octoroom01_conduit.m2", + value = "nexus_octoroom01_conduit.m2", }, { - fileId = "243325", - text = "dragonblight_cliff_grey_03.m2", - value = "dragonblight_cliff_grey_03.m2", + fileId = "196199", + text = "nexus_octoroom02_conduit.m2", + value = "nexus_octoroom02_conduit.m2", }, { - fileId = "243326", - text = "dragonblight_cliff_grey_04.m2", - value = "dragonblight_cliff_grey_04.m2", + fileId = "196200", + text = "nexus_octoroom03_conduit.m2", + value = "nexus_octoroom03_conduit.m2", }, { - fileId = "243327", - text = "dragonblight_cliff_grey_05.m2", - value = "dragonblight_cliff_grey_05.m2", + fileId = "196201", + text = "nexus_octoroom04_conduit.m2", + value = "nexus_octoroom04_conduit.m2", }, { - fileId = "243328", - text = "dragonblight_cliff_grey_06.m2", - value = "dragonblight_cliff_grey_06.m2", + fileId = "196202", + text = "nexus_octoroom_lightshaft01.m2", + value = "nexus_octoroom_lightshaft01.m2", }, { - fileId = "194592", - text = "dragonblight_debrispile_01.m2", - value = "dragonblight_debrispile_01.m2", + fileId = "196205", + text = "nexus_pillara.m2", + value = "nexus_pillara.m2", }, { - fileId = "194593", - text = "dragonblight_debrispile_02.m2", - value = "dragonblight_debrispile_02.m2", + fileId = "243825", + text = "nexus_raid_floating_platform_model.m2", + value = "nexus_raid_floating_platform_model.m2", }, { - fileId = "243331", - text = "dragonblight_fires_lower_01.m2", - value = "dragonblight_fires_lower_01.m2", + fileId = "196208", + text = "nexus_sigil_blue_01.m2", + value = "nexus_sigil_blue_01.m2", }, { - fileId = "243332", - text = "dragonblight_fires_lower_east_02.m2", - value = "dragonblight_fires_lower_east_02.m2", + fileId = "196209", + text = "nexus_sigil_blue_02.m2", + value = "nexus_sigil_blue_02.m2", }, { - fileId = "243333", - text = "dragonblight_fires_lower_west_03.m2", - value = "dragonblight_fires_lower_west_03.m2", + fileId = "196210", + text = "nexus_sigil_blue_small_01.m2", + value = "nexus_sigil_blue_small_01.m2", }, { - fileId = "243334", - text = "dragonblight_fires_upper_east_01.m2", - value = "dragonblight_fires_upper_east_01.m2", + fileId = "196211", + text = "nexus_sigil_blue_small_02.m2", + value = "nexus_sigil_blue_small_02.m2", }, { - fileId = "243335", - text = "dragonblight_fires_upper_north_03.m2", - value = "dragonblight_fires_upper_north_03.m2", + fileId = "196214", + text = "nexus_sigil_orange_01.m2", + value = "nexus_sigil_orange_01.m2", }, { - fileId = "243336", - text = "dragonblight_fires_upper_west_02.m2", - value = "dragonblight_fires_upper_west_02.m2", + fileId = "196215", + text = "nexus_sigil_orange_02.m2", + value = "nexus_sigil_orange_02.m2", }, { - fileId = "194594", - text = "dragonblight_icearch_01.m2", - value = "dragonblight_icearch_01.m2", + fileId = "243826", + text = "nexus_spike_a_ice.m2", + value = "nexus_spike_a_ice.m2", }, { - fileId = "194595", - text = "dragonblight_icearch_02.m2", - value = "dragonblight_icearch_02.m2", + fileId = "243827", + text = "nexus_spike_a_rock.m2", + value = "nexus_spike_a_rock.m2", }, { - fileId = "194597", - text = "dragonblight_iceberg_large_01.m2", - value = "dragonblight_iceberg_large_01.m2", + fileId = "243828", + text = "nexus_spike_b_ice.m2", + value = "nexus_spike_b_ice.m2", }, { - fileId = "194598", - text = "dragonblight_iceberg_large_02.m2", - value = "dragonblight_iceberg_large_02.m2", + fileId = "243829", + text = "nexus_spike_b_rock.m2", + value = "nexus_spike_b_rock.m2", }, { - fileId = "194599", - text = "dragonblight_iceberg_large_03.m2", - value = "dragonblight_iceberg_large_03.m2", + fileId = "243830", + text = "nexus_spike_c_ice.m2", + value = "nexus_spike_c_ice.m2", }, { - fileId = "194600", - text = "dragonblight_iceberg_large_04.m2", - value = "dragonblight_iceberg_large_04.m2", + fileId = "243831", + text = "nexus_spike_c_rock.m2", + value = "nexus_spike_c_rock.m2", }, { - fileId = "194601", - text = "dragonblight_iceberg_large_05.m2", - value = "dragonblight_iceberg_large_05.m2", + fileId = "243832", + text = "nexus_spike_d_ice.m2", + value = "nexus_spike_d_ice.m2", }, { - fileId = "194602", - text = "dragonblight_iceberg_large_06.m2", - value = "dragonblight_iceberg_large_06.m2", + fileId = "243833", + text = "nexus_spike_d_rock.m2", + value = "nexus_spike_d_rock.m2", }, { - fileId = "194605", - text = "dragonblight_icecliff_01.m2", - value = "dragonblight_icecliff_01.m2", + fileId = "196216", + text = "nexus_vortexroom_mainfx.m2", + value = "nexus_vortexroom_mainfx.m2", }, { - fileId = "194606", - text = "dragonblight_icecliff_02.m2", - value = "dragonblight_icecliff_02.m2", + fileId = "519516", + text = "nexus_vortexroom_mainfx_2.m2", + value = "nexus_vortexroom_mainfx_2.m2", }, { - fileId = "194607", - text = "dragonblight_icecliff_03.m2", - value = "dragonblight_icecliff_03.m2", + fileId = "196217", + text = "nexus_white_bush_a.m2", + value = "nexus_white_bush_a.m2", }, + }, + text = "nexus", + value = "nexus", + }, + { + children = { { - fileId = "194608", - text = "dragonblight_icecliff_04.m2", - value = "dragonblight_icecliff_04.m2", + children = { + { + fileId = "196220", + text = "oracle_hut01.m2", + value = "oracle_hut01.m2", + }, + { + fileId = "196221", + text = "oracle_hut02.m2", + value = "oracle_hut02.m2", + }, + { + fileId = "196222", + text = "oracle_hut03.m2", + value = "oracle_hut03.m2", + }, + }, + text = "huts", + value = "huts", }, + }, + text = "oracle", + value = "oracle", + }, + { + children = { { - fileId = "194609", - text = "dragonblight_icecliff_05.m2", - value = "dragonblight_icecliff_05.m2", + fileId = "196225", + text = "nd_bfdpot_01.m2", + value = "nd_bfdpot_01.m2", }, { - fileId = "194610", - text = "dragonblight_icecliff_06.m2", - value = "dragonblight_icecliff_06.m2", + fileId = "196227", + text = "nd_bfdpot_02.m2", + value = "nd_bfdpot_02.m2", }, { - fileId = "194613", - text = "dragonblight_icedragonwall_01.m2", - value = "dragonblight_icedragonwall_01.m2", + fileId = "196228", + text = "nd_bfdpot_03.m2", + value = "nd_bfdpot_03.m2", }, { - fileId = "194614", - text = "dragonblight_icerock_01.m2", - value = "dragonblight_icerock_01.m2", + fileId = "196229", + text = "nd_bfdpot_04.m2", + value = "nd_bfdpot_04.m2", }, { - fileId = "194615", - text = "dragonblight_icerock_02.m2", - value = "dragonblight_icerock_02.m2", + fileId = "196230", + text = "nd_bfdpot_broken_01.m2", + value = "nd_bfdpot_broken_01.m2", }, { - fileId = "194616", - text = "dragonblight_icerock_03.m2", - value = "dragonblight_icerock_03.m2", + fileId = "196231", + text = "nd_bfdpot_broken_02.m2", + value = "nd_bfdpot_broken_02.m2", }, { - fileId = "194617", - text = "dragonblight_icerock_04.m2", - value = "dragonblight_icerock_04.m2", + fileId = "196232", + text = "nd_nestonebench_01.m2", + value = "nd_nestonebench_01.m2", }, { - fileId = "194618", - text = "dragonblight_icerock_05.m2", - value = "dragonblight_icerock_05.m2", + fileId = "196233", + text = "nd_nightelfruins_01.m2", + value = "nd_nightelfruins_01.m2", }, { - fileId = "194619", - text = "dragonblight_icerock_06.m2", - value = "dragonblight_icerock_06.m2", + fileId = "196235", + text = "nd_nightelfruins_02.m2", + value = "nd_nightelfruins_02.m2", }, { - fileId = "194621", - text = "dragonblight_iceshard_01.m2", - value = "dragonblight_iceshard_01.m2", + fileId = "196237", + text = "nd_nightelfruins_03.m2", + value = "nd_nightelfruins_03.m2", }, { - fileId = "194622", - text = "dragonblight_iceshard_02.m2", - value = "dragonblight_iceshard_02.m2", + fileId = "196239", + text = "nd_nightelfruins_04.m2", + value = "nd_nightelfruins_04.m2", }, { - fileId = "194623", - text = "dragonblight_iceshard_03.m2", - value = "dragonblight_iceshard_03.m2", + fileId = "196241", + text = "nd_nightelfruins_05.m2", + value = "nd_nightelfruins_05.m2", }, { - fileId = "194624", - text = "dragonblight_iceshard_04.m2", - value = "dragonblight_iceshard_04.m2", + fileId = "196243", + text = "nd_nightelfruins_06.m2", + value = "nd_nightelfruins_06.m2", }, { - fileId = "194625", - text = "dragonblight_iceshard_05.m2", - value = "dragonblight_iceshard_05.m2", + fileId = "196245", + text = "nd_nightelfruins_07.m2", + value = "nd_nightelfruins_07.m2", }, { - fileId = "194626", - text = "dragonblight_iceshard_06.m2", - value = "dragonblight_iceshard_06.m2", + fileId = "196247", + text = "nd_nightelfruins_08.m2", + value = "nd_nightelfruins_08.m2", }, { - fileId = "194627", - text = "dragonblight_icicle_01.m2", - value = "dragonblight_icicle_01.m2", + fileId = "196249", + text = "nd_nightelfruins_09.m2", + value = "nd_nightelfruins_09.m2", }, { - fileId = "194628", - text = "dragonblight_icicle_02.m2", - value = "dragonblight_icicle_02.m2", + fileId = "196251", + text = "nd_nightelfruins_10.m2", + value = "nd_nightelfruins_10.m2", }, { - fileId = "243338", - text = "dragonblight_leaves_01.m2", - value = "dragonblight_leaves_01.m2", + fileId = "196252", + text = "nd_nightelfruins_11.m2", + value = "nd_nightelfruins_11.m2", }, { - fileId = "243339", - text = "dragonblight_leaveslarge.m2", - value = "dragonblight_leaveslarge.m2", + fileId = "196253", + text = "nd_nightelfruins_12.m2", + value = "nd_nightelfruins_12.m2", }, { - fileId = "194633", - text = "dragonblight_rock_01.m2", - value = "dragonblight_rock_01.m2", + fileId = "196254", + text = "nd_nightelfruins_13.m2", + value = "nd_nightelfruins_13.m2", }, { - fileId = "194634", - text = "dragonblight_rock_02.m2", - value = "dragonblight_rock_02.m2", + fileId = "196255", + text = "nd_nightelfruins_14.m2", + value = "nd_nightelfruins_14.m2", }, { - fileId = "194635", - text = "dragonblight_rock_03.m2", - value = "dragonblight_rock_03.m2", + fileId = "196256", + text = "nd_nightelfruins_15.m2", + value = "nd_nightelfruins_15.m2", }, { - fileId = "194636", - text = "dragonblight_rock_04.m2", - value = "dragonblight_rock_04.m2", + fileId = "196257", + text = "nd_nightelfruins_16.m2", + value = "nd_nightelfruins_16.m2", }, { - fileId = "194637", - text = "dragonblight_rock_05.m2", - value = "dragonblight_rock_05.m2", + fileId = "196258", + text = "nd_nightelfruins_17.m2", + value = "nd_nightelfruins_17.m2", }, { - fileId = "194638", - text = "dragonblight_rock_06.m2", - value = "dragonblight_rock_06.m2", + fileId = "196259", + text = "nd_nightelfruins_18.m2", + value = "nd_nightelfruins_18.m2", }, { - fileId = "243340", - text = "dragonblight_rock_grey_01.m2", - value = "dragonblight_rock_grey_01.m2", + fileId = "196260", + text = "nd_nightelfruins_19.m2", + value = "nd_nightelfruins_19.m2", }, { - fileId = "243341", - text = "dragonblight_rock_grey_02.m2", - value = "dragonblight_rock_grey_02.m2", + fileId = "196261", + text = "nd_nightelfruins_20.m2", + value = "nd_nightelfruins_20.m2", }, { - fileId = "243342", - text = "dragonblight_rock_grey_03.m2", - value = "dragonblight_rock_grey_03.m2", + fileId = "196262", + text = "nd_nightelfruins_21.m2", + value = "nd_nightelfruins_21.m2", }, { - fileId = "243343", - text = "dragonblight_rock_grey_04.m2", - value = "dragonblight_rock_grey_04.m2", + fileId = "196263", + text = "nd_nightelfruins_22.m2", + value = "nd_nightelfruins_22.m2", }, { - fileId = "243344", - text = "dragonblight_rock_grey_05.m2", - value = "dragonblight_rock_grey_05.m2", + fileId = "196264", + text = "nd_nightelfruins_23.m2", + value = "nd_nightelfruins_23.m2", }, + }, + text = "riplash", + value = "riplash", + }, + { + children = { { - fileId = "243345", - text = "dragonblight_rock_grey_06.m2", - value = "dragonblight_rock_grey_06.m2", + fileId = "365265", + text = "reddragonshrine_tree01.m2", + value = "reddragonshrine_tree01.m2", }, { - fileId = "194639", - text = "dragonblight_shard_01.m2", - value = "dragonblight_shard_01.m2", + fileId = "365266", + text = "reddragonshrine_tree02.m2", + value = "reddragonshrine_tree02.m2", }, { - fileId = "194640", - text = "dragonblight_shard_02.m2", - value = "dragonblight_shard_02.m2", + fileId = "365267", + text = "reddragonshrine_tree03.m2", + value = "reddragonshrine_tree03.m2", }, { - fileId = "194641", - text = "dragonblight_shard_03.m2", - value = "dragonblight_shard_03.m2", + fileId = "365268", + text = "reddragonshrine_tree04.m2", + value = "reddragonshrine_tree04.m2", }, { - fileId = "194642", - text = "dragonblight_shard_04.m2", - value = "dragonblight_shard_04.m2", + fileId = "369736", + text = "reddragonshrine_tree04_burned.m2", + value = "reddragonshrine_tree04_burned.m2", }, { - fileId = "194643", - text = "dragonblight_shard_05.m2", - value = "dragonblight_shard_05.m2", + fileId = "370181", + text = "reddragonshrine_tree04_burned_anim.m2", + value = "reddragonshrine_tree04_burned_anim.m2", }, { - fileId = "194644", - text = "dragonblight_shard_06.m2", - value = "dragonblight_shard_06.m2", + fileId = "392381", + text = "reddragonshrine_tree05.m2", + value = "reddragonshrine_tree05.m2", }, { - fileId = "243346", - text = "dragonblight_shard_grey_01.m2", - value = "dragonblight_shard_grey_01.m2", + fileId = "392382", + text = "reddragonshrine_tree06.m2", + value = "reddragonshrine_tree06.m2", }, { - fileId = "243347", - text = "dragonblight_shard_grey_02.m2", - value = "dragonblight_shard_grey_02.m2", + fileId = "392383", + text = "reddragonshrine_tree07.m2", + value = "reddragonshrine_tree07.m2", }, { - fileId = "243348", - text = "dragonblight_shard_grey_03.m2", - value = "dragonblight_shard_grey_03.m2", + fileId = "392384", + text = "reddragonshrine_tree08.m2", + value = "reddragonshrine_tree08.m2", }, { - fileId = "243349", - text = "dragonblight_shard_grey_04.m2", - value = "dragonblight_shard_grey_04.m2", + fileId = "367330", + text = "rubysanctum_door_01.m2", + value = "rubysanctum_door_01.m2", }, { - fileId = "243350", - text = "dragonblight_shard_grey_05.m2", - value = "dragonblight_shard_grey_05.m2", + fileId = "368578", + text = "rubysanctum_door_02.m2", + value = "rubysanctum_door_02.m2", }, { - fileId = "243351", - text = "dragonblight_shard_grey_06.m2", - value = "dragonblight_shard_grey_06.m2", + fileId = "369209", + text = "rubysanctum_door_03.m2", + value = "rubysanctum_door_03.m2", }, { - fileId = "194646", - text = "dragonblight_shoreline_ice_01.m2", - value = "dragonblight_shoreline_ice_01.m2", + fileId = "370351", + text = "rubysanctum_door_04.m2", + value = "rubysanctum_door_04.m2", }, + }, + text = "rubysanctum", + value = "rubysanctum", + }, + { + children = { { - fileId = "194647", - text = "dragonblight_shoreline_ice_02.m2", - value = "dragonblight_shoreline_ice_02.m2", + children = { + { + fileId = "196266", + text = "sholazarpalm_bridge01.m2", + value = "sholazarpalm_bridge01.m2", + }, + }, + text = "bridge", + value = "bridge", }, { - fileId = "243352", - text = "dragonblight_shoreline_ice_single.m2", - value = "dragonblight_shoreline_ice_single.m2", + children = { + { + fileId = "196270", + text = "sholazar_aloea.m2", + value = "sholazar_aloea.m2", + }, + { + fileId = "196271", + text = "sholazar_aloeb.m2", + value = "sholazar_aloeb.m2", + }, + { + fileId = "196272", + text = "sholazar_bambooa.m2", + value = "sholazar_bambooa.m2", + }, + { + fileId = "196273", + text = "sholazar_bamboob.m2", + value = "sholazar_bamboob.m2", + }, + { + fileId = "196274", + text = "sholazar_cattaila.m2", + value = "sholazar_cattaila.m2", + }, + { + fileId = "196275", + text = "sholazar_cattailb.m2", + value = "sholazar_cattailb.m2", + }, + { + fileId = "243838", + text = "sholazar_fern_questonly.m2", + value = "sholazar_fern_questonly.m2", + }, + { + fileId = "196276", + text = "sholazar_ferna.m2", + value = "sholazar_ferna.m2", + }, + { + fileId = "243839", + text = "sholazar_ferna_dark.m2", + value = "sholazar_ferna_dark.m2", + }, + { + fileId = "196277", + text = "sholazar_fernb.m2", + value = "sholazar_fernb.m2", + }, + { + fileId = "243840", + text = "sholazar_fernb_dark.m2", + value = "sholazar_fernb_dark.m2", + }, + { + fileId = "196278", + text = "sholazar_flowera.m2", + value = "sholazar_flowera.m2", + }, + { + fileId = "196279", + text = "sholazar_flowerb.m2", + value = "sholazar_flowerb.m2", + }, + { + fileId = "196280", + text = "sholazar_grassa.m2", + value = "sholazar_grassa.m2", + }, + { + fileId = "243841", + text = "sholazar_grassa_dark.m2", + value = "sholazar_grassa_dark.m2", + }, + { + fileId = "196281", + text = "sholazar_grassb.m2", + value = "sholazar_grassb.m2", + }, + { + fileId = "243842", + text = "sholazar_grassb_dark.m2", + value = "sholazar_grassb_dark.m2", + }, + { + fileId = "196282", + text = "sholazar_leafybusha.m2", + value = "sholazar_leafybusha.m2", + }, + { + fileId = "243843", + text = "sholazar_leafybusha_dark.m2", + value = "sholazar_leafybusha_dark.m2", + }, + { + fileId = "196283", + text = "sholazar_leafybushb.m2", + value = "sholazar_leafybushb.m2", + }, + { + fileId = "243844", + text = "sholazar_leafybushb_dark.m2", + value = "sholazar_leafybushb_dark.m2", + }, + { + fileId = "196284", + text = "sholazarshrub04.m2", + value = "sholazarshrub04.m2", + }, + { + fileId = "196285", + text = "sholazarshrub05.m2", + value = "sholazarshrub05.m2", + }, + { + fileId = "196286", + text = "sholazarshrub07.m2", + value = "sholazarshrub07.m2", + }, + { + fileId = "196287", + text = "sholazarshrub09.m2", + value = "sholazarshrub09.m2", + }, + }, + text = "bushes", + value = "bushes", }, { - fileId = "194650", - text = "dragonblight_titanicesheet_01.m2", - value = "dragonblight_titanicesheet_01.m2", + children = { + { + fileId = "243845", + text = "sholazarbasin_fog_cool.m2", + value = "sholazarbasin_fog_cool.m2", + }, + { + fileId = "243846", + text = "sholazarbasin_fog_warm.m2", + value = "sholazarbasin_fog_warm.m2", + }, + }, + text = "fog", + value = "fog", }, { - fileId = "194651", - text = "dragonblight_titanicesheet_02.m2", - value = "dragonblight_titanicesheet_02.m2", + fileId = "243847", + text = "hatchwindow.m2", + value = "hatchwindow.m2", }, { - fileId = "194652", - text = "dragonblight_titanicesheet_03.m2", - value = "dragonblight_titanicesheet_03.m2", + children = { + { + fileId = "196290", + text = "sholazar_lightray_01.m2", + value = "sholazar_lightray_01.m2", + }, + { + fileId = "196291", + text = "sholazar_lightray_02.m2", + value = "sholazar_lightray_02.m2", + }, + }, + text = "lightfx", + value = "lightfx", }, { - fileId = "194654", - text = "dragonblight_tree01.m2", - value = "dragonblight_tree01.m2", + fileId = "243849", + text = "losthatch.m2", + value = "losthatch.m2", }, { - fileId = "194656", - text = "dragonblight_tree02.m2", - value = "dragonblight_tree02.m2", + children = { + { + fileId = "196293", + text = "sholazar_rocka.m2", + value = "sholazar_rocka.m2", + }, + { + fileId = "243850", + text = "sholazar_rocka_dark.m2", + value = "sholazar_rocka_dark.m2", + }, + { + fileId = "196294", + text = "sholazar_rockb.m2", + value = "sholazar_rockb.m2", + }, + { + fileId = "243852", + text = "sholazar_rockb_dark.m2", + value = "sholazar_rockb_dark.m2", + }, + { + fileId = "196295", + text = "sholazar_rockc.m2", + value = "sholazar_rockc.m2", + }, + { + fileId = "243853", + text = "sholazar_rockc_dark.m2", + value = "sholazar_rockc_dark.m2", + }, + { + fileId = "196296", + text = "sholazar_rockd.m2", + value = "sholazar_rockd.m2", + }, + { + fileId = "243854", + text = "sholazar_rockd_dark.m2", + value = "sholazar_rockd_dark.m2", + }, + { + fileId = "196297", + text = "sholazar_rocke.m2", + value = "sholazar_rocke.m2", + }, + { + fileId = "243855", + text = "sholazar_rocke_dark.m2", + value = "sholazar_rocke_dark.m2", + }, + { + fileId = "196299", + text = "sholazar_rocksmalla.m2", + value = "sholazar_rocksmalla.m2", + }, + { + fileId = "196300", + text = "sholazar_rocksmallb.m2", + value = "sholazar_rocksmallb.m2", + }, + { + fileId = "196301", + text = "sholazar_rocksmallc.m2", + value = "sholazar_rocksmallc.m2", + }, + { + fileId = "196302", + text = "sholazar_rocksmalld.m2", + value = "sholazar_rocksmalld.m2", + }, + }, + text = "rocks", + value = "rocks", }, { - fileId = "194658", - text = "dragonblight_tree03.m2", - value = "dragonblight_tree03.m2", + children = { + { + fileId = "196303", + text = "shipwreck_sails.m2", + value = "shipwreck_sails.m2", + }, + }, + text = "shipwreck_d", + value = "shipwreck_d", }, { - fileId = "194660", - text = "dragonblight_tree04.m2", - value = "dragonblight_tree04.m2", + fileId = "196305", + text = "sholazar_crystal_01.m2", + value = "sholazar_crystal_01.m2", }, { - fileId = "194662", - text = "dragonblight_tree05.m2", - value = "dragonblight_tree05.m2", + fileId = "196306", + text = "sholazar_crystal_02.m2", + value = "sholazar_crystal_02.m2", }, { - fileId = "194663", - text = "dragonblight_tree06.m2", - value = "dragonblight_tree06.m2", + fileId = "196307", + text = "sholazar_crystal_03.m2", + value = "sholazar_crystal_03.m2", }, { - fileId = "194664", - text = "dragonblight_tree07.m2", - value = "dragonblight_tree07.m2", + fileId = "243856", + text = "sholazar_crystal_03a.m2", + value = "sholazar_crystal_03a.m2", }, { - fileId = "194665", - text = "dragonblight_treeinfected01.m2", - value = "dragonblight_treeinfected01.m2", + fileId = "196308", + text = "sholazar_crystal_04.m2", + value = "sholazar_crystal_04.m2", }, { - fileId = "194666", - text = "dragonblight_treeinfected02.m2", - value = "dragonblight_treeinfected02.m2", + fileId = "243857", + text = "sholazar_crystal_04a.m2", + value = "sholazar_crystal_04a.m2", }, { - fileId = "194667", - text = "dragonblight_treeinfected03.m2", - value = "dragonblight_treeinfected03.m2", + fileId = "196309", + text = "sholazar_crystal_05.m2", + value = "sholazar_crystal_05.m2", + }, + { + fileId = "196310", + text = "sholazar_crystal_06.m2", + value = "sholazar_crystal_06.m2", }, { - fileId = "194668", - text = "dragonblight_treeinfected04.m2", - value = "dragonblight_treeinfected04.m2", + fileId = "196311", + text = "sholazar_crystal_07.m2", + value = "sholazar_crystal_07.m2", }, { - children = { - { - fileId = "194697", - text = "hugeprotodragonskull01.m2", - value = "hugeprotodragonskull01.m2", - }, - }, - text = "hugeprotodragonskull", - value = "hugeprotodragonskull", + fileId = "243859", + text = "sholazar_geode_crys_1.m2", + value = "sholazar_geode_crys_1.m2", }, { - children = { - { - fileId = "194699", - text = "nd_cavespiderweb.m2", - value = "nd_cavespiderweb.m2", - }, - }, - text = "nerubianspiderwebs", - value = "nerubianspiderwebs", + fileId = "243860", + text = "sholazar_geode_crys_2.m2", + value = "sholazar_geode_crys_2.m2", }, { - fileId = "243356", - text = "scytheofantiok.m2", - value = "scytheofantiok.m2", + fileId = "243861", + text = "sholazar_geode_crys_3.m2", + value = "sholazar_geode_crys_3.m2", }, { children = { { - fileId = "243357", - text = "dragonblight_combin_waterfall_01.m2", - value = "dragonblight_combin_waterfall_01.m2", + fileId = "196314", + text = "sholazar_branch_large01.m2", + value = "sholazar_branch_large01.m2", }, { - fileId = "243358", - text = "dragonblight_combin_waterfall_02.m2", - value = "dragonblight_combin_waterfall_02.m2", + fileId = "196315", + text = "sholazar_branch_medium01.m2", + value = "sholazar_branch_medium01.m2", }, { - fileId = "243359", - text = "dragonblight_combin_waterfall_03.m2", - value = "dragonblight_combin_waterfall_03.m2", + fileId = "196316", + text = "sholazar_branch_small01.m2", + value = "sholazar_branch_small01.m2", }, { - fileId = "243360", - text = "dragonblight_combin_waterfall_04.m2", - value = "dragonblight_combin_waterfall_04.m2", + fileId = "196317", + text = "sholazar_fruit01.m2", + value = "sholazar_fruit01.m2", }, { - fileId = "243361", - text = "dragonblight_combin_waterfall_05.m2", - value = "dragonblight_combin_waterfall_05.m2", + fileId = "196319", + text = "sholazar_root01.m2", + value = "sholazar_root01.m2", }, { - fileId = "243362", - text = "dragonblight_combin_waterfall_06.m2", - value = "dragonblight_combin_waterfall_06.m2", + fileId = "196320", + text = "sholazar_root02.m2", + value = "sholazar_root02.m2", }, { - fileId = "243363", - text = "dragonblight_combin_waterfall_07.m2", - value = "dragonblight_combin_waterfall_07.m2", + fileId = "196321", + text = "sholazar_root03.m2", + value = "sholazar_root03.m2", }, - }, - text = "waterfalls", - value = "waterfalls", - }, - { - children = { { - fileId = "194702", - text = "dragonblight_windgust_01.m2", - value = "dragonblight_windgust_01.m2", + fileId = "196322", + text = "sholazar_root04.m2", + value = "sholazar_root04.m2", + }, + { + fileId = "196323", + text = "sholazar_root05.m2", + value = "sholazar_root05.m2", + }, + { + fileId = "196324", + text = "sholazar_root06.m2", + value = "sholazar_root06.m2", + }, + { + fileId = "196325", + text = "sholazar_root07.m2", + value = "sholazar_root07.m2", + }, + { + fileId = "196326", + text = "sholazar_treeleafa.m2", + value = "sholazar_treeleafa.m2", + }, + { + fileId = "196327", + text = "sholazar_treeleafb.m2", + value = "sholazar_treeleafb.m2", + }, + { + fileId = "196329", + text = "sholazar_vine01.m2", + value = "sholazar_vine01.m2", + }, + { + fileId = "196330", + text = "sholazar_vine02.m2", + value = "sholazar_vine02.m2", + }, + { + fileId = "196331", + text = "sholazarbroadleaf_bush01.m2", + value = "sholazarbroadleaf_bush01.m2", + }, + { + fileId = "243863", + text = "sholazarbroadleaf_bush01_dark.m2", + value = "sholazarbroadleaf_bush01_dark.m2", + }, + { + fileId = "196332", + text = "sholazarbroadleaf_bush02.m2", + value = "sholazarbroadleaf_bush02.m2", + }, + { + fileId = "243864", + text = "sholazarbroadleaf_bush02_dark.m2", + value = "sholazarbroadleaf_bush02_dark.m2", + }, + { + fileId = "196333", + text = "sholazarbroadleaf_bush_scourge_01.m2", + value = "sholazarbroadleaf_bush_scourge_01.m2", + }, + { + fileId = "196334", + text = "sholazarcanopy_log01.m2", + value = "sholazarcanopy_log01.m2", + }, + { + fileId = "196336", + text = "sholazarcanopy_trunk01.m2", + value = "sholazarcanopy_trunk01.m2", + }, + { + fileId = "196338", + text = "sholazarhugecanopy_doodad.m2", + value = "sholazarhugecanopy_doodad.m2", + }, + { + fileId = "196340", + text = "sholazarhugecanopy_tree01.m2", + value = "sholazarhugecanopy_tree01.m2", + }, + { + fileId = "196341", + text = "sholazarhugecanopy_tree02.m2", + value = "sholazarhugecanopy_tree02.m2", + }, + { + fileId = "196342", + text = "sholazarhugecanopy_tree03.m2", + value = "sholazarhugecanopy_tree03.m2", + }, + { + fileId = "196343", + text = "sholazarhugecanopy_tree_scourge_01.m2", + value = "sholazarhugecanopy_tree_scourge_01.m2", + }, + { + fileId = "243868", + text = "sholazarpalm_burning01.m2", + value = "sholazarpalm_burning01.m2", + }, + { + fileId = "196352", + text = "sholazarpalm_fallentree01.m2", + value = "sholazarpalm_fallentree01.m2", + }, + { + fileId = "196353", + text = "sholazarpalm_fallentree02.m2", + value = "sholazarpalm_fallentree02.m2", + }, + { + fileId = "196355", + text = "sholazarpalm_fruit.m2", + value = "sholazarpalm_fruit.m2", + }, + { + fileId = "196356", + text = "sholazarpalm_log01.m2", + value = "sholazarpalm_log01.m2", + }, + { + fileId = "196357", + text = "sholazarpalm_log02.m2", + value = "sholazarpalm_log02.m2", + }, + { + fileId = "196359", + text = "sholazarpalm_tree01.m2", + value = "sholazarpalm_tree01.m2", + }, + { + fileId = "196361", + text = "sholazarpalm_tree02.m2", + value = "sholazarpalm_tree02.m2", + }, + { + fileId = "196362", + text = "sholazarpalm_tree03.m2", + value = "sholazarpalm_tree03.m2", + }, + { + fileId = "196364", + text = "sholazarpalm_tree_scourge_01.m2", + value = "sholazarpalm_tree_scourge_01.m2", + }, + { + fileId = "196365", + text = "sholazarpalm_tree_scourge_02.m2", + value = "sholazarpalm_tree_scourge_02.m2", + }, + { + fileId = "196366", + text = "sholazarpalm_trunk01.m2", + value = "sholazarpalm_trunk01.m2", + }, + { + fileId = "196367", + text = "sholazarpalm_trunk02.m2", + value = "sholazarpalm_trunk02.m2", }, }, - text = "weatherfx", - value = "weatherfx", + text = "trees", + value = "trees", }, - }, - text = "dragonblight", - value = "dragonblight", - }, - { - children = { { children = { { - fileId = "194703", - text = "dt_bigdoor.m2", - value = "dt_bigdoor.m2", + fileId = "243871", + text = "wasp_smallhive01.m2", + value = "wasp_smallhive01.m2", }, }, - text = "doors", - value = "doors", + text = "waspkit", + value = "waspkit", }, { children = { { - fileId = "194706", - text = "gundrak_trapdoor01.m2", - value = "gundrak_trapdoor01.m2", + fileId = "243872", + text = "sholazar_dirty_waterfall.m2", + value = "sholazar_dirty_waterfall.m2", + }, + { + fileId = "243873", + text = "sholazar_dirty_waterfall_chop.m2", + value = "sholazar_dirty_waterfall_chop.m2", + }, + { + fileId = "196369", + text = "sholazar_northoceanwaterfall_center01.m2", + value = "sholazar_northoceanwaterfall_center01.m2", + }, + { + fileId = "196370", + text = "sholazarnorthoceanwf04.m2", + value = "sholazarnorthoceanwf04.m2", + }, + { + fileId = "196371", + text = "sholazarsouthoceanwaterfall-01.m2", + value = "sholazarsouthoceanwaterfall-01.m2", + }, + { + fileId = "196372", + text = "sholazarsouthoceanwaterfall-03.m2", + value = "sholazarsouthoceanwaterfall-03.m2", + }, + { + fileId = "196373", + text = "sholazarsouthoceanwaterfall-04.m2", + value = "sholazarsouthoceanwaterfall-04.m2", + }, + { + fileId = "196374", + text = "sholazarsouthoceanwaterfall-05.m2", + value = "sholazarsouthoceanwaterfall-05.m2", + }, + { + fileId = "243874", + text = "sholazarsouthoceanwaterfall-06.m2", + value = "sholazarsouthoceanwaterfall-06.m2", + }, + { + fileId = "243875", + text = "sholazarsouthoceanwaterfall-07.m2", + value = "sholazarsouthoceanwaterfall-07.m2", + }, + { + fileId = "196375", + text = "sholazarsouthoceanwaterfall_center.m2", + value = "sholazarsouthoceanwaterfall_center.m2", }, }, - text = "trapdoors", - value = "trapdoors", + text = "waterfalls", + value = "waterfalls", }, }, - text = "draktheron", - value = "draktheron", + text = "scholazar", + value = "scholazar", }, { children = { { - fileId = "255423", - text = "fb_darkshore_totem01.m2", - value = "fb_darkshore_totem01.m2", - }, - { - fileId = "255424", - text = "fb_darkshore_totem02.m2", - value = "fb_darkshore_totem02.m2", - }, - { - fileId = "255403", - text = "fb_lamppost_darkshore_01.m2", - value = "fb_lamppost_darkshore_01.m2", - }, - { - fileId = "194710", - text = "fb_lamppost_gh_01.m2", - value = "fb_lamppost_gh_01.m2", - }, - { - fileId = "255405", - text = "fb_loghouse_darkshore_01.m2", - value = "fb_loghouse_darkshore_01.m2", - }, - { - fileId = "255406", - text = "fb_loghouse_darkshore_02.m2", - value = "fb_loghouse_darkshore_02.m2", - }, - { - fileId = "255407", - text = "fb_loghouse_darkshore_03.m2", - value = "fb_loghouse_darkshore_03.m2", - }, - { - fileId = "194711", - text = "fb_loghouse_gh_01.m2", - value = "fb_loghouse_gh_01.m2", - }, - { - fileId = "194712", - text = "fb_loghouse_gh_02.m2", - value = "fb_loghouse_gh_02.m2", - }, - { - fileId = "194713", - text = "fb_loghouse_gh_03.m2", - value = "fb_loghouse_gh_03.m2", - }, - { - fileId = "194714", - text = "fb_loghouse_gh_snow_01.m2", - value = "fb_loghouse_gh_snow_01.m2", - }, - { - fileId = "194715", - text = "fb_loghouse_gh_snow_02.m2", - value = "fb_loghouse_gh_snow_02.m2", - }, - { - fileId = "194716", - text = "fb_loghouse_gh_snow_03.m2", - value = "fb_loghouse_gh_snow_03.m2", - }, - { - fileId = "194719", - text = "fb_totem01.m2", - value = "fb_totem01.m2", - }, - { - fileId = "194720", - text = "fb_totem01_snow.m2", - value = "fb_totem01_snow.m2", - }, - { - fileId = "194721", - text = "fb_totem02.m2", - value = "fb_totem02.m2", - }, - { - fileId = "194722", - text = "fb_totem02_snow.m2", - value = "fb_totem02_snow.m2", - }, - { - fileId = "293765", - text = "fb_wall_01_darkshore.m2", - value = "fb_wall_01_darkshore.m2", + fileId = "243880", + text = "nd_icebreaker_ship_bg.m2", + value = "nd_icebreaker_ship_bg.m2", }, { - fileId = "194725", - text = "fb_wall_01_grizzlyhills.m2", - value = "fb_wall_01_grizzlyhills.m2", + fileId = "311514", + text = "nd_icebreaker_ship_bg_flip.m2", + value = "nd_icebreaker_ship_bg_flip.m2", }, { - fileId = "194726", - text = "fb_wall_01_grizzlyhills_snow.m2", - value = "fb_wall_01_grizzlyhills_snow.m2", + fileId = "243881", + text = "nd_ship_ud_bg.m2", + value = "nd_ship_ud_bg.m2", }, { - fileId = "293774", - text = "fb_wall_02_darkshore.m2", - value = "fb_wall_02_darkshore.m2", + fileId = "311511", + text = "nd_ship_ud_bg_flip.m2", + value = "nd_ship_ud_bg_flip.m2", }, { - fileId = "194727", - text = "fb_wall_02_grizzlyhills.m2", - value = "fb_wall_02_grizzlyhills.m2", + fileId = "243882", + text = "transport_ship_ud_sails.m2", + value = "transport_ship_ud_sails.m2", }, + }, + text = "ships", + value = "ships", + }, + { + children = { { - fileId = "194728", - text = "fb_wall_02_grizzlyhills_snow.m2", - value = "fb_wall_02_grizzlyhills_snow.m2", + children = { + { + fileId = "243884", + text = "sholazar_rainbow.m2", + value = "sholazar_rainbow.m2", + }, + }, + text = "rainbow", + value = "rainbow", }, { - fileId = "293775", - text = "fb_wall_03_darkshore.m2", - value = "fb_wall_03_darkshore.m2", + fileId = "196383", + text = "sb_aloea.m2", + value = "sb_aloea.m2", }, { - fileId = "194729", - text = "fb_wall_03_grizzlyhills.m2", - value = "fb_wall_03_grizzlyhills.m2", + fileId = "196384", + text = "sb_aloeb.m2", + value = "sb_aloeb.m2", }, { - fileId = "194730", - text = "fb_wall_03_grizzlyhills_snow.m2", - value = "fb_wall_03_grizzlyhills_snow.m2", + fileId = "196385", + text = "sb_ferna.m2", + value = "sb_ferna.m2", }, { - fileId = "293783", - text = "fb_wallgate_01_darkshore.m2", - value = "fb_wallgate_01_darkshore.m2", + fileId = "196386", + text = "sb_fernb.m2", + value = "sb_fernb.m2", }, { - fileId = "194733", - text = "fb_wallgate_01_grizzlyhills.m2", - value = "fb_wallgate_01_grizzlyhills.m2", + fileId = "196387", + text = "sb_grassa.m2", + value = "sb_grassa.m2", }, { - fileId = "194734", - text = "fb_wallgate_01_grizzlyhills_snow.m2", - value = "fb_wallgate_01_grizzlyhills_snow.m2", + fileId = "196388", + text = "sb_grassb.m2", + value = "sb_grassb.m2", }, { - fileId = "293782", - text = "fb_wallgateteeth_01_darkshore.m2", - value = "fb_wallgateteeth_01_darkshore.m2", + fileId = "196389", + text = "sb_leafybusha.m2", + value = "sb_leafybusha.m2", }, { - fileId = "194735", - text = "fb_wallgateteeth_01_grizzlyhills.m2", - value = "fb_wallgateteeth_01_grizzlyhills.m2", + fileId = "196390", + text = "sb_leafybushb.m2", + value = "sb_leafybushb.m2", }, { - fileId = "194736", - text = "fb_wallgateteeth_01_grizzlyhills_snow.m2", - value = "fb_wallgateteeth_01_grizzlyhills_snow.m2", + fileId = "243885", + text = "sholazar_vine_quest_01.m2", + value = "sholazar_vine_quest_01.m2", }, }, - text = "furbolgs", - value = "furbolgs", + text = "sholazarbasin", + value = "sholazarbasin", }, { children = { { - fileId = "243364", - text = "alliance_tabard.m2", - value = "alliance_tabard.m2", + children = { + { + fileId = "196391", + text = "stormpeaks_busha.m2", + value = "stormpeaks_busha.m2", + }, + }, + text = "bushes", + value = "bushes", }, { children = { { - fileId = "194737", - text = "borean_brokenroadlamp01.m2", - value = "borean_brokenroadlamp01.m2", + fileId = "243886", + text = "stormpeaks_fog_01.m2", + value = "stormpeaks_fog_01.m2", }, { - fileId = "194739", - text = "borean_roadlamp01.m2", - value = "borean_roadlamp01.m2", + fileId = "249607", + text = "stormpeaks_ulduar_clouds.m2", + value = "stormpeaks_ulduar_clouds.m2", }, { - fileId = "194742", - text = "borean_signpost01.m2", - value = "borean_signpost01.m2", + fileId = "251925", + text = "stormpeaks_ulduar_clouds_02.m2", + value = "stormpeaks_ulduar_clouds_02.m2", + }, + { + fileId = "254282", + text = "stormpeaks_ulduar_clouds_03.m2", + value = "stormpeaks_ulduar_clouds_03.m2", }, }, - text = "ancientnightelf", - value = "ancientnightelf", + text = "fog", + value = "fog", }, { children = { { - fileId = "252835", - text = "argent_long_banner_01.m2", - value = "argent_long_banner_01.m2", + fileId = "243887", + text = "frozengiantking.m2", + value = "frozengiantking.m2", }, { - fileId = "329303", - text = "argent_shield.m2", - value = "argent_shield.m2", + fileId = "243890", + text = "giantbattle_attack_01.m2", + value = "giantbattle_attack_01.m2", }, { - fileId = "311949", - text = "argent_web_door_01.m2", - value = "argent_web_door_01.m2", + fileId = "243892", + text = "giantbattle_magic.m2", + value = "giantbattle_magic.m2", }, + }, + text = "giantbattle", + value = "giantbattle", + }, + { + children = { { - fileId = "254462", - text = "argentcrusade_arch_01.m2", - value = "argentcrusade_arch_01.m2", + fileId = "243898", + text = "frostgiant_citadelpiece01.m2", + value = "frostgiant_citadelpiece01.m2", }, { - fileId = "194744", - text = "argentcrusade_banner01.m2", - value = "argentcrusade_banner01.m2", + fileId = "243899", + text = "frostgiant_citadelpiece02.m2", + value = "frostgiant_citadelpiece02.m2", }, { - fileId = "309202", - text = "argentcrusade_banner01_nocoll.m2", - value = "argentcrusade_banner01_nocoll.m2", + fileId = "243900", + text = "frostgiant_citadelpiece03.m2", + value = "frostgiant_citadelpiece03.m2", }, { - fileId = "194745", - text = "argentcrusade_banner02.m2", - value = "argentcrusade_banner02.m2", + fileId = "243901", + text = "frostgiant_citadelpiece04.m2", + value = "frostgiant_citadelpiece04.m2", }, { - fileId = "335580", - text = "argentcrusade_batteringram_01.m2", - value = "argentcrusade_batteringram_01.m2", + fileId = "243902", + text = "frostgiant_icearch_01.m2", + value = "frostgiant_icearch_01.m2", }, { - fileId = "339913", - text = "argentcrusade_batteringram_02.m2", - value = "argentcrusade_batteringram_02.m2", + fileId = "243903", + text = "frostgiant_icearch_02.m2", + value = "frostgiant_icearch_02.m2", }, { - fileId = "251630", - text = "argentcrusade_beervendor.m2", - value = "argentcrusade_beervendor.m2", + fileId = "243904", + text = "frostgiant_icecliff_01.m2", + value = "frostgiant_icecliff_01.m2", }, { - fileId = "254463", - text = "argentcrusade_brick_01.m2", - value = "argentcrusade_brick_01.m2", + fileId = "243905", + text = "frostgiant_icecliff_02.m2", + value = "frostgiant_icecliff_02.m2", }, { - fileId = "254464", - text = "argentcrusade_brick_02.m2", - value = "argentcrusade_brick_02.m2", + fileId = "243906", + text = "frostgiant_icecliff_04.m2", + value = "frostgiant_icecliff_04.m2", }, { - fileId = "312682", - text = "argentcrusade_chest_01.m2", - value = "argentcrusade_chest_01.m2", + fileId = "243907", + text = "frostgiant_icecliff_05.m2", + value = "frostgiant_icecliff_05.m2", }, { - fileId = "254465", - text = "argentcrusade_fence_01.m2", - value = "argentcrusade_fence_01.m2", + fileId = "243908", + text = "frostgianticeshard01.m2", + value = "frostgianticeshard01.m2", }, { - fileId = "251631", - text = "argentcrusade_foodtent.m2", - value = "argentcrusade_foodtent.m2", + fileId = "243909", + text = "frostgianticeshard02.m2", + value = "frostgianticeshard02.m2", }, { - fileId = "251633", - text = "argentcrusade_foodtent_02.m2", - value = "argentcrusade_foodtent_02.m2", + fileId = "243910", + text = "frostgianticeshard03.m2", + value = "frostgianticeshard03.m2", }, { - fileId = "250882", - text = "argentcrusade_jousting_lane_end.m2", - value = "argentcrusade_jousting_lane_end.m2", + fileId = "243911", + text = "frostgianticeshard04.m2", + value = "frostgianticeshard04.m2", }, + }, + text = "iceshards", + value = "iceshards", + }, + { + children = { { - fileId = "250883", - text = "argentcrusade_jousting_lane_middle.m2", - value = "argentcrusade_jousting_lane_middle.m2", + fileId = "243914", + text = "stormpeakslightning01.m2", + value = "stormpeakslightning01.m2", }, { - fileId = "254466", - text = "argentcrusade_log_01.m2", - value = "argentcrusade_log_01.m2", + fileId = "243915", + text = "stormpeakslightning02.m2", + value = "stormpeakslightning02.m2", }, { - fileId = "311967", - text = "argentcrusade_monsterdoor.m2", - value = "argentcrusade_monsterdoor.m2", + fileId = "243916", + text = "stormpeakslightning03.m2", + value = "stormpeakslightning03.m2", }, { - fileId = "251634", - text = "argentcrusade_opentent.m2", - value = "argentcrusade_opentent.m2", + fileId = "243917", + text = "stormpeakslightning04.m2", + value = "stormpeakslightning04.m2", }, { - fileId = "251635", - text = "argentcrusade_small01.m2", - value = "argentcrusade_small01.m2", + fileId = "243918", + text = "stormpeakslightning05.m2", + value = "stormpeakslightning05.m2", }, { - fileId = "254264", - text = "argentcrusade_sword_in_ice.m2", - value = "argentcrusade_sword_in_ice.m2", + fileId = "243919", + text = "stormpeakslightning06.m2", + value = "stormpeakslightning06.m2", }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { { - fileId = "250884", - text = "argentcrusade_sword_n_stone.m2", - value = "argentcrusade_sword_n_stone.m2", + fileId = "196393", + text = "stormpeaks_rocka.m2", + value = "stormpeaks_rocka.m2", }, { - fileId = "251637", - text = "argentcrusade_tent05.m2", - value = "argentcrusade_tent05.m2", + fileId = "196394", + text = "stormpeaks_rockb.m2", + value = "stormpeaks_rockb.m2", }, { - fileId = "251738", - text = "argentcrusade_tent06.m2", - value = "argentcrusade_tent06.m2", + fileId = "196395", + text = "stormpeaks_rockc.m2", + value = "stormpeaks_rockc.m2", }, { - fileId = "340025", - text = "argentcrusade_tent07.m2", - value = "argentcrusade_tent07.m2", + fileId = "243920", + text = "stormpeaks_rockd.m2", + value = "stormpeaks_rockd.m2", }, { - fileId = "254467", - text = "argentcrusade_wall_01.m2", - value = "argentcrusade_wall_01.m2", + fileId = "243921", + text = "stormpeaks_rocke.m2", + value = "stormpeaks_rocke.m2", }, { - fileId = "254468", - text = "argentcrusade_wall_02.m2", - value = "argentcrusade_wall_02.m2", + fileId = "243922", + text = "stormpeaks_rockf.m2", + value = "stormpeaks_rockf.m2", }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { { - children = { - { - fileId = "252745", - text = "argentcursade_windypennant01.m2", - value = "argentcursade_windypennant01.m2", - }, - { - fileId = "252836", - text = "tournament_banner_be02.m2", - value = "tournament_banner_be02.m2", - }, - { - fileId = "252724", - text = "tournament_banner_bloodelf01.m2", - value = "tournament_banner_bloodelf01.m2", - }, - { - fileId = "252725", - text = "tournament_banner_bloodelf02.m2", - value = "tournament_banner_bloodelf02.m2", - }, - { - fileId = "252727", - text = "tournament_banner_draenei01.m2", - value = "tournament_banner_draenei01.m2", - }, - { - fileId = "252728", - text = "tournament_banner_draenei02.m2", - value = "tournament_banner_draenei02.m2", - }, - { - fileId = "252730", - text = "tournament_banner_dwarf01.m2", - value = "tournament_banner_dwarf01.m2", - }, - { - fileId = "252731", - text = "tournament_banner_dwarf02.m2", - value = "tournament_banner_dwarf02.m2", - }, - { - fileId = "252733", - text = "tournament_banner_fk01.m2", - value = "tournament_banner_fk01.m2", - }, - { - fileId = "252734", - text = "tournament_banner_fk02.m2", - value = "tournament_banner_fk02.m2", - }, - { - fileId = "252736", - text = "tournament_banner_gnome01.m2", - value = "tournament_banner_gnome01.m2", - }, - { - fileId = "252737", - text = "tournament_banner_gnome02.m2", - value = "tournament_banner_gnome02.m2", - }, - { - fileId = "252739", - text = "tournament_banner_horde01.m2", - value = "tournament_banner_horde01.m2", - }, - { - fileId = "252740", - text = "tournament_banner_horde02.m2", - value = "tournament_banner_horde02.m2", - }, - { - fileId = "252742", - text = "tournament_banner_human01.m2", - value = "tournament_banner_human01.m2", - }, - { - fileId = "252743", - text = "tournament_banner_human02.m2", - value = "tournament_banner_human02.m2", - }, - { - fileId = "252747", - text = "tournament_banner_nelf01.m2", - value = "tournament_banner_nelf01.m2", - }, - { - fileId = "252748", - text = "tournament_banner_nelf02.m2", - value = "tournament_banner_nelf02.m2", - }, - { - fileId = "252750", - text = "tournament_banner_tauren01.m2", - value = "tournament_banner_tauren01.m2", - }, - { - fileId = "252751", - text = "tournament_banner_tauren02.m2", - value = "tournament_banner_tauren02.m2", - }, - { - fileId = "252753", - text = "tournament_banner_trolls01.m2", - value = "tournament_banner_trolls01.m2", - }, - { - fileId = "252754", - text = "tournament_banner_trolls02.m2", - value = "tournament_banner_trolls02.m2", - }, - }, - text = "banners", - value = "banners", + fileId = "196396", + text = "sp_rocnest01.m2", + value = "sp_rocnest01.m2", + }, + { + fileId = "243924", + text = "sp_rocnest03collision.m2", + value = "sp_rocnest03collision.m2", + }, + }, + text = "rocs", + value = "rocs", + }, + { + children = { + { + fileId = "243926", + text = "orangescourgebubbles.m2", + value = "orangescourgebubbles.m2", + }, + { + fileId = "243927", + text = "orangescourgebubbles2.m2", + value = "orangescourgebubbles2.m2", + }, + { + fileId = "243928", + text = "orangescourgesteam.m2", + value = "orangescourgesteam.m2", + }, + }, + text = "scourge", + value = "scourge", + }, + { + children = { + { + fileId = "196398", + text = "stormpeaks_snowdrift_01.m2", + value = "stormpeaks_snowdrift_01.m2", + }, + { + fileId = "243938", + text = "stormpeaks_snowdrift_02.m2", + value = "stormpeaks_snowdrift_02.m2", + }, + { + fileId = "243939", + text = "stormpeaks_snowdrift_03.m2", + value = "stormpeaks_snowdrift_03.m2", + }, + { + fileId = "243940", + text = "stormpeaks_snowdrift_04.m2", + value = "stormpeaks_snowdrift_04.m2", + }, + { + fileId = "243941", + text = "stormpeaks_snowdrift_wind_01.m2", + value = "stormpeaks_snowdrift_wind_01.m2", + }, + }, + text = "snow", + value = "snow", + }, + { + children = { + { + fileId = "196402", + text = "stormpeaks_treea.m2", + value = "stormpeaks_treea.m2", + }, + { + fileId = "196404", + text = "stormpeaks_treeb.m2", + value = "stormpeaks_treeb.m2", + }, + { + fileId = "196406", + text = "stormpeaks_treec.m2", + value = "stormpeaks_treec.m2", + }, + { + fileId = "196407", + text = "stormpeaks_treed.m2", + value = "stormpeaks_treed.m2", + }, + { + fileId = "196408", + text = "stormpeaks_treee.m2", + value = "stormpeaks_treee.m2", + }, + { + fileId = "196409", + text = "stormpeaks_treef.m2", + value = "stormpeaks_treef.m2", + }, + { + fileId = "243942", + text = "stormpeaks_treeg.m2", + value = "stormpeaks_treeg.m2", + }, + { + fileId = "243943", + text = "stormpeaks_treeh.m2", + value = "stormpeaks_treeh.m2", + }, + { + fileId = "243944", + text = "stormpeaks_treei.m2", + value = "stormpeaks_treei.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "stormpeaks", + value = "stormpeaks", + }, + { + children = { + { + children = { + { + fileId = "196410", + text = "ld_stratholme_banner01.m2", + value = "ld_stratholme_banner01.m2", + }, + { + fileId = "196411", + text = "ld_stratholme_banner02.m2", + value = "ld_stratholme_banner02.m2", + }, + { + fileId = "196412", + text = "ld_stratholme_banner03.m2", + value = "ld_stratholme_banner03.m2", + }, + { + fileId = "196413", + text = "ld_stratholme_banner04.m2", + value = "ld_stratholme_banner04.m2", + }, + { + fileId = "196414", + text = "ld_stratholme_banner05.m2", + value = "ld_stratholme_banner05.m2", + }, + { + fileId = "196415", + text = "ld_stratholme_banner06.m2", + value = "ld_stratholme_banner06.m2", }, { - fileId = "311589", - text = "nd_argentcrusadecoliseum_floorpieces.m2", - value = "nd_argentcrusadecoliseum_floorpieces.m2", + fileId = "196416", + text = "ld_stratholme_banner07.m2", + value = "ld_stratholme_banner07.m2", }, { - fileId = "311954", - text = "nd_argentcrusadecoliseum_trapdoor_01.m2", - value = "nd_argentcrusadecoliseum_trapdoor_01.m2", + fileId = "196417", + text = "ld_stratholme_banner08.m2", + value = "ld_stratholme_banner08.m2", }, { - children = { - { - fileId = "253328", - text = "tournament_pennant_argentcru01.m2", - value = "tournament_pennant_argentcru01.m2", - }, - { - fileId = "253329", - text = "tournament_pennant_argentcru02.m2", - value = "tournament_pennant_argentcru02.m2", - }, - { - fileId = "253330", - text = "tournament_pennant_argentcru03.m2", - value = "tournament_pennant_argentcru03.m2", - }, - { - fileId = "311968", - text = "tournament_pennant_argentcru_low.m2", - value = "tournament_pennant_argentcru_low.m2", - }, - { - fileId = "252788", - text = "tournament_pennant_be01.m2", - value = "tournament_pennant_be01.m2", - }, - { - fileId = "252789", - text = "tournament_pennant_be02.m2", - value = "tournament_pennant_be02.m2", - }, - { - fileId = "252790", - text = "tournament_pennant_be03.m2", - value = "tournament_pennant_be03.m2", - }, - { - fileId = "311957", - text = "tournament_pennant_be_low.m2", - value = "tournament_pennant_be_low.m2", - }, - { - fileId = "252925", - text = "tournament_pennant_draenei01.m2", - value = "tournament_pennant_draenei01.m2", - }, - { - fileId = "252926", - text = "tournament_pennant_draenei02.m2", - value = "tournament_pennant_draenei02.m2", - }, - { - fileId = "252927", - text = "tournament_pennant_draenei03.m2", - value = "tournament_pennant_draenei03.m2", - }, - { - fileId = "311958", - text = "tournament_pennant_draenei_low.m2", - value = "tournament_pennant_draenei_low.m2", - }, - { - fileId = "252929", - text = "tournament_pennant_dwarf01.m2", - value = "tournament_pennant_dwarf01.m2", - }, - { - fileId = "252930", - text = "tournament_pennant_dwarf02.m2", - value = "tournament_pennant_dwarf02.m2", - }, - { - fileId = "252931", - text = "tournament_pennant_dwarf03.m2", - value = "tournament_pennant_dwarf03.m2", - }, - { - fileId = "311959", - text = "tournament_pennant_dwarf_low.m2", - value = "tournament_pennant_dwarf_low.m2", - }, - { - fileId = "253379", - text = "tournament_pennant_ebonblade01.m2", - value = "tournament_pennant_ebonblade01.m2", - }, - { - fileId = "253380", - text = "tournament_pennant_ebonblade02.m2", - value = "tournament_pennant_ebonblade02.m2", - }, - { - fileId = "253381", - text = "tournament_pennant_ebonblade03.m2", - value = "tournament_pennant_ebonblade03.m2", - }, - { - fileId = "311960", - text = "tournament_pennant_ebonblade_low.m2", - value = "tournament_pennant_ebonblade_low.m2", - }, - { - fileId = "252838", - text = "tournament_pennant_fk01.m2", - value = "tournament_pennant_fk01.m2", - }, - { - fileId = "252839", - text = "tournament_pennant_fk02.m2", - value = "tournament_pennant_fk02.m2", - }, - { - fileId = "252840", - text = "tournament_pennant_fk03.m2", - value = "tournament_pennant_fk03.m2", - }, - { - fileId = "311961", - text = "tournament_pennant_fk_low.m2", - value = "tournament_pennant_fk_low.m2", - }, - { - fileId = "252823", - text = "tournament_pennant_gnome01.m2", - value = "tournament_pennant_gnome01.m2", - }, - { - fileId = "252824", - text = "tournament_pennant_gnome02.m2", - value = "tournament_pennant_gnome02.m2", - }, - { - fileId = "252825", - text = "tournament_pennant_gnome03.m2", - value = "tournament_pennant_gnome03.m2", - }, - { - fileId = "311962", - text = "tournament_pennant_gnome_low.m2", - value = "tournament_pennant_gnome_low.m2", - }, - { - fileId = "252792", - text = "tournament_pennant_human01.m2", - value = "tournament_pennant_human01.m2", - }, - { - fileId = "252793", - text = "tournament_pennant_human02.m2", - value = "tournament_pennant_human02.m2", - }, - { - fileId = "252794", - text = "tournament_pennant_human03.m2", - value = "tournament_pennant_human03.m2", - }, - { - fileId = "311963", - text = "tournament_pennant_human_low.m2", - value = "tournament_pennant_human_low.m2", - }, - { - fileId = "252796", - text = "tournament_pennant_nelf01.m2", - value = "tournament_pennant_nelf01.m2", - }, - { - fileId = "252797", - text = "tournament_pennant_nelf02.m2", - value = "tournament_pennant_nelf02.m2", - }, - { - fileId = "252798", - text = "tournament_pennant_nelf03.m2", - value = "tournament_pennant_nelf03.m2", - }, - { - fileId = "311964", - text = "tournament_pennant_nelf_low.m2", - value = "tournament_pennant_nelf_low.m2", - }, - { - fileId = "252800", - text = "tournament_pennant_orc01.m2", - value = "tournament_pennant_orc01.m2", - }, - { - fileId = "252801", - text = "tournament_pennant_orc02.m2", - value = "tournament_pennant_orc02.m2", - }, - { - fileId = "252802", - text = "tournament_pennant_orc03.m2", - value = "tournament_pennant_orc03.m2", - }, - { - fileId = "311969", - text = "tournament_pennant_orc_low.m2", - value = "tournament_pennant_orc_low.m2", - }, - { - fileId = "252923", - text = "tournament_pennant_tauren01.m2", - value = "tournament_pennant_tauren01.m2", - }, - { - fileId = "252932", - text = "tournament_pennant_tauren02.m2", - value = "tournament_pennant_tauren02.m2", - }, - { - fileId = "252933", - text = "tournament_pennant_tauren03.m2", - value = "tournament_pennant_tauren03.m2", - }, - { - fileId = "311970", - text = "tournament_pennant_tauren_low.m2", - value = "tournament_pennant_tauren_low.m2", - }, - { - fileId = "252827", - text = "tournament_pennant_troll01.m2", - value = "tournament_pennant_troll01.m2", - }, - { - fileId = "252828", - text = "tournament_pennant_troll02.m2", - value = "tournament_pennant_troll02.m2", - }, - { - fileId = "252829", - text = "tournament_pennant_troll03.m2", - value = "tournament_pennant_troll03.m2", - }, - { - fileId = "311971", - text = "tournament_pennant_troll_low.m2", - value = "tournament_pennant_troll_low.m2", - }, - }, - text = "pennants", - value = "pennants", + fileId = "196418", + text = "ld_stratholme_foodtent.m2", + value = "ld_stratholme_foodtent.m2", + }, + { + fileId = "196419", + text = "ld_stratholme_longbanners01.m2", + value = "ld_stratholme_longbanners01.m2", + }, + { + fileId = "196420", + text = "ld_stratholme_opentent.m2", + value = "ld_stratholme_opentent.m2", + }, + { + fileId = "196421", + text = "ld_stratholme_platform01.m2", + value = "ld_stratholme_platform01.m2", }, }, - text = "argentcrusade", - value = "argentcrusade", + text = "banners", + value = "banners", + }, + { + fileId = "196432", + text = "ld_arc_oldstratholme.m2", + value = "ld_arc_oldstratholme.m2", + }, + { + fileId = "196435", + text = "ld_flowerbunch.m2", + value = "ld_flowerbunch.m2", + }, + { + fileId = "196436", + text = "ld_foodcart01.m2", + value = "ld_foodcart01.m2", + }, + { + fileId = "196438", + text = "ld_graincrate01.m2", + value = "ld_graincrate01.m2", + }, + { + fileId = "196439", + text = "ld_grainsack01.m2", + value = "ld_grainsack01.m2", + }, + { + fileId = "196440", + text = "ld_grainsack02.m2", + value = "ld_grainsack02.m2", + }, + { + fileId = "196442", + text = "ld_green_smoke_haystack.m2", + value = "ld_green_smoke_haystack.m2", + }, + { + fileId = "196443", + text = "ld_hidden_door_room.m2", + value = "ld_hidden_door_room.m2", + }, + { + fileId = "196444", + text = "ld_oldstratholme_rug.m2", + value = "ld_oldstratholme_rug.m2", + }, + { + fileId = "196445", + text = "ld_oldstratholme_rug02.m2", + value = "ld_oldstratholme_rug02.m2", + }, + { + fileId = "196446", + text = "ld_oldstratholme_rug03.m2", + value = "ld_oldstratholme_rug03.m2", + }, + { + fileId = "196447", + text = "ld_oldstratholme_rug04.m2", + value = "ld_oldstratholme_rug04.m2", + }, + { + fileId = "196452", + text = "ld_stratholme_clothingline01.m2", + value = "ld_stratholme_clothingline01.m2", + }, + { + fileId = "196453", + text = "ld_stratholme_platform02.m2", + value = "ld_stratholme_platform02.m2", + }, + { + fileId = "196454", + text = "ld_stratholme_tent01.m2", + value = "ld_stratholme_tent01.m2", + }, + { + fileId = "196455", + text = "ld_stratholme_tent02.m2", + value = "ld_stratholme_tent02.m2", + }, + { + fileId = "196456", + text = "ld_stratholme_tent03.m2", + value = "ld_stratholme_tent03.m2", + }, + { + fileId = "196457", + text = "ld_stratholme_tent04.m2", + value = "ld_stratholme_tent04.m2", + }, + { + fileId = "196458", + text = "ld_stratholme_tent05.m2", + value = "ld_stratholme_tent05.m2", + }, + { + fileId = "196459", + text = "ld_stratholme_tent06.m2", + value = "ld_stratholme_tent06.m2", + }, + { + fileId = "196460", + text = "ld_stratholmestreetlamp01.m2", + value = "ld_stratholmestreetlamp01.m2", + }, + }, + text = "stratholme_past", + value = "stratholme_past", + }, + { + children = { + { + children = { + { + fileId = "196463", + text = "ts_fishinghook_01.m2", + value = "ts_fishinghook_01.m2", + }, + { + fileId = "196464", + text = "ts_fishingpet_01.m2", + value = "ts_fishingpet_01.m2", + }, + }, + text = "fishingstuff", + value = "fishingstuff", + }, + { + children = { + { + fileId = "196466", + text = "ts_teapot_01.m2", + value = "ts_teapot_01.m2", + }, + }, + text = "misc", + value = "misc", + }, + }, + text = "tuskar", + value = "tuskar", + }, + { + children = { + { + fileId = "255203", + text = "ti_weathergenerator_blue.m2", + value = "ti_weathergenerator_blue.m2", + }, + { + fileId = "255204", + text = "ti_weathergenerator_green.m2", + value = "ti_weathergenerator_green.m2", + }, + { + fileId = "255207", + text = "ti_weathergenerator_red.m2", + value = "ti_weathergenerator_red.m2", + }, + { + fileId = "255123", + text = "ti_weathergenerator_yellow.m2", + value = "ti_weathergenerator_yellow.m2", + }, + { + fileId = "243946", + text = "ul_anvil.m2", + value = "ul_anvil.m2", + }, + { + fileId = "243948", + text = "ul_aquarium_window.m2", + value = "ul_aquarium_window.m2", + }, + { + fileId = "243950", + text = "ul_banister01.m2", + value = "ul_banister01.m2", + }, + { + fileId = "253676", + text = "ul_brain_01.m2", + value = "ul_brain_01.m2", + }, + { + fileId = "251822", + text = "ul_brainparts_01.m2", + value = "ul_brainparts_01.m2", + }, + { + fileId = "251823", + text = "ul_brainparts_02.m2", + value = "ul_brainparts_02.m2", + }, + { + fileId = "254627", + text = "ul_brainroomdoor_01.m2", + value = "ul_brainroomdoor_01.m2", + }, + { + fileId = "196475", + text = "ul_brazier01.m2", + value = "ul_brazier01.m2", + }, + { + fileId = "250176", + text = "ul_brazier_broken.m2", + value = "ul_brazier_broken.m2", + }, + { + fileId = "250177", + text = "ul_brazier_broken_02.m2", + value = "ul_brazier_broken_02.m2", + }, + { + fileId = "250903", + text = "ul_bridge01.m2", + value = "ul_bridge01.m2", + }, + { + fileId = "243957", + text = "ul_button_control_unit.m2", + value = "ul_button_control_unit.m2", + }, + { + fileId = "243958", + text = "ul_button_control_unit02.m2", + value = "ul_button_control_unit02.m2", + }, + { + fileId = "251926", + text = "ul_chains_01.m2", + value = "ul_chains_01.m2", + }, + { + fileId = "254457", + text = "ul_chains_02.m2", + value = "ul_chains_02.m2", + }, + { + fileId = "254458", + text = "ul_chains_03.m2", + value = "ul_chains_03.m2", + }, + { + fileId = "254459", + text = "ul_chains_04.m2", + value = "ul_chains_04.m2", + }, + { + fileId = "254460", + text = "ul_chains_05.m2", + value = "ul_chains_05.m2", + }, + { + fileId = "196476", + text = "ul_chandelier.m2", + value = "ul_chandelier.m2", + }, + { + fileId = "249610", + text = "ul_chandelier02.m2", + value = "ul_chandelier02.m2", + }, + { + fileId = "250179", + text = "ul_chandelier_effects01.m2", + value = "ul_chandelier_effects01.m2", + }, + { + fileId = "253432", + text = "ul_chest_cosmic.m2", + value = "ul_chest_cosmic.m2", + }, + { + fileId = "253436", + text = "ul_chest_gears.m2", + value = "ul_chest_gears.m2", + }, + { + fileId = "253441", + text = "ul_chest_ice.m2", + value = "ul_chest_ice.m2", + }, + { + fileId = "253337", + text = "ul_chest_leaf.m2", + value = "ul_chest_leaf.m2", + }, + { + fileId = "253430", + text = "ul_chest_lightning.m2", + value = "ul_chest_lightning.m2", + }, + { + fileId = "253445", + text = "ul_chest_plain.m2", + value = "ul_chest_plain.m2", + }, + { + fileId = "196480", + text = "ul_crystal_light01.m2", + value = "ul_crystal_light01.m2", + }, + { + fileId = "243959", + text = "ul_crystal_light01_broken.m2", + value = "ul_crystal_light01_broken.m2", + }, + { + fileId = "196481", + text = "ul_crystal_light02.m2", + value = "ul_crystal_light02.m2", + }, + { + fileId = "243961", + text = "ul_dataroom_heads_01.m2", + value = "ul_dataroom_heads_01.m2", + }, + { + fileId = "252942", + text = "ul_destructible_gate01.m2", + value = "ul_destructible_gate01.m2", + }, + { + fileId = "249612", + text = "ul_dirty_glass_01.m2", + value = "ul_dirty_glass_01.m2", + }, + { + fileId = "249613", + text = "ul_dirty_glass_02.m2", + value = "ul_dirty_glass_02.m2", + }, + { + fileId = "249614", + text = "ul_dirty_glass_03.m2", + value = "ul_dirty_glass_03.m2", + }, + { + fileId = "249615", + text = "ul_dirty_glass_04.m2", + value = "ul_dirty_glass_04.m2", + }, + { + fileId = "249616", + text = "ul_dirty_glass_05.m2", + value = "ul_dirty_glass_05.m2", + }, + { + fileId = "243964", + text = "ul_drapery01.m2", + value = "ul_drapery01.m2", + }, + { + fileId = "243966", + text = "ul_drapery02.m2", + value = "ul_drapery02.m2", + }, + { + fileId = "196488", + text = "ul_face_rotate.m2", + value = "ul_face_rotate.m2", + }, + { + fileId = "250904", + text = "ul_floating_glass01.m2", + value = "ul_floating_glass01.m2", + }, + { + fileId = "250905", + text = "ul_floating_glass02.m2", + value = "ul_floating_glass02.m2", + }, + { + fileId = "196490", + text = "ul_floor01.m2", + value = "ul_floor01.m2", + }, + { + fileId = "243970", + text = "ul_floor01_blue.m2", + value = "ul_floor01_blue.m2", + }, + { + fileId = "243974", + text = "ul_forge_iron_press.m2", + value = "ul_forge_iron_press.m2", + }, + { + fileId = "243975", + text = "ul_forge_lava.m2", + value = "ul_forge_lava.m2", + }, + { + fileId = "253162", + text = "ul_fountain_01.m2", + value = "ul_fountain_01.m2", + }, + { + fileId = "249623", + text = "ul_frostwall_01.m2", + value = "ul_frostwall_01.m2", + }, + { + fileId = "252293", + text = "ul_garbage_bits.m2", + value = "ul_garbage_bits.m2", + }, + { + fileId = "252294", + text = "ul_garbage_bits2.m2", + value = "ul_garbage_bits2.m2", + }, + { + fileId = "252295", + text = "ul_garbage_bits3.m2", + value = "ul_garbage_bits3.m2", + }, + { + fileId = "252296", + text = "ul_garbage_bits4.m2", + value = "ul_garbage_bits4.m2", + }, + { + fileId = "252297", + text = "ul_garbage_bits5.m2", + value = "ul_garbage_bits5.m2", + }, + { + fileId = "252298", + text = "ul_garbage_bits6.m2", + value = "ul_garbage_bits6.m2", + }, + { + fileId = "252142", + text = "ul_garbage_pile.m2", + value = "ul_garbage_pile.m2", + }, + { + fileId = "250908", + text = "ul_gnome_machine_01.m2", + value = "ul_gnome_machine_01.m2", + }, + { + fileId = "250909", + text = "ul_gnome_machine_02.m2", + value = "ul_gnome_machine_02.m2", + }, + { + fileId = "250910", + text = "ul_gnome_machine_03.m2", + value = "ul_gnome_machine_03.m2", + }, + { + fileId = "250911", + text = "ul_gnome_machine_04.m2", + value = "ul_gnome_machine_04.m2", + }, + { + fileId = "250912", + text = "ul_gnome_machine_05.m2", + value = "ul_gnome_machine_05.m2", + }, + { + fileId = "252122", + text = "ul_gnomewing_armpulse.m2", + value = "ul_gnomewing_armpulse.m2", + }, + { + fileId = "251641", + text = "ul_gnomewing_buttonbigred.m2", + value = "ul_gnomewing_buttonbigred.m2", + }, + { + fileId = "294031", + text = "ul_gnomewing_door_01.m2", + value = "ul_gnomewing_door_01.m2", + }, + { + fileId = "255342", + text = "ul_gnomewing_lightbeam.m2", + value = "ul_gnomewing_lightbeam.m2", + }, + { + fileId = "250004", + text = "ul_gnomewing_lighttower.m2", + value = "ul_gnomewing_lighttower.m2", + }, + { + fileId = "249630", + text = "ul_gnomewing_spinningroomrings.m2", + value = "ul_gnomewing_spinningroomrings.m2", + }, + { + fileId = "251482", + text = "ul_gnomewing_teleportpad.m2", + value = "ul_gnomewing_teleportpad.m2", + }, + { + fileId = "252266", + text = "ul_gnomewing_torsoelevator.m2", + value = "ul_gnomewing_torsoelevator.m2", + }, + { + fileId = "250180", + text = "ul_gnomewing_walkway.m2", + value = "ul_gnomewing_walkway.m2", + }, + { + fileId = "196498", + text = "ul_head_female01.m2", + value = "ul_head_female01.m2", + }, + { + fileId = "196499", + text = "ul_head_female02.m2", + value = "ul_head_female02.m2", + }, + { + fileId = "196500", + text = "ul_head_male01.m2", + value = "ul_head_male01.m2", + }, + { + fileId = "196504", + text = "ul_hexagon_floor.m2", + value = "ul_hexagon_floor.m2", + }, + { + fileId = "252274", + text = "ul_hubprison_01.m2", + value = "ul_hubprison_01.m2", + }, + { + fileId = "249633", + text = "ul_iceplatform_01.m2", + value = "ul_iceplatform_01.m2", + }, + { + fileId = "196506", + text = "ul_icewall_01.m2", + value = "ul_icewall_01.m2", + }, + { + fileId = "196507", + text = "ul_icewall_02.m2", + value = "ul_icewall_02.m2", + }, + { + fileId = "196508", + text = "ul_icewall_03.m2", + value = "ul_icewall_03.m2", + }, + { + fileId = "196509", + text = "ul_icewall_04.m2", + value = "ul_icewall_04.m2", + }, + { + fileId = "196510", + text = "ul_icewall_05.m2", + value = "ul_icewall_05.m2", + }, + { + fileId = "196511", + text = "ul_icewall_06.m2", + value = "ul_icewall_06.m2", + }, + { + fileId = "254855", + text = "ul_icewall_07.m2", + value = "ul_icewall_07.m2", + }, + { + fileId = "243980", + text = "ul_iron_vrykul_chest.m2", + value = "ul_iron_vrykul_chest.m2", + }, + { + fileId = "243981", + text = "ul_iron_vrykul_head.m2", + value = "ul_iron_vrykul_head.m2", + }, + { + fileId = "243982", + text = "ul_iron_vrykul_left_arm.m2", + value = "ul_iron_vrykul_left_arm.m2", + }, + { + fileId = "243983", + text = "ul_iron_vrykul_left_leg.m2", + value = "ul_iron_vrykul_left_leg.m2", + }, + { + fileId = "243984", + text = "ul_iron_vrykul_right_boot.m2", + value = "ul_iron_vrykul_right_boot.m2", + }, + { + fileId = "243985", + text = "ul_iron_vrykul_right_hand.m2", + value = "ul_iron_vrykul_right_hand.m2", + }, + { + fileId = "243986", + text = "ul_iron_vrykul_right_shoulder.m2", + value = "ul_iron_vrykul_right_shoulder.m2", + }, + { + fileId = "243987", + text = "ul_iron_vrykul_waist.m2", + value = "ul_iron_vrykul_waist.m2", + }, + { + fileId = "243988", + text = "ul_ironvrykularmy_eight01.m2", + value = "ul_ironvrykularmy_eight01.m2", + }, + { + fileId = "243989", + text = "ul_ironvrykularmy_four01.m2", + value = "ul_ironvrykularmy_four01.m2", + }, + { + fileId = "243990", + text = "ul_ironvrykularmy_single01.m2", + value = "ul_ironvrykularmy_single01.m2", + }, + { + fileId = "243995", + text = "ul_lavamouth_01.m2", + value = "ul_lavamouth_01.m2", + }, + { + fileId = "250006", + text = "ul_light_effect_blue.m2", + value = "ul_light_effect_blue.m2", + }, + { + fileId = "250007", + text = "ul_light_effect_green.m2", + value = "ul_light_effect_green.m2", + }, + { + fileId = "250008", + text = "ul_light_effect_purple.m2", + value = "ul_light_effect_purple.m2", + }, + { + fileId = "298584", + text = "ul_light_effect_saronite_towers.m2", + value = "ul_light_effect_saronite_towers.m2", + }, + { + fileId = "250009", + text = "ul_light_effect_yellow.m2", + value = "ul_light_effect_yellow.m2", + }, + { + fileId = "251702", + text = "ul_lighting_door01.m2", + value = "ul_lighting_door01.m2", + }, + { + fileId = "251982", + text = "ul_lighting_door02.m2", + value = "ul_lighting_door02.m2", + }, + { + fileId = "303953", + text = "ul_lighting_door02_pillars.m2", + value = "ul_lighting_door02_pillars.m2", + }, + { + fileId = "298623", + text = "ul_lighting_door03.m2", + value = "ul_lighting_door03.m2", + }, + { + fileId = "303846", + text = "ul_lighting_door03_pillars.m2", + value = "ul_lighting_door03_pillars.m2", + }, + { + fileId = "196514", + text = "ul_lightning.m2", + value = "ul_lightning.m2", + }, + { + fileId = "196517", + text = "ul_lightning02.m2", + value = "ul_lightning02.m2", + }, + { + fileId = "196518", + text = "ul_lightning_blue01.m2", + value = "ul_lightning_blue01.m2", + }, + { + fileId = "196519", + text = "ul_lightning_tunnel.m2", + value = "ul_lightning_tunnel.m2", + }, + { + fileId = "249636", + text = "ul_machine_tramring_02.m2", + value = "ul_machine_tramring_02.m2", + }, + { + fileId = "243999", + text = "ul_mountaingiantcrystal.m2", + value = "ul_mountaingiantcrystal.m2", + }, + { + fileId = "196525", + text = "ul_orb_01.m2", + value = "ul_orb_01.m2", + }, + { + fileId = "196533", + text = "ul_planet_02.m2", + value = "ul_planet_02.m2", + }, + { + fileId = "196534", + text = "ul_planet_03.m2", + value = "ul_planet_03.m2", + }, + { + fileId = "196535", + text = "ul_planet_04.m2", + value = "ul_planet_04.m2", + }, + { + fileId = "196536", + text = "ul_planet_05.m2", + value = "ul_planet_05.m2", + }, + { + fileId = "196537", + text = "ul_planet_06.m2", + value = "ul_planet_06.m2", }, { - children = { - { - fileId = "194748", - text = "barbershop_chair01.m2", - value = "barbershop_chair01.m2", - }, - { - fileId = "243367", - text = "barbershop_mirror_01.m2", - value = "barbershop_mirror_01.m2", - }, - { - fileId = "194749", - text = "barbershop_polestanding.m2", - value = "barbershop_polestanding.m2", - }, - { - fileId = "194750", - text = "barbershop_polewall.m2", - value = "barbershop_polewall.m2", - }, - { - fileId = "194751", - text = "barbershop_poster01.m2", - value = "barbershop_poster01.m2", - }, - { - fileId = "194752", - text = "barbershop_poster02.m2", - value = "barbershop_poster02.m2", - }, - { - fileId = "194753", - text = "barbershop_razor.m2", - value = "barbershop_razor.m2", - }, - { - fileId = "194754", - text = "barbershop_shavebrush.m2", - value = "barbershop_shavebrush.m2", - }, - { - fileId = "194755", - text = "barbershop_shavecup.m2", - value = "barbershop_shavecup.m2", - }, - { - fileId = "194756", - text = "barbershop_wig01.m2", - value = "barbershop_wig01.m2", - }, - { - fileId = "194757", - text = "barbershop_wig02.m2", - value = "barbershop_wig02.m2", - }, - { - fileId = "194758", - text = "barbershop_wig03.m2", - value = "barbershop_wig03.m2", - }, - { - fileId = "194759", - text = "barbershop_wig04.m2", - value = "barbershop_wig04.m2", - }, - { - fileId = "194760", - text = "barbershop_wig05.m2", - value = "barbershop_wig05.m2", - }, - }, - text = "barbershop", - value = "barbershop", + fileId = "196538", + text = "ul_planet_07.m2", + value = "ul_planet_07.m2", }, { - children = { - { - fileId = "194762", - text = "bonfirenorthrend_01.m2", - value = "bonfirenorthrend_01.m2", - }, - { - fileId = "194763", - text = "bonfirenorthrend_01blue.m2", - value = "bonfirenorthrend_01blue.m2", - }, - }, - text = "bonfire", - value = "bonfire", + fileId = "250918", + text = "ul_planet_08.m2", + value = "ul_planet_08.m2", }, { - children = { - { - fileId = "243368", - text = "catwolf_footprint_brush01.m2", - value = "catwolf_footprint_brush01.m2", - }, - { - fileId = "243369", - text = "catwolf_footprint_debris01.m2", - value = "catwolf_footprint_debris01.m2", - }, - { - fileId = "243370", - text = "catwolf_footprint_grass01.m2", - value = "catwolf_footprint_grass01.m2", - }, - { - fileId = "243371", - text = "catwolf_footprint_moss01.m2", - value = "catwolf_footprint_moss01.m2", - }, - { - fileId = "243372", - text = "catwolf_footprint_mud01.m2", - value = "catwolf_footprint_mud01.m2", - }, - { - fileId = "243373", - text = "catwolf_footprint_snow01.m2", - value = "catwolf_footprint_snow01.m2", - }, - }, - text = "catwolftracks", - value = "catwolftracks", + fileId = "196539", + text = "ul_planet_azeroth.m2", + value = "ul_planet_azeroth.m2", + }, + { + fileId = "196540", + text = "ul_planet_azeroth_nobase.m2", + value = "ul_planet_azeroth_nobase.m2", + }, + { + fileId = "254856", + text = "ul_portal_blue.m2", + value = "ul_portal_blue.m2", + }, + { + fileId = "196543", + text = "ul_pot01.m2", + value = "ul_pot01.m2", + }, + { + fileId = "196544", + text = "ul_pot02.m2", + value = "ul_pot02.m2", + }, + { + fileId = "196545", + text = "ul_pot03.m2", + value = "ul_pot03.m2", + }, + { + fileId = "196548", + text = "ul_power_orb01.m2", + value = "ul_power_orb01.m2", + }, + { + fileId = "196549", + text = "ul_power_orb02.m2", + value = "ul_power_orb02.m2", + }, + { + fileId = "252832", + text = "ul_pyritefuelcell.m2", + value = "ul_pyritefuelcell.m2", + }, + { + fileId = "252833", + text = "ul_pyritefuelcelllarge.m2", + value = "ul_pyritefuelcelllarge.m2", + }, + { + fileId = "244001", + text = "ul_raidprison_floor.m2", + value = "ul_raidprison_floor.m2", + }, + { + fileId = "244002", + text = "ul_raidtemplefloor_01.m2", + value = "ul_raidtemplefloor_01.m2", + }, + { + fileId = "250919", + text = "ul_rune_floorcircle.m2", + value = "ul_rune_floorcircle.m2", + }, + { + fileId = "253377", + text = "ul_saronitepool_01.m2", + value = "ul_saronitepool_01.m2", + }, + { + fileId = "244003", + text = "ul_sigil01.m2", + value = "ul_sigil01.m2", + }, + { + fileId = "244004", + text = "ul_sigil02.m2", + value = "ul_sigil02.m2", + }, + { + fileId = "244005", + text = "ul_sigil03.m2", + value = "ul_sigil03.m2", + }, + { + fileId = "244006", + text = "ul_sigil04.m2", + value = "ul_sigil04.m2", + }, + { + fileId = "244007", + text = "ul_sigil05.m2", + value = "ul_sigil05.m2", + }, + { + fileId = "298603", + text = "ul_sigil_gear.m2", + value = "ul_sigil_gear.m2", + }, + { + fileId = "298604", + text = "ul_sigil_leaf.m2", + value = "ul_sigil_leaf.m2", + }, + { + fileId = "298605", + text = "ul_sigil_lightning.m2", + value = "ul_sigil_lightning.m2", + }, + { + fileId = "298606", + text = "ul_sigil_snowflake.m2", + value = "ul_sigil_snowflake.m2", + }, + { + fileId = "298607", + text = "ul_sigil_star.m2", + value = "ul_sigil_star.m2", + }, + { + fileId = "252720", + text = "ul_sigildoor_01.m2", + value = "ul_sigildoor_01.m2", + }, + { + fileId = "294442", + text = "ul_sigildoor_02.m2", + value = "ul_sigildoor_02.m2", + }, + { + fileId = "244009", + text = "ul_sky_ceiling.m2", + value = "ul_sky_ceiling.m2", + }, + { + fileId = "196555", + text = "ul_skyroom_floor.m2", + value = "ul_skyroom_floor.m2", + }, + { + fileId = "244011", + text = "ul_smallstatue_druid.m2", + value = "ul_smallstatue_druid.m2", + }, + { + fileId = "244012", + text = "ul_smallstatue_hero_01.m2", + value = "ul_smallstatue_hero_01.m2", + }, + { + fileId = "252168", + text = "ul_stainglass_broken01.m2", + value = "ul_stainglass_broken01.m2", + }, + { + fileId = "252169", + text = "ul_stainglass_broken02.m2", + value = "ul_stainglass_broken02.m2", + }, + { + fileId = "252170", + text = "ul_stainglass_broken03.m2", + value = "ul_stainglass_broken03.m2", + }, + { + fileId = "249645", + text = "ul_stalagtit_01.m2", + value = "ul_stalagtit_01.m2", + }, + { + fileId = "196556", + text = "ul_statue_01.m2", + value = "ul_statue_01.m2", + }, + { + fileId = "244018", + text = "ul_statue_02.m2", + value = "ul_statue_02.m2", + }, + { + fileId = "244019", + text = "ul_statue_03.m2", + value = "ul_statue_03.m2", + }, + { + fileId = "244020", + text = "ul_statue_04.m2", + value = "ul_statue_04.m2", + }, + { + fileId = "196560", + text = "ul_swirl_orb_cloud.m2", + value = "ul_swirl_orb_cloud.m2", + }, + { + fileId = "255125", + text = "ul_targetcrystal_blue.m2", + value = "ul_targetcrystal_blue.m2", + }, + { + fileId = "255208", + text = "ul_targetcrystal_green.m2", + value = "ul_targetcrystal_green.m2", + }, + { + fileId = "255209", + text = "ul_targetcrystal_red.m2", + value = "ul_targetcrystal_red.m2", + }, + { + fileId = "255210", + text = "ul_targetcrystal_yellow.m2", + value = "ul_targetcrystal_yellow.m2", + }, + { + fileId = "252934", + text = "ul_teleportationpad.m2", + value = "ul_teleportationpad.m2", + }, + { + fileId = "244022", + text = "ul_throne.m2", + value = "ul_throne.m2", + }, + { + fileId = "244023", + text = "ul_throne_02.m2", + value = "ul_throne_02.m2", + }, + { + fileId = "244024", + text = "ul_throne_room_floor.m2", + value = "ul_throne_room_floor.m2", + }, + { + fileId = "244025", + text = "ul_thronebase.m2", + value = "ul_thronebase.m2", + }, + { + fileId = "196561", + text = "ul_titanball_01.m2", + value = "ul_titanball_01.m2", + }, + { + fileId = "196564", + text = "ul_titanenergy_02.m2", + value = "ul_titanenergy_02.m2", + }, + { + fileId = "196569", + text = "ul_titansteam_01.m2", + value = "ul_titansteam_01.m2", + }, + { + fileId = "252292", + text = "ul_titansteam_02.m2", + value = "ul_titansteam_02.m2", + }, + { + fileId = "196570", + text = "ul_torch01.m2", + value = "ul_torch01.m2", + }, + { + fileId = "252022", + text = "ul_torch02.m2", + value = "ul_torch02.m2", + }, + { + fileId = "252171", + text = "ul_towerbluebeam.m2", + value = "ul_towerbluebeam.m2", + }, + { + fileId = "255409", + text = "ul_train_floor_glass.m2", + value = "ul_train_floor_glass.m2", + }, + { + fileId = "255425", + text = "ul_train_gearwindows.m2", + value = "ul_train_gearwindows.m2", + }, + { + fileId = "293985", + text = "ul_train_rocketblast.m2", + value = "ul_train_rocketblast.m2", + }, + { + fileId = "254644", + text = "ul_train_turnaround.m2", + value = "ul_train_turnaround.m2", + }, + { + fileId = "254564", + text = "ul_tramglass_01.m2", + value = "ul_tramglass_01.m2", + }, + { + fileId = "196574", + text = "ul_ulduar_doors01.m2", + value = "ul_ulduar_doors01.m2", + }, + { + fileId = "196575", + text = "ul_ulduar_doors02.m2", + value = "ul_ulduar_doors02.m2", + }, + { + fileId = "249654", + text = "ul_ulduar_doors03.m2", + value = "ul_ulduar_doors03.m2", + }, + { + fileId = "249655", + text = "ul_ulduar_doors04.m2", + value = "ul_ulduar_doors04.m2", + }, + { + fileId = "249656", + text = "ul_ulduar_doors05.m2", + value = "ul_ulduar_doors05.m2", + }, + { + fileId = "244028", + text = "ul_ulduar_trapdoor_01.m2", + value = "ul_ulduar_trapdoor_01.m2", + }, + { + fileId = "244029", + text = "ul_ulduar_trapdoor_02.m2", + value = "ul_ulduar_trapdoor_02.m2", + }, + { + fileId = "244030", + text = "ul_universefloor_01.m2", + value = "ul_universefloor_01.m2", + }, + { + fileId = "251842", + text = "ul_universefloor_02.m2", + value = "ul_universefloor_02.m2", + }, + { + fileId = "244031", + text = "ul_universeglobe.m2", + value = "ul_universeglobe.m2", + }, + { + fileId = "252913", + text = "ul_vehiclerepairbay_01.m2", + value = "ul_vehiclerepairbay_01.m2", + }, + { + fileId = "244032", + text = "ul_war_machine01.m2", + value = "ul_war_machine01.m2", + }, + { + fileId = "244033", + text = "ul_war_machine_pipe.m2", + value = "ul_war_machine_pipe.m2", + }, + { + fileId = "244034", + text = "ul_window.m2", + value = "ul_window.m2", + }, + { + fileId = "250921", + text = "ulduar_arch01dfx.m2", + value = "ulduar_arch01dfx.m2", + }, + { + fileId = "250922", + text = "ulduar_arch02dfx.m2", + value = "ulduar_arch02dfx.m2", + }, + { + fileId = "250923", + text = "ulduar_building01dfx.m2", + value = "ulduar_building01dfx.m2", + }, + { + fileId = "254582", + text = "ulduar_tower01_fx1.m2", + value = "ulduar_tower01_fx1.m2", }, { - fileId = "243380", - text = "dalaran_tabard.m2", - value = "dalaran_tabard.m2", + fileId = "254626", + text = "ulduar_tower01_fx2.m2", + value = "ulduar_tower01_fx2.m2", }, { - children = { - { - children = { - { - fileId = "194765", - text = "dest_tower_1_a.m2", - value = "dest_tower_1_a.m2", - }, - { - fileId = "194766", - text = "dest_tower_1_b.m2", - value = "dest_tower_1_b.m2", - }, - { - fileId = "194767", - text = "dest_tower_1_c.m2", - value = "dest_tower_1_c.m2", - }, - { - fileId = "194768", - text = "dest_tower_1_d.m2", - value = "dest_tower_1_d.m2", - }, - { - fileId = "194769", - text = "dest_tower_1_e.m2", - value = "dest_tower_1_e.m2", - }, - { - fileId = "194770", - text = "dest_tower_1_f.m2", - value = "dest_tower_1_f.m2", - }, - { - fileId = "194771", - text = "dest_tower_1_g.m2", - value = "dest_tower_1_g.m2", - }, - { - fileId = "194772", - text = "dest_tower_1_h.m2", - value = "dest_tower_1_h.m2", - }, - { - fileId = "194773", - text = "dest_tower_1_i.m2", - value = "dest_tower_1_i.m2", - }, - { - fileId = "194774", - text = "dest_tower_1_j.m2", - value = "dest_tower_1_j.m2", - }, - { - fileId = "194775", - text = "dest_tower_1_k.m2", - value = "dest_tower_1_k.m2", - }, - { - fileId = "194776", - text = "dest_tower_1_l.m2", - value = "dest_tower_1_l.m2", - }, - { - fileId = "194777", - text = "dest_tower_1_m.m2", - value = "dest_tower_1_m.m2", - }, - { - fileId = "194778", - text = "dest_tower_2_a.m2", - value = "dest_tower_2_a.m2", - }, - { - fileId = "194779", - text = "dest_tower_2_b.m2", - value = "dest_tower_2_b.m2", - }, - { - fileId = "194780", - text = "dest_tower_2_c.m2", - value = "dest_tower_2_c.m2", - }, - { - fileId = "194781", - text = "dest_tower_2_d.m2", - value = "dest_tower_2_d.m2", - }, - { - fileId = "194782", - text = "dest_tower_2_e.m2", - value = "dest_tower_2_e.m2", - }, - { - fileId = "194783", - text = "dest_tower_2_f.m2", - value = "dest_tower_2_f.m2", - }, - { - fileId = "194784", - text = "dest_tower_2_g.m2", - value = "dest_tower_2_g.m2", - }, - { - fileId = "194785", - text = "dest_tower_2_h.m2", - value = "dest_tower_2_h.m2", - }, - { - fileId = "194786", - text = "dest_tower_2_i.m2", - value = "dest_tower_2_i.m2", - }, - { - fileId = "194787", - text = "dest_tower_2_j.m2", - value = "dest_tower_2_j.m2", - }, - { - fileId = "194788", - text = "dest_tower_2_k.m2", - value = "dest_tower_2_k.m2", - }, - { - fileId = "194789", - text = "dest_tower_2_l.m2", - value = "dest_tower_2_l.m2", - }, - { - fileId = "194790", - text = "dest_tower_2_m.m2", - value = "dest_tower_2_m.m2", - }, - { - fileId = "194791", - text = "dest_tower_damaged.m2", - value = "dest_tower_damaged.m2", - }, - { - fileId = "194792", - text = "dest_tower_destroyed.m2", - value = "dest_tower_destroyed.m2", - }, - { - fileId = "194793", - text = "dest_tower_pieces.m2", - value = "dest_tower_pieces.m2", - }, - }, - text = "guardtower", - value = "guardtower", - }, - }, - text = "destructible", - value = "destructible", + fileId = "254642", + text = "ulduar_tower01_fx2b.m2", + value = "ulduar_tower01_fx2b.m2", }, + { + fileId = "250924", + text = "ulduarraid_gnomewing_transport_doodad.m2", + value = "ulduarraid_gnomewing_transport_doodad.m2", + }, + }, + text = "ulduar", + value = "ulduar", + }, + { + children = { { children = { { - fileId = "194802", - text = "ebonblade_banner01.m2", - value = "ebonblade_banner01.m2", - }, - { - fileId = "194803", - text = "ebonblade_banner02.m2", - value = "ebonblade_banner02.m2", - }, - { - fileId = "303710", - text = "ebonblade_banner02_nocollision.m2", - value = "ebonblade_banner02_nocollision.m2", + fileId = "522968", + text = "ul_powerorb_fusion.m2", + value = "ul_powerorb_fusion.m2", }, }, - text = "ebonblade", - value = "ebonblade", + text = "ul_powerorb_fusion", + value = "ul_powerorb_fusion", }, + }, + text = "uldum", + value = "uldum", + }, + { + children = { { children = { { - fileId = "243381", - text = "firstaid_nocollision.m2", - value = "firstaid_nocollision.m2", + fileId = "196582", + text = "valgarde_fire.m2", + value = "valgarde_fire.m2", }, }, - text = "firstaid", - value = "firstaid", + text = "valgrade_fire", + value = "valgrade_fire", }, + }, + text = "valgrade", + value = "valgrade", + }, + { + children = { { - children = { - { - fileId = "194805", - text = "fk_banner01.m2", - value = "fk_banner01.m2", - }, - { - fileId = "194806", - text = "fk_banner01wall.m2", - value = "fk_banner01wall.m2", - }, - { - fileId = "194807", - text = "fk_banner02wall.m2", - value = "fk_banner02wall.m2", - }, - { - fileId = "194809", - text = "fk_barricade_01.m2", - value = "fk_barricade_01.m2", - }, - { - fileId = "194811", - text = "fk_chemistryset_02.m2", - value = "fk_chemistryset_02.m2", - }, - { - fileId = "194812", - text = "fk_chemistryset_03.m2", - value = "fk_chemistryset_03.m2", - }, - { - fileId = "194813", - text = "fk_chemistryset_04.m2", - value = "fk_chemistryset_04.m2", - }, - { - fileId = "194814", - text = "fk_chemistryset_05.m2", - value = "fk_chemistryset_05.m2", - }, - { - fileId = "194815", - text = "fk_chemistryset_06.m2", - value = "fk_chemistryset_06.m2", - }, - { - fileId = "194816", - text = "fk_chemistryset_07.m2", - value = "fk_chemistryset_07.m2", - }, - { - fileId = "194817", - text = "fk_chemistryset_forbuilding_01.m2", - value = "fk_chemistryset_forbuilding_01.m2", - }, - { - fileId = "194818", - text = "fk_chemistryset_forbuilding_02.m2", - value = "fk_chemistryset_forbuilding_02.m2", - }, - { - fileId = "194819", - text = "fk_chemistrytube_01.m2", - value = "fk_chemistrytube_01.m2", - }, - { - fileId = "194820", - text = "fk_chemistrytube_02.m2", - value = "fk_chemistrytube_02.m2", - }, + fileId = "249941", + text = "wg_keep_door01_collision.m2", + value = "wg_keep_door01_collision.m2", + }, + }, + text = "wintergrasp", + value = "wintergrasp", + }, + { + children = { + { + fileId = "196584", + text = "wt_basket_01.m2", + value = "wt_basket_01.m2", + }, + { + fileId = "196585", + text = "wt_basket_02.m2", + value = "wt_basket_02.m2", + }, + { + fileId = "196586", + text = "wt_basket_03.m2", + value = "wt_basket_03.m2", + }, + { + fileId = "196589", + text = "wt_bench_01.m2", + value = "wt_bench_01.m2", + }, + { + fileId = "196590", + text = "wt_brazier_lit.m2", + value = "wt_brazier_lit.m2", + }, + { + fileId = "196591", + text = "wt_brazier_unlit.m2", + value = "wt_brazier_unlit.m2", + }, + { + fileId = "196592", + text = "wt_chair_01.m2", + value = "wt_chair_01.m2", + }, + { + fileId = "196593", + text = "wt_hanging_01.m2", + value = "wt_hanging_01.m2", + }, + { + fileId = "196594", + text = "wt_hanging_02.m2", + value = "wt_hanging_02.m2", + }, + { + fileId = "196595", + text = "wt_hanging_03.m2", + value = "wt_hanging_03.m2", + }, + { + fileId = "196596", + text = "wt_hanging_04.m2", + value = "wt_hanging_04.m2", + }, + { + fileId = "196598", + text = "wt_hangingscroll_01.m2", + value = "wt_hangingscroll_01.m2", + }, + { + fileId = "196599", + text = "wt_hangingscroll_02.m2", + value = "wt_hangingscroll_02.m2", + }, + { + fileId = "196600", + text = "wt_hangingscroll_03.m2", + value = "wt_hangingscroll_03.m2", + }, + { + fileId = "196601", + text = "wt_hangingscroll_04.m2", + value = "wt_hangingscroll_04.m2", + }, + { + fileId = "196602", + text = "wt_hangingscroll_05.m2", + value = "wt_hangingscroll_05.m2", + }, + { + fileId = "196603", + text = "wt_hangingscroll_06.m2", + value = "wt_hangingscroll_06.m2", + }, + { + fileId = "196604", + text = "wt_lamppost01.m2", + value = "wt_lamppost01.m2", + }, + { + fileId = "196605", + text = "wt_lamppost01_wreckeda.m2", + value = "wt_lamppost01_wreckeda.m2", + }, + { + fileId = "196606", + text = "wt_lamppost01_wreckedb.m2", + value = "wt_lamppost01_wreckedb.m2", + }, + { + fileId = "196607", + text = "wt_lamppost01_wreckedc.m2", + value = "wt_lamppost01_wreckedc.m2", + }, + { + fileId = "196610", + text = "wt_lantern01.m2", + value = "wt_lantern01.m2", + }, + { + fileId = "196611", + text = "wt_lanternhanging01.m2", + value = "wt_lanternhanging01.m2", + }, + { + fileId = "196615", + text = "wt_mummy01.m2", + value = "wt_mummy01.m2", + }, + { + fileId = "196616", + text = "wt_pyre01.m2", + value = "wt_pyre01.m2", + }, + { + fileId = "196617", + text = "wt_pyre02.m2", + value = "wt_pyre02.m2", + }, + { + fileId = "196619", + text = "wt_roadsign.m2", + value = "wt_roadsign.m2", + }, + { + fileId = "196620", + text = "wt_roadsign_post.m2", + value = "wt_roadsign_post.m2", + }, + { + fileId = "196621", + text = "wt_rug_01.m2", + value = "wt_rug_01.m2", + }, + { + fileId = "196622", + text = "wt_rug_02.m2", + value = "wt_rug_02.m2", + }, + { + fileId = "196623", + text = "wt_rug_03.m2", + value = "wt_rug_03.m2", + }, + { + fileId = "196624", + text = "wt_rug_04.m2", + value = "wt_rug_04.m2", + }, + { + fileId = "196626", + text = "wt_scroll_01.m2", + value = "wt_scroll_01.m2", + }, + { + fileId = "196627", + text = "wt_scroll_02.m2", + value = "wt_scroll_02.m2", + }, + { + fileId = "196630", + text = "wt_sled_01.m2", + value = "wt_sled_01.m2", + }, + { + fileId = "196631", + text = "wt_sled_01packed.m2", + value = "wt_sled_01packed.m2", + }, + { + fileId = "196632", + text = "wt_sled_01packed_wreckeda.m2", + value = "wt_sled_01packed_wreckeda.m2", + }, + { + fileId = "196633", + text = "wt_sled_01packed_wreckedb.m2", + value = "wt_sled_01packed_wreckedb.m2", + }, + { + fileId = "196634", + text = "wt_sled_02.m2", + value = "wt_sled_02.m2", + }, + { + fileId = "196635", + text = "wt_sled_02_wreckeda.m2", + value = "wt_sled_02_wreckeda.m2", + }, + { + fileId = "196636", + text = "wt_sled_02packed.m2", + value = "wt_sled_02packed.m2", + }, + { + fileId = "196637", + text = "wt_standard_01.m2", + value = "wt_standard_01.m2", + }, + { + fileId = "196638", + text = "wt_tent01.m2", + value = "wt_tent01.m2", + }, + { + fileId = "196639", + text = "wt_tent01_wreckeda.m2", + value = "wt_tent01_wreckeda.m2", + }, + { + fileId = "196640", + text = "wt_tent01_wreckedb.m2", + value = "wt_tent01_wreckedb.m2", + }, + { + fileId = "196641", + text = "wt_tent02.m2", + value = "wt_tent02.m2", + }, + { + fileId = "196642", + text = "wt_tent03.m2", + value = "wt_tent03.m2", + }, + { + fileId = "196645", + text = "wt_totem01.m2", + value = "wt_totem01.m2", + }, + { + fileId = "196646", + text = "wt_totem01snow.m2", + value = "wt_totem01snow.m2", + }, + { + fileId = "196647", + text = "wt_totem02.m2", + value = "wt_totem02.m2", + }, + { + fileId = "196648", + text = "wt_totem02snow.m2", + value = "wt_totem02snow.m2", + }, + { + fileId = "196650", + text = "wt_windbreak01.m2", + value = "wt_windbreak01.m2", + }, + { + fileId = "196652", + text = "wt_windbreak01_wreckeda.m2", + value = "wt_windbreak01_wreckeda.m2", + }, + { + fileId = "196654", + text = "wt_windbreak01_wreckedb.m2", + value = "wt_windbreak01_wreckedb.m2", + }, + { + fileId = "196655", + text = "wt_windbreak02.m2", + value = "wt_windbreak02.m2", + }, + }, + text = "wintertauren", + value = "wintertauren", + }, + { + children = { + { + children = { { - fileId = "194821", - text = "fk_chemistrytube_03.m2", - value = "fk_chemistrytube_03.m2", + fileId = "244038", + text = "zuldrak_aqueduct_01.m2", + value = "zuldrak_aqueduct_01.m2", }, { - fileId = "194822", - text = "fk_chemistrytube_04.m2", - value = "fk_chemistrytube_04.m2", + fileId = "244039", + text = "zuldrak_aqueduct_02.m2", + value = "zuldrak_aqueduct_02.m2", }, { - fileId = "194825", - text = "fk_fence01.m2", - value = "fk_fence01.m2", + fileId = "244040", + text = "zuldrak_aqueduct_03.m2", + value = "zuldrak_aqueduct_03.m2", }, + }, + text = "aqueduct", + value = "aqueduct", + }, + { + children = { { - fileId = "194826", - text = "fk_fence02.m2", - value = "fk_fence02.m2", + fileId = "244044", + text = "gundrak_coffin_01.m2", + value = "gundrak_coffin_01.m2", }, { - fileId = "194827", - text = "fk_fencepost.m2", - value = "fk_fencepost.m2", + fileId = "244045", + text = "gundrak_collision_01.m2", + value = "gundrak_collision_01.m2", }, { - fileId = "194833", - text = "fk_lamphanging.m2", - value = "fk_lamphanging.m2", + fileId = "244046", + text = "gundrak_collision_02.m2", + value = "gundrak_collision_02.m2", }, { - fileId = "194834", - text = "fk_lamppost.m2", - value = "fk_lamppost.m2", + fileId = "244047", + text = "gundrak_key_mammoth.m2", + value = "gundrak_key_mammoth.m2", }, { - fileId = "194836", - text = "fk_lamppost_unlit.m2", - value = "fk_lamppost_unlit.m2", + fileId = "244048", + text = "gundrak_key_rhino.m2", + value = "gundrak_key_rhino.m2", }, { - fileId = "194837", - text = "fk_painting01.m2", - value = "fk_painting01.m2", + fileId = "244049", + text = "gundrak_key_snake.m2", + value = "gundrak_key_snake.m2", }, { - fileId = "194838", - text = "fk_painting02.m2", - value = "fk_painting02.m2", + fileId = "244050", + text = "gundrak_key_troll.m2", + value = "gundrak_key_troll.m2", }, { - fileId = "194839", - text = "fk_painting03.m2", - value = "fk_painting03.m2", + fileId = "244051", + text = "gundrak_snake.m2", + value = "gundrak_snake.m2", }, { - fileId = "194840", - text = "fk_painting04.m2", - value = "fk_painting04.m2", + fileId = "196661", + text = "gundrakcrystal_01.m2", + value = "gundrakcrystal_01.m2", }, { - fileId = "194841", - text = "fk_painting05.m2", - value = "fk_painting05.m2", + children = { + { + fileId = "196666", + text = "zuldrak_trollfountainhead_01.m2", + value = "zuldrak_trollfountainhead_01.m2", + }, + { + fileId = "196671", + text = "zuldrakwaterdrip_01.m2", + value = "zuldrakwaterdrip_01.m2", + }, + { + fileId = "196672", + text = "zuldrakwatersteps_01.m2", + value = "zuldrakwatersteps_01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, { - fileId = "194843", - text = "fk_plaguebarrel.m2", - value = "fk_plaguebarrel.m2", + fileId = "244053", + text = "zuldrak_alter.m2", + value = "zuldrak_alter.m2", }, { - fileId = "194844", - text = "fk_plaguebarrelbroken01.m2", - value = "fk_plaguebarrelbroken01.m2", + fileId = "196673", + text = "zuldrak_banner_01.m2", + value = "zuldrak_banner_01.m2", }, { - fileId = "194845", - text = "fk_plaguebarrelbroken02.m2", - value = "fk_plaguebarrelbroken02.m2", + fileId = "196674", + text = "zuldrak_banner_02.m2", + value = "zuldrak_banner_02.m2", }, { - fileId = "194846", - text = "fk_plaguebarrelempty.m2", - value = "fk_plaguebarrelempty.m2", + fileId = "196675", + text = "zuldrak_banner_03.m2", + value = "zuldrak_banner_03.m2", }, { - fileId = "194847", - text = "fk_plaguecistern.m2", - value = "fk_plaguecistern.m2", + fileId = "196677", + text = "zuldrak_bats_lower_01.m2", + value = "zuldrak_bats_lower_01.m2", }, { - fileId = "194848", - text = "fk_plaguewagon.m2", - value = "fk_plaguewagon.m2", + fileId = "196678", + text = "zuldrak_brazier_01.m2", + value = "zuldrak_brazier_01.m2", }, { - fileId = "194851", - text = "fk_plaguewagon_empty.m2", - value = "fk_plaguewagon_empty.m2", + fileId = "244054", + text = "zuldrak_burninglog_01.m2", + value = "zuldrak_burninglog_01.m2", }, { - fileId = "194852", - text = "fk_signpost.m2", - value = "fk_signpost.m2", + fileId = "196679", + text = "zuldrak_crystal_01.m2", + value = "zuldrak_crystal_01.m2", }, { - fileId = "194853", - text = "fk_signpost_sign.m2", - value = "fk_signpost_sign.m2", + fileId = "196680", + text = "zuldrak_flag_01.m2", + value = "zuldrak_flag_01.m2", }, { - fileId = "194857", - text = "fk_tent01.m2", - value = "fk_tent01.m2", + fileId = "196681", + text = "zuldrak_flag_02.m2", + value = "zuldrak_flag_02.m2", }, { - fileId = "194858", - text = "fk_tent01_ruined.m2", - value = "fk_tent01_ruined.m2", + fileId = "196682", + text = "zuldrak_floating_light_01.m2", + value = "zuldrak_floating_light_01.m2", }, { - fileId = "194860", - text = "fk_tent02.m2", - value = "fk_tent02.m2", + fileId = "196686", + text = "zuldrak_gem_blue_01.m2", + value = "zuldrak_gem_blue_01.m2", }, { - fileId = "194861", - text = "fk_tent02_ruined.m2", - value = "fk_tent02_ruined.m2", + fileId = "196687", + text = "zuldrak_gem_green_01.m2", + value = "zuldrak_gem_green_01.m2", }, { - fileId = "194862", - text = "fk_tent03.m2", - value = "fk_tent03.m2", + fileId = "196688", + text = "zuldrak_gem_green_02.m2", + value = "zuldrak_gem_green_02.m2", }, { - fileId = "194863", - text = "fk_tent04.m2", - value = "fk_tent04.m2", + fileId = "196689", + text = "zuldrak_gem_purple_01.m2", + value = "zuldrak_gem_purple_01.m2", }, { - fileId = "194864", - text = "fk_tent05.m2", - value = "fk_tent05.m2", + fileId = "196690", + text = "zuldrak_gem_white_01.m2", + value = "zuldrak_gem_white_01.m2", }, { - fileId = "194865", - text = "fk_wagon01.m2", - value = "fk_wagon01.m2", + fileId = "196692", + text = "zuldrak_hanging_light_01.m2", + value = "zuldrak_hanging_light_01.m2", }, { - fileId = "194866", - text = "fk_wagon02.m2", - value = "fk_wagon02.m2", + fileId = "196693", + text = "zuldrak_hanging_light_02.m2", + value = "zuldrak_hanging_light_02.m2", }, - }, - text = "forsaken", - value = "forsaken", - }, - { - children = { { - fileId = "194868", - text = "frostgiant_club01.m2", - value = "frostgiant_club01.m2", + fileId = "196694", + text = "zuldrak_hangingskulls_01.m2", + value = "zuldrak_hangingskulls_01.m2", }, { - fileId = "194869", - text = "frostgiant_collumn01.m2", - value = "frostgiant_collumn01.m2", + fileId = "244056", + text = "zuldrak_hangingskulls_02.m2", + value = "zuldrak_hangingskulls_02.m2", }, { - fileId = "194870", - text = "frostgiant_collumn02.m2", - value = "frostgiant_collumn02.m2", + fileId = "244057", + text = "zuldrak_hangingskulls_03.m2", + value = "zuldrak_hangingskulls_03.m2", }, { - fileId = "194871", - text = "frostgiant_frostorb01.m2", - value = "frostgiant_frostorb01.m2", + fileId = "244059", + text = "zuldrak_heart_01.m2", + value = "zuldrak_heart_01.m2", }, { - fileId = "194872", - text = "frostgiant_frostorbbroken01.m2", - value = "frostgiant_frostorbbroken01.m2", + fileId = "244061", + text = "zuldrak_lever.m2", + value = "zuldrak_lever.m2", }, { - fileId = "194876", - text = "frostgiant_shield01.m2", - value = "frostgiant_shield01.m2", + fileId = "196696", + text = "zuldrak_pile_01.m2", + value = "zuldrak_pile_01.m2", }, { - fileId = "194877", - text = "frostgiant_shield02.m2", - value = "frostgiant_shield02.m2", + fileId = "196697", + text = "zuldrak_pile_02.m2", + value = "zuldrak_pile_02.m2", }, { - fileId = "194878", - text = "frostgiant_shield03.m2", - value = "frostgiant_shield03.m2", + fileId = "196698", + text = "zuldrak_pile_03.m2", + value = "zuldrak_pile_03.m2", }, { - fileId = "194879", - text = "frostgiant_shield04.m2", - value = "frostgiant_shield04.m2", + fileId = "244062", + text = "zuldrak_red_gem_01.m2", + value = "zuldrak_red_gem_01.m2", }, { - fileId = "194880", - text = "frostgiant_spear01.m2", - value = "frostgiant_spear01.m2", + fileId = "196700", + text = "zuldrak_ropes_01.m2", + value = "zuldrak_ropes_01.m2", }, { - fileId = "243382", - text = "frostgiant_spear02.m2", - value = "frostgiant_spear02.m2", + fileId = "196701", + text = "zuldrak_ropes_02.m2", + value = "zuldrak_ropes_02.m2", }, - }, - text = "frostgiant", - value = "frostgiant", - }, - { - children = { { - fileId = "194881", - text = "gnome_pipe_01.m2", - value = "gnome_pipe_01.m2", + fileId = "196702", + text = "zuldrak_ropes_03.m2", + value = "zuldrak_ropes_03.m2", }, { - fileId = "194882", - text = "gnome_pipe_02.m2", - value = "gnome_pipe_02.m2", + fileId = "196703", + text = "zuldrak_ropes_04.m2", + value = "zuldrak_ropes_04.m2", }, { - fileId = "194883", - text = "gnome_pipe_03.m2", - value = "gnome_pipe_03.m2", + fileId = "244063", + text = "zuldrak_ropes_05.m2", + value = "zuldrak_ropes_05.m2", }, { - fileId = "194884", - text = "gnome_pipe_04.m2", - value = "gnome_pipe_04.m2", + fileId = "244064", + text = "zuldrak_ropes_06.m2", + value = "zuldrak_ropes_06.m2", }, { - fileId = "194885", - text = "gnome_pipe_05.m2", - value = "gnome_pipe_05.m2", + fileId = "196704", + text = "zuldrak_shield_01.m2", + value = "zuldrak_shield_01.m2", }, { - fileId = "194886", - text = "gnome_pipe_06.m2", - value = "gnome_pipe_06.m2", + fileId = "196705", + text = "zuldrak_shield_02.m2", + value = "zuldrak_shield_02.m2", }, { - fileId = "194887", - text = "gnome_pipe_08.m2", - value = "gnome_pipe_08.m2", + fileId = "196706", + text = "zuldrak_skullpile_01.m2", + value = "zuldrak_skullpile_01.m2", }, { - fileId = "194888", - text = "gnome_pipe_09.m2", - value = "gnome_pipe_09.m2", + fileId = "196707", + text = "zuldrak_skullpile_02.m2", + value = "zuldrak_skullpile_02.m2", }, { - fileId = "367502", - text = "gnome_radiation_bomb_01.m2", - value = "gnome_radiation_bomb_01.m2", + fileId = "196708", + text = "zuldrak_skullpile_03.m2", + value = "zuldrak_skullpile_03.m2", }, - }, - text = "gnome", - value = "gnome", - }, - { - children = { { - children = { - { - fileId = "194890", - text = "goblinbench01.m2", - value = "goblinbench01.m2", - }, - }, - text = "bench", - value = "bench", + fileId = "196709", + text = "zuldrak_skullpole_01.m2", + value = "zuldrak_skullpole_01.m2", }, { - fileId = "243384", - text = "goblin_fuelcell.m2", - value = "goblin_fuelcell.m2", + fileId = "244065", + text = "zuldrak_skullpole_01_low.m2", + value = "zuldrak_skullpole_01_low.m2", }, { - children = { - { - fileId = "194892", - text = "radiotowerflag01.m2", - value = "radiotowerflag01.m2", - }, - }, - text = "radiotower", - value = "radiotower", + fileId = "244066", + text = "zuldrak_skullpole_02.m2", + value = "zuldrak_skullpole_02.m2", }, - }, - text = "goblin", - value = "goblin", - }, - { - children = { { - fileId = "243385", - text = "hanging_strider01.m2", - value = "hanging_strider01.m2", + fileId = "244067", + text = "zuldrak_skullpole_02_low.m2", + value = "zuldrak_skullpole_02_low.m2", }, - }, - text = "hangingmeat", - value = "hangingmeat", - }, - { - children = { { - fileId = "243387", - text = "he_ballista_01.m2", - value = "he_ballista_01.m2", + fileId = "196710", + text = "zuldrak_spears_01.m2", + value = "zuldrak_spears_01.m2", }, { - fileId = "243391", - text = "he_banner_01.m2", - value = "he_banner_01.m2", + fileId = "196711", + text = "zuldrak_spears_02.m2", + value = "zuldrak_spears_02.m2", }, { - fileId = "243392", - text = "he_banner_02.m2", - value = "he_banner_02.m2", + fileId = "196712", + text = "zuldrak_spears_03.m2", + value = "zuldrak_spears_03.m2", }, { - fileId = "243393", - text = "he_banner_03.m2", - value = "he_banner_03.m2", + fileId = "196713", + text = "zuldrak_spikestrip_01.m2", + value = "zuldrak_spikestrip_01.m2", }, { - fileId = "243395", - text = "he_tent_01.m2", - value = "he_tent_01.m2", + fileId = "196714", + text = "zuldrak_spikestructure_01.m2", + value = "zuldrak_spikestructure_01.m2", }, { - fileId = "243396", - text = "he_wagon_01.m2", - value = "he_wagon_01.m2", - }, - }, - text = "highelf", - value = "highelf", - }, - { - fileId = "243397", - text = "horde_gunship_deckflakgun.m2", - value = "horde_gunship_deckflakgun.m2", - }, - { - fileId = "243398", - text = "horde_tabard.m2", - value = "horde_tabard.m2", - }, - { - children = { + fileId = "196715", + text = "zuldrak_sword_01.m2", + value = "zuldrak_sword_01.m2", + }, { - children = { - { - fileId = "194893", - text = "nd_human_barrier.m2", - value = "nd_human_barrier.m2", - }, - { - fileId = "194894", - text = "nd_human_barrier_end.m2", - value = "nd_human_barrier_end.m2", - }, - }, - text = "barriers", - value = "barriers", + fileId = "196717", + text = "zuldrak_torch_01.m2", + value = "zuldrak_torch_01.m2", }, { - children = { - { - fileId = "194896", - text = "cuckooclock_01.m2", - value = "cuckooclock_01.m2", - }, - { - fileId = "194899", - text = "grandfather_clock_01.m2", - value = "grandfather_clock_01.m2", - }, - }, - text = "clocks", - value = "clocks", + fileId = "244068", + text = "zuldrak_torch_01_low.m2", + value = "zuldrak_torch_01_low.m2", }, { - children = { - { - fileId = "194900", - text = "crategrainnormal_01.m2", - value = "crategrainnormal_01.m2", - }, - { - fileId = "194901", - text = "crategrainplagued_01.m2", - value = "crategrainplagued_01.m2", - }, - }, - text = "crates", - value = "crates", + fileId = "196718", + text = "zuldrak_torch_02.m2", + value = "zuldrak_torch_02.m2", }, { - children = { - { - fileId = "194903", - text = "hu_fence01_northrend.m2", - value = "hu_fence01_northrend.m2", - }, - { - fileId = "194904", - text = "hu_fence02_northrend.m2", - value = "hu_fence02_northrend.m2", - }, - { - fileId = "194905", - text = "hu_fence03_northrend.m2", - value = "hu_fence03_northrend.m2", - }, - { - fileId = "194906", - text = "hu_fence04_northrend.m2", - value = "hu_fence04_northrend.m2", - }, - { - fileId = "194907", - text = "hu_fence05_northrend.m2", - value = "hu_fence05_northrend.m2", - }, - { - fileId = "194908", - text = "hu_fence06_northrend.m2", - value = "hu_fence06_northrend.m2", - }, - { - fileId = "194909", - text = "hu_fencepost_northrend.m2", - value = "hu_fencepost_northrend.m2", - }, - }, - text = "fence", - value = "fence", + fileId = "244069", + text = "zuldrak_torch_02b.m2", + value = "zuldrak_torch_02b.m2", }, { - children = { - { - fileId = "194912", - text = "alliance_banner_01.m2", - value = "alliance_banner_01.m2", - }, - }, - text = "flags", - value = "flags", + fileId = "196719", + text = "zuldrak_torch_03.m2", + value = "zuldrak_torch_03.m2", }, { - fileId = "194913", - text = "hu_brick_pile01.m2", - value = "hu_brick_pile01.m2", + fileId = "196720", + text = "zuldrak_torch_04.m2", + value = "zuldrak_torch_04.m2", }, { - fileId = "194914", - text = "hu_brick_pile02.m2", - value = "hu_brick_pile02.m2", + fileId = "196721", + text = "zuldrak_waterspout_01.m2", + value = "zuldrak_waterspout_01.m2", }, { - fileId = "194919", - text = "hu_crane_dock.m2", - value = "hu_crane_dock.m2", + fileId = "196722", + text = "zuldrak_weaponrack_01.m2", + value = "zuldrak_weaponrack_01.m2", }, { - fileId = "194920", - text = "hu_crane_woodpile.m2", - value = "hu_crane_woodpile.m2", + fileId = "196723", + text = "zuldrak_windchime_01.m2", + value = "zuldrak_windchime_01.m2", }, { - fileId = "194921", - text = "hu_dock_destruction_piling.m2", - value = "hu_dock_destruction_piling.m2", + fileId = "196724", + text = "zuldrak_windchime_02.m2", + value = "zuldrak_windchime_02.m2", }, { - fileId = "194923", - text = "hu_jail_door_01.m2", - value = "hu_jail_door_01.m2", + fileId = "196725", + text = "zuldrak_windchime_03.m2", + value = "zuldrak_windchime_03.m2", }, + }, + text = "decorations", + value = "decorations", + }, + { + children = { { - fileId = "194924", - text = "hu_justice_flags_01.m2", - value = "hu_justice_flags_01.m2", + fileId = "196729", + text = "zuldrak_fence_01.m2", + value = "zuldrak_fence_01.m2", }, { - fileId = "194925", - text = "hu_justice_flags_02.m2", - value = "hu_justice_flags_02.m2", + fileId = "196730", + text = "zuldrak_fence_02.m2", + value = "zuldrak_fence_02.m2", }, { - fileId = "194926", - text = "hu_justice_flags_03.m2", - value = "hu_justice_flags_03.m2", + fileId = "196731", + text = "zuldrak_fence_03.m2", + value = "zuldrak_fence_03.m2", }, { - fileId = "194927", - text = "hu_justice_flags_04.m2", - value = "hu_justice_flags_04.m2", + fileId = "196732", + text = "zuldrak_fencepost_01.m2", + value = "zuldrak_fencepost_01.m2", }, + }, + text = "fences", + value = "fences", + }, + { + children = { { - fileId = "194928", - text = "hu_justice_flags_05.m2", - value = "hu_justice_flags_05.m2", + fileId = "244070", + text = "gundrak_elevator_01.m2", + value = "gundrak_elevator_01.m2", }, { - fileId = "194929", - text = "hu_justice_flags_06.m2", - value = "hu_justice_flags_06.m2", + fileId = "244071", + text = "gundrak_fence_door.m2", + value = "gundrak_fence_door.m2", }, { - fileId = "194930", - text = "hu_justice_flags_08.m2", - value = "hu_justice_flags_08.m2", + fileId = "244072", + text = "gundrak_short_door.m2", + value = "gundrak_short_door.m2", }, { - fileId = "194933", - text = "hu_piling.m2", - value = "hu_piling.m2", + fileId = "244073", + text = "gundrak_trapdoor_02.m2", + value = "gundrak_trapdoor_02.m2", }, { - fileId = "194934", - text = "hu_portcullis.m2", - value = "hu_portcullis.m2", + fileId = "244074", + text = "gundrak_underwaterhatch_door.m2", + value = "gundrak_underwaterhatch_door.m2", }, { - fileId = "194935", - text = "hu_pulley.m2", - value = "hu_pulley.m2", + fileId = "244075", + text = "gundrakgrateice.m2", + value = "gundrakgrateice.m2", }, + }, + text = "gundrak", + value = "gundrak", + }, + { + children = { { - fileId = "194936", - text = "hu_pulley_crates.m2", - value = "hu_pulley_crates.m2", + fileId = "196733", + text = "zuldrak_blue_fire.m2", + value = "zuldrak_blue_fire.m2", }, { - fileId = "194937", - text = "hu_rope01.m2", - value = "hu_rope01.m2", + fileId = "326720", + text = "zuldrak_blue_fire02.m2", + value = "zuldrak_blue_fire02.m2", }, { - fileId = "194938", - text = "hu_scaffolding.m2", - value = "hu_scaffolding.m2", + fileId = "196736", + text = "zuldrak_fog_blue.m2", + value = "zuldrak_fog_blue.m2", }, { - fileId = "194939", - text = "hu_scaffolding02.m2", - value = "hu_scaffolding02.m2", + fileId = "196738", + text = "zuldrak_fog_red.m2", + value = "zuldrak_fog_red.m2", }, { - fileId = "194940", - text = "hu_scaffolding03.m2", - value = "hu_scaffolding03.m2", + fileId = "196741", + text = "zuldrak_lightray_01.m2", + value = "zuldrak_lightray_01.m2", + }, + }, + text = "lightfx", + value = "lightfx", + }, + { + children = { + { + fileId = "244080", + text = "zuldrak_mojostreams.m2", + value = "zuldrak_mojostreams.m2", }, + }, + text = "mojostreams", + value = "mojostreams", + }, + { + children = { { - fileId = "194941", - text = "hu_scaffolding04.m2", - value = "hu_scaffolding04.m2", + fileId = "196743", + text = "zuldrak_pathstone_01.m2", + value = "zuldrak_pathstone_01.m2", }, { - fileId = "194942", - text = "hu_tarp_boxes.m2", - value = "hu_tarp_boxes.m2", + fileId = "196744", + text = "zuldrak_pathstone_02.m2", + value = "zuldrak_pathstone_02.m2", }, { - children = { - { - fileId = "194949", - text = "hu_lamp_northrend.m2", - value = "hu_lamp_northrend.m2", - }, - }, - text = "lamp", - value = "lamp", + fileId = "196745", + text = "zuldrak_pathstone_03.m2", + value = "zuldrak_pathstone_03.m2", }, { - children = { - { - fileId = "194951", - text = "hu_lamp_arm_northrend.m2", - value = "hu_lamp_arm_northrend.m2", - }, - { - fileId = "194952", - text = "hu_lamppost_northrend.m2", - value = "hu_lamppost_northrend.m2", - }, - }, - text = "lamppost", - value = "lamppost", + fileId = "196746", + text = "zuldrak_pathstone_04.m2", + value = "zuldrak_pathstone_04.m2", }, { - fileId = "317602", - text = "nd_human_gate_closed_collision.m2", - value = "nd_human_gate_closed_collision.m2", + fileId = "196747", + text = "zuldrak_pathstonesnow_01.m2", + value = "zuldrak_pathstonesnow_01.m2", }, { - fileId = "307074", - text = "nd_human_gate_closedfx.m2", - value = "nd_human_gate_closedfx.m2", + fileId = "196748", + text = "zuldrak_pathstonesnow_02.m2", + value = "zuldrak_pathstonesnow_02.m2", }, { - fileId = "311950", - text = "nd_human_gate_closedfx_door.m2", - value = "nd_human_gate_closedfx_door.m2", + fileId = "196749", + text = "zuldrak_pathstonesnow_03.m2", + value = "zuldrak_pathstonesnow_03.m2", }, { - fileId = "194953", - text = "nd_human_wall_damagedfx.m2", - value = "nd_human_wall_damagedfx.m2", + fileId = "196750", + text = "zuldrak_pathstonesnow_04.m2", + value = "zuldrak_pathstonesnow_04.m2", }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { { - fileId = "194954", - text = "nd_human_wall_end_damagedfx.m2", - value = "nd_human_wall_end_damagedfx.m2", + fileId = "244081", + text = "zuldrak_skyvortex.m2", + value = "zuldrak_skyvortex.m2", }, + }, + text = "skyvortex", + value = "skyvortex", + }, + { + children = { { - fileId = "243399", - text = "nd_human_wall_end_small_damagedfx02.m2", - value = "nd_human_wall_end_small_damagedfx02.m2", + fileId = "196752", + text = "zuldrak_statue_base_01.m2", + value = "zuldrak_statue_base_01.m2", }, { - fileId = "243400", - text = "nd_human_wall_small_damagedfx02.m2", - value = "nd_human_wall_small_damagedfx02.m2", + fileId = "196754", + text = "zuldrak_statue_bear_01.m2", + value = "zuldrak_statue_bear_01.m2", }, { - children = { - { - children = { - { - fileId = "194957", - text = "hu_humanladder.m2", - value = "hu_humanladder.m2", - }, - }, - text = "final", - value = "final", - }, - }, - text = "northrend_humanladder", - value = "northrend_humanladder", + fileId = "196756", + text = "zuldrak_statue_mammoth_01.m2", + value = "zuldrak_statue_mammoth_01.m2", }, { - children = { - { - fileId = "194959", - text = "hu_signpost_northrend.m2", - value = "hu_signpost_northrend.m2", - }, - { - fileId = "194960", - text = "hu_signpost_sign_northrend.m2", - value = "hu_signpost_sign_northrend.m2", - }, - }, - text = "signpost", - value = "signpost", + fileId = "196758", + text = "zuldrak_statue_rhino_01.m2", + value = "zuldrak_statue_rhino_01.m2", }, { - children = { - { - fileId = "194961", - text = "hu_tent01.m2", - value = "hu_tent01.m2", - }, - { - fileId = "194962", - text = "hu_tent02.m2", - value = "hu_tent02.m2", - }, - }, - text = "tents", - value = "tents", + fileId = "196760", + text = "zuldrak_statue_serpent_01.m2", + value = "zuldrak_statue_serpent_01.m2", }, { - children = { - { - fileId = "194965", - text = "northrendtorch_01.m2", - value = "northrendtorch_01.m2", - }, - { - fileId = "194966", - text = "northrendtorch_01blue.m2", - value = "northrendtorch_01blue.m2", - }, - }, - text = "torch", - value = "torch", + fileId = "196762", + text = "zuldrak_statue_snake_01.m2", + value = "zuldrak_statue_snake_01.m2", + }, + { + fileId = "244084", + text = "zuldrak_statue_snowleopard_01.m2", + value = "zuldrak_statue_snowleopard_01.m2", }, }, - text = "human", - value = "human", + text = "statues", + value = "statues", }, { children = { { - fileId = "243402", - text = "inscription_inkbottle_black01.m2", - value = "inscription_inkbottle_black01.m2", + fileId = "196763", + text = "zuldrak_bush_01.m2", + value = "zuldrak_bush_01.m2", }, { - fileId = "243403", - text = "inscription_inkbottle_black02.m2", - value = "inscription_inkbottle_black02.m2", + fileId = "196764", + text = "zuldrak_bush_02.m2", + value = "zuldrak_bush_02.m2", }, { - fileId = "243404", - text = "inscription_inkbottle_black03.m2", - value = "inscription_inkbottle_black03.m2", + fileId = "196765", + text = "zuldrak_bush_03.m2", + value = "zuldrak_bush_03.m2", }, { - fileId = "243405", - text = "inscription_inkbottle_black04.m2", - value = "inscription_inkbottle_black04.m2", + fileId = "196766", + text = "zuldrak_bush_04.m2", + value = "zuldrak_bush_04.m2", }, { - fileId = "243406", - text = "inscription_inkbottle_black05.m2", - value = "inscription_inkbottle_black05.m2", + fileId = "196767", + text = "zuldrak_bush_05.m2", + value = "zuldrak_bush_05.m2", }, { - fileId = "243407", - text = "inscription_inkbottle_blue01.m2", - value = "inscription_inkbottle_blue01.m2", + fileId = "196768", + text = "zuldrak_bush_07.m2", + value = "zuldrak_bush_07.m2", }, { - fileId = "243408", - text = "inscription_inkbottle_blue02.m2", - value = "inscription_inkbottle_blue02.m2", + fileId = "196769", + text = "zuldrak_bush_09.m2", + value = "zuldrak_bush_09.m2", }, { - fileId = "243409", - text = "inscription_inkbottle_blue03.m2", - value = "inscription_inkbottle_blue03.m2", + fileId = "196770", + text = "zuldrak_bush_09_snowy.m2", + value = "zuldrak_bush_09_snowy.m2", }, { - fileId = "243410", - text = "inscription_inkbottle_gold01.m2", - value = "inscription_inkbottle_gold01.m2", + fileId = "196771", + text = "zuldrak_bush_11.m2", + value = "zuldrak_bush_11.m2", }, { - fileId = "243411", - text = "inscription_inkbottle_green01.m2", - value = "inscription_inkbottle_green01.m2", + fileId = "196772", + text = "zuldrak_crop_01.m2", + value = "zuldrak_crop_01.m2", }, { - fileId = "243412", - text = "inscription_inkbottle_green02.m2", - value = "inscription_inkbottle_green02.m2", + fileId = "196773", + text = "zuldrak_crop_02.m2", + value = "zuldrak_crop_02.m2", + }, + { + fileId = "196774", + text = "zuldrak_largetree_01.m2", + value = "zuldrak_largetree_01.m2", }, { - fileId = "243413", - text = "inscription_inkbottle_green03.m2", - value = "inscription_inkbottle_green03.m2", + fileId = "196775", + text = "zuldrak_largetree_01_snowy.m2", + value = "zuldrak_largetree_01_snowy.m2", }, { - fileId = "243414", - text = "inscription_inkbottle_green04.m2", - value = "inscription_inkbottle_green04.m2", + fileId = "196776", + text = "zuldrak_largetree_02.m2", + value = "zuldrak_largetree_02.m2", }, { - fileId = "243415", - text = "inscription_inkbottle_iron01.m2", - value = "inscription_inkbottle_iron01.m2", + fileId = "196777", + text = "zuldrak_largetree_02_snowy.m2", + value = "zuldrak_largetree_02_snowy.m2", }, { - fileId = "243416", - text = "inscription_inkbottle_purple01.m2", - value = "inscription_inkbottle_purple01.m2", + fileId = "196778", + text = "zuldrak_largetree_03.m2", + value = "zuldrak_largetree_03.m2", }, { - fileId = "243417", - text = "inscription_inkbottle_purple02.m2", - value = "inscription_inkbottle_purple02.m2", + fileId = "196779", + text = "zuldrak_largetree_04.m2", + value = "zuldrak_largetree_04.m2", }, { - fileId = "243418", - text = "inscription_inkbottle_purple03.m2", - value = "inscription_inkbottle_purple03.m2", + fileId = "196780", + text = "zuldrak_largetree_04_snowy.m2", + value = "zuldrak_largetree_04_snowy.m2", }, { - fileId = "243419", - text = "inscription_inkbottle_red01.m2", - value = "inscription_inkbottle_red01.m2", + fileId = "196788", + text = "zuldrak_redbush_01.m2", + value = "zuldrak_redbush_01.m2", }, { - fileId = "243420", - text = "inscription_inkbottle_red02.m2", - value = "inscription_inkbottle_red02.m2", + fileId = "196789", + text = "zuldrak_roots_01.m2", + value = "zuldrak_roots_01.m2", }, { - fileId = "243421", - text = "inscription_inkbottle_red03.m2", - value = "inscription_inkbottle_red03.m2", + fileId = "196790", + text = "zuldrak_roots_01_snowy.m2", + value = "zuldrak_roots_01_snowy.m2", }, { - fileId = "243422", - text = "inscription_inkbottle_red04.m2", - value = "inscription_inkbottle_red04.m2", + fileId = "196791", + text = "zuldrak_roots_02.m2", + value = "zuldrak_roots_02.m2", }, { - fileId = "243423", - text = "inscription_inkbottle_silver01.m2", - value = "inscription_inkbottle_silver01.m2", + fileId = "196792", + text = "zuldrak_roots_03.m2", + value = "zuldrak_roots_03.m2", }, { - fileId = "243425", - text = "inscription_quill01.m2", - value = "inscription_quill01.m2", + fileId = "196793", + text = "zuldrak_roots_03_snowy.m2", + value = "zuldrak_roots_03_snowy.m2", }, { - fileId = "243426", - text = "inscription_quill02.m2", - value = "inscription_quill02.m2", + fileId = "196794", + text = "zuldrak_roots_04.m2", + value = "zuldrak_roots_04.m2", }, { - fileId = "243427", - text = "inscription_quill03.m2", - value = "inscription_quill03.m2", + fileId = "196795", + text = "zuldrak_roots_04_snowy.m2", + value = "zuldrak_roots_04_snowy.m2", }, { - fileId = "243428", - text = "inscription_quill04.m2", - value = "inscription_quill04.m2", + fileId = "196796", + text = "zuldrak_roots_05.m2", + value = "zuldrak_roots_05.m2", }, { - fileId = "243429", - text = "inscription_quill_frosty.m2", - value = "inscription_quill_frosty.m2", + fileId = "196797", + text = "zuldrak_roots_06.m2", + value = "zuldrak_roots_06.m2", }, { - fileId = "243430", - text = "inscription_quill_phoenix.m2", - value = "inscription_quill_phoenix.m2", + fileId = "244085", + text = "zuldrak_shelfmushroom_01.m2", + value = "zuldrak_shelfmushroom_01.m2", }, { - fileId = "243431", - text = "inscription_quillostrich01.m2", - value = "inscription_quillostrich01.m2", + fileId = "244086", + text = "zuldrak_shelfmushroom_02.m2", + value = "zuldrak_shelfmushroom_02.m2", }, { - fileId = "243432", - text = "inscription_quillpeacock01.m2", - value = "inscription_quillpeacock01.m2", + fileId = "244087", + text = "zuldrak_thinmushroom_01.m2", + value = "zuldrak_thinmushroom_01.m2", }, { - fileId = "243435", - text = "inscription_scroll_boxside.m2", - value = "inscription_scroll_boxside.m2", + fileId = "196798", + text = "zuldrak_tree_01.m2", + value = "zuldrak_tree_01.m2", }, { - fileId = "243436", - text = "inscription_scroll_boxup.m2", - value = "inscription_scroll_boxup.m2", + fileId = "196799", + text = "zuldrak_tree_02.m2", + value = "zuldrak_tree_02.m2", }, { - fileId = "243437", - text = "inscription_scroll_rolledblank.m2", - value = "inscription_scroll_rolledblank.m2", + fileId = "196800", + text = "zuldrak_tree_03.m2", + value = "zuldrak_tree_03.m2", }, { - fileId = "243438", - text = "inscription_scroll_rolledblue.m2", - value = "inscription_scroll_rolledblue.m2", + fileId = "196801", + text = "zuldrak_tree_04.m2", + value = "zuldrak_tree_04.m2", }, { - fileId = "243439", - text = "inscription_scroll_rolledgreen.m2", - value = "inscription_scroll_rolledgreen.m2", + fileId = "196820", + text = "zuldrak_vineplane_01.m2", + value = "zuldrak_vineplane_01.m2", }, + }, + text = "trees", + value = "trees", + }, + { + children = { { - fileId = "243440", - text = "inscription_scroll_rolledpin01.m2", - value = "inscription_scroll_rolledpin01.m2", + fileId = "196828", + text = "it_brazier01.m2", + value = "it_brazier01.m2", }, { - fileId = "243441", - text = "inscription_scroll_rolledpin02.m2", - value = "inscription_scroll_rolledpin02.m2", + fileId = "196829", + text = "it_brazier02.m2", + value = "it_brazier02.m2", }, { - fileId = "243442", - text = "inscription_scroll_rolledpin03.m2", - value = "inscription_scroll_rolledpin03.m2", + fileId = "196830", + text = "it_brazier03.m2", + value = "it_brazier03.m2", }, { - fileId = "243443", - text = "inscription_scroll_rolledpin04.m2", - value = "inscription_scroll_rolledpin04.m2", + fileId = "196835", + text = "zd_roadpiece_01.m2", + value = "zd_roadpiece_01.m2", }, { - fileId = "243444", - text = "inscription_scroll_rolledpindouble01.m2", - value = "inscription_scroll_rolledpindouble01.m2", + fileId = "196836", + text = "zuldrak_archpost_01.m2", + value = "zuldrak_archpost_01.m2", }, { - fileId = "243445", - text = "inscription_scroll_rolledpurple.m2", - value = "inscription_scroll_rolledpurple.m2", + fileId = "196837", + text = "zuldrak_archpost_02.m2", + value = "zuldrak_archpost_02.m2", }, { - fileId = "243446", - text = "inscription_scroll_rolledred.m2", - value = "inscription_scroll_rolledred.m2", + fileId = "196838", + text = "zuldrak_archpost_03.m2", + value = "zuldrak_archpost_03.m2", }, { - fileId = "243447", - text = "inscription_scroll_sealed01.m2", - value = "inscription_scroll_sealed01.m2", + fileId = "196839", + text = "zuldrak_archpost_04.m2", + value = "zuldrak_archpost_04.m2", }, { - fileId = "243448", - text = "inscription_scroll_sealed02.m2", - value = "inscription_scroll_sealed02.m2", + fileId = "196840", + text = "zuldrak_archpost_05.m2", + value = "zuldrak_archpost_05.m2", }, { - fileId = "243449", - text = "inscription_scroll_sealed03.m2", - value = "inscription_scroll_sealed03.m2", + fileId = "196841", + text = "zuldrak_archpost_06.m2", + value = "zuldrak_archpost_06.m2", }, { - fileId = "243450", - text = "inscription_scroll_sealed04.m2", - value = "inscription_scroll_sealed04.m2", + fileId = "196843", + text = "zuldrak_archway_01.m2", + value = "zuldrak_archway_01.m2", }, - }, - text = "inscription", - value = "inscription", - }, - { - children = { { - fileId = "194971", - text = "id_anvil.m2", - value = "id_anvil.m2", + fileId = "196845", + text = "zuldrak_archway_02.m2", + value = "zuldrak_archway_02.m2", }, { - fileId = "194973", - text = "id_banner1.m2", - value = "id_banner1.m2", + fileId = "196846", + text = "zuldrak_archway_03.m2", + value = "zuldrak_archway_03.m2", }, { - fileId = "194974", - text = "id_banner2.m2", - value = "id_banner2.m2", + fileId = "196847", + text = "zuldrak_archway_04.m2", + value = "zuldrak_archway_04.m2", }, { - fileId = "194975", - text = "id_barrel.m2", - value = "id_barrel.m2", + fileId = "196848", + text = "zuldrak_archway_broken_02.m2", + value = "zuldrak_archway_broken_02.m2", }, { - fileId = "194977", - text = "id_bed1.m2", - value = "id_bed1.m2", + fileId = "196849", + text = "zuldrak_archway_broken_03.m2", + value = "zuldrak_archway_broken_03.m2", }, { - fileId = "194978", - text = "id_bed2.m2", - value = "id_bed2.m2", + fileId = "196852", + text = "zuldrak_archway_snow_02.m2", + value = "zuldrak_archway_snow_02.m2", }, { - fileId = "194979", - text = "id_bed3.m2", - value = "id_bed3.m2", + fileId = "196853", + text = "zuldrak_archway_snow_03.m2", + value = "zuldrak_archway_snow_03.m2", }, { - fileId = "194980", - text = "id_benchsimple.m2", - value = "id_benchsimple.m2", + fileId = "244090", + text = "zuldrak_coliseumgong.m2", + value = "zuldrak_coliseumgong.m2", }, { - fileId = "194982", - text = "id_cage.m2", - value = "id_cage.m2", + fileId = "196859", + text = "zuldrak_gong_01.m2", + value = "zuldrak_gong_01.m2", }, { - fileId = "194983", - text = "id_chairmedium.m2", - value = "id_chairmedium.m2", + fileId = "196861", + text = "zuldrak_head_01.m2", + value = "zuldrak_head_01.m2", }, { - fileId = "194984", - text = "id_chairmedium_broken.m2", - value = "id_chairmedium_broken.m2", + fileId = "196863", + text = "zuldrak_incense_01.m2", + value = "zuldrak_incense_01.m2", }, { - fileId = "194986", - text = "id_chairsmall.m2", - value = "id_chairsmall.m2", + fileId = "196867", + text = "zuldrak_roadcurb_01.m2", + value = "zuldrak_roadcurb_01.m2", }, { - fileId = "194987", - text = "id_chairsmall_broken.m2", - value = "id_chairsmall_broken.m2", + fileId = "196868", + text = "zuldrak_roadcurb_02.m2", + value = "zuldrak_roadcurb_02.m2", }, { - fileId = "194988", - text = "id_chairthrone.m2", - value = "id_chairthrone.m2", + fileId = "196869", + text = "zuldrak_roadcurb_02reverse.m2", + value = "zuldrak_roadcurb_02reverse.m2", }, { - fileId = "194989", - text = "id_chandelier-off.m2", - value = "id_chandelier-off.m2", + fileId = "196870", + text = "zuldrak_roadcurb_03.m2", + value = "zuldrak_roadcurb_03.m2", }, { - fileId = "194990", - text = "id_chandelier.m2", - value = "id_chandelier.m2", + fileId = "196871", + text = "zuldrak_roadcurb_03_simple.m2", + value = "zuldrak_roadcurb_03_simple.m2", }, { - fileId = "194991", - text = "id_cliff_facade01.m2", - value = "id_cliff_facade01.m2", + fileId = "196872", + text = "zuldrak_roadcurb_03wide.m2", + value = "zuldrak_roadcurb_03wide.m2", }, { - fileId = "194992", - text = "id_cliff_facade02.m2", - value = "id_cliff_facade02.m2", + fileId = "196873", + text = "zuldrak_roadcurb_04.m2", + value = "zuldrak_roadcurb_04.m2", }, { - fileId = "194994", - text = "id_crate.m2", - value = "id_crate.m2", + fileId = "196874", + text = "zuldrak_roadcurb_05.m2", + value = "zuldrak_roadcurb_05.m2", }, { - fileId = "194995", - text = "id_crate2.m2", - value = "id_crate2.m2", + fileId = "196875", + text = "zuldrak_roadcurb_05short.m2", + value = "zuldrak_roadcurb_05short.m2", }, { - fileId = "194996", - text = "id_crate3.m2", - value = "id_crate3.m2", + fileId = "196876", + text = "zuldrak_roadcurb_06.m2", + value = "zuldrak_roadcurb_06.m2", }, { - fileId = "194997", - text = "id_crate4.m2", - value = "id_crate4.m2", + fileId = "196877", + text = "zuldrak_roadcurb_07.m2", + value = "zuldrak_roadcurb_07.m2", }, { - fileId = "194999", - text = "id_elevator.m2", - value = "id_elevator.m2", + fileId = "196879", + text = "zuldrak_ruin_03.m2", + value = "zuldrak_ruin_03.m2", }, { - fileId = "195000", - text = "id_fencepost01.m2", - value = "id_fencepost01.m2", + fileId = "196881", + text = "zuldrak_ruin_03_basic.m2", + value = "zuldrak_ruin_03_basic.m2", }, { - fileId = "195001", - text = "id_fencepost02.m2", - value = "id_fencepost02.m2", + fileId = "196882", + text = "zuldrak_ruin_04.m2", + value = "zuldrak_ruin_04.m2", }, { - fileId = "195002", - text = "id_fencepost03.m2", - value = "id_fencepost03.m2", + fileId = "196883", + text = "zuldrak_ruin_05.m2", + value = "zuldrak_ruin_05.m2", }, { - fileId = "195003", - text = "id_fencepost_base.m2", - value = "id_fencepost_base.m2", + fileId = "196884", + text = "zuldrak_ruin_06.m2", + value = "zuldrak_ruin_06.m2", }, { - fileId = "195006", - text = "id_forge.m2", - value = "id_forge.m2", + fileId = "196885", + text = "zuldrak_ruin_10.m2", + value = "zuldrak_ruin_10.m2", }, { - fileId = "195009", - text = "id_kegmetalfree.m2", - value = "id_kegmetalfree.m2", + fileId = "196886", + text = "zuldrak_ruin_11.m2", + value = "zuldrak_ruin_11.m2", }, { - fileId = "195010", - text = "id_kegmetalstand.m2", - value = "id_kegmetalstand.m2", + fileId = "196887", + text = "zuldrak_ruin_12.m2", + value = "zuldrak_ruin_12.m2", }, { - fileId = "195011", - text = "id_lamppost-off.m2", - value = "id_lamppost-off.m2", + fileId = "196888", + text = "zuldrak_ruin_15.m2", + value = "zuldrak_ruin_15.m2", }, { - fileId = "195012", - text = "id_lamppost.m2", - value = "id_lamppost.m2", + fileId = "196889", + text = "zuldrak_ruin_16.m2", + value = "zuldrak_ruin_16.m2", }, { - fileId = "195013", - text = "id_lamppost_broken.m2", - value = "id_lamppost_broken.m2", + fileId = "196890", + text = "zuldrak_ruin_17.m2", + value = "zuldrak_ruin_17.m2", }, { - fileId = "195014", - text = "id_lantern.m2", - value = "id_lantern.m2", + fileId = "196891", + text = "zuldrak_ruin_cornersmall01.m2", + value = "zuldrak_ruin_cornersmall01.m2", }, { - fileId = "195015", - text = "id_large-lantern.m2", - value = "id_large-lantern.m2", + fileId = "196892", + text = "zuldrak_ruin_cornertall01.m2", + value = "zuldrak_ruin_cornertall01.m2", }, { - fileId = "243453", - text = "id_lightning01_blue.m2", - value = "id_lightning01_blue.m2", + fileId = "196893", + text = "zuldrak_ruin_stairs_02.m2", + value = "zuldrak_ruin_stairs_02.m2", }, { - fileId = "195016", - text = "id_lowstairs.m2", - value = "id_lowstairs.m2", + fileId = "196894", + text = "zuldrak_ruin_stairs_03.m2", + value = "zuldrak_ruin_stairs_03.m2", }, { - fileId = "195017", - text = "id_lowstairs_small.m2", - value = "id_lowstairs_small.m2", + fileId = "196895", + text = "zuldrak_ruin_stairs_03_wide.m2", + value = "zuldrak_ruin_stairs_03_wide.m2", }, { - fileId = "195018", - text = "id_lowwall.m2", - value = "id_lowwall.m2", + fileId = "196896", + text = "zuldrak_ruin_wall_02.m2", + value = "zuldrak_ruin_wall_02.m2", }, { - fileId = "195019", - text = "id_pillar.m2", - value = "id_pillar.m2", + fileId = "196898", + text = "zuldrak_ruinblocks_01.m2", + value = "zuldrak_ruinblocks_01.m2", }, { - fileId = "195020", - text = "id_pillarbase.m2", - value = "id_pillarbase.m2", + fileId = "196902", + text = "zuldrak_stoneface_01.m2", + value = "zuldrak_stoneface_01.m2", }, { - fileId = "195022", - text = "id_signpost.m2", - value = "id_signpost.m2", + fileId = "196903", + text = "zuldrak_stonepost_01.m2", + value = "zuldrak_stonepost_01.m2", }, { - fileId = "195023", - text = "id_signpost_sign.m2", - value = "id_signpost_sign.m2", + fileId = "196904", + text = "zuldrak_stonepost_02.m2", + value = "zuldrak_stonepost_02.m2", }, { - fileId = "195025", - text = "id_tablelarge.m2", - value = "id_tablelarge.m2", + fileId = "196905", + text = "zuldrak_stonepost_end_01.m2", + value = "zuldrak_stonepost_end_01.m2", }, { - fileId = "195026", - text = "id_tablemedium.m2", - value = "id_tablemedium.m2", + fileId = "196908", + text = "zuldrak_wallend_01.m2", + value = "zuldrak_wallend_01.m2", }, { - fileId = "195027", - text = "id_tablemedium_broken.m2", - value = "id_tablemedium_broken.m2", + fileId = "196909", + text = "zuldrak_wallrubble_01.m2", + value = "zuldrak_wallrubble_01.m2", }, { - fileId = "195029", - text = "id_tablesmall.m2", - value = "id_tablesmall.m2", + fileId = "196910", + text = "zuldrak_wallrubble_02.m2", + value = "zuldrak_wallrubble_02.m2", + }, + }, + text = "trollruins", + value = "trollruins", + }, + { + children = { + { + fileId = "244091", + text = "zuldrak_gundrak_hub_ripples.m2", + value = "zuldrak_gundrak_hub_ripples.m2", }, { - fileId = "195030", - text = "id_tablesmall_broken.m2", - value = "id_tablesmall_broken.m2", + fileId = "244092", + text = "zuldrak_purple_water_mist.m2", + value = "zuldrak_purple_water_mist.m2", }, { - fileId = "195031", - text = "id_wall_lamp-off.m2", - value = "id_wall_lamp-off.m2", + fileId = "244104", + text = "zuldrak_waterfall_type1.m2", + value = "zuldrak_waterfall_type1.m2", }, { - fileId = "195032", - text = "id_wall_lamp.m2", - value = "id_wall_lamp.m2", + fileId = "244105", + text = "zuldrak_waterfall_type1_purple.m2", + value = "zuldrak_waterfall_type1_purple.m2", }, { - children = { - { - fileId = "195035", - text = "id_cage-active.m2", - value = "id_cage-active.m2", - }, - }, - text = "quest", - value = "quest", + fileId = "244106", + text = "zuldrak_waterfall_type2.m2", + value = "zuldrak_waterfall_type2.m2", }, - }, - text = "irondwarf", - value = "irondwarf", - }, - { - fileId = "243454", - text = "leather_chest_armor_01.m2", - value = "leather_chest_armor_01.m2", - }, - { - fileId = "243456", - text = "mail_chest_armor_01.m2", - value = "mail_chest_armor_01.m2", - }, - { - children = { { - fileId = "306985", - text = "nd_winterorc_wall_gatefx.m2", - value = "nd_winterorc_wall_gatefx.m2", + fileId = "244107", + text = "zuldrak_waterfall_type2_purple.m2", + value = "zuldrak_waterfall_type2_purple.m2", }, { - fileId = "311752", - text = "nd_winterorc_wall_gatefx_door.m2", - value = "nd_winterorc_wall_gatefx_door.m2", + fileId = "244108", + text = "zuldrak_waterfall_type2_purple_b.m2", + value = "zuldrak_waterfall_type2_purple_b.m2", }, { - fileId = "307053", - text = "nd_winterorc_wallfx.m2", - value = "nd_winterorc_wallfx.m2", + fileId = "244109", + text = "zuldrak_waterfall_type2_purple_c.m2", + value = "zuldrak_waterfall_type2_purple_c.m2", }, - }, - text = "nd_winterorc", - value = "nd_winterorc", - }, - { - children = { { - fileId = "195036", - text = "nerubian_livingegg_01.m2", - value = "nerubian_livingegg_01.m2", + fileId = "244110", + text = "zuldrak_waterfalls_set1_circle_ripples.m2", + value = "zuldrak_waterfalls_set1_circle_ripples.m2", }, { - fileId = "195037", - text = "nerubian_scourgeegg_01.m2", - value = "nerubian_scourgeegg_01.m2", + fileId = "244111", + text = "zuldrak_waterfalls_set1_high_purple.m2", + value = "zuldrak_waterfalls_set1_high_purple.m2", }, { - fileId = "243457", - text = "nerubian_water_01.m2", - value = "nerubian_water_01.m2", + fileId = "244112", + text = "zuldrak_waterfalls_set1_high_ripples.m2", + value = "zuldrak_waterfalls_set1_high_ripples.m2", }, { - children = { - { - fileId = "195039", - text = "nb_smallsinkhole01.m2", - value = "nb_smallsinkhole01.m2", - }, - }, - text = "pits", - value = "pits", + fileId = "244113", + text = "zuldrak_waterfog_01.m2", + value = "zuldrak_waterfog_01.m2", }, }, - text = "nerubian", - value = "nerubian", - }, - { - fileId = "243460", - text = "northrend_armor_01.m2", - value = "northrend_armor_01.m2", - }, - { - fileId = "243462", - text = "northrend_armor_02.m2", - value = "northrend_armor_02.m2", - }, - { - fileId = "243465", - text = "northrend_helm_01.m2", - value = "northrend_helm_01.m2", - }, - { - fileId = "243466", - text = "northrend_helm_02.m2", - value = "northrend_helm_02.m2", - }, - { - fileId = "243467", - text = "northrend_helm_03.m2", - value = "northrend_helm_03.m2", - }, - { - fileId = "243468", - text = "northrend_helm_04.m2", - value = "northrend_helm_04.m2", - }, - { - fileId = "243469", - text = "northrend_helm_05.m2", - value = "northrend_helm_05.m2", - }, - { - fileId = "243470", - text = "northrend_helm_06.m2", - value = "northrend_helm_06.m2", - }, - { - fileId = "243471", - text = "northrend_helm_07.m2", - value = "northrend_helm_07.m2", - }, - { - fileId = "243472", - text = "northrend_helm_08.m2", - value = "northrend_helm_08.m2", - }, - { - fileId = "243473", - text = "northrend_helm_09.m2", - value = "northrend_helm_09.m2", - }, - { - fileId = "243474", - text = "northrend_shoulder_01.m2", - value = "northrend_shoulder_01.m2", - }, - { - fileId = "243475", - text = "northrend_shoulder_02.m2", - value = "northrend_shoulder_02.m2", - }, - { - fileId = "243476", - text = "northrend_shoulder_03.m2", - value = "northrend_shoulder_03.m2", + text = "waterfalls", + value = "waterfalls", }, + }, + text = "zuldrak", + value = "zuldrak", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion02", + value = "expansion02", + }, + { + children = { + { + children = { + { + children = { { - fileId = "243477", - text = "northrend_shoulder_04.m2", - value = "northrend_shoulder_04.m2", + fileId = "406125", + text = "abyssal_leviathan_tentacle.m2", + value = "abyssal_leviathan_tentacle.m2", }, { - fileId = "243478", - text = "northrend_shoulder_05.m2", - value = "northrend_shoulder_05.m2", + fileId = "406354", + text = "abyssal_leviathan_tentacle_frombelow.m2", + value = "abyssal_leviathan_tentacle_frombelow.m2", }, { children = { { - fileId = "195050", - text = "o_crystal_01.m2", - value = "o_crystal_01.m2", - }, - { - fileId = "195051", - text = "o_crystal_02.m2", - value = "o_crystal_02.m2", - }, - { - fileId = "195052", - text = "o_crystal_large.m2", - value = "o_crystal_large.m2", - }, - { - fileId = "195053", - text = "o_egg_01.m2", - value = "o_egg_01.m2", - }, - { - fileId = "195054", - text = "o_egg_02.m2", - value = "o_egg_02.m2", + fileId = "526315", + text = "abyssal_bubblefx_01.m2", + value = "abyssal_bubblefx_01.m2", }, + }, + text = "bubblefx", + value = "bubblefx", + }, + { + children = { { - fileId = "195055", - text = "o_egg_03.m2", - value = "o_egg_03.m2", + fileId = "307276", + text = "abyssal_bubbles_01.m2", + value = "abyssal_bubbles_01.m2", }, { - fileId = "195056", - text = "o_egg_04.m2", - value = "o_egg_04.m2", + fileId = "308665", + text = "abyssal_bushcoral01.m2", + value = "abyssal_bushcoral01.m2", }, { - fileId = "195057", - text = "o_egg_05.m2", - value = "o_egg_05.m2", + fileId = "306765", + text = "abyssal_coral_01.m2", + value = "abyssal_coral_01.m2", }, { - fileId = "195059", - text = "o_hanger_bones.m2", - value = "o_hanger_bones.m2", + fileId = "306768", + text = "abyssal_coral_02.m2", + value = "abyssal_coral_02.m2", }, { - fileId = "195060", - text = "o_hanger_coconuts.m2", - value = "o_hanger_coconuts.m2", + fileId = "306991", + text = "abyssal_coral_03.m2", + value = "abyssal_coral_03.m2", }, { - fileId = "195061", - text = "o_hanger_crystal01.m2", - value = "o_hanger_crystal01.m2", + fileId = "306993", + text = "abyssal_coral_04.m2", + value = "abyssal_coral_04.m2", }, { - fileId = "195062", - text = "o_hanger_crystal02.m2", - value = "o_hanger_crystal02.m2", + fileId = "307495", + text = "abyssal_coral_05.m2", + value = "abyssal_coral_05.m2", }, { - fileId = "195063", - text = "o_hanger_extension.m2", - value = "o_hanger_extension.m2", + fileId = "308491", + text = "abyssal_coral_06.m2", + value = "abyssal_coral_06.m2", }, { - fileId = "195065", - text = "o_lamppost_01.m2", - value = "o_lamppost_01.m2", + fileId = "308727", + text = "abyssal_coral_07.m2", + value = "abyssal_coral_07.m2", }, { - fileId = "195066", - text = "o_lampwall_01.m2", - value = "o_lampwall_01.m2", + fileId = "313869", + text = "abyssal_coral_07_glow.m2", + value = "abyssal_coral_07_glow.m2", }, { - fileId = "195067", - text = "o_surfboard01.m2", - value = "o_surfboard01.m2", + fileId = "308293", + text = "abyssal_coral_chunk01.m2", + value = "abyssal_coral_chunk01.m2", }, { - fileId = "195068", - text = "o_surfboard02.m2", - value = "o_surfboard02.m2", + fileId = "308318", + text = "abyssal_coral_chunk02.m2", + value = "abyssal_coral_chunk02.m2", }, { - fileId = "195069", - text = "o_surfboard03.m2", - value = "o_surfboard03.m2", + fileId = "308319", + text = "abyssal_coral_chunk03.m2", + value = "abyssal_coral_chunk03.m2", }, { - fileId = "195070", - text = "o_surfboard04.m2", - value = "o_surfboard04.m2", + fileId = "308404", + text = "abyssal_coral_chunk04.m2", + value = "abyssal_coral_chunk04.m2", }, { - fileId = "195073", - text = "o_totem_01.m2", - value = "o_totem_01.m2", + fileId = "308472", + text = "abyssal_coral_chunk05.m2", + value = "abyssal_coral_chunk05.m2", }, { - fileId = "195074", - text = "o_trashpile_01.m2", - value = "o_trashpile_01.m2", + fileId = "309905", + text = "abyssal_coral_chunk_ceiling01.m2", + value = "abyssal_coral_chunk_ceiling01.m2", }, { - fileId = "195075", - text = "o_trashpile_02.m2", - value = "o_trashpile_02.m2", + fileId = "426043", + text = "abyssal_coral_chunk_ceiling01_break.m2", + value = "abyssal_coral_chunk_ceiling01_break.m2", }, - }, - text = "oracle", - value = "oracle", - }, - { - children = { { - fileId = "243479", - text = "potion_black01.m2", - value = "potion_black01.m2", + fileId = "310249", + text = "abyssal_coral_chunk_ceiling02.m2", + value = "abyssal_coral_chunk_ceiling02.m2", }, { - fileId = "243480", - text = "potion_black03.m2", - value = "potion_black03.m2", + fileId = "310315", + text = "abyssal_coral_chunk_ceiling03.m2", + value = "abyssal_coral_chunk_ceiling03.m2", }, { - fileId = "243481", - text = "potion_blue01.m2", - value = "potion_blue01.m2", + fileId = "307787", + text = "abyssal_coral_lamp_01.m2", + value = "abyssal_coral_lamp_01.m2", }, { - fileId = "243482", - text = "potion_empty01.m2", - value = "potion_empty01.m2", + fileId = "307788", + text = "abyssal_coral_lamp_02.m2", + value = "abyssal_coral_lamp_02.m2", }, { - fileId = "243483", - text = "potion_empty02.m2", - value = "potion_empty02.m2", + fileId = "307928", + text = "abyssal_coral_lamp_03.m2", + value = "abyssal_coral_lamp_03.m2", }, { - fileId = "243484", - text = "potion_gold01.m2", - value = "potion_gold01.m2", + fileId = "306704", + text = "abyssal_coral_rock_01.m2", + value = "abyssal_coral_rock_01.m2", }, { - fileId = "243485", - text = "potion_green01.m2", - value = "potion_green01.m2", + fileId = "306707", + text = "abyssal_coral_rock_02.m2", + value = "abyssal_coral_rock_02.m2", }, { - fileId = "243486", - text = "potion_green04.m2", - value = "potion_green04.m2", + fileId = "307550", + text = "abyssal_coral_rock_03.m2", + value = "abyssal_coral_rock_03.m2", }, { - fileId = "243487", - text = "potion_iron01.m2", - value = "potion_iron01.m2", + fileId = "312219", + text = "abyssal_coral_seafan.m2", + value = "abyssal_coral_seafan.m2", }, { - fileId = "243488", - text = "potion_purple01.m2", - value = "potion_purple01.m2", + fileId = "307168", + text = "abyssal_coralchunk_01.m2", + value = "abyssal_coralchunk_01.m2", }, { - fileId = "243489", - text = "potion_red01.m2", - value = "potion_red01.m2", + fileId = "307169", + text = "abyssal_coraltube_01.m2", + value = "abyssal_coraltube_01.m2", }, { - fileId = "243490", - text = "potion_red04.m2", - value = "potion_red04.m2", + fileId = "306677", + text = "abyssal_coraltube_02.m2", + value = "abyssal_coraltube_02.m2", }, { - fileId = "243491", - text = "potion_silver01.m2", - value = "potion_silver01.m2", + fileId = "306680", + text = "abyssal_coraltube_03.m2", + value = "abyssal_coraltube_03.m2", }, - }, - text = "potions", - value = "potions", - }, - { - fileId = "366691", - text = "sandbag_wall_01.m2", - value = "sandbag_wall_01.m2", - }, - { - children = { { - fileId = "195079", - text = "scarleto_banner01.m2", - value = "scarleto_banner01.m2", + fileId = "306867", + text = "abyssal_coraltube_04.m2", + value = "abyssal_coraltube_04.m2", }, { - fileId = "195080", - text = "scarleto_banner01wall.m2", - value = "scarleto_banner01wall.m2", + fileId = "306888", + text = "abyssal_coraltube_05.m2", + value = "abyssal_coraltube_05.m2", }, { - fileId = "195081", - text = "scarleto_banner02.m2", - value = "scarleto_banner02.m2", + fileId = "307170", + text = "abyssal_coraltube_06.m2", + value = "abyssal_coraltube_06.m2", }, { - fileId = "195082", - text = "scarleto_banner02wall.m2", - value = "scarleto_banner02wall.m2", + fileId = "309067", + text = "abyssal_fish01.m2", + value = "abyssal_fish01.m2", }, { - fileId = "243492", - text = "scarleto_brazier_fire.m2", - value = "scarleto_brazier_fire.m2", + fileId = "309911", + text = "abyssal_fish02.m2", + value = "abyssal_fish02.m2", }, { - fileId = "195084", - text = "scarleto_brazier_lit.m2", - value = "scarleto_brazier_lit.m2", + fileId = "311206", + text = "abyssal_goldenfish_light.m2", + value = "abyssal_goldenfish_light.m2", }, { - fileId = "195085", - text = "scarleto_brazier_smoker.m2", - value = "scarleto_brazier_smoker.m2", + fileId = "314565", + text = "abyssal_jellyfish01.m2", + value = "abyssal_jellyfish01.m2", }, { - fileId = "195086", - text = "scarleto_brazier_unlit.m2", - value = "scarleto_brazier_unlit.m2", + fileId = "314566", + text = "abyssal_jellyfish_elevator.m2", + value = "abyssal_jellyfish_elevator.m2", }, { - fileId = "243493", - text = "scarleto_brazier_unlit_base.m2", - value = "scarleto_brazier_unlit_base.m2", + fileId = "311491", + text = "abyssal_maw_giantclam.m2", + value = "abyssal_maw_giantclam.m2", }, { - fileId = "195087", - text = "scarleto_gallows.m2", - value = "scarleto_gallows.m2", + fileId = "369231", + text = "abyssal_maw_giantclam_02.m2", + value = "abyssal_maw_giantclam_02.m2", }, - }, - text = "scarletonslaught", - value = "scarletonslaught", - }, - { - children = { { - children = { - { - fileId = "195090", - text = "cd_altar_02.m2", - value = "cd_altar_02.m2", - }, - }, - text = "cd", - value = "cd", + fileId = "369232", + text = "abyssal_maw_giantclam_03.m2", + value = "abyssal_maw_giantclam_03.m2", }, { - fileId = "195095", - text = "icecrown_stairs01.m2", - value = "icecrown_stairs01.m2", + fileId = "369233", + text = "abyssal_maw_giantclam_04.m2", + value = "abyssal_maw_giantclam_04.m2", }, { - fileId = "243506", - text = "sc_alchemy_table.m2", - value = "sc_alchemy_table.m2", + fileId = "369234", + text = "abyssal_maw_giantclam_05.m2", + value = "abyssal_maw_giantclam_05.m2", }, { - fileId = "195098", - text = "sc_banner.m2", - value = "sc_banner.m2", + fileId = "307562", + text = "abyssal_maw_shell_01.m2", + value = "abyssal_maw_shell_01.m2", }, { - fileId = "243511", - text = "sc_banner_02.m2", - value = "sc_banner_02.m2", + fileId = "307563", + text = "abyssal_maw_shell_02.m2", + value = "abyssal_maw_shell_02.m2", }, { - fileId = "243512", - text = "sc_banner_03.m2", - value = "sc_banner_03.m2", + fileId = "307360", + text = "abyssal_maw_shell_fountain.m2", + value = "abyssal_maw_shell_fountain.m2", }, { - fileId = "243513", - text = "sc_banner_04.m2", - value = "sc_banner_04.m2", + fileId = "308394", + text = "abyssal_sea_shelf.m2", + value = "abyssal_sea_shelf.m2", }, { - fileId = "243514", - text = "sc_banner_05.m2", - value = "sc_banner_05.m2", + fileId = "308728", + text = "abyssal_seagrass01.m2", + value = "abyssal_seagrass01.m2", }, { - fileId = "243515", - text = "sc_banner_06.m2", - value = "sc_banner_06.m2", + fileId = "309266", + text = "abyssal_seahorse_01.m2", + value = "abyssal_seahorse_01.m2", }, { - fileId = "243519", - text = "sc_barrel_01.m2", - value = "sc_barrel_01.m2", + fileId = "308666", + text = "abyssal_seasponge01.m2", + value = "abyssal_seasponge01.m2", }, { - fileId = "243520", - text = "sc_barrel_01_broken.m2", - value = "sc_barrel_01_broken.m2", + fileId = "306688", + text = "abyssal_seaweed_02.m2", + value = "abyssal_seaweed_02.m2", }, { - fileId = "243521", - text = "sc_barrel_02_broken.m2", - value = "sc_barrel_02_broken.m2", + fileId = "306689", + text = "abyssal_seaweed_03.m2", + value = "abyssal_seaweed_03.m2", }, { - fileId = "195100", - text = "sc_barricade.m2", - value = "sc_barricade.m2", + fileId = "306690", + text = "abyssal_seaweed_04.m2", + value = "abyssal_seaweed_04.m2", }, { - fileId = "243523", - text = "sc_barricade_broken.m2", - value = "sc_barricade_broken.m2", + fileId = "306995", + text = "abyssal_seaweed_blue_01.m2", + value = "abyssal_seaweed_blue_01.m2", }, { - fileId = "195101", - text = "sc_blighter.m2", - value = "sc_blighter.m2", + fileId = "306996", + text = "abyssal_seaweed_blue_02.m2", + value = "abyssal_seaweed_blue_02.m2", }, { - fileId = "195104", - text = "sc_blighter2.m2", - value = "sc_blighter2.m2", + fileId = "306997", + text = "abyssal_seaweed_blue_03.m2", + value = "abyssal_seaweed_blue_03.m2", }, { - fileId = "243526", - text = "sc_blighter2_green.m2", - value = "sc_blighter2_green.m2", + fileId = "306998", + text = "abyssal_seaweed_blue_04.m2", + value = "abyssal_seaweed_blue_04.m2", }, { - fileId = "195105", - text = "sc_blighter_broken.m2", - value = "sc_blighter_broken.m2", + fileId = "307088", + text = "abyssal_seaweed_drape.m2", + value = "abyssal_seaweed_drape.m2", }, { - fileId = "243527", - text = "sc_blighter_green.m2", - value = "sc_blighter_green.m2", + fileId = "311647", + text = "abyssal_seaweed_drape02.m2", + value = "abyssal_seaweed_drape02.m2", }, { - fileId = "243528", - text = "sc_bloodorb.m2", - value = "sc_bloodorb.m2", + fileId = "326626", + text = "abyssal_seaweedbluestatic01.m2", + value = "abyssal_seaweedbluestatic01.m2", }, { - fileId = "243533", - text = "sc_bodycart_01.m2", - value = "sc_bodycart_01.m2", + fileId = "307305", + text = "abyssal_seaweedlong_01.m2", + value = "abyssal_seaweedlong_01.m2", }, { - fileId = "243535", - text = "sc_bodycart_02.m2", - value = "sc_bodycart_02.m2", + fileId = "307564", + text = "abyssal_starfish_red.m2", + value = "abyssal_starfish_red.m2", }, + }, + text = "coral", + value = "coral", + }, + { + children = { { - fileId = "243536", - text = "sc_bodycart_body.m2", - value = "sc_bodycart_body.m2", + fileId = "394943", + text = "abyssal_maw_door_01.m2", + value = "abyssal_maw_door_01.m2", }, + }, + text = "doors", + value = "doors", + }, + { + children = { { - fileId = "243537", - text = "sc_bodycart_destroyed.m2", - value = "sc_bodycart_destroyed.m2", + fileId = "310059", + text = "abyssal_vortex_01.m2", + value = "abyssal_vortex_01.m2", }, { - fileId = "243538", - text = "sc_bodycart_nobody.m2", - value = "sc_bodycart_nobody.m2", + fileId = "307173", + text = "abyssal_waterfall_01.m2", + value = "abyssal_waterfall_01.m2", }, + }, + text = "water", + value = "water", + }, + }, + text = "abyssalmaw", + value = "abyssalmaw", + }, + { + children = { + { + fileId = "446003", + text = "tradeskill_archaeology_surveytool_green.m2", + value = "tradeskill_archaeology_surveytool_green.m2", + }, + { + fileId = "446004", + text = "tradeskill_archaeology_surveytool_red.m2", + value = "tradeskill_archaeology_surveytool_red.m2", + }, + { + fileId = "446005", + text = "tradeskill_archaeology_surveytool_yellow.m2", + value = "tradeskill_archaeology_surveytool_yellow.m2", + }, + }, + text = "archaeology", + value = "archaeology", + }, + { + children = { + { + fileId = "464013", + text = "worgen_fence_01_battlegrounds.m2", + value = "worgen_fence_01_battlegrounds.m2", + }, + { + fileId = "464014", + text = "worgen_fence_02_battlegrounds.m2", + value = "worgen_fence_02_battlegrounds.m2", + }, + { + fileId = "464015", + text = "worgen_fence_03_battlegrounds.m2", + value = "worgen_fence_03_battlegrounds.m2", + }, + { + fileId = "464016", + text = "worgen_fence_04_battlegrounds.m2", + value = "worgen_fence_04_battlegrounds.m2", + }, + { + fileId = "458267", + text = "worgen_gate_wood_01.m2", + value = "worgen_gate_wood_01.m2", + }, + { + fileId = "464017", + text = "worgen_townfence_01_battlegrounds.m2", + value = "worgen_townfence_01_battlegrounds.m2", + }, + { + fileId = "464018", + text = "worgen_townfence_02_battlegrounds.m2", + value = "worgen_townfence_02_battlegrounds.m2", + }, + { + fileId = "464019", + text = "worgen_townfence_03_battlegrounds.m2", + value = "worgen_townfence_03_battlegrounds.m2", + }, + { + fileId = "465168", + text = "worgen_townlamp_01_battlegrounds.m2", + value = "worgen_townlamp_01_battlegrounds.m2", + }, + }, + text = "battleofgilneas", + value = "battleofgilneas", + }, + { + children = { + { + fileId = "396409", + text = "uldum_brazier.m2", + value = "uldum_brazier.m2", + }, + }, + text = "braziers", + value = "braziers", + }, + { + children = { + { + fileId = "390491", + text = "hyjal_cenarion_banner_01.m2", + value = "hyjal_cenarion_banner_01.m2", + }, + { + fileId = "390492", + text = "hyjal_cenarion_banner_02.m2", + value = "hyjal_cenarion_banner_02.m2", + }, + { + fileId = "390494", + text = "hyjal_cenarion_banner_burning_01.m2", + value = "hyjal_cenarion_banner_burning_01.m2", + }, + { + fileId = "390495", + text = "hyjal_cenarion_banner_burning_02.m2", + value = "hyjal_cenarion_banner_burning_02.m2", + }, + }, + text = "cenarion", + value = "cenarion", + }, + { + children = { + { + fileId = "250926", + text = "darkshore_giantwaterfall01.m2", + value = "darkshore_giantwaterfall01.m2", + }, + { + fileId = "319844", + text = "darkshore_stormtree01.m2", + value = "darkshore_stormtree01.m2", + }, + { + fileId = "319845", + text = "darkshore_stormtree02.m2", + value = "darkshore_stormtree02.m2", + }, + { + fileId = "392647", + text = "darkshore_waterfall_dungeon_01.m2", + value = "darkshore_waterfall_dungeon_01.m2", + }, + { + fileId = "250932", + text = "darkshore_waterfall_mist01.m2", + value = "darkshore_waterfall_mist01.m2", + }, + { + fileId = "250934", + text = "darkshore_whirlpool01.m2", + value = "darkshore_whirlpool01.m2", + }, + { + fileId = "374475", + text = "darkshore_whirlpool02.m2", + value = "darkshore_whirlpool02.m2", + }, + { + fileId = "312831", + text = "darkshore_wind_01.m2", + value = "darkshore_wind_01.m2", + }, + { + fileId = "317350", + text = "darkshoretree_baseroots02.m2", + value = "darkshoretree_baseroots02.m2", + }, + { + fileId = "317351", + text = "darkshoretree_baseroots03.m2", + value = "darkshoretree_baseroots03.m2", + }, + { + fileId = "250182", + text = "duskwood_magetower_brick.m2", + value = "duskwood_magetower_brick.m2", + }, + { + fileId = "250937", + text = "duskwood_magetower_shingle.m2", + value = "duskwood_magetower_shingle.m2", + }, + { + fileId = "249657", + text = "malfurion_darkshore_cyclone.m2", + value = "malfurion_darkshore_cyclone.m2", + }, + }, + text = "darkshorerework", + value = "darkshorerework", + }, + { + children = { + { + fileId = "522172", + text = "deathwing_ash_test.m2", + value = "deathwing_ash_test.m2", + }, + { + fileId = "522174", + text = "deathwing_backplate_door_test01.m2", + value = "deathwing_backplate_door_test01.m2", + }, + { + fileId = "522176", + text = "deathwing_backplate_test01.m2", + value = "deathwing_backplate_test01.m2", + }, + { + fileId = "522178", + text = "deathwing_backplate_test02.m2", + value = "deathwing_backplate_test02.m2", + }, + { + fileId = "522180", + text = "deathwing_backplate_test03.m2", + value = "deathwing_backplate_test03.m2", + }, + { + fileId = "443195", + text = "deathwing_bloodpool.m2", + value = "deathwing_bloodpool.m2", + }, + { + fileId = "517179", + text = "deathwing_doodad_head.m2", + value = "deathwing_doodad_head.m2", + }, + { + fileId = "517181", + text = "deathwing_doodad_legs.m2", + value = "deathwing_doodad_legs.m2", + }, + { + fileId = "517184", + text = "deathwing_doodad_tail.m2", + value = "deathwing_doodad_tail.m2", + }, + { + fileId = "517298", + text = "deathwing_doodad_wings.m2", + value = "deathwing_doodad_wings.m2", + }, + { + fileId = "522182", + text = "deathwing_ember_test.m2", + value = "deathwing_ember_test.m2", + }, + { + fileId = "381031", + text = "deathwing_parts_01.m2", + value = "deathwing_parts_01.m2", + }, + { + fileId = "381032", + text = "deathwing_parts_02.m2", + value = "deathwing_parts_02.m2", + }, + { + fileId = "381034", + text = "deathwing_parts_03.m2", + value = "deathwing_parts_03.m2", + }, + { + fileId = "381035", + text = "deathwing_parts_04.m2", + value = "deathwing_parts_04.m2", + }, + { + fileId = "381036", + text = "deathwing_parts_05.m2", + value = "deathwing_parts_05.m2", + }, + { + fileId = "381037", + text = "deathwing_parts_06.m2", + value = "deathwing_parts_06.m2", + }, + { + fileId = "381038", + text = "deathwing_parts_07.m2", + value = "deathwing_parts_07.m2", + }, + }, + text = "deathwing", + value = "deathwing", + }, + { + children = { + { + children = { { - fileId = "243539", - text = "sc_bodyhook.m2", - value = "sc_bodyhook.m2", + fileId = "397964", + text = "deepholm_archstone_01.m2", + value = "deepholm_archstone_01.m2", }, { - fileId = "243540", - text = "sc_bodyhook_arm_01.m2", - value = "sc_bodyhook_arm_01.m2", + fileId = "397959", + text = "deepholm_archstonecombined_01.m2", + value = "deepholm_archstonecombined_01.m2", }, { - fileId = "243541", - text = "sc_bodyhook_arm_02.m2", - value = "sc_bodyhook_arm_02.m2", + fileId = "397960", + text = "deepholm_archstonecombined_02.m2", + value = "deepholm_archstonecombined_02.m2", }, { - fileId = "243542", - text = "sc_bodyhook_boot.m2", - value = "sc_bodyhook_boot.m2", + fileId = "397961", + text = "deepholm_archstonefragment_01.m2", + value = "deepholm_archstonefragment_01.m2", }, { - fileId = "243543", - text = "sc_bodyhook_torso.m2", - value = "sc_bodyhook_torso.m2", + fileId = "397962", + text = "deepholm_archstonefragment_02.m2", + value = "deepholm_archstonefragment_02.m2", }, { - fileId = "243545", - text = "sc_bodyjar.m2", - value = "sc_bodyjar.m2", + fileId = "397963", + text = "deepholm_archstonefragment_03.m2", + value = "deepholm_archstonefragment_03.m2", }, + }, + text = "archstones", + value = "archstones", + }, + { + children = { { - fileId = "333851", - text = "sc_bodyjar_03.m2", - value = "sc_bodyjar_03.m2", + fileId = "366776", + text = "deepholm_beams_elbow_01.m2", + value = "deepholm_beams_elbow_01.m2", }, { - fileId = "243546", - text = "sc_bodyjar_ghoul.m2", - value = "sc_bodyjar_ghoul.m2", + fileId = "369297", + text = "deepholm_beams_elbow_01_dirty.m2", + value = "deepholm_beams_elbow_01_dirty.m2", }, { - fileId = "327391", - text = "sc_bodyjar_orange.m2", - value = "sc_bodyjar_orange.m2", + fileId = "366777", + text = "deepholm_beams_short_01.m2", + value = "deepholm_beams_short_01.m2", }, { - fileId = "329355", - text = "sc_bodyjar_orange_02.m2", - value = "sc_bodyjar_orange_02.m2", + fileId = "369298", + text = "deepholm_beams_short_01_dirty.m2", + value = "deepholm_beams_short_01_dirty.m2", }, { - fileId = "333852", - text = "sc_bodyjar_orange_03.m2", - value = "sc_bodyjar_orange_03.m2", + fileId = "366778", + text = "deepholm_beams_tall_01.m2", + value = "deepholm_beams_tall_01.m2", }, { - fileId = "243547", - text = "sc_bodyjar_skeleton.m2", - value = "sc_bodyjar_skeleton.m2", + fileId = "369299", + text = "deepholm_beams_tall_01_dirty.m2", + value = "deepholm_beams_tall_01_dirty.m2", }, + }, + text = "beams", + value = "beams", + }, + { + children = { { - fileId = "195106", - text = "sc_bonearm_01.m2", - value = "sc_bonearm_01.m2", + fileId = "355822", + text = "deepholm_boulder01.m2", + value = "deepholm_boulder01.m2", }, { - fileId = "243550", - text = "sc_bonearm_green_01.m2", - value = "sc_bonearm_green_01.m2", + fileId = "355823", + text = "deepholm_boulder02.m2", + value = "deepholm_boulder02.m2", }, { - fileId = "195107", - text = "sc_bonesawtable_01.m2", - value = "sc_bonesawtable_01.m2", + fileId = "355824", + text = "deepholm_boulder03.m2", + value = "deepholm_boulder03.m2", }, { - fileId = "195109", - text = "sc_brazier1.m2", - value = "sc_brazier1.m2", + fileId = "356003", + text = "deepholm_boulder04.m2", + value = "deepholm_boulder04.m2", }, { - fileId = "195110", - text = "sc_brazier1_long.m2", - value = "sc_brazier1_long.m2", + fileId = "356004", + text = "deepholm_boulder05.m2", + value = "deepholm_boulder05.m2", }, + }, + text = "boulders", + value = "boulders", + }, + { + children = { { - fileId = "315184", - text = "sc_brazier1_long_orange.m2", - value = "sc_brazier1_long_orange.m2", + fileId = "356028", + text = "deepholm_cliffpiece01.m2", + value = "deepholm_cliffpiece01.m2", }, { - fileId = "195111", - text = "sc_brazier2.m2", - value = "sc_brazier2.m2", + fileId = "356030", + text = "deepholm_cliffpiece02.m2", + value = "deepholm_cliffpiece02.m2", }, { - fileId = "195112", - text = "sc_brazier2_long.m2", - value = "sc_brazier2_long.m2", + fileId = "356031", + text = "deepholm_cliffpiece03.m2", + value = "deepholm_cliffpiece03.m2", }, { - fileId = "315185", - text = "sc_brazier2_long_orange.m2", - value = "sc_brazier2_long_orange.m2", + fileId = "356049", + text = "deepholm_cliffpiece04.m2", + value = "deepholm_cliffpiece04.m2", }, + }, + text = "cliff", + value = "cliff", + }, + { + children = { { - fileId = "315186", - text = "sc_brazier2_orange.m2", - value = "sc_brazier2_orange.m2", + fileId = "370317", + text = "deepholm_crystalblock01.m2", + value = "deepholm_crystalblock01.m2", }, { - fileId = "243551", - text = "sc_brazier2_short.m2", - value = "sc_brazier2_short.m2", + fileId = "370319", + text = "deepholm_crystalblock01_blue.m2", + value = "deepholm_crystalblock01_blue.m2", }, { - fileId = "195113", - text = "sc_brazier3.m2", - value = "sc_brazier3.m2", + fileId = "370321", + text = "deepholm_crystalblock01_chalk.m2", + value = "deepholm_crystalblock01_chalk.m2", }, { - fileId = "315187", - text = "sc_brazier3_orange.m2", - value = "sc_brazier3_orange.m2", + fileId = "370510", + text = "deepholm_crystalblock01_green.m2", + value = "deepholm_crystalblock01_green.m2", }, { - fileId = "195115", - text = "sc_cages_01.m2", - value = "sc_cages_01.m2", + fileId = "370323", + text = "deepholm_crystalblock01_orange.m2", + value = "deepholm_crystalblock01_orange.m2", }, { - fileId = "243553", - text = "sc_cages_02.m2", - value = "sc_cages_02.m2", + fileId = "370325", + text = "deepholm_crystalblock01_red.m2", + value = "deepholm_crystalblock01_red.m2", }, { - fileId = "195116", - text = "sc_castingcircle_01.m2", - value = "sc_castingcircle_01.m2", + fileId = "370327", + text = "deepholm_crystalblock01_silver.m2", + value = "deepholm_crystalblock01_silver.m2", }, { - fileId = "195118", - text = "sc_cauldron.m2", - value = "sc_cauldron.m2", + fileId = "370328", + text = "deepholm_crystalblock02.m2", + value = "deepholm_crystalblock02.m2", }, { - fileId = "243555", - text = "sc_cauldron_empty.m2", - value = "sc_cauldron_empty.m2", + fileId = "370329", + text = "deepholm_crystalblock02_blue.m2", + value = "deepholm_crystalblock02_blue.m2", }, { - fileId = "243557", - text = "sc_cauldron_green.m2", - value = "sc_cauldron_green.m2", + fileId = "370330", + text = "deepholm_crystalblock02_chalk.m2", + value = "deepholm_crystalblock02_chalk.m2", }, { - fileId = "243558", - text = "sc_cauldron_green_02.m2", - value = "sc_cauldron_green_02.m2", + fileId = "370511", + text = "deepholm_crystalblock02_green.m2", + value = "deepholm_crystalblock02_green.m2", }, { - fileId = "243560", - text = "sc_chain.m2", - value = "sc_chain.m2", + fileId = "370331", + text = "deepholm_crystalblock02_orange.m2", + value = "deepholm_crystalblock02_orange.m2", }, { - fileId = "195121", - text = "sc_chest.m2", - value = "sc_chest.m2", + fileId = "370332", + text = "deepholm_crystalblock02_red.m2", + value = "deepholm_crystalblock02_red.m2", }, { - fileId = "243561", - text = "sc_conveyer.m2", - value = "sc_conveyer.m2", + fileId = "370333", + text = "deepholm_crystalblock02_silver.m2", + value = "deepholm_crystalblock02_silver.m2", }, { - fileId = "243563", - text = "sc_crane_01.m2", - value = "sc_crane_01.m2", + fileId = "370334", + text = "deepholm_crystalblock03.m2", + value = "deepholm_crystalblock03.m2", }, { - fileId = "243565", - text = "sc_crane_02.m2", - value = "sc_crane_02.m2", + fileId = "370335", + text = "deepholm_crystalblock03_blue.m2", + value = "deepholm_crystalblock03_blue.m2", }, { - fileId = "243568", - text = "sc_crate_01.m2", - value = "sc_crate_01.m2", + fileId = "370336", + text = "deepholm_crystalblock03_chalk.m2", + value = "deepholm_crystalblock03_chalk.m2", }, { - fileId = "243569", - text = "sc_crate_02.m2", - value = "sc_crate_02.m2", + fileId = "370512", + text = "deepholm_crystalblock03_green.m2", + value = "deepholm_crystalblock03_green.m2", }, { - fileId = "243570", - text = "sc_crystal.m2", - value = "sc_crystal.m2", + fileId = "386883", + text = "deepholm_crystalblock03_orange.m2", + value = "deepholm_crystalblock03_orange.m2", }, { - fileId = "243571", - text = "sc_crystal_base.m2", - value = "sc_crystal_base.m2", + fileId = "370337", + text = "deepholm_crystalblock03_red.m2", + value = "deepholm_crystalblock03_red.m2", }, { - fileId = "243572", - text = "sc_deathstar_01.m2", - value = "sc_deathstar_01.m2", + fileId = "370338", + text = "deepholm_crystalblock03_silver.m2", + value = "deepholm_crystalblock03_silver.m2", }, { - fileId = "243574", - text = "sc_embalmingfluid.m2", - value = "sc_embalmingfluid.m2", + fileId = "370339", + text = "deepholm_crystalblock04.m2", + value = "deepholm_crystalblock04.m2", }, { - fileId = "315157", - text = "sc_engineofsouls_effect_01.m2", - value = "sc_engineofsouls_effect_01.m2", + fileId = "370340", + text = "deepholm_crystalblock04_blue.m2", + value = "deepholm_crystalblock04_blue.m2", }, { - fileId = "243578", - text = "sc_eyeofacherus.m2", - value = "sc_eyeofacherus.m2", + fileId = "370341", + text = "deepholm_crystalblock04_chalk.m2", + value = "deepholm_crystalblock04_chalk.m2", }, { - fileId = "243581", - text = "sc_eyeofacherus_02.m2", - value = "sc_eyeofacherus_02.m2", + fileId = "370513", + text = "deepholm_crystalblock04_green.m2", + value = "deepholm_crystalblock04_green.m2", }, { - fileId = "328250", - text = "sc_eyeofacherus_03.m2", - value = "sc_eyeofacherus_03.m2", + fileId = "370342", + text = "deepholm_crystalblock04_orange.m2", + value = "deepholm_crystalblock04_orange.m2", }, { - fileId = "243584", - text = "sc_fence.m2", - value = "sc_fence.m2", + fileId = "370343", + text = "deepholm_crystalblock04_red.m2", + value = "deepholm_crystalblock04_red.m2", }, { - fileId = "243585", - text = "sc_fence_base.m2", - value = "sc_fence_base.m2", + fileId = "370344", + text = "deepholm_crystalblock04_silver.m2", + value = "deepholm_crystalblock04_silver.m2", }, { - fileId = "243586", - text = "sc_fleshgiant_arm_01.m2", - value = "sc_fleshgiant_arm_01.m2", + fileId = "370345", + text = "deepholm_crystalblock05.m2", + value = "deepholm_crystalblock05.m2", }, { - fileId = "243587", - text = "sc_fleshgiant_arm_02.m2", - value = "sc_fleshgiant_arm_02.m2", + fileId = "370346", + text = "deepholm_crystalblock05_blue.m2", + value = "deepholm_crystalblock05_blue.m2", }, { - fileId = "243588", - text = "sc_fleshgiant_boot.m2", - value = "sc_fleshgiant_boot.m2", + fileId = "370347", + text = "deepholm_crystalblock05_chalk.m2", + value = "deepholm_crystalblock05_chalk.m2", }, { - fileId = "243589", - text = "sc_fleshgiant_leg.m2", - value = "sc_fleshgiant_leg.m2", + fileId = "370514", + text = "deepholm_crystalblock05_green.m2", + value = "deepholm_crystalblock05_green.m2", }, { - fileId = "243590", - text = "sc_fleshgiant_torso.m2", - value = "sc_fleshgiant_torso.m2", + fileId = "370348", + text = "deepholm_crystalblock05_orange.m2", + value = "deepholm_crystalblock05_orange.m2", }, { - fileId = "243591", - text = "sc_floor_decoration_01.m2", - value = "sc_floor_decoration_01.m2", + fileId = "370349", + text = "deepholm_crystalblock05_red.m2", + value = "deepholm_crystalblock05_red.m2", }, { - fileId = "243593", - text = "sc_frostglow.m2", - value = "sc_frostglow.m2", + fileId = "370350", + text = "deepholm_crystalblock05_silver.m2", + value = "deepholm_crystalblock05_silver.m2", }, { - fileId = "195122", - text = "sc_meatwagon_01.m2", - value = "sc_meatwagon_01.m2", + fileId = "369417", + text = "deepholm_crystalrock01_blue.m2", + value = "deepholm_crystalrock01_blue.m2", }, { - fileId = "243594", - text = "sc_meatwagon_01_broken.m2", - value = "sc_meatwagon_01_broken.m2", + fileId = "369419", + text = "deepholm_crystalrock01_green.m2", + value = "deepholm_crystalrock01_green.m2", }, { - fileId = "195125", - text = "sc_obelisk1.m2", - value = "sc_obelisk1.m2", + fileId = "395292", + text = "deepholm_crystalrock01_mossy.m2", + value = "deepholm_crystalrock01_mossy.m2", }, { - fileId = "195126", - text = "sc_obelisk2.m2", - value = "sc_obelisk2.m2", + fileId = "369770", + text = "deepholm_crystalrock01_orange.m2", + value = "deepholm_crystalrock01_orange.m2", }, { - fileId = "243595", - text = "sc_operation_table.m2", - value = "sc_operation_table.m2", + fileId = "369421", + text = "deepholm_crystalrock01_red.m2", + value = "deepholm_crystalrock01_red.m2", }, { - fileId = "243596", - text = "sc_pitcylinder.m2", - value = "sc_pitcylinder.m2", + fileId = "369772", + text = "deepholm_crystalrock01_silver.m2", + value = "deepholm_crystalrock01_silver.m2", }, { - fileId = "243597", - text = "sc_pitcylinder_02.m2", - value = "sc_pitcylinder_02.m2", + fileId = "369422", + text = "deepholm_crystalrock02_blue.m2", + value = "deepholm_crystalrock02_blue.m2", }, { - fileId = "243598", - text = "sc_pitcylinder_temp.m2", - value = "sc_pitcylinder_temp.m2", + fileId = "369423", + text = "deepholm_crystalrock02_green.m2", + value = "deepholm_crystalrock02_green.m2", }, { - fileId = "243599", - text = "sc_plaguebarrel.m2", - value = "sc_plaguebarrel.m2", + fileId = "395293", + text = "deepholm_crystalrock02_mossy.m2", + value = "deepholm_crystalrock02_mossy.m2", }, { - fileId = "243600", - text = "sc_plaguebarrel_02.m2", - value = "sc_plaguebarrel_02.m2", + fileId = "369773", + text = "deepholm_crystalrock02_orange.m2", + value = "deepholm_crystalrock02_orange.m2", }, { - fileId = "243601", - text = "sc_plaguebomb_green.m2", - value = "sc_plaguebomb_green.m2", + fileId = "369424", + text = "deepholm_crystalrock02_red.m2", + value = "deepholm_crystalrock02_red.m2", }, { - fileId = "243602", - text = "sc_plaguebomb_orange.m2", - value = "sc_plaguebomb_orange.m2", + fileId = "369774", + text = "deepholm_crystalrock02_silver.m2", + value = "deepholm_crystalrock02_silver.m2", }, { - fileId = "195127", - text = "sc_platform.m2", - value = "sc_platform.m2", + fileId = "369425", + text = "deepholm_crystalrock03_blue.m2", + value = "deepholm_crystalrock03_blue.m2", }, { - fileId = "195128", - text = "sc_platform2.m2", - value = "sc_platform2.m2", + fileId = "369426", + text = "deepholm_crystalrock03_green.m2", + value = "deepholm_crystalrock03_green.m2", }, { - fileId = "195129", - text = "sc_runeforge_01.m2", - value = "sc_runeforge_01.m2", + fileId = "395294", + text = "deepholm_crystalrock03_mossy.m2", + value = "deepholm_crystalrock03_mossy.m2", }, { - fileId = "243603", - text = "sc_runeforge_02.m2", - value = "sc_runeforge_02.m2", + fileId = "369775", + text = "deepholm_crystalrock03_orange.m2", + value = "deepholm_crystalrock03_orange.m2", }, { - fileId = "195130", - text = "sc_skullpikes_01.m2", - value = "sc_skullpikes_01.m2", + fileId = "369427", + text = "deepholm_crystalrock03_red.m2", + value = "deepholm_crystalrock03_red.m2", }, { - fileId = "195131", - text = "sc_skullpikes_02.m2", - value = "sc_skullpikes_02.m2", + fileId = "369776", + text = "deepholm_crystalrock03_silver.m2", + value = "deepholm_crystalrock03_silver.m2", }, { - fileId = "243604", - text = "sc_slimepool_green.m2", - value = "sc_slimepool_green.m2", + fileId = "369428", + text = "deepholm_crystalrock04_blue.m2", + value = "deepholm_crystalrock04_blue.m2", }, { - fileId = "243605", - text = "sc_slimepool_orange.m2", - value = "sc_slimepool_orange.m2", + fileId = "369429", + text = "deepholm_crystalrock04_green.m2", + value = "deepholm_crystalrock04_green.m2", }, { - fileId = "243606", - text = "sc_spiriteffect_01.m2", - value = "sc_spiriteffect_01.m2", + fileId = "369777", + text = "deepholm_crystalrock04_orange.m2", + value = "deepholm_crystalrock04_orange.m2", }, { - fileId = "243608", - text = "sc_spirits_01.m2", - value = "sc_spirits_01.m2", + fileId = "369430", + text = "deepholm_crystalrock04_red.m2", + value = "deepholm_crystalrock04_red.m2", }, { - fileId = "327767", - text = "sc_spirits_02.m2", - value = "sc_spirits_02.m2", + fileId = "369778", + text = "deepholm_crystalrock04_silver.m2", + value = "deepholm_crystalrock04_silver.m2", }, { - fileId = "348932", - text = "sc_spirits_03.m2", - value = "sc_spirits_03.m2", + fileId = "369433", + text = "deepholm_crystalrock05_blue.m2", + value = "deepholm_crystalrock05_blue.m2", }, { - fileId = "195133", - text = "sc_stairs.m2", - value = "sc_stairs.m2", + fileId = "369435", + text = "deepholm_crystalrock05_green.m2", + value = "deepholm_crystalrock05_green.m2", }, { - fileId = "195134", - text = "sc_stairs2.m2", - value = "sc_stairs2.m2", + fileId = "369780", + text = "deepholm_crystalrock05_orange.m2", + value = "deepholm_crystalrock05_orange.m2", }, { - fileId = "195135", - text = "sc_surgicaltable_01.m2", - value = "sc_surgicaltable_01.m2", + fileId = "369437", + text = "deepholm_crystalrock05_red.m2", + value = "deepholm_crystalrock05_red.m2", }, { - fileId = "195136", - text = "sc_surgicaltable_02.m2", - value = "sc_surgicaltable_02.m2", + fileId = "369782", + text = "deepholm_crystalrock05_silver.m2", + value = "deepholm_crystalrock05_silver.m2", }, { - fileId = "243610", - text = "sc_tanktrap.m2", - value = "sc_tanktrap.m2", + fileId = "365203", + text = "deepholm_crystals01.m2", + value = "deepholm_crystals01.m2", }, { - fileId = "320159", - text = "sc_teleportpad.m2", - value = "sc_teleportpad.m2", + fileId = "365204", + text = "deepholm_crystals02.m2", + value = "deepholm_crystals02.m2", }, { - fileId = "328180", - text = "sc_teleportpad2.m2", - value = "sc_teleportpad2.m2", + fileId = "365205", + text = "deepholm_crystals03.m2", + value = "deepholm_crystals03.m2", }, { - fileId = "347030", - text = "sc_teleportpad3.m2", - value = "sc_teleportpad3.m2", + fileId = "365206", + text = "deepholm_crystals04.m2", + value = "deepholm_crystals04.m2", }, { - fileId = "195139", - text = "sc_tent1.m2", - value = "sc_tent1.m2", + fileId = "365208", + text = "deepholm_crystals05.m2", + value = "deepholm_crystals05.m2", }, { - fileId = "243612", - text = "sc_tent1_destroyed.m2", - value = "sc_tent1_destroyed.m2", + fileId = "365209", + text = "deepholm_crystals06.m2", + value = "deepholm_crystals06.m2", }, { - fileId = "195140", - text = "sc_tent2.m2", - value = "sc_tent2.m2", + fileId = "365210", + text = "deepholm_crystals07.m2", + value = "deepholm_crystals07.m2", }, { - fileId = "195141", - text = "sc_tent_destroyed.m2", - value = "sc_tent_destroyed.m2", + fileId = "365211", + text = "deepholm_crystals08.m2", + value = "deepholm_crystals08.m2", }, { - fileId = "243613", - text = "sc_tools_table.m2", - value = "sc_tools_table.m2", + fileId = "365213", + text = "deepholm_crystals09.m2", + value = "deepholm_crystals09.m2", }, { - fileId = "195142", - text = "sc_trench_c_long.m2", - value = "sc_trench_c_long.m2", + fileId = "365214", + text = "deepholm_crystals11.m2", + value = "deepholm_crystals11.m2", }, { - fileId = "195143", - text = "sc_trench_c_medium.m2", - value = "sc_trench_c_medium.m2", + fileId = "365215", + text = "deepholm_crystals12.m2", + value = "deepholm_crystals12.m2", }, { - fileId = "195144", - text = "sc_trench_c_tall.m2", - value = "sc_trench_c_tall.m2", + fileId = "365217", + text = "deepholm_crystals13.m2", + value = "deepholm_crystals13.m2", }, { - fileId = "243614", - text = "sc_trench_m_brace.m2", - value = "sc_trench_m_brace.m2", + fileId = "365218", + text = "deepholm_crystals14.m2", + value = "deepholm_crystals14.m2", }, { - fileId = "195145", - text = "sc_trench_m_long.m2", - value = "sc_trench_m_long.m2", + fileId = "365219", + text = "deepholm_crystals15.m2", + value = "deepholm_crystals15.m2", }, { - fileId = "195146", - text = "sc_trench_m_medium.m2", - value = "sc_trench_m_medium.m2", + fileId = "365220", + text = "deepholm_crystals16.m2", + value = "deepholm_crystals16.m2", }, { - fileId = "195147", - text = "sc_trench_m_tall.m2", - value = "sc_trench_m_tall.m2", + fileId = "365222", + text = "deepholm_crystals17.m2", + value = "deepholm_crystals17.m2", }, { - fileId = "195148", - text = "sc_trench_p_bar.m2", - value = "sc_trench_p_bar.m2", + fileId = "365223", + text = "deepholm_crystals18.m2", + value = "deepholm_crystals18.m2", }, { - fileId = "195149", - text = "sc_trench_p_bone1.m2", - value = "sc_trench_p_bone1.m2", + fileId = "365224", + text = "deepholm_crystals19.m2", + value = "deepholm_crystals19.m2", }, { - fileId = "195150", - text = "sc_trench_p_bone2.m2", - value = "sc_trench_p_bone2.m2", + fileId = "365225", + text = "deepholm_crystals20.m2", + value = "deepholm_crystals20.m2", }, + }, + text = "crystals", + value = "crystals", + }, + { + fileId = "383743", + text = "deepholm_cluster.m2", + value = "deepholm_cluster.m2", + }, + { + fileId = "409618", + text = "deepholm_deathwingafterglow.m2", + value = "deepholm_deathwingafterglow.m2", + }, + { + fileId = "352397", + text = "deepholm_mineralcolumn01.m2", + value = "deepholm_mineralcolumn01.m2", + }, + { + fileId = "366365", + text = "deepholm_mineralcolumn01_nobase.m2", + value = "deepholm_mineralcolumn01_nobase.m2", + }, + { + fileId = "352398", + text = "deepholm_mineralcolumn02.m2", + value = "deepholm_mineralcolumn02.m2", + }, + { + fileId = "366366", + text = "deepholm_mineralcolumn02_nobase.m2", + value = "deepholm_mineralcolumn02_nobase.m2", + }, + { + fileId = "352400", + text = "deepholm_mineralcolumn03.m2", + value = "deepholm_mineralcolumn03.m2", + }, + { + fileId = "352401", + text = "deepholm_mineralcolumn04.m2", + value = "deepholm_mineralcolumn04.m2", + }, + { + fileId = "352402", + text = "deepholm_mineralcolumn05.m2", + value = "deepholm_mineralcolumn05.m2", + }, + { + fileId = "352403", + text = "deepholm_mineralcolumn06.m2", + value = "deepholm_mineralcolumn06.m2", + }, + { + fileId = "445669", + text = "deepholm_rockdoor_break.m2", + value = "deepholm_rockdoor_break.m2", + }, + { + fileId = "419193", + text = "deepholm_rockwall.m2", + value = "deepholm_rockwall.m2", + }, + { + fileId = "412197", + text = "deepholm_therazanethrone.m2", + value = "deepholm_therazanethrone.m2", + }, + { + children = { { - fileId = "195151", - text = "sc_trench_p_bone3.m2", - value = "sc_trench_p_bone3.m2", + fileId = "365198", + text = "deepholm_gems01.m2", + value = "deepholm_gems01.m2", }, { - fileId = "195152", - text = "sc_trench_p_bracer.m2", - value = "sc_trench_p_bracer.m2", + fileId = "365226", + text = "deepholm_gems02.m2", + value = "deepholm_gems02.m2", }, { - fileId = "195153", - text = "sc_trench_p_chain.m2", - value = "sc_trench_p_chain.m2", + fileId = "365228", + text = "deepholm_gems03.m2", + value = "deepholm_gems03.m2", }, { - fileId = "195154", - text = "sc_wagon.m2", - value = "sc_wagon.m2", + fileId = "365229", + text = "deepholm_gems04.m2", + value = "deepholm_gems04.m2", }, + }, + text = "gems", + value = "gems", + }, + { + children = { { - fileId = "195157", - text = "sc_wagon_02.m2", - value = "sc_wagon_02.m2", + fileId = "394759", + text = "deepholm_blueglow_01.m2", + value = "deepholm_blueglow_01.m2", }, { - fileId = "243615", - text = "sc_wagon_02_broken.m2", - value = "sc_wagon_02_broken.m2", + fileId = "394761", + text = "deepholm_blugrenbrtglow_01.m2", + value = "deepholm_blugrenbrtglow_01.m2", }, { - fileId = "243616", - text = "sc_wagon_broken.m2", - value = "sc_wagon_broken.m2", + fileId = "394763", + text = "deepholm_blugrenglow_01.m2", + value = "deepholm_blugrenglow_01.m2", }, { - fileId = "243618", - text = "sc_wall_01.m2", - value = "sc_wall_01.m2", + fileId = "394765", + text = "deepholm_dkblueglow_01.m2", + value = "deepholm_dkblueglow_01.m2", }, { - fileId = "243619", - text = "sc_wall_01_cap.m2", - value = "sc_wall_01_cap.m2", + fileId = "394767", + text = "deepholm_dkblueredglow_01.m2", + value = "deepholm_dkblueredglow_01.m2", }, { - fileId = "243620", - text = "sc_wall_01_ramp.m2", - value = "sc_wall_01_ramp.m2", + fileId = "394769", + text = "deepholm_purpleglow_01.m2", + value = "deepholm_purpleglow_01.m2", }, { - fileId = "243621", - text = "sc_wall_02.m2", - value = "sc_wall_02.m2", + fileId = "394771", + text = "deepholm_redglow_01.m2", + value = "deepholm_redglow_01.m2", }, + }, + text = "glow", + value = "glow", + }, + { + children = { { - fileId = "243622", - text = "sc_wall_02_cap.m2", - value = "sc_wall_02_cap.m2", + fileId = "369320", + text = "deepholm_mercurydrip01.m2", + value = "deepholm_mercurydrip01.m2", }, { - fileId = "243623", - text = "sc_wall_02_ramp.m2", - value = "sc_wall_02_ramp.m2", + fileId = "369784", + text = "deepholm_mercurydrip02.m2", + value = "deepholm_mercurydrip02.m2", }, { - fileId = "243624", - text = "sc_wall_03.m2", - value = "sc_wall_03.m2", + fileId = "365683", + text = "deepholm_mercurypool01.m2", + value = "deepholm_mercurypool01.m2", }, { - fileId = "243625", - text = "sc_wall_04.m2", - value = "sc_wall_04.m2", + fileId = "365684", + text = "deepholm_mercurypool02.m2", + value = "deepholm_mercurypool02.m2", }, { - fileId = "243626", - text = "sc_wall_05.m2", - value = "sc_wall_05.m2", + fileId = "365685", + text = "deepholm_mercurypool03.m2", + value = "deepholm_mercurypool03.m2", }, { - fileId = "243627", - text = "sc_wall_05_piece.m2", - value = "sc_wall_05_piece.m2", + fileId = "365686", + text = "deepholm_mercurypool04.m2", + value = "deepholm_mercurypool04.m2", }, { - fileId = "243628", - text = "sc_wall_06.m2", - value = "sc_wall_06.m2", + fileId = "365687", + text = "deepholm_mercurypool05.m2", + value = "deepholm_mercurypool05.m2", }, { - fileId = "243629", - text = "sc_wall_06_piece.m2", - value = "sc_wall_06_piece.m2", + fileId = "368636", + text = "deepholm_mercurypool06.m2", + value = "deepholm_mercurypool06.m2", }, - { - fileId = "243630", - text = "sc_wall_decoration_01.m2", - value = "sc_wall_decoration_01.m2", + { + fileId = "386968", + text = "deepholm_mercurypool07.m2", + value = "deepholm_mercurypool07.m2", }, { - fileId = "243631", - text = "sc_wall_decoration_02.m2", - value = "sc_wall_decoration_02.m2", + fileId = "368637", + text = "deepholm_mercurypool08.m2", + value = "deepholm_mercurypool08.m2", }, { - fileId = "195160", - text = "sc_warmachine_01.m2", - value = "sc_warmachine_01.m2", + fileId = "368638", + text = "deepholm_mercurypool09.m2", + value = "deepholm_mercurypool09.m2", }, { - fileId = "243633", - text = "sc_warmachine_01_broken.m2", - value = "sc_warmachine_01_broken.m2", + fileId = "368639", + text = "deepholm_mercurypool10.m2", + value = "deepholm_mercurypool10.m2", }, { - fileId = "243634", - text = "sc_warmachine_01_green.m2", - value = "sc_warmachine_01_green.m2", + fileId = "365748", + text = "deepholm_tarpit01.m2", + value = "deepholm_tarpit01.m2", }, + }, + text = "mercurypools", + value = "mercurypools", + }, + { + children = { { - fileId = "195161", - text = "sc_weaponrack-deathknight.m2", - value = "sc_weaponrack-deathknight.m2", + fileId = "354954", + text = "deepholm_mineralbridge01.m2", + value = "deepholm_mineralbridge01.m2", }, { - fileId = "195162", - text = "sc_weaponrack-empty.m2", - value = "sc_weaponrack-empty.m2", + fileId = "357295", + text = "deepholm_mineralcolumn01_chalk.m2", + value = "deepholm_mineralcolumn01_chalk.m2", }, { - fileId = "195164", - text = "sc_weaponrack-weapon1.m2", - value = "sc_weaponrack-weapon1.m2", + fileId = "395822", + text = "deepholm_mineralcolumn01_mossy.m2", + value = "deepholm_mineralcolumn01_mossy.m2", }, { - fileId = "195165", - text = "sc_weaponrack-weapon2.m2", - value = "sc_weaponrack-weapon2.m2", + fileId = "353654", + text = "deepholm_mineralcolumn01_vfx.m2", + value = "deepholm_mineralcolumn01_vfx.m2", }, { - fileId = "195166", - text = "sc_weaponrack-weapon3.m2", - value = "sc_weaponrack-weapon3.m2", + fileId = "386258", + text = "deepholm_mineralcolumn02_broken.m2", + value = "deepholm_mineralcolumn02_broken.m2", }, { - fileId = "195167", - text = "sc_weaponrack-weapon4.m2", - value = "sc_weaponrack-weapon4.m2", + fileId = "357296", + text = "deepholm_mineralcolumn02_chalk.m2", + value = "deepholm_mineralcolumn02_chalk.m2", }, { - fileId = "195168", - text = "sc_weaponrack-weapon5.m2", - value = "sc_weaponrack-weapon5.m2", + fileId = "357298", + text = "deepholm_mineralcolumn03_chalk.m2", + value = "deepholm_mineralcolumn03_chalk.m2", }, { - fileId = "195170", - text = "sc_weaponrack1.m2", - value = "sc_weaponrack1.m2", + fileId = "386259", + text = "deepholm_mineralcolumn03_vfx.m2", + value = "deepholm_mineralcolumn03_vfx.m2", }, { - fileId = "195171", - text = "sc_weaponrack2.m2", - value = "sc_weaponrack2.m2", + fileId = "357299", + text = "deepholm_mineralcolumn04_chalk.m2", + value = "deepholm_mineralcolumn04_chalk.m2", }, { - fileId = "243636", - text = "sc_whole_body.m2", - value = "sc_whole_body.m2", + fileId = "386260", + text = "deepholm_mineralcolumn04_vfx.m2", + value = "deepholm_mineralcolumn04_vfx.m2", }, { - fileId = "243637", - text = "sc_wolfskull_green_01.m2", - value = "sc_wolfskull_green_01.m2", + fileId = "357300", + text = "deepholm_mineralcolumn05_chalk.m2", + value = "deepholm_mineralcolumn05_chalk.m2", }, { - fileId = "195172", - text = "sc_yoggthoritebar_01.m2", - value = "sc_yoggthoritebar_01.m2", + fileId = "357301", + text = "deepholm_mineralcolumn06_chalk.m2", + value = "deepholm_mineralcolumn06_chalk.m2", }, { - fileId = "195173", - text = "sc_yoggthoritebar_stack_01.m2", - value = "sc_yoggthoritebar_stack_01.m2", + fileId = "392109", + text = "deepholm_mineralcrystal01_blue.m2", + value = "deepholm_mineralcrystal01_blue.m2", }, - }, - text = "scourge", - value = "scourge", - }, - { - children = { { - fileId = "243639", - text = "seamine_01.m2", - value = "seamine_01.m2", + fileId = "392110", + text = "deepholm_mineralcrystal01_chalk.m2", + value = "deepholm_mineralcrystal01_chalk.m2", }, - }, - text = "seamines", - value = "seamines", - }, - { - children = { { - children = { - { - fileId = "195179", - text = "vrs_chest_01.m2", - value = "vrs_chest_01.m2", - }, - { - fileId = "195181", - text = "vrs_crate_01.m2", - value = "vrs_crate_01.m2", - }, - { - fileId = "243640", - text = "vrs_crate_destroyed_01.m2", - value = "vrs_crate_destroyed_01.m2", - }, - { - fileId = "195185", - text = "vrs_netpile_01.m2", - value = "vrs_netpile_01.m2", - }, - { - fileId = "195187", - text = "vrs_tent_01.m2", - value = "vrs_tent_01.m2", - }, - { - fileId = "195188", - text = "vrs_tent_02.m2", - value = "vrs_tent_02.m2", - }, - }, - text = "shore", - value = "shore", + fileId = "392111", + text = "deepholm_mineralcrystal01_green.m2", + value = "deepholm_mineralcrystal01_green.m2", }, { - children = { - { - fileId = "195189", - text = "vrs_weaponrack_01.m2", - value = "vrs_weaponrack_01.m2", - }, - { - fileId = "195190", - text = "vrs_weaponrack_02.m2", - value = "vrs_weaponrack_02.m2", - }, - }, - text = "weapons", - value = "weapons", + fileId = "392112", + text = "deepholm_mineralcrystal01_orange.m2", + value = "deepholm_mineralcrystal01_orange.m2", }, - }, - text = "seavrykul", - value = "seavrykul", - }, - { - children = { { - fileId = "243641", - text = "demolisherstatic.m2", - value = "demolisherstatic.m2", + fileId = "392113", + text = "deepholm_mineralcrystal01_red.m2", + value = "deepholm_mineralcrystal01_red.m2", }, { - fileId = "243642", - text = "siegetankstatic.m2", - value = "siegetankstatic.m2", + fileId = "392114", + text = "deepholm_mineralcrystal01_silver.m2", + value = "deepholm_mineralcrystal01_silver.m2", }, - }, - text = "seigeequipment", - value = "seigeequipment", - }, - { - children = { { - fileId = "195191", - text = "skull_protodragon.m2", - value = "skull_protodragon.m2", + fileId = "392115", + text = "deepholm_mineralcrystal02_blue.m2", + value = "deepholm_mineralcrystal02_blue.m2", }, { - fileId = "195192", - text = "skull_shoveltusk.m2", - value = "skull_shoveltusk.m2", + fileId = "392116", + text = "deepholm_mineralcrystal02_chalk.m2", + value = "deepholm_mineralcrystal02_chalk.m2", }, { - fileId = "195194", - text = "skull_wolf.m2", - value = "skull_wolf.m2", + fileId = "392117", + text = "deepholm_mineralcrystal02_green.m2", + value = "deepholm_mineralcrystal02_green.m2", }, { - fileId = "195195", - text = "skull_yeti.m2", - value = "skull_yeti.m2", + fileId = "392118", + text = "deepholm_mineralcrystal02_orange.m2", + value = "deepholm_mineralcrystal02_orange.m2", }, - }, - text = "skulls", - value = "skulls", - }, - { - children = { { - children = { - { - fileId = "195197", - text = "sunshatter_banner01.m2", - value = "sunshatter_banner01.m2", - }, - { - fileId = "195198", - text = "sunshatter_banner02.m2", - value = "sunshatter_banner02.m2", - }, - { - fileId = "195199", - text = "sunshatter_banner03.m2", - value = "sunshatter_banner03.m2", - }, - { - fileId = "195200", - text = "sunshatter_monument.m2", - value = "sunshatter_monument.m2", - }, - }, - text = "banner", - value = "banner", + fileId = "392119", + text = "deepholm_mineralcrystal02_red.m2", + value = "deepholm_mineralcrystal02_red.m2", }, - }, - text = "sunshatter", - value = "sunshatter", - }, - { - children = { { - fileId = "243646", - text = "ti_arch.m2", - value = "ti_arch.m2", + fileId = "392120", + text = "deepholm_mineralcrystal02_silver.m2", + value = "deepholm_mineralcrystal02_silver.m2", }, { - fileId = "243647", - text = "ti_archsingle.m2", - value = "ti_archsingle.m2", + fileId = "368642", + text = "deepholm_mineralrocks01.m2", + value = "deepholm_mineralrocks01.m2", }, { - fileId = "243648", - text = "ti_battlegroundportal_01.m2", - value = "ti_battlegroundportal_01.m2", + fileId = "368643", + text = "deepholm_mineralrocks02.m2", + value = "deepholm_mineralrocks02.m2", }, { - fileId = "243649", - text = "ti_block01.m2", - value = "ti_block01.m2", + fileId = "368644", + text = "deepholm_mineralrocks03.m2", + value = "deepholm_mineralrocks03.m2", }, { - fileId = "243650", - text = "ti_bottom01.m2", - value = "ti_bottom01.m2", + fileId = "368646", + text = "deepholm_mineralrocks04.m2", + value = "deepholm_mineralrocks04.m2", }, { - fileId = "243651", - text = "ti_bottom02.m2", - value = "ti_bottom02.m2", + fileId = "368648", + text = "deepholm_mineralrocks05.m2", + value = "deepholm_mineralrocks05.m2", }, { - fileId = "243652", - text = "ti_bridge.m2", - value = "ti_bridge.m2", + fileId = "368649", + text = "deepholm_mineralrocks06.m2", + value = "deepholm_mineralrocks06.m2", }, { - fileId = "243653", - text = "ti_brokenpillar.m2", - value = "ti_brokenpillar.m2", + fileId = "368650", + text = "deepholm_mineralrocks07.m2", + value = "deepholm_mineralrocks07.m2", }, { - fileId = "243654", - text = "ti_brokenroad01.m2", - value = "ti_brokenroad01.m2", + fileId = "368651", + text = "deepholm_mineralrocks08.m2", + value = "deepholm_mineralrocks08.m2", }, { - fileId = "243655", - text = "ti_brokenroad02.m2", - value = "ti_brokenroad02.m2", + fileId = "368652", + text = "deepholm_mineralrocks09.m2", + value = "deepholm_mineralrocks09.m2", }, { - fileId = "243656", - text = "ti_brokenroad03.m2", - value = "ti_brokenroad03.m2", + fileId = "368657", + text = "deepholm_mineralrocks10.m2", + value = "deepholm_mineralrocks10.m2", }, { - fileId = "243657", - text = "ti_brokenroad04.m2", - value = "ti_brokenroad04.m2", + fileId = "368658", + text = "deepholm_mineralrocks11.m2", + value = "deepholm_mineralrocks11.m2", }, { - fileId = "243658", - text = "ti_brokenroad05.m2", - value = "ti_brokenroad05.m2", + fileId = "368659", + text = "deepholm_mineralrocks12.m2", + value = "deepholm_mineralrocks12.m2", }, { - fileId = "254943", - text = "ti_brokenroad05_small.m2", - value = "ti_brokenroad05_small.m2", + fileId = "368661", + text = "deepholm_mineralrocks13.m2", + value = "deepholm_mineralrocks13.m2", }, { - fileId = "243659", - text = "ti_brokenroad06.m2", - value = "ti_brokenroad06.m2", + fileId = "368662", + text = "deepholm_mineralrocks14.m2", + value = "deepholm_mineralrocks14.m2", }, { - fileId = "243660", - text = "ti_brokenroad07.m2", - value = "ti_brokenroad07.m2", + fileId = "368663", + text = "deepholm_mineralrocks15.m2", + value = "deepholm_mineralrocks15.m2", }, { - fileId = "243661", - text = "ti_brokenroad08.m2", - value = "ti_brokenroad08.m2", + fileId = "368664", + text = "deepholm_mineralrocks16.m2", + value = "deepholm_mineralrocks16.m2", }, { - fileId = "195206", - text = "ti_building01.m2", - value = "ti_building01.m2", + fileId = "368666", + text = "deepholm_mineralrocks17.m2", + value = "deepholm_mineralrocks17.m2", }, { - fileId = "195207", - text = "ti_building02.m2", - value = "ti_building02.m2", + fileId = "368668", + text = "deepholm_mineralrocks18.m2", + value = "deepholm_mineralrocks18.m2", }, { - fileId = "243662", - text = "ti_buildingblock01.m2", - value = "ti_buildingblock01.m2", + fileId = "395296", + text = "deepholm_mineralrocks18_mossy.m2", + value = "deepholm_mineralrocks18_mossy.m2", }, { - fileId = "243663", - text = "ti_buildingblock02.m2", - value = "ti_buildingblock02.m2", + fileId = "368811", + text = "deepholm_mineralrocks19.m2", + value = "deepholm_mineralrocks19.m2", }, { - fileId = "243664", - text = "ti_buildingblock03.m2", - value = "ti_buildingblock03.m2", + fileId = "395298", + text = "deepholm_mineralrocks19_mossy.m2", + value = "deepholm_mineralrocks19_mossy.m2", }, { - fileId = "243665", - text = "ti_buildingblock04.m2", - value = "ti_buildingblock04.m2", + fileId = "368671", + text = "deepholm_mineralrocks20.m2", + value = "deepholm_mineralrocks20.m2", }, { - fileId = "243667", - text = "ti_chamberportal_black01.m2", - value = "ti_chamberportal_black01.m2", + fileId = "368672", + text = "deepholm_mineralrocks21.m2", + value = "deepholm_mineralrocks21.m2", }, { - fileId = "243669", - text = "ti_chamberportal_blue01.m2", - value = "ti_chamberportal_blue01.m2", + fileId = "368674", + text = "deepholm_mineralrocks22.m2", + value = "deepholm_mineralrocks22.m2", }, { - fileId = "243671", - text = "ti_chamberportal_bronze01.m2", - value = "ti_chamberportal_bronze01.m2", + fileId = "368676", + text = "deepholm_mineralrocks23.m2", + value = "deepholm_mineralrocks23.m2", }, { - fileId = "243673", - text = "ti_chamberportal_green01.m2", - value = "ti_chamberportal_green01.m2", + fileId = "368678", + text = "deepholm_mineralrocks24.m2", + value = "deepholm_mineralrocks24.m2", }, { - fileId = "243675", - text = "ti_chamberportal_red01.m2", - value = "ti_chamberportal_red01.m2", + fileId = "368680", + text = "deepholm_mineralrocks25.m2", + value = "deepholm_mineralrocks25.m2", }, { - fileId = "367652", - text = "ti_chamberportal_red01_broken.m2", - value = "ti_chamberportal_red01_broken.m2", + fileId = "368681", + text = "deepholm_mineralrocks26.m2", + value = "deepholm_mineralrocks26.m2", }, { - fileId = "243677", - text = "ti_curvestair.m2", - value = "ti_curvestair.m2", + fileId = "368813", + text = "deepholm_mineralrocks27.m2", + value = "deepholm_mineralrocks27.m2", }, { - fileId = "243678", - text = "ti_disc_01.m2", - value = "ti_disc_01.m2", + fileId = "368682", + text = "deepholm_mineralrocks28.m2", + value = "deepholm_mineralrocks28.m2", }, { - fileId = "243679", - text = "ti_dome.m2", - value = "ti_dome.m2", + fileId = "369785", + text = "deepholm_mineralrocks28_top.m2", + value = "deepholm_mineralrocks28_top.m2", }, { - fileId = "243680", - text = "ti_dome02.m2", - value = "ti_dome02.m2", + fileId = "368683", + text = "deepholm_mineralrocks29.m2", + value = "deepholm_mineralrocks29.m2", }, { - fileId = "243681", - text = "ti_domesmall.m2", - value = "ti_domesmall.m2", + fileId = "369786", + text = "deepholm_mineralrocks29_top.m2", + value = "deepholm_mineralrocks29_top.m2", }, { - fileId = "243684", - text = "ti_dragon_roar_01.m2", - value = "ti_dragon_roar_01.m2", + fileId = "368684", + text = "deepholm_mineralrocks30.m2", + value = "deepholm_mineralrocks30.m2", }, { - fileId = "243685", - text = "ti_dragon_sit_01.m2", - value = "ti_dragon_sit_01.m2", + fileId = "369787", + text = "deepholm_mineralrocks30_top.m2", + value = "deepholm_mineralrocks30_top.m2", }, { - fileId = "195209", - text = "ti_elevatedroad01.m2", - value = "ti_elevatedroad01.m2", + fileId = "368685", + text = "deepholm_mineralrocks31.m2", + value = "deepholm_mineralrocks31.m2", }, { - fileId = "195210", - text = "ti_elevatedroadend01.m2", - value = "ti_elevatedroadend01.m2", + fileId = "386261", + text = "deepholm_mineralrocks31_broken.m2", + value = "deepholm_mineralrocks31_broken.m2", }, { - fileId = "195211", - text = "ti_fieldgenerator_01.m2", - value = "ti_fieldgenerator_01.m2", + fileId = "370673", + text = "deepholm_mineralrocks32.m2", + value = "deepholm_mineralrocks32.m2", }, { - fileId = "195212", - text = "ti_fieldgenerator_02.m2", - value = "ti_fieldgenerator_02.m2", + fileId = "386427", + text = "deepholm_mineralrocks33.m2", + value = "deepholm_mineralrocks33.m2", }, + }, + text = "minerals", + value = "minerals", + }, + { + children = { { - fileId = "195213", - text = "ti_fieldgenerator_03.m2", - value = "ti_fieldgenerator_03.m2", + fileId = "366699", + text = "deepholm_moltensphere01.m2", + value = "deepholm_moltensphere01.m2", }, + }, + text = "moltensphere", + value = "moltensphere", + }, + { + children = { { - fileId = "195214", - text = "ti_fieldgenerator_04.m2", - value = "ti_fieldgenerator_04.m2", + fileId = "358385", + text = "deepholm_small_moth_01.m2", + value = "deepholm_small_moth_01.m2", }, + }, + text = "moths", + value = "moths", + }, + { + children = { { - fileId = "195215", - text = "ti_fieldgenerator_05.m2", - value = "ti_fieldgenerator_05.m2", + fileId = "395050", + text = "deepholm_mossymushroom01.m2", + value = "deepholm_mossymushroom01.m2", }, { - fileId = "195218", - text = "ti_largewall01.m2", - value = "ti_largewall01.m2", + fileId = "395051", + text = "deepholm_mossymushroom02.m2", + value = "deepholm_mossymushroom02.m2", }, { - fileId = "195219", - text = "ti_largewall01_end.m2", - value = "ti_largewall01_end.m2", + fileId = "367093", + text = "deepholm_mushroomgroup01.m2", + value = "deepholm_mushroomgroup01.m2", }, { - fileId = "243686", - text = "ti_lowwall01.m2", - value = "ti_lowwall01.m2", + fileId = "367094", + text = "deepholm_mushroomgroup02.m2", + value = "deepholm_mushroomgroup02.m2", }, { - fileId = "243687", - text = "ti_lowwall02.m2", - value = "ti_lowwall02.m2", + fileId = "367303", + text = "deepholm_mushroomgroup03.m2", + value = "deepholm_mushroomgroup03.m2", }, { - fileId = "243688", - text = "ti_maintower.m2", - value = "ti_maintower.m2", + fileId = "367306", + text = "deepholm_mushroomgroup04.m2", + value = "deepholm_mushroomgroup04.m2", }, { - fileId = "243689", - text = "ti_maintower02.m2", - value = "ti_maintower02.m2", + fileId = "367355", + text = "deepholm_mushroomgroup05.m2", + value = "deepholm_mushroomgroup05.m2", }, { - fileId = "243690", - text = "ti_mid01.m2", - value = "ti_mid01.m2", + fileId = "367356", + text = "deepholm_mushroomgroup06.m2", + value = "deepholm_mushroomgroup06.m2", }, { - fileId = "243691", - text = "ti_mid02.m2", - value = "ti_mid02.m2", + fileId = "367357", + text = "deepholm_mushrooms01.m2", + value = "deepholm_mushrooms01.m2", }, { - fileId = "243692", - text = "ti_mid03.m2", - value = "ti_mid03.m2", + fileId = "367358", + text = "deepholm_mushrooms02.m2", + value = "deepholm_mushrooms02.m2", }, { - fileId = "243693", - text = "ti_mid04.m2", - value = "ti_mid04.m2", + fileId = "367359", + text = "deepholm_mushrooms03.m2", + value = "deepholm_mushrooms03.m2", }, { - fileId = "243694", - text = "ti_mid05.m2", - value = "ti_mid05.m2", + fileId = "367360", + text = "deepholm_mushrooms04.m2", + value = "deepholm_mushrooms04.m2", }, { - fileId = "243695", - text = "ti_mid06.m2", - value = "ti_mid06.m2", + fileId = "367361", + text = "deepholm_mushrooms05.m2", + value = "deepholm_mushrooms05.m2", }, { - fileId = "195220", - text = "ti_mountainbridge01.m2", - value = "ti_mountainbridge01.m2", + fileId = "367362", + text = "deepholm_mushrooms06.m2", + value = "deepholm_mushrooms06.m2", }, { - fileId = "195221", - text = "ti_mountainbridge02.m2", - value = "ti_mountainbridge02.m2", + fileId = "367363", + text = "deepholm_mushrooms07.m2", + value = "deepholm_mushrooms07.m2", }, { - fileId = "195222", - text = "ti_mountainbridge03.m2", - value = "ti_mountainbridge03.m2", + fileId = "367364", + text = "deepholm_mushrooms08.m2", + value = "deepholm_mushrooms08.m2", }, { - fileId = "195223", - text = "ti_mountainstairs01.m2", - value = "ti_mountainstairs01.m2", + fileId = "367365", + text = "deepholm_mushrooms09.m2", + value = "deepholm_mushrooms09.m2", }, { - fileId = "195224", - text = "ti_obelisk01.m2", - value = "ti_obelisk01.m2", + fileId = "367366", + text = "deepholm_mushrooms10.m2", + value = "deepholm_mushrooms10.m2", }, { - fileId = "243696", - text = "ti_pillar01.m2", - value = "ti_pillar01.m2", + fileId = "367649", + text = "deepholm_skinnyshroom01.m2", + value = "deepholm_skinnyshroom01.m2", }, { - fileId = "243697", - text = "ti_pillar02.m2", - value = "ti_pillar02.m2", + fileId = "367650", + text = "deepholm_skinnyshroom02.m2", + value = "deepholm_skinnyshroom02.m2", }, { - fileId = "243698", - text = "ti_pillar04.m2", - value = "ti_pillar04.m2", + fileId = "367729", + text = "deepholm_skinnyshroom03.m2", + value = "deepholm_skinnyshroom03.m2", }, { - fileId = "243699", - text = "ti_resurrection_off_01.m2", - value = "ti_resurrection_off_01.m2", + fileId = "367730", + text = "deepholm_skinnyshroom04.m2", + value = "deepholm_skinnyshroom04.m2", }, { - fileId = "243700", - text = "ti_resurrection_on_01.m2", - value = "ti_resurrection_on_01.m2", + fileId = "367733", + text = "deepholm_skinnyshroom05.m2", + value = "deepholm_skinnyshroom05.m2", }, { - fileId = "195228", - text = "ti_roadbroken01.m2", - value = "ti_roadbroken01.m2", + fileId = "378611", + text = "deepholm_skinnyshroom05_silver.m2", + value = "deepholm_skinnyshroom05_silver.m2", }, { - fileId = "195229", - text = "ti_roadbroken02.m2", - value = "ti_roadbroken02.m2", + fileId = "367734", + text = "deepholm_skinnyshroom06.m2", + value = "deepholm_skinnyshroom06.m2", }, { - fileId = "195230", - text = "ti_roadcolumn01.m2", - value = "ti_roadcolumn01.m2", + fileId = "378612", + text = "deepholm_skinnyshroom06_silver.m2", + value = "deepholm_skinnyshroom06_silver.m2", }, { - fileId = "195231", - text = "ti_roadcolumn02.m2", - value = "ti_roadcolumn02.m2", + fileId = "367735", + text = "deepholm_skinnyshroom07.m2", + value = "deepholm_skinnyshroom07.m2", }, { - fileId = "195232", - text = "ti_roadcolumn03.m2", - value = "ti_roadcolumn03.m2", + fileId = "378613", + text = "deepholm_skinnyshroom07_silver.m2", + value = "deepholm_skinnyshroom07_silver.m2", }, { - fileId = "195233", - text = "ti_roadcolumnarchpiece.m2", - value = "ti_roadcolumnarchpiece.m2", + fileId = "367736", + text = "deepholm_skinnyshroom08.m2", + value = "deepholm_skinnyshroom08.m2", }, { - fileId = "195234", - text = "ti_roadcolumnbroken.m2", - value = "ti_roadcolumnbroken.m2", + fileId = "378614", + text = "deepholm_skinnyshroom08_silver.m2", + value = "deepholm_skinnyshroom08_silver.m2", }, { - fileId = "195235", - text = "ti_roadcolumnpiece.m2", - value = "ti_roadcolumnpiece.m2", + fileId = "367737", + text = "deepholm_skinnyshroomgroup01.m2", + value = "deepholm_skinnyshroomgroup01.m2", }, { - fileId = "195237", - text = "ti_roadcurbbroken01.m2", - value = "ti_roadcurbbroken01.m2", + fileId = "367738", + text = "deepholm_skinnyshroomgroup02.m2", + value = "deepholm_skinnyshroomgroup02.m2", }, { - fileId = "195238", - text = "ti_roadcurblong01.m2", - value = "ti_roadcurblong01.m2", + fileId = "367739", + text = "deepholm_skinnyshroomgroup03.m2", + value = "deepholm_skinnyshroomgroup03.m2", }, { - fileId = "195239", - text = "ti_roadcurblong02.m2", - value = "ti_roadcurblong02.m2", + fileId = "367740", + text = "deepholm_skinnyshroomgroup04.m2", + value = "deepholm_skinnyshroomgroup04.m2", }, { - fileId = "195240", - text = "ti_roadcurbnub01.m2", - value = "ti_roadcurbnub01.m2", + fileId = "378615", + text = "deepholm_skinnyshroomgroup04_silver.m2", + value = "deepholm_skinnyshroomgroup04_silver.m2", }, { - fileId = "195241", - text = "ti_roadcurbshort01.m2", - value = "ti_roadcurbshort01.m2", + fileId = "367741", + text = "deepholm_skinnyshroomgroup05.m2", + value = "deepholm_skinnyshroomgroup05.m2", }, { - fileId = "195242", - text = "ti_roadcurbshort02.m2", - value = "ti_roadcurbshort02.m2", + fileId = "378616", + text = "deepholm_skinnyshroomgroup05_silver.m2", + value = "deepholm_skinnyshroomgroup05_silver.m2", }, { - fileId = "195243", - text = "ti_roadpiece01.m2", - value = "ti_roadpiece01.m2", + fileId = "367742", + text = "deepholm_skinnyshroomgroup06.m2", + value = "deepholm_skinnyshroomgroup06.m2", }, { - fileId = "195244", - text = "ti_roadpiece02.m2", - value = "ti_roadpiece02.m2", + fileId = "378617", + text = "deepholm_skinnyshroomgroup06_silver.m2", + value = "deepholm_skinnyshroomgroup06_silver.m2", }, + }, + text = "mushrooms", + value = "mushrooms", + }, + { + children = { { - fileId = "195245", - text = "ti_roadpiece03.m2", - value = "ti_roadpiece03.m2", + fileId = "395299", + text = "deepholm_duststreak_rock01.m2", + value = "deepholm_duststreak_rock01.m2", }, { - fileId = "251464", - text = "ti_roadpiece04.m2", - value = "ti_roadpiece04.m2", + fileId = "394628", + text = "deepholm_floatingrock04_angle.m2", + value = "deepholm_floatingrock04_angle.m2", }, { - fileId = "252767", - text = "ti_roadpiece05.m2", - value = "ti_roadpiece05.m2", + fileId = "394629", + text = "deepholm_floatingrock05_angle.m2", + value = "deepholm_floatingrock05_angle.m2", }, { - fileId = "252841", - text = "ti_roadpiece06.m2", - value = "ti_roadpiece06.m2", + fileId = "394630", + text = "deepholm_floatingrock06_angle.m2", + value = "deepholm_floatingrock06_angle.m2", }, { - fileId = "252842", - text = "ti_roadpiece07.m2", - value = "ti_roadpiece07.m2", + fileId = "386432", + text = "deepholm_floatingrocks04.m2", + value = "deepholm_floatingrocks04.m2", }, { - fileId = "252843", - text = "ti_roadpiece08.m2", - value = "ti_roadpiece08.m2", + fileId = "386525", + text = "deepholm_floatingrocks05.m2", + value = "deepholm_floatingrocks05.m2", }, { - fileId = "195246", - text = "ti_roadsolid01.m2", - value = "ti_roadsolid01.m2", + fileId = "386650", + text = "deepholm_floatingrocks07.m2", + value = "deepholm_floatingrocks07.m2", }, { - fileId = "195247", - text = "ti_roadwall01.m2", - value = "ti_roadwall01.m2", + fileId = "386884", + text = "deepholm_floatingrocks08.m2", + value = "deepholm_floatingrocks08.m2", }, { - fileId = "195248", - text = "ti_roadwall02.m2", - value = "ti_roadwall02.m2", + fileId = "386885", + text = "deepholm_floatingrocks09.m2", + value = "deepholm_floatingrocks09.m2", }, { - fileId = "195249", - text = "ti_roadwall03.m2", - value = "ti_roadwall03.m2", + fileId = "371174", + text = "deepholm_floatingsmall01.m2", + value = "deepholm_floatingsmall01.m2", }, { - fileId = "243701", - text = "ti_roof01.m2", - value = "ti_roof01.m2", + fileId = "371175", + text = "deepholm_floatingsmall02.m2", + value = "deepholm_floatingsmall02.m2", }, { - fileId = "243702", - text = "ti_shrine_01.m2", - value = "ti_shrine_01.m2", + fileId = "371176", + text = "deepholm_floatingsmall02_blue.m2", + value = "deepholm_floatingsmall02_blue.m2", }, { - fileId = "243703", - text = "ti_singlepillar.m2", - value = "ti_singlepillar.m2", + fileId = "371177", + text = "deepholm_floatingsmall02_chalk.m2", + value = "deepholm_floatingsmall02_chalk.m2", }, { - fileId = "195251", - text = "ti_smallwall01.m2", - value = "ti_smallwall01.m2", + fileId = "371178", + text = "deepholm_floatingsmall02_green.m2", + value = "deepholm_floatingsmall02_green.m2", }, { - fileId = "195252", - text = "ti_smallwall01_end.m2", - value = "ti_smallwall01_end.m2", + fileId = "371179", + text = "deepholm_floatingsmall02_orange.m2", + value = "deepholm_floatingsmall02_orange.m2", }, { - fileId = "195253", - text = "ti_smallwall02.m2", - value = "ti_smallwall02.m2", + fileId = "371180", + text = "deepholm_floatingsmall02_red.m2", + value = "deepholm_floatingsmall02_red.m2", }, { - fileId = "195254", - text = "ti_smallwall02_end.m2", - value = "ti_smallwall02_end.m2", + fileId = "371181", + text = "deepholm_floatingsmall02_silver.m2", + value = "deepholm_floatingsmall02_silver.m2", }, { - fileId = "243704", - text = "ti_spinningpiece01.m2", - value = "ti_spinningpiece01.m2", + fileId = "371402", + text = "deepholm_floatingsmall03_blue.m2", + value = "deepholm_floatingsmall03_blue.m2", }, { - fileId = "243705", - text = "ti_stair.m2", - value = "ti_stair.m2", + fileId = "371403", + text = "deepholm_floatingsmall03_chalk.m2", + value = "deepholm_floatingsmall03_chalk.m2", }, { - fileId = "243706", - text = "ti_stair02.m2", - value = "ti_stair02.m2", + fileId = "371404", + text = "deepholm_floatingsmall03_green.m2", + value = "deepholm_floatingsmall03_green.m2", }, { - fileId = "243707", - text = "ti_tallwall01.m2", - value = "ti_tallwall01.m2", + fileId = "371406", + text = "deepholm_floatingsmall03_orange.m2", + value = "deepholm_floatingsmall03_orange.m2", }, { - fileId = "243708", - text = "ti_tallwall02.m2", - value = "ti_tallwall02.m2", + fileId = "371407", + text = "deepholm_floatingsmall03_red.m2", + value = "deepholm_floatingsmall03_red.m2", }, { - fileId = "243709", - text = "ti_tallwallcurve.m2", - value = "ti_tallwallcurve.m2", + fileId = "371409", + text = "deepholm_floatingsmall03_silver.m2", + value = "deepholm_floatingsmall03_silver.m2", }, { - fileId = "243710", - text = "ti_tallwallpillar.m2", - value = "ti_tallwallpillar.m2", + fileId = "381936", + text = "deepholm_pulsingrocklight01_green.m2", + value = "deepholm_pulsingrocklight01_green.m2", }, { - fileId = "243711", - text = "ti_top01.m2", - value = "ti_top01.m2", + fileId = "381937", + text = "deepholm_pulsingrocklight01_red.m2", + value = "deepholm_pulsingrocklight01_red.m2", }, { - fileId = "243712", - text = "ti_top02.m2", - value = "ti_top02.m2", + fileId = "353148", + text = "deepholm_rock01.m2", + value = "deepholm_rock01.m2", }, { - fileId = "243713", - text = "ti_top03.m2", - value = "ti_top03.m2", + fileId = "357303", + text = "deepholm_rock01_chalk.m2", + value = "deepholm_rock01_chalk.m2", }, { - fileId = "195256", - text = "ti_tower_part01.m2", - value = "ti_tower_part01.m2", + fileId = "353149", + text = "deepholm_rock02.m2", + value = "deepholm_rock02.m2", }, { - fileId = "195257", - text = "ti_tower_part02.m2", - value = "ti_tower_part02.m2", + fileId = "357304", + text = "deepholm_rock02_chalk.m2", + value = "deepholm_rock02_chalk.m2", }, { - fileId = "195258", - text = "ti_tower_part03.m2", - value = "ti_tower_part03.m2", + fileId = "353150", + text = "deepholm_rock03.m2", + value = "deepholm_rock03.m2", }, { - fileId = "195259", - text = "ti_tower_part04.m2", - value = "ti_tower_part04.m2", + fileId = "357305", + text = "deepholm_rock03_chalk.m2", + value = "deepholm_rock03_chalk.m2", }, { - fileId = "195260", - text = "ti_tower_part05.m2", - value = "ti_tower_part05.m2", + fileId = "353655", + text = "deepholm_rock04.m2", + value = "deepholm_rock04.m2", }, { - fileId = "195261", - text = "ti_tower_part06.m2", - value = "ti_tower_part06.m2", + fileId = "357306", + text = "deepholm_rock04_chalk.m2", + value = "deepholm_rock04_chalk.m2", }, { - fileId = "243714", - text = "ti_triangleroof01.m2", - value = "ti_triangleroof01.m2", + fileId = "356953", + text = "deepholm_rockgeode01.m2", + value = "deepholm_rockgeode01.m2", }, { - fileId = "243715", - text = "ti_triangleroof02.m2", - value = "ti_triangleroof02.m2", + fileId = "356954", + text = "deepholm_rockgeode02.m2", + value = "deepholm_rockgeode02.m2", }, { - fileId = "243716", - text = "ti_trim01.m2", - value = "ti_trim01.m2", + fileId = "356955", + text = "deepholm_rockgeode03.m2", + value = "deepholm_rockgeode03.m2", }, { - fileId = "243717", - text = "ti_trim02.m2", - value = "ti_trim02.m2", + fileId = "357862", + text = "deepholm_rockgeode04.m2", + value = "deepholm_rockgeode04.m2", }, { - fileId = "243718", - text = "ti_trim03.m2", - value = "ti_trim03.m2", + fileId = "357863", + text = "deepholm_rockgeode05.m2", + value = "deepholm_rockgeode05.m2", }, { - fileId = "243719", - text = "ti_trim04.m2", - value = "ti_trim04.m2", + fileId = "357864", + text = "deepholm_rockgeode06.m2", + value = "deepholm_rockgeode06.m2", }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { { - fileId = "243720", - text = "ti_trim05.m2", - value = "ti_trim05.m2", + fileId = "366708", + text = "deepholm_scaffold_01.m2", + value = "deepholm_scaffold_01.m2", }, { - fileId = "243721", - text = "ti_trim06.m2", - value = "ti_trim06.m2", + fileId = "366710", + text = "deepholm_scaffold_02.m2", + value = "deepholm_scaffold_02.m2", }, { - fileId = "243722", - text = "ti_walloval01.m2", - value = "ti_walloval01.m2", + fileId = "369301", + text = "deepholm_scaffold_03.m2", + value = "deepholm_scaffold_03.m2", }, { - fileId = "243723", - text = "ti_walloval02.m2", - value = "ti_walloval02.m2", + fileId = "366711", + text = "deepholm_scaffold_corner_01.m2", + value = "deepholm_scaffold_corner_01.m2", }, { - fileId = "243724", - text = "ti_walloval03.m2", - value = "ti_walloval03.m2", + fileId = "366712", + text = "deepholm_scaffold_corner_02.m2", + value = "deepholm_scaffold_corner_02.m2", }, { - fileId = "195263", - text = "ti_waygate_01.m2", - value = "ti_waygate_01.m2", + fileId = "369302", + text = "deepholm_scaffold_corner_03.m2", + value = "deepholm_scaffold_corner_03.m2", }, + }, + text = "scaffolding", + value = "scaffolding", + }, + { + children = { { - fileId = "243725", - text = "ti_weathergenerator.m2", - value = "ti_weathergenerator.m2", + fileId = "364959", + text = "deepholm_shellspike_01.m2", + value = "deepholm_shellspike_01.m2", }, { - fileId = "243726", - text = "ti_weathergenerator_broken.m2", - value = "ti_weathergenerator_broken.m2", + fileId = "364960", + text = "deepholm_shellspike_02.m2", + value = "deepholm_shellspike_02.m2", }, }, - text = "titan", - value = "titan", + text = "shellspikes", + value = "shellspikes", }, { children = { { - children = { - { - fileId = "195269", - text = "ts_crabbasket_01.m2", - value = "ts_crabbasket_01.m2", - }, - { - fileId = "195270", - text = "ts_fishingbasket_01.m2", - value = "ts_fishingbasket_01.m2", - }, - }, - text = "crate", - value = "crate", + fileId = "381938", + text = "deepholm_sparkles01.m2", + value = "deepholm_sparkles01.m2", }, + }, + text = "sparkles", + value = "sparkles", + }, + { + children = { { - children = { - { - fileId = "195274", - text = "ts_dock_01.m2", - value = "ts_dock_01.m2", - }, - }, - text = "dock", - value = "dock", + fileId = "366779", + text = "deepholm_spike_large_01.m2", + value = "deepholm_spike_large_01.m2", }, + }, + text = "spikes", + value = "spikes", + }, + { + children = { { - children = { - { - fileId = "195278", - text = "ts_fishingpole_01.m2", - value = "ts_fishingpole_01.m2", - }, - }, - text = "fishing", - value = "fishing", + fileId = "360665", + text = "deepholm_stalagmite01.m2", + value = "deepholm_stalagmite01.m2", }, { - children = { - { - fileId = "195286", - text = "ts_fishlight.m2", - value = "ts_fishlight.m2", - }, - }, - text = "fishlamp", - value = "fishlamp", + fileId = "360666", + text = "deepholm_stalagmite02.m2", + value = "deepholm_stalagmite02.m2", }, { - children = { - { - fileId = "195290", - text = "ts_log_pile_01.m2", - value = "ts_log_pile_01.m2", - }, - { - fileId = "195292", - text = "ts_log_pile_snowed_01.m2", - value = "ts_log_pile_snowed_01.m2", - }, - }, - text = "logs", - value = "logs", + fileId = "360667", + text = "deepholm_stalagmite03.m2", + value = "deepholm_stalagmite03.m2", }, + }, + text = "stalagmites", + value = "stalagmites", + }, + { + children = { { - children = { - { - fileId = "195293", - text = "ts_fence01.m2", - value = "ts_fence01.m2", - }, - { - fileId = "195294", - text = "ts_fence02.m2", - value = "ts_fence02.m2", - }, - { - fileId = "195295", - text = "ts_light02.m2", - value = "ts_light02.m2", - }, - { - fileId = "195297", - text = "ts_tarp_01.m2", - value = "ts_tarp_01.m2", - }, - { - fileId = "195299", - text = "ts_tarp_02.m2", - value = "ts_tarp_02.m2", - }, - }, - text = "misc", - value = "misc", + fileId = "442065", + text = "deepholm_stalagtite01.m2", + value = "deepholm_stalagtite01.m2", }, { - fileId = "195304", - text = "ts_long_table_02.m2", - value = "ts_long_table_02.m2", + fileId = "442066", + text = "deepholm_stalagtite02.m2", + value = "deepholm_stalagtite02.m2", }, }, - text = "tuskar", - value = "tuskar", + text = "stalagtites", + value = "stalagtites", + }, + { + fileId = "451105", + text = "stonecore_altar.m2", + value = "stonecore_altar.m2", }, { children = { { - children = { - { - fileId = "195306", - text = "ts_banner_01.m2", - value = "ts_banner_01.m2", - }, - }, - text = "banner", - value = "banner", + fileId = "358937", + text = "deepholm_striations01.m2", + value = "deepholm_striations01.m2", }, { - children = { - { - fileId = "195307", - text = "ts_chair_01.m2", - value = "ts_chair_01.m2", - }, - }, - text = "chairs", - value = "chairs", + fileId = "358938", + text = "deepholm_striations02.m2", + value = "deepholm_striations02.m2", }, { - children = { - { - fileId = "195309", - text = "ts_crabbasket_empty01.m2", - value = "ts_crabbasket_empty01.m2", - }, - { - fileId = "195310", - text = "ts_fishingbasket_empty_02.m2", - value = "ts_fishingbasket_empty_02.m2", - }, - { - fileId = "195311", - text = "ts_fishingline_01.m2", - value = "ts_fishingline_01.m2", - }, - }, - text = "fishing", - value = "fishing", + fileId = "359124", + text = "deepholm_striations03.m2", + value = "deepholm_striations03.m2", }, { - children = { - { - fileId = "195314", - text = "ts_anvil_01.m2", - value = "ts_anvil_01.m2", - }, - { - fileId = "195316", - text = "ts_forge_01.m2", - value = "ts_forge_01.m2", - }, - }, - text = "forge", - value = "forge", + fileId = "359125", + text = "deepholm_striations04.m2", + value = "deepholm_striations04.m2", + }, + }, + text = "striations", + value = "striations", + }, + { + fileId = "464831", + text = "therazane_crystal_01.m2", + value = "therazane_crystal_01.m2", + }, + { + fileId = "464832", + text = "therazane_crystal_02.m2", + value = "therazane_crystal_02.m2", + }, + { + fileId = "464833", + text = "therazane_crystal_03.m2", + value = "therazane_crystal_03.m2", + }, + { + fileId = "464834", + text = "therazane_crystal_04.m2", + value = "therazane_crystal_04.m2", + }, + { + fileId = "464835", + text = "therazane_crystal_05.m2", + value = "therazane_crystal_05.m2", + }, + { + children = { + { + fileId = "355762", + text = "deepholm_windtunnelpillar01.m2", + value = "deepholm_windtunnelpillar01.m2", }, { - children = { - { - fileId = "195317", - text = "ts_giantnet01.m2", - value = "ts_giantnet01.m2", - }, - { - fileId = "195318", - text = "ts_giantnet01destroyed.m2", - value = "ts_giantnet01destroyed.m2", - }, - { - fileId = "195319", - text = "ts_giantnet02.m2", - value = "ts_giantnet02.m2", - }, - { - fileId = "195320", - text = "ts_giantnet02destroyed.m2", - value = "ts_giantnet02destroyed.m2", - }, - }, - text = "giantnets", - value = "giantnets", + fileId = "355763", + text = "deepholm_windtunnelpillar02.m2", + value = "deepholm_windtunnelpillar02.m2", }, { - children = { - { - fileId = "195324", - text = "ts_incenseburner_01.m2", - value = "ts_incenseburner_01.m2", - }, - }, - text = "incenseburner", - value = "incenseburner", + fileId = "387331", + text = "deepholm_windtunnelstriations01.m2", + value = "deepholm_windtunnelstriations01.m2", }, + }, + text = "windtunnel", + value = "windtunnel", + }, + }, + text = "deepholm", + value = "deepholm", + }, + { + children = { + { + children = { { - children = { - { - fileId = "195326", - text = "ts_kite_01.m2", - value = "ts_kite_01.m2", - }, - }, - text = "kites", - value = "kites", + fileId = "305370", + text = "desolace_druidbranch_large01.m2", + value = "desolace_druidbranch_large01.m2", }, { - children = { - { - fileId = "195329", - text = "ts_lantern01.m2", - value = "ts_lantern01.m2", - }, - { - fileId = "195330", - text = "ts_light.m2", - value = "ts_light.m2", - }, - { - fileId = "195331", - text = "ts_lighthanging.m2", - value = "ts_lighthanging.m2", - }, - { - fileId = "195332", - text = "ts_lightpole.m2", - value = "ts_lightpole.m2", - }, - }, - text = "lights", - value = "lights", + fileId = "305371", + text = "desolace_druidbranch_small01.m2", + value = "desolace_druidbranch_small01.m2", }, { - children = { - { - fileId = "195338", - text = "ts_logroller_01.m2", - value = "ts_logroller_01.m2", - }, - }, - text = "logs", - value = "logs", + fileId = "305422", + text = "desolace_druidroot_01.m2", + value = "desolace_druidroot_01.m2", }, { - children = { - { - fileId = "195340", - text = "ts_mailbox_01.m2", - value = "ts_mailbox_01.m2", - }, - }, - text = "mailbox", - value = "mailbox", + fileId = "305424", + text = "desolace_druidroot_02.m2", + value = "desolace_druidroot_02.m2", }, { - children = { - { - fileId = "195342", - text = "ts_long_table_01.m2", - value = "ts_long_table_01.m2", - }, - { - fileId = "195343", - text = "ts_shorttable_01.m2", - value = "ts_shorttable_01.m2", - }, - }, - text = "tables", - value = "tables", + fileId = "305425", + text = "desolace_druidroot_03.m2", + value = "desolace_druidroot_03.m2", }, { - children = { - { - fileId = "195344", - text = "nd_tuskarrwhale.m2", - value = "nd_tuskarrwhale.m2", - }, - }, - text = "tempfootprints", - value = "tempfootprints", + fileId = "305373", + text = "desolace_druidtree_01.m2", + value = "desolace_druidtree_01.m2", }, { - fileId = "195346", - text = "ts_boat_01.m2", - value = "ts_boat_01.m2", + fileId = "305402", + text = "desolace_druidtree_02.m2", + value = "desolace_druidtree_02.m2", }, { - fileId = "195347", - text = "ts_boat_02.m2", - value = "ts_boat_02.m2", + fileId = "305403", + text = "desolace_druidtree_03.m2", + value = "desolace_druidtree_03.m2", }, + }, + text = "desolacetrees", + value = "desolacetrees", + }, + }, + text = "desolace", + value = "desolace", + }, + { + children = { + { + fileId = "533339", + text = "db_icewalldoor_01.m2", + value = "db_icewalldoor_01.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + children = { { - fileId = "195349", - text = "ts_chair_broken01.m2", - value = "ts_chair_broken01.m2", + fileId = "412277", + text = "dragonmaw_banner01.m2", + value = "dragonmaw_banner01.m2", }, { - fileId = "195350", - text = "ts_crabbasket_broken.m2", - value = "ts_crabbasket_broken.m2", + fileId = "412279", + text = "dragonmaw_banner02.m2", + value = "dragonmaw_banner02.m2", }, + }, + text = "banners", + value = "banners", + }, + { + children = { { - fileId = "195351", - text = "ts_dock_01_destroyed.m2", - value = "ts_dock_01_destroyed.m2", + fileId = "412607", + text = "dragonmaw_dragonbutchered_01.m2", + value = "dragonmaw_dragonbutchered_01.m2", }, { - fileId = "195352", - text = "ts_fishingbasket_broken02.m2", - value = "ts_fishingbasket_broken02.m2", + fileId = "413487", + text = "dragonmaw_dragonbutchered_02.m2", + value = "dragonmaw_dragonbutchered_02.m2", }, { - fileId = "195353", - text = "ts_fishinghook_broken.m2", - value = "ts_fishinghook_broken.m2", + fileId = "413488", + text = "dragonmaw_dragonbutchered_03.m2", + value = "dragonmaw_dragonbutchered_03.m2", }, { - fileId = "195354", - text = "ts_fishinghook_hook.m2", - value = "ts_fishinghook_hook.m2", + fileId = "413489", + text = "dragonmaw_dragonbutchered_04.m2", + value = "dragonmaw_dragonbutchered_04.m2", + }, + }, + text = "dragonbutchered", + value = "dragonbutchered", + }, + { + fileId = "465184", + text = "dragonmaw_barrel_04.m2", + value = "dragonmaw_barrel_04.m2", + }, + { + fileId = "465185", + text = "dragonmaw_crate_01.m2", + value = "dragonmaw_crate_01.m2", + }, + { + fileId = "465186", + text = "dragonmaw_crate_02.m2", + value = "dragonmaw_crate_02.m2", + }, + { + fileId = "465187", + text = "dragonmaw_crate_07.m2", + value = "dragonmaw_crate_07.m2", + }, + { + fileId = "465188", + text = "dragonmaw_crate_09.m2", + value = "dragonmaw_crate_09.m2", + }, + { + fileId = "465189", + text = "dragonmaw_crate_10.m2", + value = "dragonmaw_crate_10.m2", + }, + { + fileId = "412262", + text = "dragonmaw_orctent01.m2", + value = "dragonmaw_orctent01.m2", + }, + { + fileId = "412263", + text = "dragonmaw_orcwagon01.m2", + value = "dragonmaw_orcwagon01.m2", + }, + { + fileId = "412264", + text = "dragonmaw_orcwagon02.m2", + value = "dragonmaw_orcwagon02.m2", + }, + { + fileId = "412265", + text = "dragonmaw_orcwagon05.m2", + value = "dragonmaw_orcwagon05.m2", + }, + { + fileId = "412056", + text = "dragonmaw_outpost01.m2", + value = "dragonmaw_outpost01.m2", + }, + { + fileId = "412058", + text = "dragonmaw_outpost01_a.m2", + value = "dragonmaw_outpost01_a.m2", + }, + { + fileId = "441881", + text = "dragonmaw_outpost01_b.m2", + value = "dragonmaw_outpost01_b.m2", + }, + { + fileId = "412060", + text = "dragonmaw_outpost02.m2", + value = "dragonmaw_outpost02.m2", + }, + { + fileId = "412061", + text = "dragonmaw_outpost02_a.m2", + value = "dragonmaw_outpost02_a.m2", + }, + { + fileId = "412062", + text = "dragonmaw_outpost03.m2", + value = "dragonmaw_outpost03.m2", + }, + { + fileId = "412063", + text = "dragonmaw_outpost03_a.m2", + value = "dragonmaw_outpost03_a.m2", + }, + { + fileId = "412064", + text = "dragonmaw_outpost04.m2", + value = "dragonmaw_outpost04.m2", + }, + { + fileId = "412065", + text = "dragonmaw_outpost05.m2", + value = "dragonmaw_outpost05.m2", + }, + { + fileId = "412066", + text = "dragonmaw_outpost06.m2", + value = "dragonmaw_outpost06.m2", + }, + { + fileId = "412068", + text = "dragonmaw_outpost07.m2", + value = "dragonmaw_outpost07.m2", + }, + { + fileId = "412069", + text = "dragonmaw_outpost07_a.m2", + value = "dragonmaw_outpost07_a.m2", + }, + { + fileId = "412070", + text = "dragonmaw_outpost08.m2", + value = "dragonmaw_outpost08.m2", + }, + { + fileId = "412071", + text = "dragonmaw_outpost08_a.m2", + value = "dragonmaw_outpost08_a.m2", + }, + { + fileId = "465170", + text = "dragonmaw_supplies_01.m2", + value = "dragonmaw_supplies_01.m2", + }, + { + fileId = "465173", + text = "dragonmaw_supplies_02.m2", + value = "dragonmaw_supplies_02.m2", + }, + { + fileId = "465190", + text = "dragonmaw_supplies_03.m2", + value = "dragonmaw_supplies_03.m2", + }, + { + fileId = "406340", + text = "dragonmaw_swampboat01.m2", + value = "dragonmaw_swampboat01.m2", + }, + { + children = { + { + fileId = "413491", + text = "dragonmaw_trophyframe01.m2", + value = "dragonmaw_trophyframe01.m2", }, { - fileId = "195356", - text = "ts_idols_01.m2", - value = "ts_idols_01.m2", + fileId = "413492", + text = "dragonmaw_trophyframe02.m2", + value = "dragonmaw_trophyframe02.m2", }, { - fileId = "195357", - text = "ts_idols_02.m2", - value = "ts_idols_02.m2", + fileId = "412281", + text = "dragonmaw_trophypole01.m2", + value = "dragonmaw_trophypole01.m2", }, { - fileId = "195358", - text = "ts_light_broken02.m2", - value = "ts_light_broken02.m2", + fileId = "412284", + text = "dragonmaw_trophypole02.m2", + value = "dragonmaw_trophypole02.m2", }, { - fileId = "195359", - text = "ts_lighthanging02.m2", - value = "ts_lighthanging02.m2", + fileId = "412285", + text = "dragonmaw_trophypole03.m2", + value = "dragonmaw_trophypole03.m2", }, { - fileId = "195360", - text = "ts_lighthanging_broken.m2", - value = "ts_lighthanging_broken.m2", + fileId = "412286", + text = "dragonmaw_trophypole04.m2", + value = "dragonmaw_trophypole04.m2", }, { - fileId = "195361", - text = "ts_lightpole_broken.m2", - value = "ts_lightpole_broken.m2", + fileId = "412287", + text = "dragonmaw_trophypole05.m2", + value = "dragonmaw_trophypole05.m2", }, { - fileId = "195362", - text = "ts_long_table_broken02.m2", - value = "ts_long_table_broken02.m2", + fileId = "412288", + text = "dragonmaw_trophypole06.m2", + value = "dragonmaw_trophypole06.m2", + }, + { + fileId = "412289", + text = "dragonmaw_trophypole07.m2", + value = "dragonmaw_trophypole07.m2", + }, + { + fileId = "412608", + text = "dragonmaw_trophypole08.m2", + value = "dragonmaw_trophypole08.m2", }, { - fileId = "195364", - text = "ts_tarp_broken01.m2", - value = "ts_tarp_broken01.m2", + fileId = "412609", + text = "dragonmaw_trophypole09.m2", + value = "dragonmaw_trophypole09.m2", }, }, - text = "tuskarr", - value = "tuskarr", + text = "trophies", + value = "trophies", }, { children = { { - children = { - { - fileId = "195373", - text = "vr_anvil_cold_01.m2", - value = "vr_anvil_cold_01.m2", - }, - { - fileId = "195374", - text = "vr_anvil_glow_01.m2", - value = "vr_anvil_glow_01.m2", - }, - }, - text = "anvil", - value = "anvil", - }, - { - children = { - { - fileId = "195376", - text = "vr_banner_01.m2", - value = "vr_banner_01.m2", - }, - { - fileId = "195378", - text = "vr_banner_02.m2", - value = "vr_banner_02.m2", - }, - { - fileId = "195380", - text = "vr_banner_03.m2", - value = "vr_banner_03.m2", - }, - { - fileId = "195382", - text = "vr_sea_banner_01.m2", - value = "vr_sea_banner_01.m2", - }, - { - fileId = "195383", - text = "vr_wall_banner_01.m2", - value = "vr_wall_banner_01.m2", - }, - { - fileId = "195384", - text = "vr_wall_banner_02.m2", - value = "vr_wall_banner_02.m2", - }, - { - fileId = "195385", - text = "vr_wall_banner_03.m2", - value = "vr_wall_banner_03.m2", - }, - }, - text = "banner", - value = "banner", + fileId = "412291", + text = "dragonmaw_weapon01.m2", + value = "dragonmaw_weapon01.m2", }, { - children = { - { - fileId = "195386", - text = "vr_bed_01.m2", - value = "vr_bed_01.m2", - }, - { - fileId = "195387", - text = "vr_bed_02.m2", - value = "vr_bed_02.m2", - }, - { - fileId = "195388", - text = "vr_wrecked_bed_01.m2", - value = "vr_wrecked_bed_01.m2", - }, - }, - text = "bed", - value = "bed", + fileId = "412292", + text = "dragonmaw_weapon02.m2", + value = "dragonmaw_weapon02.m2", }, { - children = { - { - fileId = "195393", - text = "vr_bellows_01.m2", - value = "vr_bellows_01.m2", - }, - }, - text = "bellows", - value = "bellows", + fileId = "412293", + text = "dragonmaw_weapon03.m2", + value = "dragonmaw_weapon03.m2", }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "dragonmaw", + value = "dragonmaw", + }, + { + children = { + { + children = { { - children = { - { - fileId = "195394", - text = "transport_vrykul_medium_doodad.m2", - value = "transport_vrykul_medium_doodad.m2", - }, - { - fileId = "195395", - text = "transport_vrykul_mediumlight_doodad.m2", - value = "transport_vrykul_mediumlight_doodad.m2", - }, - }, - text = "boats", - value = "boats", + fileId = "390497", + text = "earthen_rock_banner_01.m2", + value = "earthen_rock_banner_01.m2", }, { - children = { - { - fileId = "195397", - text = "vr_bookshelf_large_01.m2", - value = "vr_bookshelf_large_01.m2", - }, - { - fileId = "195398", - text = "vr_bookshelf_small_01.m2", - value = "vr_bookshelf_small_01.m2", - }, - { - fileId = "195399", - text = "vr_bookshelf_wrecked_01.m2", - value = "vr_bookshelf_wrecked_01.m2", - }, - { - fileId = "195400", - text = "vr_bookshelf_wrecked_02.m2", - value = "vr_bookshelf_wrecked_02.m2", - }, - }, - text = "bookshelf", - value = "bookshelf", + fileId = "390498", + text = "earthen_rock_banner_02.m2", + value = "earthen_rock_banner_02.m2", }, { - children = { - { - fileId = "195403", - text = "vr_brazier_01.m2", - value = "vr_brazier_01.m2", - }, - { - fileId = "243733", - text = "vr_brazier_01_blue.m2", - value = "vr_brazier_01_blue.m2", - }, - }, - text = "brazier", - value = "brazier", + fileId = "390784", + text = "earthen_rock_banner_03.m2", + value = "earthen_rock_banner_03.m2", }, + }, + text = "banners", + value = "banners", + }, + { + children = { { - children = { - { - fileId = "195405", - text = "vr_burialmound_01.m2", - value = "vr_burialmound_01.m2", - }, - { - fileId = "195406", - text = "vr_burialmound_02.m2", - value = "vr_burialmound_02.m2", - }, - }, - text = "burialmound", - value = "burialmound", + fileId = "376272", + text = "earthen_building_01.m2", + value = "earthen_building_01.m2", }, { - children = { - { - fileId = "195408", - text = "vr_buttress_01.m2", - value = "vr_buttress_01.m2", - }, - { - fileId = "195410", - text = "vr_buttress_snow01.m2", - value = "vr_buttress_snow01.m2", - }, - }, - text = "buttress", - value = "buttress", + fileId = "376273", + text = "earthen_building_02.m2", + value = "earthen_building_02.m2", }, + }, + text = "buildings", + value = "buildings", + }, + { + fileId = "378545", + text = "earten_crate_01.m2", + value = "earten_crate_01.m2", + }, + { + fileId = "378546", + text = "earten_crate_02.m2", + value = "earten_crate_02.m2", + }, + { + fileId = "378618", + text = "earten_crate_lid_.m2", + value = "earten_crate_lid_.m2", + }, + { + fileId = "390122", + text = "earthen_floor_01.m2", + value = "earthen_floor_01.m2", + }, + { + fileId = "376857", + text = "earthen_light_01.m2", + value = "earthen_light_01.m2", + }, + { + fileId = "376859", + text = "earthen_light_02.m2", + value = "earthen_light_02.m2", + }, + { + fileId = "392517", + text = "earthen_onager_01.m2", + value = "earthen_onager_01.m2", + }, + { + fileId = "412294", + text = "earthen_onager_arm.m2", + value = "earthen_onager_arm.m2", + }, + { + fileId = "412295", + text = "earthen_onager_beam_01.m2", + value = "earthen_onager_beam_01.m2", + }, + { + fileId = "412270", + text = "earthen_onager_beam_02.m2", + value = "earthen_onager_beam_02.m2", + }, + { + fileId = "412271", + text = "earthen_onager_trunk_01.m2", + value = "earthen_onager_trunk_01.m2", + }, + { + fileId = "412272", + text = "earthen_onager_trunk_02.m2", + value = "earthen_onager_trunk_02.m2", + }, + { + fileId = "412268", + text = "earthen_onager_wheel_01.m2", + value = "earthen_onager_wheel_01.m2", + }, + { + fileId = "385018", + text = "earthen_projectile_01.m2", + value = "earthen_projectile_01.m2", + }, + { + fileId = "390124", + text = "earthen_pylon_01.m2", + value = "earthen_pylon_01.m2", + }, + { + fileId = "390126", + text = "earthen_pylon_02.m2", + value = "earthen_pylon_02.m2", + }, + { + fileId = "390127", + text = "earthen_pylon_03.m2", + value = "earthen_pylon_03.m2", + }, + { + fileId = "390128", + text = "earthen_pylon_04.m2", + value = "earthen_pylon_04.m2", + }, + { + fileId = "386581", + text = "earthen_wagon_01.m2", + value = "earthen_wagon_01.m2", + }, + { + children = { { - children = { - { - fileId = "195413", - text = "vr_cage_01.m2", - value = "vr_cage_01.m2", - }, - { - fileId = "195414", - text = "vr_cage_01_snow.m2", - value = "vr_cage_01_snow.m2", - }, - { - fileId = "195415", - text = "vr_cage_02.m2", - value = "vr_cage_02.m2", - }, - { - fileId = "195416", - text = "vr_cage_base.m2", - value = "vr_cage_base.m2", - }, - { - fileId = "195417", - text = "vr_cage_top.m2", - value = "vr_cage_top.m2", - }, - }, - text = "cage", - value = "cage", + fileId = "383255", + text = "earthen_fence_01.m2", + value = "earthen_fence_01.m2", }, { - children = { - { - fileId = "195419", - text = "vr_candle_stand_01.m2", - value = "vr_candle_stand_01.m2", - }, - }, - text = "candles", - value = "candles", + fileId = "383409", + text = "earthen_fence_02.m2", + value = "earthen_fence_02.m2", }, { - children = { - { - fileId = "195421", - text = "vr_centerpiece_01.m2", - value = "vr_centerpiece_01.m2", - }, - { - fileId = "243735", - text = "vr_centerpiece_01blue.m2", - value = "vr_centerpiece_01blue.m2", - }, - }, - text = "centerpiece", - value = "centerpiece", + fileId = "383426", + text = "earthen_fence_03.m2", + value = "earthen_fence_03.m2", }, { - children = { - { - fileId = "195422", - text = "vr_chains_01.m2", - value = "vr_chains_01.m2", - }, - { - fileId = "195423", - text = "vr_chains_02.m2", - value = "vr_chains_02.m2", - }, - }, - text = "chains", - value = "chains", + fileId = "383427", + text = "earthen_fence_04.m2", + value = "earthen_fence_04.m2", }, { - children = { - { - fileId = "195425", - text = "vr_chair_01.m2", - value = "vr_chair_01.m2", - }, - }, - text = "chairs", - value = "chairs", + fileId = "383410", + text = "earthen_fence_post_01.m2", + value = "earthen_fence_post_01.m2", }, + }, + text = "fence", + value = "fence", + }, + { + fileId = "391883", + text = "org_earthen_floor_01.m2", + value = "org_earthen_floor_01.m2", + }, + { + fileId = "391885", + text = "org_earthen_pylon_01.m2", + value = "org_earthen_pylon_01.m2", + }, + { + fileId = "391887", + text = "org_earthen_pylon_02.m2", + value = "org_earthen_pylon_02.m2", + }, + { + fileId = "391888", + text = "org_earthen_pylon_03.m2", + value = "org_earthen_pylon_03.m2", + }, + { + fileId = "391889", + text = "org_earthen_pylon_04.m2", + value = "org_earthen_pylon_04.m2", + }, + { + children = { { - children = { - { - fileId = "195426", - text = "vr_chandelier_01.m2", - value = "vr_chandelier_01.m2", - }, - }, - text = "chandelier", - value = "chandelier", + fileId = "418797", + text = "earthen_portal_deepholm.m2", + value = "earthen_portal_deepholm.m2", }, { - children = { - { - fileId = "195428", - text = "vr_cookpot_01.m2", - value = "vr_cookpot_01.m2", - }, - { - fileId = "195429", - text = "vr_cookpot_02.m2", - value = "vr_cookpot_02.m2", - }, - { - fileId = "195430", - text = "vr_cookpot_off_01.m2", - value = "vr_cookpot_off_01.m2", - }, - }, - text = "cooking", - value = "cooking", + fileId = "418225", + text = "earthen_portal_hyjal.m2", + value = "earthen_portal_hyjal.m2", }, { - children = { - { - fileId = "195433", - text = "vr_bm_wood_01.m2", - value = "vr_bm_wood_01.m2", - }, - { - fileId = "195436", - text = "vr_crate_01.m2", - value = "vr_crate_01.m2", - }, - { - fileId = "195437", - text = "vr_crate_02.m2", - value = "vr_crate_02.m2", - }, - { - fileId = "195438", - text = "vr_crate_03.m2", - value = "vr_crate_03.m2", - }, - { - fileId = "195439", - text = "vr_crate_04.m2", - value = "vr_crate_04.m2", - }, - { - fileId = "195440", - text = "vr_crate_snow_01.m2", - value = "vr_crate_snow_01.m2", - }, - { - fileId = "195441", - text = "vr_crate_snow_02.m2", - value = "vr_crate_snow_02.m2", - }, - { - fileId = "195442", - text = "vr_crate_snow_03.m2", - value = "vr_crate_snow_03.m2", - }, - { - fileId = "195443", - text = "vr_wrecked_crate_01.m2", - value = "vr_wrecked_crate_01.m2", - }, - { - fileId = "195444", - text = "vr_wrecked_crate_02.m2", - value = "vr_wrecked_crate_02.m2", - }, - { - fileId = "195445", - text = "vr_wrecked_crate_snow_01.m2", - value = "vr_wrecked_crate_snow_01.m2", - }, - { - fileId = "195446", - text = "vr_wrecked_crate_snow_02.m2", - value = "vr_wrecked_crate_snow_02.m2", - }, - }, - text = "crates", - value = "crates", + fileId = "419195", + text = "earthen_portal_twilight_highlands.m2", + value = "earthen_portal_twilight_highlands.m2", }, { - children = { - { - fileId = "195457", - text = "vr_crestwood_01.m2", - value = "vr_crestwood_01.m2", - }, - { - fileId = "195458", - text = "vr_crestwood_02.m2", - value = "vr_crestwood_02.m2", - }, - }, - text = "crest", - value = "crest", + fileId = "419197", + text = "earthen_portal_uldum.m2", + value = "earthen_portal_uldum.m2", }, { - children = { - { - fileId = "195460", - text = "vr_elevator_gate.m2", - value = "vr_elevator_gate.m2", - }, - { - fileId = "195461", - text = "vr_elevator_gears.m2", - value = "vr_elevator_gears.m2", - }, - { - fileId = "195462", - text = "vr_elevator_lift.m2", - value = "vr_elevator_lift.m2", - }, - { - fileId = "195463", - text = "vr_elevator_pulley.m2", - value = "vr_elevator_pulley.m2", - }, - }, - text = "elevator", - value = "elevator", + fileId = "418785", + text = "earthen_portal_vashjir.m2", + value = "earthen_portal_vashjir.m2", }, - { - children = { - { - fileId = "195464", - text = "vr_cliffpost.m2", - value = "vr_cliffpost.m2", - }, - { - fileId = "195466", - text = "vr_fence_01.m2", - value = "vr_fence_01.m2", - }, - { - fileId = "195467", - text = "vr_fence_02.m2", - value = "vr_fence_02.m2", - }, - { - fileId = "195468", - text = "vr_fence_03.m2", - value = "vr_fence_03.m2", - }, - { - fileId = "195469", - text = "vr_fence_04.m2", - value = "vr_fence_04.m2", - }, - { - fileId = "195470", - text = "vr_fence_05.m2", - value = "vr_fence_05.m2", - }, - { - fileId = "195472", - text = "vr_fence_snow02.m2", - value = "vr_fence_snow02.m2", - }, - { - fileId = "195473", - text = "vr_fence_snow04.m2", - value = "vr_fence_snow04.m2", - }, - { - fileId = "195474", - text = "vr_fence_snow05.m2", - value = "vr_fence_snow05.m2", - }, - }, - text = "fence", - value = "fence", + }, + text = "portal", + value = "portal", + }, + { + fileId = "398445", + text = "twilightshammer_earthen_floor_01.m2", + value = "twilightshammer_earthen_floor_01.m2", + }, + { + fileId = "397968", + text = "twilightshammer_earthen_pylon_01.m2", + value = "twilightshammer_earthen_pylon_01.m2", + }, + { + fileId = "397970", + text = "twilightshammer_earthen_pylon_02.m2", + value = "twilightshammer_earthen_pylon_02.m2", + }, + { + fileId = "398040", + text = "twilightshammer_earthen_pylon_03.m2", + value = "twilightshammer_earthen_pylon_03.m2", + }, + { + fileId = "398041", + text = "twilightshammer_earthen_pylon_04.m2", + value = "twilightshammer_earthen_pylon_04.m2", + }, + }, + text = "earthen", + value = "earthen", + }, + { + children = { + { + children = { + { + fileId = "513968", + text = "firelands_brazierflame_big_01.m2", + value = "firelands_brazierflame_big_01.m2", }, { - children = { - { - fileId = "195476", - text = "vr_forgefire_01.m2", - value = "vr_forgefire_01.m2", - }, - }, - text = "fires", - value = "fires", + fileId = "513970", + text = "firelands_brazierflame_big_02.m2", + value = "firelands_brazierflame_big_02.m2", }, + }, + text = "brazierflame_big", + value = "brazierflame_big", + }, + { + children = { { - children = { - { - fileId = "195481", - text = "vr_floorgrate.m2", - value = "vr_floorgrate.m2", - }, - }, - text = "floorgrate", - value = "floorgrate", + fileId = "516635", + text = "firelands_breakable_rock_platform_01.m2", + value = "firelands_breakable_rock_platform_01.m2", }, + }, + text = "breakable_rock_platform", + value = "breakable_rock_platform", + }, + { + children = { { - children = { - { - fileId = "195482", - text = "vr_gondola_pole_01.m2", - value = "vr_gondola_pole_01.m2", - }, - { - fileId = "195483", - text = "vr_gondola_wheel_02.m2", - value = "vr_gondola_wheel_02.m2", - }, - { - fileId = "195484", - text = "vr_gondola_wheel_03.m2", - value = "vr_gondola_wheel_03.m2", - }, - { - fileId = "195485", - text = "vrykul_gondola.m2", - value = "vrykul_gondola.m2", - }, - { - fileId = "195486", - text = "vrykul_gondola_02.m2", - value = "vrykul_gondola_02.m2", - }, - }, - text = "gondola", - value = "gondola", + fileId = "515170", + text = "firelands_bridgefx.m2", + value = "firelands_bridgefx.m2", }, { - children = { - { - fileId = "254024", - text = "vr_harpoon_02.m2", - value = "vr_harpoon_02.m2", - }, - }, - text = "harpoon", - value = "harpoon", + fileId = "519478", + text = "firelands_bridgefx_empty.m2", + value = "firelands_bridgefx_empty.m2", }, + }, + text = "bridgefx", + value = "bridgefx", + }, + { + children = { { - children = { - { - fileId = "195489", - text = "vr_haybail_01.m2", - value = "vr_haybail_01.m2", - }, - { - fileId = "195490", - text = "vr_straw_large_01.m2", - value = "vr_straw_large_01.m2", - }, - { - fileId = "195491", - text = "vr_straw_small_01.m2", - value = "vr_straw_small_01.m2", - }, - }, - text = "hay", - value = "hay", + fileId = "514449", + text = "firelands_canopyglow.m2", + value = "firelands_canopyglow.m2", }, + }, + text = "canopyglow", + value = "canopyglow", + }, + { + children = { { - children = { - { - fileId = "195498", - text = "vr_lamppost_01.m2", - value = "vr_lamppost_01.m2", - }, - { - fileId = "195499", - text = "vr_lamppost_02.m2", - value = "vr_lamppost_02.m2", - }, - { - fileId = "195500", - text = "vr_lamppost_03.m2", - value = "vr_lamppost_03.m2", - }, - { - fileId = "195501", - text = "vr_lamppost_snow_01.m2", - value = "vr_lamppost_snow_01.m2", - }, - { - fileId = "243737", - text = "vr_lamppost_snow_01blue.m2", - value = "vr_lamppost_snow_01blue.m2", - }, - }, - text = "lamppost", - value = "lamppost", + fileId = "513472", + text = "firelands_canopyweb1.m2", + value = "firelands_canopyweb1.m2", }, { - children = { - { - fileId = "195507", - text = "vr_chandelier_broken_01.m2", - value = "vr_chandelier_broken_01.m2", - }, - { - fileId = "195508", - text = "vr_chandelier_purple_01.m2", - value = "vr_chandelier_purple_01.m2", - }, - { - fileId = "195509", - text = "vr_hanginglight_01.m2", - value = "vr_hanginglight_01.m2", - }, - { - fileId = "243738", - text = "vr_hanginglight_01_blue.m2", - value = "vr_hanginglight_01_blue.m2", - }, - { - fileId = "195510", - text = "vr_hanginglight_02.m2", - value = "vr_hanginglight_02.m2", - }, - { - fileId = "243739", - text = "vr_hanginglight_02_blue.m2", - value = "vr_hanginglight_02_blue.m2", - }, - { - fileId = "195511", - text = "vr_hanginglight_03.m2", - value = "vr_hanginglight_03.m2", - }, - { - fileId = "243740", - text = "vr_hanginglight_03_blue.m2", - value = "vr_hanginglight_03_blue.m2", - }, - { - fileId = "195512", - text = "vr_hanginglight_broken_01.m2", - value = "vr_hanginglight_broken_01.m2", - }, - { - fileId = "195513", - text = "vr_hanginglight_purple_01.m2", - value = "vr_hanginglight_purple_01.m2", - }, - { - fileId = "195516", - text = "vr_standinglight_01.m2", - value = "vr_standinglight_01.m2", - }, - { - fileId = "195517", - text = "vr_standinglight_broken_01.m2", - value = "vr_standinglight_broken_01.m2", - }, - { - fileId = "195518", - text = "vr_standinglight_purple_01.m2", - value = "vr_standinglight_purple_01.m2", - }, - { - fileId = "195519", - text = "vr_standinglight_snow_01.m2", - value = "vr_standinglight_snow_01.m2", - }, - { - fileId = "243741", - text = "vr_standinglight_snow_blue_01.m2", - value = "vr_standinglight_snow_blue_01.m2", - }, - }, - text = "lights", - value = "lights", + fileId = "516561", + text = "firelands_canopyweb1_burning.m2", + value = "firelands_canopyweb1_burning.m2", }, + }, + text = "canopyweb", + value = "canopyweb", + }, + { + children = { { - children = { - { - fileId = "195520", - text = "vr_map_01.m2", - value = "vr_map_01.m2", - }, - { - fileId = "195521", - text = "vr_wallmap_01.m2", - value = "vr_wallmap_01.m2", - }, - }, - text = "map", - value = "map", + fileId = "519955", + text = "chest_sulfuron.m2", + value = "chest_sulfuron.m2", }, + }, + text = "chest", + value = "chest", + }, + { + children = { { - children = { - { - fileId = "195523", - text = "vr_portcullis.m2", - value = "vr_portcullis.m2", - }, - { - fileId = "195524", - text = "vr_portculliswithchain.m2", - value = "vr_portculliswithchain.m2", - }, - }, - text = "portcullis", - value = "portcullis", + fileId = "515657", + text = "firelands_door_01.m2", + value = "firelands_door_01.m2", }, + }, + text = "door", + value = "door", + }, + { + children = { { - children = { - { - fileId = "195530", - text = "vr_banner_01_q.m2", - value = "vr_banner_01_q.m2", - }, - { - fileId = "195531", - text = "vr_banner_02_q.m2", - value = "vr_banner_02_q.m2", - }, - { - fileId = "195532", - text = "vr_bones_01_q.m2", - value = "vr_bones_01_q.m2", - }, - { - fileId = "195533", - text = "vr_crate_01_q.m2", - value = "vr_crate_01_q.m2", - }, - { - fileId = "195534", - text = "vr_crystalnode_01_q.m2", - value = "vr_crystalnode_01_q.m2", - }, - { - fileId = "195535", - text = "vr_plants_01_q.m2", - value = "vr_plants_01_q.m2", - }, - { - fileId = "195536", - text = "vr_plants_02_q.m2", - value = "vr_plants_02_q.m2", - }, - { - fileId = "195537", - text = "vr_plants_03_q.m2", - value = "vr_plants_03_q.m2", - }, - { - fileId = "195538", - text = "vr_plants_04_q.m2", - value = "vr_plants_04_q.m2", - }, - { - fileId = "195539", - text = "vr_plants_05_q.m2", - value = "vr_plants_05_q.m2", - }, - { - fileId = "195540", - text = "vr_sack_01_q.m2", - value = "vr_sack_01_q.m2", - }, - { - fileId = "195541", - text = "vr_sack_02_q.m2", - value = "vr_sack_02_q.m2", - }, - { - fileId = "195542", - text = "vr_sack_03_q.m2", - value = "vr_sack_03_q.m2", - }, - { - fileId = "195543", - text = "vr_vase_01_q.m2", - value = "vr_vase_01_q.m2", - }, - { - fileId = "195544", - text = "vr_weaponrack_01_q.m2", - value = "vr_weaponrack_01_q.m2", - }, - }, - text = "quest", - value = "quest", + fileId = "516236", + text = "firelands_druid_fire_portal.m2", + value = "firelands_druid_fire_portal.m2", }, + }, + text = "druid_fire_portal", + value = "druid_fire_portal", + }, + { + children = { { - children = { - { - fileId = "195545", - text = "vr_footbridge_snow_01.m2", - value = "vr_footbridge_snow_01.m2", - }, - { - fileId = "195546", - text = "vr_roadedge_01.m2", - value = "vr_roadedge_01.m2", - }, - { - fileId = "195547", - text = "vr_roadplank_01.m2", - value = "vr_roadplank_01.m2", - }, - { - fileId = "195548", - text = "vr_roadplank_02.m2", - value = "vr_roadplank_02.m2", - }, - { - fileId = "195549", - text = "vr_roadplank_03.m2", - value = "vr_roadplank_03.m2", - }, - { - fileId = "195550", - text = "vr_roadplank_04.m2", - value = "vr_roadplank_04.m2", - }, - { - fileId = "195551", - text = "vr_roadplank_05.m2", - value = "vr_roadplank_05.m2", - }, - { - fileId = "195552", - text = "vr_roadplank_06.m2", - value = "vr_roadplank_06.m2", - }, - { - fileId = "195553", - text = "vr_roadplank_snow02.m2", - value = "vr_roadplank_snow02.m2", - }, - { - fileId = "195554", - text = "vr_roadplank_snow03.m2", - value = "vr_roadplank_snow03.m2", - }, - { - fileId = "195555", - text = "vr_roadplank_snow04.m2", - value = "vr_roadplank_snow04.m2", - }, - { - fileId = "195556", - text = "vr_roadplank_snow05.m2", - value = "vr_roadplank_snow05.m2", - }, - { - fileId = "195557", - text = "vr_roadplank_snow06.m2", - value = "vr_roadplank_snow06.m2", - }, - { - fileId = "195558", - text = "vr_roadplank_wide_01.m2", - value = "vr_roadplank_wide_01.m2", - }, - { - fileId = "195559", - text = "vr_roadplank_wide_02.m2", - value = "vr_roadplank_wide_02.m2", - }, - { - fileId = "195560", - text = "vr_roadplank_wide_03.m2", - value = "vr_roadplank_wide_03.m2", - }, - { - fileId = "195561", - text = "vr_roadplank_wide_04.m2", - value = "vr_roadplank_wide_04.m2", - }, - { - fileId = "195562", - text = "vr_roadplank_wide_snow01.m2", - value = "vr_roadplank_wide_snow01.m2", - }, - { - fileId = "195563", - text = "vr_roadplank_wide_snow02.m2", - value = "vr_roadplank_wide_snow02.m2", - }, - { - fileId = "195564", - text = "vr_roadplank_wide_snow03.m2", - value = "vr_roadplank_wide_snow03.m2", - }, - { - fileId = "195565", - text = "vr_roadplank_wide_snow04.m2", - value = "vr_roadplank_wide_snow04.m2", - }, - { - fileId = "195566", - text = "vr_roadplankandcurb_01.m2", - value = "vr_roadplankandcurb_01.m2", - }, - { - fileId = "195567", - text = "vr_roadplankandcurb_02.m2", - value = "vr_roadplankandcurb_02.m2", - }, - { - fileId = "195568", - text = "vr_roadplankandcurb_03.m2", - value = "vr_roadplankandcurb_03.m2", - }, - { - fileId = "195569", - text = "vr_roadplankandcurb_04.m2", - value = "vr_roadplankandcurb_04.m2", - }, - { - fileId = "195570", - text = "vr_roadplankandcurb_wide_01.m2", - value = "vr_roadplankandcurb_wide_01.m2", - }, - { - fileId = "195571", - text = "vr_roadplankandcurb_wide_02.m2", - value = "vr_roadplankandcurb_wide_02.m2", - }, - { - fileId = "195572", - text = "vr_roadplankandcurb_wide_04.m2", - value = "vr_roadplankandcurb_wide_04.m2", - }, - { - fileId = "195573", - text = "vr_roadplankandcurb_wide_05.m2", - value = "vr_roadplankandcurb_wide_05.m2", - }, - }, - text = "road", - value = "road", + fileId = "520135", + text = "firelands_druid_hyjal_portal.m2", + value = "firelands_druid_hyjal_portal.m2", + }, + }, + text = "druid_hyjal_portal", + value = "druid_hyjal_portal", + }, + { + children = { + { + fileId = "516734", + text = "firelands_druid_portal.m2", + value = "firelands_druid_portal.m2", }, + }, + text = "druid_portal", + value = "druid_portal", + }, + { + children = { { - children = { - { - fileId = "195583", - text = "vr_rubble_01.m2", - value = "vr_rubble_01.m2", - }, - { - fileId = "195584", - text = "vr_rubble_02.m2", - value = "vr_rubble_02.m2", - }, - { - fileId = "195585", - text = "vr_rubble_03.m2", - value = "vr_rubble_03.m2", - }, - }, - text = "rubble", - value = "rubble", + fileId = "515108", + text = "firelands_druidtree_scale.m2", + value = "firelands_druidtree_scale.m2", + }, + { + fileId = "516750", + text = "firelands_druidtree_stage03_canopy.m2", + value = "firelands_druidtree_stage03_canopy.m2", + }, + { + fileId = "515110", + text = "firelands_druidtree_supports.m2", + value = "firelands_druidtree_supports.m2", }, + }, + text = "druidtree", + value = "druidtree", + }, + { + children = { { - children = { - { - fileId = "195587", - text = "vr_rug_large_01.m2", - value = "vr_rug_large_01.m2", - }, - { - fileId = "195589", - text = "vr_rug_long_01.m2", - value = "vr_rug_long_01.m2", - }, - { - fileId = "195591", - text = "vr_rug_small_01.m2", - value = "vr_rug_small_01.m2", - }, - }, - text = "rug", - value = "rug", + fileId = "512975", + text = "firelands_embers_01.m2", + value = "firelands_embers_01.m2", }, + }, + text = "embers", + value = "embers", + }, + { + children = { { - children = { - { - fileId = "243742", - text = "seavrykul_dead_seaweed.m2", - value = "seavrykul_dead_seaweed.m2", - }, - }, - text = "seavrykul_dead", - value = "seavrykul_dead", + fileId = "512086", + text = "fl_fire_fx_01.m2", + value = "fl_fire_fx_01.m2", }, { - children = { - { - fileId = "195595", - text = "vr_crest_01.m2", - value = "vr_crest_01.m2", - }, - { - fileId = "195596", - text = "vr_crest_02.m2", - value = "vr_crest_02.m2", - }, - { - fileId = "195597", - text = "vr_crest_03.m2", - value = "vr_crest_03.m2", - }, - { - fileId = "195598", - text = "vr_crestshield_01.m2", - value = "vr_crestshield_01.m2", - }, - { - fileId = "195599", - text = "vr_crestshield_02.m2", - value = "vr_crestshield_02.m2", - }, - { - fileId = "195600", - text = "vr_crestshield_03.m2", - value = "vr_crestshield_03.m2", - }, - { - fileId = "195602", - text = "vr_shield_01.m2", - value = "vr_shield_01.m2", - }, - { - fileId = "195604", - text = "vr_shield_02.m2", - value = "vr_shield_02.m2", - }, - { - fileId = "195606", - text = "vr_shield_03.m2", - value = "vr_shield_03.m2", - }, - }, - text = "shield", - value = "shield", + fileId = "512088", + text = "fl_fire_fx_02.m2", + value = "fl_fire_fx_02.m2", }, { - children = { - { - fileId = "195607", - text = "vr_signpost_01.m2", - value = "vr_signpost_01.m2", - }, - { - fileId = "195608", - text = "vr_signpost_sign_01.m2", - value = "vr_signpost_sign_01.m2", - }, - { - fileId = "195609", - text = "vr_signpost_snow01.m2", - value = "vr_signpost_snow01.m2", - }, - }, - text = "signs", - value = "signs", + fileId = "512090", + text = "fl_fire_fx_03.m2", + value = "fl_fire_fx_03.m2", }, { - children = { - { - fileId = "352121", - text = "valgarde_skulls.m2", - value = "valgarde_skulls.m2", - }, - { - fileId = "361124", - text = "valgarde_skulls02.m2", - value = "valgarde_skulls02.m2", - }, - }, - text = "skulls", - value = "skulls", + fileId = "512092", + text = "fl_fire_fx_04.m2", + value = "fl_fire_fx_04.m2", }, { - children = { - { - fileId = "195613", - text = "vr_utgardepinnaclesnow_01.m2", - value = "vr_utgardepinnaclesnow_01.m2", - }, - }, - text = "snow", - value = "snow", + fileId = "512094", + text = "fl_fire_fx_05.m2", + value = "fl_fire_fx_05.m2", }, { - children = { - { - fileId = "195614", - text = "vr_bm_spike_01.m2", - value = "vr_bm_spike_01.m2", - }, - }, - text = "spike", - value = "spike", + fileId = "512096", + text = "fl_fire_fx_06.m2", + value = "fl_fire_fx_06.m2", }, { - children = { - { - fileId = "195619", - text = "vr_destroyed_table_01.m2", - value = "vr_destroyed_table_01.m2", - }, - { - fileId = "195620", - text = "vr_maptable_01.m2", - value = "vr_maptable_01.m2", - }, - { - fileId = "243743", - text = "vr_maptable_02.m2", - value = "vr_maptable_02.m2", - }, - { - fileId = "195621", - text = "vr_table_large_01.m2", - value = "vr_table_large_01.m2", - }, - { - fileId = "195622", - text = "vr_table_medium_01.m2", - value = "vr_table_medium_01.m2", - }, - { - fileId = "195623", - text = "vr_table_small_01.m2", - value = "vr_table_small_01.m2", - }, - { - fileId = "195624", - text = "vr_table_small_02.m2", - value = "vr_table_small_02.m2", - }, - }, - text = "table", - value = "table", + fileId = "512125", + text = "fl_fire_fx_07.m2", + value = "fl_fire_fx_07.m2", }, { - children = { - { - fileId = "195632", - text = "vr_tent_01.m2", - value = "vr_tent_01.m2", - }, - }, - text = "tent", - value = "tent", + fileId = "512098", + text = "fl_fire_fx_08.m2", + value = "fl_fire_fx_08.m2", }, { - children = { - { - fileId = "195633", - text = "vr_torch_01.m2", - value = "vr_torch_01.m2", - }, - { - fileId = "243744", - text = "vr_torch_01_blue.m2", - value = "vr_torch_01_blue.m2", - }, - { - fileId = "195634", - text = "vr_torch_broken_01.m2", - value = "vr_torch_broken_01.m2", - }, - { - fileId = "195635", - text = "vr_torch_broken_snow01.m2", - value = "vr_torch_broken_snow01.m2", - }, - { - fileId = "195637", - text = "vr_torch_snow01.m2", - value = "vr_torch_snow01.m2", - }, - }, - text = "torch", - value = "torch", + fileId = "512100", + text = "fl_fire_fx_09.m2", + value = "fl_fire_fx_09.m2", }, { - children = { - { - fileId = "195639", - text = "vr_trough.m2", - value = "vr_trough.m2", - }, - }, - text = "trough", - value = "trough", + fileId = "512102", + text = "fl_fire_fx_10.m2", + value = "fl_fire_fx_10.m2", }, { - children = { - { - fileId = "195643", - text = "vr_wagon_01.m2", - value = "vr_wagon_01.m2", - }, - { - fileId = "195645", - text = "vr_wagon_snow_01.m2", - value = "vr_wagon_snow_01.m2", - }, - }, - text = "wagon", - value = "wagon", + fileId = "512121", + text = "fl_fire_fx_11.m2", + value = "fl_fire_fx_11.m2", }, { - children = { - { - fileId = "195650", - text = "vr_wallarch.m2", - value = "vr_wallarch.m2", - }, - { - fileId = "195651", - text = "vr_wallarch_snow.m2", - value = "vr_wallarch_snow.m2", - }, - }, - text = "wallarch", - value = "wallarch", + fileId = "512127", + text = "fl_fire_fx_12.m2", + value = "fl_fire_fx_12.m2", }, { - children = { - { - fileId = "195657", - text = "vr_crestaxe_01.m2", - value = "vr_crestaxe_01.m2", - }, - { - fileId = "195658", - text = "vr_crestaxe_02.m2", - value = "vr_crestaxe_02.m2", - }, - { - fileId = "195659", - text = "vr_crestsword_01.m2", - value = "vr_crestsword_01.m2", - }, - }, - text = "weapons", - value = "weapons", + fileId = "514045", + text = "fl_fire_fx_13.m2", + value = "fl_fire_fx_13.m2", }, }, - text = "vrykul", - value = "vrykul", + text = "fire", + value = "fire", }, { children = { { - fileId = "195664", - text = "northrendfrozenwaterfall_short.m2", - value = "northrendfrozenwaterfall_short.m2", + fileId = "516529", + text = "firelandssky_fireball02.m2", + value = "firelandssky_fireball02.m2", }, + }, + text = "fireball", + value = "fireball", + }, + { + children = { { - fileId = "195665", - text = "northrendfrozenwaterfall_stormpeaks.m2", - value = "northrendfrozenwaterfall_stormpeaks.m2", + fileId = "517317", + text = "firelands_fireclouds.m2", + value = "firelands_fireclouds.m2", }, + }, + text = "fireclouds", + value = "fireclouds", + }, + { + children = { { - fileId = "195666", - text = "northrendfrozenwaterfall_tall.m2", - value = "northrendfrozenwaterfall_tall.m2", + fileId = "516670", + text = "firelands_fireeffect_01.m2", + value = "firelands_fireeffect_01.m2", }, + }, + text = "fireeffect", + value = "fireeffect", + }, + { + children = { { - fileId = "195667", - text = "northrendfrozenwaterfall_wide.m2", - value = "northrendfrozenwaterfall_wide.m2", + fileId = "514939", + text = "firelands_gate_end.m2", + value = "firelands_gate_end.m2", }, + }, + text = "firelands_gate", + value = "firelands_gate", + }, + { + fileId = "512160", + text = "firelands_web01.m2", + value = "firelands_web01.m2", + }, + { + fileId = "512162", + text = "firelands_web02.m2", + value = "firelands_web02.m2", + }, + { + fileId = "512164", + text = "firelands_web03.m2", + value = "firelands_web03.m2", + }, + { + fileId = "512166", + text = "firelands_web04.m2", + value = "firelands_web04.m2", + }, + { + fileId = "512170", + text = "firelands_web05.m2", + value = "firelands_web05.m2", + }, + { + fileId = "512275", + text = "firelands_web06.m2", + value = "firelands_web06.m2", + }, + { + fileId = "512530", + text = "firelands_web07.m2", + value = "firelands_web07.m2", + }, + { + fileId = "513949", + text = "firelands_web08.m2", + value = "firelands_web08.m2", + }, + { + fileId = "514096", + text = "firelands_web09.m2", + value = "firelands_web09.m2", + }, + { + fileId = "514098", + text = "firelands_web10.m2", + value = "firelands_web10.m2", + }, + { + children = { { - fileId = "195674", - text = "waterfalls_set1_high.m2", - value = "waterfalls_set1_high.m2", + fileId = "515660", + text = "firelands_firewaterfalls_01.m2", + value = "firelands_firewaterfalls_01.m2", }, + }, + text = "firewaterfalls", + value = "firewaterfalls", + }, + { + children = { { - fileId = "195675", - text = "waterfalls_set1_high_hat.m2", - value = "waterfalls_set1_high_hat.m2", + fileId = "516355", + text = "firelands_firewaterfalls_bottom_01.m2", + value = "firelands_firewaterfalls_bottom_01.m2", }, + }, + text = "firewaterfalls_bottom", + value = "firewaterfalls_bottom", + }, + { + children = { { - fileId = "195676", - text = "waterfalls_set1_high_ripples.m2", - value = "waterfalls_set1_high_ripples.m2", + fileId = "516840", + text = "firelands_firewaterfalls_large_01.m2", + value = "firelands_firewaterfalls_large_01.m2", }, + }, + text = "firewaterfalls_large", + value = "firewaterfalls_large", + }, + { + fileId = "512173", + text = "fl_blowing_sand.m2", + value = "fl_blowing_sand.m2", + }, + { + fileId = "512175", + text = "fl_blowing_sand2.m2", + value = "fl_blowing_sand2.m2", + }, + { + fileId = "514926", + text = "fl_thermal_air.m2", + value = "fl_thermal_air.m2", + }, + { + children = { { - fileId = "195677", - text = "waterfalls_set1_low.m2", - value = "waterfalls_set1_low.m2", + fileId = "513503", + text = "firelands_floatingmoth_01.m2", + value = "firelands_floatingmoth_01.m2", }, + }, + text = "floatingmoth", + value = "floatingmoth", + }, + { + children = { { - fileId = "195678", - text = "waterfalls_set1_low_hat.m2", - value = "waterfalls_set1_low_hat.m2", + fileId = "512341", + text = "firelands_floatingrock_01.m2", + value = "firelands_floatingrock_01.m2", }, { - fileId = "195679", - text = "waterfalls_set1_low_ripples.m2", - value = "waterfalls_set1_low_ripples.m2", + fileId = "512343", + text = "firelands_floatingrock_02.m2", + value = "firelands_floatingrock_02.m2", }, { - fileId = "195680", - text = "waterfalls_set1_med.m2", - value = "waterfalls_set1_med.m2", + fileId = "512345", + text = "firelands_floatingrock_03.m2", + value = "firelands_floatingrock_03.m2", }, { - fileId = "195681", - text = "waterfalls_set1_med_hat.m2", - value = "waterfalls_set1_med_hat.m2", + fileId = "512347", + text = "firelands_floatingrock_04.m2", + value = "firelands_floatingrock_04.m2", }, { - fileId = "195682", - text = "waterfalls_set1_med_ripples.m2", - value = "waterfalls_set1_med_ripples.m2", + fileId = "512349", + text = "firelands_floatingrock_05.m2", + value = "firelands_floatingrock_05.m2", }, { - fileId = "243745", - text = "waterfalls_set2_high_hat.m2", - value = "waterfalls_set2_high_hat.m2", + fileId = "512381", + text = "firelands_floatingrocksmall01.m2", + value = "firelands_floatingrocksmall01.m2", }, { - fileId = "243746", - text = "waterfalls_set2_med.m2", - value = "waterfalls_set2_med.m2", + fileId = "512383", + text = "firelands_floatingrocksmall02.m2", + value = "firelands_floatingrocksmall02.m2", }, { - fileId = "243747", - text = "waterfalls_set2_med_chop.m2", - value = "waterfalls_set2_med_chop.m2", + fileId = "512385", + text = "firelands_floatingrocksmall03.m2", + value = "firelands_floatingrocksmall03.m2", }, { - fileId = "243748", - text = "waterfalls_set2_med_doublewide.m2", - value = "waterfalls_set2_med_doublewide.m2", + fileId = "512387", + text = "firelands_floatingrocksmall04.m2", + value = "firelands_floatingrocksmall04.m2", }, + }, + text = "floatingrocks", + value = "floatingrocks", + }, + { + children = { { - fileId = "243749", - text = "waterfalls_set2_med_doublewide_short.m2", - value = "waterfalls_set2_med_doublewide_short.m2", + fileId = "527723", + text = "firelandsfogsphere.m2", + value = "firelandsfogsphere.m2", }, + }, + text = "fogsphere", + value = "fogsphere", + }, + { + children = { { - fileId = "243750", - text = "waterfalls_set2_med_doublewide_withchop.m2", - value = "waterfalls_set2_med_doublewide_withchop.m2", + fileId = "521284", + text = "globeofazeroth.m2", + value = "globeofazeroth.m2", }, + }, + text = "globeofazeroth", + value = "globeofazeroth", + }, + { + children = { { - fileId = "243751", - text = "waterfalls_set2_med_short.m2", - value = "waterfalls_set2_med_short.m2", + fileId = "468769", + text = "firelands_lava_ball_01.m2", + value = "firelands_lava_ball_01.m2", }, { - fileId = "243752", - text = "waterfalls_set2_med_tall.m2", - value = "waterfalls_set2_med_tall.m2", + fileId = "469407", + text = "firelands_lava_ball_02.m2", + value = "firelands_lava_ball_02.m2", }, { - fileId = "243753", - text = "waterfalls_set2_med_tall_withchop.m2", - value = "waterfalls_set2_med_tall_withchop.m2", + fileId = "511147", + text = "firelands_lavafissure01.m2", + value = "firelands_lavafissure01.m2", }, { - fileId = "243754", - text = "waterfalls_set2_med_top.m2", - value = "waterfalls_set2_med_top.m2", + fileId = "511139", + text = "firelands_lavafissure02.m2", + value = "firelands_lavafissure02.m2", }, { - fileId = "243755", - text = "waterfalls_set2_med_withchop.m2", - value = "waterfalls_set2_med_withchop.m2", + fileId = "511141", + text = "firelands_lavafissure03.m2", + value = "firelands_lavafissure03.m2", }, { - fileId = "243756", - text = "waterfalls_set2_rapids_divided.m2", - value = "waterfalls_set2_rapids_divided.m2", + fileId = "511143", + text = "firelands_lavafissure04.m2", + value = "firelands_lavafissure04.m2", }, { - fileId = "243757", - text = "waterfalls_set2_rapids_long.m2", - value = "waterfalls_set2_rapids_long.m2", + fileId = "511145", + text = "firelands_lavafissure05.m2", + value = "firelands_lavafissure05.m2", }, + }, + text = "lava", + value = "lava", + }, + { + children = { { - fileId = "243758", - text = "waterfalls_set2_rapids_short.m2", - value = "waterfalls_set2_rapids_short.m2", + fileId = "516752", + text = "firelands_lava_splash_01.m2", + value = "firelands_lava_splash_01.m2", }, { - fileId = "243759", - text = "waterfalls_set2_wide.m2", - value = "waterfalls_set2_wide.m2", + fileId = "516754", + text = "firelands_lava_splash_particle_01.m2", + value = "firelands_lava_splash_particle_01.m2", }, + }, + text = "lava_splash", + value = "lava_splash", + }, + { + children = { { - fileId = "243760", - text = "waterfalls_set2_wide_chop.m2", - value = "waterfalls_set2_wide_chop.m2", + fileId = "522981", + text = "firelands_lavaboss_bridge_creation.m2", + value = "firelands_lavaboss_bridge_creation.m2", }, { - fileId = "243761", - text = "waterfalls_set2_wide_short.m2", - value = "waterfalls_set2_wide_short.m2", + fileId = "522983", + text = "firelands_lavaboss_bridge_destruction.m2", + value = "firelands_lavaboss_bridge_destruction.m2", }, + }, + text = "lavaboss_bridge", + value = "lavaboss_bridge", + }, + { + children = { { - fileId = "243762", - text = "waterfalls_set2_wide_tall.m2", - value = "waterfalls_set2_wide_tall.m2", + fileId = "525029", + text = "firelands_lavaboss_bridge_anim.m2", + value = "firelands_lavaboss_bridge_anim.m2", }, + }, + text = "lavaboss_bridge_anim", + value = "lavaboss_bridge_anim", + }, + { + children = { { - fileId = "243763", - text = "waterfalls_set2_wide_tall_chop.m2", - value = "waterfalls_set2_wide_tall_chop.m2", + fileId = "531376", + text = "firelands_lavaboss_platform_fx.m2", + value = "firelands_lavaboss_platform_fx.m2", }, }, - text = "waterfalls", - value = "waterfalls", + text = "lavaboss_platform", + value = "lavaboss_platform", }, { children = { { - fileId = "195692", - text = "orc_fortress_elevator01.m2", - value = "orc_fortress_elevator01.m2", + fileId = "515663", + text = "firelands_lavafalls_01.m2", + value = "firelands_lavafalls_01.m2", }, { - fileId = "195693", - text = "orc_ship_broken_front_01.m2", - value = "orc_ship_broken_front_01.m2", + fileId = "516238", + text = "firelands_lavafalls_02.m2", + value = "firelands_lavafalls_02.m2", }, { - fileId = "195694", - text = "orc_ship_broken_ropes_01.m2", - value = "orc_ship_broken_ropes_01.m2", + fileId = "512667", + text = "firelands_lavafalls_custom_01.m2", + value = "firelands_lavafalls_custom_01.m2", }, { - fileId = "195695", - text = "orc_ship_broken_sail_01.m2", - value = "orc_ship_broken_sail_01.m2", + fileId = "512669", + text = "firelands_lavafalls_custom_02.m2", + value = "firelands_lavafalls_custom_02.m2", }, { - fileId = "195696", - text = "worc_barricade.m2", - value = "worc_barricade.m2", + fileId = "512671", + text = "firelands_lavafalls_custom_03.m2", + value = "firelands_lavafalls_custom_03.m2", }, { - fileId = "195697", - text = "worc_excavationcrane.m2", - value = "worc_excavationcrane.m2", + fileId = "512673", + text = "firelands_lavafalls_custom_04.m2", + value = "firelands_lavafalls_custom_04.m2", }, { - fileId = "195698", - text = "worc_minemachine.m2", - value = "worc_minemachine.m2", + fileId = "512684", + text = "firelands_lavafalls_custom_05.m2", + value = "firelands_lavafalls_custom_05.m2", + }, + { + fileId = "512686", + text = "firelands_lavafalls_custom_06.m2", + value = "firelands_lavafalls_custom_06.m2", + }, + { + fileId = "512688", + text = "firelands_lavafalls_custom_07.m2", + value = "firelands_lavafalls_custom_07.m2", + }, + { + fileId = "512690", + text = "firelands_lavafalls_custom_08.m2", + value = "firelands_lavafalls_custom_08.m2", }, }, - text = "winterorc", - value = "winterorc", + text = "lavafalls", + value = "lavafalls", }, { children = { { - fileId = "195703", - text = "wolvar_anvil.m2", - value = "wolvar_anvil.m2", + fileId = "514000", + text = "firelands_lavapool.m2", + value = "firelands_lavapool.m2", }, { - fileId = "195704", - text = "wolvar_anvil_dragonblight.m2", - value = "wolvar_anvil_dragonblight.m2", + fileId = "515665", + text = "firelands_lavapool_explode_lava.m2", + value = "firelands_lavapool_explode_lava.m2", + }, + { + fileId = "514003", + text = "firelands_lavapool_hard.m2", + value = "firelands_lavapool_hard.m2", + }, + { + fileId = "514005", + text = "firelands_lavapool_hard_lavahole.m2", + value = "firelands_lavapool_hard_lavahole.m2", + }, + }, + text = "lavapool", + value = "lavapool", + }, + { + children = { + { + fileId = "515670", + text = "firelands_lavapool_firering.m2", + value = "firelands_lavapool_firering.m2", + }, + }, + text = "lavapool_firering", + value = "lavapool_firering", + }, + { + children = { + { + fileId = "519244", + text = "firelands_minivolcano_doodad_01.m2", + value = "firelands_minivolcano_doodad_01.m2", }, + }, + text = "minivolcano_doodad", + value = "minivolcano_doodad", + }, + { + children = { { - fileId = "195706", - text = "wolvar_cage01.m2", - value = "wolvar_cage01.m2", + fileId = "514479", + text = "firelands_minivolcano_smoke_01.m2", + value = "firelands_minivolcano_smoke_01.m2", }, + }, + text = "minivolcano_smoke", + value = "minivolcano_smoke", + }, + { + children = { { - fileId = "195707", - text = "wolvar_cage01_dragonblight.m2", - value = "wolvar_cage01_dragonblight.m2", + fileId = "512352", + text = "firelands_overhangrock_large_01.m2", + value = "firelands_overhangrock_large_01.m2", }, { - fileId = "195709", - text = "wolvar_coals01.m2", - value = "wolvar_coals01.m2", + fileId = "512354", + text = "firelands_overhangrock_large_02.m2", + value = "firelands_overhangrock_large_02.m2", }, { - fileId = "195710", - text = "wolvar_coals02.m2", - value = "wolvar_coals02.m2", + fileId = "512356", + text = "firelands_overhangrock_small_01.m2", + value = "firelands_overhangrock_small_01.m2", }, { - fileId = "195712", - text = "wolvar_cookpot.m2", - value = "wolvar_cookpot.m2", + fileId = "512358", + text = "firelands_overhangrock_small_02.m2", + value = "firelands_overhangrock_small_02.m2", }, { - fileId = "195714", - text = "wolvar_cookpot_dragonblight.m2", - value = "wolvar_cookpot_dragonblight.m2", + fileId = "512360", + text = "firelands_overhangrock_small_03.m2", + value = "firelands_overhangrock_small_03.m2", }, + }, + text = "overhangrock", + value = "overhangrock", + }, + { + children = { { - fileId = "195715", - text = "wolvar_doorway01.m2", - value = "wolvar_doorway01.m2", + fileId = "516531", + text = "firelands_phoenixshell_fx1.m2", + value = "firelands_phoenixshell_fx1.m2", }, + }, + text = "phoenixshell_fx", + value = "phoenixshell_fx", + }, + { + children = { { - fileId = "195716", - text = "wolvar_doorway01_sholazar.m2", - value = "wolvar_doorway01_sholazar.m2", + fileId = "522017", + text = "ragnaros_firewall.m2", + value = "ragnaros_firewall.m2", }, + }, + text = "ragnaros_firewall", + value = "ragnaros_firewall", + }, + { + children = { { - fileId = "195717", - text = "wolvar_doorway01_snowy.m2", - value = "wolvar_doorway01_snowy.m2", + fileId = "519063", + text = "firelands_flatrock_01.m2", + value = "firelands_flatrock_01.m2", }, { - fileId = "195718", - text = "wolvar_forge.m2", - value = "wolvar_forge.m2", + fileId = "519065", + text = "firelands_flatrock_02.m2", + value = "firelands_flatrock_02.m2", }, { - fileId = "195721", - text = "wolvar_god_bot.m2", - value = "wolvar_god_bot.m2", + fileId = "519067", + text = "firelands_flatrock_03.m2", + value = "firelands_flatrock_03.m2", }, { - fileId = "195722", - text = "wolvar_god_protodragon.m2", - value = "wolvar_god_protodragon.m2", + fileId = "519069", + text = "firelands_flatrock_04.m2", + value = "firelands_flatrock_04.m2", }, { - fileId = "195723", - text = "wolvar_god_shoveltusk.m2", - value = "wolvar_god_shoveltusk.m2", + fileId = "519071", + text = "firelands_flatrock_05.m2", + value = "firelands_flatrock_05.m2", }, { - fileId = "195724", - text = "wolvar_god_yeti.m2", - value = "wolvar_god_yeti.m2", + fileId = "519073", + text = "firelands_flatrock_06.m2", + value = "firelands_flatrock_06.m2", }, { - fileId = "195726", - text = "wolvar_hut01.m2", - value = "wolvar_hut01.m2", + fileId = "511918", + text = "firelands_hexrock01.m2", + value = "firelands_hexrock01.m2", }, { - fileId = "195727", - text = "wolvar_hut01_sholazar.m2", - value = "wolvar_hut01_sholazar.m2", + fileId = "511920", + text = "firelands_hexrock02.m2", + value = "firelands_hexrock02.m2", }, { - fileId = "195729", - text = "wolvar_hut01_snowy.m2", - value = "wolvar_hut01_snowy.m2", + fileId = "511922", + text = "firelands_hexrock03.m2", + value = "firelands_hexrock03.m2", }, { - fileId = "195731", - text = "wolvar_hut02.m2", - value = "wolvar_hut02.m2", + fileId = "512049", + text = "firelands_hexrock04.m2", + value = "firelands_hexrock04.m2", }, { - fileId = "195733", - text = "wolvar_hut02_sholazar.m2", - value = "wolvar_hut02_sholazar.m2", + fileId = "512051", + text = "firelands_hexrock05.m2", + value = "firelands_hexrock05.m2", }, { - fileId = "195735", - text = "wolvar_hut02_snowy.m2", - value = "wolvar_hut02_snowy.m2", + fileId = "512053", + text = "firelands_hexrock06.m2", + value = "firelands_hexrock06.m2", }, { - fileId = "195736", - text = "wolvar_hut03.m2", - value = "wolvar_hut03.m2", + fileId = "512056", + text = "firelands_hexrock07.m2", + value = "firelands_hexrock07.m2", }, { - fileId = "195737", - text = "wolvar_hut03_sholazar.m2", - value = "wolvar_hut03_sholazar.m2", + fileId = "512193", + text = "firelands_hexrock08.m2", + value = "firelands_hexrock08.m2", }, { - fileId = "195739", - text = "wolvar_quench.m2", - value = "wolvar_quench.m2", + fileId = "512195", + text = "firelands_hexrock09.m2", + value = "firelands_hexrock09.m2", }, { - fileId = "195740", - text = "wolvar_quench_dragonblight.m2", - value = "wolvar_quench_dragonblight.m2", + fileId = "513096", + text = "firelands_hexrock10.m2", + value = "firelands_hexrock10.m2", }, { - fileId = "195741", - text = "wolvar_spikes01.m2", - value = "wolvar_spikes01.m2", + fileId = "513098", + text = "firelands_hexrock11.m2", + value = "firelands_hexrock11.m2", }, { - fileId = "195742", - text = "wolvar_spikes02.m2", - value = "wolvar_spikes02.m2", + fileId = "513101", + text = "firelands_hexrock12.m2", + value = "firelands_hexrock12.m2", }, { - fileId = "195743", - text = "wolvar_spikes03.m2", - value = "wolvar_spikes03.m2", + fileId = "513103", + text = "firelands_hexrock13.m2", + value = "firelands_hexrock13.m2", }, { - fileId = "195745", - text = "wolvar_totem01.m2", - value = "wolvar_totem01.m2", + fileId = "513106", + text = "firelands_hexrock14.m2", + value = "firelands_hexrock14.m2", }, { - fileId = "195747", - text = "wolvar_totem01_dragonblight.m2", - value = "wolvar_totem01_dragonblight.m2", + fileId = "513108", + text = "firelands_hexrock15.m2", + value = "firelands_hexrock15.m2", }, { - fileId = "195748", - text = "wolvar_totem02.m2", - value = "wolvar_totem02.m2", + fileId = "513937", + text = "firelands_hexrock16.m2", + value = "firelands_hexrock16.m2", }, { - fileId = "195749", - text = "wolvar_totem02_dragonblight.m2", - value = "wolvar_totem02_dragonblight.m2", + fileId = "513939", + text = "firelands_hexrock17.m2", + value = "firelands_hexrock17.m2", }, { - fileId = "195750", - text = "wolvar_totem03.m2", - value = "wolvar_totem03.m2", + fileId = "513942", + text = "firelands_hexrock18.m2", + value = "firelands_hexrock18.m2", }, { - fileId = "195751", - text = "wolvar_totem03_dragonblight.m2", - value = "wolvar_totem03_dragonblight.m2", + fileId = "510791", + text = "firelands_rock01.m2", + value = "firelands_rock01.m2", }, { - fileId = "195752", - text = "wolvar_window01.m2", - value = "wolvar_window01.m2", + fileId = "510783", + text = "firelands_rock02.m2", + value = "firelands_rock02.m2", }, { - fileId = "195753", - text = "wolvar_window01_sholazar.m2", - value = "wolvar_window01_sholazar.m2", + fileId = "510785", + text = "firelands_rock03.m2", + value = "firelands_rock03.m2", }, { - fileId = "195754", - text = "wolvar_window01_snowy.m2", - value = "wolvar_window01_snowy.m2", + fileId = "510787", + text = "firelands_rock04.m2", + value = "firelands_rock04.m2", }, { - fileId = "195755", - text = "wolvar_window02.m2", - value = "wolvar_window02.m2", + fileId = "510789", + text = "firelands_rock05.m2", + value = "firelands_rock05.m2", }, { - fileId = "195756", - text = "wolvar_window02_sholazar.m2", - value = "wolvar_window02_sholazar.m2", + fileId = "510793", + text = "firelands_rock06.m2", + value = "firelands_rock06.m2", }, { - fileId = "195757", - text = "wolvar_window02_snowy.m2", - value = "wolvar_window02_snowy.m2", + fileId = "510903", + text = "firelands_rock07.m2", + value = "firelands_rock07.m2", }, }, - text = "wolvar", - value = "wolvar", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "195758", - text = "crashedzeppelinpiece_03.m2", - value = "crashedzeppelinpiece_03.m2", - }, - { - fileId = "195759", - text = "crashedzeppelinpiece_04.m2", - value = "crashedzeppelinpiece_04.m2", + fileId = "525878", + text = "firelands_roots.m2", + value = "firelands_roots.m2", }, }, - text = "zeppelin", - value = "zeppelin", + text = "roots", + value = "roots", }, - }, - text = "generic", - value = "generic", - }, - { - children = { { children = { { - fileId = "243767", - text = "grizzly_bearshrine_snow.m2", - value = "grizzly_bearshrine_snow.m2", + fileId = "513952", + text = "firelandssky_fireball01.m2", + value = "firelandssky_fireball01.m2", }, { - fileId = "195764", - text = "grizzly_furbolgbearshrine.m2", - value = "grizzly_furbolgbearshrine.m2", + fileId = "517242", + text = "firelandssky_fireball_basic.m2", + value = "firelandssky_fireball_basic.m2", }, }, - text = "bearshrine", - value = "bearshrine", + text = "sky_fireball", + value = "sky_fireball", }, { children = { { - fileId = "195765", - text = "grizzlyhills_furbolgroad_01.m2", - value = "grizzlyhills_furbolgroad_01.m2", - }, - { - fileId = "195766", - text = "grizzlyhills_furbolgroad_02.m2", - value = "grizzlyhills_furbolgroad_02.m2", - }, - { - fileId = "195767", - text = "grizzlyhills_furbolgroad_03.m2", - value = "grizzlyhills_furbolgroad_03.m2", - }, - { - fileId = "195768", - text = "grizzlyhills_furbolgroad_snow_01.m2", - value = "grizzlyhills_furbolgroad_snow_01.m2", + fileId = "512692", + text = "firelands_hugesmoke01.m2", + value = "firelands_hugesmoke01.m2", }, { - fileId = "195769", - text = "grizzlyhills_furbolgroad_snow_02.m2", - value = "grizzlyhills_furbolgroad_snow_02.m2", - }, - { - fileId = "195770", - text = "grizzlyhills_furbolgroad_snow_03.m2", - value = "grizzlyhills_furbolgroad_snow_03.m2", + fileId = "512694", + text = "firelands_hugesmoke02.m2", + value = "firelands_hugesmoke02.m2", }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { { - fileId = "195773", - text = "grizzlyhills_roadlog01.m2", - value = "grizzlyhills_roadlog01.m2", + fileId = "518924", + text = "firelands_smokefog.m2", + value = "firelands_smokefog.m2", }, }, - text = "roadlogs", - value = "roadlogs", + text = "smokefog", + value = "smokefog", }, { children = { { - fileId = "195776", - text = "grizzlyhills_boulder01.m2", - value = "grizzlyhills_boulder01.m2", + fileId = "520920", + text = "firelands_sulfuronkeep_door.m2", + value = "firelands_sulfuronkeep_door.m2", }, + }, + text = "sulfuronkeep_door", + value = "sulfuronkeep_door", + }, + { + children = { { - fileId = "195778", - text = "grizzlyhills_rock_01.m2", - value = "grizzlyhills_rock_01.m2", + fileId = "515672", + text = "firelands_sulfurontowerflame.m2", + value = "firelands_sulfurontowerflame.m2", }, + }, + text = "sulfurontowerflame", + value = "sulfurontowerflame", + }, + { + children = { { - fileId = "195779", - text = "grizzlyhills_rock_02.m2", - value = "grizzlyhills_rock_02.m2", + fileId = "518988", + text = "firelands_throne_fx.m2", + value = "firelands_throne_fx.m2", }, + }, + text = "throne_fx", + value = "throne_fx", + }, + { + children = { { - fileId = "195780", - text = "grizzlyhills_rock_03.m2", - value = "grizzlyhills_rock_03.m2", + fileId = "514308", + text = "firelands_destructible_tower01_fx1.m2", + value = "firelands_destructible_tower01_fx1.m2", }, + }, + text = "tower", + value = "tower", + }, + { + children = { { - fileId = "195781", - text = "grizzlyhills_rock_04.m2", - value = "grizzlyhills_rock_04.m2", + fileId = "512929", + text = "firelands_towerflame01.m2", + value = "firelands_towerflame01.m2", }, + }, + text = "towerflame", + value = "towerflame", + }, + { + children = { { - fileId = "195782", - text = "grizzlyhills_rock_large_01.m2", - value = "grizzlyhills_rock_large_01.m2", + fileId = "514069", + text = "firelands_volcano_doodad.m2", + value = "firelands_volcano_doodad.m2", }, { - fileId = "195783", - text = "grizzlyhills_rock_large_02.m2", - value = "grizzlyhills_rock_large_02.m2", + fileId = "523713", + text = "firelands_volcano_doodad_active.m2", + value = "firelands_volcano_doodad_active.m2", }, }, - text = "rocks", - value = "rocks", + text = "volcano", + value = "volcano", }, { children = { { - fileId = "195784", - text = "grizzlemawtermitechunk01.m2", - value = "grizzlemawtermitechunk01.m2", - }, - { - fileId = "195785", - text = "grizzlemawtermitechunk02.m2", - value = "grizzlemawtermitechunk02.m2", + fileId = "524755", + text = "firelands_volcanoeruption_01.m2", + value = "firelands_volcanoeruption_01.m2", }, + }, + text = "volcanoeruption", + value = "volcanoeruption", + }, + { + children = { { - fileId = "195786", - text = "grizzlemawtermitechunk03.m2", - value = "grizzlemawtermitechunk03.m2", + fileId = "514451", + text = "firelands_volcanoexplosion_01.m2", + value = "firelands_volcanoexplosion_01.m2", }, + }, + text = "volcanoexplosion", + value = "volcanoexplosion", + }, + { + children = { { - fileId = "195787", - text = "grizzlyhills_termite_tree.m2", - value = "grizzlyhills_termite_tree.m2", + fileId = "513506", + text = "firelands_webbedcreature_01.m2", + value = "firelands_webbedcreature_01.m2", }, { - fileId = "195790", - text = "termite_rock01.m2", - value = "termite_rock01.m2", + fileId = "513509", + text = "firelands_webbedcreature_02.m2", + value = "firelands_webbedcreature_02.m2", }, { - fileId = "195791", - text = "termite_rock02.m2", - value = "termite_rock02.m2", + fileId = "513511", + text = "firelands_webbedcreature_03.m2", + value = "firelands_webbedcreature_03.m2", }, + }, + text = "webbedcreature", + value = "webbedcreature", + }, + { + children = { { - fileId = "195793", - text = "termite_shaft.m2", - value = "termite_shaft.m2", + fileId = "519040", + text = "firelands_webdoor_01.m2", + value = "firelands_webdoor_01.m2", }, + }, + text = "webdoor", + value = "webdoor", + }, + { + children = { { - fileId = "195794", - text = "termitedust.m2", - value = "termitedust.m2", + fileId = "519554", + text = "firelands_webdoor_frame_01.m2", + value = "firelands_webdoor_frame_01.m2", }, }, - text = "termites", - value = "termites", + text = "webdoor_frame", + value = "webdoor_frame", }, { children = { { - fileId = "195795", - text = "gh_trapperdraping.m2", - value = "gh_trapperdraping.m2", + fileId = "512890", + text = "firelands_spideregg01.m2", + value = "firelands_spideregg01.m2", }, { - fileId = "195800", - text = "trapper_potbellystove_01.m2", - value = "trapper_potbellystove_01.m2", + fileId = "512892", + text = "firelands_spideregg02.m2", + value = "firelands_spideregg02.m2", }, { - fileId = "195801", - text = "trapper_snowshoe_01.m2", - value = "trapper_snowshoe_01.m2", + fileId = "512894", + text = "firelands_spideregg03.m2", + value = "firelands_spideregg03.m2", }, + }, + text = "webs", + value = "webs", + }, + }, + text = "firelands", + value = "firelands", + }, + { + children = { + { + fileId = "418802", + text = "fk_sylvanasstatue.m2", + value = "fk_sylvanasstatue.m2", + }, + }, + text = "forsaken", + value = "forsaken", + }, + { + children = { + { + fileId = "389593", + text = "alliance_submarine.m2", + value = "alliance_submarine.m2", + }, + { + fileId = "443408", + text = "alliance_submarine_animations.m2", + value = "alliance_submarine_animations.m2", + }, + { + fileId = "460731", + text = "alliance_submarine_door.m2", + value = "alliance_submarine_door.m2", + }, + { + fileId = "425210", + text = "alliance_submarine_sealed.m2", + value = "alliance_submarine_sealed.m2", + }, + { + fileId = "467115", + text = "alliance_submarinedoor_bottom.m2", + value = "alliance_submarinedoor_bottom.m2", + }, + { + fileId = "423631", + text = "alliance_taskboard.m2", + value = "alliance_taskboard.m2", + }, + { + fileId = "429102", + text = "alliance_taskboard_pillars.m2", + value = "alliance_taskboard_pillars.m2", + }, + { + fileId = "532597", + text = "axe_2h_war_c_01_quest.m2", + value = "axe_2h_war_c_01_quest.m2", + }, + { + fileId = "353152", + text = "clickable_box.m2", + value = "clickable_box.m2", + }, + { + fileId = "511490", + text = "clickable_box2.m2", + value = "clickable_box2.m2", + }, + { + children = { { - fileId = "195802", - text = "trapper_wall01.m2", - value = "trapper_wall01.m2", + fileId = "532600", + text = "g_fireworks_darkmoonfaire.m2", + value = "g_fireworks_darkmoonfaire.m2", }, + }, + text = "darkmoonfaire", + value = "darkmoonfaire", + }, + { + fileId = "376276", + text = "dinofishingpole.m2", + value = "dinofishingpole.m2", + }, + { + children = { { - fileId = "195803", - text = "trapper_wall02.m2", - value = "trapper_wall02.m2", + fileId = "372762", + text = "elementium_ore_01.m2", + value = "elementium_ore_01.m2", }, { - fileId = "195804", - text = "trapper_wall03.m2", - value = "trapper_wall03.m2", + fileId = "372763", + text = "elementium_ore_02.m2", + value = "elementium_ore_02.m2", }, { - fileId = "195805", - text = "trapper_wall04.m2", - value = "trapper_wall04.m2", + fileId = "372764", + text = "elementium_ore_03.m2", + value = "elementium_ore_03.m2", }, { - fileId = "195806", - text = "trapper_wall05.m2", - value = "trapper_wall05.m2", + fileId = "372765", + text = "elementium_ore_04.m2", + value = "elementium_ore_04.m2", }, + }, + text = "elementiumore", + value = "elementiumore", + }, + { + fileId = "429321", + text = "flying_horde_zeppelin.m2", + value = "flying_horde_zeppelin.m2", + }, + { + fileId = "429367", + text = "flying_zeppelin.m2", + value = "flying_zeppelin.m2", + }, + { + fileId = "433288", + text = "goblin_tesla.m2", + value = "goblin_tesla.m2", + }, + { + fileId = "389594", + text = "horde_submarine.m2", + value = "horde_submarine.m2", + }, + { + fileId = "426007", + text = "horde_submarine_tail.m2", + value = "horde_submarine_tail.m2", + }, + { + fileId = "467116", + text = "horde_submarinedoor_bottom.m2", + value = "horde_submarinedoor_bottom.m2", + }, + { + fileId = "418794", + text = "horde_taskboard.m2", + value = "horde_taskboard.m2", + }, + { + fileId = "429104", + text = "horde_taskboard_pillars.m2", + value = "horde_taskboard_pillars.m2", + }, + { + children = { { - fileId = "195807", - text = "trapperfence_01.m2", - value = "trapperfence_01.m2", + fileId = "516005", + text = "icecream_01.m2", + value = "icecream_01.m2", }, { - fileId = "195808", - text = "trapperfence_02.m2", - value = "trapperfence_02.m2", + fileId = "516007", + text = "icecream_02.m2", + value = "icecream_02.m2", }, { - fileId = "195809", - text = "trapperfence_03.m2", - value = "trapperfence_03.m2", + fileId = "516010", + text = "icecream_03.m2", + value = "icecream_03.m2", }, { - fileId = "195810", - text = "trapperfence_large01.m2", - value = "trapperfence_large01.m2", + fileId = "516013", + text = "icecream_04.m2", + value = "icecream_04.m2", }, + }, + text = "icecream", + value = "icecream", + }, + { + fileId = "426975", + text = "lavatube_01.m2", + value = "lavatube_01.m2", + }, + { + fileId = "426976", + text = "lavatube_02.m2", + value = "lavatube_02.m2", + }, + { + children = { { - fileId = "195811", - text = "trapperfence_large03.m2", - value = "trapperfence_large03.m2", + fileId = "396581", + text = "maelstrom.m2", + value = "maelstrom.m2", }, { - fileId = "195812", - text = "trapperlamppost_01.m2", - value = "trapperlamppost_01.m2", + fileId = "536802", + text = "maelstrom_deathwingfight.m2", + value = "maelstrom_deathwingfight.m2", }, { - fileId = "195813", - text = "trapperlamppost_01_unlit.m2", - value = "trapperlamppost_01_unlit.m2", + fileId = "575011", + text = "maelstrom_deathwingsteam.m2", + value = "maelstrom_deathwingsteam.m2", }, { - fileId = "195814", - text = "trappersignpost.m2", - value = "trappersignpost.m2", + fileId = "431042", + text = "maelstrom_lightning01.m2", + value = "maelstrom_lightning01.m2", }, { - fileId = "195815", - text = "trappersignpost_sign.m2", - value = "trappersignpost_sign.m2", + fileId = "431043", + text = "maelstrom_lightning02.m2", + value = "maelstrom_lightning02.m2", }, - }, - text = "trappers", - value = "trappers", - }, - { - children = { { - fileId = "195816", - text = "gh_bridgelightbeams.m2", - value = "gh_bridgelightbeams.m2", + fileId = "410353", + text = "maelstrom_ocean01.m2", + value = "maelstrom_ocean01.m2", }, { - fileId = "195817", - text = "grizzly_amberpinetree.m2", - value = "grizzly_amberpinetree.m2", + fileId = "410354", + text = "maelstrom_ocean02.m2", + value = "maelstrom_ocean02.m2", }, { - fileId = "195822", - text = "grizzlyhills_blurpleflower01.m2", - value = "grizzlyhills_blurpleflower01.m2", + fileId = "410355", + text = "maelstrom_ocean03.m2", + value = "maelstrom_ocean03.m2", }, { - fileId = "195823", - text = "grizzlyhills_blurpleflower02.m2", - value = "grizzlyhills_blurpleflower02.m2", + fileId = "410356", + text = "maelstrom_ocean04.m2", + value = "maelstrom_ocean04.m2", }, { - fileId = "195831", - text = "grizzlyhills_bush01.m2", - value = "grizzlyhills_bush01.m2", + fileId = "575431", + text = "maelstrom_sunrays01.m2", + value = "maelstrom_sunrays01.m2", }, { - fileId = "195832", - text = "grizzlyhills_bush02.m2", - value = "grizzlyhills_bush02.m2", + fileId = "403842", + text = "maelstrom_temp.m2", + value = "maelstrom_temp.m2", }, { - fileId = "195833", - text = "grizzlyhills_bush03.m2", - value = "grizzlyhills_bush03.m2", + fileId = "448559", + text = "maelstrommagicvortex.m2", + value = "maelstrommagicvortex.m2", }, { - fileId = "195834", - text = "grizzlyhills_bush04.m2", - value = "grizzlyhills_bush04.m2", + fileId = "410352", + text = "maelstromsmallsplash01.m2", + value = "maelstromsmallsplash01.m2", }, { - fileId = "195835", - text = "grizzlyhills_bush06.m2", - value = "grizzlyhills_bush06.m2", + fileId = "459018", + text = "maelstromsmallsplash02.m2", + value = "maelstromsmallsplash02.m2", }, { - fileId = "195840", - text = "grizzlyhills_clovers01.m2", - value = "grizzlyhills_clovers01.m2", + fileId = "459019", + text = "maelstromsmallsplash03.m2", + value = "maelstromsmallsplash03.m2", }, + }, + text = "maelstrom", + value = "maelstrom", + }, + { + fileId = "433636", + text = "metal_ring_01.m2", + value = "metal_ring_01.m2", + }, + { + fileId = "439139", + text = "nd_hgunship_chain.m2", + value = "nd_hgunship_chain.m2", + }, + { + fileId = "439140", + text = "nd_hgunship_door.m2", + value = "nd_hgunship_door.m2", + }, + { + fileId = "439142", + text = "nd_hgunship_plank.m2", + value = "nd_hgunship_plank.m2", + }, + { + fileId = "458154", + text = "nightelfglaivethrowburned.m2", + value = "nightelfglaivethrowburned.m2", + }, + { + fileId = "458156", + text = "nightelfglaivethrowburning.m2", + value = "nightelfglaivethrowburning.m2", + }, + { + fileId = "376277", + text = "pulsatingplant.m2", + value = "pulsatingplant.m2", + }, + { + children = { { - fileId = "195841", - text = "grizzlyhills_clovers02.m2", - value = "grizzlyhills_clovers02.m2", + fileId = "409554", + text = "rustyspeargunblue.m2", + value = "rustyspeargunblue.m2", }, { - fileId = "195842", - text = "grizzlyhills_clovers03.m2", - value = "grizzlyhills_clovers03.m2", + fileId = "409557", + text = "rustyspeargungreen.m2", + value = "rustyspeargungreen.m2", }, { - fileId = "195845", - text = "grizzlyhills_goldshrubs01.m2", - value = "grizzlyhills_goldshrubs01.m2", + fileId = "409560", + text = "rustyspeargunpurple.m2", + value = "rustyspeargunpurple.m2", }, { - fileId = "195847", - text = "grizzlyhills_greenflower01.m2", - value = "grizzlyhills_greenflower01.m2", + fileId = "409563", + text = "rustyspeargunred.m2", + value = "rustyspeargunred.m2", }, { - fileId = "195848", - text = "grizzlyhills_greenflower02.m2", - value = "grizzlyhills_greenflower02.m2", + fileId = "409564", + text = "rustyspeargunrust.m2", + value = "rustyspeargunrust.m2", }, + }, + text = "rustyspeargun", + value = "rustyspeargun", + }, + { + fileId = "440410", + text = "seahorsestand.m2", + value = "seahorsestand.m2", + }, + { + fileId = "442505", + text = "sharktooth.m2", + value = "sharktooth.m2", + }, + { + fileId = "394987", + text = "spyglass.m2", + value = "spyglass.m2", + }, + { + fileId = "429199", + text = "transport_pirate_ship_sails.m2", + value = "transport_pirate_ship_sails.m2", + }, + { + fileId = "457666", + text = "twilightcloudvortex.m2", + value = "twilightcloudvortex.m2", + }, + { + children = { { - fileId = "195854", - text = "grizzlyhills_log01.m2", - value = "grizzlyhills_log01.m2", + fileId = "391438", + text = "rustyspeargun.m2", + value = "rustyspeargun.m2", }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "generic", + value = "generic", + }, + { + children = { + { + children = { { - fileId = "195856", - text = "grizzlyhills_log02.m2", - value = "grizzlyhills_log02.m2", + fileId = "402204", + text = "gilneas_alliance_banner_01.m2", + value = "gilneas_alliance_banner_01.m2", }, { - fileId = "195858", - text = "grizzlyhills_log03.m2", - value = "grizzlyhills_log03.m2", + fileId = "402205", + text = "gilneas_horde_banner_01.m2", + value = "gilneas_horde_banner_01.m2", }, + }, + text = "banners", + value = "banners", + }, + { + children = { { - fileId = "195859", - text = "grizzlyhills_log04.m2", - value = "grizzlyhills_log04.m2", + fileId = "294452", + text = "gilneas_bramble_01.m2", + value = "gilneas_bramble_01.m2", }, { - fileId = "195860", - text = "grizzlyhills_log05.m2", - value = "grizzlyhills_log05.m2", + fileId = "294453", + text = "gilneas_bramble_02.m2", + value = "gilneas_bramble_02.m2", }, { - fileId = "195863", - text = "grizzlyhills_mushroom01.m2", - value = "grizzlyhills_mushroom01.m2", + fileId = "294454", + text = "gilneas_bramble_03.m2", + value = "gilneas_bramble_03.m2", }, { - fileId = "195865", - text = "grizzlyhills_mushroom02.m2", - value = "grizzlyhills_mushroom02.m2", + fileId = "294455", + text = "gilneas_bramble_branch01.m2", + value = "gilneas_bramble_branch01.m2", }, { - fileId = "195866", - text = "grizzlyhills_mushroom03.m2", - value = "grizzlyhills_mushroom03.m2", + fileId = "294456", + text = "gilneas_bramble_branch02.m2", + value = "gilneas_bramble_branch02.m2", }, { - fileId = "195867", - text = "grizzlyhills_mushroomgroup01.m2", - value = "grizzlyhills_mushroomgroup01.m2", + fileId = "254732", + text = "gilneas_bush_01.m2", + value = "gilneas_bush_01.m2", }, { - fileId = "195868", - text = "grizzlyhills_mushroomgroup02.m2", - value = "grizzlyhills_mushroomgroup02.m2", + fileId = "254733", + text = "gilneas_bush_02.m2", + value = "gilneas_bush_02.m2", }, { - fileId = "195869", - text = "grizzlyhills_mushroomgroup03.m2", - value = "grizzlyhills_mushroomgroup03.m2", + fileId = "254736", + text = "gilneas_bush_03.m2", + value = "gilneas_bush_03.m2", }, { - fileId = "195874", - text = "grizzlyhills_redishflower01.m2", - value = "grizzlyhills_redishflower01.m2", + fileId = "254737", + text = "gilneas_bush_04.m2", + value = "gilneas_bush_04.m2", }, { - fileId = "195875", - text = "grizzlyhills_redishflower02.m2", - value = "grizzlyhills_redishflower02.m2", + fileId = "254738", + text = "gilneas_bush_05.m2", + value = "gilneas_bush_05.m2", }, { - fileId = "195877", - text = "grizzlyhills_root01.m2", - value = "grizzlyhills_root01.m2", + fileId = "254739", + text = "gilneas_bush_06.m2", + value = "gilneas_bush_06.m2", }, { - fileId = "195878", - text = "grizzlyhills_root02.m2", - value = "grizzlyhills_root02.m2", + fileId = "304419", + text = "gilneas_bush_dark_01.m2", + value = "gilneas_bush_dark_01.m2", }, { - fileId = "195879", - text = "grizzlyhills_root03.m2", - value = "grizzlyhills_root03.m2", + fileId = "304420", + text = "gilneas_bush_dark_02.m2", + value = "gilneas_bush_dark_02.m2", }, { - fileId = "195880", - text = "grizzlyhills_root04.m2", - value = "grizzlyhills_root04.m2", + fileId = "303863", + text = "gilneas_bush_green_01.m2", + value = "gilneas_bush_green_01.m2", }, { - fileId = "195883", - text = "grizzlyhills_ropetree01.m2", - value = "grizzlyhills_ropetree01.m2", + fileId = "303864", + text = "gilneas_bush_green_02.m2", + value = "gilneas_bush_green_02.m2", }, { - fileId = "195885", - text = "grizzlyhills_sapling.m2", - value = "grizzlyhills_sapling.m2", + fileId = "311068", + text = "gilneas_bush_purplerose.m2", + value = "gilneas_bush_purplerose.m2", }, { - fileId = "195887", - text = "grizzlyhills_shrubs01.m2", - value = "grizzlyhills_shrubs01.m2", + fileId = "311069", + text = "gilneas_bush_whiterose.m2", + value = "gilneas_bush_whiterose.m2", }, { - fileId = "195888", - text = "grizzlyhills_shrubs02.m2", - value = "grizzlyhills_shrubs02.m2", + fileId = "326435", + text = "gilneas_cattails01.m2", + value = "gilneas_cattails01.m2", }, { - fileId = "195889", - text = "grizzlyhills_shrubs03.m2", - value = "grizzlyhills_shrubs03.m2", + fileId = "305382", + text = "gilneas_corn_01.m2", + value = "gilneas_corn_01.m2", }, { - fileId = "195890", - text = "grizzlyhills_tree01.m2", - value = "grizzlyhills_tree01.m2", + fileId = "305223", + text = "gilneas_cornbramble_01.m2", + value = "gilneas_cornbramble_01.m2", }, { - fileId = "195891", - text = "grizzlyhills_tree02.m2", - value = "grizzlyhills_tree02.m2", + fileId = "304905", + text = "gilneas_cornstalk_01.m2", + value = "gilneas_cornstalk_01.m2", }, { - fileId = "195892", - text = "grizzlyhills_tree03.m2", - value = "grizzlyhills_tree03.m2", + fileId = "304943", + text = "gilneas_cornstalkpatch_01.m2", + value = "gilneas_cornstalkpatch_01.m2", }, { - fileId = "195893", - text = "grizzlyhills_tree04.m2", - value = "grizzlyhills_tree04.m2", + fileId = "303889", + text = "gilneas_groundfog_01.m2", + value = "gilneas_groundfog_01.m2", }, { - fileId = "195894", - text = "grizzlyhills_tree05.m2", - value = "grizzlyhills_tree05.m2", + fileId = "306211", + text = "gilneas_groundfog_02.m2", + value = "gilneas_groundfog_02.m2", }, { - fileId = "195895", - text = "grizzlyhills_tree06.m2", - value = "grizzlyhills_tree06.m2", + fileId = "303866", + text = "gilneas_lumpygrass01.m2", + value = "gilneas_lumpygrass01.m2", }, { - fileId = "195896", - text = "grizzlyhills_tree07.m2", - value = "grizzlyhills_tree07.m2", + fileId = "326437", + text = "gilneas_marshgrass01.m2", + value = "gilneas_marshgrass01.m2", }, { - fileId = "195897", - text = "grizzlyhills_tree08.m2", - value = "grizzlyhills_tree08.m2", + fileId = "254740", + text = "gilneas_rose_01.m2", + value = "gilneas_rose_01.m2", }, { - fileId = "195898", - text = "grizzlyhills_tree09.m2", - value = "grizzlyhills_tree09.m2", + fileId = "254741", + text = "gilneas_rose_02.m2", + value = "gilneas_rose_02.m2", }, { - fileId = "195899", - text = "grizzlyhills_tree10.m2", - value = "grizzlyhills_tree10.m2", + fileId = "304951", + text = "gilneas_thorn_vine_bush_01.m2", + value = "gilneas_thorn_vine_bush_01.m2", }, { - fileId = "195900", - text = "grizzlyhills_tree11.m2", - value = "grizzlyhills_tree11.m2", + fileId = "304953", + text = "gilneas_thorn_vine_bush_02.m2", + value = "gilneas_thorn_vine_bush_02.m2", }, { - fileId = "195901", - text = "grizzlyhills_tree12.m2", - value = "grizzlyhills_tree12.m2", + fileId = "304954", + text = "gilneas_thorn_vine_bush_03.m2", + value = "gilneas_thorn_vine_bush_03.m2", }, { - fileId = "195903", - text = "grizzlyhills_treetrunk01.m2", - value = "grizzlyhills_treetrunk01.m2", + fileId = "304684", + text = "gilneas_vines_01.m2", + value = "gilneas_vines_01.m2", }, { - fileId = "195904", - text = "grizzlyhills_treetrunk02.m2", - value = "grizzlyhills_treetrunk02.m2", + fileId = "304685", + text = "gilneas_vines_02.m2", + value = "gilneas_vines_02.m2", }, { - fileId = "195905", - text = "grizzlyhills_treetrunk03.m2", - value = "grizzlyhills_treetrunk03.m2", + fileId = "304687", + text = "gilneas_vines_03.m2", + value = "gilneas_vines_03.m2", }, { - fileId = "195906", - text = "grizzlyhills_treetrunk04.m2", - value = "grizzlyhills_treetrunk04.m2", + fileId = "304688", + text = "gilneas_vines_04.m2", + value = "gilneas_vines_04.m2", }, { - fileId = "195907", - text = "grizzlyhills_treetrunk05.m2", - value = "grizzlyhills_treetrunk05.m2", + fileId = "254268", + text = "grassclump01.m2", + value = "grassclump01.m2", }, { - fileId = "195908", - text = "grizzlyhills_treetrunk06.m2", - value = "grizzlyhills_treetrunk06.m2", + fileId = "254269", + text = "grassclump02.m2", + value = "grassclump02.m2", }, { - fileId = "195914", - text = "grizzlyhills_tunnelbridge01.m2", - value = "grizzlyhills_tunnelbridge01.m2", + fileId = "254271", + text = "grassclump03.m2", + value = "grassclump03.m2", }, { - fileId = "195917", - text = "grizzlyhills_tunneltree.m2", - value = "grizzlyhills_tunneltree.m2", + fileId = "254272", + text = "grassclump04.m2", + value = "grassclump04.m2", }, { - fileId = "195921", - text = "grizzlyhills_yellowflower01.m2", - value = "grizzlyhills_yellowflower01.m2", + fileId = "253385", + text = "thornbush01.m2", + value = "thornbush01.m2", }, { - fileId = "195922", - text = "grizzlyhills_yellowflower02.m2", - value = "grizzlyhills_yellowflower02.m2", + fileId = "253386", + text = "thornbush02.m2", + value = "thornbush02.m2", }, { - fileId = "195924", - text = "grizzlyhillshuge_tree.m2", - value = "grizzlyhillshuge_tree.m2", + fileId = "253387", + text = "thornbush03.m2", + value = "thornbush03.m2", + }, + { + fileId = "253388", + text = "thornbush04.m2", + value = "thornbush04.m2", }, }, - text = "trees", - value = "trees", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "195932", - text = "grizzlyhillslogmachine01.m2", - value = "grizzlyhillslogmachine01.m2", - }, - { - fileId = "195933", - text = "logrun_gate.m2", - value = "logrun_gate.m2", + fileId = "368816", + text = "gilneas_cathedralwindow_large.m2", + value = "gilneas_cathedralwindow_large.m2", }, { - fileId = "195935", - text = "logrun_pump01.m2", - value = "logrun_pump01.m2", + fileId = "368817", + text = "gilneas_cathedralwindow_small_01.m2", + value = "gilneas_cathedralwindow_small_01.m2", }, { - fileId = "195936", - text = "logrun_pump02.m2", - value = "logrun_pump02.m2", + fileId = "368818", + text = "gilneas_cathedralwindow_small_02.m2", + value = "gilneas_cathedralwindow_small_02.m2", }, + }, + text = "cathedralwindows", + value = "cathedralwindows", + }, + { + children = { { - fileId = "195937", - text = "logrun_pumpelevator01.m2", - value = "logrun_pumpelevator01.m2", + fileId = "253350", + text = "cobblestones01.m2", + value = "cobblestones01.m2", }, { - fileId = "243769", - text = "logrun_pumpelevator02.m2", - value = "logrun_pumpelevator02.m2", + fileId = "253351", + text = "cobblestones02.m2", + value = "cobblestones02.m2", }, { - fileId = "243770", - text = "logrun_pumpelevator03.m2", - value = "logrun_pumpelevator03.m2", + fileId = "253352", + text = "cobblestones03.m2", + value = "cobblestones03.m2", }, { - fileId = "195938", - text = "nd_grizzly_logruns_water01.m2", - value = "nd_grizzly_logruns_water01.m2", + fileId = "253353", + text = "cobblestones04.m2", + value = "cobblestones04.m2", }, { - fileId = "195939", - text = "nd_grizzly_logruns_water02.m2", - value = "nd_grizzly_logruns_water02.m2", + fileId = "253354", + text = "cobblestones05.m2", + value = "cobblestones05.m2", }, - }, - text = "ventureco", - value = "ventureco", - }, - }, - text = "grizzlyhills", - value = "grizzlyhills", - }, - { - children = { - { - children = { { - fileId = "195942", - text = "tempvrykulbridge.m2", - value = "tempvrykulbridge.m2", + fileId = "253355", + text = "cobblestones06.m2", + value = "cobblestones06.m2", }, - }, - text = "bridges", - value = "bridges", - }, - { - children = { { - fileId = "195943", - text = "hfjord_coastcliffwaterfall_01.m2", - value = "hfjord_coastcliffwaterfall_01.m2", + fileId = "253356", + text = "cobblestones07.m2", + value = "cobblestones07.m2", }, { - fileId = "195944", - text = "hfjord_coastcliffwaterfall_02.m2", - value = "hfjord_coastcliffwaterfall_02.m2", + fileId = "253357", + text = "cobblestones08.m2", + value = "cobblestones08.m2", }, { - fileId = "195945", - text = "hfjord_coastcliffwaterfall_03.m2", - value = "hfjord_coastcliffwaterfall_03.m2", + fileId = "304689", + text = "cobblestones_dark_01.m2", + value = "cobblestones_dark_01.m2", }, - }, - text = "coastcliff", - value = "coastcliff", - }, - { - children = { { - fileId = "195946", - text = "burntground01.m2", - value = "burntground01.m2", + fileId = "304690", + text = "cobblestones_dark_02.m2", + value = "cobblestones_dark_02.m2", }, { - fileId = "195947", - text = "burntstonetree01_vfx.m2", - value = "burntstonetree01_vfx.m2", + fileId = "304691", + text = "cobblestones_dark_03.m2", + value = "cobblestones_dark_03.m2", }, { - fileId = "195948", - text = "burntstonetree01_vfx2.m2", - value = "burntstonetree01_vfx2.m2", + fileId = "304692", + text = "cobblestones_dark_04.m2", + value = "cobblestones_dark_04.m2", }, { - fileId = "195949", - text = "burntstonetree07_vfx.m2", - value = "burntstonetree07_vfx.m2", + fileId = "304693", + text = "cobblestones_dark_05.m2", + value = "cobblestones_dark_05.m2", }, { - fileId = "195950", - text = "burntstonetree08_vfx.m2", - value = "burntstonetree08_vfx.m2", + fileId = "304694", + text = "cobblestones_dark_06.m2", + value = "cobblestones_dark_06.m2", }, { - fileId = "195951", - text = "burntstonetreefireflies_vfx.m2", - value = "burntstonetreefireflies_vfx.m2", + fileId = "304695", + text = "cobblestones_dark_07.m2", + value = "cobblestones_dark_07.m2", }, { - fileId = "195952", - text = "burntstonetreesmoke_vfx.m2", - value = "burntstonetreesmoke_vfx.m2", + fileId = "304707", + text = "cobblestones_dark_08.m2", + value = "cobblestones_dark_08.m2", }, }, - text = "firefx", - value = "firefx", + text = "cobblestones", + value = "cobblestones", }, { children = { { - fileId = "195956", - text = "hfjord_fog_01.m2", - value = "hfjord_fog_01.m2", - }, - { - fileId = "195958", - text = "hfjord_fog_02.m2", - value = "hfjord_fog_02.m2", - }, - { - fileId = "195960", - text = "hfjord_fog_03.m2", - value = "hfjord_fog_03.m2", + fileId = "533716", + text = "gnleaves01.m2", + value = "gnleaves01.m2", }, { - fileId = "195961", - text = "hfjord_fog_04.m2", - value = "hfjord_fog_04.m2", + fileId = "533718", + text = "gnleaves02.m2", + value = "gnleaves02.m2", }, { - fileId = "243772", - text = "hfjord_fog_05.m2", - value = "hfjord_fog_05.m2", + fileId = "533720", + text = "gnleaves03.m2", + value = "gnleaves03.m2", }, }, - text = "fog", - value = "fog", + text = "detaildoodads", + value = "detaildoodads", }, { children = { { - fileId = "195969", - text = "apothecary_fx.m2", - value = "apothecary_fx.m2", + fileId = "304128", + text = "gilneas_fountain01.m2", + value = "gilneas_fountain01.m2", + }, + { + fileId = "304129", + text = "gilneas_fountain02.m2", + value = "gilneas_fountain02.m2", + }, + { + fileId = "304245", + text = "gilneas_fountain03.m2", + value = "gilneas_fountain03.m2", + }, + { + fileId = "304130", + text = "gilneas_fountainbroken01.m2", + value = "gilneas_fountainbroken01.m2", }, }, - text = "forsaken", - value = "forsaken", - }, - { - fileId = "195971", - text = "hf_elevator_gate.m2", - value = "hf_elevator_gate.m2", - }, - { - fileId = "195972", - text = "hf_elevator_lift.m2", - value = "hf_elevator_lift.m2", - }, - { - fileId = "195973", - text = "hf_elevator_lift_02.m2", - value = "hf_elevator_lift_02.m2", - }, - { - fileId = "195976", - text = "hfjord_bush_01.m2", - value = "hfjord_bush_01.m2", - }, - { - fileId = "195978", - text = "hfjord_bush_02.m2", - value = "hfjord_bush_02.m2", - }, - { - fileId = "195980", - text = "hfjord_bush_03.m2", - value = "hfjord_bush_03.m2", - }, - { - fileId = "195983", - text = "hfjord_bush_04.m2", - value = "hfjord_bush_04.m2", - }, - { - fileId = "195985", - text = "hfjord_bush_05.m2", - value = "hfjord_bush_05.m2", - }, - { - fileId = "195988", - text = "hfjord_bush_snow_04.m2", - value = "hfjord_bush_snow_04.m2", - }, - { - fileId = "195989", - text = "hfjord_canyontree_01.m2", - value = "hfjord_canyontree_01.m2", - }, - { - fileId = "195990", - text = "hfjord_canyontree_02.m2", - value = "hfjord_canyontree_02.m2", - }, - { - fileId = "195991", - text = "hfjord_canyontree_03.m2", - value = "hfjord_canyontree_03.m2", - }, - { - fileId = "195995", - text = "hfjord_canyontreestump_01.m2", - value = "hfjord_canyontreestump_01.m2", - }, - { - fileId = "195996", - text = "hfjord_canyontreestump_02.m2", - value = "hfjord_canyontreestump_02.m2", - }, - { - fileId = "195998", - text = "hfjord_coastbush_01.m2", - value = "hfjord_coastbush_01.m2", - }, - { - fileId = "196000", - text = "hfjord_coastbush_02.m2", - value = "hfjord_coastbush_02.m2", - }, - { - fileId = "196001", - text = "hfjord_dryadshrine01.m2", - value = "hfjord_dryadshrine01.m2", - }, - { - fileId = "196002", - text = "hfjord_dryadshrine02.m2", - value = "hfjord_dryadshrine02.m2", - }, - { - fileId = "196006", - text = "hfjord_roots_01.m2", - value = "hfjord_roots_01.m2", - }, - { - fileId = "196007", - text = "hfjord_roots_02.m2", - value = "hfjord_roots_02.m2", - }, - { - fileId = "196008", - text = "hfjord_roots_03.m2", - value = "hfjord_roots_03.m2", - }, - { - fileId = "196009", - text = "hfjord_tree_01.m2", - value = "hfjord_tree_01.m2", - }, - { - fileId = "196010", - text = "hfjord_tree_01_lowpoly.m2", - value = "hfjord_tree_01_lowpoly.m2", - }, - { - fileId = "196011", - text = "hfjord_tree_02.m2", - value = "hfjord_tree_02.m2", - }, - { - fileId = "196012", - text = "hfjord_tree_02_lowpoly.m2", - value = "hfjord_tree_02_lowpoly.m2", - }, - { - fileId = "196013", - text = "hfjord_tree_03.m2", - value = "hfjord_tree_03.m2", - }, - { - fileId = "196014", - text = "hfjord_tree_03_lowpoly.m2", - value = "hfjord_tree_03_lowpoly.m2", - }, - { - fileId = "196015", - text = "hfjord_tree_04.m2", - value = "hfjord_tree_04.m2", - }, - { - fileId = "196016", - text = "hfjord_tree_04_lowpoly.m2", - value = "hfjord_tree_04_lowpoly.m2", - }, - { - fileId = "196017", - text = "hfjord_tree_05.m2", - value = "hfjord_tree_05.m2", - }, - { - fileId = "196018", - text = "hfjord_tree_06.m2", - value = "hfjord_tree_06.m2", - }, - { - fileId = "196019", - text = "hfjord_tree_mid_01.m2", - value = "hfjord_tree_mid_01.m2", - }, - { - fileId = "196020", - text = "hfjord_tree_mid_02.m2", - value = "hfjord_tree_mid_02.m2", - }, - { - fileId = "196021", - text = "hfjord_tree_mid_03.m2", - value = "hfjord_tree_mid_03.m2", - }, - { - fileId = "196022", - text = "hfjord_tree_mid_04.m2", - value = "hfjord_tree_mid_04.m2", - }, - { - fileId = "196023", - text = "hfjord_tree_mid_04_lowpoly.m2", - value = "hfjord_tree_mid_04_lowpoly.m2", - }, - { - fileId = "196024", - text = "hfjord_tree_mid_05.m2", - value = "hfjord_tree_mid_05.m2", - }, - { - fileId = "196025", - text = "hfjord_tree_mid_06.m2", - value = "hfjord_tree_mid_06.m2", - }, - { - fileId = "196026", - text = "hfjord_tree_mid_07.m2", - value = "hfjord_tree_mid_07.m2", + text = "fountains", + value = "fountains", }, { - fileId = "196027", - text = "hfjord_tree_snow_01.m2", - value = "hfjord_tree_snow_01.m2", + fileId = "318593", + text = "gilneas_barricade_collision.m2", + value = "gilneas_barricade_collision.m2", }, { - fileId = "196028", - text = "hfjord_tree_snow_05.m2", - value = "hfjord_tree_snow_05.m2", + fileId = "391840", + text = "gilneas_city_waterfalls_01.m2", + value = "gilneas_city_waterfalls_01.m2", }, { - fileId = "196029", - text = "hfjord_treefallen_01.m2", - value = "hfjord_treefallen_01.m2", + children = { + { + fileId = "313089", + text = "gilneas_mosquito_01.m2", + value = "gilneas_mosquito_01.m2", + }, + { + fileId = "416674", + text = "gilneas_mosquito_brown_01.m2", + value = "gilneas_mosquito_brown_01.m2", + }, + }, + text = "insects", + value = "insects", }, { - fileId = "196030", - text = "hfjord_treestump_01.m2", - value = "hfjord_treestump_01.m2", + children = { + { + fileId = "343459", + text = "gilneas_lilypads01.m2", + value = "gilneas_lilypads01.m2", + }, + { + fileId = "343460", + text = "gilneas_lilypads02.m2", + value = "gilneas_lilypads02.m2", + }, + }, + text = "lilypads", + value = "lilypads", }, { children = { { - fileId = "196036", - text = "hf_waterfall_cap_01.m2", - value = "hf_waterfall_cap_01.m2", + fileId = "253366", + text = "gn_large_rocks_01.m2", + value = "gn_large_rocks_01.m2", }, { - fileId = "196039", - text = "hfjord_coastrock_01.m2", - value = "hfjord_coastrock_01.m2", + fileId = "253367", + text = "gn_large_rocks_02.m2", + value = "gn_large_rocks_02.m2", }, { - fileId = "196040", - text = "hfjord_coastrock_02.m2", - value = "hfjord_coastrock_02.m2", + fileId = "253368", + text = "gn_large_rocks_03.m2", + value = "gn_large_rocks_03.m2", }, { - fileId = "196041", - text = "hfjord_coastrock_03.m2", - value = "hfjord_coastrock_03.m2", + fileId = "253369", + text = "gn_large_rocks_04.m2", + value = "gn_large_rocks_04.m2", }, { - fileId = "196042", - text = "hfjord_coastrock_04.m2", - value = "hfjord_coastrock_04.m2", + fileId = "253370", + text = "gn_large_rocks_05.m2", + value = "gn_large_rocks_05.m2", }, { - fileId = "196043", - text = "hfjord_coastrock_05.m2", - value = "hfjord_coastrock_05.m2", + fileId = "253371", + text = "gn_large_rocks_06.m2", + value = "gn_large_rocks_06.m2", }, { - fileId = "196044", - text = "hfjord_forestrock_01.m2", - value = "hfjord_forestrock_01.m2", + fileId = "253303", + text = "gn_rocks_01.m2", + value = "gn_rocks_01.m2", }, { - fileId = "196045", - text = "hfjord_forestrock_02.m2", - value = "hfjord_forestrock_02.m2", + fileId = "253304", + text = "gn_rocks_02.m2", + value = "gn_rocks_02.m2", }, { - fileId = "196046", - text = "hfjord_forestrock_03.m2", - value = "hfjord_forestrock_03.m2", + fileId = "253305", + text = "gn_rocks_03.m2", + value = "gn_rocks_03.m2", }, { - fileId = "196047", - text = "hfjord_forestrock_04.m2", - value = "hfjord_forestrock_04.m2", + fileId = "253306", + text = "gn_rocks_04.m2", + value = "gn_rocks_04.m2", }, { - fileId = "196048", - text = "hfjord_forestrock_05.m2", - value = "hfjord_forestrock_05.m2", + fileId = "253307", + text = "gn_rocks_05.m2", + value = "gn_rocks_05.m2", }, { - fileId = "196049", - text = "hfjord_forestrock_cluster_01.m2", - value = "hfjord_forestrock_cluster_01.m2", + fileId = "253308", + text = "gn_rocks_06.m2", + value = "gn_rocks_06.m2", }, }, text = "rocks", @@ -89700,6620 +125545,14271 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "196063", - text = "titanhead_waterfall.m2", - value = "titanhead_waterfall.m2", - }, - }, - text = "titanstatues", - value = "titanstatues", - }, - }, - text = "howlingfjord", - value = "howlingfjord", - }, - { - children = { - { - children = { - { - fileId = "243773", - text = "ags_bomb.m2", - value = "ags_bomb.m2", + fileId = "253358", + text = "stonewall01.m2", + value = "stonewall01.m2", }, { - fileId = "243774", - text = "ags_bombholder.m2", - value = "ags_bombholder.m2", + fileId = "253359", + text = "stonewall02.m2", + value = "stonewall02.m2", }, { - fileId = "243776", - text = "ags_brasscannon.m2", - value = "ags_brasscannon.m2", + fileId = "253341", + text = "stonewall03.m2", + value = "stonewall03.m2", }, { - fileId = "243778", - text = "ags_engines.m2", - value = "ags_engines.m2", + fileId = "253342", + text = "stonewall04.m2", + value = "stonewall04.m2", }, { - fileId = "307762", - text = "ags_engines_bg.m2", - value = "ags_engines_bg.m2", + fileId = "253343", + text = "stonewall05.m2", + value = "stonewall05.m2", }, { - fileId = "243780", - text = "ags_hazardlight_yellow.m2", - value = "ags_hazardlight_yellow.m2", + fileId = "253344", + text = "stonewall06.m2", + value = "stonewall06.m2", }, }, - text = "alliance_gunship", - value = "alliance_gunship", + text = "stonewalls", + value = "stonewalls", }, { children = { { - fileId = "331694", - text = "icecrown_frostmourne_altar.m2", - value = "icecrown_frostmourne_altar.m2", + fileId = "293923", + text = "gilneas_treethorns01.m2", + value = "gilneas_treethorns01.m2", }, - }, - text = "altar", - value = "altar", - }, - { - children = { { - fileId = "340503", - text = "icecrown_bloodchandelier_01.m2", - value = "icecrown_bloodchandelier_01.m2", + fileId = "293924", + text = "gilneas_treethorns02.m2", + value = "gilneas_treethorns02.m2", }, { - fileId = "341529", - text = "icecrown_bloodprince_banner.m2", - value = "icecrown_bloodprince_banner.m2", + fileId = "293925", + text = "gilneas_treethorns03.m2", + value = "gilneas_treethorns03.m2", }, { - fileId = "349239", - text = "icecrown_bloodprince_banner_02.m2", - value = "icecrown_bloodprince_banner_02.m2", + fileId = "293926", + text = "gilneas_treethorns04.m2", + value = "gilneas_treethorns04.m2", }, { - fileId = "330977", - text = "icecrown_bloodprince_bloodorb.m2", - value = "icecrown_bloodprince_bloodorb.m2", + fileId = "304340", + text = "gilneas_treethorns_dark_01.m2", + value = "gilneas_treethorns_dark_01.m2", }, { - fileId = "341986", - text = "icecrown_bloodprince_crest.m2", - value = "icecrown_bloodprince_crest.m2", + fileId = "304341", + text = "gilneas_treethorns_dark_02.m2", + value = "gilneas_treethorns_dark_02.m2", }, { - fileId = "330978", - text = "icecrown_bloodprince_rooffog.m2", - value = "icecrown_bloodprince_rooffog.m2", + fileId = "304342", + text = "gilneas_treethorns_dark_03.m2", + value = "gilneas_treethorns_dark_03.m2", }, - }, - text = "bloodprince", - value = "bloodprince", - }, - { - children = { { - fileId = "315447", - text = "icecrown_bodyjar.m2", - value = "icecrown_bodyjar.m2", + fileId = "304343", + text = "gilneas_treethorns_dark_04.m2", + value = "gilneas_treethorns_dark_04.m2", }, }, - text = "bodyjar", - value = "bodyjar", + text = "thorntrees", + value = "thorntrees", }, { children = { { - fileId = "341989", - text = "icecrown_bonepile_01.m2", - value = "icecrown_bonepile_01.m2", + fileId = "255413", + text = "darkforesttree01.m2", + value = "darkforesttree01.m2", }, { - fileId = "342585", - text = "icecrown_bonepile_02.m2", - value = "icecrown_bonepile_02.m2", + fileId = "293927", + text = "darkforesttree02.m2", + value = "darkforesttree02.m2", }, { - fileId = "342410", - text = "icecrown_bonepile_light_01.m2", - value = "icecrown_bonepile_light_01.m2", + fileId = "304133", + text = "darkforesttree03.m2", + value = "darkforesttree03.m2", }, { - fileId = "342586", - text = "icecrown_bonepile_light_02.m2", - value = "icecrown_bonepile_light_02.m2", + fileId = "293928", + text = "darkforesttree04.m2", + value = "darkforesttree04.m2", }, { - fileId = "342663", - text = "icecrown_bonepile_skull.m2", - value = "icecrown_bonepile_skull.m2", + fileId = "304135", + text = "darkforesttree05.m2", + value = "darkforesttree05.m2", }, { - fileId = "342664", - text = "icecrown_bonepile_skull_light.m2", - value = "icecrown_bonepile_skull_light.m2", + fileId = "304136", + text = "darkforesttree06.m2", + value = "darkforesttree06.m2", }, - }, - text = "bones", - value = "bones", - }, - { - children = { { - fileId = "333086", - text = "icecrown_cavein.m2", - value = "icecrown_cavein.m2", + fileId = "304344", + text = "darkforesttree_roots_01.m2", + value = "darkforesttree_roots_01.m2", }, - }, - text = "cavein", - value = "cavein", - }, - { - children = { { - fileId = "345030", - text = "icecrown_frostmourneghosts.m2", - value = "icecrown_frostmourneghosts.m2", + fileId = "304346", + text = "darkforesttree_roots_02.m2", + value = "darkforesttree_roots_02.m2", }, { - fileId = "340011", - text = "icecrown_frostmourneskychains.m2", - value = "icecrown_frostmourneskychains.m2", + fileId = "304347", + text = "darkforesttree_roots_03.m2", + value = "darkforesttree_roots_03.m2", }, { - fileId = "340504", - text = "icecrown_frostmourneskychains_02.m2", - value = "icecrown_frostmourneskychains_02.m2", + fileId = "304348", + text = "darkforesttree_roots_04.m2", + value = "darkforesttree_roots_04.m2", }, - }, - text = "chains", - value = "chains", - }, - { - children = { { - fileId = "314705", - text = "icecrown_bench_01.m2", - value = "icecrown_bench_01.m2", + fileId = "304605", + text = "darkforesttree_thorns_01.m2", + value = "darkforesttree_thorns_01.m2", }, { - fileId = "314706", - text = "icecrown_chair_01.m2", - value = "icecrown_chair_01.m2", + fileId = "304822", + text = "darkforesttree_thorns_03.m2", + value = "darkforesttree_thorns_03.m2", }, - }, - text = "chairs", - value = "chairs", - }, - { - children = { { - fileId = "196065", - text = "ic_citadel_door01.m2", - value = "ic_citadel_door01.m2", + fileId = "304494", + text = "darkforesttree_thorns_05.m2", + value = "darkforesttree_thorns_05.m2", }, { - fileId = "196066", - text = "ic_citadel_mouthdoor01.m2", - value = "ic_citadel_mouthdoor01.m2", + fileId = "253276", + text = "fallingoakleaves01.m2", + value = "fallingoakleaves01.m2", }, { - fileId = "337075", - text = "icecrown_blooddoor_01.m2", - value = "icecrown_blooddoor_01.m2", + fileId = "253277", + text = "fallingoakleaves02.m2", + value = "fallingoakleaves02.m2", }, { - fileId = "330979", - text = "icecrown_bloodprince_door_01.m2", - value = "icecrown_bloodprince_door_01.m2", + fileId = "305478", + text = "gilneas_pinesapling01.m2", + value = "gilneas_pinesapling01.m2", }, { - fileId = "336508", - text = "icecrown_colddoor_01.m2", - value = "icecrown_colddoor_01.m2", + fileId = "305825", + text = "gilneas_pinetrunk01.m2", + value = "gilneas_pinetrunk01.m2", }, { - fileId = "310114", - text = "icecrown_door_01.m2", - value = "icecrown_door_01.m2", + fileId = "305828", + text = "gilneas_pinetrunk02.m2", + value = "gilneas_pinetrunk02.m2", }, { - fileId = "312957", - text = "icecrown_door_02_disappearing_green.m2", - value = "icecrown_door_02_disappearing_green.m2", + fileId = "305830", + text = "gilneas_pinetrunk03.m2", + value = "gilneas_pinetrunk03.m2", }, { - fileId = "312958", - text = "icecrown_door_02_disappearing_orange.m2", - value = "icecrown_door_02_disappearing_orange.m2", + fileId = "303697", + text = "gilneas_treesapling01.m2", + value = "gilneas_treesapling01.m2", }, { - fileId = "312959", - text = "icecrown_door_02_main.m2", - value = "icecrown_door_02_main.m2", + fileId = "313543", + text = "gilneas_worgendwelling_01.m2", + value = "gilneas_worgendwelling_01.m2", }, { - fileId = "329523", - text = "icecrown_door_02collision.m2", - value = "icecrown_door_02collision.m2", + fileId = "253280", + text = "oaktree01.m2", + value = "oaktree01.m2", }, { - fileId = "329524", - text = "icecrown_door_02left.m2", - value = "icecrown_door_02left.m2", + fileId = "253282", + text = "oaktree02.m2", + value = "oaktree02.m2", }, { - fileId = "329525", - text = "icecrown_door_02right.m2", - value = "icecrown_door_02right.m2", + fileId = "412077", + text = "oaktree02_green.m2", + value = "oaktree02_green.m2", }, { - fileId = "319877", - text = "icecrown_door_03.m2", - value = "icecrown_door_03.m2", + fileId = "254570", + text = "oaktree03.m2", + value = "oaktree03.m2", }, { - fileId = "327204", - text = "icecrown_door_04.m2", - value = "icecrown_door_04.m2", + fileId = "412079", + text = "oaktree03_green.m2", + value = "oaktree03_green.m2", }, { - fileId = "320870", - text = "icecrown_grate_01.m2", - value = "icecrown_grate_01.m2", + fileId = "254742", + text = "oaktree04.m2", + value = "oaktree04.m2", }, { - fileId = "318772", - text = "icecrown_portcullis_01.m2", - value = "icecrown_portcullis_01.m2", + fileId = "412080", + text = "oaktree04_green.m2", + value = "oaktree04_green.m2", }, { - fileId = "327455", - text = "icecrown_portcullis_02.m2", - value = "icecrown_portcullis_02.m2", + fileId = "254743", + text = "oaktree05.m2", + value = "oaktree05.m2", }, { - fileId = "320223", - text = "icecrown_roostportcullis_01.m2", - value = "icecrown_roostportcullis_01.m2", + fileId = "254810", + text = "oaktree06.m2", + value = "oaktree06.m2", }, - }, - text = "doors", - value = "doors", - }, - { - children = { { - fileId = "345449", - text = "icecrown_citadel_exterioreffects.m2", - value = "icecrown_citadel_exterioreffects.m2", + fileId = "254952", + text = "oaktreeroot01.m2", + value = "oaktreeroot01.m2", }, { - fileId = "350645", - text = "icecrown_frozenthrone_particle.m2", - value = "icecrown_frozenthrone_particle.m2", + fileId = "254953", + text = "oaktreeroot02.m2", + value = "oaktreeroot02.m2", }, { - fileId = "317261", - text = "icecrown_icecore.m2", - value = "icecrown_icecore.m2", + fileId = "254954", + text = "oaktreeroot03.m2", + value = "oaktreeroot03.m2", }, { - fileId = "344277", - text = "icecrown_thronefrostyedge.m2", - value = "icecrown_thronefrostyedge.m2", + fileId = "254955", + text = "oaktreeroot04.m2", + value = "oaktreeroot04.m2", }, { - fileId = "342587", - text = "icecrownraid_icecore_precipice.m2", - value = "icecrownraid_icecore_precipice.m2", + fileId = "253347", + text = "pinetree01.m2", + value = "pinetree01.m2", }, - }, - text = "effects", - value = "effects", - }, - { - children = { { - fileId = "321125", - text = "icecrown_elevator.m2", - value = "icecrown_elevator.m2", + fileId = "413495", + text = "pinetree01_blue.m2", + value = "pinetree01_blue.m2", }, { - fileId = "321602", - text = "icecrown_elevator02.m2", - value = "icecrown_elevator02.m2", + fileId = "253348", + text = "pinetree02.m2", + value = "pinetree02.m2", }, - }, - text = "elevator", - value = "elevator", - }, - { - children = { { - fileId = "342971", - text = "icecrown_fence.m2", - value = "icecrown_fence.m2", + fileId = "413496", + text = "pinetree02_blue.m2", + value = "pinetree02_blue.m2", }, { - fileId = "342928", - text = "icecrown_fence_base.m2", - value = "icecrown_fence_base.m2", + fileId = "254286", + text = "pinetree03.m2", + value = "pinetree03.m2", + }, + { + fileId = "254287", + text = "pinetree04.m2", + value = "pinetree04.m2", + }, + { + fileId = "254430", + text = "pinetree05.m2", + value = "pinetree05.m2", + }, + { + fileId = "254431", + text = "pinetree06.m2", + value = "pinetree06.m2", + }, + { + fileId = "254432", + text = "pinetree07.m2", + value = "pinetree07.m2", + }, + { + fileId = "254956", + text = "pinetree08.m2", + value = "pinetree08.m2", }, }, - text = "fence", - value = "fence", + text = "trees", + value = "trees", }, + }, + text = "gilneas", + value = "gilneas", + }, + { + children = { { children = { { - fileId = "243783", - text = "icecrown_frozenwurm_01.m2", - value = "icecrown_frozenwurm_01.m2", + fileId = "366404", + text = "twilightshammer_banner_grimbatolentrance_01.m2", + value = "twilightshammer_banner_grimbatolentrance_01.m2", }, }, - text = "frozen", - value = "frozen", + text = "banner", + value = "banner", }, { children = { { - fileId = "243784", - text = "icecrown_wallanim.m2", - value = "icecrown_wallanim.m2", + fileId = "347670", + text = "dwarven_grimbatol_banner_01.m2", + value = "dwarven_grimbatol_banner_01.m2", }, { - fileId = "243785", - text = "icecrowngatefog01.m2", - value = "icecrowngatefog01.m2", + fileId = "347710", + text = "dwarven_grimbatol_banner_02.m2", + value = "dwarven_grimbatol_banner_02.m2", }, { - fileId = "243786", - text = "icecrowngatefog02.m2", - value = "icecrowngatefog02.m2", + fileId = "348569", + text = "dwarven_grimbatol_banner_03.m2", + value = "dwarven_grimbatol_banner_03.m2", }, }, - text = "gatefog", - value = "gatefog", + text = "banners", + value = "banners", }, { children = { { - fileId = "312684", - text = "ic_glow01.m2", - value = "ic_glow01.m2", + fileId = "349235", + text = "dwarven_grimbatol_chandelier_01.m2", + value = "dwarven_grimbatol_chandelier_01.m2", }, { - fileId = "334827", - text = "ic_glow02.m2", - value = "ic_glow02.m2", + fileId = "349237", + text = "dwarven_grimbatol_chandelier_02.m2", + value = "dwarven_grimbatol_chandelier_02.m2", }, - }, - text = "glows", - value = "glows", - }, - { - children = { { - fileId = "315158", - text = "icecrown_grinder.m2", - value = "icecrown_grinder.m2", + fileId = "349238", + text = "dwarven_grimbatol_chandelier_03.m2", + value = "dwarven_grimbatol_chandelier_03.m2", }, }, - text = "grinder", - value = "grinder", + text = "chandelier", + value = "chandelier", }, { - children = { - { - fileId = "196069", - text = "icecrown_groundspikes01.m2", - value = "icecrown_groundspikes01.m2", - }, - }, - text = "groundspikes", - value = "groundspikes", + fileId = "409565", + text = "grimbatol_net.m2", + value = "grimbatol_net.m2", }, { - fileId = "307957", - text = "ic_arthas_iceshard01.m2", - value = "ic_arthas_iceshard01.m2", + fileId = "392386", + text = "grimbatol_raid_door_01.m2", + value = "grimbatol_raid_door_01.m2", }, { - fileId = "307958", - text = "ic_arthas_iceshard02.m2", - value = "ic_arthas_iceshard02.m2", + fileId = "403522", + text = "grimbatol_tower_01.m2", + value = "grimbatol_tower_01.m2", }, { - fileId = "307959", - text = "ic_arthas_iceshard03.m2", - value = "ic_arthas_iceshard03.m2", + fileId = "403523", + text = "grimbatol_tower_02.m2", + value = "grimbatol_tower_02.m2", }, { - fileId = "307960", - text = "ic_arthas_iceshard04.m2", - value = "ic_arthas_iceshard04.m2", + fileId = "403524", + text = "grimbatol_tower_03.m2", + value = "grimbatol_tower_03.m2", }, { - fileId = "307961", - text = "ic_arthas_iceshard05.m2", - value = "ic_arthas_iceshard05.m2", + fileId = "403525", + text = "grimbatol_tower_04.m2", + value = "grimbatol_tower_04.m2", }, { - fileId = "307962", - text = "ic_arthas_iceshard06.m2", - value = "ic_arthas_iceshard06.m2", + fileId = "403526", + text = "grimbatol_tower_05.m2", + value = "grimbatol_tower_05.m2", }, { - fileId = "307963", - text = "ic_arthas_iceshard07.m2", - value = "ic_arthas_iceshard07.m2", + fileId = "403527", + text = "grimbatol_tower_06.m2", + value = "grimbatol_tower_06.m2", }, { - fileId = "321453", - text = "ic_citadel_chest.m2", - value = "ic_citadel_chest.m2", + fileId = "403528", + text = "grimbatol_tower_07.m2", + value = "grimbatol_tower_07.m2", }, { children = { { - fileId = "343005", - text = "icecrown_icecore_middle.m2", - value = "icecrown_icecore_middle.m2", + fileId = "351026", + text = "dwarven_grimbatol_lava_01.m2", + value = "dwarven_grimbatol_lava_01.m2", }, - }, - text = "icecore", - value = "icecore", - }, - { - children = { { - fileId = "322905", - text = "iceshard_standing.m2", - value = "iceshard_standing.m2", + fileId = "411772", + text = "grimbatol_cave_lavafalls_01.m2", + value = "grimbatol_cave_lavafalls_01.m2", }, { - fileId = "243793", - text = "icesharda.m2", - value = "icesharda.m2", + fileId = "411773", + text = "grimbatol_cave_lavafalls_02.m2", + value = "grimbatol_cave_lavafalls_02.m2", }, - }, - text = "iceshards", - value = "iceshards", - }, - { - children = { { - fileId = "332869", - text = "icecrown_icewall.m2", - value = "icecrown_icewall.m2", + fileId = "411774", + text = "grimbatol_cave_lavafalls_drop_01.m2", + value = "grimbatol_cave_lavafalls_drop_01.m2", }, - }, - text = "icewall", - value = "icewall", - }, - { - children = { { - fileId = "351040", - text = "icecrown_lavaman_chained.m2", - value = "icecrown_lavaman_chained.m2", + fileId = "411775", + text = "grimbatol_cave_lavafalls_drop_02.m2", + value = "grimbatol_cave_lavafalls_drop_02.m2", }, { - fileId = "350996", - text = "icecrown_lavaman_sit.m2", - value = "icecrown_lavaman_sit.m2", + fileId = "411776", + text = "grimbatol_cave_small_lavafalls_01.m2", + value = "grimbatol_cave_small_lavafalls_01.m2", }, { - fileId = "351041", - text = "icecrown_lavaman_unchained.m2", - value = "icecrown_lavaman_unchained.m2", + fileId = "411777", + text = "grimbatol_cave_small_lavafalls_02.m2", + value = "grimbatol_cave_small_lavafalls_02.m2", }, - }, - text = "lava", - value = "lava", - }, - { - children = { { - fileId = "337802", - text = "icecrown_lever.m2", - value = "icecrown_lever.m2", + fileId = "411778", + text = "grimbatol_cave_small_lavafalls_03.m2", + value = "grimbatol_cave_small_lavafalls_03.m2", }, - }, - text = "lever", - value = "lever", - }, - { - children = { { - fileId = "328953", - text = "icecrown_blue_fire.m2", - value = "icecrown_blue_fire.m2", + fileId = "411770", + text = "grimbatol_cavesparks_01.m2", + value = "grimbatol_cavesparks_01.m2", }, { - fileId = "320225", - text = "icecrown_blueglow_01.m2", - value = "icecrown_blueglow_01.m2", + fileId = "411771", + text = "grimbatol_cavesparks_02.m2", + value = "grimbatol_cavesparks_02.m2", }, { - fileId = "320226", - text = "icecrown_blueglow_02.m2", - value = "icecrown_blueglow_02.m2", + fileId = "411779", + text = "grimbatol_lava_floor_splash_01.m2", + value = "grimbatol_lava_floor_splash_01.m2", }, { - fileId = "325920", - text = "icecrown_chandelier.m2", - value = "icecrown_chandelier.m2", + fileId = "411780", + text = "grimbatol_lava_in_floor_01.m2", + value = "grimbatol_lava_in_floor_01.m2", }, { - fileId = "328954", - text = "icecrown_green_fire.m2", - value = "icecrown_green_fire.m2", + fileId = "411781", + text = "grimbatol_lava_in_floor_02.m2", + value = "grimbatol_lava_in_floor_02.m2", }, { - fileId = "327861", - text = "icecrown_greenglow_01.m2", - value = "icecrown_greenglow_01.m2", + fileId = "411782", + text = "grimbatol_lava_splash_01.m2", + value = "grimbatol_lava_splash_01.m2", }, { - fileId = "328252", - text = "icecrown_greenpillar_fire.m2", - value = "icecrown_greenpillar_fire.m2", + fileId = "529052", + text = "grimbatol_lava_splash_02.m2", + value = "grimbatol_lava_splash_02.m2", }, { - fileId = "313729", - text = "icecrown_hangingbase.m2", - value = "icecrown_hangingbase.m2", + fileId = "411783", + text = "grimbatol_stairway_lavafalls_01.m2", + value = "grimbatol_stairway_lavafalls_01.m2", }, + }, + text = "lava", + value = "lava", + }, + { + children = { { - fileId = "313731", - text = "icecrown_hangingbraizer_01.m2", - value = "icecrown_hangingbraizer_01.m2", + fileId = "394714", + text = "grimbatol_rubble01.m2", + value = "grimbatol_rubble01.m2", }, { - fileId = "325921", - text = "icecrown_lablamp.m2", - value = "icecrown_lablamp.m2", + fileId = "394715", + text = "grimbatol_rubble02.m2", + value = "grimbatol_rubble02.m2", }, + }, + text = "rubble", + value = "rubble", + }, + }, + text = "grimbatol", + value = "grimbatol", + }, + { + children = { + { + fileId = "423656", + text = "grimbatolraid_chandelier_01.m2", + value = "grimbatolraid_chandelier_01.m2", + }, + { + fileId = "426403", + text = "grimbatolraid_chogall_throne.m2", + value = "grimbatolraid_chogall_throne.m2", + }, + { + fileId = "463441", + text = "grimbatolraid_fire_wall_01.m2", + value = "grimbatolraid_fire_wall_01.m2", + }, + { + fileId = "574628", + text = "grimbatolraid_fire_wall_02.m2", + value = "grimbatolraid_fire_wall_02.m2", + }, + { + fileId = "429164", + text = "grimbatolraid_lavaglow_01.m2", + value = "grimbatolraid_lavaglow_01.m2", + }, + { + fileId = "427504", + text = "grimbatolraid_portal.m2", + value = "grimbatolraid_portal.m2", + }, + { + fileId = "427612", + text = "grimbatolraid_trapdoor.m2", + value = "grimbatolraid_trapdoor.m2", + }, + }, + text = "grimbatolraid", + value = "grimbatolraid", + }, + { + children = { + { + children = { { - fileId = "328956", - text = "icecrown_rays.m2", - value = "icecrown_rays.m2", + fileId = "305191", + text = "li_aloe01.m2", + value = "li_aloe01.m2", }, { - fileId = "320166", - text = "icecrown_redglow_01.m2", - value = "icecrown_redglow_01.m2", + fileId = "305192", + text = "li_bush01.m2", + value = "li_bush01.m2", }, { - fileId = "318344", - text = "icecrown_wallsconce_01.m2", - value = "icecrown_wallsconce_01.m2", + fileId = "305193", + text = "li_bush02.m2", + value = "li_bush02.m2", }, - }, - text = "lights", - value = "lights", - }, - { - children = { { - fileId = "468700", - text = "icecrown_metalskull.m2", - value = "icecrown_metalskull.m2", + fileId = "325978", + text = "li_bushburnt01.m2", + value = "li_bushburnt01.m2", }, - }, - text = "metalskull", - value = "metalskull", - }, - { - children = { { - fileId = "330980", - text = "icecrown_bloodprince_portal_effect.m2", - value = "icecrown_bloodprince_portal_effect.m2", + fileId = "325979", + text = "li_bushburnt02.m2", + value = "li_bushburnt02.m2", }, { - fileId = "330981", - text = "icecrown_bloodprince_portal_floor.m2", - value = "icecrown_bloodprince_portal_floor.m2", + fileId = "306603", + text = "li_edge_bush01.m2", + value = "li_edge_bush01.m2", }, { - fileId = "331146", - text = "icecrown_bloodprince_portal_left.m2", - value = "icecrown_bloodprince_portal_left.m2", + fileId = "306635", + text = "li_edge_bush02.m2", + value = "li_edge_bush02.m2", }, { - fileId = "331148", - text = "icecrown_bloodprince_portal_middle.m2", - value = "icecrown_bloodprince_portal_middle.m2", + fileId = "305194", + text = "li_fern01.m2", + value = "li_fern01.m2", }, { - fileId = "330983", - text = "icecrown_bloodprince_portal_right.m2", - value = "icecrown_bloodprince_portal_right.m2", + fileId = "305195", + text = "li_fern02.m2", + value = "li_fern02.m2", }, { - fileId = "335581", - text = "icecrown_portal.m2", - value = "icecrown_portal.m2", + fileId = "305196", + text = "li_ivy01.m2", + value = "li_ivy01.m2", }, - }, - text = "portals", - value = "portals", - }, - { - children = { { - fileId = "341990", - text = "icecrown_pressureplate.m2", - value = "icecrown_pressureplate.m2", + fileId = "305197", + text = "li_ivy02.m2", + value = "li_ivy02.m2", }, - }, - text = "pressureplate", - value = "pressureplate", - }, - { - children = { { - fileId = "254621", - text = "icecrown_railing01.m2", - value = "icecrown_railing01.m2", + fileId = "305198", + text = "li_ivy03.m2", + value = "li_ivy03.m2", }, { - fileId = "331696", - text = "icecrown_railing02.m2", - value = "icecrown_railing02.m2", + fileId = "305199", + text = "li_ivy04.m2", + value = "li_ivy04.m2", }, { - fileId = "331697", - text = "icecrown_railing_rail.m2", - value = "icecrown_railing_rail.m2", + fileId = "305404", + text = "li_ivy05.m2", + value = "li_ivy05.m2", }, - }, - text = "railing", - value = "railing", - }, - { - children = { { - fileId = "196071", - text = "icecrown_rock_01.m2", - value = "icecrown_rock_01.m2", + fileId = "311029", + text = "lostisles_carnivorousplant01.m2", + value = "lostisles_carnivorousplant01.m2", }, { - fileId = "196072", - text = "icecrown_rock_02.m2", - value = "icecrown_rock_02.m2", + fileId = "311703", + text = "lostisles_carnivorousplant_02.m2", + value = "lostisles_carnivorousplant_02.m2", }, { - fileId = "196073", - text = "icecrown_rock_03.m2", - value = "icecrown_rock_03.m2", + fileId = "307082", + text = "lostisles_fanpalm_01.m2", + value = "lostisles_fanpalm_01.m2", }, { - fileId = "196074", - text = "icecrown_rock_04.m2", - value = "icecrown_rock_04.m2", + fileId = "307083", + text = "lostisles_fanpalm_02.m2", + value = "lostisles_fanpalm_02.m2", }, { - fileId = "196075", - text = "icecrown_rock_05.m2", - value = "icecrown_rock_05.m2", + fileId = "307085", + text = "lostisles_fanpalm_03.m2", + value = "lostisles_fanpalm_03.m2", }, { - fileId = "196076", - text = "icecrown_rock_06.m2", - value = "icecrown_rock_06.m2", + fileId = "307089", + text = "lostisles_fanpalm_04.m2", + value = "lostisles_fanpalm_04.m2", }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { { - fileId = "338497", - text = "icecrown_rug_long_01.m2", - value = "icecrown_rug_long_01.m2", + fileId = "308732", + text = "lostisles_flowervine_01.m2", + value = "lostisles_flowervine_01.m2", }, { - fileId = "349241", - text = "icecrown_rug_long_02.m2", - value = "icecrown_rug_long_02.m2", + fileId = "307127", + text = "lostisles_giantflower_01.m2", + value = "lostisles_giantflower_01.m2", }, - }, - text = "rugs", - value = "rugs", - }, - { - children = { { - fileId = "337104", - text = "icecrown_runeforge_green.m2", - value = "icecrown_runeforge_green.m2", + fileId = "307130", + text = "lostisles_giantflower_02.m2", + value = "lostisles_giantflower_02.m2", }, { - fileId = "337106", - text = "icecrown_runeforge_orange.m2", - value = "icecrown_runeforge_orange.m2", + fileId = "317352", + text = "lostisles_giantflower_03.m2", + value = "lostisles_giantflower_03.m2", }, - }, - text = "runeforge", - value = "runeforge", - }, - { - children = { { - fileId = "343848", - text = "icecrown_precipicerunes_01.m2", - value = "icecrown_precipicerunes_01.m2", + fileId = "317353", + text = "lostisles_giantflower_04.m2", + value = "lostisles_giantflower_04.m2", }, - }, - text = "runes", - value = "runes", - }, - { - children = { { - fileId = "338495", - text = "sindragosa_iceblock_collision.m2", - value = "sindragosa_iceblock_collision.m2", + fileId = "307150", + text = "lostisles_mossyrock_02.m2", + value = "lostisles_mossyrock_02.m2", }, }, - text = "sindragosacollision", - value = "sindragosacollision", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "343920", - text = "icecrown_snowedgewarning.m2", - value = "icecrown_snowedgewarning.m2", + fileId = "305745", + text = "lostisles_cactuspalm_01.m2", + value = "lostisles_cactuspalm_01.m2", }, - }, - text = "snowledge", - value = "snowledge", - }, - { - children = { { - fileId = "327166", - text = "icecrown_spigot.m2", - value = "icecrown_spigot.m2", + fileId = "305760", + text = "lostisles_cactuspalm_02.m2", + value = "lostisles_cactuspalm_02.m2", }, - }, - text = "spigot", - value = "spigot", - }, - { - children = { { - fileId = "196078", - text = "icecrown_tentacles_01.m2", - value = "icecrown_tentacles_01.m2", + fileId = "306660", + text = "lostisles_cactuspalm_04.m2", + value = "lostisles_cactuspalm_04.m2", }, - }, - text = "tentacles", - value = "tentacles", - }, - { - children = { { - fileId = "335587", - text = "icecrown_throne.m2", - value = "icecrown_throne.m2", + fileId = "306662", + text = "lostisles_cactuspalm_05.m2", + value = "lostisles_cactuspalm_05.m2", }, { - fileId = "350991", - text = "icecrown_throne_exteriorspires.m2", - value = "icecrown_throne_exteriorspires.m2", + fileId = "313090", + text = "lostisles_cactuspalm_06.m2", + value = "lostisles_cactuspalm_06.m2", }, { - fileId = "340860", - text = "icecrown_thronefrostywind.m2", - value = "icecrown_thronefrostywind.m2", + fileId = "313091", + text = "lostisles_cactuspalm_07.m2", + value = "lostisles_cactuspalm_07.m2", }, - }, - text = "throne", - value = "throne", - }, - { - children = { { - fileId = "196081", - text = "icecrown_tree_01.m2", - value = "icecrown_tree_01.m2", + fileId = "313092", + text = "lostisles_cactuspalm_08.m2", + value = "lostisles_cactuspalm_08.m2", }, { - fileId = "196082", - text = "icecrown_tree_02.m2", - value = "icecrown_tree_02.m2", + fileId = "313093", + text = "lostisles_cactuspalm_09.m2", + value = "lostisles_cactuspalm_09.m2", }, { - fileId = "196083", - text = "icecrown_tree_03.m2", - value = "icecrown_tree_03.m2", + fileId = "325982", + text = "lostisles_cactuspalmburnt_01.m2", + value = "lostisles_cactuspalmburnt_01.m2", }, { - fileId = "196084", - text = "icecrown_tree_04.m2", - value = "icecrown_tree_04.m2", + fileId = "325983", + text = "lostisles_cactuspalmburnt_02.m2", + value = "lostisles_cactuspalmburnt_02.m2", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "327170", - text = "icecrown_greentubes.m2", - value = "icecrown_greentubes.m2", + fileId = "325984", + text = "lostisles_cactuspalmburnt_04.m2", + value = "lostisles_cactuspalmburnt_04.m2", }, { - fileId = "327205", - text = "icecrown_greentubes_grate.m2", - value = "icecrown_greentubes_grate.m2", + fileId = "325985", + text = "lostisles_cactuspalmburnt_06.m2", + value = "lostisles_cactuspalmburnt_06.m2", }, { - fileId = "327171", - text = "icecrown_orangetubes.m2", - value = "icecrown_orangetubes.m2", + fileId = "322330", + text = "lostisles_cactuspalmdead_01.m2", + value = "lostisles_cactuspalmdead_01.m2", + }, + { + fileId = "322331", + text = "lostisles_cactuspalmdead_02.m2", + value = "lostisles_cactuspalmdead_02.m2", }, }, - text = "tubes", - value = "tubes", + text = "cactus", + value = "cactus", }, { children = { { - fileId = "327172", - text = "icecrown_valve.m2", - value = "icecrown_valve.m2", + fileId = "306664", + text = "li_edge_tallgrass01.m2", + value = "li_edge_tallgrass01.m2", }, }, - text = "valve", - value = "valve", + text = "grass", + value = "grass", }, { children = { { - fileId = "340090", - text = "icecrown_axe_shadowsedge.m2", - value = "icecrown_axe_shadowsedge.m2", + fileId = "312508", + text = "lostisles_dragonfly_01.m2", + value = "lostisles_dragonfly_01.m2", }, }, - text = "weapon", - value = "weapon", + text = "insects", + value = "insects", }, { children = { { - fileId = "333853", - text = "wingsigil_blue.m2", - value = "wingsigil_blue.m2", + fileId = "306802", + text = "li_volcanicrock_01.m2", + value = "li_volcanicrock_01.m2", }, { - fileId = "333854", - text = "wingsigil_green.m2", - value = "wingsigil_green.m2", + fileId = "306814", + text = "li_volcanicrock_02.m2", + value = "li_volcanicrock_02.m2", }, { - fileId = "333855", - text = "wingsigil_red.m2", - value = "wingsigil_red.m2", + fileId = "306343", + text = "lostisles_cliffpiece_02.m2", + value = "lostisles_cliffpiece_02.m2", + }, + { + fileId = "306344", + text = "lostisles_cliffpiece_03.m2", + value = "lostisles_cliffpiece_03.m2", + }, + { + fileId = "307151", + text = "lostisles_mossyrock_01.m2", + value = "lostisles_mossyrock_01.m2", + }, + { + fileId = "307152", + text = "lostisles_mossyrock_03.m2", + value = "lostisles_mossyrock_03.m2", }, }, - text = "wingsigils", - value = "wingsigils", - }, - }, - text = "icecrown", - value = "icecrown", - }, - { - children = { - { - fileId = "314866", - text = "isleofconcquest_alliance_banner_01.m2", - value = "isleofconcquest_alliance_banner_01.m2", - }, - { - fileId = "314863", - text = "isleofconcquest_horde_banner_01.m2", - value = "isleofconcquest_horde_banner_01.m2", - }, - { - fileId = "311213", - text = "isleofconquest_portal_niche_alliance_01.m2", - value = "isleofconquest_portal_niche_alliance_01.m2", - }, - { - fileId = "311214", - text = "isleofconquest_portal_niche_horde_01.m2", - value = "isleofconquest_portal_niche_horde_01.m2", - }, - }, - text = "isleofconquest", - value = "isleofconquest", - }, - { - children = { - { - fileId = "243794", - text = "alliance_vehicle_piece_01.m2", - value = "alliance_vehicle_piece_01.m2", - }, - { - fileId = "243795", - text = "alliance_vehicle_piece_02.m2", - value = "alliance_vehicle_piece_02.m2", - }, - { - fileId = "243796", - text = "alliance_vehicle_piece_03.m2", - value = "alliance_vehicle_piece_03.m2", + text = "rocks", + value = "rocks", }, { children = { { - fileId = "196087", - text = "wintergrasp_bush_01.m2", - value = "wintergrasp_bush_01.m2", + fileId = "304635", + text = "li_bamboo01.m2", + value = "li_bamboo01.m2", }, { - fileId = "196089", - text = "wintergrasp_bush_02.m2", - value = "wintergrasp_bush_02.m2", + fileId = "304636", + text = "li_bamboo02.m2", + value = "li_bamboo02.m2", }, { - fileId = "196091", - text = "wintergrasp_bush_03.m2", - value = "wintergrasp_bush_03.m2", + fileId = "304666", + text = "li_bamboo03.m2", + value = "li_bamboo03.m2", }, { - fileId = "196092", - text = "wintergrasp_bush_04.m2", - value = "wintergrasp_bush_04.m2", + fileId = "304697", + text = "li_bamboo04.m2", + value = "li_bamboo04.m2", }, - }, - text = "bushes", - value = "bushes", - }, - { - fileId = "243797", - text = "horde_vehicle_piece_01.m2", - value = "horde_vehicle_piece_01.m2", - }, - { - fileId = "243798", - text = "horde_vehicle_piece_02.m2", - value = "horde_vehicle_piece_02.m2", - }, - { - fileId = "243799", - text = "horde_vehicle_piece_03.m2", - value = "horde_vehicle_piece_03.m2", - }, - { - children = { { - fileId = "243801", - text = "wintergrasp_keepcurb01.m2", - value = "wintergrasp_keepcurb01.m2", + fileId = "304762", + text = "li_bamboo05.m2", + value = "li_bamboo05.m2", }, { - fileId = "243802", - text = "wintergrasp_keepcurb02.m2", - value = "wintergrasp_keepcurb02.m2", + fileId = "304765", + text = "li_bamboo07.m2", + value = "li_bamboo07.m2", }, { - fileId = "243803", - text = "wintergrasp_keepcurb03.m2", - value = "wintergrasp_keepcurb03.m2", + fileId = "304766", + text = "li_bamboo08.m2", + value = "li_bamboo08.m2", }, - }, - text = "titanpieces", - value = "titanpieces", - }, - { - children = { { - fileId = "196096", - text = "wintergrasp_brokentree_01.m2", - value = "wintergrasp_brokentree_01.m2", + fileId = "304767", + text = "li_bamboo09.m2", + value = "li_bamboo09.m2", }, { - fileId = "196097", - text = "wintergrasp_brokentree_02.m2", - value = "wintergrasp_brokentree_02.m2", + fileId = "305407", + text = "li_tree01.m2", + value = "li_tree01.m2", }, { - fileId = "196098", - text = "wintergrasp_brokentree_03.m2", - value = "wintergrasp_brokentree_03.m2", + fileId = "305408", + text = "li_tree02.m2", + value = "li_tree02.m2", }, { - fileId = "196099", - text = "wintergrasp_brokentree_04.m2", - value = "wintergrasp_brokentree_04.m2", + fileId = "305409", + text = "li_tree03.m2", + value = "li_tree03.m2", }, { - fileId = "196104", - text = "wintergrasp_tree_02.m2", - value = "wintergrasp_tree_02.m2", + fileId = "305410", + text = "li_tree04.m2", + value = "li_tree04.m2", }, { - fileId = "196105", - text = "wintergrasp_tree_03.m2", - value = "wintergrasp_tree_03.m2", + fileId = "305411", + text = "li_tree05.m2", + value = "li_tree05.m2", }, { - fileId = "196106", - text = "wintergrasp_tree_04.m2", - value = "wintergrasp_tree_04.m2", + fileId = "306613", + text = "lostisles_bamboo_01.m2", + value = "lostisles_bamboo_01.m2", }, { - fileId = "196107", - text = "wintergrasp_tree_05.m2", - value = "wintergrasp_tree_05.m2", + fileId = "306614", + text = "lostisles_bamboo_02.m2", + value = "lostisles_bamboo_02.m2", }, { - fileId = "196108", - text = "wintergrasp_tree_scourge_02.m2", - value = "wintergrasp_tree_scourge_02.m2", + fileId = "306615", + text = "lostisles_bamboo_03.m2", + value = "lostisles_bamboo_03.m2", }, { - fileId = "196109", - text = "wintergrasp_tree_scourge_03.m2", - value = "wintergrasp_tree_scourge_03.m2", + fileId = "306616", + text = "lostisles_bamboo_04.m2", + value = "lostisles_bamboo_04.m2", }, { - fileId = "196110", - text = "wintergrasp_tree_scourge_04.m2", - value = "wintergrasp_tree_scourge_04.m2", + fileId = "306617", + text = "lostisles_bamboo_05.m2", + value = "lostisles_bamboo_05.m2", }, { - fileId = "196111", - text = "wintergrasp_tree_scourge_05.m2", - value = "wintergrasp_tree_scourge_05.m2", + fileId = "306618", + text = "lostisles_bamboo_06.m2", + value = "lostisles_bamboo_06.m2", }, - }, - text = "trees", - value = "trees", - }, - { - children = { { - fileId = "196112", - text = "wintergraspwaterfall-01.m2", - value = "wintergraspwaterfall-01.m2", + fileId = "306619", + text = "lostisles_bamboo_07.m2", + value = "lostisles_bamboo_07.m2", }, - }, - text = "waterfalls", - value = "waterfalls", - }, - { - fileId = "243804", - text = "wg_bridge02_fx1.m2", - value = "wg_bridge02_fx1.m2", - }, - { - fileId = "243805", - text = "wg_bridge02_fx2.m2", - value = "wg_bridge02_fx2.m2", - }, - { - fileId = "243806", - text = "wg_gate01_fx1.m2", - value = "wg_gate01_fx1.m2", - }, - { - fileId = "243807", - text = "wg_gate01_fx2.m2", - value = "wg_gate01_fx2.m2", - }, - { - fileId = "243808", - text = "wg_invisible_door.m2", - value = "wg_invisible_door.m2", - }, - { - fileId = "243809", - text = "wg_keep_door01_fx1.m2", - value = "wg_keep_door01_fx1.m2", - }, - { - fileId = "243810", - text = "wg_keep_door01_fx2.m2", - value = "wg_keep_door01_fx2.m2", - }, - { - fileId = "243811", - text = "wg_siege01_fx1.m2", - value = "wg_siege01_fx1.m2", - }, - { - fileId = "243812", - text = "wg_siege01_fx2.m2", - value = "wg_siege01_fx2.m2", - }, - { - fileId = "243813", - text = "wg_siege_door.m2", - value = "wg_siege_door.m2", - }, - { - fileId = "243814", - text = "wg_tower01_fx1.m2", - value = "wg_tower01_fx1.m2", - }, - { - fileId = "243815", - text = "wg_tower01_fx2.m2", - value = "wg_tower01_fx2.m2", - }, - { - fileId = "243816", - text = "wg_tower01_fx2b.m2", - value = "wg_tower01_fx2b.m2", - }, - { - fileId = "196113", - text = "wg_wall01_fx1.m2", - value = "wg_wall01_fx1.m2", - }, - { - fileId = "196114", - text = "wg_wall01_fx2.m2", - value = "wg_wall01_fx2.m2", - }, - { - fileId = "243817", - text = "wg_wall02_fx1.m2", - value = "wg_wall02_fx1.m2", - }, - { - fileId = "243818", - text = "wg_wall02_fx2.m2", - value = "wg_wall02_fx2.m2", - }, - }, - text = "lakewintergrasp", - value = "lakewintergrasp", - }, - { - children = { - { - fileId = "196119", - text = "nexus_blue_energyball_fast.m2", - value = "nexus_blue_energyball_fast.m2", - }, - { - fileId = "196122", - text = "nexus_blueenergywell.m2", - value = "nexus_blueenergywell.m2", - }, - { - fileId = "196123", - text = "nexus_bossroom_lightshaft01.m2", - value = "nexus_bossroom_lightshaft01.m2", - }, - { - fileId = "243821", - text = "nexus_cage_active_01.m2", - value = "nexus_cage_active_01.m2", - }, - { - fileId = "243822", - text = "nexus_cage_active_door_01.m2", - value = "nexus_cage_active_door_01.m2", - }, - { - fileId = "196129", - text = "nexus_crashed_platform_01.m2", - value = "nexus_crashed_platform_01.m2", - }, - { - fileId = "196130", - text = "nexus_crashed_platform_02.m2", - value = "nexus_crashed_platform_02.m2", - }, - { - fileId = "196132", - text = "nexus_crystals_01.m2", - value = "nexus_crystals_01.m2", - }, - { - fileId = "196143", - text = "nexus_dragon_broken_body.m2", - value = "nexus_dragon_broken_body.m2", - }, - { - fileId = "196144", - text = "nexus_dragon_broken_head.m2", - value = "nexus_dragon_broken_head.m2", - }, - { - fileId = "196145", - text = "nexus_dragon_broken_leftwing.m2", - value = "nexus_dragon_broken_leftwing.m2", - }, - { - fileId = "196146", - text = "nexus_dragon_broken_rightarm.m2", - value = "nexus_dragon_broken_rightarm.m2", - }, - { - fileId = "196147", - text = "nexus_dragon_broken_rightwing.m2", - value = "nexus_dragon_broken_rightwing.m2", - }, - { - fileId = "196148", - text = "nexus_dragon_broken_rubble.m2", - value = "nexus_dragon_broken_rubble.m2", - }, - { - fileId = "196149", - text = "nexus_dragon_broken_tail.m2", - value = "nexus_dragon_broken_tail.m2", - }, - { - fileId = "196150", - text = "nexus_dragon_broken_tailend.m2", - value = "nexus_dragon_broken_tailend.m2", - }, - { - fileId = "196152", - text = "nexus_dragonegg_01.m2", - value = "nexus_dragonegg_01.m2", - }, - { - fileId = "196153", - text = "nexus_dragonegg_02.m2", - value = "nexus_dragonegg_02.m2", - }, - { - fileId = "196155", - text = "nexus_dragonorb_01.m2", - value = "nexus_dragonorb_01.m2", + { + fileId = "307133", + text = "lostisles_bamboo_08.m2", + value = "lostisles_bamboo_08.m2", + }, + { + fileId = "307134", + text = "lostisles_bamboo_09.m2", + value = "lostisles_bamboo_09.m2", + }, + { + fileId = "307135", + text = "lostisles_bamboo_10.m2", + value = "lostisles_bamboo_10.m2", + }, + { + fileId = "325988", + text = "lostisles_bambooburnt_04.m2", + value = "lostisles_bambooburnt_04.m2", + }, + { + fileId = "319451", + text = "lostisles_bamboostump_01.m2", + value = "lostisles_bamboostump_01.m2", + }, + { + fileId = "319452", + text = "lostisles_bamboostump_02.m2", + value = "lostisles_bamboostump_02.m2", + }, + { + fileId = "308752", + text = "lostisles_log01.m2", + value = "lostisles_log01.m2", + }, + { + fileId = "306345", + text = "lostisles_mammothtree01.m2", + value = "lostisles_mammothtree01.m2", + }, + { + fileId = "306904", + text = "lostisles_mammothtree02.m2", + value = "lostisles_mammothtree02.m2", + }, + { + fileId = "325992", + text = "lostisles_mammothtreeburnt01.m2", + value = "lostisles_mammothtreeburnt01.m2", + }, + { + fileId = "325993", + text = "lostisles_mammothtreeburnt02.m2", + value = "lostisles_mammothtreeburnt02.m2", + }, + { + fileId = "307498", + text = "lostisles_thorntree_01.m2", + value = "lostisles_thorntree_01.m2", + }, + { + fileId = "307499", + text = "lostisles_thorntree_02.m2", + value = "lostisles_thorntree_02.m2", + }, + { + fileId = "326211", + text = "lostisles_treefire_01.m2", + value = "lostisles_treefire_01.m2", + }, + { + fileId = "326212", + text = "lostisles_treefire_02.m2", + value = "lostisles_treefire_02.m2", + }, + { + fileId = "306938", + text = "lostisles_treeroot_01.m2", + value = "lostisles_treeroot_01.m2", + }, + { + fileId = "306939", + text = "lostisles_treeroot_02.m2", + value = "lostisles_treeroot_02.m2", + }, + { + fileId = "306940", + text = "lostisles_treeroot_03.m2", + value = "lostisles_treeroot_03.m2", + }, + { + fileId = "306941", + text = "lostisles_treeroot_04.m2", + value = "lostisles_treeroot_04.m2", + }, + { + fileId = "306942", + text = "lostisles_treeroot_05.m2", + value = "lostisles_treeroot_05.m2", + }, + { + fileId = "306943", + text = "lostisles_treeroot_06.m2", + value = "lostisles_treeroot_06.m2", + }, + { + fileId = "308841", + text = "lostisles_trunk01.m2", + value = "lostisles_trunk01.m2", + }, + { + fileId = "319270", + text = "lostisles_trunk02.m2", + value = "lostisles_trunk02.m2", + }, + { + fileId = "319271", + text = "lostisles_trunk03.m2", + value = "lostisles_trunk03.m2", + }, + { + fileId = "319272", + text = "lostisles_trunk04.m2", + value = "lostisles_trunk04.m2", + }, + { + fileId = "308733", + text = "lostisles_vine01.m2", + value = "lostisles_vine01.m2", + }, + { + fileId = "308734", + text = "lostisles_vine02.m2", + value = "lostisles_vine02.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "196156", - text = "nexus_elevator_basestructure_01.m2", - value = "nexus_elevator_basestructure_01.m2", + children = { + { + fileId = "412087", + text = "lostisles_volcanosmoke01.m2", + value = "lostisles_volcanosmoke01.m2", + }, + }, + text = "volcano", + value = "volcano", }, { - fileId = "243823", - text = "nexus_energychains.m2", - value = "nexus_energychains.m2", + children = { + { + fileId = "326629", + text = "lostisles_lavafall01.m2", + value = "lostisles_lavafall01.m2", + }, + { + fileId = "323165", + text = "lostisles_waterfall01.m2", + value = "lostisles_waterfall01.m2", + }, + { + fileId = "323360", + text = "lostisles_waterfall02.m2", + value = "lostisles_waterfall02.m2", + }, + { + fileId = "323432", + text = "lostisles_waterfallbit01.m2", + value = "lostisles_waterfallbit01.m2", + }, + { + fileId = "325261", + text = "lostisles_waterfallcustom01.m2", + value = "lostisles_waterfallcustom01.m2", + }, + { + fileId = "323389", + text = "lostisles_waterfallmist01.m2", + value = "lostisles_waterfallmist01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, + }, + text = "lostisles", + value = "lostisles", + }, + { + children = { { - fileId = "196158", - text = "nexus_energyfalls_01.m2", - value = "nexus_energyfalls_01.m2", + fileId = "378548", + text = "om_chair_01_gray.m2", + value = "om_chair_01_gray.m2", }, { - fileId = "196160", - text = "nexus_energytrail_01.m2", - value = "nexus_energytrail_01.m2", + fileId = "378550", + text = "om_forge_01_gray.m2", + value = "om_forge_01_gray.m2", }, { - fileId = "196161", - text = "nexus_energytrail_02.m2", - value = "nexus_energytrail_02.m2", + fileId = "378551", + text = "om_stonehenge_01_gray.m2", + value = "om_stonehenge_01_gray.m2", }, { - fileId = "196163", - text = "nexus_falling_magicleaf_01.m2", - value = "nexus_falling_magicleaf_01.m2", + fileId = "378552", + text = "om_stonehenge_02_gray.m2", + value = "om_stonehenge_02_gray.m2", }, { - fileId = "196165", - text = "nexus_fire_conduit.m2", - value = "nexus_fire_conduit.m2", + fileId = "378553", + text = "om_stonehenge_03_gray.m2", + value = "om_stonehenge_03_gray.m2", }, { - fileId = "196175", - text = "nexus_frost_ritualdesign01.m2", - value = "nexus_frost_ritualdesign01.m2", + fileId = "378554", + text = "om_table_01_gray.m2", + value = "om_table_01_gray.m2", }, { - fileId = "196176", - text = "nexus_frost_ritualdesign02_red.m2", - value = "nexus_frost_ritualdesign02_red.m2", + fileId = "378555", + text = "om_tent_01_gray.m2", + value = "om_tent_01_gray.m2", }, { - fileId = "196177", - text = "nexus_fx_exterior_beam.m2", - value = "nexus_fx_exterior_beam.m2", + fileId = "378556", + text = "om_tent_02_gray.m2", + value = "om_tent_02_gray.m2", }, { - fileId = "196178", - text = "nexus_hallway_lightshaft01.m2", - value = "nexus_hallway_lightshaft01.m2", + fileId = "378557", + text = "om_tent_03_gray.m2", + value = "om_tent_03_gray.m2", }, { - fileId = "196181", - text = "nexus_hanging_energy_beads_01.m2", - value = "nexus_hanging_energy_beads_01.m2", + fileId = "378558", + text = "om_totem_01_gray.m2", + value = "om_totem_01_gray.m2", }, { - fileId = "196182", - text = "nexus_ice_conduit.m2", - value = "nexus_ice_conduit.m2", + children = { + { + fileId = "378559", + text = "om_rock_01_gray.m2", + value = "om_rock_01_gray.m2", + }, + { + fileId = "378560", + text = "om_rock_02_gray.m2", + value = "om_rock_02_gray.m2", + }, + { + fileId = "378561", + text = "om_rock_03_gray.m2", + value = "om_rock_03_gray.m2", + }, + { + fileId = "378562", + text = "om_rock_04_gray.m2", + value = "om_rock_04_gray.m2", + }, + { + fileId = "378563", + text = "om_rock_05_gray.m2", + value = "om_rock_05_gray.m2", + }, + }, + text = "rock", + value = "rock", }, + }, + text = "ogre", + value = "ogre", + }, + { + children = { { - fileId = "196185", - text = "nexus_iciclea.m2", - value = "nexus_iciclea.m2", + children = { + { + fileId = "310874", + text = "pygmy_bowl_01.m2", + value = "pygmy_bowl_01.m2", + }, + { + fileId = "310875", + text = "pygmy_bowl_02.m2", + value = "pygmy_bowl_02.m2", + }, + { + fileId = "310679", + text = "pygmy_cookpot_01.m2", + value = "pygmy_cookpot_01.m2", + }, + }, + text = "cookpot", + value = "cookpot", }, { - fileId = "196186", - text = "nexus_library_lightshaft01.m2", - value = "nexus_library_lightshaft01.m2", + children = { + { + fileId = "354836", + text = "pygmy_drums_stage.m2", + value = "pygmy_drums_stage.m2", + }, + }, + text = "drums", + value = "drums", }, { - fileId = "196187", - text = "nexus_library_mainfx.m2", - value = "nexus_library_mainfx.m2", + children = { + { + fileId = "347922", + text = "pygmy_fence_01.m2", + value = "pygmy_fence_01.m2", + }, + }, + text = "fence", + value = "fence", }, { - fileId = "196188", - text = "nexus_library_platformfx.m2", - value = "nexus_library_platformfx.m2", + children = { + { + fileId = "310252", + text = "pigmyfire_01.m2", + value = "pigmyfire_01.m2", + }, + }, + text = "fire", + value = "fire", }, { - fileId = "196189", - text = "nexus_library_trickle_a.m2", - value = "nexus_library_trickle_a.m2", + children = { + { + fileId = "308842", + text = "pygmy_food_01.m2", + value = "pygmy_food_01.m2", + }, + }, + text = "food", + value = "food", }, { - fileId = "196190", - text = "nexus_library_trickle_b.m2", - value = "nexus_library_trickle_b.m2", + children = { + { + fileId = "318751", + text = "pygmy_groundhut.m2", + value = "pygmy_groundhut.m2", + }, + { + fileId = "318752", + text = "pygmy_hanginghut.m2", + value = "pygmy_hanginghut.m2", + }, + { + fileId = "329851", + text = "pygmy_volcanohut.m2", + value = "pygmy_volcanohut.m2", + }, + }, + text = "huts", + value = "huts", }, { - fileId = "196191", - text = "nexus_library_trickle_c.m2", - value = "nexus_library_trickle_c.m2", + children = { + { + fileId = "308844", + text = "pygmy_idol_01.m2", + value = "pygmy_idol_01.m2", + }, + }, + text = "idols", + value = "idols", }, { - fileId = "196193", - text = "nexus_magicdrop_blue_01.m2", - value = "nexus_magicdrop_blue_01.m2", + children = { + { + fileId = "314868", + text = "pygmy_drums_01.m2", + value = "pygmy_drums_01.m2", + }, + { + fileId = "314870", + text = "pygmy_drums_02.m2", + value = "pygmy_drums_02.m2", + }, + { + fileId = "354838", + text = "pygmy_drums_03.m2", + value = "pygmy_drums_03.m2", + }, + { + fileId = "354839", + text = "pygmy_drums_04.m2", + value = "pygmy_drums_04.m2", + }, + { + fileId = "314871", + text = "pygmy_drums_hanging_01.m2", + value = "pygmy_drums_hanging_01.m2", + }, + { + fileId = "314872", + text = "pygmy_drums_hanging_02.m2", + value = "pygmy_drums_hanging_02.m2", + }, + { + fileId = "315422", + text = "pygmy_firestick_01.m2", + value = "pygmy_firestick_01.m2", + }, + { + fileId = "315423", + text = "pygmy_firestick_02.m2", + value = "pygmy_firestick_02.m2", + }, + { + fileId = "315388", + text = "pygmy_hangingwreckage_01.m2", + value = "pygmy_hangingwreckage_01.m2", + }, + { + fileId = "315389", + text = "pygmy_hangingwreckage_02.m2", + value = "pygmy_hangingwreckage_02.m2", + }, + { + fileId = "315424", + text = "pygmy_hangingwreckage_03.m2", + value = "pygmy_hangingwreckage_03.m2", + }, + { + fileId = "315425", + text = "pygmy_hangingwreckage_04.m2", + value = "pygmy_hangingwreckage_04.m2", + }, + { + fileId = "311202", + text = "pygmy_ladder_01.m2", + value = "pygmy_ladder_01.m2", + }, + { + fileId = "311203", + text = "pygmy_ladder_02.m2", + value = "pygmy_ladder_02.m2", + }, + { + fileId = "523156", + text = "pygmy_sconce_base.m2", + value = "pygmy_sconce_base.m2", + }, + { + fileId = "442302", + text = "pygmy_shell.m2", + value = "pygmy_shell.m2", + }, + { + fileId = "315426", + text = "pygmy_torch_01.m2", + value = "pygmy_torch_01.m2", + }, + { + fileId = "315427", + text = "pygmy_torch_02.m2", + value = "pygmy_torch_02.m2", + }, + { + fileId = "345454", + text = "pygmy_totem_01.m2", + value = "pygmy_totem_01.m2", + }, + { + fileId = "316214", + text = "pygmy_totem_animations.m2", + value = "pygmy_totem_animations.m2", + }, + { + fileId = "317214", + text = "pygmy_wall_01.m2", + value = "pygmy_wall_01.m2", + }, + { + fileId = "317215", + text = "pygmy_wall_02.m2", + value = "pygmy_wall_02.m2", + }, + { + fileId = "405440", + text = "pygmy_warriorhelm.m2", + value = "pygmy_warriorhelm.m2", + }, + { + fileId = "316687", + text = "pygmy_weapon_01.m2", + value = "pygmy_weapon_01.m2", + }, + { + fileId = "316688", + text = "pygmy_weapon_02.m2", + value = "pygmy_weapon_02.m2", + }, + { + fileId = "316689", + text = "pygmy_weapon_03.m2", + value = "pygmy_weapon_03.m2", + }, + { + fileId = "316685", + text = "pygmy_weaponrack_01.m2", + value = "pygmy_weaponrack_01.m2", + }, + { + fileId = "316686", + text = "pygmy_weaponrack_02.m2", + value = "pygmy_weaponrack_02.m2", + }, + }, + text = "items", + value = "items", }, { - fileId = "196194", - text = "nexus_magicdrop_blue_02.m2", - value = "nexus_magicdrop_blue_02.m2", + fileId = "376278", + text = "kongdoor.m2", + value = "kongdoor.m2", }, { - fileId = "196195", - text = "nexus_magicdrop_orange_01.m2", - value = "nexus_magicdrop_orange_01.m2", + children = { + { + fileId = "347001", + text = "pygmy_turtlepot01.m2", + value = "pygmy_turtlepot01.m2", + }, + }, + text = "turtlepot", + value = "turtlepot", }, + }, + text = "pygmy", + value = "pygmy", + }, + { + children = { { - fileId = "196196", - text = "nexus_magicorb_blue_01.m2", - value = "nexus_magicorb_blue_01.m2", + children = { + { + fileId = "439144", + text = "skywall_bigwind_01.m2", + value = "skywall_bigwind_01.m2", + }, + { + fileId = "439145", + text = "skywall_bigwind_02.m2", + value = "skywall_bigwind_02.m2", + }, + { + fileId = "439146", + text = "skywall_bigwind_03.m2", + value = "skywall_bigwind_03.m2", + }, + }, + text = "bigwind", + value = "bigwind", }, { - fileId = "196197", - text = "nexus_magicorb_orange_01.m2", - value = "nexus_magicorb_orange_01.m2", + children = { + { + fileId = "362174", + text = "skywall_building_01.m2", + value = "skywall_building_01.m2", + }, + { + fileId = "361335", + text = "skywall_building_02.m2", + value = "skywall_building_02.m2", + }, + { + fileId = "362163", + text = "skywall_building_03.m2", + value = "skywall_building_03.m2", + }, + { + fileId = "363606", + text = "skywall_building_04.m2", + value = "skywall_building_04.m2", + }, + { + fileId = "364723", + text = "skywall_building_05.m2", + value = "skywall_building_05.m2", + }, + { + fileId = "464158", + text = "skywall_collapsing_platform_01.m2", + value = "skywall_collapsing_platform_01.m2", + }, + { + fileId = "466963", + text = "skywall_collapsing_platform_02.m2", + value = "skywall_collapsing_platform_02.m2", + }, + { + fileId = "466964", + text = "skywall_collapsing_platform_03.m2", + value = "skywall_collapsing_platform_03.m2", + }, + { + fileId = "466965", + text = "skywall_collapsing_platform_04.m2", + value = "skywall_collapsing_platform_04.m2", + }, + }, + text = "buildings", + value = "buildings", }, { - fileId = "243824", - text = "nexus_mananeedleplatform_effects_01.m2", - value = "nexus_mananeedleplatform_effects_01.m2", + children = { + { + fileId = "528520", + text = "skywall_cloud_black_01.m2", + value = "skywall_cloud_black_01.m2", + }, + }, + text = "cloud_black", + value = "cloud_black", }, { - fileId = "196198", - text = "nexus_octoroom01_conduit.m2", - value = "nexus_octoroom01_conduit.m2", + children = { + { + fileId = "442654", + text = "skywall_djinn_frost.m2", + value = "skywall_djinn_frost.m2", + }, + { + fileId = "445679", + text = "skywall_djinn_healing.m2", + value = "skywall_djinn_healing.m2", + }, + { + fileId = "445994", + text = "skywall_djinn_tornado.m2", + value = "skywall_djinn_tornado.m2", + }, + }, + text = "djinn", + value = "djinn", }, { - fileId = "196199", - text = "nexus_octoroom02_conduit.m2", - value = "nexus_octoroom02_conduit.m2", + children = { + { + fileId = "405106", + text = "skywall_orange_lamp_01.m2", + value = "skywall_orange_lamp_01.m2", + }, + { + fileId = "409621", + text = "skywall_purple_lamp_01.m2", + value = "skywall_purple_lamp_01.m2", + }, + { + fileId = "427253", + text = "skywall_round_lamps_01.m2", + value = "skywall_round_lamps_01.m2", + }, + { + fileId = "426983", + text = "skywall_toppost_lamps_01.m2", + value = "skywall_toppost_lamps_01.m2", + }, + { + fileId = "440160", + text = "skywall_wall_lamps_01.m2", + value = "skywall_wall_lamps_01.m2", + }, + }, + text = "lamps", + value = "lamps", }, { - fileId = "196200", - text = "nexus_octoroom03_conduit.m2", - value = "nexus_octoroom03_conduit.m2", + fileId = "466782", + text = "skywall_alakirplatform_collision.m2", + value = "skywall_alakirplatform_collision.m2", }, { - fileId = "196201", - text = "nexus_octoroom04_conduit.m2", - value = "nexus_octoroom04_conduit.m2", + fileId = "406682", + text = "skywall_blueglow_01.m2", + value = "skywall_blueglow_01.m2", }, { - fileId = "196202", - text = "nexus_octoroom_lightshaft01.m2", - value = "nexus_octoroom_lightshaft01.m2", + fileId = "460839", + text = "skywall_boss_floor_tornado.m2", + value = "skywall_boss_floor_tornado.m2", }, { - fileId = "196205", - text = "nexus_pillara.m2", - value = "nexus_pillara.m2", + fileId = "460840", + text = "skywall_boss_tornado.m2", + value = "skywall_boss_tornado.m2", }, { - fileId = "243825", - text = "nexus_raid_floating_platform_model.m2", - value = "nexus_raid_floating_platform_model.m2", + fileId = "436803", + text = "skywall_chains.m2", + value = "skywall_chains.m2", }, { - fileId = "196208", - text = "nexus_sigil_blue_01.m2", - value = "nexus_sigil_blue_01.m2", + fileId = "431488", + text = "skywall_chandelier_01.m2", + value = "skywall_chandelier_01.m2", }, { - fileId = "196209", - text = "nexus_sigil_blue_02.m2", - value = "nexus_sigil_blue_02.m2", + fileId = "437123", + text = "skywall_cloud_ring.m2", + value = "skywall_cloud_ring.m2", }, { - fileId = "196210", - text = "nexus_sigil_blue_small_01.m2", - value = "nexus_sigil_blue_small_01.m2", + fileId = "445680", + text = "skywall_cyclone_jump_draft.m2", + value = "skywall_cyclone_jump_draft.m2", }, { - fileId = "196211", - text = "nexus_sigil_blue_small_02.m2", - value = "nexus_sigil_blue_small_02.m2", + fileId = "432048", + text = "skywall_lightball_01.m2", + value = "skywall_lightball_01.m2", }, { - fileId = "196214", - text = "nexus_sigil_orange_01.m2", - value = "nexus_sigil_orange_01.m2", + fileId = "441882", + text = "skywall_lightball_02.m2", + value = "skywall_lightball_02.m2", }, { - fileId = "196215", - text = "nexus_sigil_orange_02.m2", - value = "nexus_sigil_orange_02.m2", + fileId = "418255", + text = "skywall_orangeglow_01.m2", + value = "skywall_orangeglow_01.m2", }, { - fileId = "243826", - text = "nexus_spike_a_ice.m2", - value = "nexus_spike_a_ice.m2", + fileId = "442763", + text = "skywall_orangeglow_02.m2", + value = "skywall_orangeglow_02.m2", }, { - fileId = "243827", - text = "nexus_spike_a_rock.m2", - value = "nexus_spike_a_rock.m2", + fileId = "436591", + text = "skywall_particles_01.m2", + value = "skywall_particles_01.m2", }, { - fileId = "243828", - text = "nexus_spike_b_ice.m2", - value = "nexus_spike_b_ice.m2", + fileId = "442657", + text = "skywall_storm_dragon_effect_01.m2", + value = "skywall_storm_dragon_effect_01.m2", }, { - fileId = "243829", - text = "nexus_spike_b_rock.m2", - value = "nexus_spike_b_rock.m2", + fileId = "443680", + text = "skywall_wind_drafteffect_01.m2", + value = "skywall_wind_drafteffect_01.m2", }, { - fileId = "243830", - text = "nexus_spike_c_ice.m2", - value = "nexus_spike_c_ice.m2", + fileId = "445681", + text = "skywall_wind_drafteffect_02.m2", + value = "skywall_wind_drafteffect_02.m2", }, { - fileId = "243831", - text = "nexus_spike_c_rock.m2", - value = "nexus_spike_c_rock.m2", + fileId = "451033", + text = "skywall_wind_drafteffect_03.m2", + value = "skywall_wind_drafteffect_03.m2", }, { - fileId = "243832", - text = "nexus_spike_d_ice.m2", - value = "nexus_spike_d_ice.m2", + fileId = "524121", + text = "skywall_wind_drafteffect_04.m2", + value = "skywall_wind_drafteffect_04.m2", }, { - fileId = "243833", - text = "nexus_spike_d_rock.m2", - value = "nexus_spike_d_rock.m2", + fileId = "439147", + text = "skywall_windstorm01.m2", + value = "skywall_windstorm01.m2", }, { - fileId = "196216", - text = "nexus_vortexroom_mainfx.m2", - value = "nexus_vortexroom_mainfx.m2", + fileId = "440161", + text = "skywall_wisps_01.m2", + value = "skywall_wisps_01.m2", }, { - fileId = "196217", - text = "nexus_white_bush_a.m2", - value = "nexus_white_bush_a.m2", + children = { + { + fileId = "365751", + text = "skywall_cloud_steam_01.m2", + value = "skywall_cloud_steam_01.m2", + }, + { + fileId = "382369", + text = "skywall_cloud_steam_02.m2", + value = "skywall_cloud_steam_02.m2", + }, + { + fileId = "382697", + text = "skywall_cloud_steam_03.m2", + value = "skywall_cloud_steam_03.m2", + }, + { + fileId = "383206", + text = "skywall_cloud_steam_04.m2", + value = "skywall_cloud_steam_04.m2", + }, + { + fileId = "384700", + text = "skywall_cloud_steam_05.m2", + value = "skywall_cloud_steam_05.m2", + }, + { + fileId = "464329", + text = "skywall_cloud_steam_06.m2", + value = "skywall_cloud_steam_06.m2", + }, + }, + text = "steam", + value = "steam", }, - }, - text = "nexus", - value = "nexus", - }, - { - children = { { children = { { - fileId = "196220", - text = "oracle_hut01.m2", - value = "oracle_hut01.m2", + fileId = "426405", + text = "skywall_urn1.m2", + value = "skywall_urn1.m2", }, { - fileId = "196221", - text = "oracle_hut02.m2", - value = "oracle_hut02.m2", + fileId = "426406", + text = "skywall_urn2.m2", + value = "skywall_urn2.m2", }, { - fileId = "196222", - text = "oracle_hut03.m2", - value = "oracle_hut03.m2", + fileId = "427638", + text = "skywall_urn3.m2", + value = "skywall_urn3.m2", }, }, - text = "huts", - value = "huts", + text = "urns", + value = "urns", }, }, - text = "oracle", - value = "oracle", + text = "skywall", + value = "skywall", }, { children = { { - fileId = "196225", - text = "nd_bfdpot_01.m2", - value = "nd_bfdpot_01.m2", + fileId = "376053", + text = "steamwheedle_banner_01.m2", + value = "steamwheedle_banner_01.m2", }, + }, + text = "steamwheedle", + value = "steamwheedle", + }, + { + children = { { - fileId = "196227", - text = "nd_bfdpot_02.m2", - value = "nd_bfdpot_02.m2", + fileId = "304138", + text = "stonetalon_bush01.m2", + value = "stonetalon_bush01.m2", }, + }, + text = "stonetalonrework", + value = "stonetalonrework", + }, + { + children = { { - fileId = "196228", - text = "nd_bfdpot_03.m2", - value = "nd_bfdpot_03.m2", + children = { + { + fileId = "413531", + text = "tolbarad_barbedwirefence_cornerpiece_01.m2", + value = "tolbarad_barbedwirefence_cornerpiece_01.m2", + }, + { + fileId = "413532", + text = "tolbarad_barbedwirefence_cornerpiece_destroyed_01.m2", + value = "tolbarad_barbedwirefence_cornerpiece_destroyed_01.m2", + }, + { + fileId = "413533", + text = "tolbarad_barbedwirefence_endpiece_01.m2", + value = "tolbarad_barbedwirefence_endpiece_01.m2", + }, + { + fileId = "413534", + text = "tolbarad_barbedwirefence_endpiece_destroyed_01.m2", + value = "tolbarad_barbedwirefence_endpiece_destroyed_01.m2", + }, + { + fileId = "413535", + text = "tolbarad_barbedwirefence_middlepiece_01.m2", + value = "tolbarad_barbedwirefence_middlepiece_01.m2", + }, + { + fileId = "413536", + text = "tolbarad_barbedwirefence_middlepiece_02.m2", + value = "tolbarad_barbedwirefence_middlepiece_02.m2", + }, + { + fileId = "413537", + text = "tolbarad_barbedwirefence_middlepiece_03.m2", + value = "tolbarad_barbedwirefence_middlepiece_03.m2", + }, + { + fileId = "413538", + text = "tolbarad_barbedwirefence_middlepiece_destroyed_01.m2", + value = "tolbarad_barbedwirefence_middlepiece_destroyed_01.m2", + }, + { + fileId = "413539", + text = "tolbarad_barbedwirefence_middlepiece_destroyed_02.m2", + value = "tolbarad_barbedwirefence_middlepiece_destroyed_02.m2", + }, + { + fileId = "413540", + text = "tolbarad_barbedwirefence_middlepiece_destroyed_03.m2", + value = "tolbarad_barbedwirefence_middlepiece_destroyed_03.m2", + }, + }, + text = "barbedwirefences", + value = "barbedwirefences", }, { - fileId = "196229", - text = "nd_bfdpot_04.m2", - value = "nd_bfdpot_04.m2", + children = { + { + fileId = "413541", + text = "tolbarad_barricade_endpiece_01.m2", + value = "tolbarad_barricade_endpiece_01.m2", + }, + { + fileId = "413542", + text = "tolbarad_barricade_endpiece_destroyed_01.m2", + value = "tolbarad_barricade_endpiece_destroyed_01.m2", + }, + { + fileId = "413543", + text = "tolbarad_barricade_middlepiece_01.m2", + value = "tolbarad_barricade_middlepiece_01.m2", + }, + { + fileId = "413544", + text = "tolbarad_barricade_middlepiece_02.m2", + value = "tolbarad_barricade_middlepiece_02.m2", + }, + { + fileId = "413545", + text = "tolbarad_barricade_middlepiece_03.m2", + value = "tolbarad_barricade_middlepiece_03.m2", + }, + { + fileId = "413546", + text = "tolbarad_barricade_middlepiece_destroyed_01.m2", + value = "tolbarad_barricade_middlepiece_destroyed_01.m2", + }, + { + fileId = "413547", + text = "tolbarad_barricade_middlepiece_destroyed_02.m2", + value = "tolbarad_barricade_middlepiece_destroyed_02.m2", + }, + { + fileId = "413548", + text = "tolbarad_barricade_middlepiece_destroyed_03.m2", + value = "tolbarad_barricade_middlepiece_destroyed_03.m2", + }, + { + fileId = "440563", + text = "tolbarad_vehicle_barricade_01.m2", + value = "tolbarad_vehicle_barricade_01.m2", + }, + { + fileId = "440564", + text = "tolbarad_vehicle_barricade_02.m2", + value = "tolbarad_vehicle_barricade_02.m2", + }, + { + fileId = "440565", + text = "tolbarad_vehicle_barricade_03.m2", + value = "tolbarad_vehicle_barricade_03.m2", + }, + { + fileId = "440566", + text = "tolbarad_vehicle_barricade_04.m2", + value = "tolbarad_vehicle_barricade_04.m2", + }, + { + fileId = "440567", + text = "tolbarad_vehicle_barricade_05.m2", + value = "tolbarad_vehicle_barricade_05.m2", + }, + }, + text = "barricade", + value = "barricade", }, { - fileId = "196230", - text = "nd_bfdpot_broken_01.m2", - value = "nd_bfdpot_broken_01.m2", + fileId = "458776", + text = "battlestandard_alliance_tolbarad.m2", + value = "battlestandard_alliance_tolbarad.m2", }, { - fileId = "196231", - text = "nd_bfdpot_broken_02.m2", - value = "nd_bfdpot_broken_02.m2", + fileId = "458778", + text = "battlestandard_horde_tolbarad.m2", + value = "battlestandard_horde_tolbarad.m2", }, { - fileId = "196232", - text = "nd_nestonebench_01.m2", - value = "nd_nestonebench_01.m2", + children = { + { + fileId = "437843", + text = "tolbarad_cage_01.m2", + value = "tolbarad_cage_01.m2", + }, + { + fileId = "437860", + text = "tolbarad_cage_02.m2", + value = "tolbarad_cage_02.m2", + }, + }, + text = "cages", + value = "cages", }, { - fileId = "196233", - text = "nd_nightelfruins_01.m2", - value = "nd_nightelfruins_01.m2", + children = { + { + fileId = "440569", + text = "tolbarad_chain_fence_01.m2", + value = "tolbarad_chain_fence_01.m2", + }, + { + fileId = "440570", + text = "tolbarad_chain_fence_02.m2", + value = "tolbarad_chain_fence_02.m2", + }, + { + fileId = "440571", + text = "tolbarad_chain_fence_03.m2", + value = "tolbarad_chain_fence_03.m2", + }, + }, + text = "chainfence", + value = "chainfence", }, { - fileId = "196235", - text = "nd_nightelfruins_02.m2", - value = "nd_nightelfruins_02.m2", + children = { + { + fileId = "433873", + text = "tolbarad_door_01.m2", + value = "tolbarad_door_01.m2", + }, + { + fileId = "433874", + text = "tolbarad_door_02.m2", + value = "tolbarad_door_02.m2", + }, + { + fileId = "440572", + text = "tolbarad_door_03.m2", + value = "tolbarad_door_03.m2", + }, + }, + text = "doors", + value = "doors", }, { - fileId = "196237", - text = "nd_nightelfruins_03.m2", - value = "nd_nightelfruins_03.m2", + children = { + { + fileId = "437862", + text = "tolbarad_pipe_01.m2", + value = "tolbarad_pipe_01.m2", + }, + { + fileId = "437863", + text = "tolbarad_pipe_02.m2", + value = "tolbarad_pipe_02.m2", + }, + { + fileId = "437864", + text = "tolbarad_pipe_03.m2", + value = "tolbarad_pipe_03.m2", + }, + { + fileId = "437865", + text = "tolbarad_pipe_04.m2", + value = "tolbarad_pipe_04.m2", + }, + { + fileId = "437866", + text = "tolbarad_pipe_05.m2", + value = "tolbarad_pipe_05.m2", + }, + { + fileId = "437867", + text = "tolbarad_pipe_06.m2", + value = "tolbarad_pipe_06.m2", + }, + { + fileId = "437868", + text = "tolbarad_pipe_07.m2", + value = "tolbarad_pipe_07.m2", + }, + { + fileId = "437869", + text = "tolbarad_pipe_08.m2", + value = "tolbarad_pipe_08.m2", + }, + { + fileId = "437870", + text = "tolbarad_pipe_connecter_01.m2", + value = "tolbarad_pipe_connecter_01.m2", + }, + { + fileId = "437871", + text = "tolbarad_pipe_connecter_02.m2", + value = "tolbarad_pipe_connecter_02.m2", + }, + }, + text = "pipes", + value = "pipes", }, { - fileId = "196239", - text = "nd_nightelfruins_04.m2", - value = "nd_nightelfruins_04.m2", + children = { + { + fileId = "439149", + text = "tolbarad_rubble_01.m2", + value = "tolbarad_rubble_01.m2", + }, + { + fileId = "439150", + text = "tolbarad_rubble_02.m2", + value = "tolbarad_rubble_02.m2", + }, + { + fileId = "439151", + text = "tolbarad_rubble_03.m2", + value = "tolbarad_rubble_03.m2", + }, + { + fileId = "439152", + text = "tolbarad_rubble_04.m2", + value = "tolbarad_rubble_04.m2", + }, + { + fileId = "439154", + text = "tolbarad_rubble_05.m2", + value = "tolbarad_rubble_05.m2", + }, + { + fileId = "439155", + text = "tolbarad_rubble_06.m2", + value = "tolbarad_rubble_06.m2", + }, + { + fileId = "439156", + text = "tolbarad_rubble_07.m2", + value = "tolbarad_rubble_07.m2", + }, + { + fileId = "446006", + text = "tolbarad_rubble_08.m2", + value = "tolbarad_rubble_08.m2", + }, + }, + text = "rubble", + value = "rubble", }, { - fileId = "196241", - text = "nd_nightelfruins_05.m2", - value = "nd_nightelfruins_05.m2", + fileId = "394631", + text = "tb_destroytower_fx1.m2", + value = "tb_destroytower_fx1.m2", }, { - fileId = "196243", - text = "nd_nightelfruins_06.m2", - value = "nd_nightelfruins_06.m2", + fileId = "394888", + text = "tb_destroytower_fx2.m2", + value = "tb_destroytower_fx2.m2", }, { - fileId = "196245", - text = "nd_nightelfruins_07.m2", - value = "nd_nightelfruins_07.m2", + fileId = "458779", + text = "tolbarad_banner_alliance01.m2", + value = "tolbarad_banner_alliance01.m2", }, { - fileId = "196247", - text = "nd_nightelfruins_08.m2", - value = "nd_nightelfruins_08.m2", + fileId = "458780", + text = "tolbarad_banner_horde01.m2", + value = "tolbarad_banner_horde01.m2", }, { - fileId = "196249", - text = "nd_nightelfruins_09.m2", - value = "nd_nightelfruins_09.m2", + fileId = "462343", + text = "tolbarad_door_04.m2", + value = "tolbarad_door_04.m2", }, { - fileId = "196251", - text = "nd_nightelfruins_10.m2", - value = "nd_nightelfruins_10.m2", + fileId = "442068", + text = "tolbarad_gates_01.m2", + value = "tolbarad_gates_01.m2", }, { - fileId = "196252", - text = "nd_nightelfruins_11.m2", - value = "nd_nightelfruins_11.m2", + fileId = "448560", + text = "tolbarad_gates_02.m2", + value = "tolbarad_gates_02.m2", }, { - fileId = "196253", - text = "nd_nightelfruins_12.m2", - value = "nd_nightelfruins_12.m2", + fileId = "433876", + text = "tolbarad_gearbox_01.m2", + value = "tolbarad_gearbox_01.m2", }, { - fileId = "196254", - text = "nd_nightelfruins_13.m2", - value = "nd_nightelfruins_13.m2", + fileId = "433877", + text = "tolbarad_gearbox_02.m2", + value = "tolbarad_gearbox_02.m2", }, { - fileId = "196255", - text = "nd_nightelfruins_14.m2", - value = "nd_nightelfruins_14.m2", + fileId = "431490", + text = "tolbarad_lamp_01.m2", + value = "tolbarad_lamp_01.m2", }, { - fileId = "196256", - text = "nd_nightelfruins_15.m2", - value = "nd_nightelfruins_15.m2", + fileId = "431492", + text = "tolbarad_lamp_02.m2", + value = "tolbarad_lamp_02.m2", }, { - fileId = "196257", - text = "nd_nightelfruins_16.m2", - value = "nd_nightelfruins_16.m2", + fileId = "431758", + text = "tolbarad_lamp_03.m2", + value = "tolbarad_lamp_03.m2", }, { - fileId = "196258", - text = "nd_nightelfruins_17.m2", - value = "nd_nightelfruins_17.m2", + fileId = "409141", + text = "tolbarad_ripped_fabric_01.m2", + value = "tolbarad_ripped_fabric_01.m2", }, { - fileId = "196259", - text = "nd_nightelfruins_18.m2", - value = "nd_nightelfruins_18.m2", + fileId = "409142", + text = "tolbarad_ripped_fabric_02.m2", + value = "tolbarad_ripped_fabric_02.m2", }, { - fileId = "196260", - text = "nd_nightelfruins_19.m2", - value = "nd_nightelfruins_19.m2", + fileId = "399515", + text = "tolbarad_searchlight_01.m2", + value = "tolbarad_searchlight_01.m2", }, { - fileId = "196261", - text = "nd_nightelfruins_20.m2", - value = "nd_nightelfruins_20.m2", + fileId = "399516", + text = "tolbarad_searchlight_02.m2", + value = "tolbarad_searchlight_02.m2", }, { - fileId = "196262", - text = "nd_nightelfruins_21.m2", - value = "nd_nightelfruins_21.m2", + fileId = "399517", + text = "tolbarad_searchlight_03.m2", + value = "tolbarad_searchlight_03.m2", }, { - fileId = "196263", - text = "nd_nightelfruins_22.m2", - value = "nd_nightelfruins_22.m2", + fileId = "458268", + text = "tolbarad_searchlight_03_nocollision.m2", + value = "tolbarad_searchlight_03_nocollision.m2", }, { - fileId = "196264", - text = "nd_nightelfruins_23.m2", - value = "nd_nightelfruins_23.m2", + fileId = "399518", + text = "tolbarad_searchlight_04.m2", + value = "tolbarad_searchlight_04.m2", }, }, - text = "riplash", - value = "riplash", + text = "tolbarad", + value = "tolbarad", }, { children = { { - fileId = "365265", - text = "reddragonshrine_tree01.m2", - value = "reddragonshrine_tree01.m2", + fileId = "443409", + text = "tolvir_backarmor_jackel.m2", + value = "tolvir_backarmor_jackel.m2", }, { - fileId = "365266", - text = "reddragonshrine_tree02.m2", - value = "reddragonshrine_tree02.m2", + fileId = "443410", + text = "tolvir_backarmor_ram.m2", + value = "tolvir_backarmor_ram.m2", }, { - fileId = "365267", - text = "reddragonshrine_tree03.m2", - value = "reddragonshrine_tree03.m2", + fileId = "443411", + text = "tolvir_backarmor_raven.m2", + value = "tolvir_backarmor_raven.m2", }, { - fileId = "365268", - text = "reddragonshrine_tree04.m2", - value = "reddragonshrine_tree04.m2", + fileId = "442506", + text = "tolvir_central_building_01_fx.m2", + value = "tolvir_central_building_01_fx.m2", }, { - fileId = "369736", - text = "reddragonshrine_tree04_burned.m2", - value = "reddragonshrine_tree04_burned.m2", + fileId = "442764", + text = "tolvir_central_building_02_fx.m2", + value = "tolvir_central_building_02_fx.m2", }, { - fileId = "370181", - text = "reddragonshrine_tree04_burned_anim.m2", - value = "reddragonshrine_tree04_burned_anim.m2", + fileId = "458801", + text = "tolvir_city_dome01.m2", + value = "tolvir_city_dome01.m2", }, { - fileId = "367330", - text = "rubysanctum_door_01.m2", - value = "rubysanctum_door_01.m2", + fileId = "424555", + text = "tolvir_godstatue_01.m2", + value = "tolvir_godstatue_01.m2", }, { - fileId = "368578", - text = "rubysanctum_door_02.m2", - value = "rubysanctum_door_02.m2", + fileId = "424556", + text = "tolvir_godstatue_02.m2", + value = "tolvir_godstatue_02.m2", }, { - fileId = "369209", - text = "rubysanctum_door_03.m2", - value = "rubysanctum_door_03.m2", + fileId = "424557", + text = "tolvir_godstatue_03.m2", + value = "tolvir_godstatue_03.m2", }, { - fileId = "370351", - text = "rubysanctum_door_04.m2", - value = "rubysanctum_door_04.m2", + fileId = "424558", + text = "tolvir_godstatue_04.m2", + value = "tolvir_godstatue_04.m2", + }, + { + fileId = "443412", + text = "tolvir_helm_jackel.m2", + value = "tolvir_helm_jackel.m2", + }, + { + fileId = "443413", + text = "tolvir_helm_ram.m2", + value = "tolvir_helm_ram.m2", + }, + { + fileId = "443414", + text = "tolvir_helm_raven.m2", + value = "tolvir_helm_raven.m2", + }, + { + fileId = "511837", + text = "tolvir_pool.m2", + value = "tolvir_pool.m2", }, }, - text = "rubysanctum", - value = "rubysanctum", + text = "tolvir", + value = "tolvir", }, { children = { { children = { { - fileId = "196266", - text = "sholazarpalm_bridge01.m2", - value = "sholazarpalm_bridge01.m2", + fileId = "436510", + text = "trog_cage_01.m2", + value = "trog_cage_01.m2", }, }, - text = "bridge", - value = "bridge", + text = "cage", + value = "cage", }, { children = { { - fileId = "196270", - text = "sholazar_aloea.m2", - value = "sholazar_aloea.m2", - }, - { - fileId = "196271", - text = "sholazar_aloeb.m2", - value = "sholazar_aloeb.m2", + fileId = "363632", + text = "trog_crate_01.m2", + value = "trog_crate_01.m2", }, { - fileId = "196272", - text = "sholazar_bambooa.m2", - value = "sholazar_bambooa.m2", + fileId = "363633", + text = "trog_crate_02.m2", + value = "trog_crate_02.m2", }, + }, + text = "crates", + value = "crates", + }, + { + children = { { - fileId = "196273", - text = "sholazar_bamboob.m2", - value = "sholazar_bamboob.m2", + fileId = "384485", + text = "deepholm_trogdwelling01.m2", + value = "deepholm_trogdwelling01.m2", }, { - fileId = "196274", - text = "sholazar_cattaila.m2", - value = "sholazar_cattaila.m2", + fileId = "384486", + text = "deepholm_trogdwelling02.m2", + value = "deepholm_trogdwelling02.m2", }, { - fileId = "196275", - text = "sholazar_cattailb.m2", - value = "sholazar_cattailb.m2", + fileId = "384487", + text = "deepholm_trogdwelling03.m2", + value = "deepholm_trogdwelling03.m2", }, + }, + text = "dwelings", + value = "dwelings", + }, + { + children = { { - fileId = "243838", - text = "sholazar_fern_questonly.m2", - value = "sholazar_fern_questonly.m2", + fileId = "357309", + text = "trogg_fence_01.m2", + value = "trogg_fence_01.m2", }, { - fileId = "196276", - text = "sholazar_ferna.m2", - value = "sholazar_ferna.m2", + fileId = "357310", + text = "trogg_fence_02.m2", + value = "trogg_fence_02.m2", }, + }, + text = "fences", + value = "fences", + }, + { + children = { { - fileId = "243839", - text = "sholazar_ferna_dark.m2", - value = "sholazar_ferna_dark.m2", + fileId = "386007", + text = "trog_mushroomshield_01.m2", + value = "trog_mushroomshield_01.m2", }, { - fileId = "196277", - text = "sholazar_fernb.m2", - value = "sholazar_fernb.m2", + fileId = "386009", + text = "trog_mushroomshield_02.m2", + value = "trog_mushroomshield_02.m2", }, { - fileId = "243840", - text = "sholazar_fernb_dark.m2", - value = "sholazar_fernb_dark.m2", + fileId = "386011", + text = "trog_mushroomshield_03.m2", + value = "trog_mushroomshield_03.m2", }, { - fileId = "196278", - text = "sholazar_flowera.m2", - value = "sholazar_flowera.m2", + fileId = "383963", + text = "trog_slingshot_01.m2", + value = "trog_slingshot_01.m2", }, { - fileId = "196279", - text = "sholazar_flowerb.m2", - value = "sholazar_flowerb.m2", + fileId = "383964", + text = "trog_slingshot_02.m2", + value = "trog_slingshot_02.m2", }, { - fileId = "196280", - text = "sholazar_grassa.m2", - value = "sholazar_grassa.m2", + fileId = "383552", + text = "trog_weapon_01.m2", + value = "trog_weapon_01.m2", }, { - fileId = "243841", - text = "sholazar_grassa_dark.m2", - value = "sholazar_grassa_dark.m2", + fileId = "383553", + text = "trog_weapon_02.m2", + value = "trog_weapon_02.m2", }, { - fileId = "196281", - text = "sholazar_grassb.m2", - value = "sholazar_grassb.m2", + fileId = "383554", + text = "trog_weapon_03.m2", + value = "trog_weapon_03.m2", }, { - fileId = "243842", - text = "sholazar_grassb_dark.m2", - value = "sholazar_grassb_dark.m2", + fileId = "364523", + text = "trog_weaponrack_01.m2", + value = "trog_weaponrack_01.m2", }, { - fileId = "196282", - text = "sholazar_leafybusha.m2", - value = "sholazar_leafybusha.m2", + fileId = "364524", + text = "trog_weaponrack_02.m2", + value = "trog_weaponrack_02.m2", }, { - fileId = "243843", - text = "sholazar_leafybusha_dark.m2", - value = "sholazar_leafybusha_dark.m2", + fileId = "364525", + text = "trog_weaponrack_03.m2", + value = "trog_weaponrack_03.m2", }, + }, + text = "items", + value = "items", + }, + { + children = { { - fileId = "196283", - text = "sholazar_leafybushb.m2", - value = "sholazar_leafybushb.m2", + fileId = "358388", + text = "trog_light_01.m2", + value = "trog_light_01.m2", }, { - fileId = "243844", - text = "sholazar_leafybushb_dark.m2", - value = "sholazar_leafybushb_dark.m2", + fileId = "362338", + text = "trog_walllight_01.m2", + value = "trog_walllight_01.m2", }, { - fileId = "196284", - text = "sholazarshrub04.m2", - value = "sholazarshrub04.m2", + fileId = "362339", + text = "trog_walllight_02.m2", + value = "trog_walllight_02.m2", }, + }, + text = "lights", + value = "lights", + }, + { + children = { { - fileId = "196285", - text = "sholazarshrub05.m2", - value = "sholazarshrub05.m2", + fileId = "362617", + text = "trog_ropes_01.m2", + value = "trog_ropes_01.m2", }, { - fileId = "196286", - text = "sholazarshrub07.m2", - value = "sholazarshrub07.m2", + fileId = "362618", + text = "trog_ropes_02.m2", + value = "trog_ropes_02.m2", }, { - fileId = "196287", - text = "sholazarshrub09.m2", - value = "sholazarshrub09.m2", + fileId = "362619", + text = "trog_ropes_03.m2", + value = "trog_ropes_03.m2", }, }, - text = "bushes", - value = "bushes", + text = "ropes", + value = "ropes", }, { children = { { - fileId = "243845", - text = "sholazarbasin_fog_cool.m2", - value = "sholazarbasin_fog_cool.m2", - }, - { - fileId = "243846", - text = "sholazarbasin_fog_warm.m2", - value = "sholazarbasin_fog_warm.m2", + fileId = "386263", + text = "trog_skeleton_01.m2", + value = "trog_skeleton_01.m2", }, }, - text = "fog", - value = "fog", - }, - { - fileId = "243847", - text = "hatchwindow.m2", - value = "hatchwindow.m2", + text = "skeleton", + value = "skeleton", }, + }, + text = "trogg", + value = "trogg", + }, + { + children = { { children = { { - fileId = "196290", - text = "sholazar_lightray_01.m2", - value = "sholazar_lightray_01.m2", + fileId = "305630", + text = "twilightshammer_altar01.m2", + value = "twilightshammer_altar01.m2", }, { - fileId = "196291", - text = "sholazar_lightray_02.m2", - value = "sholazar_lightray_02.m2", + fileId = "324702", + text = "twilightshammer_pillar01_broken.m2", + value = "twilightshammer_pillar01_broken.m2", }, }, - text = "lightfx", - value = "lightfx", - }, - { - fileId = "243849", - text = "losthatch.m2", - value = "losthatch.m2", + text = "altar", + value = "altar", }, { children = { { - fileId = "196293", - text = "sholazar_rocka.m2", - value = "sholazar_rocka.m2", - }, - { - fileId = "243850", - text = "sholazar_rocka_dark.m2", - value = "sholazar_rocka_dark.m2", + fileId = "249664", + text = "twilighthammer_orb_01.m2", + value = "twilighthammer_orb_01.m2", }, { - fileId = "196294", - text = "sholazar_rockb.m2", - value = "sholazar_rockb.m2", + fileId = "318837", + text = "twilightshammer_bannercat_ceiling_01.m2", + value = "twilightshammer_bannercat_ceiling_01.m2", }, { - fileId = "243852", - text = "sholazar_rockb_dark.m2", - value = "sholazar_rockb_dark.m2", + fileId = "318839", + text = "twilightshammer_bannercat_ceiling_01tattered.m2", + value = "twilightshammer_bannercat_ceiling_01tattered.m2", }, { - fileId = "196295", - text = "sholazar_rockc.m2", - value = "sholazar_rockc.m2", + fileId = "318840", + text = "twilightshammer_bannercat_wall_01.m2", + value = "twilightshammer_bannercat_wall_01.m2", }, { - fileId = "243853", - text = "sholazar_rockc_dark.m2", - value = "sholazar_rockc_dark.m2", + fileId = "318841", + text = "twilightshammer_bannercat_wall_01tattered.m2", + value = "twilightshammer_bannercat_wall_01tattered.m2", }, { - fileId = "196296", - text = "sholazar_rockd.m2", - value = "sholazar_rockd.m2", + fileId = "305638", + text = "twilightshammer_bannercataclysm_01.m2", + value = "twilightshammer_bannercataclysm_01.m2", }, { - fileId = "243854", - text = "sholazar_rockd_dark.m2", - value = "sholazar_rockd_dark.m2", + fileId = "311628", + text = "twilightshammer_bannercataclysm_02.m2", + value = "twilightshammer_bannercataclysm_02.m2", }, { - fileId = "196297", - text = "sholazar_rocke.m2", - value = "sholazar_rocke.m2", + fileId = "328329", + text = "twilightshammer_barricades01.m2", + value = "twilightshammer_barricades01.m2", }, { - fileId = "243855", - text = "sholazar_rocke_dark.m2", - value = "sholazar_rocke_dark.m2", + fileId = "329442", + text = "twilightshammer_barricades01_broken.m2", + value = "twilightshammer_barricades01_broken.m2", }, { - fileId = "196299", - text = "sholazar_rocksmalla.m2", - value = "sholazar_rocksmalla.m2", + fileId = "329123", + text = "twilightshammer_barricades02.m2", + value = "twilightshammer_barricades02.m2", }, { - fileId = "196300", - text = "sholazar_rocksmallb.m2", - value = "sholazar_rocksmallb.m2", + fileId = "325763", + text = "twilightshammer_dragon_banner.m2", + value = "twilightshammer_dragon_banner.m2", }, { - fileId = "196301", - text = "sholazar_rocksmallc.m2", - value = "sholazar_rocksmallc.m2", + fileId = "318842", + text = "twilightshammer_symbol_hanging_01.m2", + value = "twilightshammer_symbol_hanging_01.m2", }, { - fileId = "196302", - text = "sholazar_rocksmalld.m2", - value = "sholazar_rocksmalld.m2", + fileId = "318843", + text = "twilightshammer_symbol_wallmount_01.m2", + value = "twilightshammer_symbol_wallmount_01.m2", }, }, - text = "rocks", - value = "rocks", + text = "banners", + value = "banners", }, { children = { { - fileId = "196303", - text = "shipwreck_sails.m2", - value = "shipwreck_sails.m2", + fileId = "359126", + text = "twilightshammer_barrel01.m2", + value = "twilightshammer_barrel01.m2", + }, + { + fileId = "359127", + text = "twilightshammer_barrel02.m2", + value = "twilightshammer_barrel02.m2", }, }, - text = "shipwreck_d", - value = "shipwreck_d", - }, - { - fileId = "196305", - text = "sholazar_crystal_01.m2", - value = "sholazar_crystal_01.m2", - }, - { - fileId = "196306", - text = "sholazar_crystal_02.m2", - value = "sholazar_crystal_02.m2", + text = "barrel", + value = "barrel", }, { - fileId = "196307", - text = "sholazar_crystal_03.m2", - value = "sholazar_crystal_03.m2", + children = { + { + fileId = "318184", + text = "twilightshammer_brazier_01.m2", + value = "twilightshammer_brazier_01.m2", + }, + }, + text = "brazier", + value = "brazier", }, { - fileId = "243856", - text = "sholazar_crystal_03a.m2", - value = "sholazar_crystal_03a.m2", + children = { + { + fileId = "305640", + text = "twilightshammer_cabinet_01.m2", + value = "twilightshammer_cabinet_01.m2", + }, + { + fileId = "305641", + text = "twilightshammer_cabinet_02.m2", + value = "twilightshammer_cabinet_02.m2", + }, + }, + text = "cabinets", + value = "cabinets", }, { - fileId = "196308", - text = "sholazar_crystal_04.m2", - value = "sholazar_crystal_04.m2", + children = { + { + fileId = "306250", + text = "twilightshammer_cage_01.m2", + value = "twilightshammer_cage_01.m2", + }, + { + fileId = "318185", + text = "twilightshammer_cage_02.m2", + value = "twilightshammer_cage_02.m2", + }, + { + fileId = "325748", + text = "twilightshammer_hanging_cage_01.m2", + value = "twilightshammer_hanging_cage_01.m2", + }, + }, + text = "cage", + value = "cage", }, { - fileId = "243857", - text = "sholazar_crystal_04a.m2", - value = "sholazar_crystal_04a.m2", + children = { + { + fileId = "419235", + text = "twilightshammer_chain_01.m2", + value = "twilightshammer_chain_01.m2", + }, + { + fileId = "419236", + text = "twilightshammer_chain_02.m2", + value = "twilightshammer_chain_02.m2", + }, + { + fileId = "419237", + text = "twilightshammer_chain_03.m2", + value = "twilightshammer_chain_03.m2", + }, + { + fileId = "419238", + text = "twilightshammer_chain_04.m2", + value = "twilightshammer_chain_04.m2", + }, + { + fileId = "419239", + text = "twilightshammer_chain_05.m2", + value = "twilightshammer_chain_05.m2", + }, + { + fileId = "419240", + text = "twilightshammer_chain_06.m2", + value = "twilightshammer_chain_06.m2", + }, + { + fileId = "419241", + text = "twilightshammer_chain_07.m2", + value = "twilightshammer_chain_07.m2", + }, + { + fileId = "419242", + text = "twilightshammer_chain_08.m2", + value = "twilightshammer_chain_08.m2", + }, + { + fileId = "419243", + text = "twilightshammer_chain_09.m2", + value = "twilightshammer_chain_09.m2", + }, + }, + text = "chains", + value = "chains", }, { - fileId = "196309", - text = "sholazar_crystal_05.m2", - value = "sholazar_crystal_05.m2", + children = { + { + fileId = "512025", + text = "twilightshammer_chest.m2", + value = "twilightshammer_chest.m2", + }, + }, + text = "chest", + value = "chest", }, { - fileId = "196310", - text = "sholazar_crystal_06.m2", - value = "sholazar_crystal_06.m2", + children = { + { + fileId = "359128", + text = "twilightshammer_crate02.m2", + value = "twilightshammer_crate02.m2", + }, + { + fileId = "359129", + text = "twilightshammer_crate03.m2", + value = "twilightshammer_crate03.m2", + }, + }, + text = "crate", + value = "crate", }, { - fileId = "196311", - text = "sholazar_crystal_07.m2", - value = "sholazar_crystal_07.m2", + children = { + { + fileId = "452140", + text = "twilightshammer_dragonbutchered_01.m2", + value = "twilightshammer_dragonbutchered_01.m2", + }, + { + fileId = "452141", + text = "twilightshammer_dragonbutchered_02.m2", + value = "twilightshammer_dragonbutchered_02.m2", + }, + { + fileId = "452142", + text = "twilightshammer_dragonbutchered_03.m2", + value = "twilightshammer_dragonbutchered_03.m2", + }, + { + fileId = "452143", + text = "twilightshammer_dragonbutchered_04.m2", + value = "twilightshammer_dragonbutchered_04.m2", + }, + }, + text = "dragonbutchered", + value = "dragonbutchered", }, { - fileId = "243859", - text = "sholazar_geode_crys_1.m2", - value = "sholazar_geode_crys_1.m2", + children = { + { + fileId = "351241", + text = "twilightshammer_dragonegg_01.m2", + value = "twilightshammer_dragonegg_01.m2", + }, + { + fileId = "351407", + text = "twilightshammer_dragonegg_02.m2", + value = "twilightshammer_dragonegg_02.m2", + }, + { + fileId = "428351", + text = "twilightshammer_dragonegg_03.m2", + value = "twilightshammer_dragonegg_03.m2", + }, + { + fileId = "428352", + text = "twilightshammer_dragonegg_04.m2", + value = "twilightshammer_dragonegg_04.m2", + }, + { + fileId = "428355", + text = "twilightshammer_dragonegg_05.m2", + value = "twilightshammer_dragonegg_05.m2", + }, + { + fileId = "428358", + text = "twilightshammer_dragonegg_06.m2", + value = "twilightshammer_dragonegg_06.m2", + }, + { + fileId = "451108", + text = "twilightshammer_dragonegg_red_01.m2", + value = "twilightshammer_dragonegg_red_01.m2", + }, + }, + text = "dragoneggs", + value = "dragoneggs", }, { - fileId = "243860", - text = "sholazar_geode_crys_2.m2", - value = "sholazar_geode_crys_2.m2", + children = { + { + fileId = "367743", + text = "twilightshammer_elementalgate.m2", + value = "twilightshammer_elementalgate.m2", + }, + { + fileId = "367449", + text = "twilightshammer_elementalgate_fire01.m2", + value = "twilightshammer_elementalgate_fire01.m2", + }, + }, + text = "elementalgates", + value = "elementalgates", }, { - fileId = "243861", - text = "sholazar_geode_crys_3.m2", - value = "sholazar_geode_crys_3.m2", + children = { + { + fileId = "357866", + text = "twilightshammer_fence_01.m2", + value = "twilightshammer_fence_01.m2", + }, + { + fileId = "357867", + text = "twilightshammer_fence_02.m2", + value = "twilightshammer_fence_02.m2", + }, + { + fileId = "357868", + text = "twilightshammer_fence_post_01.m2", + value = "twilightshammer_fence_post_01.m2", + }, + { + fileId = "357869", + text = "twilightshammer_fence_post_02.m2", + value = "twilightshammer_fence_post_02.m2", + }, + }, + text = "fence", + value = "fence", }, { children = { { - fileId = "196314", - text = "sholazar_branch_large01.m2", - value = "sholazar_branch_large01.m2", + fileId = "323361", + text = "twilightshammer_arch.m2", + value = "twilightshammer_arch.m2", }, { - fileId = "196315", - text = "sholazar_branch_medium01.m2", - value = "sholazar_branch_medium01.m2", + fileId = "325764", + text = "twilightshammer_arch_02.m2", + value = "twilightshammer_arch_02.m2", }, { - fileId = "196316", - text = "sholazar_branch_small01.m2", - value = "sholazar_branch_small01.m2", + fileId = "325225", + text = "twilightshammer_crate01.m2", + value = "twilightshammer_crate01.m2", }, { - fileId = "196317", - text = "sholazar_fruit01.m2", - value = "sholazar_fruit01.m2", + fileId = "321289", + text = "twilightshammer_dragonperch.m2", + value = "twilightshammer_dragonperch.m2", }, { - fileId = "196319", - text = "sholazar_root01.m2", - value = "sholazar_root01.m2", + fileId = "305633", + text = "twilightshammer_lamppost_01.m2", + value = "twilightshammer_lamppost_01.m2", }, { - fileId = "196320", - text = "sholazar_root02.m2", - value = "sholazar_root02.m2", + fileId = "305634", + text = "twilightshammer_lamppost_02.m2", + value = "twilightshammer_lamppost_02.m2", }, { - fileId = "196321", - text = "sholazar_root03.m2", - value = "sholazar_root03.m2", + fileId = "402263", + text = "twilightshammer_lamppost_03.m2", + value = "twilightshammer_lamppost_03.m2", }, { - fileId = "196322", - text = "sholazar_root04.m2", - value = "sholazar_root04.m2", + fileId = "305636", + text = "twilightshammer_lamppost_water_01.m2", + value = "twilightshammer_lamppost_water_01.m2", }, { - fileId = "196323", - text = "sholazar_root05.m2", - value = "sholazar_root05.m2", + fileId = "326935", + text = "twilightshammer_lava_brick01.m2", + value = "twilightshammer_lava_brick01.m2", }, { - fileId = "196324", - text = "sholazar_root06.m2", - value = "sholazar_root06.m2", + fileId = "327002", + text = "twilightshammer_lava_brick02.m2", + value = "twilightshammer_lava_brick02.m2", }, { - fileId = "196325", - text = "sholazar_root07.m2", - value = "sholazar_root07.m2", + fileId = "327542", + text = "twilightshammer_lava_bucket.m2", + value = "twilightshammer_lava_bucket.m2", }, { - fileId = "196326", - text = "sholazar_treeleafa.m2", - value = "sholazar_treeleafa.m2", + fileId = "326633", + text = "twilightshammer_lava_magicball.m2", + value = "twilightshammer_lava_magicball.m2", }, { - fileId = "196327", - text = "sholazar_treeleafb.m2", - value = "sholazar_treeleafb.m2", + fileId = "326711", + text = "twilightshammer_lava_pole.m2", + value = "twilightshammer_lava_pole.m2", }, { - fileId = "196329", - text = "sholazar_vine01.m2", - value = "sholazar_vine01.m2", + fileId = "322644", + text = "twilightshammer_pillar01.m2", + value = "twilightshammer_pillar01.m2", }, { - fileId = "196330", - text = "sholazar_vine02.m2", - value = "sholazar_vine02.m2", + fileId = "325765", + text = "twilightshammer_pillar02.m2", + value = "twilightshammer_pillar02.m2", }, { - fileId = "196331", - text = "sholazarbroadleaf_bush01.m2", - value = "sholazarbroadleaf_bush01.m2", + fileId = "325766", + text = "twilightshammer_pillar03.m2", + value = "twilightshammer_pillar03.m2", }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { { - fileId = "243863", - text = "sholazarbroadleaf_bush01_dark.m2", - value = "sholazarbroadleaf_bush01_dark.m2", + fileId = "355142", + text = "twilightshammer_hanginglamp_01.m2", + value = "twilightshammer_hanginglamp_01.m2", }, { - fileId = "196332", - text = "sholazarbroadleaf_bush02.m2", - value = "sholazarbroadleaf_bush02.m2", + fileId = "314501", + text = "twilightshammer_lamp_01.m2", + value = "twilightshammer_lamp_01.m2", }, { - fileId = "243864", - text = "sholazarbroadleaf_bush02_dark.m2", - value = "sholazarbroadleaf_bush02_dark.m2", + fileId = "314500", + text = "twilightshammer_lampwall_01.m2", + value = "twilightshammer_lampwall_01.m2", }, + }, + text = "lamps", + value = "lamps", + }, + { + children = { { - fileId = "196333", - text = "sholazarbroadleaf_bush_scourge_01.m2", - value = "sholazarbroadleaf_bush_scourge_01.m2", + fileId = "409143", + text = "twilightshammer_hugelava_brick01.m2", + value = "twilightshammer_hugelava_brick01.m2", }, { - fileId = "196334", - text = "sholazarcanopy_log01.m2", - value = "sholazarcanopy_log01.m2", + fileId = "409144", + text = "twilightshammer_hugelava_brick02.m2", + value = "twilightshammer_hugelava_brick02.m2", }, + }, + text = "lava", + value = "lava", + }, + { + children = { { - fileId = "196336", - text = "sholazarcanopy_trunk01.m2", - value = "sholazarcanopy_trunk01.m2", + fileId = "391892", + text = "twilightshammerlightning01.m2", + value = "twilightshammerlightning01.m2", }, { - fileId = "196338", - text = "sholazarhugecanopy_doodad.m2", - value = "sholazarhugecanopy_doodad.m2", + fileId = "391893", + text = "twilightshammerlightning02.m2", + value = "twilightshammerlightning02.m2", }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { { - fileId = "196340", - text = "sholazarhugecanopy_tree01.m2", - value = "sholazarhugecanopy_tree01.m2", + fileId = "364962", + text = "twilightshammer_largedevice_01.m2", + value = "twilightshammer_largedevice_01.m2", }, { - fileId = "196341", - text = "sholazarhugecanopy_tree02.m2", - value = "sholazarhugecanopy_tree02.m2", + fileId = "364963", + text = "twilightshammer_largedevice_02.m2", + value = "twilightshammer_largedevice_02.m2", }, { - fileId = "196342", - text = "sholazarhugecanopy_tree03.m2", - value = "sholazarhugecanopy_tree03.m2", + fileId = "317356", + text = "twilightshammer_magicaldevice_01.m2", + value = "twilightshammer_magicaldevice_01.m2", }, { - fileId = "196343", - text = "sholazarhugecanopy_tree_scourge_01.m2", - value = "sholazarhugecanopy_tree_scourge_01.m2", + fileId = "317357", + text = "twilightshammer_magicaldevice_02.m2", + value = "twilightshammer_magicaldevice_02.m2", }, { - fileId = "243868", - text = "sholazarpalm_burning01.m2", - value = "sholazarpalm_burning01.m2", + fileId = "317816", + text = "twilightshammer_magicaldevice_02air.m2", + value = "twilightshammer_magicaldevice_02air.m2", }, { - fileId = "196352", - text = "sholazarpalm_fallentree01.m2", - value = "sholazarpalm_fallentree01.m2", + fileId = "317817", + text = "twilightshammer_magicaldevice_02earth.m2", + value = "twilightshammer_magicaldevice_02earth.m2", }, { - fileId = "196353", - text = "sholazarpalm_fallentree02.m2", - value = "sholazarpalm_fallentree02.m2", + fileId = "317818", + text = "twilightshammer_magicaldevice_02fire.m2", + value = "twilightshammer_magicaldevice_02fire.m2", }, { - fileId = "196355", - text = "sholazarpalm_fruit.m2", - value = "sholazarpalm_fruit.m2", + fileId = "317819", + text = "twilightshammer_magicaldevice_02water.m2", + value = "twilightshammer_magicaldevice_02water.m2", }, { - fileId = "196356", - text = "sholazarpalm_log01.m2", - value = "sholazarpalm_log01.m2", + fileId = "317358", + text = "twilightshammer_magicaldevice_03.m2", + value = "twilightshammer_magicaldevice_03.m2", }, { - fileId = "196357", - text = "sholazarpalm_log02.m2", - value = "sholazarpalm_log02.m2", + fileId = "317359", + text = "twilightshammer_magicaldevice_04.m2", + value = "twilightshammer_magicaldevice_04.m2", }, { - fileId = "196359", - text = "sholazarpalm_tree01.m2", - value = "sholazarpalm_tree01.m2", + fileId = "317820", + text = "twilightshammer_magicaldevice_04air.m2", + value = "twilightshammer_magicaldevice_04air.m2", }, { - fileId = "196361", - text = "sholazarpalm_tree02.m2", - value = "sholazarpalm_tree02.m2", + fileId = "317821", + text = "twilightshammer_magicaldevice_04earth.m2", + value = "twilightshammer_magicaldevice_04earth.m2", }, { - fileId = "196362", - text = "sholazarpalm_tree03.m2", - value = "sholazarpalm_tree03.m2", + fileId = "317822", + text = "twilightshammer_magicaldevice_04fire.m2", + value = "twilightshammer_magicaldevice_04fire.m2", }, { - fileId = "196364", - text = "sholazarpalm_tree_scourge_01.m2", - value = "sholazarpalm_tree_scourge_01.m2", + fileId = "317823", + text = "twilightshammer_magicaldevice_04water.m2", + value = "twilightshammer_magicaldevice_04water.m2", }, + }, + text = "magicaldevices", + value = "magicaldevices", + }, + { + children = { { - fileId = "196365", - text = "sholazarpalm_tree_scourge_02.m2", - value = "sholazarpalm_tree_scourge_02.m2", + fileId = "382293", + text = "twilighthammer_pillarglow_01.m2", + value = "twilighthammer_pillarglow_01.m2", }, { - fileId = "196366", - text = "sholazarpalm_trunk01.m2", - value = "sholazarpalm_trunk01.m2", + fileId = "382528", + text = "twilighthammer_pillarglow_02.m2", + value = "twilighthammer_pillarglow_02.m2", }, { - fileId = "196367", - text = "sholazarpalm_trunk02.m2", - value = "sholazarpalm_trunk02.m2", + fileId = "394744", + text = "twilighthammer_pillarglow_03.m2", + value = "twilighthammer_pillarglow_03.m2", + }, + { + fileId = "366652", + text = "twilightshammer_pillar04.m2", + value = "twilightshammer_pillar04.m2", + }, + { + fileId = "369066", + text = "twilightshammer_pillar04_dirty.m2", + value = "twilightshammer_pillar04_dirty.m2", }, }, - text = "trees", - value = "trees", + text = "pillar", + value = "pillar", }, { children = { { - fileId = "243871", - text = "wasp_smallhive01.m2", - value = "wasp_smallhive01.m2", + fileId = "360032", + text = "twilightshammer_rug01.m2", + value = "twilightshammer_rug01.m2", + }, + { + fileId = "360034", + text = "twilightshammer_rug02.m2", + value = "twilightshammer_rug02.m2", }, }, - text = "waspkit", - value = "waspkit", + text = "rugs", + value = "rugs", }, { children = { { - fileId = "243872", - text = "sholazar_dirty_waterfall.m2", - value = "sholazar_dirty_waterfall.m2", + fileId = "376723", + text = "twilightshammer_altar_sand.m2", + value = "twilightshammer_altar_sand.m2", }, { - fileId = "243873", - text = "sholazar_dirty_waterfall_chop.m2", - value = "sholazar_dirty_waterfall_chop.m2", + fileId = "376725", + text = "twilightshammer_bannercataclysm_sand_01.m2", + value = "twilightshammer_bannercataclysm_sand_01.m2", }, { - fileId = "196369", - text = "sholazar_northoceanwaterfall_center01.m2", - value = "sholazar_northoceanwaterfall_center01.m2", + fileId = "376727", + text = "twilightshammer_barrel_sand.m2", + value = "twilightshammer_barrel_sand.m2", }, { - fileId = "196370", - text = "sholazarnorthoceanwf04.m2", - value = "sholazarnorthoceanwf04.m2", + fileId = "376728", + text = "twilightshammer_barrel_sand02.m2", + value = "twilightshammer_barrel_sand02.m2", }, { - fileId = "196371", - text = "sholazarsouthoceanwaterfall-01.m2", - value = "sholazarsouthoceanwaterfall-01.m2", + fileId = "376731", + text = "twilightshammer_barricades_sand01.m2", + value = "twilightshammer_barricades_sand01.m2", }, { - fileId = "196372", - text = "sholazarsouthoceanwaterfall-03.m2", - value = "sholazarsouthoceanwaterfall-03.m2", + fileId = "376732", + text = "twilightshammer_barricades_sand02.m2", + value = "twilightshammer_barricades_sand02.m2", }, { - fileId = "196373", - text = "sholazarsouthoceanwaterfall-04.m2", - value = "sholazarsouthoceanwaterfall-04.m2", + fileId = "376734", + text = "twilightshammer_brazier_sand.m2", + value = "twilightshammer_brazier_sand.m2", }, { - fileId = "196374", - text = "sholazarsouthoceanwaterfall-05.m2", - value = "sholazarsouthoceanwaterfall-05.m2", + fileId = "376737", + text = "twilightshammer_cage_sand01.m2", + value = "twilightshammer_cage_sand01.m2", }, { - fileId = "243874", - text = "sholazarsouthoceanwaterfall-06.m2", - value = "sholazarsouthoceanwaterfall-06.m2", + fileId = "376738", + text = "twilightshammer_cage_sand02.m2", + value = "twilightshammer_cage_sand02.m2", }, { - fileId = "243875", - text = "sholazarsouthoceanwaterfall-07.m2", - value = "sholazarsouthoceanwaterfall-07.m2", + fileId = "376740", + text = "twilightshammer_crate_sand01.m2", + value = "twilightshammer_crate_sand01.m2", }, { - fileId = "196375", - text = "sholazarsouthoceanwaterfall_center.m2", - value = "sholazarsouthoceanwaterfall_center.m2", + fileId = "376741", + text = "twilightshammer_crate_sand02.m2", + value = "twilightshammer_crate_sand02.m2", + }, + { + fileId = "376742", + text = "twilightshammer_crate_sand03.m2", + value = "twilightshammer_crate_sand03.m2", + }, + { + fileId = "376744", + text = "twilightshammer_dragonperch_sand.m2", + value = "twilightshammer_dragonperch_sand.m2", + }, + { + fileId = "376746", + text = "twilightshammer_largedevice_sand01.m2", + value = "twilightshammer_largedevice_sand01.m2", + }, + { + fileId = "378564", + text = "twilightshammer_pillar_sand_01.m2", + value = "twilightshammer_pillar_sand_01.m2", + }, + { + fileId = "376747", + text = "twilightshammer_pillar_sand_01_broken.m2", + value = "twilightshammer_pillar_sand_01_broken.m2", + }, + { + fileId = "378565", + text = "twilightshammer_pillar_sand_02.m2", + value = "twilightshammer_pillar_sand_02.m2", + }, + { + fileId = "378566", + text = "twilightshammer_pillar_sand_03.m2", + value = "twilightshammer_pillar_sand_03.m2", + }, + { + fileId = "378567", + text = "twilightshammer_tent_sand_01.m2", + value = "twilightshammer_tent_sand_01.m2", + }, + { + fileId = "376749", + text = "twilightshammer_tent_sand_02.m2", + value = "twilightshammer_tent_sand_02.m2", }, }, - text = "waterfalls", - value = "waterfalls", - }, - }, - text = "scholazar", - value = "scholazar", - }, - { - children = { - { - fileId = "243880", - text = "nd_icebreaker_ship_bg.m2", - value = "nd_icebreaker_ship_bg.m2", - }, - { - fileId = "311514", - text = "nd_icebreaker_ship_bg_flip.m2", - value = "nd_icebreaker_ship_bg_flip.m2", - }, - { - fileId = "243881", - text = "nd_ship_ud_bg.m2", - value = "nd_ship_ud_bg.m2", - }, - { - fileId = "311511", - text = "nd_ship_ud_bg_flip.m2", - value = "nd_ship_ud_bg_flip.m2", - }, - { - fileId = "243882", - text = "transport_ship_ud_sails.m2", - value = "transport_ship_ud_sails.m2", + text = "sand", + value = "sand", }, - }, - text = "ships", - value = "ships", - }, - { - children = { { children = { { - fileId = "243884", - text = "sholazar_rainbow.m2", - value = "sholazar_rainbow.m2", + fileId = "367308", + text = "twilightshammer_sandwichboardsign_01.m2", + value = "twilightshammer_sandwichboardsign_01.m2", }, }, - text = "rainbow", - value = "rainbow", - }, - { - fileId = "196383", - text = "sb_aloea.m2", - value = "sb_aloea.m2", - }, - { - fileId = "196384", - text = "sb_aloeb.m2", - value = "sb_aloeb.m2", - }, - { - fileId = "196385", - text = "sb_ferna.m2", - value = "sb_ferna.m2", - }, - { - fileId = "196386", - text = "sb_fernb.m2", - value = "sb_fernb.m2", - }, - { - fileId = "196387", - text = "sb_grassa.m2", - value = "sb_grassa.m2", - }, - { - fileId = "196388", - text = "sb_grassb.m2", - value = "sb_grassb.m2", + text = "sandwichboardsign", + value = "sandwichboardsign", }, { - fileId = "196389", - text = "sb_leafybusha.m2", - value = "sb_leafybusha.m2", - }, - { - fileId = "196390", - text = "sb_leafybushb.m2", - value = "sb_leafybushb.m2", - }, - { - fileId = "243885", - text = "sholazar_vine_quest_01.m2", - value = "sholazar_vine_quest_01.m2", + children = { + { + fileId = "357870", + text = "twilightshammer_signpost_01.m2", + value = "twilightshammer_signpost_01.m2", + }, + { + fileId = "357873", + text = "twilightshammer_signpost_sign_upper_02.m2", + value = "twilightshammer_signpost_sign_upper_02.m2", + }, + }, + text = "signpost", + value = "signpost", }, - }, - text = "sholazarbasin", - value = "sholazarbasin", - }, - { - children = { { children = { { - fileId = "196391", - text = "stormpeaks_busha.m2", - value = "stormpeaks_busha.m2", + fileId = "371340", + text = "twilightshammer_smeltingpot_01.m2", + value = "twilightshammer_smeltingpot_01.m2", + }, + { + fileId = "376279", + text = "twilightshammer_smeltingpot_02.m2", + value = "twilightshammer_smeltingpot_02.m2", + }, + { + fileId = "376280", + text = "twilightshammer_smeltingpot_03.m2", + value = "twilightshammer_smeltingpot_03.m2", }, }, - text = "bushes", - value = "bushes", + text = "smeltingpots", + value = "smeltingpots", }, { children = { { - fileId = "243886", - text = "stormpeaks_fog_01.m2", - value = "stormpeaks_fog_01.m2", + fileId = "397343", + text = "twilightshammer_spike_01.m2", + value = "twilightshammer_spike_01.m2", }, { - fileId = "249607", - text = "stormpeaks_ulduar_clouds.m2", - value = "stormpeaks_ulduar_clouds.m2", + fileId = "397344", + text = "twilightshammer_spike_02.m2", + value = "twilightshammer_spike_02.m2", }, { - fileId = "251925", - text = "stormpeaks_ulduar_clouds_02.m2", - value = "stormpeaks_ulduar_clouds_02.m2", + fileId = "397423", + text = "twilightshammer_spike_03.m2", + value = "twilightshammer_spike_03.m2", }, { - fileId = "254282", - text = "stormpeaks_ulduar_clouds_03.m2", - value = "stormpeaks_ulduar_clouds_03.m2", + fileId = "397424", + text = "twilightshammer_spike_04.m2", + value = "twilightshammer_spike_04.m2", + }, + { + fileId = "397942", + text = "twilightshammer_spike_05.m2", + value = "twilightshammer_spike_05.m2", + }, + { + fileId = "397943", + text = "twilightshammer_spike_06.m2", + value = "twilightshammer_spike_06.m2", + }, + { + fileId = "397944", + text = "twilightshammer_spike_07.m2", + value = "twilightshammer_spike_07.m2", + }, + { + fileId = "397945", + text = "twilightshammer_spike_08.m2", + value = "twilightshammer_spike_08.m2", + }, + { + fileId = "397946", + text = "twilightshammer_spike_09.m2", + value = "twilightshammer_spike_09.m2", + }, + { + fileId = "397947", + text = "twilightshammer_spike_10.m2", + value = "twilightshammer_spike_10.m2", }, }, - text = "fog", - value = "fog", + text = "spikes", + value = "spikes", }, { children = { { - fileId = "243887", - text = "frozengiantking.m2", - value = "frozengiantking.m2", - }, - { - fileId = "243892", - text = "giantbattle_magic.m2", - value = "giantbattle_magic.m2", + fileId = "363017", + text = "twilighthammer_stonethrower_01.m2", + value = "twilighthammer_stonethrower_01.m2", }, }, - text = "giantbattle", - value = "giantbattle", + text = "stonethrower", + value = "stonethrower", }, { children = { { - fileId = "243898", - text = "frostgiant_citadelpiece01.m2", - value = "frostgiant_citadelpiece01.m2", + fileId = "311621", + text = "twilightshammer_summoningportal_air01.m2", + value = "twilightshammer_summoningportal_air01.m2", }, { - fileId = "243899", - text = "frostgiant_citadelpiece02.m2", - value = "frostgiant_citadelpiece02.m2", + fileId = "311624", + text = "twilightshammer_summoningportal_earth01.m2", + value = "twilightshammer_summoningportal_earth01.m2", }, { - fileId = "243900", - text = "frostgiant_citadelpiece03.m2", - value = "frostgiant_citadelpiece03.m2", + fileId = "311626", + text = "twilightshammer_summoningportal_fire01.m2", + value = "twilightshammer_summoningportal_fire01.m2", }, { - fileId = "243901", - text = "frostgiant_citadelpiece04.m2", - value = "frostgiant_citadelpiece04.m2", + fileId = "305643", + text = "twilightshammer_summoningportal_water01.m2", + value = "twilightshammer_summoningportal_water01.m2", }, + }, + text = "summoningportals", + value = "summoningportals", + }, + { + children = { { - fileId = "243902", - text = "frostgiant_icearch_01.m2", - value = "frostgiant_icearch_01.m2", + fileId = "361233", + text = "twilightshammer_table01.m2", + value = "twilightshammer_table01.m2", }, { - fileId = "243903", - text = "frostgiant_icearch_02.m2", - value = "frostgiant_icearch_02.m2", + fileId = "361234", + text = "twilightshammer_table02.m2", + value = "twilightshammer_table02.m2", }, { - fileId = "243904", - text = "frostgiant_icecliff_01.m2", - value = "frostgiant_icecliff_01.m2", + fileId = "361236", + text = "twilightshammer_table03.m2", + value = "twilightshammer_table03.m2", }, + }, + text = "tables", + value = "tables", + }, + { + children = { { - fileId = "243905", - text = "frostgiant_icecliff_02.m2", - value = "frostgiant_icecliff_02.m2", + fileId = "305645", + text = "twilightshammer_tent01.m2", + value = "twilightshammer_tent01.m2", }, { - fileId = "243906", - text = "frostgiant_icecliff_04.m2", - value = "frostgiant_icecliff_04.m2", + fileId = "369304", + text = "twilightshammer_tent01_dirty.m2", + value = "twilightshammer_tent01_dirty.m2", }, { - fileId = "243907", - text = "frostgiant_icecliff_05.m2", - value = "frostgiant_icecliff_05.m2", + fileId = "305651", + text = "twilightshammer_tent02.m2", + value = "twilightshammer_tent02.m2", }, { - fileId = "243908", - text = "frostgianticeshard01.m2", - value = "frostgianticeshard01.m2", + fileId = "369306", + text = "twilightshammer_tent02_dirty.m2", + value = "twilightshammer_tent02_dirty.m2", }, { - fileId = "243909", - text = "frostgianticeshard02.m2", - value = "frostgianticeshard02.m2", + fileId = "306251", + text = "twilightshammer_tent03.m2", + value = "twilightshammer_tent03.m2", }, { - fileId = "243910", - text = "frostgianticeshard03.m2", - value = "frostgianticeshard03.m2", + fileId = "369307", + text = "twilightshammer_tent03_dirty.m2", + value = "twilightshammer_tent03_dirty.m2", }, { - fileId = "243911", - text = "frostgianticeshard04.m2", - value = "frostgianticeshard04.m2", + fileId = "311596", + text = "twilightshammer_tentpole01.m2", + value = "twilightshammer_tentpole01.m2", }, }, - text = "iceshards", - value = "iceshards", + text = "tents", + value = "tents", }, { children = { { - fileId = "243914", - text = "stormpeakslightning01.m2", - value = "stormpeakslightning01.m2", + fileId = "452144", + text = "twilightshammer_trophyframe_01.m2", + value = "twilightshammer_trophyframe_01.m2", }, { - fileId = "243915", - text = "stormpeakslightning02.m2", - value = "stormpeakslightning02.m2", + fileId = "452145", + text = "twilightshammer_trophyframe_02.m2", + value = "twilightshammer_trophyframe_02.m2", }, + }, + text = "trophyframe", + value = "trophyframe", + }, + { + fileId = "389863", + text = "twilightmagicvortex.m2", + value = "twilightmagicvortex.m2", + }, + { + fileId = "392616", + text = "twilightmagicvortex_lesser.m2", + value = "twilightmagicvortex_lesser.m2", + }, + { + children = { { - fileId = "243916", - text = "stormpeakslightning03.m2", - value = "stormpeakslightning03.m2", + fileId = "305647", + text = "twilightshammer_wagon_01.m2", + value = "twilightshammer_wagon_01.m2", }, { - fileId = "243917", - text = "stormpeakslightning04.m2", - value = "stormpeakslightning04.m2", + fileId = "338827", + text = "twilightshammer_wagon_02.m2", + value = "twilightshammer_wagon_02.m2", + }, + { + fileId = "363038", + text = "twilightshammer_wagon_03.m2", + value = "twilightshammer_wagon_03.m2", + }, + }, + text = "wagons", + value = "wagons", + }, + }, + text = "twilighthammer", + value = "twilighthammer", + }, + { + children = { + { + children = { + { + fileId = "373997", + text = "th_obsidianbranch01.m2", + value = "th_obsidianbranch01.m2", }, { - fileId = "243918", - text = "stormpeakslightning05.m2", - value = "stormpeakslightning05.m2", + fileId = "373998", + text = "th_obsidianbranch02.m2", + value = "th_obsidianbranch02.m2", }, { - fileId = "243919", - text = "stormpeakslightning06.m2", - value = "stormpeakslightning06.m2", + fileId = "373999", + text = "th_obsidianbranch03.m2", + value = "th_obsidianbranch03.m2", }, }, - text = "lightning", - value = "lightning", + text = "branches", + value = "branches", }, { children = { { - fileId = "196393", - text = "stormpeaks_rocka.m2", - value = "stormpeaks_rocka.m2", + fileId = "354628", + text = "th_bush01.m2", + value = "th_bush01.m2", }, { - fileId = "196394", - text = "stormpeaks_rockb.m2", - value = "stormpeaks_rockb.m2", + fileId = "354630", + text = "th_bush02.m2", + value = "th_bush02.m2", }, { - fileId = "196395", - text = "stormpeaks_rockc.m2", - value = "stormpeaks_rockc.m2", + fileId = "354632", + text = "th_bush03.m2", + value = "th_bush03.m2", }, { - fileId = "243920", - text = "stormpeaks_rockd.m2", - value = "stormpeaks_rockd.m2", + fileId = "354827", + text = "th_bush04.m2", + value = "th_bush04.m2", }, { - fileId = "243921", - text = "stormpeaks_rocke.m2", - value = "stormpeaks_rocke.m2", + fileId = "383105", + text = "th_bush05.m2", + value = "th_bush05.m2", }, { - fileId = "243922", - text = "stormpeaks_rockf.m2", - value = "stormpeaks_rockf.m2", + fileId = "361342", + text = "th_obsidianbush01.m2", + value = "th_obsidianbush01.m2", + }, + { + fileId = "361344", + text = "th_obsidianbush02.m2", + value = "th_obsidianbush02.m2", + }, + { + fileId = "361346", + text = "th_obsidianbush03.m2", + value = "th_obsidianbush03.m2", }, }, - text = "rocks", - value = "rocks", + text = "bushes", + value = "bushes", }, { children = { { - fileId = "196396", - text = "sp_rocnest01.m2", - value = "sp_rocnest01.m2", + fileId = "423961", + text = "th_craterglow_01.m2", + value = "th_craterglow_01.m2", }, { - fileId = "243924", - text = "sp_rocnest03collision.m2", - value = "sp_rocnest03collision.m2", + fileId = "423962", + text = "th_craterglow_particle_01.m2", + value = "th_craterglow_particle_01.m2", + }, + { + fileId = "427613", + text = "th_craterglow_particle_02.m2", + value = "th_craterglow_particle_02.m2", + }, + { + fileId = "427614", + text = "th_craterglow_particle_03.m2", + value = "th_craterglow_particle_03.m2", + }, + { + fileId = "443197", + text = "th_craterglow_particle_04.m2", + value = "th_craterglow_particle_04.m2", }, }, - text = "rocs", - value = "rocs", + text = "crater", + value = "crater", }, { children = { { - fileId = "243926", - text = "orangescourgebubbles.m2", - value = "orangescourgebubbles.m2", + fileId = "526930", + text = "drowneddwarfmale01.m2", + value = "drowneddwarfmale01.m2", }, { - fileId = "243927", - text = "orangescourgebubbles2.m2", - value = "orangescourgebubbles2.m2", + fileId = "526983", + text = "drowneddwarfmale02.m2", + value = "drowneddwarfmale02.m2", }, { - fileId = "243928", - text = "orangescourgesteam.m2", - value = "orangescourgesteam.m2", + fileId = "527036", + text = "drowneddwarfmale03.m2", + value = "drowneddwarfmale03.m2", + }, + { + fileId = "527137", + text = "drowneddwarfmale04.m2", + value = "drowneddwarfmale04.m2", + }, + { + fileId = "527190", + text = "drowneddwarfmale05.m2", + value = "drowneddwarfmale05.m2", + }, + { + fileId = "527242", + text = "drowninganchor.m2", + value = "drowninganchor.m2", }, }, - text = "scourge", - value = "scourge", + text = "drowneddwarves", + value = "drowneddwarves", }, { children = { { - fileId = "196398", - text = "stormpeaks_snowdrift_01.m2", - value = "stormpeaks_snowdrift_01.m2", + fileId = "358703", + text = "th_lowlandflower01.m2", + value = "th_lowlandflower01.m2", }, { - fileId = "243938", - text = "stormpeaks_snowdrift_02.m2", - value = "stormpeaks_snowdrift_02.m2", + fileId = "358704", + text = "th_lowlandflower02.m2", + value = "th_lowlandflower02.m2", }, + }, + text = "flowers", + value = "flowers", + }, + { + children = { { - fileId = "243939", - text = "stormpeaks_snowdrift_03.m2", - value = "stormpeaks_snowdrift_03.m2", + fileId = "358464", + text = "th_lowlndgrass01.m2", + value = "th_lowlndgrass01.m2", }, { - fileId = "243940", - text = "stormpeaks_snowdrift_04.m2", - value = "stormpeaks_snowdrift_04.m2", + fileId = "358465", + text = "th_lowlndgrass02.m2", + value = "th_lowlndgrass02.m2", }, { - fileId = "243941", - text = "stormpeaks_snowdrift_wind_01.m2", - value = "stormpeaks_snowdrift_wind_01.m2", + fileId = "358705", + text = "th_lowlndgrass03.m2", + value = "th_lowlndgrass03.m2", + }, + { + fileId = "358706", + text = "th_lowlndgrass04.m2", + value = "th_lowlndgrass04.m2", }, }, - text = "snow", - value = "snow", + text = "grass", + value = "grass", }, { children = { { - fileId = "196402", - text = "stormpeaks_treea.m2", - value = "stormpeaks_treea.m2", + fileId = "361348", + text = "th_obsidianrock01.m2", + value = "th_obsidianrock01.m2", }, { - fileId = "196404", - text = "stormpeaks_treeb.m2", - value = "stormpeaks_treeb.m2", + fileId = "433597", + text = "th_obsidianrock01_corrupted.m2", + value = "th_obsidianrock01_corrupted.m2", }, { - fileId = "196406", - text = "stormpeaks_treec.m2", - value = "stormpeaks_treec.m2", + fileId = "361349", + text = "th_obsidianrock02.m2", + value = "th_obsidianrock02.m2", }, { - fileId = "196407", - text = "stormpeaks_treed.m2", - value = "stormpeaks_treed.m2", + fileId = "433598", + text = "th_obsidianrock02_corrupted.m2", + value = "th_obsidianrock02_corrupted.m2", }, { - fileId = "196408", - text = "stormpeaks_treee.m2", - value = "stormpeaks_treee.m2", + fileId = "367311", + text = "th_obsidianrock03.m2", + value = "th_obsidianrock03.m2", }, { - fileId = "196409", - text = "stormpeaks_treef.m2", - value = "stormpeaks_treef.m2", + fileId = "433599", + text = "th_obsidianrock03_corrupted.m2", + value = "th_obsidianrock03_corrupted.m2", }, { - fileId = "243942", - text = "stormpeaks_treeg.m2", - value = "stormpeaks_treeg.m2", + fileId = "371410", + text = "th_obsidianrock04.m2", + value = "th_obsidianrock04.m2", }, { - fileId = "243943", - text = "stormpeaks_treeh.m2", - value = "stormpeaks_treeh.m2", + fileId = "433600", + text = "th_obsidianrock04_corrupted.m2", + value = "th_obsidianrock04_corrupted.m2", }, { - fileId = "243944", - text = "stormpeaks_treei.m2", - value = "stormpeaks_treei.m2", + fileId = "371411", + text = "th_obsidianrock05.m2", + value = "th_obsidianrock05.m2", }, - }, - text = "trees", - value = "trees", - }, - }, - text = "stormpeaks", - value = "stormpeaks", - }, - { - children = { - { - children = { { - fileId = "196410", - text = "ld_stratholme_banner01.m2", - value = "ld_stratholme_banner01.m2", + fileId = "433601", + text = "th_obsidianrock05_corrupted.m2", + value = "th_obsidianrock05_corrupted.m2", }, { - fileId = "196411", - text = "ld_stratholme_banner02.m2", - value = "ld_stratholme_banner02.m2", + fileId = "458159", + text = "th_pebblepile01.m2", + value = "th_pebblepile01.m2", }, { - fileId = "196412", - text = "ld_stratholme_banner03.m2", - value = "ld_stratholme_banner03.m2", + fileId = "348136", + text = "th_rocka.m2", + value = "th_rocka.m2", }, { - fileId = "196413", - text = "ld_stratholme_banner04.m2", - value = "ld_stratholme_banner04.m2", + fileId = "348137", + text = "th_rockb.m2", + value = "th_rockb.m2", }, { - fileId = "196414", - text = "ld_stratholme_banner05.m2", - value = "ld_stratholme_banner05.m2", + fileId = "348138", + text = "th_rockc.m2", + value = "th_rockc.m2", }, { - fileId = "196415", - text = "ld_stratholme_banner06.m2", - value = "ld_stratholme_banner06.m2", + fileId = "348139", + text = "th_rockd.m2", + value = "th_rockd.m2", }, { - fileId = "196416", - text = "ld_stratholme_banner07.m2", - value = "ld_stratholme_banner07.m2", + fileId = "348140", + text = "th_rocke.m2", + value = "th_rocke.m2", }, { - fileId = "196417", - text = "ld_stratholme_banner08.m2", - value = "ld_stratholme_banner08.m2", + fileId = "361621", + text = "th_rockplinth01.m2", + value = "th_rockplinth01.m2", }, { - fileId = "196418", - text = "ld_stratholme_foodtent.m2", - value = "ld_stratholme_foodtent.m2", + fileId = "361675", + text = "th_rockplinth02.m2", + value = "th_rockplinth02.m2", }, { - fileId = "196419", - text = "ld_stratholme_longbanners01.m2", - value = "ld_stratholme_longbanners01.m2", + fileId = "361676", + text = "th_rockplinth03.m2", + value = "th_rockplinth03.m2", }, { - fileId = "196420", - text = "ld_stratholme_opentent.m2", - value = "ld_stratholme_opentent.m2", + fileId = "357771", + text = "th_small_rocka.m2", + value = "th_small_rocka.m2", }, { - fileId = "196421", - text = "ld_stratholme_platform01.m2", - value = "ld_stratholme_platform01.m2", + fileId = "357772", + text = "th_small_rockb.m2", + value = "th_small_rockb.m2", }, - }, - text = "banners", - value = "banners", - }, - { - fileId = "196432", - text = "ld_arc_oldstratholme.m2", - value = "ld_arc_oldstratholme.m2", - }, - { - fileId = "196435", - text = "ld_flowerbunch.m2", - value = "ld_flowerbunch.m2", - }, - { - fileId = "196436", - text = "ld_foodcart01.m2", - value = "ld_foodcart01.m2", - }, - { - fileId = "196438", - text = "ld_graincrate01.m2", - value = "ld_graincrate01.m2", - }, - { - fileId = "196439", - text = "ld_grainsack01.m2", - value = "ld_grainsack01.m2", - }, - { - fileId = "196440", - text = "ld_grainsack02.m2", - value = "ld_grainsack02.m2", - }, - { - fileId = "196442", - text = "ld_green_smoke_haystack.m2", - value = "ld_green_smoke_haystack.m2", - }, - { - fileId = "196443", - text = "ld_hidden_door_room.m2", - value = "ld_hidden_door_room.m2", - }, - { - fileId = "196444", - text = "ld_oldstratholme_rug.m2", - value = "ld_oldstratholme_rug.m2", - }, - { - fileId = "196445", - text = "ld_oldstratholme_rug02.m2", - value = "ld_oldstratholme_rug02.m2", - }, - { - fileId = "196446", - text = "ld_oldstratholme_rug03.m2", - value = "ld_oldstratholme_rug03.m2", - }, - { - fileId = "196447", - text = "ld_oldstratholme_rug04.m2", - value = "ld_oldstratholme_rug04.m2", - }, - { - fileId = "196452", - text = "ld_stratholme_clothingline01.m2", - value = "ld_stratholme_clothingline01.m2", - }, - { - fileId = "196453", - text = "ld_stratholme_platform02.m2", - value = "ld_stratholme_platform02.m2", - }, - { - fileId = "196454", - text = "ld_stratholme_tent01.m2", - value = "ld_stratholme_tent01.m2", - }, - { - fileId = "196455", - text = "ld_stratholme_tent02.m2", - value = "ld_stratholme_tent02.m2", - }, - { - fileId = "196456", - text = "ld_stratholme_tent03.m2", - value = "ld_stratholme_tent03.m2", - }, - { - fileId = "196457", - text = "ld_stratholme_tent04.m2", - value = "ld_stratholme_tent04.m2", - }, - { - fileId = "196458", - text = "ld_stratholme_tent05.m2", - value = "ld_stratholme_tent05.m2", - }, - { - fileId = "196459", - text = "ld_stratholme_tent06.m2", - value = "ld_stratholme_tent06.m2", - }, - { - fileId = "196460", - text = "ld_stratholmestreetlamp01.m2", - value = "ld_stratholmestreetlamp01.m2", - }, - }, - text = "stratholme_past", - value = "stratholme_past", - }, - { - children = { - { - children = { { - fileId = "196463", - text = "ts_fishinghook_01.m2", - value = "ts_fishinghook_01.m2", + fileId = "357773", + text = "th_small_rockc.m2", + value = "th_small_rockc.m2", }, { - fileId = "196464", - text = "ts_fishingpet_01.m2", - value = "ts_fishingpet_01.m2", + fileId = "357774", + text = "th_small_rockd.m2", + value = "th_small_rockd.m2", }, - }, - text = "fishingstuff", - value = "fishingstuff", - }, - { - children = { { - fileId = "196466", - text = "ts_teapot_01.m2", - value = "ts_teapot_01.m2", + fileId = "357775", + text = "th_small_rocke.m2", + value = "th_small_rocke.m2", + }, + { + fileId = "357776", + text = "th_small_rockf.m2", + value = "th_small_rockf.m2", }, }, - text = "misc", - value = "misc", - }, - }, - text = "tuskar", - value = "tuskar", - }, - { - children = { - { - fileId = "255203", - text = "ti_weathergenerator_blue.m2", - value = "ti_weathergenerator_blue.m2", - }, - { - fileId = "255204", - text = "ti_weathergenerator_green.m2", - value = "ti_weathergenerator_green.m2", - }, - { - fileId = "255207", - text = "ti_weathergenerator_red.m2", - value = "ti_weathergenerator_red.m2", - }, - { - fileId = "255123", - text = "ti_weathergenerator_yellow.m2", - value = "ti_weathergenerator_yellow.m2", - }, - { - fileId = "243946", - text = "ul_anvil.m2", - value = "ul_anvil.m2", - }, - { - fileId = "243948", - text = "ul_aquarium_window.m2", - value = "ul_aquarium_window.m2", - }, - { - fileId = "243950", - text = "ul_banister01.m2", - value = "ul_banister01.m2", - }, - { - fileId = "253676", - text = "ul_brain_01.m2", - value = "ul_brain_01.m2", - }, - { - fileId = "251822", - text = "ul_brainparts_01.m2", - value = "ul_brainparts_01.m2", - }, - { - fileId = "251823", - text = "ul_brainparts_02.m2", - value = "ul_brainparts_02.m2", - }, - { - fileId = "254627", - text = "ul_brainroomdoor_01.m2", - value = "ul_brainroomdoor_01.m2", - }, - { - fileId = "196475", - text = "ul_brazier01.m2", - value = "ul_brazier01.m2", - }, - { - fileId = "250176", - text = "ul_brazier_broken.m2", - value = "ul_brazier_broken.m2", - }, - { - fileId = "250177", - text = "ul_brazier_broken_02.m2", - value = "ul_brazier_broken_02.m2", - }, - { - fileId = "250903", - text = "ul_bridge01.m2", - value = "ul_bridge01.m2", - }, - { - fileId = "243957", - text = "ul_button_control_unit.m2", - value = "ul_button_control_unit.m2", - }, - { - fileId = "243958", - text = "ul_button_control_unit02.m2", - value = "ul_button_control_unit02.m2", - }, - { - fileId = "251926", - text = "ul_chains_01.m2", - value = "ul_chains_01.m2", - }, - { - fileId = "254457", - text = "ul_chains_02.m2", - value = "ul_chains_02.m2", - }, - { - fileId = "254458", - text = "ul_chains_03.m2", - value = "ul_chains_03.m2", - }, - { - fileId = "254459", - text = "ul_chains_04.m2", - value = "ul_chains_04.m2", - }, - { - fileId = "254460", - text = "ul_chains_05.m2", - value = "ul_chains_05.m2", - }, - { - fileId = "196476", - text = "ul_chandelier.m2", - value = "ul_chandelier.m2", - }, - { - fileId = "249610", - text = "ul_chandelier02.m2", - value = "ul_chandelier02.m2", - }, - { - fileId = "250179", - text = "ul_chandelier_effects01.m2", - value = "ul_chandelier_effects01.m2", - }, - { - fileId = "253432", - text = "ul_chest_cosmic.m2", - value = "ul_chest_cosmic.m2", - }, - { - fileId = "253436", - text = "ul_chest_gears.m2", - value = "ul_chest_gears.m2", - }, - { - fileId = "253441", - text = "ul_chest_ice.m2", - value = "ul_chest_ice.m2", - }, - { - fileId = "253337", - text = "ul_chest_leaf.m2", - value = "ul_chest_leaf.m2", - }, - { - fileId = "253430", - text = "ul_chest_lightning.m2", - value = "ul_chest_lightning.m2", - }, - { - fileId = "253445", - text = "ul_chest_plain.m2", - value = "ul_chest_plain.m2", - }, - { - fileId = "196480", - text = "ul_crystal_light01.m2", - value = "ul_crystal_light01.m2", - }, - { - fileId = "243959", - text = "ul_crystal_light01_broken.m2", - value = "ul_crystal_light01_broken.m2", - }, - { - fileId = "196481", - text = "ul_crystal_light02.m2", - value = "ul_crystal_light02.m2", - }, - { - fileId = "243961", - text = "ul_dataroom_heads_01.m2", - value = "ul_dataroom_heads_01.m2", - }, - { - fileId = "252942", - text = "ul_destructible_gate01.m2", - value = "ul_destructible_gate01.m2", - }, - { - fileId = "249612", - text = "ul_dirty_glass_01.m2", - value = "ul_dirty_glass_01.m2", - }, - { - fileId = "249613", - text = "ul_dirty_glass_02.m2", - value = "ul_dirty_glass_02.m2", - }, - { - fileId = "249614", - text = "ul_dirty_glass_03.m2", - value = "ul_dirty_glass_03.m2", - }, - { - fileId = "249615", - text = "ul_dirty_glass_04.m2", - value = "ul_dirty_glass_04.m2", + text = "rocks", + value = "rocks", }, { - fileId = "249616", - text = "ul_dirty_glass_05.m2", - value = "ul_dirty_glass_05.m2", + children = { + { + fileId = "399046", + text = "th_tentacle_01.m2", + value = "th_tentacle_01.m2", + }, + { + fileId = "405891", + text = "th_tentacle_02.m2", + value = "th_tentacle_02.m2", + }, + { + fileId = "576850", + text = "th_tentacle_02_lootable.m2", + value = "th_tentacle_02_lootable.m2", + }, + { + fileId = "405892", + text = "th_tentacle_03.m2", + value = "th_tentacle_03.m2", + }, + }, + text = "tentacles", + value = "tentacles", }, { - fileId = "243964", - text = "ul_drapery01.m2", - value = "ul_drapery01.m2", + children = { + { + fileId = "352669", + text = "th_bristleconetree01.m2", + value = "th_bristleconetree01.m2", + }, + { + fileId = "433603", + text = "th_bristleconetree01_corrupted.m2", + value = "th_bristleconetree01_corrupted.m2", + }, + { + fileId = "352670", + text = "th_bristleconetree02.m2", + value = "th_bristleconetree02.m2", + }, + { + fileId = "433604", + text = "th_bristleconetree02_corrupted.m2", + value = "th_bristleconetree02_corrupted.m2", + }, + { + fileId = "352671", + text = "th_bristleconetree03.m2", + value = "th_bristleconetree03.m2", + }, + { + fileId = "433605", + text = "th_bristleconetree03_corrupted.m2", + value = "th_bristleconetree03_corrupted.m2", + }, + { + fileId = "354828", + text = "th_bristleconetree04.m2", + value = "th_bristleconetree04.m2", + }, + { + fileId = "354829", + text = "th_bristleconetree05.m2", + value = "th_bristleconetree05.m2", + }, + { + fileId = "368539", + text = "th_bristleconetree06.m2", + value = "th_bristleconetree06.m2", + }, + { + fileId = "368540", + text = "th_bristleconetree07.m2", + value = "th_bristleconetree07.m2", + }, + { + fileId = "359133", + text = "th_obsidiantree01.m2", + value = "th_obsidiantree01.m2", + }, + { + fileId = "359134", + text = "th_obsidiantree02.m2", + value = "th_obsidiantree02.m2", + }, + { + fileId = "359135", + text = "th_obsidiantree03.m2", + value = "th_obsidiantree03.m2", + }, + { + fileId = "433606", + text = "th_obsidiantree03_corrupted.m2", + value = "th_obsidiantree03_corrupted.m2", + }, + { + fileId = "359137", + text = "th_obsidiantree04.m2", + value = "th_obsidiantree04.m2", + }, + { + fileId = "374285", + text = "th_obsidiantree05.m2", + value = "th_obsidiantree05.m2", + }, + { + fileId = "374286", + text = "th_obsidiantree06.m2", + value = "th_obsidiantree06.m2", + }, + { + fileId = "382356", + text = "th_oldgodpinetree01.m2", + value = "th_oldgodpinetree01.m2", + }, + { + fileId = "382494", + text = "th_oldgodpinetree02.m2", + value = "th_oldgodpinetree02.m2", + }, + { + fileId = "382495", + text = "th_oldgodpinetree03.m2", + value = "th_oldgodpinetree03.m2", + }, + { + fileId = "382496", + text = "th_oldgodpinetree04.m2", + value = "th_oldgodpinetree04.m2", + }, + { + fileId = "365994", + text = "th_pinefallen01.m2", + value = "th_pinefallen01.m2", + }, + { + fileId = "365995", + text = "th_pinefallen02.m2", + value = "th_pinefallen02.m2", + }, + { + fileId = "365996", + text = "th_pinestump01.m2", + value = "th_pinestump01.m2", + }, + { + fileId = "365997", + text = "th_pinestump02.m2", + value = "th_pinestump02.m2", + }, + { + fileId = "365816", + text = "th_pinetree01.m2", + value = "th_pinetree01.m2", + }, + { + fileId = "365818", + text = "th_pinetree02.m2", + value = "th_pinetree02.m2", + }, + { + fileId = "365819", + text = "th_pinetree03.m2", + value = "th_pinetree03.m2", + }, + { + fileId = "365820", + text = "th_pinetree04.m2", + value = "th_pinetree04.m2", + }, + { + fileId = "351093", + text = "th_tree01.m2", + value = "th_tree01.m2", + }, + { + fileId = "351052", + text = "th_tree02.m2", + value = "th_tree02.m2", + }, + { + fileId = "351053", + text = "th_tree03.m2", + value = "th_tree03.m2", + }, + { + fileId = "351054", + text = "th_tree04.m2", + value = "th_tree04.m2", + }, + { + fileId = "351055", + text = "th_tree05.m2", + value = "th_tree05.m2", + }, + { + fileId = "380831", + text = "th_treesapling_01.m2", + value = "th_treesapling_01.m2", + }, + { + fileId = "381039", + text = "th_treesapling_02.m2", + value = "th_treesapling_02.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "243966", - text = "ul_drapery02.m2", - value = "ul_drapery02.m2", + children = { + { + fileId = "370559", + text = "th_obsidiantrunk01.m2", + value = "th_obsidiantrunk01.m2", + }, + { + fileId = "370560", + text = "th_obsidiantrunk02.m2", + value = "th_obsidiantrunk02.m2", + }, + { + fileId = "370561", + text = "th_obsidiantrunk03.m2", + value = "th_obsidiantrunk03.m2", + }, + { + fileId = "371674", + text = "th_obsidiantrunk04.m2", + value = "th_obsidiantrunk04.m2", + }, + }, + text = "trunks", + value = "trunks", }, { - fileId = "196488", - text = "ul_face_rotate.m2", - value = "ul_face_rotate.m2", + children = { + { + fileId = "386433", + text = "th_waterfalls_large_01.m2", + value = "th_waterfalls_large_01.m2", + }, + { + fileId = "383429", + text = "th_waterfalls_small.m2", + value = "th_waterfalls_small.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, + }, + text = "twilighthighlands", + value = "twilighthighlands", + }, + { + children = { { - fileId = "250904", - text = "ul_floating_glass01.m2", - value = "ul_floating_glass01.m2", + fileId = "412274", + text = "twinpeaks_dwarven_gate_01.m2", + value = "twinpeaks_dwarven_gate_01.m2", }, { - fileId = "250905", - text = "ul_floating_glass02.m2", - value = "ul_floating_glass02.m2", + fileId = "412275", + text = "twinpeaks_dwarven_gate_02.m2", + value = "twinpeaks_dwarven_gate_02.m2", }, { - fileId = "196490", - text = "ul_floor01.m2", - value = "ul_floor01.m2", + fileId = "412296", + text = "twinpeaks_dwarven_gate_03.m2", + value = "twinpeaks_dwarven_gate_03.m2", }, { - fileId = "243970", - text = "ul_floor01_blue.m2", - value = "ul_floor01_blue.m2", + fileId = "414219", + text = "twinpeaks_orc_gate_01.m2", + value = "twinpeaks_orc_gate_01.m2", }, { - fileId = "243974", - text = "ul_forge_iron_press.m2", - value = "ul_forge_iron_press.m2", + fileId = "414220", + text = "twinpeaks_orc_gate_02.m2", + value = "twinpeaks_orc_gate_02.m2", }, { - fileId = "243975", - text = "ul_forge_lava.m2", - value = "ul_forge_lava.m2", + fileId = "415007", + text = "twinpeaks_orc_gate_03.m2", + value = "twinpeaks_orc_gate_03.m2", }, + }, + text = "twinpeaks", + value = "twinpeaks", + }, + { + children = { { - fileId = "253162", - text = "ul_fountain_01.m2", - value = "ul_fountain_01.m2", + children = { + { + fileId = "409623", + text = "uldum_basket_01.m2", + value = "uldum_basket_01.m2", + }, + { + fileId = "409624", + text = "uldum_basket_02.m2", + value = "uldum_basket_02.m2", + }, + { + fileId = "409625", + text = "uldum_basket_03.m2", + value = "uldum_basket_03.m2", + }, + { + fileId = "409628", + text = "uldum_basket_04.m2", + value = "uldum_basket_04.m2", + }, + { + fileId = "409629", + text = "uldum_basket_05.m2", + value = "uldum_basket_05.m2", + }, + { + fileId = "409630", + text = "uldum_basket_06.m2", + value = "uldum_basket_06.m2", + }, + { + fileId = "409631", + text = "uldum_basket_07.m2", + value = "uldum_basket_07.m2", + }, + { + fileId = "409632", + text = "uldum_basket_08.m2", + value = "uldum_basket_08.m2", + }, + { + fileId = "409633", + text = "uldum_basket_09.m2", + value = "uldum_basket_09.m2", + }, + { + fileId = "409634", + text = "uldum_basket_lid_01.m2", + value = "uldum_basket_lid_01.m2", + }, + { + fileId = "409636", + text = "uldum_basket_lid_light_01.m2", + value = "uldum_basket_lid_light_01.m2", + }, + { + fileId = "409637", + text = "uldum_basket_light_01.m2", + value = "uldum_basket_light_01.m2", + }, + { + fileId = "409638", + text = "uldum_basket_light_02.m2", + value = "uldum_basket_light_02.m2", + }, + { + fileId = "409639", + text = "uldum_basket_light_03.m2", + value = "uldum_basket_light_03.m2", + }, + { + fileId = "409640", + text = "uldum_basket_light_04.m2", + value = "uldum_basket_light_04.m2", + }, + { + fileId = "409641", + text = "uldum_basket_light_05.m2", + value = "uldum_basket_light_05.m2", + }, + { + fileId = "409802", + text = "uldum_basket_light_06.m2", + value = "uldum_basket_light_06.m2", + }, + { + fileId = "409803", + text = "uldum_basket_light_07.m2", + value = "uldum_basket_light_07.m2", + }, + { + fileId = "409642", + text = "uldum_basket_light_08.m2", + value = "uldum_basket_light_08.m2", + }, + { + fileId = "409643", + text = "uldum_basket_light_09.m2", + value = "uldum_basket_light_09.m2", + }, + { + fileId = "411695", + text = "uldum_food_bundle_01.m2", + value = "uldum_food_bundle_01.m2", + }, + { + fileId = "464070", + text = "uldum_micro_fence_01.m2", + value = "uldum_micro_fence_01.m2", + }, + { + fileId = "464071", + text = "uldum_micro_fence_02.m2", + value = "uldum_micro_fence_02.m2", + }, + { + fileId = "464072", + text = "uldum_micro_lampbase_01.m2", + value = "uldum_micro_lampbase_01.m2", + }, + }, + text = "baskets", + value = "baskets", }, { - fileId = "249623", - text = "ul_frostwall_01.m2", - value = "ul_frostwall_01.m2", + children = { + { + fileId = "456423", + text = "uldum_laserbeams.m2", + value = "uldum_laserbeams.m2", + }, + { + fileId = "456424", + text = "uldum_laserbeams_02.m2", + value = "uldum_laserbeams_02.m2", + }, + { + fileId = "456425", + text = "uldum_laserbeams_03.m2", + value = "uldum_laserbeams_03.m2", + }, + { + fileId = "456426", + text = "uldum_laserbeams_04.m2", + value = "uldum_laserbeams_04.m2", + }, + { + fileId = "457180", + text = "uldum_laserbeams_glow_wall.m2", + value = "uldum_laserbeams_glow_wall.m2", + }, + { + fileId = "466672", + text = "uldum_micro_laserbeams.m2", + value = "uldum_micro_laserbeams.m2", + }, + { + fileId = "451109", + text = "uldum_micro_outside_beam_01.m2", + value = "uldum_micro_outside_beam_01.m2", + }, + { + fileId = "451110", + text = "uldum_micro_outside_beam_02.m2", + value = "uldum_micro_outside_beam_02.m2", + }, + { + fileId = "451111", + text = "uldum_micro_outside_beam_03.m2", + value = "uldum_micro_outside_beam_03.m2", + }, + { + fileId = "451847", + text = "uldum_micro_outside_beam_top.m2", + value = "uldum_micro_outside_beam_top.m2", + }, + { + fileId = "448562", + text = "uldum_titan_micro_moon_beam.m2", + value = "uldum_titan_micro_moon_beam.m2", + }, + { + fileId = "448563", + text = "uldum_titan_micro_stars_beam.m2", + value = "uldum_titan_micro_stars_beam.m2", + }, + { + fileId = "448564", + text = "uldum_titan_micro_sun_beam.m2", + value = "uldum_titan_micro_sun_beam.m2", + }, + { + fileId = "464152", + text = "uldum_window_beam02_aqua.m2", + value = "uldum_window_beam02_aqua.m2", + }, + { + fileId = "464153", + text = "uldum_window_beam02_red.m2", + value = "uldum_window_beam02_red.m2", + }, + { + fileId = "464154", + text = "uldum_window_beam02_yellow.m2", + value = "uldum_window_beam02_yellow.m2", + }, + { + fileId = "463571", + text = "uldum_window_beam_aqua.m2", + value = "uldum_window_beam_aqua.m2", + }, + { + fileId = "463572", + text = "uldum_window_beam_red.m2", + value = "uldum_window_beam_red.m2", + }, + { + fileId = "463573", + text = "uldum_window_beam_yellow.m2", + value = "uldum_window_beam_yellow.m2", + }, + }, + text = "beams", + value = "beams", }, { - fileId = "252293", - text = "ul_garbage_bits.m2", - value = "ul_garbage_bits.m2", + children = { + { + fileId = "429670", + text = "uldum_bench_01.m2", + value = "uldum_bench_01.m2", + }, + }, + text = "benches", + value = "benches", }, { - fileId = "252294", - text = "ul_garbage_bits2.m2", - value = "ul_garbage_bits2.m2", + children = { + { + fileId = "368542", + text = "uldum_blowing_sand.m2", + value = "uldum_blowing_sand.m2", + }, + { + fileId = "412198", + text = "uldum_blowing_sand_particle_01.m2", + value = "uldum_blowing_sand_particle_01.m2", + }, + }, + text = "blowingsand", + value = "blowingsand", }, { - fileId = "252295", - text = "ul_garbage_bits3.m2", - value = "ul_garbage_bits3.m2", + children = { + { + fileId = "431518", + text = "uldum_bread_01.m2", + value = "uldum_bread_01.m2", + }, + { + fileId = "431519", + text = "uldum_bread_02.m2", + value = "uldum_bread_02.m2", + }, + { + fileId = "431520", + text = "uldum_bread_03.m2", + value = "uldum_bread_03.m2", + }, + { + fileId = "431521", + text = "uldum_bread_paddle.m2", + value = "uldum_bread_paddle.m2", + }, + }, + text = "bread", + value = "bread", }, { - fileId = "252296", - text = "ul_garbage_bits4.m2", - value = "ul_garbage_bits4.m2", + children = { + { + fileId = "361622", + text = "uldum_bridge.m2", + value = "uldum_bridge.m2", + }, + }, + text = "bridges", + value = "bridges", }, { - fileId = "252297", - text = "ul_garbage_bits5.m2", - value = "ul_garbage_bits5.m2", + children = { + { + fileId = "362803", + text = "uldum_bulrushes01.m2", + value = "uldum_bulrushes01.m2", + }, + { + fileId = "362804", + text = "uldum_bulrushes02.m2", + value = "uldum_bulrushes02.m2", + }, + { + fileId = "362805", + text = "uldum_bulrushes03.m2", + value = "uldum_bulrushes03.m2", + }, + { + fileId = "362806", + text = "uldum_bulrushes04.m2", + value = "uldum_bulrushes04.m2", + }, + { + fileId = "362807", + text = "uldum_bulrushes05.m2", + value = "uldum_bulrushes05.m2", + }, + { + fileId = "362808", + text = "uldum_bulrushes06.m2", + value = "uldum_bulrushes06.m2", + }, + { + fileId = "362809", + text = "uldum_bulrushes07.m2", + value = "uldum_bulrushes07.m2", + }, + { + fileId = "362810", + text = "uldum_bulrushes08.m2", + value = "uldum_bulrushes08.m2", + }, + { + fileId = "362811", + text = "uldum_bulrushes09.m2", + value = "uldum_bulrushes09.m2", + }, + { + fileId = "362812", + text = "uldum_bulrushes10.m2", + value = "uldum_bulrushes10.m2", + }, + { + fileId = "367026", + text = "uldum_bulrushes_brown01.m2", + value = "uldum_bulrushes_brown01.m2", + }, + { + fileId = "367027", + text = "uldum_bulrushes_brown02.m2", + value = "uldum_bulrushes_brown02.m2", + }, + { + fileId = "367051", + text = "uldum_bulrushes_brown03.m2", + value = "uldum_bulrushes_brown03.m2", + }, + { + fileId = "367052", + text = "uldum_bulrushes_brown04.m2", + value = "uldum_bulrushes_brown04.m2", + }, + { + fileId = "367053", + text = "uldum_bulrushes_brown05.m2", + value = "uldum_bulrushes_brown05.m2", + }, + { + fileId = "367054", + text = "uldum_bulrushes_brown06.m2", + value = "uldum_bulrushes_brown06.m2", + }, + { + fileId = "367055", + text = "uldum_bulrushes_brown07.m2", + value = "uldum_bulrushes_brown07.m2", + }, + { + fileId = "367056", + text = "uldum_bulrushes_brown08.m2", + value = "uldum_bulrushes_brown08.m2", + }, + { + fileId = "367057", + text = "uldum_bulrushes_brown09.m2", + value = "uldum_bulrushes_brown09.m2", + }, + { + fileId = "367058", + text = "uldum_bulrushes_brown10.m2", + value = "uldum_bulrushes_brown10.m2", + }, + { + fileId = "367059", + text = "uldum_bulrushes_green01.m2", + value = "uldum_bulrushes_green01.m2", + }, + { + fileId = "367060", + text = "uldum_bulrushes_green02.m2", + value = "uldum_bulrushes_green02.m2", + }, + { + fileId = "367061", + text = "uldum_bulrushes_green03.m2", + value = "uldum_bulrushes_green03.m2", + }, + { + fileId = "367062", + text = "uldum_bulrushes_green04.m2", + value = "uldum_bulrushes_green04.m2", + }, + { + fileId = "367063", + text = "uldum_bulrushes_green05.m2", + value = "uldum_bulrushes_green05.m2", + }, + { + fileId = "367064", + text = "uldum_bulrushes_green06.m2", + value = "uldum_bulrushes_green06.m2", + }, + { + fileId = "367065", + text = "uldum_bulrushes_green07.m2", + value = "uldum_bulrushes_green07.m2", + }, + { + fileId = "367066", + text = "uldum_bulrushes_green08.m2", + value = "uldum_bulrushes_green08.m2", + }, + { + fileId = "367067", + text = "uldum_bulrushes_green09.m2", + value = "uldum_bulrushes_green09.m2", + }, + { + fileId = "367068", + text = "uldum_bulrushes_green10.m2", + value = "uldum_bulrushes_green10.m2", + }, + { + fileId = "367069", + text = "uldum_reeds06.m2", + value = "uldum_reeds06.m2", + }, + { + fileId = "367028", + text = "uldum_reeds_brown06.m2", + value = "uldum_reeds_brown06.m2", + }, + { + fileId = "367029", + text = "uldum_reeds_green06.m2", + value = "uldum_reeds_green06.m2", + }, + }, + text = "bulrushes", + value = "bulrushes", }, { - fileId = "252298", - text = "ul_garbage_bits6.m2", - value = "ul_garbage_bits6.m2", + children = { + { + fileId = "362369", + text = "uldum_oasisbush_01.m2", + value = "uldum_oasisbush_01.m2", + }, + { + fileId = "436785", + text = "uldum_oasisbush_01_dry.m2", + value = "uldum_oasisbush_01_dry.m2", + }, + { + fileId = "366730", + text = "uldum_oasisbush_01b.m2", + value = "uldum_oasisbush_01b.m2", + }, + { + fileId = "441512", + text = "uldum_oasisbush_01c.m2", + value = "uldum_oasisbush_01c.m2", + }, + { + fileId = "362371", + text = "uldum_oasisbush_02.m2", + value = "uldum_oasisbush_02.m2", + }, + { + fileId = "436786", + text = "uldum_oasisbush_02_dry.m2", + value = "uldum_oasisbush_02_dry.m2", + }, + { + fileId = "362633", + text = "uldum_oasisbush_03.m2", + value = "uldum_oasisbush_03.m2", + }, + { + fileId = "436788", + text = "uldum_oasisbush_03_dry.m2", + value = "uldum_oasisbush_03_dry.m2", + }, + { + fileId = "362834", + text = "uldum_oasisbush_04.m2", + value = "uldum_oasisbush_04.m2", + }, + { + fileId = "436789", + text = "uldum_oasisbush_04_dry.m2", + value = "uldum_oasisbush_04_dry.m2", + }, + { + fileId = "366475", + text = "uldum_oasisbush_05.m2", + value = "uldum_oasisbush_05.m2", + }, + { + fileId = "436790", + text = "uldum_oasisbush_05_dry.m2", + value = "uldum_oasisbush_05_dry.m2", + }, + { + fileId = "394944", + text = "uldum_oasisbush_06.m2", + value = "uldum_oasisbush_06.m2", + }, + { + fileId = "394945", + text = "uldum_oasisbush_07.m2", + value = "uldum_oasisbush_07.m2", + }, + { + fileId = "394946", + text = "uldum_oasisbush_08.m2", + value = "uldum_oasisbush_08.m2", + }, + { + fileId = "373025", + text = "uldum_riverbush01.m2", + value = "uldum_riverbush01.m2", + }, + { + fileId = "373026", + text = "uldum_riverbush02.m2", + value = "uldum_riverbush02.m2", + }, + { + fileId = "373027", + text = "uldum_riverbush03.m2", + value = "uldum_riverbush03.m2", + }, + { + fileId = "373028", + text = "uldum_riverbush04.m2", + value = "uldum_riverbush04.m2", + }, + { + fileId = "373029", + text = "uldum_riverbush05.m2", + value = "uldum_riverbush05.m2", + }, + }, + text = "bush", + value = "bush", }, { - fileId = "252142", - text = "ul_garbage_pile.m2", - value = "ul_garbage_pile.m2", + children = { + { + fileId = "417560", + text = "uldum_dead_chickens_01.m2", + value = "uldum_dead_chickens_01.m2", + }, + { + fileId = "417561", + text = "uldum_dead_chickens_02.m2", + value = "uldum_dead_chickens_02.m2", + }, + }, + text = "chickens", + value = "chickens", }, { - fileId = "250908", - text = "ul_gnome_machine_01.m2", - value = "ul_gnome_machine_01.m2", + children = { + { + fileId = "405933", + text = "uldum_coffin_lid_01.m2", + value = "uldum_coffin_lid_01.m2", + }, + { + fileId = "403539", + text = "uldum_crypt_coffin_01.m2", + value = "uldum_crypt_coffin_01.m2", + }, + { + fileId = "402151", + text = "uldum_crypt_coffin_02.m2", + value = "uldum_crypt_coffin_02.m2", + }, + { + fileId = "405934", + text = "uldum_crypt_coffin_03.m2", + value = "uldum_crypt_coffin_03.m2", + }, + }, + text = "coffins", + value = "coffins", }, { - fileId = "250909", - text = "ul_gnome_machine_02.m2", - value = "ul_gnome_machine_02.m2", + children = { + { + fileId = "427871", + text = "uldum_copper_01.m2", + value = "uldum_copper_01.m2", + }, + { + fileId = "427872", + text = "uldum_copper_02.m2", + value = "uldum_copper_02.m2", + }, + }, + text = "copper", + value = "copper", }, { - fileId = "250910", - text = "ul_gnome_machine_03.m2", - value = "ul_gnome_machine_03.m2", + children = { + { + fileId = "415907", + text = "uldum_crate_01.m2", + value = "uldum_crate_01.m2", + }, + { + fileId = "415909", + text = "uldum_crate_02.m2", + value = "uldum_crate_02.m2", + }, + { + fileId = "417562", + text = "uldum_crate_03.m2", + value = "uldum_crate_03.m2", + }, + { + fileId = "417564", + text = "uldum_crate_04.m2", + value = "uldum_crate_04.m2", + }, + { + fileId = "417566", + text = "uldum_crate_05.m2", + value = "uldum_crate_05.m2", + }, + }, + text = "crates", + value = "crates", }, { - fileId = "250911", - text = "ul_gnome_machine_04.m2", - value = "ul_gnome_machine_04.m2", + children = { + { + fileId = "370265", + text = "uldum_crops_aloe01.m2", + value = "uldum_crops_aloe01.m2", + }, + { + fileId = "370266", + text = "uldum_crops_aloe02.m2", + value = "uldum_crops_aloe02.m2", + }, + { + fileId = "370267", + text = "uldum_crops_aloe03.m2", + value = "uldum_crops_aloe03.m2", + }, + { + fileId = "370268", + text = "uldum_crops_aloeflower01.m2", + value = "uldum_crops_aloeflower01.m2", + }, + { + fileId = "370269", + text = "uldum_crops_aloeflower02.m2", + value = "uldum_crops_aloeflower02.m2", + }, + { + fileId = "370270", + text = "uldum_crops_aloerow01.m2", + value = "uldum_crops_aloerow01.m2", + }, + { + fileId = "370271", + text = "uldum_crops_aloerow02.m2", + value = "uldum_crops_aloerow02.m2", + }, + { + fileId = "370272", + text = "uldum_crops_aloerow03.m2", + value = "uldum_crops_aloerow03.m2", + }, + { + fileId = "371183", + text = "uldum_crops_datepalm01.m2", + value = "uldum_crops_datepalm01.m2", + }, + { + fileId = "371184", + text = "uldum_crops_datepalm02.m2", + value = "uldum_crops_datepalm02.m2", + }, + { + fileId = "371185", + text = "uldum_crops_datepalm03.m2", + value = "uldum_crops_datepalm03.m2", + }, + { + fileId = "371186", + text = "uldum_crops_datepalmrow01.m2", + value = "uldum_crops_datepalmrow01.m2", + }, + { + fileId = "371187", + text = "uldum_crops_datepalmrow02.m2", + value = "uldum_crops_datepalmrow02.m2", + }, + { + fileId = "370273", + text = "uldum_crops_spiralaloe01.m2", + value = "uldum_crops_spiralaloe01.m2", + }, + { + fileId = "370274", + text = "uldum_crops_spiralaloe02.m2", + value = "uldum_crops_spiralaloe02.m2", + }, + { + fileId = "370275", + text = "uldum_crops_spiralaloe03.m2", + value = "uldum_crops_spiralaloe03.m2", + }, + { + fileId = "370276", + text = "uldum_crops_spiralaloerow01.m2", + value = "uldum_crops_spiralaloerow01.m2", + }, + { + fileId = "370277", + text = "uldum_crops_spiralaloerow02.m2", + value = "uldum_crops_spiralaloerow02.m2", + }, + { + fileId = "370278", + text = "uldum_crops_spiralaloerow03.m2", + value = "uldum_crops_spiralaloerow03.m2", + }, + { + fileId = "370280", + text = "uldum_crops_sugarcane01.m2", + value = "uldum_crops_sugarcane01.m2", + }, + { + fileId = "370281", + text = "uldum_crops_sugarcane02.m2", + value = "uldum_crops_sugarcane02.m2", + }, + { + fileId = "370282", + text = "uldum_crops_sugarcane03.m2", + value = "uldum_crops_sugarcane03.m2", + }, + { + fileId = "370283", + text = "uldum_crops_sugarcane04.m2", + value = "uldum_crops_sugarcane04.m2", + }, + { + fileId = "370284", + text = "uldum_crops_sugarcane05.m2", + value = "uldum_crops_sugarcane05.m2", + }, + { + fileId = "370285", + text = "uldum_crops_sugarcane06.m2", + value = "uldum_crops_sugarcane06.m2", + }, + { + fileId = "370286", + text = "uldum_crops_sugarcanerow01.m2", + value = "uldum_crops_sugarcanerow01.m2", + }, + { + fileId = "370287", + text = "uldum_crops_sugarcanerow02.m2", + value = "uldum_crops_sugarcanerow02.m2", + }, + { + fileId = "370288", + text = "uldum_crops_sugarcanerow03.m2", + value = "uldum_crops_sugarcanerow03.m2", + }, + { + fileId = "370289", + text = "uldum_crops_sugarcanerow04.m2", + value = "uldum_crops_sugarcanerow04.m2", + }, + { + fileId = "418775", + text = "uldum_crops_sugarcanerow05.m2", + value = "uldum_crops_sugarcanerow05.m2", + }, + { + fileId = "418776", + text = "uldum_crops_sugarcanerow06.m2", + value = "uldum_crops_sugarcanerow06.m2", + }, + { + fileId = "419199", + text = "uldum_crops_sugarcanerow07.m2", + value = "uldum_crops_sugarcanerow07.m2", + }, + { + fileId = "419200", + text = "uldum_crops_sugarcanerow08.m2", + value = "uldum_crops_sugarcanerow08.m2", + }, + }, + text = "crops", + value = "crops", }, { - fileId = "250912", - text = "ul_gnome_machine_05.m2", - value = "ul_gnome_machine_05.m2", + children = { + { + fileId = "413796", + text = "uldum_desertflowers01.m2", + value = "uldum_desertflowers01.m2", + }, + { + fileId = "413797", + text = "uldum_desertflowers02.m2", + value = "uldum_desertflowers02.m2", + }, + { + fileId = "413798", + text = "uldum_desertflowers03.m2", + value = "uldum_desertflowers03.m2", + }, + { + fileId = "413799", + text = "uldum_desertflowers04.m2", + value = "uldum_desertflowers04.m2", + }, + { + fileId = "413800", + text = "uldum_desertflowers05.m2", + value = "uldum_desertflowers05.m2", + }, + }, + text = "desertflowers", + value = "desertflowers", }, { - fileId = "252122", - text = "ul_gnomewing_armpulse.m2", - value = "ul_gnomewing_armpulse.m2", + children = { + { + fileId = "322266", + text = "uldum_door_01.m2", + value = "uldum_door_01.m2", + }, + { + fileId = "335334", + text = "uldum_door_02.m2", + value = "uldum_door_02.m2", + }, + { + fileId = "463574", + text = "uldum_door_gem_aqua.m2", + value = "uldum_door_gem_aqua.m2", + }, + { + fileId = "463812", + text = "uldum_door_gem_red.m2", + value = "uldum_door_gem_red.m2", + }, + { + fileId = "463814", + text = "uldum_door_gem_yellow.m2", + value = "uldum_door_gem_yellow.m2", + }, + { + fileId = "464171", + text = "uldum_door_knocker01.m2", + value = "uldum_door_knocker01.m2", + }, + { + fileId = "464296", + text = "uldum_door_knocker02.m2", + value = "uldum_door_knocker02.m2", + }, + }, + text = "doors", + value = "doors", }, { - fileId = "251641", - text = "ul_gnomewing_buttonbigred.m2", - value = "ul_gnomewing_buttonbigred.m2", + children = { + { + fileId = "359601", + text = "uldum_elevator_01_transport_doodad.m2", + value = "uldum_elevator_01_transport_doodad.m2", + }, + { + fileId = "344268", + text = "uldum_elevator_burialchamber.m2", + value = "uldum_elevator_burialchamber.m2", + }, + { + fileId = "464112", + text = "uldum_elevator_burialchamber_col.m2", + value = "uldum_elevator_burialchamber_col.m2", + }, + { + fileId = "352936", + text = "uldum_elevator_glass_star.m2", + value = "uldum_elevator_glass_star.m2", + }, + { + fileId = "451112", + text = "uldum_topofelevator_glass_floor.m2", + value = "uldum_topofelevator_glass_floor.m2", + }, + }, + text = "elevators", + value = "elevators", }, { - fileId = "294031", - text = "ul_gnomewing_door_01.m2", - value = "ul_gnomewing_door_01.m2", + children = { + { + fileId = "350306", + text = "uldum_farming_01.m2", + value = "uldum_farming_01.m2", + }, + { + fileId = "350307", + text = "uldum_farming_02.m2", + value = "uldum_farming_02.m2", + }, + { + fileId = "348571", + text = "uldum_farming_03.m2", + value = "uldum_farming_03.m2", + }, + { + fileId = "350309", + text = "uldum_farming_04.m2", + value = "uldum_farming_04.m2", + }, + }, + text = "farming", + value = "farming", }, { - fileId = "255342", - text = "ul_gnomewing_lightbeam.m2", - value = "ul_gnomewing_lightbeam.m2", + children = { + { + fileId = "426065", + text = "uldum_fish_01.m2", + value = "uldum_fish_01.m2", + }, + { + fileId = "426066", + text = "uldum_fish_02.m2", + value = "uldum_fish_02.m2", + }, + { + fileId = "426045", + text = "uldum_fish_03.m2", + value = "uldum_fish_03.m2", + }, + { + fileId = "426067", + text = "uldum_fish_04.m2", + value = "uldum_fish_04.m2", + }, + { + fileId = "426068", + text = "uldum_hanging_fish.m2", + value = "uldum_hanging_fish.m2", + }, + }, + text = "fish", + value = "fish", }, { - fileId = "250004", - text = "ul_gnomewing_lighttower.m2", - value = "ul_gnomewing_lighttower.m2", + children = { + { + fileId = "429166", + text = "uldum_flag_01.m2", + value = "uldum_flag_01.m2", + }, + { + fileId = "429167", + text = "uldum_flag_02.m2", + value = "uldum_flag_02.m2", + }, + }, + text = "flags", + value = "flags", }, { - fileId = "249630", - text = "ul_gnomewing_spinningroomrings.m2", - value = "ul_gnomewing_spinningroomrings.m2", + children = { + { + fileId = "368543", + text = "uldum_flagstone01.m2", + value = "uldum_flagstone01.m2", + }, + { + fileId = "368544", + text = "uldum_flagstone02.m2", + value = "uldum_flagstone02.m2", + }, + { + fileId = "368545", + text = "uldum_flagstone03.m2", + value = "uldum_flagstone03.m2", + }, + { + fileId = "368546", + text = "uldum_flagstone04.m2", + value = "uldum_flagstone04.m2", + }, + { + fileId = "368553", + text = "uldum_flagstone05.m2", + value = "uldum_flagstone05.m2", + }, + { + fileId = "368554", + text = "uldum_flagstone06.m2", + value = "uldum_flagstone06.m2", + }, + { + fileId = "368555", + text = "uldum_flagstone07.m2", + value = "uldum_flagstone07.m2", + }, + { + fileId = "368556", + text = "uldum_flagstone08.m2", + value = "uldum_flagstone08.m2", + }, + { + fileId = "368557", + text = "uldum_flagstone09.m2", + value = "uldum_flagstone09.m2", + }, + { + fileId = "368588", + text = "uldum_flagstone10.m2", + value = "uldum_flagstone10.m2", + }, + }, + text = "flagstones", + value = "flagstones", }, { - fileId = "251482", - text = "ul_gnomewing_teleportpad.m2", - value = "ul_gnomewing_teleportpad.m2", + children = { + { + fileId = "351333", + text = "uldum_floor_01.m2", + value = "uldum_floor_01.m2", + }, + { + fileId = "352474", + text = "uldum_floor_02.m2", + value = "uldum_floor_02.m2", + }, + { + fileId = "457337", + text = "uldum_floor_03.m2", + value = "uldum_floor_03.m2", + }, + }, + text = "floor", + value = "floor", }, { - fileId = "252266", - text = "ul_gnomewing_torsoelevator.m2", - value = "ul_gnomewing_torsoelevator.m2", + children = { + { + fileId = "394596", + text = "uldum_fountain.m2", + value = "uldum_fountain.m2", + }, + { + fileId = "394597", + text = "uldum_fountain_02.m2", + value = "uldum_fountain_02.m2", + }, + }, + text = "fountain", + value = "fountain", }, { - fileId = "250180", - text = "ul_gnomewing_walkway.m2", - value = "ul_gnomewing_walkway.m2", + children = { + { + fileId = "350990", + text = "uldum_conduitfx_elevatorroom.m2", + value = "uldum_conduitfx_elevatorroom.m2", + }, + { + fileId = "325174", + text = "uldum_pillarglow.m2", + value = "uldum_pillarglow.m2", + }, + }, + text = "fx", + value = "fx", }, { - fileId = "196498", - text = "ul_head_female01.m2", - value = "ul_head_female01.m2", + children = { + { + fileId = "364627", + text = "uldum_glass_dam.m2", + value = "uldum_glass_dam.m2", + }, + }, + text = "glassdam", + value = "glassdam", }, { - fileId = "196499", - text = "ul_head_female02.m2", - value = "ul_head_female02.m2", + children = { + { + fileId = "368687", + text = "uldum_grass01.m2", + value = "uldum_grass01.m2", + }, + { + fileId = "437068", + text = "uldum_grass01_dry.m2", + value = "uldum_grass01_dry.m2", + }, + { + fileId = "368688", + text = "uldum_grass02.m2", + value = "uldum_grass02.m2", + }, + { + fileId = "437069", + text = "uldum_grass02_dry.m2", + value = "uldum_grass02_dry.m2", + }, + { + fileId = "368689", + text = "uldum_grass03.m2", + value = "uldum_grass03.m2", + }, + { + fileId = "437070", + text = "uldum_grass03_dry.m2", + value = "uldum_grass03_dry.m2", + }, + { + fileId = "368690", + text = "uldum_grass04.m2", + value = "uldum_grass04.m2", + }, + { + fileId = "437071", + text = "uldum_grass04_dry.m2", + value = "uldum_grass04_dry.m2", + }, + { + fileId = "371413", + text = "uldum_grassreeds01.m2", + value = "uldum_grassreeds01.m2", + }, + { + fileId = "371414", + text = "uldum_grassreeds02.m2", + value = "uldum_grassreeds02.m2", + }, + { + fileId = "371415", + text = "uldum_grassreeds03.m2", + value = "uldum_grassreeds03.m2", + }, + { + fileId = "371416", + text = "uldum_grassreeds04.m2", + value = "uldum_grassreeds04.m2", + }, + { + fileId = "371417", + text = "uldum_grassreeds05.m2", + value = "uldum_grassreeds05.m2", + }, + { + fileId = "371419", + text = "uldum_grassreeds06.m2", + value = "uldum_grassreeds06.m2", + }, + { + fileId = "371420", + text = "uldum_grassreeds07.m2", + value = "uldum_grassreeds07.m2", + }, + { + fileId = "371421", + text = "uldum_grassreeds08.m2", + value = "uldum_grassreeds08.m2", + }, + { + fileId = "371422", + text = "uldum_grassreeds09.m2", + value = "uldum_grassreeds09.m2", + }, + { + fileId = "371423", + text = "uldum_grassreeds10.m2", + value = "uldum_grassreeds10.m2", + }, + }, + text = "grass", + value = "grass", }, { - fileId = "196500", - text = "ul_head_male01.m2", - value = "ul_head_male01.m2", + children = { + { + fileId = "327004", + text = "uldum_head_god_01.m2", + value = "uldum_head_god_01.m2", + }, + { + fileId = "327006", + text = "uldum_head_god_02.m2", + value = "uldum_head_god_02.m2", + }, + { + fileId = "327008", + text = "uldum_head_god_03.m2", + value = "uldum_head_god_03.m2", + }, + { + fileId = "329458", + text = "uldum_head_god_04.m2", + value = "uldum_head_god_04.m2", + }, + { + fileId = "321713", + text = "uldum_head_wall_01.m2", + value = "uldum_head_wall_01.m2", + }, + }, + text = "heads", + value = "heads", }, { - fileId = "196504", - text = "ul_hexagon_floor.m2", - value = "ul_hexagon_floor.m2", + children = { + { + fileId = "382371", + text = "uldum_irrigation_01.m2", + value = "uldum_irrigation_01.m2", + }, + { + fileId = "382372", + text = "uldum_irrigation_02.m2", + value = "uldum_irrigation_02.m2", + }, + { + fileId = "382373", + text = "uldum_irrigation_03.m2", + value = "uldum_irrigation_03.m2", + }, + { + fileId = "382497", + text = "uldum_irrigation_04.m2", + value = "uldum_irrigation_04.m2", + }, + { + fileId = "413556", + text = "uldum_irrigation_05.m2", + value = "uldum_irrigation_05.m2", + }, + { + fileId = "413557", + text = "uldum_irrigation_06.m2", + value = "uldum_irrigation_06.m2", + }, + }, + text = "irrigation", + value = "irrigation", }, { - fileId = "252274", - text = "ul_hubprison_01.m2", - value = "ul_hubprison_01.m2", + children = { + { + fileId = "350580", + text = "uldum_floor_lamp_01.m2", + value = "uldum_floor_lamp_01.m2", + }, + { + fileId = "433607", + text = "uldum_floor_lamp_active.m2", + value = "uldum_floor_lamp_active.m2", + }, + { + fileId = "320620", + text = "uldum_lamp_01.m2", + value = "uldum_lamp_01.m2", + }, + { + fileId = "404176", + text = "uldum_lattice_lamp_01.m2", + value = "uldum_lattice_lamp_01.m2", + }, + { + fileId = "404177", + text = "uldum_lattice_lamp_02.m2", + value = "uldum_lattice_lamp_02.m2", + }, + { + fileId = "402639", + text = "uldum_oil_lamp_01.m2", + value = "uldum_oil_lamp_01.m2", + }, + { + fileId = "315528", + text = "uldum_scarab_sconce_01.m2", + value = "uldum_scarab_sconce_01.m2", + }, + { + fileId = "320621", + text = "uldum_wall_sconce_01.m2", + value = "uldum_wall_sconce_01.m2", + }, + }, + text = "lamps", + value = "lamps", }, { - fileId = "249633", - text = "ul_iceplatform_01.m2", - value = "ul_iceplatform_01.m2", + children = { + { + fileId = "466673", + text = "uldum_laserlense.m2", + value = "uldum_laserlense.m2", + }, + { + fileId = "466252", + text = "uldum_lasermachine.m2", + value = "uldum_lasermachine.m2", + }, + }, + text = "lasermachine", + value = "lasermachine", }, { - fileId = "196506", - text = "ul_icewall_01.m2", - value = "ul_icewall_01.m2", + children = { + { + fileId = "333562", + text = "uldum_lightmachine_01.m2", + value = "uldum_lightmachine_01.m2", + }, + }, + text = "lightmachines", + value = "lightmachines", }, { - fileId = "196507", - text = "ul_icewall_02.m2", - value = "ul_icewall_02.m2", + children = { + { + fileId = "308944", + text = "uldum_lightshaft_01.m2", + value = "uldum_lightshaft_01.m2", + }, + }, + text = "lightshaft", + value = "lightshaft", }, { - fileId = "196508", - text = "ul_icewall_03.m2", - value = "ul_icewall_03.m2", + children = { + { + fileId = "510932", + text = "uld_mailbox.m2", + value = "uld_mailbox.m2", + }, + }, + text = "mailbox", + value = "mailbox", }, { - fileId = "196509", - text = "ul_icewall_04.m2", - value = "ul_icewall_04.m2", + children = { + { + fileId = "410510", + text = "uldum_market_post_01.m2", + value = "uldum_market_post_01.m2", + }, + { + fileId = "410511", + text = "uldum_market_shelf_01.m2", + value = "uldum_market_shelf_01.m2", + }, + { + fileId = "410255", + text = "uldum_market_stand_01.m2", + value = "uldum_market_stand_01.m2", + }, + { + fileId = "410256", + text = "uldum_market_stand_02.m2", + value = "uldum_market_stand_02.m2", + }, + { + fileId = "410257", + text = "uldum_market_stand_03.m2", + value = "uldum_market_stand_03.m2", + }, + { + fileId = "410258", + text = "uldum_market_stand_04.m2", + value = "uldum_market_stand_04.m2", + }, + { + fileId = "410259", + text = "uldum_market_stand_05.m2", + value = "uldum_market_stand_05.m2", + }, + { + fileId = "410260", + text = "uldum_market_stand_06.m2", + value = "uldum_market_stand_06.m2", + }, + { + fileId = "410512", + text = "uldum_market_stand_07.m2", + value = "uldum_market_stand_07.m2", + }, + { + fileId = "412088", + text = "uldum_market_stand_08.m2", + value = "uldum_market_stand_08.m2", + }, + { + fileId = "412089", + text = "uldum_market_stand_09.m2", + value = "uldum_market_stand_09.m2", + }, + { + fileId = "412090", + text = "uldum_market_stand_10.m2", + value = "uldum_market_stand_10.m2", + }, + { + fileId = "412091", + text = "uldum_market_stand_11.m2", + value = "uldum_market_stand_11.m2", + }, + { + fileId = "410779", + text = "uldum_market_table_01.m2", + value = "uldum_market_table_01.m2", + }, + }, + text = "marketstand", + value = "marketstand", }, { - fileId = "196510", - text = "ul_icewall_05.m2", - value = "ul_icewall_05.m2", + children = { + { + fileId = "406635", + text = "uldum_markettents_arch_01.m2", + value = "uldum_markettents_arch_01.m2", + }, + { + fileId = "464092", + text = "uldum_markettents_arch_01blue.m2", + value = "uldum_markettents_arch_01blue.m2", + }, + { + fileId = "464094", + text = "uldum_markettents_arch_01red.m2", + value = "uldum_markettents_arch_01red.m2", + }, + { + fileId = "406637", + text = "uldum_markettents_arch_02.m2", + value = "uldum_markettents_arch_02.m2", + }, + { + fileId = "464096", + text = "uldum_markettents_arch_02blue.m2", + value = "uldum_markettents_arch_02blue.m2", + }, + { + fileId = "464098", + text = "uldum_markettents_arch_02red.m2", + value = "uldum_markettents_arch_02red.m2", + }, + { + fileId = "410261", + text = "uldum_markettents_corner_01.m2", + value = "uldum_markettents_corner_01.m2", + }, + { + fileId = "410262", + text = "uldum_markettents_corner_02.m2", + value = "uldum_markettents_corner_02.m2", + }, + { + fileId = "406638", + text = "uldum_markettents_jewels_02.m2", + value = "uldum_markettents_jewels_02.m2", + }, + { + fileId = "406639", + text = "uldum_markettents_large_01.m2", + value = "uldum_markettents_large_01.m2", + }, + { + fileId = "406640", + text = "uldum_markettents_large_02.m2", + value = "uldum_markettents_large_02.m2", + }, + { + fileId = "406642", + text = "uldum_markettents_large_03.m2", + value = "uldum_markettents_large_03.m2", + }, + { + fileId = "406644", + text = "uldum_markettents_med_01.m2", + value = "uldum_markettents_med_01.m2", + }, + { + fileId = "406645", + text = "uldum_markettents_small_01.m2", + value = "uldum_markettents_small_01.m2", + }, + { + fileId = "407147", + text = "uldum_markettents_streamer_01.m2", + value = "uldum_markettents_streamer_01.m2", + }, + { + fileId = "464100", + text = "uldum_markettents_streamer_01blue.m2", + value = "uldum_markettents_streamer_01blue.m2", + }, + { + fileId = "464102", + text = "uldum_markettents_streamer_01red.m2", + value = "uldum_markettents_streamer_01red.m2", + }, + { + fileId = "407308", + text = "uldum_markettents_streamer_02.m2", + value = "uldum_markettents_streamer_02.m2", + }, + { + fileId = "407309", + text = "uldum_markettents_streamer_03.m2", + value = "uldum_markettents_streamer_03.m2", + }, + { + fileId = "407311", + text = "uldum_markettents_xlarge_01.m2", + value = "uldum_markettents_xlarge_01.m2", + }, + { + fileId = "407312", + text = "uldum_markettents_xlarge_02.m2", + value = "uldum_markettents_xlarge_02.m2", + }, + { + fileId = "464104", + text = "uldum_markettents_xlarge_02blue.m2", + value = "uldum_markettents_xlarge_02blue.m2", + }, + { + fileId = "464106", + text = "uldum_markettents_xlarge_02red.m2", + value = "uldum_markettents_xlarge_02red.m2", + }, + }, + text = "markettents", + value = "markettents", }, { - fileId = "196511", - text = "ul_icewall_06.m2", - value = "ul_icewall_06.m2", + children = { + { + fileId = "402674", + text = "uldum_millwheel_01.m2", + value = "uldum_millwheel_01.m2", + }, + { + fileId = "402675", + text = "uldum_millwheel_02.m2", + value = "uldum_millwheel_02.m2", + }, + }, + text = "millwheel", + value = "millwheel", }, { - fileId = "254855", - text = "ul_icewall_07.m2", - value = "ul_icewall_07.m2", + children = { + { + fileId = "330943", + text = "uldum_mirror01.m2", + value = "uldum_mirror01.m2", + }, + { + fileId = "463575", + text = "uldum_mirror01_wall_mount.m2", + value = "uldum_mirror01_wall_mount.m2", + }, + { + fileId = "354498", + text = "uldum_mirror02.m2", + value = "uldum_mirror02.m2", + }, + { + fileId = "355685", + text = "uldum_mirror_sun_01.m2", + value = "uldum_mirror_sun_01.m2", + }, + }, + text = "mirrors", + value = "mirrors", }, { - fileId = "243980", - text = "ul_iron_vrykul_chest.m2", - value = "ul_iron_vrykul_chest.m2", + children = { + { + fileId = "346173", + text = "uldum_movingmachines_01.m2", + value = "uldum_movingmachines_01.m2", + }, + { + fileId = "346174", + text = "uldum_movingmachines_02.m2", + value = "uldum_movingmachines_02.m2", + }, + { + fileId = "346175", + text = "uldum_movingmachines_03.m2", + value = "uldum_movingmachines_03.m2", + }, + { + fileId = "346176", + text = "uldum_movingmachines_04.m2", + value = "uldum_movingmachines_04.m2", + }, + { + fileId = "349201", + text = "uldum_movingmachines_05.m2", + value = "uldum_movingmachines_05.m2", + }, + { + fileId = "350586", + text = "uldum_movingmachines_06.m2", + value = "uldum_movingmachines_06.m2", + }, + }, + text = "movingmachines", + value = "movingmachines", }, { - fileId = "243981", - text = "ul_iron_vrykul_head.m2", - value = "ul_iron_vrykul_head.m2", + fileId = "394338", + text = "mummy_hand_01.m2", + value = "mummy_hand_01.m2", }, { - fileId = "243982", - text = "ul_iron_vrykul_left_arm.m2", - value = "ul_iron_vrykul_left_arm.m2", + children = { + { + fileId = "438777", + text = "uldum_oasisbellflower01.m2", + value = "uldum_oasisbellflower01.m2", + }, + { + fileId = "438023", + text = "uldum_oasisbellflower02.m2", + value = "uldum_oasisbellflower02.m2", + }, + { + fileId = "438024", + text = "uldum_oasisbellflower03.m2", + value = "uldum_oasisbellflower03.m2", + }, + }, + text = "oasisbellflowers", + value = "oasisbellflowers", }, { - fileId = "243983", - text = "ul_iron_vrykul_left_leg.m2", - value = "ul_iron_vrykul_left_leg.m2", + children = { + { + fileId = "428745", + text = "uldum_oasiswhiteflower01.m2", + value = "uldum_oasiswhiteflower01.m2", + }, + { + fileId = "428746", + text = "uldum_oasiswhiteflower02.m2", + value = "uldum_oasiswhiteflower02.m2", + }, + { + fileId = "428747", + text = "uldum_oasiswhiteflower03.m2", + value = "uldum_oasiswhiteflower03.m2", + }, + { + fileId = "433832", + text = "uldum_oasiswhiteflower04.m2", + value = "uldum_oasiswhiteflower04.m2", + }, + { + fileId = "433878", + text = "uldum_oasiswhiteflower05.m2", + value = "uldum_oasiswhiteflower05.m2", + }, + { + fileId = "436511", + text = "uldum_oasiswhiteflower06.m2", + value = "uldum_oasiswhiteflower06.m2", + }, + { + fileId = "436512", + text = "uldum_oasiswhiteflower07.m2", + value = "uldum_oasiswhiteflower07.m2", + }, + { + fileId = "436513", + text = "uldum_oasiswhiteflower08.m2", + value = "uldum_oasiswhiteflower08.m2", + }, + }, + text = "oasiswhiteflowers", + value = "oasiswhiteflowers", }, { - fileId = "243984", - text = "ul_iron_vrykul_right_boot.m2", - value = "ul_iron_vrykul_right_boot.m2", + children = { + { + fileId = "396436", + text = "uldum_obelisk_01.m2", + value = "uldum_obelisk_01.m2", + }, + { + fileId = "396437", + text = "uldum_obelisk_02.m2", + value = "uldum_obelisk_02.m2", + }, + { + fileId = "396438", + text = "uldum_obelisk_03.m2", + value = "uldum_obelisk_03.m2", + }, + { + fileId = "396439", + text = "uldum_obelisk_04.m2", + value = "uldum_obelisk_04.m2", + }, + { + fileId = "405453", + text = "uldum_obelisk_broken_01.m2", + value = "uldum_obelisk_broken_01.m2", + }, + { + fileId = "405454", + text = "uldum_obelisk_broken_02.m2", + value = "uldum_obelisk_broken_02.m2", + }, + { + fileId = "405455", + text = "uldum_obelisk_broken_03.m2", + value = "uldum_obelisk_broken_03.m2", + }, + { + fileId = "405456", + text = "uldum_obelisk_broken_04.m2", + value = "uldum_obelisk_broken_04.m2", + }, + { + fileId = "405457", + text = "uldum_obelisk_broken_05.m2", + value = "uldum_obelisk_broken_05.m2", + }, + { + fileId = "405458", + text = "uldum_obelisk_broken_06.m2", + value = "uldum_obelisk_broken_06.m2", + }, + }, + text = "obelisks", + value = "obelisks", }, { - fileId = "243985", - text = "ul_iron_vrykul_right_hand.m2", - value = "ul_iron_vrykul_right_hand.m2", + children = { + { + fileId = "396583", + text = "uldum_pillar_brick_01.m2", + value = "uldum_pillar_brick_01.m2", + }, + { + fileId = "396612", + text = "uldum_pillar_brick_02.m2", + value = "uldum_pillar_brick_02.m2", + }, + { + fileId = "396613", + text = "uldum_pillar_brick_03.m2", + value = "uldum_pillar_brick_03.m2", + }, + { + fileId = "396614", + text = "uldum_pillar_brick_04.m2", + value = "uldum_pillar_brick_04.m2", + }, + { + fileId = "396615", + text = "uldum_pillar_brick_05.m2", + value = "uldum_pillar_brick_05.m2", + }, + { + fileId = "396616", + text = "uldum_pillar_brick_06.m2", + value = "uldum_pillar_brick_06.m2", + }, + }, + text = "pillars", + value = "pillars", }, { - fileId = "243986", - text = "ul_iron_vrykul_right_shoulder.m2", - value = "ul_iron_vrykul_right_shoulder.m2", + children = { + { + fileId = "427255", + text = "uldum_pot_01.m2", + value = "uldum_pot_01.m2", + }, + { + fileId = "427256", + text = "uldum_pot_02.m2", + value = "uldum_pot_02.m2", + }, + { + fileId = "427257", + text = "uldum_pot_03.m2", + value = "uldum_pot_03.m2", + }, + }, + text = "pots", + value = "pots", }, { - fileId = "243987", - text = "ul_iron_vrykul_waist.m2", - value = "ul_iron_vrykul_waist.m2", + children = { + { + fileId = "402206", + text = "uldum_pyramid_01.m2", + value = "uldum_pyramid_01.m2", + }, + }, + text = "pyramid", + value = "pyramid", }, { - fileId = "243988", - text = "ul_ironvrykularmy_eight01.m2", - value = "ul_ironvrykularmy_eight01.m2", + children = { + { + fileId = "354499", + text = "uldum_pyramid_peak.m2", + value = "uldum_pyramid_peak.m2", + }, + }, + text = "pyramidpeak", + value = "pyramidpeak", }, { - fileId = "243989", - text = "ul_ironvrykularmy_four01.m2", - value = "ul_ironvrykularmy_four01.m2", + children = { + { + fileId = "350787", + text = "uldum_reeds01.m2", + value = "uldum_reeds01.m2", + }, + { + fileId = "350788", + text = "uldum_reeds02.m2", + value = "uldum_reeds02.m2", + }, + { + fileId = "350789", + text = "uldum_reeds03.m2", + value = "uldum_reeds03.m2", + }, + { + fileId = "360224", + text = "uldum_reeds04.m2", + value = "uldum_reeds04.m2", + }, + { + fileId = "362813", + text = "uldum_reeds05.m2", + value = "uldum_reeds05.m2", + }, + { + fileId = "366950", + text = "uldum_reeds_brown01.m2", + value = "uldum_reeds_brown01.m2", + }, + { + fileId = "366951", + text = "uldum_reeds_brown02.m2", + value = "uldum_reeds_brown02.m2", + }, + { + fileId = "366952", + text = "uldum_reeds_brown03.m2", + value = "uldum_reeds_brown03.m2", + }, + { + fileId = "366953", + text = "uldum_reeds_brown04.m2", + value = "uldum_reeds_brown04.m2", + }, + { + fileId = "366954", + text = "uldum_reeds_brown05.m2", + value = "uldum_reeds_brown05.m2", + }, + { + fileId = "367021", + text = "uldum_reeds_green01.m2", + value = "uldum_reeds_green01.m2", + }, + { + fileId = "367022", + text = "uldum_reeds_green02.m2", + value = "uldum_reeds_green02.m2", + }, + { + fileId = "367023", + text = "uldum_reeds_green03.m2", + value = "uldum_reeds_green03.m2", + }, + { + fileId = "367024", + text = "uldum_reeds_green04.m2", + value = "uldum_reeds_green04.m2", + }, + { + fileId = "367025", + text = "uldum_reeds_green05.m2", + value = "uldum_reeds_green05.m2", + }, + }, + text = "reeds", + value = "reeds", }, { - fileId = "243990", - text = "ul_ironvrykularmy_single01.m2", - value = "ul_ironvrykularmy_single01.m2", + children = { + { + fileId = "374229", + text = "uldum_riverlotus01.m2", + value = "uldum_riverlotus01.m2", + }, + { + fileId = "374230", + text = "uldum_riverlotus02.m2", + value = "uldum_riverlotus02.m2", + }, + { + fileId = "374231", + text = "uldum_riverlotus03.m2", + value = "uldum_riverlotus03.m2", + }, + { + fileId = "374232", + text = "uldum_riverlotus04.m2", + value = "uldum_riverlotus04.m2", + }, + { + fileId = "374233", + text = "uldum_riverlotus05.m2", + value = "uldum_riverlotus05.m2", + }, + { + fileId = "374234", + text = "uldum_riverlotus06.m2", + value = "uldum_riverlotus06.m2", + }, + { + fileId = "374235", + text = "uldum_riverlotus07.m2", + value = "uldum_riverlotus07.m2", + }, + { + fileId = "374236", + text = "uldum_riverlotus08.m2", + value = "uldum_riverlotus08.m2", + }, + { + fileId = "374237", + text = "uldum_riverlotus09.m2", + value = "uldum_riverlotus09.m2", + }, + { + fileId = "374238", + text = "uldum_riverlotus10.m2", + value = "uldum_riverlotus10.m2", + }, + }, + text = "riverlotus", + value = "riverlotus", }, { - fileId = "243995", - text = "ul_lavamouth_01.m2", - value = "ul_lavamouth_01.m2", + children = { + { + fileId = "369023", + text = "uldum_riverrocksgrass_01.m2", + value = "uldum_riverrocksgrass_01.m2", + }, + { + fileId = "369024", + text = "uldum_riverrocksgrass_03.m2", + value = "uldum_riverrocksgrass_03.m2", + }, + { + fileId = "369025", + text = "uldum_riverrocksgrass_04.m2", + value = "uldum_riverrocksgrass_04.m2", + }, + { + fileId = "369026", + text = "uldum_riverrocksgrass_05.m2", + value = "uldum_riverrocksgrass_05.m2", + }, + { + fileId = "369027", + text = "uldum_riverrocksgrass_06.m2", + value = "uldum_riverrocksgrass_06.m2", + }, + { + fileId = "369028", + text = "uldum_riverrocksgrass_07.m2", + value = "uldum_riverrocksgrass_07.m2", + }, + }, + text = "riverrockgrass", + value = "riverrockgrass", }, { - fileId = "250006", - text = "ul_light_effect_blue.m2", - value = "ul_light_effect_blue.m2", + children = { + { + fileId = "364965", + text = "uldum_riverrocks_01.m2", + value = "uldum_riverrocks_01.m2", + }, + { + fileId = "364966", + text = "uldum_riverrocks_02.m2", + value = "uldum_riverrocks_02.m2", + }, + { + fileId = "364967", + text = "uldum_riverrocks_03.m2", + value = "uldum_riverrocks_03.m2", + }, + { + fileId = "364968", + text = "uldum_riverrocks_04.m2", + value = "uldum_riverrocks_04.m2", + }, + { + fileId = "364969", + text = "uldum_riverrocks_05.m2", + value = "uldum_riverrocks_05.m2", + }, + { + fileId = "364970", + text = "uldum_riverrocks_06.m2", + value = "uldum_riverrocks_06.m2", + }, + { + fileId = "364971", + text = "uldum_riverrocks_07.m2", + value = "uldum_riverrocks_07.m2", + }, + }, + text = "rocks", + value = "rocks", }, { - fileId = "250007", - text = "ul_light_effect_green.m2", - value = "ul_light_effect_green.m2", + children = { + { + fileId = "426985", + text = "uldum_rope_01.m2", + value = "uldum_rope_01.m2", + }, + { + fileId = "426986", + text = "uldum_rope_02.m2", + value = "uldum_rope_02.m2", + }, + }, + text = "ropes", + value = "ropes", }, { - fileId = "250008", - text = "ul_light_effect_purple.m2", - value = "ul_light_effect_purple.m2", + children = { + { + fileId = "424998", + text = "uldum_rug_01.m2", + value = "uldum_rug_01.m2", + }, + { + fileId = "424080", + text = "uldum_rug_02.m2", + value = "uldum_rug_02.m2", + }, + { + fileId = "424081", + text = "uldum_rug_03.m2", + value = "uldum_rug_03.m2", + }, + { + fileId = "424082", + text = "uldum_rug_04.m2", + value = "uldum_rug_04.m2", + }, + { + fileId = "424083", + text = "uldum_rug_05.m2", + value = "uldum_rug_05.m2", + }, + { + fileId = "424084", + text = "uldum_rug_06.m2", + value = "uldum_rug_06.m2", + }, + { + fileId = "424085", + text = "uldum_rug_07.m2", + value = "uldum_rug_07.m2", + }, + { + fileId = "424086", + text = "uldum_rug_08.m2", + value = "uldum_rug_08.m2", + }, + { + fileId = "424087", + text = "uldum_rug_09.m2", + value = "uldum_rug_09.m2", + }, + { + fileId = "424389", + text = "uldum_rug_10.m2", + value = "uldum_rug_10.m2", + }, + { + fileId = "429672", + text = "uldum_rug_11.m2", + value = "uldum_rug_11.m2", + }, + { + fileId = "424390", + text = "uldum_rug_pile_01.m2", + value = "uldum_rug_pile_01.m2", + }, + { + fileId = "424391", + text = "uldum_rug_pile_02.m2", + value = "uldum_rug_pile_02.m2", + }, + }, + text = "rugs", + value = "rugs", }, { - fileId = "298584", - text = "ul_light_effect_saronite_towers.m2", - value = "ul_light_effect_saronite_towers.m2", + children = { + { + fileId = "428618", + text = "uldum_sack_01.m2", + value = "uldum_sack_01.m2", + }, + { + fileId = "428620", + text = "uldum_sack_02.m2", + value = "uldum_sack_02.m2", + }, + { + fileId = "428622", + text = "uldum_sack_03.m2", + value = "uldum_sack_03.m2", + }, + { + fileId = "428624", + text = "uldum_sack_04.m2", + value = "uldum_sack_04.m2", + }, + { + fileId = "428626", + text = "uldum_sack_05.m2", + value = "uldum_sack_05.m2", + }, + { + fileId = "428628", + text = "uldum_sack_06.m2", + value = "uldum_sack_06.m2", + }, + { + fileId = "428630", + text = "uldum_sack_07.m2", + value = "uldum_sack_07.m2", + }, + { + fileId = "428632", + text = "uldum_sack_08.m2", + value = "uldum_sack_08.m2", + }, + { + fileId = "428633", + text = "uldum_sack_09.m2", + value = "uldum_sack_09.m2", + }, + { + fileId = "428634", + text = "uldum_sack_10.m2", + value = "uldum_sack_10.m2", + }, + { + fileId = "428635", + text = "uldum_sack_11.m2", + value = "uldum_sack_11.m2", + }, + { + fileId = "428636", + text = "uldum_sack_scoop_01.m2", + value = "uldum_sack_scoop_01.m2", + }, + { + fileId = "428637", + text = "uldum_sack_sign_01.m2", + value = "uldum_sack_sign_01.m2", + }, + { + fileId = "428638", + text = "uldum_sack_sign_02.m2", + value = "uldum_sack_sign_02.m2", + }, + { + fileId = "428639", + text = "uldum_sack_sign_03.m2", + value = "uldum_sack_sign_03.m2", + }, + { + fileId = "428640", + text = "uldum_sack_sign_04.m2", + value = "uldum_sack_sign_04.m2", + }, + }, + text = "sacks", + value = "sacks", }, { - fileId = "250009", - text = "ul_light_effect_yellow.m2", - value = "ul_light_effect_yellow.m2", + children = { + { + fileId = "343318", + text = "uldum_sandfall_01.m2", + value = "uldum_sandfall_01.m2", + }, + { + fileId = "343321", + text = "uldum_sandfall_lightshaft_01.m2", + value = "uldum_sandfall_lightshaft_01.m2", + }, + { + fileId = "351382", + text = "uldum_sandfall_short_01.m2", + value = "uldum_sandfall_short_01.m2", + }, + }, + text = "sandfalls", + value = "sandfalls", }, { - fileId = "251702", - text = "ul_lighting_door01.m2", - value = "ul_lighting_door01.m2", + children = { + { + fileId = "392676", + text = "uldum_sandstorm01.m2", + value = "uldum_sandstorm01.m2", + }, + }, + text = "sandstorm", + value = "sandstorm", }, { - fileId = "251982", - text = "ul_lighting_door02.m2", - value = "ul_lighting_door02.m2", + children = { + { + fileId = "345762", + text = "uldum_slidingfloor.m2", + value = "uldum_slidingfloor.m2", + }, + }, + text = "slidingfloor", + value = "slidingfloor", }, { - fileId = "303953", - text = "ul_lighting_door02_pillars.m2", - value = "ul_lighting_door02_pillars.m2", + children = { + { + fileId = "394990", + text = "uldum_ammunae_statue_01.m2", + value = "uldum_ammunae_statue_01.m2", + }, + { + fileId = "394993", + text = "uldum_ammunae_statue_02.m2", + value = "uldum_ammunae_statue_02.m2", + }, + { + fileId = "409411", + text = "uldum_crocodile_statue_01.m2", + value = "uldum_crocodile_statue_01.m2", + }, + { + fileId = "409609", + text = "uldum_crocodile_statue_02.m2", + value = "uldum_crocodile_statue_02.m2", + }, + { + fileId = "397154", + text = "uldum_falcon_01.m2", + value = "uldum_falcon_01.m2", + }, + { + fileId = "399048", + text = "uldum_falcon_statue_02.m2", + value = "uldum_falcon_statue_02.m2", + }, + { + fileId = "410781", + text = "uldum_falcon_statue_03.m2", + value = "uldum_falcon_statue_03.m2", + }, + { + fileId = "410783", + text = "uldum_falcon_statue_04.m2", + value = "uldum_falcon_statue_04.m2", + }, + { + fileId = "406647", + text = "uldum_jackal_statue_01.m2", + value = "uldum_jackal_statue_01.m2", + }, + { + fileId = "406649", + text = "uldum_jackal_statue_02.m2", + value = "uldum_jackal_statue_02.m2", + }, + { + fileId = "399520", + text = "uldum_ram_statue.m2", + value = "uldum_ram_statue.m2", + }, + { + fileId = "402152", + text = "uldum_ram_statue_01.m2", + value = "uldum_ram_statue_01.m2", + }, + { + fileId = "402154", + text = "uldum_ram_statue_02.m2", + value = "uldum_ram_statue_02.m2", + }, + { + fileId = "418701", + text = "uldum_ram_statue_03.m2", + value = "uldum_ram_statue_03.m2", + }, + { + fileId = "418703", + text = "uldum_ram_statue_04.m2", + value = "uldum_ram_statue_04.m2", + }, + { + fileId = "440413", + text = "uldum_titan_statue06.m2", + value = "uldum_titan_statue06.m2", + }, + { + fileId = "440416", + text = "uldum_titan_statue07.m2", + value = "uldum_titan_statue07.m2", + }, + }, + text = "statues", + value = "statues", }, { - fileId = "298623", - text = "ul_lighting_door03.m2", - value = "ul_lighting_door03.m2", + children = { + { + fileId = "361677", + text = "uldum_large_structure.m2", + value = "uldum_large_structure.m2", + }, + { + fileId = "361678", + text = "uldum_large_structure2.m2", + value = "uldum_large_structure2.m2", + }, + { + fileId = "362342", + text = "uldum_large_structure3.m2", + value = "uldum_large_structure3.m2", + }, + }, + text = "structure", + value = "structure", }, { - fileId = "303846", - text = "ul_lighting_door03_pillars.m2", - value = "ul_lighting_door03_pillars.m2", + children = { + { + fileId = "426070", + text = "uldum_teapot_01.m2", + value = "uldum_teapot_01.m2", + }, + { + fileId = "426071", + text = "uldum_teapot_02.m2", + value = "uldum_teapot_02.m2", + }, + }, + text = "teapots", + value = "teapots", }, { - fileId = "196514", - text = "ul_lightning.m2", - value = "ul_lightning.m2", + children = { + { + fileId = "394996", + text = "uldum_tent_01.m2", + value = "uldum_tent_01.m2", + }, + { + fileId = "394997", + text = "uldum_tent_02.m2", + value = "uldum_tent_02.m2", + }, + { + fileId = "394998", + text = "uldum_tent_03.m2", + value = "uldum_tent_03.m2", + }, + }, + text = "tents", + value = "tents", }, { - fileId = "196517", - text = "ul_lightning02.m2", - value = "ul_lightning02.m2", + children = { + { + fileId = "384499", + text = "uldum_titan_banister01.m2", + value = "uldum_titan_banister01.m2", + }, + { + fileId = "384500", + text = "uldum_titan_banister02.m2", + value = "uldum_titan_banister02.m2", + }, + { + fileId = "384501", + text = "uldum_titan_banister03.m2", + value = "uldum_titan_banister03.m2", + }, + { + fileId = "384502", + text = "uldum_titan_banister04.m2", + value = "uldum_titan_banister04.m2", + }, + { + fileId = "384503", + text = "uldum_titan_banister05.m2", + value = "uldum_titan_banister05.m2", + }, + { + fileId = "384743", + text = "uldum_titan_chest01.m2", + value = "uldum_titan_chest01.m2", + }, + { + fileId = "384744", + text = "uldum_titan_chest02.m2", + value = "uldum_titan_chest02.m2", + }, + { + fileId = "384504", + text = "uldum_titan_columns01.m2", + value = "uldum_titan_columns01.m2", + }, + { + fileId = "384505", + text = "uldum_titan_columns02.m2", + value = "uldum_titan_columns02.m2", + }, + { + fileId = "384506", + text = "uldum_titan_columns03.m2", + value = "uldum_titan_columns03.m2", + }, + { + fileId = "384507", + text = "uldum_titan_columns04.m2", + value = "uldum_titan_columns04.m2", + }, + { + fileId = "384508", + text = "uldum_titan_columns05.m2", + value = "uldum_titan_columns05.m2", + }, + { + fileId = "384509", + text = "uldum_titan_columns06.m2", + value = "uldum_titan_columns06.m2", + }, + { + fileId = "384510", + text = "uldum_titan_columns07.m2", + value = "uldum_titan_columns07.m2", + }, + { + fileId = "384511", + text = "uldum_titan_columns08.m2", + value = "uldum_titan_columns08.m2", + }, + { + fileId = "384759", + text = "uldum_titan_columns09.m2", + value = "uldum_titan_columns09.m2", + }, + { + fileId = "384760", + text = "uldum_titan_columns10.m2", + value = "uldum_titan_columns10.m2", + }, + { + fileId = "384761", + text = "uldum_titan_doorway01.m2", + value = "uldum_titan_doorway01.m2", + }, + { + fileId = "426409", + text = "uldum_titan_doorway02.m2", + value = "uldum_titan_doorway02.m2", + }, + { + fileId = "384762", + text = "uldum_titan_pipes01.m2", + value = "uldum_titan_pipes01.m2", + }, + { + fileId = "384701", + text = "uldum_titan_pyramid01.m2", + value = "uldum_titan_pyramid01.m2", + }, + { + fileId = "384512", + text = "uldum_titan_pyramid02.m2", + value = "uldum_titan_pyramid02.m2", + }, + { + fileId = "384513", + text = "uldum_titan_railing01.m2", + value = "uldum_titan_railing01.m2", + }, + { + fileId = "384514", + text = "uldum_titan_stairs01.m2", + value = "uldum_titan_stairs01.m2", + }, + { + fileId = "384515", + text = "uldum_titan_stairs02.m2", + value = "uldum_titan_stairs02.m2", + }, + { + fileId = "384516", + text = "uldum_titan_statue01.m2", + value = "uldum_titan_statue01.m2", + }, + { + fileId = "384517", + text = "uldum_titan_statue02.m2", + value = "uldum_titan_statue02.m2", + }, + { + fileId = "384518", + text = "uldum_titan_statue03.m2", + value = "uldum_titan_statue03.m2", + }, + { + fileId = "384519", + text = "uldum_titan_statue04.m2", + value = "uldum_titan_statue04.m2", + }, + { + fileId = "384520", + text = "uldum_titan_statue05.m2", + value = "uldum_titan_statue05.m2", + }, + { + fileId = "384521", + text = "uldum_titan_wall01.m2", + value = "uldum_titan_wall01.m2", + }, + { + fileId = "384763", + text = "uldum_titan_wall02.m2", + value = "uldum_titan_wall02.m2", + }, + }, + text = "titan", + value = "titan", }, { - fileId = "196518", - text = "ul_lightning_blue01.m2", - value = "ul_lightning_blue01.m2", + children = { + { + fileId = "406134", + text = "uldum_tomb_dirt_01.m2", + value = "uldum_tomb_dirt_01.m2", + }, + { + fileId = "406135", + text = "uldum_tomb_dirt_02.m2", + value = "uldum_tomb_dirt_02.m2", + }, + { + fileId = "406136", + text = "uldum_tomb_dirt_03.m2", + value = "uldum_tomb_dirt_03.m2", + }, + { + fileId = "406137", + text = "uldum_tomb_dirt_04.m2", + value = "uldum_tomb_dirt_04.m2", + }, + { + fileId = "402156", + text = "uldum_tombstone_01.m2", + value = "uldum_tombstone_01.m2", + }, + { + fileId = "402157", + text = "uldum_tombstone_02.m2", + value = "uldum_tombstone_02.m2", + }, + { + fileId = "402158", + text = "uldum_tombstone_03.m2", + value = "uldum_tombstone_03.m2", + }, + { + fileId = "402159", + text = "uldum_tombstone_04.m2", + value = "uldum_tombstone_04.m2", + }, + { + fileId = "402160", + text = "uldum_tombstone_05.m2", + value = "uldum_tombstone_05.m2", + }, + { + fileId = "402161", + text = "uldum_tombstone_06.m2", + value = "uldum_tombstone_06.m2", + }, + { + fileId = "402162", + text = "uldum_tombstone_07.m2", + value = "uldum_tombstone_07.m2", + }, + { + fileId = "402163", + text = "uldum_tombstone_08.m2", + value = "uldum_tombstone_08.m2", + }, + { + fileId = "406127", + text = "uldum_tombstone_base_01.m2", + value = "uldum_tombstone_base_01.m2", + }, + { + fileId = "406128", + text = "uldum_tombstone_base_02.m2", + value = "uldum_tombstone_base_02.m2", + }, + { + fileId = "406129", + text = "uldum_tombstone_base_03.m2", + value = "uldum_tombstone_base_03.m2", + }, + { + fileId = "406130", + text = "uldum_tombstone_base_04.m2", + value = "uldum_tombstone_base_04.m2", + }, + { + fileId = "406131", + text = "uldum_tombstone_base_05.m2", + value = "uldum_tombstone_base_05.m2", + }, + { + fileId = "406132", + text = "uldum_tombstone_base_06.m2", + value = "uldum_tombstone_base_06.m2", + }, + { + fileId = "402164", + text = "uldum_tombstone_top_01.m2", + value = "uldum_tombstone_top_01.m2", + }, + { + fileId = "402165", + text = "uldum_tombstone_top_02.m2", + value = "uldum_tombstone_top_02.m2", + }, + { + fileId = "402166", + text = "uldum_tombstone_top_03.m2", + value = "uldum_tombstone_top_03.m2", + }, + { + fileId = "402167", + text = "uldum_tombstone_top_04.m2", + value = "uldum_tombstone_top_04.m2", + }, + { + fileId = "406332", + text = "uldum_tombstone_top_06.m2", + value = "uldum_tombstone_top_06.m2", + }, + { + fileId = "406333", + text = "uldum_tombstone_top_07.m2", + value = "uldum_tombstone_top_07.m2", + }, + }, + text = "tombstones", + value = "tombstones", }, { - fileId = "196519", - text = "ul_lightning_tunnel.m2", - value = "ul_lightning_tunnel.m2", + children = { + { + fileId = "402677", + text = "uldum_torch_01.m2", + value = "uldum_torch_01.m2", + }, + { + fileId = "458273", + text = "uldum_torch_01_blue.m2", + value = "uldum_torch_01_blue.m2", + }, + { + fileId = "404983", + text = "uldum_torch_01_frame.m2", + value = "uldum_torch_01_frame.m2", + }, + { + fileId = "404179", + text = "uldum_torch_02.m2", + value = "uldum_torch_02.m2", + }, + { + fileId = "458274", + text = "uldum_torch_02_blue.m2", + value = "uldum_torch_02_blue.m2", + }, + { + fileId = "404459", + text = "uldum_torch_03.m2", + value = "uldum_torch_03.m2", + }, + { + fileId = "458275", + text = "uldum_torch_03_blue.m2", + value = "uldum_torch_03_blue.m2", + }, + { + fileId = "414221", + text = "uldum_torch_04.m2", + value = "uldum_torch_04.m2", + }, + { + fileId = "458276", + text = "uldum_torch_04_blue.m2", + value = "uldum_torch_04_blue.m2", + }, + { + fileId = "441883", + text = "uldum_torch_05.m2", + value = "uldum_torch_05.m2", + }, + }, + text = "torches", + value = "torches", }, { - fileId = "249636", - text = "ul_machine_tramring_02.m2", - value = "ul_machine_tramring_02.m2", + children = { + { + fileId = "360357", + text = "uldum_oasistree_01.m2", + value = "uldum_oasistree_01.m2", + }, + { + fileId = "378569", + text = "uldum_oasistree_01_dry.m2", + value = "uldum_oasistree_01_dry.m2", + }, + { + fileId = "361129", + text = "uldum_oasistree_02.m2", + value = "uldum_oasistree_02.m2", + }, + { + fileId = "378571", + text = "uldum_oasistree_02_dry.m2", + value = "uldum_oasistree_02_dry.m2", + }, + { + fileId = "361351", + text = "uldum_oasistree_03.m2", + value = "uldum_oasistree_03.m2", + }, + { + fileId = "378573", + text = "uldum_oasistree_03_dry.m2", + value = "uldum_oasistree_03_dry.m2", + }, + { + fileId = "387897", + text = "uldum_palmdebris01.m2", + value = "uldum_palmdebris01.m2", + }, + { + fileId = "387898", + text = "uldum_palmdebris02.m2", + value = "uldum_palmdebris02.m2", + }, + { + fileId = "387899", + text = "uldum_palmdebris03.m2", + value = "uldum_palmdebris03.m2", + }, + { + fileId = "387900", + text = "uldum_palmdebris04.m2", + value = "uldum_palmdebris04.m2", + }, + { + fileId = "387901", + text = "uldum_palmdebris05.m2", + value = "uldum_palmdebris05.m2", + }, + { + fileId = "389208", + text = "uldum_palmdebris06.m2", + value = "uldum_palmdebris06.m2", + }, + { + fileId = "389209", + text = "uldum_palmdebris07.m2", + value = "uldum_palmdebris07.m2", + }, + { + fileId = "389210", + text = "uldum_palmdebris09.m2", + value = "uldum_palmdebris09.m2", + }, + { + fileId = "332398", + text = "uldum_palmtree_01.m2", + value = "uldum_palmtree_01.m2", + }, + { + fileId = "427260", + text = "uldum_palmtree_01_dry.m2", + value = "uldum_palmtree_01_dry.m2", + }, + { + fileId = "332399", + text = "uldum_palmtree_02.m2", + value = "uldum_palmtree_02.m2", + }, + { + fileId = "427261", + text = "uldum_palmtree_02_dry.m2", + value = "uldum_palmtree_02_dry.m2", + }, + { + fileId = "332400", + text = "uldum_palmtree_03.m2", + value = "uldum_palmtree_03.m2", + }, + { + fileId = "427262", + text = "uldum_palmtree_03_dry.m2", + value = "uldum_palmtree_03_dry.m2", + }, + { + fileId = "388511", + text = "uldum_palmtree_04.m2", + value = "uldum_palmtree_04.m2", + }, + { + fileId = "427639", + text = "uldum_palmtree_04_dry.m2", + value = "uldum_palmtree_04_dry.m2", + }, + { + fileId = "388512", + text = "uldum_palmtree_05.m2", + value = "uldum_palmtree_05.m2", + }, + { + fileId = "388513", + text = "uldum_palmtree_06.m2", + value = "uldum_palmtree_06.m2", + }, + { + fileId = "362636", + text = "uldum_rivertree02_01.m2", + value = "uldum_rivertree02_01.m2", + }, + { + fileId = "363634", + text = "uldum_rivertree02_02.m2", + value = "uldum_rivertree02_02.m2", + }, + { + fileId = "363635", + text = "uldum_rivertree02_03.m2", + value = "uldum_rivertree02_03.m2", + }, + { + fileId = "361364", + text = "uldum_rivertree_01.m2", + value = "uldum_rivertree_01.m2", + }, + { + fileId = "361365", + text = "uldum_rivertree_02.m2", + value = "uldum_rivertree_02.m2", + }, + { + fileId = "361366", + text = "uldum_rivertree_03.m2", + value = "uldum_rivertree_03.m2", + }, + { + fileId = "361368", + text = "uldum_rivertree_04.m2", + value = "uldum_rivertree_04.m2", + }, + { + fileId = "361369", + text = "uldum_rivertree_05.m2", + value = "uldum_rivertree_05.m2", + }, + { + fileId = "361616", + text = "uldum_rivertree_06.m2", + value = "uldum_rivertree_06.m2", + }, + }, + text = "trees", + value = "trees", }, { - fileId = "243999", - text = "ul_mountaingiantcrystal.m2", - value = "ul_mountaingiantcrystal.m2", + fileId = "395301", + text = "uldum_anvil.m2", + value = "uldum_anvil.m2", + }, + { + fileId = "395795", + text = "uldum_anvil_02.m2", + value = "uldum_anvil_02.m2", }, { - fileId = "196525", - text = "ul_orb_01.m2", - value = "ul_orb_01.m2", + fileId = "395302", + text = "uldum_anvil_hammer.m2", + value = "uldum_anvil_hammer.m2", }, { - fileId = "196533", - text = "ul_planet_02.m2", - value = "ul_planet_02.m2", + fileId = "412261", + text = "uldum_centerpiece_01.m2", + value = "uldum_centerpiece_01.m2", }, { - fileId = "196534", - text = "ul_planet_03.m2", - value = "ul_planet_03.m2", + fileId = "431522", + text = "uldum_cook_stove_01.m2", + value = "uldum_cook_stove_01.m2", }, { - fileId = "196535", - text = "ul_planet_04.m2", - value = "ul_planet_04.m2", + fileId = "391841", + text = "uldum_dam_drain.m2", + value = "uldum_dam_drain.m2", }, { - fileId = "196536", - text = "ul_planet_05.m2", - value = "ul_planet_05.m2", + fileId = "312541", + text = "uldum_elevator_01.m2", + value = "uldum_elevator_01.m2", }, { - fileId = "196537", - text = "ul_planet_06.m2", - value = "ul_planet_06.m2", + fileId = "461560", + text = "uldum_floating_lamp_01.m2", + value = "uldum_floating_lamp_01.m2", }, { - fileId = "196538", - text = "ul_planet_07.m2", - value = "ul_planet_07.m2", + fileId = "405304", + text = "uldum_incense_burner_01.m2", + value = "uldum_incense_burner_01.m2", }, { - fileId = "250918", - text = "ul_planet_08.m2", - value = "ul_planet_08.m2", + fileId = "402168", + text = "uldum_mausoleum.m2", + value = "uldum_mausoleum.m2", }, { - fileId = "196539", - text = "ul_planet_azeroth.m2", - value = "ul_planet_azeroth.m2", + fileId = "452697", + text = "uldum_micro_glass_01.m2", + value = "uldum_micro_glass_01.m2", }, { - fileId = "196540", - text = "ul_planet_azeroth_nobase.m2", - value = "ul_planet_azeroth_nobase.m2", + fileId = "399049", + text = "uldum_pedestal_01.m2", + value = "uldum_pedestal_01.m2", }, { - fileId = "254856", - text = "ul_portal_blue.m2", - value = "ul_portal_blue.m2", + fileId = "386583", + text = "uldum_sailboat.m2", + value = "uldum_sailboat.m2", }, { - fileId = "196543", - text = "ul_pot01.m2", - value = "ul_pot01.m2", + fileId = "387905", + text = "uldum_sailboat02.m2", + value = "uldum_sailboat02.m2", }, { - fileId = "196544", - text = "ul_pot02.m2", - value = "ul_pot02.m2", + fileId = "388514", + text = "uldum_sailboat03.m2", + value = "uldum_sailboat03.m2", }, { - fileId = "196545", - text = "ul_pot03.m2", - value = "ul_pot03.m2", + fileId = "405894", + text = "uldum_scarab_01.m2", + value = "uldum_scarab_01.m2", }, { - fileId = "196548", - text = "ul_power_orb01.m2", - value = "ul_power_orb01.m2", + fileId = "459021", + text = "uldum_star_portal_01.m2", + value = "uldum_star_portal_01.m2", }, { - fileId = "196549", - text = "ul_power_orb02.m2", - value = "ul_power_orb02.m2", + fileId = "431773", + text = "uldum_sundial.m2", + value = "uldum_sundial.m2", }, { - fileId = "252832", - text = "ul_pyritefuelcell.m2", - value = "ul_pyritefuelcell.m2", + fileId = "461561", + text = "uldum_sunsigil_beam.m2", + value = "uldum_sunsigil_beam.m2", }, { - fileId = "252833", - text = "ul_pyritefuelcelllarge.m2", - value = "ul_pyritefuelcelllarge.m2", + fileId = "392618", + text = "uldum_wagon.m2", + value = "uldum_wagon.m2", }, { - fileId = "244001", - text = "ul_raidprison_floor.m2", - value = "ul_raidprison_floor.m2", + children = { + { + fileId = "404989", + text = "uldum_urn_01.m2", + value = "uldum_urn_01.m2", + }, + { + fileId = "511896", + text = "uldum_urn_01_nocol.m2", + value = "uldum_urn_01_nocol.m2", + }, + { + fileId = "405305", + text = "uldum_urn_02.m2", + value = "uldum_urn_02.m2", + }, + }, + text = "urns", + value = "urns", }, { - fileId = "244002", - text = "ul_raidtemplefloor_01.m2", - value = "ul_raidtemplefloor_01.m2", + children = { + { + fileId = "361623", + text = "uldum_end_piece.m2", + value = "uldum_end_piece.m2", + }, + { + fileId = "361624", + text = "uldum_entrance_piece.m2", + value = "uldum_entrance_piece.m2", + }, + { + fileId = "361679", + text = "uldum_entrance_piece1.m2", + value = "uldum_entrance_piece1.m2", + }, + { + fileId = "361625", + text = "uldum_one_story.m2", + value = "uldum_one_story.m2", + }, + { + fileId = "362134", + text = "uldum_one_story1.m2", + value = "uldum_one_story1.m2", + }, + { + fileId = "361626", + text = "uldum_two_story.m2", + value = "uldum_two_story.m2", + }, + { + fileId = "361627", + text = "uldum_wall.m2", + value = "uldum_wall.m2", + }, + { + fileId = "361628", + text = "uldum_wall_corner.m2", + value = "uldum_wall_corner.m2", + }, + { + fileId = "361629", + text = "uldum_wall_curved.m2", + value = "uldum_wall_curved.m2", + }, + { + fileId = "361630", + text = "uldum_wall_curved_short.m2", + value = "uldum_wall_curved_short.m2", + }, + { + fileId = "361631", + text = "uldum_wall_long.m2", + value = "uldum_wall_long.m2", + }, + { + fileId = "361632", + text = "uldum_wall_long_curved.m2", + value = "uldum_wall_long_curved.m2", + }, + }, + text = "walls", + value = "walls", }, { - fileId = "250919", - text = "ul_rune_floorcircle.m2", - value = "ul_rune_floorcircle.m2", + children = { + { + fileId = "329059", + text = "uldum_watcher_center_anims.m2", + value = "uldum_watcher_center_anims.m2", + }, + }, + text = "watcher", + value = "watcher", }, { - fileId = "253377", - text = "ul_saronitepool_01.m2", - value = "ul_saronitepool_01.m2", + children = { + { + fileId = "369235", + text = "uldum_dam_waterfalls_01.m2", + value = "uldum_dam_waterfalls_01.m2", + }, + { + fileId = "394811", + text = "uldum_dam_waterfalls_02.m2", + value = "uldum_dam_waterfalls_02.m2", + }, + { + fileId = "397064", + text = "uldum_dam_waterfalls_03.m2", + value = "uldum_dam_waterfalls_03.m2", + }, + { + fileId = "437072", + text = "uldum_oasis_waterfall_left.m2", + value = "uldum_oasis_waterfall_left.m2", + }, + { + fileId = "437073", + text = "uldum_oasis_waterfall_right.m2", + value = "uldum_oasis_waterfall_right.m2", + }, + { + fileId = "368547", + text = "uldum_waterfall_large.m2", + value = "uldum_waterfall_large.m2", + }, + { + fileId = "437074", + text = "uldum_waterfalls_east_01.m2", + value = "uldum_waterfalls_east_01.m2", + }, + { + fileId = "437075", + text = "uldum_waterfalls_east_02.m2", + value = "uldum_waterfalls_east_02.m2", + }, + { + fileId = "437076", + text = "uldum_waterfalls_east_03.m2", + value = "uldum_waterfalls_east_03.m2", + }, + { + fileId = "437077", + text = "uldum_waterfalls_east_04.m2", + value = "uldum_waterfalls_east_04.m2", + }, + { + fileId = "437078", + text = "uldum_waterfalls_east_05.m2", + value = "uldum_waterfalls_east_05.m2", + }, + { + fileId = "437079", + text = "uldum_waterfalls_east_06.m2", + value = "uldum_waterfalls_east_06.m2", + }, + { + fileId = "437080", + text = "uldum_waterfalls_east_07.m2", + value = "uldum_waterfalls_east_07.m2", + }, + { + fileId = "437081", + text = "uldum_waterfalls_east_08.m2", + value = "uldum_waterfalls_east_08.m2", + }, + { + fileId = "437082", + text = "uldum_waterfalls_west_01.m2", + value = "uldum_waterfalls_west_01.m2", + }, + { + fileId = "437083", + text = "uldum_waterfalls_west_02.m2", + value = "uldum_waterfalls_west_02.m2", + }, + { + fileId = "437084", + text = "uldum_waterfalls_west_03.m2", + value = "uldum_waterfalls_west_03.m2", + }, + { + fileId = "437085", + text = "uldum_waterfalls_west_04.m2", + value = "uldum_waterfalls_west_04.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", }, { - fileId = "244003", - text = "ul_sigil01.m2", - value = "ul_sigil01.m2", + children = { + { + fileId = "427641", + text = "uldum_whitelotus01.m2", + value = "uldum_whitelotus01.m2", + }, + { + fileId = "427642", + text = "uldum_whitelotus02.m2", + value = "uldum_whitelotus02.m2", + }, + { + fileId = "427643", + text = "uldum_whitelotus03.m2", + value = "uldum_whitelotus03.m2", + }, + }, + text = "whitelotus", + value = "whitelotus", }, + }, + text = "uldum", + value = "uldum", + }, + { + children = { { - fileId = "244004", - text = "ul_sigil02.m2", - value = "ul_sigil02.m2", + children = { + { + fileId = "332934", + text = "vj_anemonelrg01.m2", + value = "vj_anemonelrg01.m2", + }, + { + fileId = "332935", + text = "vj_anemonelrg02.m2", + value = "vj_anemonelrg02.m2", + }, + { + fileId = "332938", + text = "vj_anemonelrg03.m2", + value = "vj_anemonelrg03.m2", + }, + { + fileId = "332939", + text = "vj_anemonelrg04.m2", + value = "vj_anemonelrg04.m2", + }, + { + fileId = "333089", + text = "vj_anemonelrg05.m2", + value = "vj_anemonelrg05.m2", + }, + { + fileId = "334476", + text = "vj_anemonesm01.m2", + value = "vj_anemonesm01.m2", + }, + { + fileId = "334478", + text = "vj_anemonesm02.m2", + value = "vj_anemonesm02.m2", + }, + { + fileId = "334480", + text = "vj_anemonesm03.m2", + value = "vj_anemonesm03.m2", + }, + { + fileId = "348142", + text = "vj_giantanemone01.m2", + value = "vj_giantanemone01.m2", + }, + { + fileId = "349127", + text = "vj_giantanemone02.m2", + value = "vj_giantanemone02.m2", + }, + { + fileId = "349129", + text = "vj_giantanemone03.m2", + value = "vj_giantanemone03.m2", + }, + }, + text = "anemone", + value = "anemone", }, { - fileId = "244005", - text = "ul_sigil03.m2", - value = "ul_sigil03.m2", + children = { + { + fileId = "403541", + text = "vj_blood_drips_01.m2", + value = "vj_blood_drips_01.m2", + }, + }, + text = "blood", + value = "blood", }, { - fileId = "244006", - text = "ul_sigil04.m2", - value = "ul_sigil04.m2", + children = { + { + fileId = "338471", + text = "vj_whalebones_01.m2", + value = "vj_whalebones_01.m2", + }, + { + fileId = "338472", + text = "vj_whalebones_02.m2", + value = "vj_whalebones_02.m2", + }, + { + fileId = "338509", + text = "vj_whalebones_03.m2", + value = "vj_whalebones_03.m2", + }, + { + fileId = "338510", + text = "vj_whalebones_04.m2", + value = "vj_whalebones_04.m2", + }, + }, + text = "bones", + value = "bones", }, { - fileId = "244007", - text = "ul_sigil05.m2", - value = "ul_sigil05.m2", + children = { + { + fileId = "308295", + text = "vj_bushcoralbrown01.m2", + value = "vj_bushcoralbrown01.m2", + }, + { + fileId = "344225", + text = "vj_bushcoralgray01.m2", + value = "vj_bushcoralgray01.m2", + }, + { + fileId = "344226", + text = "vj_bushcoralgray02.m2", + value = "vj_bushcoralgray02.m2", + }, + { + fileId = "315844", + text = "vj_coral_tree_large_01.m2", + value = "vj_coral_tree_large_01.m2", + }, + { + fileId = "317046", + text = "vj_coral_tree_large_02.m2", + value = "vj_coral_tree_large_02.m2", + }, + { + fileId = "317231", + text = "vj_coral_tree_large_03.m2", + value = "vj_coral_tree_large_03.m2", + }, + { + fileId = "332365", + text = "vj_coralbush_bluegreen01.m2", + value = "vj_coralbush_bluegreen01.m2", + }, + { + fileId = "344228", + text = "vj_coralbush_gray01.m2", + value = "vj_coralbush_gray01.m2", + }, + { + fileId = "344230", + text = "vj_coralbush_gray02.m2", + value = "vj_coralbush_gray02.m2", + }, + { + fileId = "340126", + text = "vj_coralbush_green01.m2", + value = "vj_coralbush_green01.m2", + }, + { + fileId = "340128", + text = "vj_coralbush_green02.m2", + value = "vj_coralbush_green02.m2", + }, + { + fileId = "332366", + text = "vj_coralbush_orange01.m2", + value = "vj_coralbush_orange01.m2", + }, + { + fileId = "332367", + text = "vj_coralbush_pink01.m2", + value = "vj_coralbush_pink01.m2", + }, + { + fileId = "332368", + text = "vj_coralbush_pink02.m2", + value = "vj_coralbush_pink02.m2", + }, + { + fileId = "344232", + text = "vj_coralbush_purple01.m2", + value = "vj_coralbush_purple01.m2", + }, + { + fileId = "344234", + text = "vj_coralbush_purple02.m2", + value = "vj_coralbush_purple02.m2", + }, + { + fileId = "332369", + text = "vj_coralbush_red01.m2", + value = "vj_coralbush_red01.m2", + }, + { + fileId = "344236", + text = "vj_coralbush_red02.m2", + value = "vj_coralbush_red02.m2", + }, + { + fileId = "344238", + text = "vj_coralbush_red03.m2", + value = "vj_coralbush_red03.m2", + }, + { + fileId = "332370", + text = "vj_coralbush_violet01.m2", + value = "vj_coralbush_violet01.m2", + }, + { + fileId = "331328", + text = "vj_coralclustertop01.m2", + value = "vj_coralclustertop01.m2", + }, + { + fileId = "331329", + text = "vj_coralclustertop02.m2", + value = "vj_coralclustertop02.m2", + }, + { + fileId = "332335", + text = "vj_coralflat_01.m2", + value = "vj_coralflat_01.m2", + }, + { + fileId = "332338", + text = "vj_coralflat_02.m2", + value = "vj_coralflat_02.m2", + }, + { + fileId = "333225", + text = "vj_coralflat_03.m2", + value = "vj_coralflat_03.m2", + }, + { + fileId = "332814", + text = "vj_coralflatgold_02.m2", + value = "vj_coralflatgold_02.m2", + }, + { + fileId = "332372", + text = "vj_coralflatgreen_01.m2", + value = "vj_coralflatgreen_01.m2", + }, + { + fileId = "332374", + text = "vj_coralflatpurple_01.m2", + value = "vj_coralflatpurple_01.m2", + }, + { + fileId = "332376", + text = "vj_coralflatred_01.m2", + value = "vj_coralflatred_01.m2", + }, + { + fileId = "332816", + text = "vj_coralflatred_02.m2", + value = "vj_coralflatred_02.m2", + }, + { + fileId = "341575", + text = "vj_coralmutated01.m2", + value = "vj_coralmutated01.m2", + }, + { + fileId = "341576", + text = "vj_coralmutated02.m2", + value = "vj_coralmutated02.m2", + }, + { + fileId = "341578", + text = "vj_coralmutated03.m2", + value = "vj_coralmutated03.m2", + }, + { + fileId = "332341", + text = "vj_coralspikey_01.m2", + value = "vj_coralspikey_01.m2", + }, + { + fileId = "333922", + text = "vj_coralspikey_02.m2", + value = "vj_coralspikey_02.m2", + }, + { + fileId = "333923", + text = "vj_coralspikey_03.m2", + value = "vj_coralspikey_03.m2", + }, + { + fileId = "334482", + text = "vj_coraltablemid01.m2", + value = "vj_coraltablemid01.m2", + }, + { + fileId = "335603", + text = "vj_coraltablemid02.m2", + value = "vj_coraltablemid02.m2", + }, + { + fileId = "335604", + text = "vj_coraltablemid03.m2", + value = "vj_coraltablemid03.m2", + }, + { + fileId = "335605", + text = "vj_coraltablemid04.m2", + value = "vj_coraltablemid04.m2", + }, + { + fileId = "335606", + text = "vj_coraltablemid05.m2", + value = "vj_coraltablemid05.m2", + }, + { + fileId = "335943", + text = "vj_coraltablespiky01.m2", + value = "vj_coraltablespiky01.m2", + }, + { + fileId = "335945", + text = "vj_coraltablespiky02.m2", + value = "vj_coraltablespiky02.m2", + }, + { + fileId = "340891", + text = "vj_coraltablespiky03.m2", + value = "vj_coraltablespiky03.m2", + }, + { + fileId = "340892", + text = "vj_coraltablespikycluster01.m2", + value = "vj_coraltablespikycluster01.m2", + }, + { + fileId = "330843", + text = "vj_coraltabletop01.m2", + value = "vj_coraltabletop01.m2", + }, + { + fileId = "331330", + text = "vj_coraltabletop02.m2", + value = "vj_coraltabletop02.m2", + }, + { + fileId = "331331", + text = "vj_coraltabletop03.m2", + value = "vj_coraltabletop03.m2", + }, + { + fileId = "331332", + text = "vj_coraltabletop04.m2", + value = "vj_coraltabletop04.m2", + }, + { + fileId = "331333", + text = "vj_coraltabletop05.m2", + value = "vj_coraltabletop05.m2", + }, + { + fileId = "330132", + text = "vj_coraltabletopblue01.m2", + value = "vj_coraltabletopblue01.m2", + }, + { + fileId = "330134", + text = "vj_coraltabletopgold01.m2", + value = "vj_coraltabletopgold01.m2", + }, + { + fileId = "330136", + text = "vj_coraltabletopgreen01.m2", + value = "vj_coraltabletopgreen01.m2", + }, + { + fileId = "330138", + text = "vj_coraltabletopred01.m2", + value = "vj_coraltabletopred01.m2", + }, + { + fileId = "332344", + text = "vj_coralthick_01.m2", + value = "vj_coralthick_01.m2", + }, + { + fileId = "332345", + text = "vj_coralthick_02.m2", + value = "vj_coralthick_02.m2", + }, + { + fileId = "332940", + text = "vj_coralthick_03.m2", + value = "vj_coralthick_03.m2", + }, + { + fileId = "332819", + text = "vj_coralthickblue_02.m2", + value = "vj_coralthickblue_02.m2", + }, + { + fileId = "332822", + text = "vj_coralthickgold_02.m2", + value = "vj_coralthickgold_02.m2", + }, + { + fileId = "333228", + text = "vj_coralthickorange_01.m2", + value = "vj_coralthickorange_01.m2", + }, + { + fileId = "333229", + text = "vj_coralthickorange_02.m2", + value = "vj_coralthickorange_02.m2", + }, + { + fileId = "333232", + text = "vj_coralthickpink_02.m2", + value = "vj_coralthickpink_02.m2", + }, + { + fileId = "333233", + text = "vj_coralthickpink_03.m2", + value = "vj_coralthickpink_03.m2", + }, + { + fileId = "333236", + text = "vj_coralthickpurple_02.m2", + value = "vj_coralthickpurple_02.m2", + }, + { + fileId = "333237", + text = "vj_coralthickpurple_03.m2", + value = "vj_coralthickpurple_03.m2", + }, + { + fileId = "332825", + text = "vj_coralthickred_02.m2", + value = "vj_coralthickred_02.m2", + }, + { + fileId = "308297", + text = "vj_cucumbercoralgreen01.m2", + value = "vj_cucumbercoralgreen01.m2", + }, + { + fileId = "315209", + text = "vj_fancoral_large_01.m2", + value = "vj_fancoral_large_01.m2", + }, + { + fileId = "338512", + text = "vj_fancoralmid01.m2", + value = "vj_fancoralmid01.m2", + }, + { + fileId = "338514", + text = "vj_fancoralmid02.m2", + value = "vj_fancoralmid02.m2", + }, + { + fileId = "329444", + text = "vj_giantclam01.m2", + value = "vj_giantclam01.m2", + }, + { + fileId = "329447", + text = "vj_giantcoral01.m2", + value = "vj_giantcoral01.m2", + }, + { + fileId = "329597", + text = "vj_giantcoral02.m2", + value = "vj_giantcoral02.m2", + }, + { + fileId = "329598", + text = "vj_giantcoral03.m2", + value = "vj_giantcoral03.m2", + }, + { + fileId = "329599", + text = "vj_giantcoral04.m2", + value = "vj_giantcoral04.m2", + }, + { + fileId = "336115", + text = "vj_giantcoral06.m2", + value = "vj_giantcoral06.m2", + }, + { + fileId = "332348", + text = "vj_giantcoral_bluegreen01.m2", + value = "vj_giantcoral_bluegreen01.m2", + }, + { + fileId = "332349", + text = "vj_giantcoral_bluegreen02.m2", + value = "vj_giantcoral_bluegreen02.m2", + }, + { + fileId = "332350", + text = "vj_giantcoral_bluegreen03.m2", + value = "vj_giantcoral_bluegreen03.m2", + }, + { + fileId = "332351", + text = "vj_giantcoral_bluegreen04.m2", + value = "vj_giantcoral_bluegreen04.m2", + }, + { + fileId = "335948", + text = "vj_giantcoral_glowy01.m2", + value = "vj_giantcoral_glowy01.m2", + }, + { + fileId = "335949", + text = "vj_giantcoral_glowy02.m2", + value = "vj_giantcoral_glowy02.m2", + }, + { + fileId = "335950", + text = "vj_giantcoral_glowy03.m2", + value = "vj_giantcoral_glowy03.m2", + }, + { + fileId = "335951", + text = "vj_giantcoral_glowy04.m2", + value = "vj_giantcoral_glowy04.m2", + }, + { + fileId = "335953", + text = "vj_giantcoral_glowy05.m2", + value = "vj_giantcoral_glowy05.m2", + }, + { + fileId = "335954", + text = "vj_giantcoral_glowy06.m2", + value = "vj_giantcoral_glowy06.m2", + }, + { + fileId = "335955", + text = "vj_giantcoral_glowy07.m2", + value = "vj_giantcoral_glowy07.m2", + }, + { + fileId = "335956", + text = "vj_giantcoral_glowy08.m2", + value = "vj_giantcoral_glowy08.m2", + }, + { + fileId = "330561", + text = "vj_giantcoral_pink01.m2", + value = "vj_giantcoral_pink01.m2", + }, + { + fileId = "330562", + text = "vj_giantcoral_pink02.m2", + value = "vj_giantcoral_pink02.m2", + }, + { + fileId = "330844", + text = "vj_giantcoral_pink03.m2", + value = "vj_giantcoral_pink03.m2", + }, + { + fileId = "330845", + text = "vj_giantcoral_pink04.m2", + value = "vj_giantcoral_pink04.m2", + }, + { + fileId = "336587", + text = "vj_giantcoral_pink05.m2", + value = "vj_giantcoral_pink05.m2", + }, + { + fileId = "332354", + text = "vj_giantcoral_pink06.m2", + value = "vj_giantcoral_pink06.m2", + }, + { + fileId = "332355", + text = "vj_giantcoral_pink07.m2", + value = "vj_giantcoral_pink07.m2", + }, + { + fileId = "332356", + text = "vj_giantcoral_pink08.m2", + value = "vj_giantcoral_pink08.m2", + }, + { + fileId = "332357", + text = "vj_giantcoral_pink09.m2", + value = "vj_giantcoral_pink09.m2", + }, + { + fileId = "332358", + text = "vj_giantcoral_pink10.m2", + value = "vj_giantcoral_pink10.m2", + }, + { + fileId = "332361", + text = "vj_giantcoral_pink11.m2", + value = "vj_giantcoral_pink11.m2", + }, + { + fileId = "332362", + text = "vj_giantcoral_pink12.m2", + value = "vj_giantcoral_pink12.m2", + }, + { + fileId = "332363", + text = "vj_giantcoral_pink13.m2", + value = "vj_giantcoral_pink13.m2", + }, + { + fileId = "332364", + text = "vj_giantcoral_pink14.m2", + value = "vj_giantcoral_pink14.m2", + }, + { + fileId = "332047", + text = "vj_giantcoral_violet01.m2", + value = "vj_giantcoral_violet01.m2", + }, + { + fileId = "332048", + text = "vj_giantcoral_violet02.m2", + value = "vj_giantcoral_violet02.m2", + }, + { + fileId = "332195", + text = "vj_giantcoral_violet03.m2", + value = "vj_giantcoral_violet03.m2", + }, + { + fileId = "332196", + text = "vj_giantcoral_violet04.m2", + value = "vj_giantcoral_violet04.m2", + }, + { + fileId = "338516", + text = "vj_giantfancoral_01.m2", + value = "vj_giantfancoral_01.m2", + }, + { + fileId = "338518", + text = "vj_giantfancoral_02.m2", + value = "vj_giantfancoral_02.m2", + }, + { + fileId = "338521", + text = "vj_giantfancoral_03.m2", + value = "vj_giantfancoral_03.m2", + }, + { + fileId = "338523", + text = "vj_giantfancoral_04.m2", + value = "vj_giantfancoral_04.m2", + }, + { + fileId = "308298", + text = "vj_mushroomcoralgreen01.m2", + value = "vj_mushroomcoralgreen01.m2", + }, + { + fileId = "308299", + text = "vj_pipecoralorange01.m2", + value = "vj_pipecoralorange01.m2", + }, + { + fileId = "308300", + text = "vj_seagrassgreen01.m2", + value = "vj_seagrassgreen01.m2", + }, + { + fileId = "308301", + text = "vj_seaspongebrown01.m2", + value = "vj_seaspongebrown01.m2", + }, + { + fileId = "335418", + text = "vj_spikedbushcoral01.m2", + value = "vj_spikedbushcoral01.m2", + }, + { + fileId = "335420", + text = "vj_spikedbushcoral02.m2", + value = "vj_spikedbushcoral02.m2", + }, + { + fileId = "338053", + text = "vj_spikedbushcoral03.m2", + value = "vj_spikedbushcoral03.m2", + }, + { + fileId = "338055", + text = "vj_spikedbushcoral04.m2", + value = "vj_spikedbushcoral04.m2", + }, + { + fileId = "334844", + text = "vj_spikedtreecoral01.m2", + value = "vj_spikedtreecoral01.m2", + }, + { + fileId = "334847", + text = "vj_spikedtreecoral02.m2", + value = "vj_spikedtreecoral02.m2", + }, + { + fileId = "338056", + text = "vj_spikedtreecoral03.m2", + value = "vj_spikedtreecoral03.m2", + }, + { + fileId = "338057", + text = "vj_spikedtreecoral04.m2", + value = "vj_spikedtreecoral04.m2", + }, + { + fileId = "338829", + text = "vj_spikedtreecoral05.m2", + value = "vj_spikedtreecoral05.m2", + }, + { + fileId = "338831", + text = "vj_spikedtreecoral06.m2", + value = "vj_spikedtreecoral06.m2", + }, + { + fileId = "344239", + text = "vj_spikedtreecoral07.m2", + value = "vj_spikedtreecoral07.m2", + }, + { + fileId = "338743", + text = "vj_spongecoral_01.m2", + value = "vj_spongecoral_01.m2", + }, + { + fileId = "338744", + text = "vj_spongecoral_02.m2", + value = "vj_spongecoral_02.m2", + }, + { + fileId = "338745", + text = "vj_spongecoral_03.m2", + value = "vj_spongecoral_03.m2", + }, + { + fileId = "338746", + text = "vj_spongecoral_04.m2", + value = "vj_spongecoral_04.m2", + }, + { + fileId = "338748", + text = "vj_spongecoral_05.m2", + value = "vj_spongecoral_05.m2", + }, + { + fileId = "338749", + text = "vj_spongecoral_06.m2", + value = "vj_spongecoral_06.m2", + }, + { + fileId = "338750", + text = "vj_spongecoral_07.m2", + value = "vj_spongecoral_07.m2", + }, + { + fileId = "338751", + text = "vj_spongecoral_08.m2", + value = "vj_spongecoral_08.m2", + }, + { + fileId = "338752", + text = "vj_spongecoral_09.m2", + value = "vj_spongecoral_09.m2", + }, + { + fileId = "338833", + text = "vj_spongecoral_10.m2", + value = "vj_spongecoral_10.m2", + }, + { + fileId = "348877", + text = "vj_spongecoral_10_orange.m2", + value = "vj_spongecoral_10_orange.m2", + }, + { + fileId = "338834", + text = "vj_spongecoral_11.m2", + value = "vj_spongecoral_11.m2", + }, + { + fileId = "348878", + text = "vj_spongecoral_11_orange.m2", + value = "vj_spongecoral_11_orange.m2", + }, + { + fileId = "338835", + text = "vj_spongecoral_12.m2", + value = "vj_spongecoral_12.m2", + }, + { + fileId = "348879", + text = "vj_spongecoral_12_orange.m2", + value = "vj_spongecoral_12_orange.m2", + }, + { + fileId = "344240", + text = "vj_treecoralgray01.m2", + value = "vj_treecoralgray01.m2", + }, + { + fileId = "344241", + text = "vj_treecoralgray02.m2", + value = "vj_treecoralgray02.m2", + }, + { + fileId = "344243", + text = "vj_treecoralgray03.m2", + value = "vj_treecoralgray03.m2", + }, + }, + text = "corals", + value = "corals", }, { - fileId = "298603", - text = "ul_sigil_gear.m2", - value = "ul_sigil_gear.m2", + children = { + { + fileId = "404856", + text = "vj_demigod_door.m2", + value = "vj_demigod_door.m2", + }, + { + fileId = "418195", + text = "vj_demigod_heart1.m2", + value = "vj_demigod_heart1.m2", + }, + { + fileId = "405004", + text = "vj_demigod_lightshaft_01.m2", + value = "vj_demigod_lightshaft_01.m2", + }, + { + fileId = "406403", + text = "vj_demigod_organ1.m2", + value = "vj_demigod_organ1.m2", + }, + { + fileId = "405460", + text = "vj_demigod_skin_flakes.m2", + value = "vj_demigod_skin_flakes.m2", + }, + }, + text = "demigod", + value = "demigod", }, { - fileId = "298604", - text = "ul_sigil_leaf.m2", - value = "ul_sigil_leaf.m2", + children = { + { + fileId = "319459", + text = "vj_dome_01.m2", + value = "vj_dome_01.m2", + }, + { + fileId = "396356", + text = "vj_dome_eye_01.m2", + value = "vj_dome_eye_01.m2", + }, + { + fileId = "363205", + text = "vj_dome_glowcards.m2", + value = "vj_dome_glowcards.m2", + }, + }, + text = "domes", + value = "domes", }, { - fileId = "298605", - text = "ul_sigil_lightning.m2", - value = "ul_sigil_lightning.m2", + children = { + { + fileId = "397156", + text = "vj_drapes_01.m2", + value = "vj_drapes_01.m2", + }, + { + fileId = "397157", + text = "vj_drapes_02.m2", + value = "vj_drapes_02.m2", + }, + { + fileId = "398043", + text = "vj_drapes_03.m2", + value = "vj_drapes_03.m2", + }, + { + fileId = "398045", + text = "vj_drapes_04.m2", + value = "vj_drapes_04.m2", + }, + }, + text = "drapes", + value = "drapes", }, { - fileId = "298606", - text = "ul_sigil_snowflake.m2", - value = "ul_sigil_snowflake.m2", + children = { + { + fileId = "428749", + text = "vj_blueglow_01.m2", + value = "vj_blueglow_01.m2", + }, + { + fileId = "428750", + text = "vj_blueglow_01_long.m2", + value = "vj_blueglow_01_long.m2", + }, + { + fileId = "428751", + text = "vj_blugrenbrtglow_01.m2", + value = "vj_blugrenbrtglow_01.m2", + }, + { + fileId = "428752", + text = "vj_blugrenbrtglow_01_long.m2", + value = "vj_blugrenbrtglow_01_long.m2", + }, + { + fileId = "428753", + text = "vj_blugrenglow_01.m2", + value = "vj_blugrenglow_01.m2", + }, + { + fileId = "428754", + text = "vj_blugrenglow_01_long.m2", + value = "vj_blugrenglow_01_long.m2", + }, + { + fileId = "428755", + text = "vj_dkblueglow_01.m2", + value = "vj_dkblueglow_01.m2", + }, + { + fileId = "428756", + text = "vj_dkblueglow_01_long.m2", + value = "vj_dkblueglow_01_long.m2", + }, + { + fileId = "428757", + text = "vj_dkblueredglow_01.m2", + value = "vj_dkblueredglow_01.m2", + }, + { + fileId = "428758", + text = "vj_dkblueredglow_01_long.m2", + value = "vj_dkblueredglow_01_long.m2", + }, + { + fileId = "428759", + text = "vj_purpleglow_01.m2", + value = "vj_purpleglow_01.m2", + }, + { + fileId = "428760", + text = "vj_purpleglow_01_long.m2", + value = "vj_purpleglow_01_long.m2", + }, + }, + text = "glows", + value = "glows", }, { - fileId = "298607", - text = "ul_sigil_star.m2", - value = "ul_sigil_star.m2", + children = { + { + fileId = "326926", + text = "vj_bullkelp01.m2", + value = "vj_bullkelp01.m2", + }, + { + fileId = "326927", + text = "vj_bullkelp02.m2", + value = "vj_bullkelp02.m2", + }, + { + fileId = "326936", + text = "vj_bullkelp03.m2", + value = "vj_bullkelp03.m2", + }, + { + fileId = "327257", + text = "vj_bullkelp04.m2", + value = "vj_bullkelp04.m2", + }, + { + fileId = "327525", + text = "vj_bullkelp05.m2", + value = "vj_bullkelp05.m2", + }, + { + fileId = "327526", + text = "vj_bullkelp06.m2", + value = "vj_bullkelp06.m2", + }, + { + fileId = "407150", + text = "vj_bullkelp07.m2", + value = "vj_bullkelp07.m2", + }, + { + fileId = "419202", + text = "vj_hangingkelpred01.m2", + value = "vj_hangingkelpred01.m2", + }, + { + fileId = "422619", + text = "vj_hangingkelpred02.m2", + value = "vj_hangingkelpred02.m2", + }, + { + fileId = "422620", + text = "vj_hangingkelpred03.m2", + value = "vj_hangingkelpred03.m2", + }, + { + fileId = "309383", + text = "vj_kelp01.m2", + value = "vj_kelp01.m2", + }, + { + fileId = "326563", + text = "vj_kelpblue01.m2", + value = "vj_kelpblue01.m2", + }, + { + fileId = "326565", + text = "vj_kelpgreen01.m2", + value = "vj_kelpgreen01.m2", + }, + { + fileId = "326567", + text = "vj_kelpred01.m2", + value = "vj_kelpred01.m2", + }, + { + fileId = "326568", + text = "vj_kelpstatic01.m2", + value = "vj_kelpstatic01.m2", + }, + { + fileId = "326570", + text = "vj_kelpyellow01.m2", + value = "vj_kelpyellow01.m2", + }, + { + fileId = "327919", + text = "vj_seaweed_01.m2", + value = "vj_seaweed_01.m2", + }, + { + fileId = "328308", + text = "vj_seaweed_02.m2", + value = "vj_seaweed_02.m2", + }, + }, + text = "kelp", + value = "kelp", }, { - fileId = "252720", - text = "ul_sigildoor_01.m2", - value = "ul_sigildoor_01.m2", + children = { + { + fileId = "338524", + text = "vj_giantpearl.m2", + value = "vj_giantpearl.m2", + }, + { + fileId = "378576", + text = "vj_giantpearl_cage.m2", + value = "vj_giantpearl_cage.m2", + }, + }, + text = "pearl", + value = "pearl", }, { - fileId = "294442", - text = "ul_sigildoor_02.m2", - value = "ul_sigildoor_02.m2", + children = { + { + fileId = "328202", + text = "vj_rockformation_01.m2", + value = "vj_rockformation_01.m2", + }, + { + fileId = "328312", + text = "vj_rockformation_02.m2", + value = "vj_rockformation_02.m2", + }, + { + fileId = "328313", + text = "vj_rockformation_03.m2", + value = "vj_rockformation_03.m2", + }, + { + fileId = "328309", + text = "vj_rockformationbit_01.m2", + value = "vj_rockformationbit_01.m2", + }, + { + fileId = "328310", + text = "vj_rockformationbit_02.m2", + value = "vj_rockformationbit_02.m2", + }, + { + fileId = "328311", + text = "vj_rockformationbit_03.m2", + value = "vj_rockformationbit_03.m2", + }, + { + fileId = "328203", + text = "vj_rockhole_01.m2", + value = "vj_rockhole_01.m2", + }, + { + fileId = "328204", + text = "vj_rockhole_02.m2", + value = "vj_rockhole_02.m2", + }, + { + fileId = "328205", + text = "vj_rocklarge_01.m2", + value = "vj_rocklarge_01.m2", + }, + { + fileId = "328206", + text = "vj_rocklarge_02.m2", + value = "vj_rocklarge_02.m2", + }, + { + fileId = "328207", + text = "vj_rocks_01.m2", + value = "vj_rocks_01.m2", + }, + { + fileId = "328208", + text = "vj_rocks_02.m2", + value = "vj_rocks_02.m2", + }, + { + fileId = "328209", + text = "vj_rocks_03.m2", + value = "vj_rocks_03.m2", + }, + { + fileId = "365752", + text = "vj_vortexrock_01.m2", + value = "vj_vortexrock_01.m2", + }, + }, + text = "rocks", + value = "rocks", }, { - fileId = "244009", - text = "ul_sky_ceiling.m2", - value = "ul_sky_ceiling.m2", + children = { + { + fileId = "367849", + text = "vj_whitesandpile01.m2", + value = "vj_whitesandpile01.m2", + }, + }, + text = "sand", + value = "sand", }, { - fileId = "196555", - text = "ul_skyroom_floor.m2", - value = "ul_skyroom_floor.m2", + children = { + { + fileId = "334484", + text = "vj_seamonster_bonesskull_01.m2", + value = "vj_seamonster_bonesskull_01.m2", + }, + { + fileId = "334485", + text = "vj_seamonster_bonesskull_02.m2", + value = "vj_seamonster_bonesskull_02.m2", + }, + { + fileId = "336002", + text = "vj_seamonster_bonesskull_03.m2", + value = "vj_seamonster_bonesskull_03.m2", + }, + { + fileId = "335958", + text = "vj_seamonster_bonesskull_04.m2", + value = "vj_seamonster_bonesskull_04.m2", + }, + }, + text = "seamonster", + value = "seamonster", }, { - fileId = "244011", - text = "ul_smallstatue_druid.m2", - value = "ul_smallstatue_druid.m2", + children = { + { + fileId = "331508", + text = "vj_giant_shells01.m2", + value = "vj_giant_shells01.m2", + }, + { + fileId = "331510", + text = "vj_giant_shells02.m2", + value = "vj_giant_shells02.m2", + }, + { + fileId = "332422", + text = "vj_giant_shells03.m2", + value = "vj_giant_shells03.m2", + }, + { + fileId = "332424", + text = "vj_giant_shells04.m2", + value = "vj_giant_shells04.m2", + }, + { + fileId = "332643", + text = "vj_giant_shells05.m2", + value = "vj_giant_shells05.m2", + }, + { + fileId = "332644", + text = "vj_giant_shells06.m2", + value = "vj_giant_shells06.m2", + }, + { + fileId = "333239", + text = "vj_giant_shells07.m2", + value = "vj_giant_shells07.m2", + }, + { + fileId = "344820", + text = "vj_giant_shells08.m2", + value = "vj_giant_shells08.m2", + }, + { + fileId = "348577", + text = "vj_giant_shells08_purple.m2", + value = "vj_giant_shells08_purple.m2", + }, + { + fileId = "365795", + text = "vj_giant_shells08_tilt.m2", + value = "vj_giant_shells08_tilt.m2", + }, + { + fileId = "346121", + text = "vj_giant_shells09.m2", + value = "vj_giant_shells09.m2", + }, + { + fileId = "348579", + text = "vj_giant_shells09_blue.m2", + value = "vj_giant_shells09_blue.m2", + }, + { + fileId = "348582", + text = "vj_giant_shells10.m2", + value = "vj_giant_shells10.m2", + }, + { + fileId = "348585", + text = "vj_giant_shells10_orange.m2", + value = "vj_giant_shells10_orange.m2", + }, + { + fileId = "348587", + text = "vj_giant_shells11.m2", + value = "vj_giant_shells11.m2", + }, + { + fileId = "348589", + text = "vj_giant_shells11_purple.m2", + value = "vj_giant_shells11_purple.m2", + }, + }, + text = "shells", + value = "shells", }, { - fileId = "244012", - text = "ul_smallstatue_hero_01.m2", - value = "ul_smallstatue_hero_01.m2", + children = { + { + fileId = "349291", + text = "shipwreck_pieces01.m2", + value = "shipwreck_pieces01.m2", + }, + { + fileId = "349292", + text = "shipwreck_pieces02.m2", + value = "shipwreck_pieces02.m2", + }, + { + fileId = "351056", + text = "shipwreck_ud_pieces01.m2", + value = "shipwreck_ud_pieces01.m2", + }, + { + fileId = "351094", + text = "shipwreck_ud_pieces02.m2", + value = "shipwreck_ud_pieces02.m2", + }, + }, + text = "shipwreck", + value = "shipwreck", }, { - fileId = "252168", - text = "ul_stainglass_broken01.m2", - value = "ul_stainglass_broken01.m2", + children = { + { + fileId = "349202", + text = "vashjir_sparkles01.m2", + value = "vashjir_sparkles01.m2", + }, + }, + text = "sparkles", + value = "sparkles", }, { - fileId = "252169", - text = "ul_stainglass_broken02.m2", - value = "ul_stainglass_broken02.m2", + children = { + { + fileId = "407609", + text = "vj_dome_tentacles_01.m2", + value = "vj_dome_tentacles_01.m2", + }, + }, + text = "tentacles", + value = "tentacles", }, { - fileId = "252170", - text = "ul_stainglass_broken03.m2", - value = "ul_stainglass_broken03.m2", + children = { + { + fileId = "344821", + text = "vj_deepseatubeworm01.m2", + value = "vj_deepseatubeworm01.m2", + }, + { + fileId = "344822", + text = "vj_deepseatubeworm02.m2", + value = "vj_deepseatubeworm02.m2", + }, + { + fileId = "345443", + text = "vj_deepseatubeworm03.m2", + value = "vj_deepseatubeworm03.m2", + }, + { + fileId = "445753", + text = "vj_glowingtubewormcluster01.m2", + value = "vj_glowingtubewormcluster01.m2", + }, + { + fileId = "445754", + text = "vj_glowingtubewormcluster02.m2", + value = "vj_glowingtubewormcluster02.m2", + }, + { + fileId = "445755", + text = "vj_glowingtubewormcluster03.m2", + value = "vj_glowingtubewormcluster03.m2", + }, + { + fileId = "445756", + text = "vj_glowingtubewormcluster04.m2", + value = "vj_glowingtubewormcluster04.m2", + }, + { + fileId = "445757", + text = "vj_glowingtubewormcluster05.m2", + value = "vj_glowingtubewormcluster05.m2", + }, + { + fileId = "445758", + text = "vj_glowingtubewormplume01.m2", + value = "vj_glowingtubewormplume01.m2", + }, + { + fileId = "445759", + text = "vj_glowingtubewormplume02.m2", + value = "vj_glowingtubewormplume02.m2", + }, + { + fileId = "445760", + text = "vj_glowingtubeworms01.m2", + value = "vj_glowingtubeworms01.m2", + }, + { + fileId = "445761", + text = "vj_glowingtubeworms02.m2", + value = "vj_glowingtubeworms02.m2", + }, + { + fileId = "445762", + text = "vj_glowingtubeworms03.m2", + value = "vj_glowingtubeworms03.m2", + }, + { + fileId = "445763", + text = "vj_glowingtubeworms04.m2", + value = "vj_glowingtubeworms04.m2", + }, + { + fileId = "346122", + text = "vj_livetubewormcluster01.m2", + value = "vj_livetubewormcluster01.m2", + }, + { + fileId = "343462", + text = "vj_tubeworm_01.m2", + value = "vj_tubeworm_01.m2", + }, + { + fileId = "343463", + text = "vj_tubeworm_02.m2", + value = "vj_tubeworm_02.m2", + }, + { + fileId = "343464", + text = "vj_tubeworm_03.m2", + value = "vj_tubeworm_03.m2", + }, + { + fileId = "343465", + text = "vj_tubeworm_04.m2", + value = "vj_tubeworm_04.m2", + }, + { + fileId = "344534", + text = "vj_tubewormcluster01.m2", + value = "vj_tubewormcluster01.m2", + }, + { + fileId = "345359", + text = "vj_tubewormcluster02.m2", + value = "vj_tubewormcluster02.m2", + }, + { + fileId = "345360", + text = "vj_tubewormcluster03.m2", + value = "vj_tubewormcluster03.m2", + }, + { + fileId = "346123", + text = "vj_tubewormcluster04.m2", + value = "vj_tubewormcluster04.m2", + }, + { + fileId = "345455", + text = "vj_tubewormplume01.m2", + value = "vj_tubewormplume01.m2", + }, + { + fileId = "345456", + text = "vj_tubewormplume02.m2", + value = "vj_tubewormplume02.m2", + }, + { + fileId = "345457", + text = "vj_tubewormplume03.m2", + value = "vj_tubewormplume03.m2", + }, + }, + text = "tubeworms", + value = "tubeworms", }, { - fileId = "249645", - text = "ul_stalagtit_01.m2", - value = "ul_stalagtit_01.m2", + children = { + { + fileId = "402208", + text = "vj_veins_medium.m2", + value = "vj_veins_medium.m2", + }, + { + fileId = "402209", + text = "vj_veins_thin.m2", + value = "vj_veins_thin.m2", + }, + { + fileId = "402264", + text = "vj_veins_wide.m2", + value = "vj_veins_wide.m2", + }, + }, + text = "veins", + value = "veins", }, { - fileId = "196556", - text = "ul_statue_01.m2", - value = "ul_statue_01.m2", + fileId = "387275", + text = "vj_floortile_01.m2", + value = "vj_floortile_01.m2", }, { - fileId = "244018", - text = "ul_statue_02.m2", - value = "ul_statue_02.m2", + fileId = "387276", + text = "vj_floortile_02.m2", + value = "vj_floortile_02.m2", }, { - fileId = "244019", - text = "ul_statue_03.m2", - value = "ul_statue_03.m2", + fileId = "387277", + text = "vj_floortile_03.m2", + value = "vj_floortile_03.m2", }, { - fileId = "244020", - text = "ul_statue_04.m2", - value = "ul_statue_04.m2", + fileId = "437846", + text = "vj_quest_mushroom.m2", + value = "vj_quest_mushroom.m2", }, { - fileId = "196560", - text = "ul_swirl_orb_cloud.m2", - value = "ul_swirl_orb_cloud.m2", + children = { + { + fileId = "342685", + text = "vj_volcanicvent02.m2", + value = "vj_volcanicvent02.m2", + }, + { + fileId = "342686", + text = "vj_volcanicvent02_off.m2", + value = "vj_volcanicvent02_off.m2", + }, + { + fileId = "342687", + text = "vj_volcanicvent03.m2", + value = "vj_volcanicvent03.m2", + }, + { + fileId = "342688", + text = "vj_volcanicvent03_off.m2", + value = "vj_volcanicvent03_off.m2", + }, + { + fileId = "344246", + text = "vj_volcanicvent04.m2", + value = "vj_volcanicvent04.m2", + }, + { + fileId = "344247", + text = "vj_volcanicvent04_off.m2", + value = "vj_volcanicvent04_off.m2", + }, + { + fileId = "344248", + text = "vj_volcanicvent05.m2", + value = "vj_volcanicvent05.m2", + }, + { + fileId = "344249", + text = "vj_volcanicvent05_off.m2", + value = "vj_volcanicvent05_off.m2", + }, + { + fileId = "349786", + text = "vj_volcanicvent_steam_01.m2", + value = "vj_volcanicvent_steam_01.m2", + }, + { + fileId = "349787", + text = "vj_volcanicvent_steam_02.m2", + value = "vj_volcanicvent_steam_02.m2", + }, + }, + text = "volcano", + value = "volcano", }, { - fileId = "255125", - text = "ul_targetcrystal_blue.m2", - value = "ul_targetcrystal_blue.m2", + children = { + { + fileId = "340898", + text = "vj_vortexwind_01.m2", + value = "vj_vortexwind_01.m2", + }, + { + fileId = "340899", + text = "vj_vortexwind_02.m2", + value = "vj_vortexwind_02.m2", + }, + { + fileId = "349791", + text = "vj_vortexwind_03.m2", + value = "vj_vortexwind_03.m2", + }, + { + fileId = "350310", + text = "vj_vortexwind_04.m2", + value = "vj_vortexwind_04.m2", + }, + { + fileId = "350311", + text = "vj_vortexwind_05.m2", + value = "vj_vortexwind_05.m2", + }, + }, + text = "vortex", + value = "vortex", }, { - fileId = "255208", - text = "ul_targetcrystal_green.m2", - value = "ul_targetcrystal_green.m2", + children = { + { + fileId = "399523", + text = "vj_domes_webs_01.m2", + value = "vj_domes_webs_01.m2", + }, + { + fileId = "399525", + text = "vj_domes_webs_02.m2", + value = "vj_domes_webs_02.m2", + }, + }, + text = "webs", + value = "webs", }, { - fileId = "255209", - text = "ul_targetcrystal_red.m2", - value = "ul_targetcrystal_red.m2", + children = { + { + fileId = "445764", + text = "vj_whirlpool01.m2", + value = "vj_whirlpool01.m2", + }, + }, + text = "whirlpools", + value = "whirlpools", }, + }, + text = "vashjir", + value = "vashjir", + }, + { + children = { { - fileId = "255210", - text = "ul_targetcrystal_yellow.m2", - value = "ul_targetcrystal_yellow.m2", + children = { + { + fileId = "394306", + text = "wildhammer_banner_01.m2", + value = "wildhammer_banner_01.m2", + }, + { + fileId = "394339", + text = "wildhammer_banner_02.m2", + value = "wildhammer_banner_02.m2", + }, + }, + text = "banner", + value = "banner", }, { - fileId = "252934", - text = "ul_teleportationpad.m2", - value = "ul_teleportationpad.m2", + children = { + { + fileId = "392127", + text = "wildhammer_fountain_01.m2", + value = "wildhammer_fountain_01.m2", + }, + }, + text = "fountain", + value = "fountain", }, { - fileId = "244022", - text = "ul_throne.m2", - value = "ul_throne.m2", + children = { + { + fileId = "366802", + text = "wildhammer_gryphon_chicks.m2", + value = "wildhammer_gryphon_chicks.m2", + }, + }, + text = "gryphonchicks", + value = "gryphonchicks", }, { - fileId = "244023", - text = "ul_throne_02.m2", - value = "ul_throne_02.m2", + children = { + { + fileId = "367936", + text = "wildhammer_gryphon_incubator.m2", + value = "wildhammer_gryphon_incubator.m2", + }, + }, + text = "gryphonincubator", + value = "gryphonincubator", }, { - fileId = "244024", - text = "ul_throne_room_floor.m2", - value = "ul_throne_room_floor.m2", + children = { + { + fileId = "366720", + text = "wildhammer_gryphon_shed.m2", + value = "wildhammer_gryphon_shed.m2", + }, + { + fileId = "388615", + text = "wildhammer_gryphon_shed_broken_01.m2", + value = "wildhammer_gryphon_shed_broken_01.m2", + }, + { + fileId = "388616", + text = "wildhammer_gryphon_shed_broken_02.m2", + value = "wildhammer_gryphon_shed_broken_02.m2", + }, + { + fileId = "366803", + text = "wildhammer_gryphon_shed_no_gryphon.m2", + value = "wildhammer_gryphon_shed_no_gryphon.m2", + }, + { + fileId = "389865", + text = "wildhammer_shed_01.m2", + value = "wildhammer_shed_01.m2", + }, + { + fileId = "390130", + text = "wildhammer_shed_01_broken.m2", + value = "wildhammer_shed_01_broken.m2", + }, + }, + text = "gryphonshed", + value = "gryphonshed", }, { - fileId = "244025", - text = "ul_thronebase.m2", - value = "ul_thronebase.m2", + children = { + { + fileId = "391856", + text = "wildhammer_ruinedpillar1.m2", + value = "wildhammer_ruinedpillar1.m2", + }, + { + fileId = "391857", + text = "wildhammer_ruinedpillar2.m2", + value = "wildhammer_ruinedpillar2.m2", + }, + { + fileId = "391858", + text = "wildhammer_ruinedpillar3.m2", + value = "wildhammer_ruinedpillar3.m2", + }, + }, + text = "pillars", + value = "pillars", }, { - fileId = "196561", - text = "ul_titanball_01.m2", - value = "ul_titanball_01.m2", + children = { + { + fileId = "370213", + text = "wildhammer_road_marker_01.m2", + value = "wildhammer_road_marker_01.m2", + }, + { + fileId = "369790", + text = "wildhammer_road_marker_post.m2", + value = "wildhammer_road_marker_post.m2", + }, + { + fileId = "381042", + text = "wildhammer_road_marker_post_destroyed.m2", + value = "wildhammer_road_marker_post_destroyed.m2", + }, + { + fileId = "381939", + text = "wildhammer_road_marker_post_destroyed_02.m2", + value = "wildhammer_road_marker_post_destroyed_02.m2", + }, + { + fileId = "381043", + text = "wildhammer_road_marker_post_off.m2", + value = "wildhammer_road_marker_post_off.m2", + }, + }, + text = "roadmarker", + value = "roadmarker", }, { - fileId = "196564", - text = "ul_titanenergy_02.m2", - value = "ul_titanenergy_02.m2", + children = { + { + fileId = "394812", + text = "wildhammer_rubble_01.m2", + value = "wildhammer_rubble_01.m2", + }, + { + fileId = "394889", + text = "wildhammer_rubble_02.m2", + value = "wildhammer_rubble_02.m2", + }, + }, + text = "rubble", + value = "rubble", }, { - fileId = "196569", - text = "ul_titansteam_01.m2", - value = "ul_titansteam_01.m2", + children = { + { + fileId = "402551", + text = "wildhammer_shelf_01.m2", + value = "wildhammer_shelf_01.m2", + }, + }, + text = "shelf", + value = "shelf", }, { - fileId = "252292", - text = "ul_titansteam_02.m2", - value = "ul_titansteam_02.m2", + children = { + { + fileId = "381942", + text = "wildhammer_stonethrower_01.m2", + value = "wildhammer_stonethrower_01.m2", + }, + }, + text = "stonethrower", + value = "stonethrower", }, { - fileId = "196570", - text = "ul_torch01.m2", - value = "ul_torch01.m2", + children = { + { + fileId = "386434", + text = "wildhammer_stonepole_01.m2", + value = "wildhammer_stonepole_01.m2", + }, + { + fileId = "383745", + text = "wildhammer_stonewall_01.m2", + value = "wildhammer_stonewall_01.m2", + }, + { + fileId = "392569", + text = "wildhammer_stonewall_01_broken.m2", + value = "wildhammer_stonewall_01_broken.m2", + }, + { + fileId = "383746", + text = "wildhammer_stonewall_02.m2", + value = "wildhammer_stonewall_02.m2", + }, + { + fileId = "383747", + text = "wildhammer_stonewall_03.m2", + value = "wildhammer_stonewall_03.m2", + }, + { + fileId = "383748", + text = "wildhammer_stonewall_04.m2", + value = "wildhammer_stonewall_04.m2", + }, + { + fileId = "383749", + text = "wildhammer_stonewall_05.m2", + value = "wildhammer_stonewall_05.m2", + }, + { + fileId = "384447", + text = "wildhammer_stonewall_06.m2", + value = "wildhammer_stonewall_06.m2", + }, + { + fileId = "392570", + text = "wildhammer_stonewall_06_broken.m2", + value = "wildhammer_stonewall_06_broken.m2", + }, + { + fileId = "384448", + text = "wildhammer_stonewall_07.m2", + value = "wildhammer_stonewall_07.m2", + }, + { + fileId = "392571", + text = "wildhammer_stonewall_07_broken.m2", + value = "wildhammer_stonewall_07_broken.m2", + }, + { + fileId = "384781", + text = "wildhammer_stonewall_08.m2", + value = "wildhammer_stonewall_08.m2", + }, + { + fileId = "386435", + text = "wildhammer_stonewall_09.m2", + value = "wildhammer_stonewall_09.m2", + }, + { + fileId = "386584", + text = "wildhammer_stonewall_10.m2", + value = "wildhammer_stonewall_10.m2", + }, + { + fileId = "387906", + text = "wildhammer_stonewall_11.m2", + value = "wildhammer_stonewall_11.m2", + }, + }, + text = "stonewall", + value = "stonewall", }, { - fileId = "252022", - text = "ul_torch02.m2", - value = "ul_torch02.m2", + children = { + { + fileId = "433609", + text = "wildhammer_stormhammer_01.m2", + value = "wildhammer_stormhammer_01.m2", + }, + { + fileId = "433611", + text = "wildhammer_stormhammer_02.m2", + value = "wildhammer_stormhammer_02.m2", + }, + { + fileId = "433613", + text = "wildhammer_stormhammer_03.m2", + value = "wildhammer_stormhammer_03.m2", + }, + }, + text = "stormhammer", + value = "stormhammer", }, { - fileId = "252171", - text = "ul_towerbluebeam.m2", - value = "ul_towerbluebeam.m2", + children = { + { + fileId = "429105", + text = "wildhammer_stove.m2", + value = "wildhammer_stove.m2", + }, + }, + text = "stove", + value = "stove", }, { - fileId = "255409", - text = "ul_train_floor_glass.m2", - value = "ul_train_floor_glass.m2", + children = { + { + fileId = "376863", + text = "wildhammer_wagon_01.m2", + value = "wildhammer_wagon_01.m2", + }, + }, + text = "wagon", + value = "wagon", }, { - fileId = "255425", - text = "ul_train_gearwindows.m2", - value = "ul_train_gearwindows.m2", + children = { + { + fileId = "391448", + text = "wildhammer_well_02.m2", + value = "wildhammer_well_02.m2", + }, + { + fileId = "446537", + text = "wildhammer_well_02_broken.m2", + value = "wildhammer_well_02_broken.m2", + }, + }, + text = "well", + value = "well", }, { - fileId = "293985", - text = "ul_train_rocketblast.m2", - value = "ul_train_rocketblast.m2", + fileId = "440537", + text = "wildhammer_chimneysmoke.m2", + value = "wildhammer_chimneysmoke.m2", }, { - fileId = "254644", - text = "ul_train_turnaround.m2", - value = "ul_train_turnaround.m2", + fileId = "392129", + text = "wildhammer_fog.m2", + value = "wildhammer_fog.m2", }, { - fileId = "254564", - text = "ul_tramglass_01.m2", - value = "ul_tramglass_01.m2", + fileId = "402552", + text = "wildhammer_support.m2", + value = "wildhammer_support.m2", }, + }, + text = "wildhammer", + value = "wildhammer", + }, + { + children = { { - fileId = "196574", - text = "ul_ulduar_doors01.m2", - value = "ul_ulduar_doors01.m2", + children = { + { + fileId = "304453", + text = "worgen_footbridgebridge_01.m2", + value = "worgen_footbridgebridge_01.m2", + }, + { + fileId = "304843", + text = "worgen_footbridgebridge_02.m2", + value = "worgen_footbridgebridge_02.m2", + }, + }, + text = "bridges", + value = "bridges", }, { - fileId = "196575", - text = "ul_ulduar_doors02.m2", - value = "ul_ulduar_doors02.m2", + children = { + { + fileId = "315086", + text = "gilneas_dwellingwater_01.m2", + value = "gilneas_dwellingwater_01.m2", + }, + { + fileId = "343466", + text = "gilneas_sparkles01.m2", + value = "gilneas_sparkles01.m2", + }, + { + fileId = "305479", + text = "worgen_puddlesplash_01.m2", + value = "worgen_puddlesplash_01.m2", + }, + { + fileId = "304846", + text = "worgen_raindrips_01.m2", + value = "worgen_raindrips_01.m2", + }, + }, + text = "effects", + value = "effects", }, { - fileId = "249654", - text = "ul_ulduar_doors03.m2", - value = "ul_ulduar_doors03.m2", + children = { + { + fileId = "305584", + text = "worgen_chickencoup_01.m2", + value = "worgen_chickencoup_01.m2", + }, + { + fileId = "305585", + text = "worgen_chickencoup_02.m2", + value = "worgen_chickencoup_02.m2", + }, + { + fileId = "305586", + text = "worgen_chickencoup_03.m2", + value = "worgen_chickencoup_03.m2", + }, + { + fileId = "305587", + text = "worgen_chickencoup_all.m2", + value = "worgen_chickencoup_all.m2", + }, + { + fileId = "305999", + text = "worgen_windmill_01.m2", + value = "worgen_windmill_01.m2", + }, + { + fileId = "306001", + text = "worgen_windmill_02.m2", + value = "worgen_windmill_02.m2", + }, + }, + text = "farm", + value = "farm", }, { - fileId = "249655", - text = "ul_ulduar_doors04.m2", - value = "ul_ulduar_doors04.m2", + children = { + { + fileId = "303666", + text = "worgen_fence_01.m2", + value = "worgen_fence_01.m2", + }, + { + fileId = "303667", + text = "worgen_fence_02.m2", + value = "worgen_fence_02.m2", + }, + { + fileId = "303668", + text = "worgen_fence_03.m2", + value = "worgen_fence_03.m2", + }, + { + fileId = "303669", + text = "worgen_fence_04.m2", + value = "worgen_fence_04.m2", + }, + { + fileId = "303698", + text = "worgen_fencearch_01.m2", + value = "worgen_fencearch_01.m2", + }, + { + fileId = "303699", + text = "worgen_fencearch_02.m2", + value = "worgen_fencearch_02.m2", + }, + { + fileId = "305200", + text = "worgen_fencearch_03.m2", + value = "worgen_fencearch_03.m2", + }, + { + fileId = "320484", + text = "worgen_fencepost_01.m2", + value = "worgen_fencepost_01.m2", + }, + { + fileId = "303890", + text = "worgen_gate_01.m2", + value = "worgen_gate_01.m2", + }, + { + fileId = "304607", + text = "worgen_tent_01.m2", + value = "worgen_tent_01.m2", + }, + { + fileId = "305226", + text = "worgen_tent_02.m2", + value = "worgen_tent_02.m2", + }, + { + fileId = "304023", + text = "worgen_townfence_01.m2", + value = "worgen_townfence_01.m2", + }, + { + fileId = "304024", + text = "worgen_townfence_02.m2", + value = "worgen_townfence_02.m2", + }, + { + fileId = "304025", + text = "worgen_townfence_03.m2", + value = "worgen_townfence_03.m2", + }, + { + fileId = "304026", + text = "worgen_towngate_01.m2", + value = "worgen_towngate_01.m2", + }, + { + fileId = "304027", + text = "worgen_townlamp_01.m2", + value = "worgen_townlamp_01.m2", + }, + { + fileId = "306237", + text = "worgen_townlamp_01_off.m2", + value = "worgen_townlamp_01_off.m2", + }, + { + fileId = "304366", + text = "worgen_townlamp_02.m2", + value = "worgen_townlamp_02.m2", + }, + { + fileId = "311248", + text = "worgen_townlamp_03.m2", + value = "worgen_townlamp_03.m2", + }, + { + fileId = "464513", + text = "worgen_townlamp_03_broke.m2", + value = "worgen_townlamp_03_broke.m2", + }, + { + fileId = "464791", + text = "worgen_townlamp_03_off.m2", + value = "worgen_townlamp_03_off.m2", + }, + }, + text = "fences", + value = "fences", }, { - fileId = "249656", - text = "ul_ulduar_doors05.m2", - value = "ul_ulduar_doors05.m2", + children = { + { + fileId = "323363", + text = "worgen_afgan_01.m2", + value = "worgen_afgan_01.m2", + }, + { + fileId = "323364", + text = "worgen_afgan_02.m2", + value = "worgen_afgan_02.m2", + }, + { + fileId = "305758", + text = "worgen_anvil_01.m2", + value = "worgen_anvil_01.m2", + }, + { + fileId = "320185", + text = "worgen_banner_01.m2", + value = "worgen_banner_01.m2", + }, + { + fileId = "339406", + text = "worgen_banner_02.m2", + value = "worgen_banner_02.m2", + }, + { + fileId = "304495", + text = "worgen_barrel_01.m2", + value = "worgen_barrel_01.m2", + }, + { + fileId = "464109", + text = "worgen_barrel_01_fire.m2", + value = "worgen_barrel_01_fire.m2", + }, + { + fileId = "324705", + text = "worgen_barrel_apple_01.m2", + value = "worgen_barrel_apple_01.m2", + }, + { + fileId = "305648", + text = "worgen_barrel_broken.m2", + value = "worgen_barrel_broken.m2", + }, + { + fileId = "323296", + text = "worgen_barrel_corn_01.m2", + value = "worgen_barrel_corn_01.m2", + }, + { + fileId = "306655", + text = "worgen_barricade_01.m2", + value = "worgen_barricade_01.m2", + }, + { + fileId = "308639", + text = "worgen_barricade_02.m2", + value = "worgen_barricade_02.m2", + }, + { + fileId = "308640", + text = "worgen_barricade_03.m2", + value = "worgen_barricade_03.m2", + }, + { + fileId = "308641", + text = "worgen_barricade_04.m2", + value = "worgen_barricade_04.m2", + }, + { + fileId = "308642", + text = "worgen_barricade_05.m2", + value = "worgen_barricade_05.m2", + }, + { + fileId = "322814", + text = "worgen_bed_kid_01.m2", + value = "worgen_bed_kid_01.m2", + }, + { + fileId = "322815", + text = "worgen_bed_kid_02.m2", + value = "worgen_bed_kid_02.m2", + }, + { + fileId = "322816", + text = "worgen_bed_large_01.m2", + value = "worgen_bed_large_01.m2", + }, + { + fileId = "322817", + text = "worgen_bed_large_02.m2", + value = "worgen_bed_large_02.m2", + }, + { + fileId = "322818", + text = "worgen_bed_mid_01.m2", + value = "worgen_bed_mid_01.m2", + }, + { + fileId = "322819", + text = "worgen_bed_mid_02.m2", + value = "worgen_bed_mid_02.m2", + }, + { + fileId = "322812", + text = "worgen_bedbunk_01.m2", + value = "worgen_bedbunk_01.m2", + }, + { + fileId = "322813", + text = "worgen_bedbunk_02.m2", + value = "worgen_bedbunk_02.m2", + }, + { + fileId = "322867", + text = "worgen_bedladder.m2", + value = "worgen_bedladder.m2", + }, + { + fileId = "305588", + text = "worgen_bench_01.m2", + value = "worgen_bench_01.m2", + }, + { + fileId = "322324", + text = "worgen_bench_02.m2", + value = "worgen_bench_02.m2", + }, + { + fileId = "304698", + text = "worgen_bottle_01.m2", + value = "worgen_bottle_01.m2", + }, + { + fileId = "304700", + text = "worgen_bottle_02.m2", + value = "worgen_bottle_02.m2", + }, + { + fileId = "304769", + text = "worgen_bottle_03.m2", + value = "worgen_bottle_03.m2", + }, + { + fileId = "304791", + text = "worgen_bottle_04.m2", + value = "worgen_bottle_04.m2", + }, + { + fileId = "304792", + text = "worgen_bottle_05.m2", + value = "worgen_bottle_05.m2", + }, + { + fileId = "304793", + text = "worgen_bottle_06.m2", + value = "worgen_bottle_06.m2", + }, + { + fileId = "304794", + text = "worgen_bottle_07.m2", + value = "worgen_bottle_07.m2", + }, + { + fileId = "304796", + text = "worgen_bottle_08.m2", + value = "worgen_bottle_08.m2", + }, + { + fileId = "304797", + text = "worgen_bottle_09.m2", + value = "worgen_bottle_09.m2", + }, + { + fileId = "304798", + text = "worgen_bottle_10.m2", + value = "worgen_bottle_10.m2", + }, + { + fileId = "304248", + text = "worgen_brazier_01.m2", + value = "worgen_brazier_01.m2", + }, + { + fileId = "305283", + text = "worgen_brick.m2", + value = "worgen_brick.m2", + }, + { + fileId = "308736", + text = "worgen_brick02.m2", + value = "worgen_brick02.m2", + }, + { + fileId = "303704", + text = "worgen_cage_01.m2", + value = "worgen_cage_01.m2", + }, + { + fileId = "306265", + text = "worgen_cage_01_active.m2", + value = "worgen_cage_01_active.m2", + }, + { + fileId = "316692", + text = "worgen_cage_02_active.m2", + value = "worgen_cage_02_active.m2", + }, + { + fileId = "395000", + text = "worgen_cage_tall.m2", + value = "worgen_cage_tall.m2", + }, + { + fileId = "305589", + text = "worgen_candle.m2", + value = "worgen_candle.m2", + }, + { + fileId = "304249", + text = "worgen_cauldron_01.m2", + value = "worgen_cauldron_01.m2", + }, + { + fileId = "461266", + text = "worgen_cauldron_01_nocollision.m2", + value = "worgen_cauldron_01_nocollision.m2", + }, + { + fileId = "311152", + text = "worgen_cellar_door_01.m2", + value = "worgen_cellar_door_01.m2", + }, + { + fileId = "305426", + text = "worgen_chair_01.m2", + value = "worgen_chair_01.m2", + }, + { + fileId = "305590", + text = "worgen_charm.m2", + value = "worgen_charm.m2", + }, + { + fileId = "305748", + text = "worgen_clothes_01.m2", + value = "worgen_clothes_01.m2", + }, + { + fileId = "305750", + text = "worgen_clothes_02.m2", + value = "worgen_clothes_02.m2", + }, + { + fileId = "305752", + text = "worgen_clothes_03.m2", + value = "worgen_clothes_03.m2", + }, + { + fileId = "305754", + text = "worgen_clothes_04.m2", + value = "worgen_clothes_04.m2", + }, + { + fileId = "305756", + text = "worgen_clothes_05.m2", + value = "worgen_clothes_05.m2", + }, + { + fileId = "322514", + text = "worgen_clothes_06.m2", + value = "worgen_clothes_06.m2", + }, + { + fileId = "322515", + text = "worgen_clothes_07.m2", + value = "worgen_clothes_07.m2", + }, + { + fileId = "304626", + text = "worgen_crate01.m2", + value = "worgen_crate01.m2", + }, + { + fileId = "310429", + text = "worgen_crate_broken_01.m2", + value = "worgen_crate_broken_01.m2", + }, + { + fileId = "310430", + text = "worgen_crate_broken_02.m2", + value = "worgen_crate_broken_02.m2", + }, + { + fileId = "310431", + text = "worgen_crate_broken_03.m2", + value = "worgen_crate_broken_03.m2", + }, + { + fileId = "316311", + text = "worgen_crypt_01.m2", + value = "worgen_crypt_01.m2", + }, + { + fileId = "316313", + text = "worgen_crypt_02.m2", + value = "worgen_crypt_02.m2", + }, + { + fileId = "316314", + text = "worgen_crypt_03.m2", + value = "worgen_crypt_03.m2", + }, + { + fileId = "465083", + text = "worgen_debris_01_fire.m2", + value = "worgen_debris_01_fire.m2", + }, + { + fileId = "465084", + text = "worgen_debris_02_fire.m2", + value = "worgen_debris_02_fire.m2", + }, + { + fileId = "310681", + text = "worgen_door_01.m2", + value = "worgen_door_01.m2", + }, + { + fileId = "311370", + text = "worgen_door_02.m2", + value = "worgen_door_02.m2", + }, + { + fileId = "305357", + text = "worgen_farmmoth_01.m2", + value = "worgen_farmmoth_01.m2", + }, + { + fileId = "317140", + text = "worgen_farmmoth_02.m2", + value = "worgen_farmmoth_02.m2", + }, + { + fileId = "306201", + text = "worgen_fish_barrel.m2", + value = "worgen_fish_barrel.m2", + }, + { + fileId = "306198", + text = "worgen_fishing_rack_01.m2", + value = "worgen_fishing_rack_01.m2", + }, + { + fileId = "305285", + text = "worgen_flag.m2", + value = "worgen_flag.m2", + }, + { + fileId = "305286", + text = "worgen_flag_02.m2", + value = "worgen_flag_02.m2", + }, + { + fileId = "310116", + text = "worgen_flagpole_01.m2", + value = "worgen_flagpole_01.m2", + }, + { + fileId = "310482", + text = "worgen_floatingbarrel_01.m2", + value = "worgen_floatingbarrel_01.m2", + }, + { + fileId = "310483", + text = "worgen_floatingcrate_01.m2", + value = "worgen_floatingcrate_01.m2", + }, + { + fileId = "310484", + text = "worgen_floatingplank_01.m2", + value = "worgen_floatingplank_01.m2", + }, + { + fileId = "310485", + text = "worgen_floatingplank_02.m2", + value = "worgen_floatingplank_02.m2", + }, + { + fileId = "310486", + text = "worgen_floatingscarecrow_01.m2", + value = "worgen_floatingscarecrow_01.m2", + }, + { + fileId = "310487", + text = "worgen_floatingshed_01.m2", + value = "worgen_floatingshed_01.m2", + }, + { + fileId = "310488", + text = "worgen_floatingwheelbarrow_01.m2", + value = "worgen_floatingwheelbarrow_01.m2", + }, + { + fileId = "305201", + text = "worgen_flowersdry_01.m2", + value = "worgen_flowersdry_01.m2", + }, + { + fileId = "312267", + text = "worgen_forge_01.m2", + value = "worgen_forge_01.m2", + }, + { + fileId = "303893", + text = "worgen_gallows.m2", + value = "worgen_gallows.m2", + }, + { + fileId = "304139", + text = "worgen_gallows2.m2", + value = "worgen_gallows2.m2", + }, + { + fileId = "303673", + text = "worgen_gibbet.m2", + value = "worgen_gibbet.m2", + }, + { + fileId = "305202", + text = "worgen_gibbet_02.m2", + value = "worgen_gibbet_02.m2", + }, + { + fileId = "304251", + text = "worgen_gravestone01.m2", + value = "worgen_gravestone01.m2", + }, + { + fileId = "304252", + text = "worgen_gravestone02.m2", + value = "worgen_gravestone02.m2", + }, + { + fileId = "304254", + text = "worgen_gravestone03.m2", + value = "worgen_gravestone03.m2", + }, + { + fileId = "304257", + text = "worgen_gravestone04.m2", + value = "worgen_gravestone04.m2", + }, + { + fileId = "304462", + text = "worgen_gravestone05.m2", + value = "worgen_gravestone05.m2", + }, + { + fileId = "304412", + text = "worgen_gravestone06.m2", + value = "worgen_gravestone06.m2", + }, + { + fileId = "304637", + text = "worgen_guillotine.m2", + value = "worgen_guillotine.m2", + }, + { + fileId = "322634", + text = "worgen_inntable.m2", + value = "worgen_inntable.m2", + }, + { + fileId = "304929", + text = "worgen_ironmaiden_01.m2", + value = "worgen_ironmaiden_01.m2", + }, + { + fileId = "304930", + text = "worgen_ironmaiden_02.m2", + value = "worgen_ironmaiden_02.m2", + }, + { + fileId = "304638", + text = "worgen_keg_01.m2", + value = "worgen_keg_01.m2", + }, + { + fileId = "303705", + text = "worgen_lamp_02.m2", + value = "worgen_lamp_02.m2", + }, + { + fileId = "311598", + text = "worgen_lamp_03.m2", + value = "worgen_lamp_03.m2", + }, + { + fileId = "311599", + text = "worgen_lamp_04.m2", + value = "worgen_lamp_04.m2", + }, + { + fileId = "311600", + text = "worgen_lamp_05.m2", + value = "worgen_lamp_05.m2", + }, + { + fileId = "311627", + text = "worgen_lamp_06.m2", + value = "worgen_lamp_06.m2", + }, + { + fileId = "315392", + text = "worgen_luggage_01.m2", + value = "worgen_luggage_01.m2", + }, + { + fileId = "315393", + text = "worgen_luggage_02.m2", + value = "worgen_luggage_02.m2", + }, + { + fileId = "315394", + text = "worgen_luggage_03.m2", + value = "worgen_luggage_03.m2", + }, + { + fileId = "315395", + text = "worgen_luggage_04.m2", + value = "worgen_luggage_04.m2", + }, + { + fileId = "315396", + text = "worgen_luggage_05.m2", + value = "worgen_luggage_05.m2", + }, + { + fileId = "315397", + text = "worgen_luggage_06.m2", + value = "worgen_luggage_06.m2", + }, + { + fileId = "305385", + text = "worgen_mailbox.m2", + value = "worgen_mailbox.m2", + }, + { + fileId = "305387", + text = "worgen_nail.m2", + value = "worgen_nail.m2", + }, + { + fileId = "305388", + text = "worgen_nail_02.m2", + value = "worgen_nail_02.m2", + }, + { + fileId = "306272", + text = "worgen_oldrubble_01.m2", + value = "worgen_oldrubble_01.m2", + }, + { + fileId = "306273", + text = "worgen_oldrubble_02.m2", + value = "worgen_oldrubble_02.m2", + }, + { + fileId = "306274", + text = "worgen_oldrubble_03.m2", + value = "worgen_oldrubble_03.m2", + }, + { + fileId = "306275", + text = "worgen_oldrubble_04.m2", + value = "worgen_oldrubble_04.m2", + }, + { + fileId = "306276", + text = "worgen_oldrubble_05.m2", + value = "worgen_oldrubble_05.m2", + }, + { + fileId = "306277", + text = "worgen_oldrubble_06.m2", + value = "worgen_oldrubble_06.m2", + }, + { + fileId = "306278", + text = "worgen_oldrubble_07.m2", + value = "worgen_oldrubble_07.m2", + }, + { + fileId = "306279", + text = "worgen_oldrubble_08.m2", + value = "worgen_oldrubble_08.m2", + }, + { + fileId = "306280", + text = "worgen_oldrubble_09.m2", + value = "worgen_oldrubble_09.m2", + }, + { + fileId = "306267", + text = "worgen_oldrubblerocks_01.m2", + value = "worgen_oldrubblerocks_01.m2", + }, + { + fileId = "306268", + text = "worgen_oldrubblerocks_02.m2", + value = "worgen_oldrubblerocks_02.m2", + }, + { + fileId = "306269", + text = "worgen_oldrubblerocks_03.m2", + value = "worgen_oldrubblerocks_03.m2", + }, + { + fileId = "306270", + text = "worgen_oldrubblerocks_04.m2", + value = "worgen_oldrubblerocks_04.m2", + }, + { + fileId = "306271", + text = "worgen_oldrubblerocks_05.m2", + value = "worgen_oldrubblerocks_05.m2", + }, + { + fileId = "321660", + text = "worgen_outhouse.m2", + value = "worgen_outhouse.m2", + }, + { + fileId = "305722", + text = "worgen_paddle.m2", + value = "worgen_paddle.m2", + }, + { + fileId = "305390", + text = "worgen_paper_01.m2", + value = "worgen_paper_01.m2", + }, + { + fileId = "305391", + text = "worgen_paper_02.m2", + value = "worgen_paper_02.m2", + }, + { + fileId = "305392", + text = "worgen_paper_03.m2", + value = "worgen_paper_03.m2", + }, + { + fileId = "305393", + text = "worgen_paper_04.m2", + value = "worgen_paper_04.m2", + }, + { + fileId = "305394", + text = "worgen_paper_05.m2", + value = "worgen_paper_05.m2", + }, + { + fileId = "305395", + text = "worgen_paper_06.m2", + value = "worgen_paper_06.m2", + }, + { + fileId = "305396", + text = "worgen_paper_07.m2", + value = "worgen_paper_07.m2", + }, + { + fileId = "305397", + text = "worgen_paper_08.m2", + value = "worgen_paper_08.m2", + }, + { + fileId = "305398", + text = "worgen_paper_09.m2", + value = "worgen_paper_09.m2", + }, + { + fileId = "305399", + text = "worgen_paper_10.m2", + value = "worgen_paper_10.m2", + }, + { + fileId = "305400", + text = "worgen_paper_11.m2", + value = "worgen_paper_11.m2", + }, + { + fileId = "305401", + text = "worgen_paper_12.m2", + value = "worgen_paper_12.m2", + }, + { + fileId = "312263", + text = "worgen_paper_animated_01.m2", + value = "worgen_paper_animated_01.m2", + }, + { + fileId = "312264", + text = "worgen_paper_animated_02.m2", + value = "worgen_paper_animated_02.m2", + }, + { + fileId = "312265", + text = "worgen_paper_animated_03.m2", + value = "worgen_paper_animated_03.m2", + }, + { + fileId = "305427", + text = "worgen_paper_pile.m2", + value = "worgen_paper_pile.m2", + }, + { + fileId = "314062", + text = "worgen_paper_pile_02.m2", + value = "worgen_paper_pile_02.m2", + }, + { + fileId = "306360", + text = "worgen_paper_quest.m2", + value = "worgen_paper_quest.m2", + }, + { + fileId = "322820", + text = "worgen_pillow_01.m2", + value = "worgen_pillow_01.m2", + }, + { + fileId = "322821", + text = "worgen_pillow_02.m2", + value = "worgen_pillow_02.m2", + }, + { + fileId = "322868", + text = "worgen_pillow_03.m2", + value = "worgen_pillow_03.m2", + }, + { + fileId = "322869", + text = "worgen_pillow_04.m2", + value = "worgen_pillow_04.m2", + }, + { + fileId = "304141", + text = "worgen_pitchfork_01.m2", + value = "worgen_pitchfork_01.m2", + }, + { + fileId = "322354", + text = "worgen_plank_01.m2", + value = "worgen_plank_01.m2", + }, + { + fileId = "464132", + text = "worgen_plank_01_fire.m2", + value = "worgen_plank_01_fire.m2", + }, + { + fileId = "304609", + text = "worgen_poodad_horse.m2", + value = "worgen_poodad_horse.m2", + }, + { + fileId = "304143", + text = "worgen_rakecart.m2", + value = "worgen_rakecart.m2", + }, + { + fileId = "322635", + text = "worgen_rockingchair.m2", + value = "worgen_rockingchair.m2", + }, + { + fileId = "305591", + text = "worgen_roofcap.m2", + value = "worgen_roofcap.m2", + }, + { + fileId = "305603", + text = "worgen_rowboat01.m2", + value = "worgen_rowboat01.m2", + }, + { + fileId = "305762", + text = "worgen_rowboat02.m2", + value = "worgen_rowboat02.m2", + }, + { + fileId = "305764", + text = "worgen_rowboat03.m2", + value = "worgen_rowboat03.m2", + }, + { + fileId = "305984", + text = "worgen_rowboat_broken01.m2", + value = "worgen_rowboat_broken01.m2", + }, + { + fileId = "305986", + text = "worgen_rowboat_broken02.m2", + value = "worgen_rowboat_broken02.m2", + }, + { + fileId = "305988", + text = "worgen_rowboat_broken03.m2", + value = "worgen_rowboat_broken03.m2", + }, + { + fileId = "306120", + text = "worgen_saddle_01.m2", + value = "worgen_saddle_01.m2", + }, + { + fileId = "303834", + text = "worgen_scarecrow.m2", + value = "worgen_scarecrow.m2", + }, + { + fileId = "304944", + text = "worgen_sheers_01.m2", + value = "worgen_sheers_01.m2", + }, + { + fileId = "322355", + text = "worgen_shelf_01.m2", + value = "worgen_shelf_01.m2", + }, + { + fileId = "322356", + text = "worgen_shelf_02.m2", + value = "worgen_shelf_02.m2", + }, + { + fileId = "305592", + text = "worgen_shingle_01.m2", + value = "worgen_shingle_01.m2", + }, + { + fileId = "305593", + text = "worgen_shingle_02.m2", + value = "worgen_shingle_02.m2", + }, + { + fileId = "306362", + text = "worgen_sign01.m2", + value = "worgen_sign01.m2", + }, + { + fileId = "306481", + text = "worgen_sign01_broken.m2", + value = "worgen_sign01_broken.m2", + }, + { + fileId = "306363", + text = "worgen_sign_post.m2", + value = "worgen_sign_post.m2", + }, + { + fileId = "306482", + text = "worgen_sign_post_broken.m2", + value = "worgen_sign_post_broken.m2", + }, + { + fileId = "306483", + text = "worgen_sign_post_broken_02.m2", + value = "worgen_sign_post_broken_02.m2", + }, + { + fileId = "316200", + text = "worgen_stagecoach_01.m2", + value = "worgen_stagecoach_01.m2", + }, + { + fileId = "315430", + text = "worgen_stagecoach_wrecked_01.m2", + value = "worgen_stagecoach_wrecked_01.m2", + }, + { + fileId = "304631", + text = "worgen_stocks_01.m2", + value = "worgen_stocks_01.m2", + }, + { + fileId = "304632", + text = "worgen_stocks_02.m2", + value = "worgen_stocks_02.m2", + }, + { + fileId = "303707", + text = "worgen_stonecage_01.m2", + value = "worgen_stonecage_01.m2", + }, + { + fileId = "305428", + text = "worgen_table_01.m2", + value = "worgen_table_01.m2", + }, + { + fileId = "322293", + text = "worgen_table_02.m2", + value = "worgen_table_02.m2", + }, + { + fileId = "316305", + text = "worgen_tablelamp_01.m2", + value = "worgen_tablelamp_01.m2", + }, + { + fileId = "306217", + text = "worgen_tacklebox_01.m2", + value = "worgen_tacklebox_01.m2", + }, + { + fileId = "314545", + text = "worgen_tapestry_01.m2", + value = "worgen_tapestry_01.m2", + }, + { + fileId = "314546", + text = "worgen_tapestry_02.m2", + value = "worgen_tapestry_02.m2", + }, + { + fileId = "304772", + text = "worgen_telescope.m2", + value = "worgen_telescope.m2", + }, + { + fileId = "306905", + text = "worgen_test.m2", + value = "worgen_test.m2", + }, + { + fileId = "408965", + text = "worgen_traintrack_angle_01.m2", + value = "worgen_traintrack_angle_01.m2", + }, + { + fileId = "310683", + text = "worgen_traintrack_curve_01.m2", + value = "worgen_traintrack_curve_01.m2", + }, + { + fileId = "310684", + text = "worgen_traintrack_straight_01.m2", + value = "worgen_traintrack_straight_01.m2", + }, + { + fileId = "310685", + text = "worgen_traintrack_straight_02.m2", + value = "worgen_traintrack_straight_02.m2", + }, + { + fileId = "305355", + text = "worgen_trellis_01.m2", + value = "worgen_trellis_01.m2", + }, + { + fileId = "305595", + text = "worgen_trellis_02.m2", + value = "worgen_trellis_02.m2", + }, + { + fileId = "305596", + text = "worgen_trellis_03.m2", + value = "worgen_trellis_03.m2", + }, + { + fileId = "304185", + text = "worgen_trough.m2", + value = "worgen_trough.m2", + }, + { + fileId = "304144", + text = "worgen_wagon_01.m2", + value = "worgen_wagon_01.m2", + }, + { + fileId = "304145", + text = "worgen_wagon_02.m2", + value = "worgen_wagon_02.m2", + }, + { + fileId = "304146", + text = "worgen_wagon_03.m2", + value = "worgen_wagon_03.m2", + }, + { + fileId = "304147", + text = "worgen_wagon_04.m2", + value = "worgen_wagon_04.m2", + }, + { + fileId = "304416", + text = "worgen_wagon_05.m2", + value = "worgen_wagon_05.m2", + }, + { + fileId = "305263", + text = "worgen_warning_sign01.m2", + value = "worgen_warning_sign01.m2", + }, + { + fileId = "305264", + text = "worgen_warning_sign02.m2", + value = "worgen_warning_sign02.m2", + }, + { + fileId = "304512", + text = "worgen_waterwheel.m2", + value = "worgen_waterwheel.m2", + }, + { + fileId = "305597", + text = "worgen_wheel.m2", + value = "worgen_wheel.m2", + }, + { + fileId = "304149", + text = "worgen_wheelbarrow01.m2", + value = "worgen_wheelbarrow01.m2", + }, + { + fileId = "305605", + text = "worgen_woodcross_01.m2", + value = "worgen_woodcross_01.m2", + }, + }, + text = "items", + value = "items", }, { - fileId = "244028", - text = "ul_ulduar_trapdoor_01.m2", - value = "ul_ulduar_trapdoor_01.m2", + children = { + { + fileId = "308524", + text = "worgen_marketshade_01.m2", + value = "worgen_marketshade_01.m2", + }, + { + fileId = "317142", + text = "worgen_marketshade_01_broken.m2", + value = "worgen_marketshade_01_broken.m2", + }, + { + fileId = "308525", + text = "worgen_marketshade_02.m2", + value = "worgen_marketshade_02.m2", + }, + { + fileId = "317144", + text = "worgen_marketshade_02_broken.m2", + value = "worgen_marketshade_02_broken.m2", + }, + { + fileId = "310490", + text = "worgen_marketshade_03.m2", + value = "worgen_marketshade_03.m2", + }, + { + fileId = "317145", + text = "worgen_marketshade_03_broken.m2", + value = "worgen_marketshade_03_broken.m2", + }, + { + fileId = "310492", + text = "worgen_marketshade_04.m2", + value = "worgen_marketshade_04.m2", + }, + { + fileId = "308526", + text = "worgen_marketstall_01.m2", + value = "worgen_marketstall_01.m2", + }, + { + fileId = "308527", + text = "worgen_marketstall_02.m2", + value = "worgen_marketstall_02.m2", + }, + { + fileId = "310493", + text = "worgen_marketstall_03.m2", + value = "worgen_marketstall_03.m2", + }, + { + fileId = "310494", + text = "worgen_marketstall_04.m2", + value = "worgen_marketstall_04.m2", + }, + { + fileId = "311706", + text = "worgen_marketstall_broken_01.m2", + value = "worgen_marketstall_broken_01.m2", + }, + { + fileId = "311981", + text = "worgen_marketstall_broken_02.m2", + value = "worgen_marketstall_broken_02.m2", + }, + { + fileId = "311982", + text = "worgen_marketstall_broken_03.m2", + value = "worgen_marketstall_broken_03.m2", + }, + { + fileId = "311983", + text = "worgen_marketstall_broken_04.m2", + value = "worgen_marketstall_broken_04.m2", + }, + { + fileId = "317146", + text = "worgen_marketstall_broken_05.m2", + value = "worgen_marketstall_broken_05.m2", + }, + { + fileId = "317147", + text = "worgen_marketstall_broken_06.m2", + value = "worgen_marketstall_broken_06.m2", + }, + }, + text = "market", + value = "market", }, { - fileId = "244029", - text = "ul_ulduar_trapdoor_02.m2", - value = "ul_ulduar_trapdoor_02.m2", + children = { + { + fileId = "304774", + text = "worgen_painting_01.m2", + value = "worgen_painting_01.m2", + }, + { + fileId = "304776", + text = "worgen_painting_02.m2", + value = "worgen_painting_02.m2", + }, + { + fileId = "304778", + text = "worgen_painting_03.m2", + value = "worgen_painting_03.m2", + }, + { + fileId = "304788", + text = "worgen_painting_04.m2", + value = "worgen_painting_04.m2", + }, + { + fileId = "304780", + text = "worgen_painting_05.m2", + value = "worgen_painting_05.m2", + }, + { + fileId = "321845", + text = "worgen_painting_06.m2", + value = "worgen_painting_06.m2", + }, + { + fileId = "321847", + text = "worgen_painting_07.m2", + value = "worgen_painting_07.m2", + }, + { + fileId = "321849", + text = "worgen_painting_08.m2", + value = "worgen_painting_08.m2", + }, + { + fileId = "321851", + text = "worgen_painting_09.m2", + value = "worgen_painting_09.m2", + }, + { + fileId = "321853", + text = "worgen_painting_10.m2", + value = "worgen_painting_10.m2", + }, + { + fileId = "323366", + text = "worgen_painting_11.m2", + value = "worgen_painting_11.m2", + }, + { + fileId = "323368", + text = "worgen_painting_12.m2", + value = "worgen_painting_12.m2", + }, + }, + text = "paintings", + value = "paintings", }, { - fileId = "244030", - text = "ul_universefloor_01.m2", - value = "ul_universefloor_01.m2", + children = { + { + fileId = "306213", + text = "worgen_guardcheck_01.m2", + value = "worgen_guardcheck_01.m2", + }, + { + fileId = "306203", + text = "worgen_guardhouse_01.m2", + value = "worgen_guardhouse_01.m2", + }, + { + fileId = "306223", + text = "worgen_guardhouse_02.m2", + value = "worgen_guardhouse_02.m2", + }, + { + fileId = "304330", + text = "worgen_shed_01.m2", + value = "worgen_shed_01.m2", + }, + { + fileId = "304345", + text = "worgen_stable_01.m2", + value = "worgen_stable_01.m2", + }, + { + fileId = "304422", + text = "worgen_stable_02.m2", + value = "worgen_stable_02.m2", + }, + }, + text = "sheds", + value = "sheds", }, { - fileId = "251842", - text = "ul_universefloor_02.m2", - value = "ul_universefloor_02.m2", + children = { + { + fileId = "310495", + text = "worgen_citygate01.m2", + value = "worgen_citygate01.m2", + }, + { + fileId = "310686", + text = "worgen_citygate01_ruined.m2", + value = "worgen_citygate01_ruined.m2", + }, + { + fileId = "310496", + text = "worgen_citygate02.m2", + value = "worgen_citygate02.m2", + }, + { + fileId = "321707", + text = "worgen_citygate_cap.m2", + value = "worgen_citygate_cap.m2", + }, + { + fileId = "324707", + text = "worgen_citygate_cap_02.m2", + value = "worgen_citygate_cap_02.m2", + }, + { + fileId = "310784", + text = "worgen_citywall_01.m2", + value = "worgen_citywall_01.m2", + }, + { + fileId = "311249", + text = "worgen_citywall_01_broken.m2", + value = "worgen_citywall_01_broken.m2", + }, + { + fileId = "310785", + text = "worgen_citywall_02.m2", + value = "worgen_citywall_02.m2", + }, + { + fileId = "310786", + text = "worgen_citywall_02_broken.m2", + value = "worgen_citywall_02_broken.m2", + }, + { + fileId = "310876", + text = "worgen_citywall_brick_01.m2", + value = "worgen_citywall_brick_01.m2", + }, + { + fileId = "310787", + text = "worgen_citywall_cap_01.m2", + value = "worgen_citywall_cap_01.m2", + }, + { + fileId = "310950", + text = "worgen_citywall_cap_02.m2", + value = "worgen_citywall_cap_02.m2", + }, + { + fileId = "310788", + text = "worgen_citywall_corner_01.m2", + value = "worgen_citywall_corner_01.m2", + }, + { + fileId = "310687", + text = "worgen_gatewall01.m2", + value = "worgen_gatewall01.m2", + }, + { + fileId = "311466", + text = "worgen_spike_01.m2", + value = "worgen_spike_01.m2", + }, + { + fileId = "311467", + text = "worgen_spike_02.m2", + value = "worgen_spike_02.m2", + }, + { + fileId = "311468", + text = "worgen_spike_03.m2", + value = "worgen_spike_03.m2", + }, + { + fileId = "303681", + text = "worgen_stonecorner_01.m2", + value = "worgen_stonecorner_01.m2", + }, + { + fileId = "303682", + text = "worgen_stonecorner_02.m2", + value = "worgen_stonecorner_02.m2", + }, + { + fileId = "303683", + text = "worgen_stonegate_01.m2", + value = "worgen_stonegate_01.m2", + }, + { + fileId = "303684", + text = "worgen_stonelamp_01.m2", + value = "worgen_stonelamp_01.m2", + }, + { + fileId = "303880", + text = "worgen_stonemiddle_01.m2", + value = "worgen_stonemiddle_01.m2", + }, + { + fileId = "303685", + text = "worgen_stonewall_01.m2", + value = "worgen_stonewall_01.m2", + }, + { + fileId = "304151", + text = "worgen_stonewall_01_broken.m2", + value = "worgen_stonewall_01_broken.m2", + }, + { + fileId = "303686", + text = "worgen_stonewall_02.m2", + value = "worgen_stonewall_02.m2", + }, + { + fileId = "304152", + text = "worgen_stonewall_02_broken.m2", + value = "worgen_stonewall_02_broken.m2", + }, + { + fileId = "303687", + text = "worgen_stonewall_03.m2", + value = "worgen_stonewall_03.m2", + }, + { + fileId = "303688", + text = "worgen_stonewall_04.m2", + value = "worgen_stonewall_04.m2", + }, + { + fileId = "310426", + text = "worgen_stonewall_06.m2", + value = "worgen_stonewall_06.m2", + }, + }, + text = "walls", + value = "walls", }, { - fileId = "244031", - text = "ul_universeglobe.m2", - value = "ul_universeglobe.m2", + children = { + { + fileId = "305267", + text = "worgen_well.m2", + value = "worgen_well.m2", + }, + }, + text = "waterwell", + value = "waterwell", }, { - fileId = "252913", - text = "ul_vehiclerepairbay_01.m2", - value = "ul_vehiclerepairbay_01.m2", + children = { + { + fileId = "324854", + text = "worgen_housewindow_01.m2", + value = "worgen_housewindow_01.m2", + }, + { + fileId = "317360", + text = "worgen_manorwindow_01.m2", + value = "worgen_manorwindow_01.m2", + }, + { + fileId = "304790", + text = "worgen_windowanimated_01.m2", + value = "worgen_windowanimated_01.m2", + }, + { + fileId = "306205", + text = "worgen_windowanimated_02.m2", + value = "worgen_windowanimated_02.m2", + }, + { + fileId = "310879", + text = "worgen_windowanimated_04.m2", + value = "worgen_windowanimated_04.m2", + }, + { + fileId = "310881", + text = "worgen_windowanimated_05.m2", + value = "worgen_windowanimated_05.m2", + }, + { + fileId = "310882", + text = "worgen_windowanimated_06.m2", + value = "worgen_windowanimated_06.m2", + }, + { + fileId = "305288", + text = "worgen_windowbroken_01.m2", + value = "worgen_windowbroken_01.m2", + }, + }, + text = "windows", + value = "windows", }, { - fileId = "244032", - text = "ul_war_machine01.m2", - value = "ul_war_machine01.m2", + children = { + { + fileId = "313746", + text = "worgen_mine_buttress_01.m2", + value = "worgen_mine_buttress_01.m2", + }, + { + fileId = "313747", + text = "worgen_mine_buttress_02.m2", + value = "worgen_mine_buttress_02.m2", + }, + { + fileId = "313749", + text = "worgen_mine_rock_ground_01.m2", + value = "worgen_mine_rock_ground_01.m2", + }, + { + fileId = "313750", + text = "worgen_mine_rock_ground_02.m2", + value = "worgen_mine_rock_ground_02.m2", + }, + { + fileId = "313751", + text = "worgen_mine_rock_ground_03.m2", + value = "worgen_mine_rock_ground_03.m2", + }, + { + fileId = "313753", + text = "worgen_mine_rock_ground_04.m2", + value = "worgen_mine_rock_ground_04.m2", + }, + { + fileId = "313754", + text = "worgen_mine_rock_ground_05.m2", + value = "worgen_mine_rock_ground_05.m2", + }, + { + fileId = "313755", + text = "worgen_mine_rock_ground_06.m2", + value = "worgen_mine_rock_ground_06.m2", + }, + { + fileId = "313756", + text = "worgen_mine_rock_ground_07.m2", + value = "worgen_mine_rock_ground_07.m2", + }, + { + fileId = "313757", + text = "worgen_mine_rock_pillar_01.m2", + value = "worgen_mine_rock_pillar_01.m2", + }, + { + fileId = "313758", + text = "worgen_mine_rock_pillar_02.m2", + value = "worgen_mine_rock_pillar_02.m2", + }, + { + fileId = "313759", + text = "worgen_mine_rock_pillar_03.m2", + value = "worgen_mine_rock_pillar_03.m2", + }, + { + fileId = "313760", + text = "worgen_mine_rock_pillar_04.m2", + value = "worgen_mine_rock_pillar_04.m2", + }, + { + fileId = "313761", + text = "worgen_mine_rock_wall_01.m2", + value = "worgen_mine_rock_wall_01.m2", + }, + { + fileId = "313762", + text = "worgen_mine_rock_wall_02.m2", + value = "worgen_mine_rock_wall_02.m2", + }, + { + fileId = "313763", + text = "worgen_mine_rock_wall_03.m2", + value = "worgen_mine_rock_wall_03.m2", + }, + { + fileId = "313764", + text = "worgen_mine_rock_wall_04.m2", + value = "worgen_mine_rock_wall_04.m2", + }, + { + fileId = "313765", + text = "worgen_mine_rock_wall_05.m2", + value = "worgen_mine_rock_wall_05.m2", + }, + { + fileId = "313766", + text = "worgen_mine_wood_01.m2", + value = "worgen_mine_wood_01.m2", + }, + { + fileId = "313767", + text = "worgen_mine_wood_02.m2", + value = "worgen_mine_wood_02.m2", + }, + { + fileId = "313768", + text = "worgen_mine_wood_beam_01.m2", + value = "worgen_mine_wood_beam_01.m2", + }, + { + fileId = "313769", + text = "worgen_mine_wood_beam_02.m2", + value = "worgen_mine_wood_beam_02.m2", + }, + { + fileId = "313770", + text = "worgen_mine_wood_beam_03.m2", + value = "worgen_mine_wood_beam_03.m2", + }, + { + fileId = "313771", + text = "worgen_mine_wood_beam_04.m2", + value = "worgen_mine_wood_beam_04.m2", + }, + { + fileId = "313772", + text = "worgen_mine_wood_crossbeam_01.m2", + value = "worgen_mine_wood_crossbeam_01.m2", + }, + { + fileId = "313773", + text = "worgen_mine_wood_crossbeam_02.m2", + value = "worgen_mine_wood_crossbeam_02.m2", + }, + { + fileId = "313774", + text = "worgen_mine_wood_crossbeam_03.m2", + value = "worgen_mine_wood_crossbeam_03.m2", + }, + { + fileId = "313775", + text = "worgen_mine_wood_crossbeam_04.m2", + value = "worgen_mine_wood_crossbeam_04.m2", + }, + { + fileId = "314549", + text = "worgen_minecar_01.m2", + value = "worgen_minecar_01.m2", + }, + }, + text = "worgenmicro", + value = "worgenmicro", }, + }, + text = "worgen", + value = "worgen", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion03", + value = "expansion03", + }, + { + children = { + { + children = { + { + fileId = "1401005", + text = "shop_giftbox01.m2", + value = "shop_giftbox01.m2", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion06", + value = "expansion06", + }, + { + children = { + { + children = { + { + fileId = "196911", + text = "ed_dragonshrine_a.m2", + value = "ed_dragonshrine_a.m2", + }, + { + fileId = "196912", + text = "ed_largevrykulhut.m2", + value = "ed_largevrykulhut.m2", + }, + { + fileId = "196913", + text = "ed_smallvrykulhut.m2", + value = "ed_smallvrykulhut.m2", + }, + { + fileId = "196914", + text = "ed_vrykulmediumscale.m2", + value = "ed_vrykulmediumscale.m2", + }, + { + fileId = "319882", + text = "goblin_freewaytower_doodad.m2", + value = "goblin_freewaytower_doodad.m2", + }, + { + fileId = "319822", + text = "goblin_roadpiece.m2", + value = "goblin_roadpiece.m2", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + fileId = "196915", + text = "ed_grizzlepaw.m2", + value = "ed_grizzlepaw.m2", + }, + }, + text = "grizzlyhills", + value = "grizzlyhills", + }, + { + children = { + { + fileId = "196916", + text = "ed_daggercapcave.m2", + value = "ed_daggercapcave.m2", + }, + }, + text = "howlingfjord", + value = "howlingfjord", + }, + { + children = { + { + fileId = "196917", + text = "ed_codhouse01.m2", + value = "ed_codhouse01.m2", + }, + { + fileId = "196918", + text = "ed_codhouse02.m2", + value = "ed_codhouse02.m2", + }, + }, + text = "icecrownglacier", + value = "icecrownglacier", + }, + { + children = { + { + fileId = "196919", + text = "ed_stormpeaks01.m2", + value = "ed_stormpeaks01.m2", + }, + }, + text = "stormpeaks", + value = "stormpeaks", + }, + { + children = { + { + fileId = "196927", + text = "ed_testdoodad.m2", + value = "ed_testdoodad.m2", + }, + { + fileId = "196928", + text = "frozen_throne_nosky_eyesclosed.m2", + value = "frozen_throne_nosky_eyesclosed.m2", + }, + { + fileId = "196929", + text = "frozen_throne_nosky_eyesopen.m2", + value = "frozen_throne_nosky_eyesopen.m2", + }, + { + fileId = "196930", + text = "frozen_throne_sky_eyesclosed.m2", + value = "frozen_throne_sky_eyesclosed.m2", + }, + { + fileId = "196931", + text = "frozen_throne_sky_eyesopen.m2", + value = "frozen_throne_sky_eyesopen.m2", + }, + }, + text = "test", + value = "test", + }, + { + children = { + { + fileId = "196933", + text = "forsakencatapult_doodad.m2", + value = "forsakencatapult_doodad.m2", + }, + }, + text = "vehicletest", + value = "vehicletest", + }, + { + children = { + { + fileId = "196936", + text = "ed_zuldrakaquaduccurve.m2", + value = "ed_zuldrakaquaduccurve.m2", + }, + { + fileId = "196937", + text = "ed_zuldrakaquaducpipe01.m2", + value = "ed_zuldrakaquaducpipe01.m2", + }, + { + fileId = "196938", + text = "ed_zuldrakaquaducpipe02.m2", + value = "ed_zuldrakaquaducpipe02.m2", + }, + { + fileId = "196939", + text = "ed_zuldrakaquaducsupport.m2", + value = "ed_zuldrakaquaducsupport.m2", + }, + { + fileId = "196940", + text = "ed_zuldrakaquaductip.m2", + value = "ed_zuldrakaquaductip.m2", + }, + { + fileId = "196941", + text = "ed_zuldrakbridge_fire.m2", + value = "ed_zuldrakbridge_fire.m2", + }, + { + fileId = "196942", + text = "ed_zuldrakbridge_fire_02.m2", + value = "ed_zuldrakbridge_fire_02.m2", + }, + { + fileId = "244114", + text = "ed_zuldrakbridge_fire_03.m2", + value = "ed_zuldrakbridge_fire_03.m2", + }, + { + fileId = "196943", + text = "ed_zuldrakcoliseum.m2", + value = "ed_zuldrakcoliseum.m2", + }, + { + fileId = "196944", + text = "ed_zuldrakstairs_large_ext.m2", + value = "ed_zuldrakstairs_large_ext.m2", + }, + { + fileId = "196945", + text = "ed_zuldrakstairs_large_int.m2", + value = "ed_zuldrakstairs_large_int.m2", + }, + { + fileId = "196946", + text = "ed_zuldrakstairs_large_straight.m2", + value = "ed_zuldrakstairs_large_straight.m2", + }, + { + fileId = "196947", + text = "ed_zuldrakstairs_small_ext.m2", + value = "ed_zuldrakstairs_small_ext.m2", + }, + { + fileId = "196948", + text = "ed_zuldrakstairs_small_int.m2", + value = "ed_zuldrakstairs_small_int.m2", + }, + { + fileId = "196949", + text = "ed_zuldrakstairs_small_straight.m2", + value = "ed_zuldrakstairs_small_straight.m2", + }, + { + fileId = "196950", + text = "ed_zuldrakwall150.m2", + value = "ed_zuldrakwall150.m2", + }, + { + fileId = "196951", + text = "ed_zuldrakwall150skull.m2", + value = "ed_zuldrakwall150skull.m2", + }, + { + fileId = "196952", + text = "ed_zuldrakwall300.m2", + value = "ed_zuldrakwall300.m2", + }, + { + fileId = "196953", + text = "ed_zuldrakwall50.m2", + value = "ed_zuldrakwall50.m2", + }, + { + fileId = "196954", + text = "ed_zuldrakwallbigstairs01.m2", + value = "ed_zuldrakwallbigstairs01.m2", + }, + { + fileId = "196955", + text = "ed_zuldrakwallbigstairs02.m2", + value = "ed_zuldrakwallbigstairs02.m2", + }, + { + fileId = "196956", + text = "ed_zuldrakwallcanaltube.m2", + value = "ed_zuldrakwallcanaltube.m2", + }, + { + fileId = "196957", + text = "ed_zuldrakwallextcorner.m2", + value = "ed_zuldrakwallextcorner.m2", + }, + { + fileId = "196958", + text = "ed_zuldrakwallextcornerbroken.m2", + value = "ed_zuldrakwallextcornerbroken.m2", + }, + { + fileId = "196959", + text = "ed_zuldrakwallhole.m2", + value = "ed_zuldrakwallhole.m2", + }, + { + fileId = "196960", + text = "ed_zuldrakwallintcorner.m2", + value = "ed_zuldrakwallintcorner.m2", + }, + { + fileId = "196961", + text = "ed_zuldrakwallintcornerbroken.m2", + value = "ed_zuldrakwallintcornerbroken.m2", + }, + { + fileId = "196962", + text = "ed_zuldrakwallridge.m2", + value = "ed_zuldrakwallridge.m2", + }, + { + fileId = "196963", + text = "ed_zuldrakwallrubbleleft.m2", + value = "ed_zuldrakwallrubbleleft.m2", + }, + { + fileId = "196964", + text = "ed_zuldrakwallrubbleright.m2", + value = "ed_zuldrakwallrubbleright.m2", + }, + { + fileId = "196965", + text = "ed_zuldrakwallsmallstairs.m2", + value = "ed_zuldrakwallsmallstairs.m2", + }, + { + fileId = "196966", + text = "ed_zuldrakwallwaterbreak.m2", + value = "ed_zuldrakwallwaterbreak.m2", + }, + }, + text = "zuldrak", + value = "zuldrak", + }, + }, + text = "exteriordesigners", + value = "exteriordesigners", + }, + { + children = { + { + children = { + { + children = { { - fileId = "244033", - text = "ul_war_machine_pipe.m2", - value = "ul_war_machine_pipe.m2", + fileId = "196975", + text = "berrybush01.m2", + value = "berrybush01.m2", }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { { - fileId = "244034", - text = "ul_window.m2", - value = "ul_window.m2", + fileId = "196976", + text = "chest01.m2", + value = "chest01.m2", }, + }, + text = "chest01", + value = "chest01", + }, + { + children = { { - fileId = "250921", - text = "ulduar_arch01dfx.m2", - value = "ulduar_arch01dfx.m2", + fileId = "196979", + text = "chest02.m2", + value = "chest02.m2", }, + }, + text = "chest02", + value = "chest02", + }, + { + children = { { - fileId = "250922", - text = "ulduar_arch02dfx.m2", - value = "ulduar_arch02dfx.m2", + fileId = "196982", + text = "chest03.m2", + value = "chest03.m2", }, + }, + text = "chest03", + value = "chest03", + }, + { + children = { { - fileId = "250923", - text = "ulduar_building01dfx.m2", - value = "ulduar_building01dfx.m2", + fileId = "196987", + text = "chest04.m2", + value = "chest04.m2", }, + }, + text = "chest04", + value = "chest04", + }, + { + children = { { - fileId = "254582", - text = "ulduar_tower01_fx1.m2", - value = "ulduar_tower01_fx1.m2", + fileId = "196988", + text = "chest01b.m2", + value = "chest01b.m2", }, { - fileId = "254626", - text = "ulduar_tower01_fx2.m2", - value = "ulduar_tower01_fx2.m2", + fileId = "196989", + text = "chest01c.m2", + value = "chest01c.m2", }, { - fileId = "254642", - text = "ulduar_tower01_fx2b.m2", - value = "ulduar_tower01_fx2b.m2", + fileId = "196990", + text = "chestactive01.m2", + value = "chestactive01.m2", }, { - fileId = "250924", - text = "ulduarraid_gnomewing_transport_doodad.m2", - value = "ulduarraid_gnomewing_transport_doodad.m2", + fileId = "244115", + text = "helmchest01.m2", + value = "helmchest01.m2", }, }, - text = "ulduar", - value = "ulduar", + text = "chests", + value = "chests", }, { children = { { - children = { - { - fileId = "196582", - text = "valgarde_fire.m2", - value = "valgarde_fire.m2", - }, - }, - text = "valgrade_fire", - value = "valgrade_fire", + fileId = "196993", + text = "snowballmound01.m2", + value = "snowballmound01.m2", }, }, - text = "valgrade", - value = "valgrade", + text = "christmas", + value = "christmas", }, { children = { { - fileId = "249941", - text = "wg_keep_door01_collision.m2", - value = "wg_keep_door01_collision.m2", + fileId = "196998", + text = "giantclamactive.m2", + value = "giantclamactive.m2", + }, + { + fileId = "196999", + text = "giantclamclosed.m2", + value = "giantclamclosed.m2", }, }, - text = "wintergrasp", - value = "wintergrasp", + text = "clam", + value = "clam", }, { children = { { - fileId = "196584", - text = "wt_basket_01.m2", - value = "wt_basket_01.m2", - }, - { - fileId = "196585", - text = "wt_basket_02.m2", - value = "wt_basket_02.m2", + children = { + { + fileId = "197001", + text = "giantportcullisflatbottom01.m2", + value = "giantportcullisflatbottom01.m2", + }, + }, + text = "giantportcullis", + value = "giantportcullis", }, { - fileId = "196586", - text = "wt_basket_03.m2", - value = "wt_basket_03.m2", + children = { + { + fileId = "197002", + text = "gnomeregandoor01.m2", + value = "gnomeregandoor01.m2", + }, + }, + text = "gnomeregandoors", + value = "gnomeregandoors", }, { - fileId = "196589", - text = "wt_bench_01.m2", - value = "wt_bench_01.m2", + children = { + { + fileId = "197003", + text = "sunktemple_portcullis.m2", + value = "sunktemple_portcullis.m2", + }, + }, + text = "sunkentempledoors", + value = "sunkentempledoors", }, { - fileId = "196590", - text = "wt_brazier_lit.m2", - value = "wt_brazier_lit.m2", + children = { + { + fileId = "197004", + text = "uldamandoor01.m2", + value = "uldamandoor01.m2", + }, + }, + text = "uldamandoors", + value = "uldamandoors", }, + }, + text = "doors", + value = "doors", + }, + { + children = { { - fileId = "196591", - text = "wt_brazier_unlit.m2", - value = "wt_brazier_unlit.m2", + fileId = "197007", + text = "instanceportal.m2", + value = "instanceportal.m2", }, { - fileId = "196592", - text = "wt_chair_01.m2", - value = "wt_chair_01.m2", + fileId = "197008", + text = "instanceportal_green.m2", + value = "instanceportal_green.m2", }, { - fileId = "196593", - text = "wt_hanging_01.m2", - value = "wt_hanging_01.m2", + fileId = "197009", + text = "instanceportal_purpledifficulty.m2", + value = "instanceportal_purpledifficulty.m2", }, { - fileId = "196594", - text = "wt_hanging_02.m2", - value = "wt_hanging_02.m2", + fileId = "197010", + text = "instanceportal_purpledifficultyicon.m2", + value = "instanceportal_purpledifficultyicon.m2", }, { - fileId = "196595", - text = "wt_hanging_03.m2", - value = "wt_hanging_03.m2", + fileId = "197011", + text = "instanceportal_red.m2", + value = "instanceportal_red.m2", }, { - fileId = "196596", - text = "wt_hanging_04.m2", - value = "wt_hanging_04.m2", + fileId = "197012", + text = "instanceportal_white.m2", + value = "instanceportal_white.m2", }, { - fileId = "196598", - text = "wt_hangingscroll_01.m2", - value = "wt_hangingscroll_01.m2", + fileId = "197013", + text = "instanceportalcollision.m2", + value = "instanceportalcollision.m2", }, { - fileId = "196599", - text = "wt_hangingscroll_02.m2", - value = "wt_hangingscroll_02.m2", + fileId = "197017", + text = "summon_ritual.m2", + value = "summon_ritual.m2", }, { - fileId = "196600", - text = "wt_hangingscroll_03.m2", - value = "wt_hangingscroll_03.m2", + fileId = "197018", + text = "temporal_displacement.m2", + value = "temporal_displacement.m2", }, + }, + text = "instanceportal", + value = "instanceportal", + }, + { + children = { { - fileId = "196601", - text = "wt_hangingscroll_04.m2", - value = "wt_hangingscroll_04.m2", + fileId = "197020", + text = "stormwindmageportal01.m2", + value = "stormwindmageportal01.m2", }, + }, + text = "mageportals", + value = "mageportals", + }, + { + children = { { - fileId = "196602", - text = "wt_hangingscroll_05.m2", - value = "wt_hangingscroll_05.m2", + fileId = "197022", + text = "meetingstone01.m2", + value = "meetingstone01.m2", }, { - fileId = "196603", - text = "wt_hangingscroll_06.m2", - value = "wt_hangingscroll_06.m2", + fileId = "197024", + text = "meetingstone02.m2", + value = "meetingstone02.m2", }, { - fileId = "196604", - text = "wt_lamppost01.m2", - value = "wt_lamppost01.m2", + fileId = "197026", + text = "meetingstone03.m2", + value = "meetingstone03.m2", }, { - fileId = "196605", - text = "wt_lamppost01_wreckeda.m2", - value = "wt_lamppost01_wreckeda.m2", + fileId = "197028", + text = "meetingstone04.m2", + value = "meetingstone04.m2", }, { - fileId = "196606", - text = "wt_lamppost01_wreckedb.m2", - value = "wt_lamppost01_wreckedb.m2", + fileId = "197030", + text = "meetingstone05.m2", + value = "meetingstone05.m2", }, + }, + text = "meetingstones", + value = "meetingstones", + }, + { + children = { { - fileId = "196607", - text = "wt_lamppost01_wreckedc.m2", - value = "wt_lamppost01_wreckedc.m2", + fileId = "197038", + text = "gemrock01.m2", + value = "gemrock01.m2", }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { { - fileId = "196610", - text = "wt_lantern01.m2", - value = "wt_lantern01.m2", + fileId = "411878", + text = "mageportal_azshara.m2", + value = "mageportal_azshara.m2", }, { - fileId = "196611", - text = "wt_lanternhanging01.m2", - value = "wt_lanternhanging01.m2", + fileId = "244118", + text = "mageportal_cavernsoftime.m2", + value = "mageportal_cavernsoftime.m2", }, { - fileId = "196615", - text = "wt_mummy01.m2", - value = "wt_mummy01.m2", + fileId = "244119", + text = "mageportal_dalaran.m2", + value = "mageportal_dalaran.m2", }, { - fileId = "196616", - text = "wt_pyre01.m2", - value = "wt_pyre01.m2", + fileId = "197042", + text = "mageportal_darnassus.m2", + value = "mageportal_darnassus.m2", }, { - fileId = "196617", - text = "wt_pyre02.m2", - value = "wt_pyre02.m2", + fileId = "197043", + text = "mageportal_exodar.m2", + value = "mageportal_exodar.m2", }, { - fileId = "196619", - text = "wt_roadsign.m2", - value = "wt_roadsign.m2", + fileId = "197044", + text = "mageportal_ironforge.m2", + value = "mageportal_ironforge.m2", }, { - fileId = "196620", - text = "wt_roadsign_post.m2", - value = "wt_roadsign_post.m2", + fileId = "197045", + text = "mageportal_karazhan.m2", + value = "mageportal_karazhan.m2", }, { - fileId = "196621", - text = "wt_rug_01.m2", - value = "wt_rug_01.m2", + fileId = "197046", + text = "mageportal_maraudon.m2", + value = "mageportal_maraudon.m2", }, { - fileId = "196622", - text = "wt_rug_02.m2", - value = "wt_rug_02.m2", + fileId = "197047", + text = "mageportal_ogrimmar.m2", + value = "mageportal_ogrimmar.m2", }, { - fileId = "196623", - text = "wt_rug_03.m2", - value = "wt_rug_03.m2", + fileId = "458030", + text = "mageportal_ogrimmar2.m2", + value = "mageportal_ogrimmar2.m2", }, { - fileId = "196624", - text = "wt_rug_04.m2", - value = "wt_rug_04.m2", + fileId = "197048", + text = "mageportal_shattrath.m2", + value = "mageportal_shattrath.m2", }, { - fileId = "196626", - text = "wt_scroll_01.m2", - value = "wt_scroll_01.m2", + fileId = "197049", + text = "mageportal_silvermoon.m2", + value = "mageportal_silvermoon.m2", }, { - fileId = "196627", - text = "wt_scroll_02.m2", - value = "wt_scroll_02.m2", + fileId = "307023", + text = "mageportal_stairofdestiny.m2", + value = "mageportal_stairofdestiny.m2", }, { - fileId = "196630", - text = "wt_sled_01.m2", - value = "wt_sled_01.m2", + fileId = "197050", + text = "mageportal_stonard.m2", + value = "mageportal_stonard.m2", }, { - fileId = "196631", - text = "wt_sled_01packed.m2", - value = "wt_sled_01packed.m2", + fileId = "197051", + text = "mageportal_stormwind.m2", + value = "mageportal_stormwind.m2", }, { - fileId = "196632", - text = "wt_sled_01packed_wreckeda.m2", - value = "wt_sled_01packed_wreckeda.m2", + fileId = "197052", + text = "mageportal_sunwell.m2", + value = "mageportal_sunwell.m2", }, { - fileId = "196633", - text = "wt_sled_01packed_wreckedb.m2", - value = "wt_sled_01packed_wreckedb.m2", + fileId = "197053", + text = "mageportal_theramore.m2", + value = "mageportal_theramore.m2", }, { - fileId = "196634", - text = "wt_sled_02.m2", - value = "wt_sled_02.m2", + fileId = "197054", + text = "mageportal_thunderbluff.m2", + value = "mageportal_thunderbluff.m2", }, { - fileId = "196635", - text = "wt_sled_02_wreckeda.m2", - value = "wt_sled_02_wreckeda.m2", + fileId = "436628", + text = "mageportal_tolbarad.m2", + value = "mageportal_tolbarad.m2", }, { - fileId = "196636", - text = "wt_sled_02packed.m2", - value = "wt_sled_02packed.m2", + fileId = "197055", + text = "mageportal_undercity.m2", + value = "mageportal_undercity.m2", }, { - fileId = "196637", - text = "wt_standard_01.m2", - value = "wt_standard_01.m2", + fileId = "244120", + text = "mageportal_wintergrasp.m2", + value = "mageportal_wintergrasp.m2", }, { - fileId = "196638", - text = "wt_tent01.m2", - value = "wt_tent01.m2", + fileId = "244122", + text = "portal_alteracvalleyalliance.m2", + value = "portal_alteracvalleyalliance.m2", }, { - fileId = "196639", - text = "wt_tent01_wreckeda.m2", - value = "wt_tent01_wreckeda.m2", + fileId = "244124", + text = "portal_alteracvalleyhorde.m2", + value = "portal_alteracvalleyhorde.m2", }, { - fileId = "196640", - text = "wt_tent01_wreckedb.m2", - value = "wt_tent01_wreckedb.m2", + fileId = "244126", + text = "portal_arathibasinalliance.m2", + value = "portal_arathibasinalliance.m2", }, { - fileId = "196641", - text = "wt_tent02.m2", - value = "wt_tent02.m2", + fileId = "244128", + text = "portal_arathibasinhorde.m2", + value = "portal_arathibasinhorde.m2", }, { - fileId = "196642", - text = "wt_tent03.m2", - value = "wt_tent03.m2", + fileId = "244130", + text = "portal_eyeofthestormalliance.m2", + value = "portal_eyeofthestormalliance.m2", }, { - fileId = "196645", - text = "wt_totem01.m2", - value = "wt_totem01.m2", + fileId = "244131", + text = "portal_eyeofthestormhorde.m2", + value = "portal_eyeofthestormhorde.m2", }, { - fileId = "196646", - text = "wt_totem01snow.m2", - value = "wt_totem01snow.m2", + fileId = "311063", + text = "portal_isleofconquestalliance.m2", + value = "portal_isleofconquestalliance.m2", }, { - fileId = "196647", - text = "wt_totem02.m2", - value = "wt_totem02.m2", + fileId = "311065", + text = "portal_isleofconquesthorde.m2", + value = "portal_isleofconquesthorde.m2", }, { - fileId = "196648", - text = "wt_totem02snow.m2", - value = "wt_totem02snow.m2", + fileId = "244133", + text = "portal_strandoftheancients.m2", + value = "portal_strandoftheancients.m2", }, { - fileId = "196650", - text = "wt_windbreak01.m2", - value = "wt_windbreak01.m2", + fileId = "244135", + text = "portal_warsonggulchalliance.m2", + value = "portal_warsonggulchalliance.m2", }, { - fileId = "196652", - text = "wt_windbreak01_wreckeda.m2", - value = "wt_windbreak01_wreckeda.m2", + fileId = "244137", + text = "portal_warsonggulchhorde.m2", + value = "portal_warsonggulchhorde.m2", }, + }, + text = "spellportals", + value = "spellportals", + }, + { + children = { { - fileId = "196654", - text = "wt_windbreak01_wreckedb.m2", - value = "wt_windbreak01_wreckedb.m2", + fileId = "197063", + text = "trollchest.m2", + value = "trollchest.m2", }, + }, + text = "trollchest", + value = "trollchest", + }, + { + children = { { - fileId = "196655", - text = "wt_windbreak02.m2", - value = "wt_windbreak02.m2", + fileId = "197068", + text = "worldtreeportal01.m2", + value = "worldtreeportal01.m2", }, }, - text = "wintertauren", - value = "wintertauren", + text = "worldtreeportals", + value = "worldtreeportals", }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { { children = { { - children = { - { - fileId = "244038", - text = "zuldrak_aqueduct_01.m2", - value = "zuldrak_aqueduct_01.m2", - }, - { - fileId = "244039", - text = "zuldrak_aqueduct_02.m2", - value = "zuldrak_aqueduct_02.m2", - }, - { - fileId = "244040", - text = "zuldrak_aqueduct_03.m2", - value = "zuldrak_aqueduct_03.m2", - }, - }, - text = "aqueduct", - value = "aqueduct", + fileId = "341870", + text = "alliancechest_01.m2", + value = "alliancechest_01.m2", }, + }, + text = "chest", + value = "chest", + }, + }, + text = "alliance", + value = "alliance", + }, + { + children = { + { + children = { { - children = { - { - fileId = "244044", - text = "gundrak_coffin_01.m2", - value = "gundrak_coffin_01.m2", - }, - { - fileId = "244045", - text = "gundrak_collision_01.m2", - value = "gundrak_collision_01.m2", - }, - { - fileId = "244046", - text = "gundrak_collision_02.m2", - value = "gundrak_collision_02.m2", - }, - { - fileId = "244047", - text = "gundrak_key_mammoth.m2", - value = "gundrak_key_mammoth.m2", - }, - { - fileId = "244048", - text = "gundrak_key_rhino.m2", - value = "gundrak_key_rhino.m2", - }, - { - fileId = "244049", - text = "gundrak_key_snake.m2", - value = "gundrak_key_snake.m2", - }, - { - fileId = "244050", - text = "gundrak_key_troll.m2", - value = "gundrak_key_troll.m2", - }, - { - fileId = "244051", - text = "gundrak_snake.m2", - value = "gundrak_snake.m2", - }, - { - fileId = "196661", - text = "gundrakcrystal_01.m2", - value = "gundrakcrystal_01.m2", - }, - { - children = { - { - fileId = "196666", - text = "zuldrak_trollfountainhead_01.m2", - value = "zuldrak_trollfountainhead_01.m2", - }, - { - fileId = "196671", - text = "zuldrakwaterdrip_01.m2", - value = "zuldrakwaterdrip_01.m2", - }, - { - fileId = "196672", - text = "zuldrakwatersteps_01.m2", - value = "zuldrakwatersteps_01.m2", - }, - }, - text = "waterfalls", - value = "waterfalls", - }, - { - fileId = "244053", - text = "zuldrak_alter.m2", - value = "zuldrak_alter.m2", - }, - { - fileId = "196673", - text = "zuldrak_banner_01.m2", - value = "zuldrak_banner_01.m2", - }, - { - fileId = "196674", - text = "zuldrak_banner_02.m2", - value = "zuldrak_banner_02.m2", - }, - { - fileId = "196675", - text = "zuldrak_banner_03.m2", - value = "zuldrak_banner_03.m2", - }, - { - fileId = "196677", - text = "zuldrak_bats_lower_01.m2", - value = "zuldrak_bats_lower_01.m2", - }, - { - fileId = "196678", - text = "zuldrak_brazier_01.m2", - value = "zuldrak_brazier_01.m2", - }, - { - fileId = "244054", - text = "zuldrak_burninglog_01.m2", - value = "zuldrak_burninglog_01.m2", - }, - { - fileId = "196679", - text = "zuldrak_crystal_01.m2", - value = "zuldrak_crystal_01.m2", - }, - { - fileId = "196680", - text = "zuldrak_flag_01.m2", - value = "zuldrak_flag_01.m2", - }, - { - fileId = "196681", - text = "zuldrak_flag_02.m2", - value = "zuldrak_flag_02.m2", - }, - { - fileId = "196682", - text = "zuldrak_floating_light_01.m2", - value = "zuldrak_floating_light_01.m2", - }, - { - fileId = "196686", - text = "zuldrak_gem_blue_01.m2", - value = "zuldrak_gem_blue_01.m2", - }, - { - fileId = "196687", - text = "zuldrak_gem_green_01.m2", - value = "zuldrak_gem_green_01.m2", - }, - { - fileId = "196688", - text = "zuldrak_gem_green_02.m2", - value = "zuldrak_gem_green_02.m2", - }, - { - fileId = "196689", - text = "zuldrak_gem_purple_01.m2", - value = "zuldrak_gem_purple_01.m2", - }, - { - fileId = "196690", - text = "zuldrak_gem_white_01.m2", - value = "zuldrak_gem_white_01.m2", - }, - { - fileId = "196692", - text = "zuldrak_hanging_light_01.m2", - value = "zuldrak_hanging_light_01.m2", - }, - { - fileId = "196693", - text = "zuldrak_hanging_light_02.m2", - value = "zuldrak_hanging_light_02.m2", - }, - { - fileId = "196694", - text = "zuldrak_hangingskulls_01.m2", - value = "zuldrak_hangingskulls_01.m2", - }, - { - fileId = "244056", - text = "zuldrak_hangingskulls_02.m2", - value = "zuldrak_hangingskulls_02.m2", - }, - { - fileId = "244057", - text = "zuldrak_hangingskulls_03.m2", - value = "zuldrak_hangingskulls_03.m2", - }, - { - fileId = "244059", - text = "zuldrak_heart_01.m2", - value = "zuldrak_heart_01.m2", - }, - { - fileId = "244061", - text = "zuldrak_lever.m2", - value = "zuldrak_lever.m2", - }, - { - fileId = "196696", - text = "zuldrak_pile_01.m2", - value = "zuldrak_pile_01.m2", - }, - { - fileId = "196697", - text = "zuldrak_pile_02.m2", - value = "zuldrak_pile_02.m2", - }, - { - fileId = "196698", - text = "zuldrak_pile_03.m2", - value = "zuldrak_pile_03.m2", - }, - { - fileId = "244062", - text = "zuldrak_red_gem_01.m2", - value = "zuldrak_red_gem_01.m2", - }, - { - fileId = "196700", - text = "zuldrak_ropes_01.m2", - value = "zuldrak_ropes_01.m2", - }, - { - fileId = "196701", - text = "zuldrak_ropes_02.m2", - value = "zuldrak_ropes_02.m2", - }, - { - fileId = "196702", - text = "zuldrak_ropes_03.m2", - value = "zuldrak_ropes_03.m2", - }, - { - fileId = "196703", - text = "zuldrak_ropes_04.m2", - value = "zuldrak_ropes_04.m2", - }, - { - fileId = "244063", - text = "zuldrak_ropes_05.m2", - value = "zuldrak_ropes_05.m2", - }, - { - fileId = "244064", - text = "zuldrak_ropes_06.m2", - value = "zuldrak_ropes_06.m2", - }, - { - fileId = "196704", - text = "zuldrak_shield_01.m2", - value = "zuldrak_shield_01.m2", - }, - { - fileId = "196705", - text = "zuldrak_shield_02.m2", - value = "zuldrak_shield_02.m2", - }, - { - fileId = "196706", - text = "zuldrak_skullpile_01.m2", - value = "zuldrak_skullpile_01.m2", - }, - { - fileId = "196707", - text = "zuldrak_skullpile_02.m2", - value = "zuldrak_skullpile_02.m2", - }, - { - fileId = "196708", - text = "zuldrak_skullpile_03.m2", - value = "zuldrak_skullpile_03.m2", - }, - { - fileId = "196709", - text = "zuldrak_skullpole_01.m2", - value = "zuldrak_skullpole_01.m2", - }, - { - fileId = "244065", - text = "zuldrak_skullpole_01_low.m2", - value = "zuldrak_skullpole_01_low.m2", - }, - { - fileId = "244066", - text = "zuldrak_skullpole_02.m2", - value = "zuldrak_skullpole_02.m2", - }, - { - fileId = "244067", - text = "zuldrak_skullpole_02_low.m2", - value = "zuldrak_skullpole_02_low.m2", - }, - { - fileId = "196710", - text = "zuldrak_spears_01.m2", - value = "zuldrak_spears_01.m2", - }, - { - fileId = "196711", - text = "zuldrak_spears_02.m2", - value = "zuldrak_spears_02.m2", - }, - { - fileId = "196712", - text = "zuldrak_spears_03.m2", - value = "zuldrak_spears_03.m2", - }, - { - fileId = "196713", - text = "zuldrak_spikestrip_01.m2", - value = "zuldrak_spikestrip_01.m2", - }, - { - fileId = "196714", - text = "zuldrak_spikestructure_01.m2", - value = "zuldrak_spikestructure_01.m2", - }, - { - fileId = "196715", - text = "zuldrak_sword_01.m2", - value = "zuldrak_sword_01.m2", - }, - { - fileId = "196717", - text = "zuldrak_torch_01.m2", - value = "zuldrak_torch_01.m2", - }, - { - fileId = "244068", - text = "zuldrak_torch_01_low.m2", - value = "zuldrak_torch_01_low.m2", - }, - { - fileId = "196718", - text = "zuldrak_torch_02.m2", - value = "zuldrak_torch_02.m2", - }, - { - fileId = "244069", - text = "zuldrak_torch_02b.m2", - value = "zuldrak_torch_02b.m2", - }, - { - fileId = "196719", - text = "zuldrak_torch_03.m2", - value = "zuldrak_torch_03.m2", - }, - { - fileId = "196720", - text = "zuldrak_torch_04.m2", - value = "zuldrak_torch_04.m2", - }, - { - fileId = "196721", - text = "zuldrak_waterspout_01.m2", - value = "zuldrak_waterspout_01.m2", - }, - { - fileId = "196722", - text = "zuldrak_weaponrack_01.m2", - value = "zuldrak_weaponrack_01.m2", - }, - { - fileId = "196723", - text = "zuldrak_windchime_01.m2", - value = "zuldrak_windchime_01.m2", - }, - { - fileId = "196724", - text = "zuldrak_windchime_02.m2", - value = "zuldrak_windchime_02.m2", - }, + fileId = "197108", + text = "humantentlarge.m2", + value = "humantentlarge.m2", + }, + }, + text = "humantentlarge", + value = "humantentlarge", + }, + { + children = { + { + fileId = "197109", + text = "humantentmedium.m2", + value = "humantentmedium.m2", + }, + }, + text = "humantentmedium", + value = "humantentmedium", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + fileId = "197122", + text = "collision_pcsize.m2", + value = "collision_pcsize.m2", + }, + }, + text = "collision", + value = "collision", + }, + { + children = { + { + children = { + { + children = { { - fileId = "196725", - text = "zuldrak_windchime_03.m2", - value = "zuldrak_windchime_03.m2", + fileId = "197230", + text = "fishingchair.m2", + value = "fishingchair.m2", }, }, - text = "decorations", - value = "decorations", + text = "chair", + value = "chair", + }, + }, + text = "fishing", + value = "fishing", + }, + { + children = { + { + fileId = "531368", + text = "g_greench_stash.m2", + value = "g_greench_stash.m2", }, + }, + text = "greench_stash", + value = "greench_stash", + }, + }, + text = "doodads", + value = "doodads", + }, + { + children = { + { + children = { { children = { { - fileId = "196729", - text = "zuldrak_fence_01.m2", - value = "zuldrak_fence_01.m2", + fileId = "197635", + text = "gnomemachine.m2", + value = "gnomemachine.m2", }, + }, + text = "gnomemachine", + value = "gnomemachine", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { + { + children = { + { + children = { { - fileId = "196730", - text = "zuldrak_fence_02.m2", - value = "zuldrak_fence_02.m2", + fileId = "319550", + text = "goblin_battlemap_01.m2", + value = "goblin_battlemap_01.m2", }, { - fileId = "196731", - text = "zuldrak_fence_03.m2", - value = "zuldrak_fence_03.m2", + fileId = "319551", + text = "goblin_battlemap_02.m2", + value = "goblin_battlemap_02.m2", }, { - fileId = "196732", - text = "zuldrak_fencepost_01.m2", - value = "zuldrak_fencepost_01.m2", + fileId = "319552", + text = "goblin_battlemap_04.m2", + value = "goblin_battlemap_04.m2", }, }, - text = "fences", - value = "fences", + text = "battlemaps", + value = "battlemaps", }, { children = { { - fileId = "244070", - text = "gundrak_elevator_01.m2", - value = "gundrak_elevator_01.m2", - }, - { - fileId = "244071", - text = "gundrak_fence_door.m2", - value = "gundrak_fence_door.m2", - }, - { - fileId = "244072", - text = "gundrak_short_door.m2", - value = "gundrak_short_door.m2", + fileId = "365689", + text = "goblin_bbq_01.m2", + value = "goblin_bbq_01.m2", }, { - fileId = "244073", - text = "gundrak_trapdoor_02.m2", - value = "gundrak_trapdoor_02.m2", + fileId = "461240", + text = "goblin_bbq_01_nocollision.m2", + value = "goblin_bbq_01_nocollision.m2", }, { - fileId = "244074", - text = "gundrak_underwaterhatch_door.m2", - value = "gundrak_underwaterhatch_door.m2", + fileId = "365745", + text = "goblin_bbq_02.m2", + value = "goblin_bbq_02.m2", }, { - fileId = "244075", - text = "gundrakgrateice.m2", - value = "gundrakgrateice.m2", + fileId = "365796", + text = "goblin_bbq_03.m2", + value = "goblin_bbq_03.m2", }, }, - text = "gundrak", - value = "gundrak", + text = "bbq", + value = "bbq", }, { children = { { - fileId = "196733", - text = "zuldrak_blue_fire.m2", - value = "zuldrak_blue_fire.m2", - }, - { - fileId = "326720", - text = "zuldrak_blue_fire02.m2", - value = "zuldrak_blue_fire02.m2", - }, - { - fileId = "196736", - text = "zuldrak_fog_blue.m2", - value = "zuldrak_fog_blue.m2", + fileId = "372205", + text = "goblin_beanbag_01.m2", + value = "goblin_beanbag_01.m2", }, { - fileId = "196738", - text = "zuldrak_fog_red.m2", - value = "zuldrak_fog_red.m2", + fileId = "372206", + text = "goblin_beanbag_02.m2", + value = "goblin_beanbag_02.m2", }, { - fileId = "196741", - text = "zuldrak_lightray_01.m2", - value = "zuldrak_lightray_01.m2", + fileId = "372208", + text = "goblin_beanbag_03.m2", + value = "goblin_beanbag_03.m2", }, - }, - text = "lightfx", - value = "lightfx", - }, - { - children = { { - fileId = "244080", - text = "zuldrak_mojostreams.m2", - value = "zuldrak_mojostreams.m2", + fileId = "372695", + text = "goblin_beanbag_04.m2", + value = "goblin_beanbag_04.m2", }, }, - text = "mojostreams", - value = "mojostreams", + text = "beanbags", + value = "beanbags", }, { children = { { - fileId = "196743", - text = "zuldrak_pathstone_01.m2", - value = "zuldrak_pathstone_01.m2", - }, - { - fileId = "196744", - text = "zuldrak_pathstone_02.m2", - value = "zuldrak_pathstone_02.m2", - }, - { - fileId = "196745", - text = "zuldrak_pathstone_03.m2", - value = "zuldrak_pathstone_03.m2", + fileId = "348144", + text = "goblin_horde_bed_01.m2", + value = "goblin_horde_bed_01.m2", }, { - fileId = "196746", - text = "zuldrak_pathstone_04.m2", - value = "zuldrak_pathstone_04.m2", + fileId = "349204", + text = "goblin_horde_ornatebed_01.m2", + value = "goblin_horde_ornatebed_01.m2", }, { - fileId = "196747", - text = "zuldrak_pathstonesnow_01.m2", - value = "zuldrak_pathstonesnow_01.m2", + fileId = "348591", + text = "goblin_horde_slumbed_01.m2", + value = "goblin_horde_slumbed_01.m2", }, + }, + text = "beds", + value = "beds", + }, + { + children = { { - fileId = "196748", - text = "zuldrak_pathstonesnow_02.m2", - value = "zuldrak_pathstonesnow_02.m2", + fileId = "344536", + text = "goblin_horde_ceilingfan_01.m2", + value = "goblin_horde_ceilingfan_01.m2", }, { - fileId = "196749", - text = "zuldrak_pathstonesnow_03.m2", - value = "zuldrak_pathstonesnow_03.m2", + fileId = "344537", + text = "goblin_horde_ceilingfan_02.m2", + value = "goblin_horde_ceilingfan_02.m2", }, { - fileId = "196750", - text = "zuldrak_pathstonesnow_04.m2", - value = "zuldrak_pathstonesnow_04.m2", + fileId = "344538", + text = "goblin_horde_ceilingfan_03.m2", + value = "goblin_horde_ceilingfan_03.m2", }, }, - text = "rocks", - value = "rocks", + text = "ceilingfan", + value = "ceilingfan", }, { children = { { - fileId = "244081", - text = "zuldrak_skyvortex.m2", - value = "zuldrak_skyvortex.m2", + fileId = "371190", + text = "goblin_clock_01.m2", + value = "goblin_clock_01.m2", }, }, - text = "skyvortex", - value = "skyvortex", + text = "clock", + value = "clock", }, { children = { { - fileId = "196752", - text = "zuldrak_statue_base_01.m2", - value = "zuldrak_statue_base_01.m2", - }, - { - fileId = "196754", - text = "zuldrak_statue_bear_01.m2", - value = "zuldrak_statue_bear_01.m2", - }, - { - fileId = "196756", - text = "zuldrak_statue_mammoth_01.m2", - value = "zuldrak_statue_mammoth_01.m2", - }, - { - fileId = "196758", - text = "zuldrak_statue_rhino_01.m2", - value = "zuldrak_statue_rhino_01.m2", - }, - { - fileId = "196760", - text = "zuldrak_statue_serpent_01.m2", - value = "zuldrak_statue_serpent_01.m2", - }, - { - fileId = "196762", - text = "zuldrak_statue_snake_01.m2", - value = "zuldrak_statue_snake_01.m2", + fileId = "366426", + text = "goblin_clothes_01.m2", + value = "goblin_clothes_01.m2", }, { - fileId = "244084", - text = "zuldrak_statue_snowleopard_01.m2", - value = "zuldrak_statue_snowleopard_01.m2", + fileId = "366427", + text = "goblin_clothes_02.m2", + value = "goblin_clothes_02.m2", }, }, - text = "statues", - value = "statues", + text = "clothes", + value = "clothes", }, { children = { { - fileId = "196763", - text = "zuldrak_bush_01.m2", - value = "zuldrak_bush_01.m2", - }, - { - fileId = "196764", - text = "zuldrak_bush_02.m2", - value = "zuldrak_bush_02.m2", - }, - { - fileId = "196765", - text = "zuldrak_bush_03.m2", - value = "zuldrak_bush_03.m2", - }, - { - fileId = "196766", - text = "zuldrak_bush_04.m2", - value = "zuldrak_bush_04.m2", - }, - { - fileId = "196767", - text = "zuldrak_bush_05.m2", - value = "zuldrak_bush_05.m2", - }, - { - fileId = "196768", - text = "zuldrak_bush_07.m2", - value = "zuldrak_bush_07.m2", - }, - { - fileId = "196769", - text = "zuldrak_bush_09.m2", - value = "zuldrak_bush_09.m2", - }, - { - fileId = "196770", - text = "zuldrak_bush_09_snowy.m2", - value = "zuldrak_bush_09_snowy.m2", - }, - { - fileId = "196771", - text = "zuldrak_bush_11.m2", - value = "zuldrak_bush_11.m2", - }, - { - fileId = "196772", - text = "zuldrak_crop_01.m2", - value = "zuldrak_crop_01.m2", - }, - { - fileId = "196773", - text = "zuldrak_crop_02.m2", - value = "zuldrak_crop_02.m2", - }, - { - fileId = "196774", - text = "zuldrak_largetree_01.m2", - value = "zuldrak_largetree_01.m2", - }, - { - fileId = "196775", - text = "zuldrak_largetree_01_snowy.m2", - value = "zuldrak_largetree_01_snowy.m2", - }, - { - fileId = "196776", - text = "zuldrak_largetree_02.m2", - value = "zuldrak_largetree_02.m2", - }, - { - fileId = "196777", - text = "zuldrak_largetree_02_snowy.m2", - value = "zuldrak_largetree_02_snowy.m2", - }, - { - fileId = "196778", - text = "zuldrak_largetree_03.m2", - value = "zuldrak_largetree_03.m2", - }, - { - fileId = "196779", - text = "zuldrak_largetree_04.m2", - value = "zuldrak_largetree_04.m2", - }, - { - fileId = "196780", - text = "zuldrak_largetree_04_snowy.m2", - value = "zuldrak_largetree_04_snowy.m2", - }, - { - fileId = "196788", - text = "zuldrak_redbush_01.m2", - value = "zuldrak_redbush_01.m2", - }, - { - fileId = "196789", - text = "zuldrak_roots_01.m2", - value = "zuldrak_roots_01.m2", - }, - { - fileId = "196790", - text = "zuldrak_roots_01_snowy.m2", - value = "zuldrak_roots_01_snowy.m2", - }, - { - fileId = "196791", - text = "zuldrak_roots_02.m2", - value = "zuldrak_roots_02.m2", + fileId = "197760", + text = "goblincontrolpanel.m2", + value = "goblincontrolpanel.m2", }, + }, + text = "controlpanel", + value = "controlpanel", + }, + { + children = { { - fileId = "196792", - text = "zuldrak_roots_03.m2", - value = "zuldrak_roots_03.m2", + fileId = "311649", + text = "goblin_batterymachine.m2", + value = "goblin_batterymachine.m2", }, { - fileId = "196793", - text = "zuldrak_roots_03_snowy.m2", - value = "zuldrak_roots_03_snowy.m2", + fileId = "316693", + text = "goblin_catapult_01.m2", + value = "goblin_catapult_01.m2", }, { - fileId = "196794", - text = "zuldrak_roots_04.m2", - value = "zuldrak_roots_04.m2", + fileId = "319826", + text = "goblin_cookingmachine.m2", + value = "goblin_cookingmachine.m2", }, { - fileId = "196795", - text = "zuldrak_roots_04_snowy.m2", - value = "zuldrak_roots_04_snowy.m2", + fileId = "315224", + text = "goblin_crazymachine_01.m2", + value = "goblin_crazymachine_01.m2", }, { - fileId = "196796", - text = "zuldrak_roots_05.m2", - value = "zuldrak_roots_05.m2", + fileId = "317825", + text = "goblin_crazymachine_02.m2", + value = "goblin_crazymachine_02.m2", }, { - fileId = "196797", - text = "zuldrak_roots_06.m2", - value = "zuldrak_roots_06.m2", + fileId = "309721", + text = "goblin_crazymachine_03.m2", + value = "goblin_crazymachine_03.m2", }, { - fileId = "244085", - text = "zuldrak_shelfmushroom_01.m2", - value = "zuldrak_shelfmushroom_01.m2", + fileId = "314504", + text = "goblin_crazymachine_04.m2", + value = "goblin_crazymachine_04.m2", }, { - fileId = "244086", - text = "zuldrak_shelfmushroom_02.m2", - value = "zuldrak_shelfmushroom_02.m2", + fileId = "309912", + text = "goblin_crazymachine_07.m2", + value = "goblin_crazymachine_07.m2", }, { - fileId = "244087", - text = "zuldrak_thinmushroom_01.m2", - value = "zuldrak_thinmushroom_01.m2", + fileId = "328144", + text = "goblin_rockcuttingmachine_01.m2", + value = "goblin_rockcuttingmachine_01.m2", }, { - fileId = "196798", - text = "zuldrak_tree_01.m2", - value = "zuldrak_tree_01.m2", + fileId = "323166", + text = "goblin_turret_01.m2", + value = "goblin_turret_01.m2", }, + }, + text = "crazymachines", + value = "crazymachines", + }, + { + children = { { - fileId = "196799", - text = "zuldrak_tree_02.m2", - value = "zuldrak_tree_02.m2", + fileId = "365176", + text = "goblin_diagram_01.m2", + value = "goblin_diagram_01.m2", }, { - fileId = "196800", - text = "zuldrak_tree_03.m2", - value = "zuldrak_tree_03.m2", + fileId = "365177", + text = "goblin_diagram_02.m2", + value = "goblin_diagram_02.m2", }, { - fileId = "196801", - text = "zuldrak_tree_04.m2", - value = "zuldrak_tree_04.m2", + fileId = "365178", + text = "goblin_diagram_03.m2", + value = "goblin_diagram_03.m2", }, { - fileId = "196820", - text = "zuldrak_vineplane_01.m2", - value = "zuldrak_vineplane_01.m2", + fileId = "365179", + text = "goblin_diagram_04.m2", + value = "goblin_diagram_04.m2", }, }, - text = "trees", - value = "trees", + text = "diagrams", + value = "diagrams", }, { children = { { - fileId = "196828", - text = "it_brazier01.m2", - value = "it_brazier01.m2", - }, - { - fileId = "196829", - text = "it_brazier02.m2", - value = "it_brazier02.m2", - }, - { - fileId = "196830", - text = "it_brazier03.m2", - value = "it_brazier03.m2", + fileId = "394567", + text = "goblin_elevator.m2", + value = "goblin_elevator.m2", }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { { - fileId = "196835", - text = "zd_roadpiece_01.m2", - value = "zd_roadpiece_01.m2", + fileId = "410264", + text = "goblin_horde_flare_01.m2", + value = "goblin_horde_flare_01.m2", }, + }, + text = "flare", + value = "flare", + }, + { + children = { { - fileId = "196836", - text = "zuldrak_archpost_01.m2", - value = "zuldrak_archpost_01.m2", + fileId = "371647", + text = "goblin_bucketofood_01.m2", + value = "goblin_bucketofood_01.m2", }, { - fileId = "196837", - text = "zuldrak_archpost_02.m2", - value = "zuldrak_archpost_02.m2", + fileId = "461241", + text = "goblin_bucketofood_01_nocollision.m2", + value = "goblin_bucketofood_01_nocollision.m2", }, { - fileId = "196838", - text = "zuldrak_archpost_03.m2", - value = "zuldrak_archpost_03.m2", + fileId = "371571", + text = "goblin_bucketofood_02.m2", + value = "goblin_bucketofood_02.m2", }, { - fileId = "196839", - text = "zuldrak_archpost_04.m2", - value = "zuldrak_archpost_04.m2", + fileId = "365000", + text = "goblin_food_01.m2", + value = "goblin_food_01.m2", }, { - fileId = "196840", - text = "zuldrak_archpost_05.m2", - value = "zuldrak_archpost_05.m2", + fileId = "365002", + text = "goblin_food_02.m2", + value = "goblin_food_02.m2", }, { - fileId = "196841", - text = "zuldrak_archpost_06.m2", - value = "zuldrak_archpost_06.m2", + fileId = "365003", + text = "goblin_food_03.m2", + value = "goblin_food_03.m2", }, { - fileId = "196843", - text = "zuldrak_archway_01.m2", - value = "zuldrak_archway_01.m2", + fileId = "365821", + text = "goblin_food_04.m2", + value = "goblin_food_04.m2", }, { - fileId = "196845", - text = "zuldrak_archway_02.m2", - value = "zuldrak_archway_02.m2", + fileId = "365822", + text = "goblin_food_05.m2", + value = "goblin_food_05.m2", }, { - fileId = "196846", - text = "zuldrak_archway_03.m2", - value = "zuldrak_archway_03.m2", + fileId = "365823", + text = "goblin_food_06.m2", + value = "goblin_food_06.m2", }, + }, + text = "food", + value = "food", + }, + { + children = { { - fileId = "196847", - text = "zuldrak_archway_04.m2", - value = "zuldrak_archway_04.m2", + fileId = "449094", + text = "goblin_tradeskilltrainer.m2", + value = "goblin_tradeskilltrainer.m2", }, + }, + text = "goblin_tradeskilltrainer", + value = "goblin_tradeskilltrainer", + }, + { + children = { { - fileId = "196848", - text = "zuldrak_archway_broken_02.m2", - value = "zuldrak_archway_broken_02.m2", + fileId = "197766", + text = "goblinhutbottles.m2", + value = "goblinhutbottles.m2", }, { - fileId = "196849", - text = "zuldrak_archway_broken_03.m2", - value = "zuldrak_archway_broken_03.m2", + fileId = "197767", + text = "goblinmachinery.m2", + value = "goblinmachinery.m2", }, { - fileId = "196852", - text = "zuldrak_archway_snow_02.m2", - value = "zuldrak_archway_snow_02.m2", + fileId = "197768", + text = "goblinweathervane.m2", + value = "goblinweathervane.m2", }, + }, + text = "goblinmachinery", + value = "goblinmachinery", + }, + { + children = { { - fileId = "196853", - text = "zuldrak_archway_snow_03.m2", - value = "zuldrak_archway_snow_03.m2", + fileId = "326824", + text = "horde_goblin_goblinmountain.m2", + value = "horde_goblin_goblinmountain.m2", }, + }, + text = "goblinmountain", + value = "goblinmountain", + }, + { + children = { { - fileId = "244090", - text = "zuldrak_coliseumgong.m2", - value = "zuldrak_coliseumgong.m2", + fileId = "359642", + text = "goblin_cog_01.m2", + value = "goblin_cog_01.m2", }, { - fileId = "196859", - text = "zuldrak_gong_01.m2", - value = "zuldrak_gong_01.m2", + fileId = "359640", + text = "goblin_nut_01.m2", + value = "goblin_nut_01.m2", }, { - fileId = "196861", - text = "zuldrak_head_01.m2", - value = "zuldrak_head_01.m2", + fileId = "359641", + text = "goblin_spring_01.m2", + value = "goblin_spring_01.m2", }, + }, + text = "goblinparts", + value = "goblinparts", + }, + { + children = { { - fileId = "196863", - text = "zuldrak_incense_01.m2", - value = "zuldrak_incense_01.m2", + fileId = "197777", + text = "crashedgoblinrc.m2", + value = "crashedgoblinrc.m2", }, { - fileId = "196867", - text = "zuldrak_roadcurb_01.m2", - value = "zuldrak_roadcurb_01.m2", + fileId = "197779", + text = "goblinrocketcart01.m2", + value = "goblinrocketcart01.m2", }, { - fileId = "196868", - text = "zuldrak_roadcurb_02.m2", - value = "zuldrak_roadcurb_02.m2", + fileId = "197780", + text = "goblinrocketcart02.m2", + value = "goblinrocketcart02.m2", }, { - fileId = "196869", - text = "zuldrak_roadcurb_02reverse.m2", - value = "zuldrak_roadcurb_02reverse.m2", + fileId = "244144", + text = "goblinrocketcart02_rc.m2", + value = "goblinrocketcart02_rc.m2", }, { - fileId = "196870", - text = "zuldrak_roadcurb_03.m2", - value = "zuldrak_roadcurb_03.m2", + fileId = "197781", + text = "goblinrocketcart03.m2", + value = "goblinrocketcart03.m2", }, { - fileId = "196871", - text = "zuldrak_roadcurb_03_simple.m2", - value = "zuldrak_roadcurb_03_simple.m2", + fileId = "197782", + text = "goblinrocketcart04.m2", + value = "goblinrocketcart04.m2", }, { - fileId = "196872", - text = "zuldrak_roadcurb_03wide.m2", - value = "zuldrak_roadcurb_03wide.m2", + fileId = "197783", + text = "goblinrocketcart05.m2", + value = "goblinrocketcart05.m2", }, { - fileId = "196873", - text = "zuldrak_roadcurb_04.m2", - value = "zuldrak_roadcurb_04.m2", + fileId = "197784", + text = "goblinrocketcart_rc.m2", + value = "goblinrocketcart_rc.m2", }, { - fileId = "196874", - text = "zuldrak_roadcurb_05.m2", - value = "zuldrak_roadcurb_05.m2", + fileId = "244145", + text = "goblinrocketcart_rc_blue.m2", + value = "goblinrocketcart_rc_blue.m2", }, + }, + text = "goblinrocketcarts", + value = "goblinrocketcarts", + }, + { + children = { { - fileId = "196875", - text = "zuldrak_roadcurb_05short.m2", - value = "zuldrak_roadcurb_05short.m2", + fileId = "197789", + text = "goblinshreddersuit01.m2", + value = "goblinshreddersuit01.m2", }, { - fileId = "196876", - text = "zuldrak_roadcurb_06.m2", - value = "zuldrak_roadcurb_06.m2", + fileId = "197790", + text = "goblinshreddersuit02.m2", + value = "goblinshreddersuit02.m2", }, + }, + text = "goblinshreddersuit", + value = "goblinshreddersuit", + }, + { + children = { { - fileId = "196877", - text = "zuldrak_roadcurb_07.m2", - value = "zuldrak_roadcurb_07.m2", + fileId = "197791", + text = "goblintent01.m2", + value = "goblintent01.m2", }, { - fileId = "196879", - text = "zuldrak_ruin_03.m2", - value = "zuldrak_ruin_03.m2", + fileId = "197792", + text = "goblintent02.m2", + value = "goblintent02.m2", }, { - fileId = "196881", - text = "zuldrak_ruin_03_basic.m2", - value = "zuldrak_ruin_03_basic.m2", + fileId = "197793", + text = "goblintent03.m2", + value = "goblintent03.m2", }, { - fileId = "196882", - text = "zuldrak_ruin_04.m2", - value = "zuldrak_ruin_04.m2", + fileId = "197794", + text = "goblintent04.m2", + value = "goblintent04.m2", }, { - fileId = "196883", - text = "zuldrak_ruin_05.m2", - value = "zuldrak_ruin_05.m2", + fileId = "197795", + text = "goblintent05.m2", + value = "goblintent05.m2", }, { - fileId = "196884", - text = "zuldrak_ruin_06.m2", - value = "zuldrak_ruin_06.m2", + fileId = "197796", + text = "goblintent06.m2", + value = "goblintent06.m2", }, { - fileId = "196885", - text = "zuldrak_ruin_10.m2", - value = "zuldrak_ruin_10.m2", + fileId = "197797", + text = "goblintent07.m2", + value = "goblintent07.m2", }, + }, + text = "goblintents", + value = "goblintents", + }, + { + children = { { - fileId = "196886", - text = "zuldrak_ruin_11.m2", - value = "zuldrak_ruin_11.m2", + fileId = "197799", + text = "goblinwagontnt_01.m2", + value = "goblinwagontnt_01.m2", }, + }, + text = "goblintntwagon", + value = "goblintntwagon", + }, + { + children = { { - fileId = "196887", - text = "zuldrak_ruin_12.m2", - value = "zuldrak_ruin_12.m2", + fileId = "349793", + text = "goblin_horde_hanginglamp_01.m2", + value = "goblin_horde_hanginglamp_01.m2", }, { - fileId = "196888", - text = "zuldrak_ruin_15.m2", - value = "zuldrak_ruin_15.m2", + fileId = "349794", + text = "goblin_horde_hanginglamp_02.m2", + value = "goblin_horde_hanginglamp_02.m2", }, + }, + text = "hanginglamp", + value = "hanginglamp", + }, + { + children = { { - fileId = "196889", - text = "zuldrak_ruin_16.m2", - value = "zuldrak_ruin_16.m2", + children = { + { + fileId = "322143", + text = "goblin_kezan_astroturf.m2", + value = "goblin_kezan_astroturf.m2", + }, + { + fileId = "324708", + text = "goblin_kezan_astroturf_02.m2", + value = "goblin_kezan_astroturf_02.m2", + }, + }, + text = "astroturf", + value = "astroturf", }, { - fileId = "196890", - text = "zuldrak_ruin_17.m2", - value = "zuldrak_ruin_17.m2", + children = { + { + fileId = "321803", + text = "goblin_kezan_beachchair_01.m2", + value = "goblin_kezan_beachchair_01.m2", + }, + { + fileId = "321804", + text = "goblin_kezan_beachchair_02.m2", + value = "goblin_kezan_beachchair_02.m2", + }, + }, + text = "chairs", + value = "chairs", }, { - fileId = "196891", - text = "zuldrak_ruin_cornersmall01.m2", - value = "zuldrak_ruin_cornersmall01.m2", + children = { + { + fileId = "466784", + text = "goblin_arrowyellow.m2", + value = "goblin_arrowyellow.m2", + }, + { + fileId = "320486", + text = "goblin_beachbucket_01.m2", + value = "goblin_beachbucket_01.m2", + }, + { + fileId = "320488", + text = "goblin_beachbucket_02.m2", + value = "goblin_beachbucket_02.m2", + }, + { + fileId = "320489", + text = "goblin_beachparasol_01.m2", + value = "goblin_beachparasol_01.m2", + }, + { + fileId = "320490", + text = "goblin_beachparasol_02.m2", + value = "goblin_beachparasol_02.m2", + }, + { + fileId = "320491", + text = "goblin_beachshovel_01.m2", + value = "goblin_beachshovel_01.m2", + }, + { + fileId = "320492", + text = "goblin_beachshovel_02.m2", + value = "goblin_beachshovel_02.m2", + }, + { + fileId = "320493", + text = "goblin_beachtowel_01.m2", + value = "goblin_beachtowel_01.m2", + }, + { + fileId = "320494", + text = "goblin_beachtowel_02.m2", + value = "goblin_beachtowel_02.m2", + }, + { + fileId = "331511", + text = "goblin_can_01.m2", + value = "goblin_can_01.m2", + }, + { + fileId = "331512", + text = "goblin_can_02.m2", + value = "goblin_can_02.m2", + }, + { + fileId = "331513", + text = "goblin_can_03.m2", + value = "goblin_can_03.m2", + }, + { + fileId = "331514", + text = "goblin_can_stack_01.m2", + value = "goblin_can_stack_01.m2", + }, + { + fileId = "318845", + text = "goblin_forge_01.m2", + value = "goblin_forge_01.m2", + }, + { + fileId = "329449", + text = "goblin_hankie_01.m2", + value = "goblin_hankie_01.m2", + }, + { + fileId = "322284", + text = "goblin_horde_wagon_03.m2", + value = "goblin_horde_wagon_03.m2", + }, + { + fileId = "322294", + text = "goblin_horde_wagon_04.m2", + value = "goblin_horde_wagon_04.m2", + }, + { + fileId = "326466", + text = "goblin_kezan_anvil_01.m2", + value = "goblin_kezan_anvil_01.m2", + }, + { + fileId = "327011", + text = "goblin_kezan_beaddrape_01.m2", + value = "goblin_kezan_beaddrape_01.m2", + }, + { + fileId = "327012", + text = "goblin_kezan_beaddrape_02.m2", + value = "goblin_kezan_beaddrape_02.m2", + }, + { + fileId = "321538", + text = "goblin_kezan_chair_01.m2", + value = "goblin_kezan_chair_01.m2", + }, + { + fileId = "336589", + text = "goblin_kezan_conveyorbelt_01.m2", + value = "goblin_kezan_conveyorbelt_01.m2", + }, + { + fileId = "327013", + text = "goblin_kezan_drape_01.m2", + value = "goblin_kezan_drape_01.m2", + }, + { + fileId = "320105", + text = "goblin_kezan_gaspump_01.m2", + value = "goblin_kezan_gaspump_01.m2", + }, + { + fileId = "337602", + text = "goblin_kezan_hanginglamp.m2", + value = "goblin_kezan_hanginglamp.m2", + }, + { + fileId = "321420", + text = "goblin_kezan_oilpump.m2", + value = "goblin_kezan_oilpump.m2", + }, + { + fileId = "321540", + text = "goblin_kezan_painting_01.m2", + value = "goblin_kezan_painting_01.m2", + }, + { + fileId = "321542", + text = "goblin_kezan_painting_02.m2", + value = "goblin_kezan_painting_02.m2", + }, + { + fileId = "321544", + text = "goblin_kezan_painting_03.m2", + value = "goblin_kezan_painting_03.m2", + }, + { + fileId = "321546", + text = "goblin_kezan_painting_04.m2", + value = "goblin_kezan_painting_04.m2", + }, + { + fileId = "321548", + text = "goblin_kezan_rug_01.m2", + value = "goblin_kezan_rug_01.m2", + }, + { + fileId = "321550", + text = "goblin_kezan_rug_02.m2", + value = "goblin_kezan_rug_02.m2", + }, + { + fileId = "326572", + text = "goblin_kezan_rug_03.m2", + value = "goblin_kezan_rug_03.m2", + }, + { + fileId = "326573", + text = "goblin_kezan_rug_04.m2", + value = "goblin_kezan_rug_04.m2", + }, + { + fileId = "326574", + text = "goblin_kezan_rug_05.m2", + value = "goblin_kezan_rug_05.m2", + }, + { + fileId = "326575", + text = "goblin_kezan_rug_06.m2", + value = "goblin_kezan_rug_06.m2", + }, + { + fileId = "332767", + text = "goblin_kezan_smokestack.m2", + value = "goblin_kezan_smokestack.m2", + }, + { + fileId = "321552", + text = "goblin_kezan_tablelamp_01.m2", + value = "goblin_kezan_tablelamp_01.m2", + }, + { + fileId = "466785", + text = "goblin_kezan_tablelamp_02.m2", + value = "goblin_kezan_tablelamp_02.m2", + }, + { + fileId = "333925", + text = "goblin_kezan_uncle_sam_01.m2", + value = "goblin_kezan_uncle_sam_01.m2", + }, + { + fileId = "321553", + text = "goblin_kezan_walllamp_01.m2", + value = "goblin_kezan_walllamp_01.m2", + }, + { + fileId = "321554", + text = "goblin_kezan_walllamp_02.m2", + value = "goblin_kezan_walllamp_02.m2", + }, + { + fileId = "466786", + text = "goblin_kezan_walllamp_03.m2", + value = "goblin_kezan_walllamp_03.m2", + }, + { + fileId = "325249", + text = "goblin_kezan_warning_sign_01.m2", + value = "goblin_kezan_warning_sign_01.m2", + }, + { + fileId = "325250", + text = "goblin_kezan_warning_sign_02.m2", + value = "goblin_kezan_warning_sign_02.m2", + }, + { + fileId = "325262", + text = "goblin_kezan_warning_sign_03.m2", + value = "goblin_kezan_warning_sign_03.m2", + }, + { + fileId = "325263", + text = "goblin_kezan_warning_sign_04.m2", + value = "goblin_kezan_warning_sign_04.m2", + }, + { + fileId = "328467", + text = "goblin_kezan_wheel_01.m2", + value = "goblin_kezan_wheel_01.m2", + }, + { + fileId = "328469", + text = "goblin_kezan_wheel_02.m2", + value = "goblin_kezan_wheel_02.m2", + }, + { + fileId = "328472", + text = "goblin_kezan_wheel_03.m2", + value = "goblin_kezan_wheel_03.m2", + }, + { + fileId = "328470", + text = "goblin_kezan_wheel_04.m2", + value = "goblin_kezan_wheel_04.m2", + }, + { + fileId = "328471", + text = "goblin_kezan_wheel_05.m2", + value = "goblin_kezan_wheel_05.m2", + }, + { + fileId = "328473", + text = "goblin_kezan_wheel_06.m2", + value = "goblin_kezan_wheel_06.m2", + }, + { + fileId = "322433", + text = "goblin_metal_tombstone_01.m2", + value = "goblin_metal_tombstone_01.m2", + }, + { + fileId = "322434", + text = "goblin_metal_tombstone_02.m2", + value = "goblin_metal_tombstone_02.m2", + }, + { + fileId = "322435", + text = "goblin_metal_tombstone_03.m2", + value = "goblin_metal_tombstone_03.m2", + }, + { + fileId = "322645", + text = "goblin_metal_tombstone_04.m2", + value = "goblin_metal_tombstone_04.m2", + }, + { + fileId = "322646", + text = "goblin_metal_tombstone_05.m2", + value = "goblin_metal_tombstone_05.m2", + }, + { + fileId = "386413", + text = "goblin_waterbobber_01.m2", + value = "goblin_waterbobber_01.m2", + }, + { + fileId = "386526", + text = "goblin_waterbobber_02.m2", + value = "goblin_waterbobber_02.m2", + }, + { + fileId = "467034", + text = "goblin_windsock_01.m2", + value = "goblin_windsock_01.m2", + }, + { + fileId = "466787", + text = "horde_submarinedoor.m2", + value = "horde_submarinedoor.m2", + }, + }, + text = "items", + value = "items", }, { - fileId = "196892", - text = "zuldrak_ruin_cornertall01.m2", - value = "zuldrak_ruin_cornertall01.m2", + children = { + { + fileId = "424903", + text = "floatinglitter01.m2", + value = "floatinglitter01.m2", + }, + { + fileId = "424904", + text = "floatinglitter02.m2", + value = "floatinglitter02.m2", + }, + { + fileId = "424905", + text = "floatinglitter03.m2", + value = "floatinglitter03.m2", + }, + { + fileId = "424906", + text = "floatinglitter04.m2", + value = "floatinglitter04.m2", + }, + { + fileId = "424907", + text = "floatinglitter05.m2", + value = "floatinglitter05.m2", + }, + { + fileId = "424908", + text = "floatinglitter06.m2", + value = "floatinglitter06.m2", + }, + { + fileId = "424909", + text = "floatinglitter07.m2", + value = "floatinglitter07.m2", + }, + { + fileId = "424910", + text = "floatinglitter08.m2", + value = "floatinglitter08.m2", + }, + }, + text = "litter", + value = "litter", }, { - fileId = "196893", - text = "zuldrak_ruin_stairs_02.m2", - value = "zuldrak_ruin_stairs_02.m2", + children = { + { + fileId = "324946", + text = "goblin_kezan_minecart_01.m2", + value = "goblin_kezan_minecart_01.m2", + }, + { + fileId = "324947", + text = "goblin_kezan_minecart_02.m2", + value = "goblin_kezan_minecart_02.m2", + }, + }, + text = "minecart", + value = "minecart", }, { - fileId = "196894", - text = "zuldrak_ruin_stairs_03.m2", - value = "zuldrak_ruin_stairs_03.m2", + children = { + { + fileId = "322252", + text = "goblin_kezan_pinkflamingo_01.m2", + value = "goblin_kezan_pinkflamingo_01.m2", + }, + }, + text = "pinkflamingo", + value = "pinkflamingo", }, { - fileId = "196895", - text = "zuldrak_ruin_stairs_03_wide.m2", - value = "zuldrak_ruin_stairs_03_wide.m2", + children = { + { + fileId = "323299", + text = "goblin_kezan_poolpony_floating_blue_01.m2", + value = "goblin_kezan_poolpony_floating_blue_01.m2", + }, + { + fileId = "323301", + text = "goblin_kezan_poolpony_floating_green_01.m2", + value = "goblin_kezan_poolpony_floating_green_01.m2", + }, + { + fileId = "323303", + text = "goblin_kezan_poolpony_floating_orange_01.m2", + value = "goblin_kezan_poolpony_floating_orange_01.m2", + }, + { + fileId = "323304", + text = "goblin_kezan_poolpony_stationary_blue_01.m2", + value = "goblin_kezan_poolpony_stationary_blue_01.m2", + }, + { + fileId = "323305", + text = "goblin_kezan_poolpony_stationary_green_01.m2", + value = "goblin_kezan_poolpony_stationary_green_01.m2", + }, + { + fileId = "323306", + text = "goblin_kezan_poolpony_stationary_orange_01.m2", + value = "goblin_kezan_poolpony_stationary_orange_01.m2", + }, + }, + text = "poolpony", + value = "poolpony", }, { - fileId = "196896", - text = "zuldrak_ruin_wall_02.m2", - value = "zuldrak_ruin_wall_02.m2", + children = { + { + fileId = "322332", + text = "goblin_kezan_roadsupport_base.m2", + value = "goblin_kezan_roadsupport_base.m2", + }, + { + fileId = "322285", + text = "goblin_kezan_roadsupport_clamp.m2", + value = "goblin_kezan_roadsupport_clamp.m2", + }, + { + fileId = "322633", + text = "goblin_kezan_roadsupport_doublewide.m2", + value = "goblin_kezan_roadsupport_doublewide.m2", + }, + { + fileId = "324709", + text = "goblin_kezan_roadsupport_extralongsupport.m2", + value = "goblin_kezan_roadsupport_extralongsupport.m2", + }, + { + fileId = "322327", + text = "goblin_kezan_roadsupport_longsupport.m2", + value = "goblin_kezan_roadsupport_longsupport.m2", + }, + { + fileId = "322333", + text = "goblin_kezan_roadsupport_shortsupport.m2", + value = "goblin_kezan_roadsupport_shortsupport.m2", + }, + { + fileId = "322638", + text = "goblin_kezan_roadsupport_single.m2", + value = "goblin_kezan_roadsupport_single.m2", + }, + }, + text = "road", + value = "road", }, { - fileId = "196898", - text = "zuldrak_ruinblocks_01.m2", - value = "zuldrak_ruinblocks_01.m2", + children = { + { + fileId = "325752", + text = "goblin_kezan_shed.m2", + value = "goblin_kezan_shed.m2", + }, + }, + text = "sheds", + value = "sheds", }, { - fileId = "196902", - text = "zuldrak_stoneface_01.m2", - value = "zuldrak_stoneface_01.m2", + children = { + { + fileId = "330140", + text = "goblin_kezan_signpost_01.m2", + value = "goblin_kezan_signpost_01.m2", + }, + { + fileId = "330141", + text = "goblin_kezan_signpost_02.m2", + value = "goblin_kezan_signpost_02.m2", + }, + { + fileId = "321180", + text = "goblin_kezanbillboard_01.m2", + value = "goblin_kezanbillboard_01.m2", + }, + { + fileId = "322189", + text = "goblin_kezanbillboard_02.m2", + value = "goblin_kezanbillboard_02.m2", + }, + { + fileId = "326714", + text = "goblin_kezanbillboard_03.m2", + value = "goblin_kezanbillboard_03.m2", + }, + }, + text = "signs", + value = "signs", }, { - fileId = "196903", - text = "zuldrak_stonepost_01.m2", - value = "zuldrak_stonepost_01.m2", + children = { + { + fileId = "378620", + text = "goblin_kezan_smokestacks_01.m2", + value = "goblin_kezan_smokestacks_01.m2", + }, + { + fileId = "378621", + text = "goblin_kezan_smokestacks_03.m2", + value = "goblin_kezan_smokestacks_03.m2", + }, + { + fileId = "378622", + text = "goblin_kezan_smokestacks_04.m2", + value = "goblin_kezan_smokestacks_04.m2", + }, + }, + text = "smoke", + value = "smoke", }, { - fileId = "196904", - text = "zuldrak_stonepost_02.m2", - value = "zuldrak_stonepost_02.m2", + children = { + { + fileId = "331801", + text = "goblin_kezan_target_dummy_01.m2", + value = "goblin_kezan_target_dummy_01.m2", + }, + }, + text = "targetdummy", + value = "targetdummy", }, { - fileId = "196905", - text = "zuldrak_stonepost_end_01.m2", - value = "zuldrak_stonepost_end_01.m2", + children = { + { + fileId = "319848", + text = "goblin_kezan_telegraphpole_01.m2", + value = "goblin_kezan_telegraphpole_01.m2", + }, + { + fileId = "320496", + text = "goblin_kezan_telegraphpole_stoplight_01.m2", + value = "goblin_kezan_telegraphpole_stoplight_01.m2", + }, + { + fileId = "319828", + text = "goblin_slums_tent_01.m2", + value = "goblin_slums_tent_01.m2", + }, + { + fileId = "319850", + text = "goblin_slums_tent_02.m2", + value = "goblin_slums_tent_02.m2", + }, + { + fileId = "319852", + text = "goblin_slums_tent_03.m2", + value = "goblin_slums_tent_03.m2", + }, + }, + text = "tents", + value = "tents", }, { - fileId = "196908", - text = "zuldrak_wallend_01.m2", - value = "zuldrak_wallend_01.m2", + children = { + { + fileId = "319446", + text = "goblin_kezanwall_01.m2", + value = "goblin_kezanwall_01.m2", + }, + { + fileId = "319830", + text = "goblin_kezanwall_02.m2", + value = "goblin_kezanwall_02.m2", + }, + { + fileId = "327014", + text = "goblin_kezanwall_04.m2", + value = "goblin_kezanwall_04.m2", + }, + { + fileId = "319444", + text = "goblin_kezanwallcorner_01.m2", + value = "goblin_kezanwallcorner_01.m2", + }, + { + fileId = "319445", + text = "goblin_kezanwallcorner_02.m2", + value = "goblin_kezanwallcorner_02.m2", + }, + { + fileId = "319274", + text = "goblin_kezanwallcorner_03.m2", + value = "goblin_kezanwallcorner_03.m2", + }, + }, + text = "walls", + value = "walls", }, + }, + text = "kezan", + value = "kezan", + }, + { + children = { { - fileId = "196909", - text = "zuldrak_wallrubble_01.m2", - value = "zuldrak_wallrubble_01.m2", + fileId = "332198", + text = "goblin_horde_launchramp_01.m2", + value = "goblin_horde_launchramp_01.m2", }, { - fileId = "196910", - text = "zuldrak_wallrubble_02.m2", - value = "zuldrak_wallrubble_02.m2", + fileId = "394512", + text = "goblin_horde_launchramp_02.m2", + value = "goblin_horde_launchramp_02.m2", }, }, - text = "trollruins", - value = "trollruins", + text = "launchramp", + value = "launchramp", }, { children = { { - fileId = "244091", - text = "zuldrak_gundrak_hub_ripples.m2", - value = "zuldrak_gundrak_hub_ripples.m2", + fileId = "367617", + text = "goblin_lavalamp_01.m2", + value = "goblin_lavalamp_01.m2", }, { - fileId = "244092", - text = "zuldrak_purple_water_mist.m2", - value = "zuldrak_purple_water_mist.m2", + fileId = "367618", + text = "goblin_lavalamp_02.m2", + value = "goblin_lavalamp_02.m2", }, { - fileId = "244104", - text = "zuldrak_waterfall_type1.m2", - value = "zuldrak_waterfall_type1.m2", + fileId = "367620", + text = "goblin_lavalamp_03.m2", + value = "goblin_lavalamp_03.m2", }, { - fileId = "244105", - text = "zuldrak_waterfall_type1_purple.m2", - value = "zuldrak_waterfall_type1_purple.m2", + fileId = "367645", + text = "goblin_lavalamp_plug.m2", + value = "goblin_lavalamp_plug.m2", }, + }, + text = "lavalamp", + value = "lavalamp", + }, + { + children = { { - fileId = "244106", - text = "zuldrak_waterfall_type2.m2", - value = "zuldrak_waterfall_type2.m2", + fileId = "311821", + text = "divinghelm.m2", + value = "divinghelm.m2", }, { - fileId = "244107", - text = "zuldrak_waterfall_type2_purple.m2", - value = "zuldrak_waterfall_type2_purple.m2", + fileId = "308009", + text = "goblin_bamboo_ladder_01.m2", + value = "goblin_bamboo_ladder_01.m2", }, { - fileId = "244108", - text = "zuldrak_waterfall_type2_purple_b.m2", - value = "zuldrak_waterfall_type2_purple_b.m2", + fileId = "308010", + text = "goblin_bamboo_ladder_02.m2", + value = "goblin_bamboo_ladder_02.m2", }, { - fileId = "244109", - text = "zuldrak_waterfall_type2_purple_c.m2", - value = "zuldrak_waterfall_type2_purple_c.m2", + fileId = "308124", + text = "goblin_bamboo_structure_01.m2", + value = "goblin_bamboo_structure_01.m2", }, { - fileId = "244110", - text = "zuldrak_waterfalls_set1_circle_ripples.m2", - value = "zuldrak_waterfalls_set1_circle_ripples.m2", + fileId = "314804", + text = "goblin_bamboo_structure_02.m2", + value = "goblin_bamboo_structure_02.m2", }, { - fileId = "244111", - text = "zuldrak_waterfalls_set1_high_purple.m2", - value = "zuldrak_waterfalls_set1_high_purple.m2", + fileId = "309920", + text = "goblin_bamboo_tombstone_01.m2", + value = "goblin_bamboo_tombstone_01.m2", }, { - fileId = "244112", - text = "zuldrak_waterfalls_set1_high_ripples.m2", - value = "zuldrak_waterfalls_set1_high_ripples.m2", + fileId = "309921", + text = "goblin_bamboo_tombstone_02.m2", + value = "goblin_bamboo_tombstone_02.m2", }, { - fileId = "244113", - text = "zuldrak_waterfog_01.m2", - value = "zuldrak_waterfog_01.m2", + fileId = "309922", + text = "goblin_bamboo_tombstone_03.m2", + value = "goblin_bamboo_tombstone_03.m2", + }, + { + fileId = "309924", + text = "goblin_bamboo_tombstone_04.m2", + value = "goblin_bamboo_tombstone_04.m2", + }, + { + fileId = "309925", + text = "goblin_bamboo_tombstone_05.m2", + value = "goblin_bamboo_tombstone_05.m2", }, - }, - text = "waterfalls", - value = "waterfalls", - }, - }, - text = "zuldrak", - value = "zuldrak", - }, - }, - text = "doodads", - value = "doodads", - }, - }, - text = "expansion02", - value = "expansion02", - }, - { - children = { - { - children = { - { - children = { - { - children = { { - fileId = "305630", - text = "twilightshammer_altar01.m2", - value = "twilightshammer_altar01.m2", + fileId = "309926", + text = "goblin_bamboo_tombstone_06.m2", + value = "goblin_bamboo_tombstone_06.m2", }, - }, - text = "altar", - value = "altar", - }, - { - children = { { - fileId = "305638", - text = "twilightshammer_bannercataclysm_01.m2", - value = "twilightshammer_bannercataclysm_01.m2", + fileId = "309927", + text = "goblin_bamboo_tombstone_07.m2", + value = "goblin_bamboo_tombstone_07.m2", }, { - fileId = "311628", - text = "twilightshammer_bannercataclysm_02.m2", - value = "twilightshammer_bannercataclysm_02.m2", + fileId = "309928", + text = "goblin_bamboo_tombstone_08.m2", + value = "goblin_bamboo_tombstone_08.m2", }, - }, - text = "banners", - value = "banners", - }, - { - children = { { - fileId = "317820", - text = "twilightshammer_magicaldevice_04air.m2", - value = "twilightshammer_magicaldevice_04air.m2", + fileId = "309929", + text = "goblin_bamboo_tombstone_09.m2", + value = "goblin_bamboo_tombstone_09.m2", }, { - fileId = "317821", - text = "twilightshammer_magicaldevice_04earth.m2", - value = "twilightshammer_magicaldevice_04earth.m2", + fileId = "309930", + text = "goblin_bamboo_tombstone_10.m2", + value = "goblin_bamboo_tombstone_10.m2", }, { - fileId = "317822", - text = "twilightshammer_magicaldevice_04fire.m2", - value = "twilightshammer_magicaldevice_04fire.m2", + fileId = "331516", + text = "goblin_banner_01.m2", + value = "goblin_banner_01.m2", }, { - fileId = "317823", - text = "twilightshammer_magicaldevice_04water.m2", - value = "twilightshammer_magicaldevice_04water.m2", + fileId = "331521", + text = "goblin_banner_02.m2", + value = "goblin_banner_02.m2", }, - }, - text = "magicaldevices", - value = "magicaldevices", - }, - { - children = { { - fileId = "311621", - text = "twilightshammer_summoningportal_air01.m2", - value = "twilightshammer_summoningportal_air01.m2", + fileId = "394813", + text = "goblin_banner_hanging_01.m2", + value = "goblin_banner_hanging_01.m2", }, { - fileId = "311624", - text = "twilightshammer_summoningportal_earth01.m2", - value = "twilightshammer_summoningportal_earth01.m2", + fileId = "394814", + text = "goblin_banner_hanging_02.m2", + value = "goblin_banner_hanging_02.m2", }, { - fileId = "311626", - text = "twilightshammer_summoningportal_fire01.m2", - value = "twilightshammer_summoningportal_fire01.m2", + fileId = "307324", + text = "goblin_barrel_brown_01.m2", + value = "goblin_barrel_brown_01.m2", }, { - fileId = "305643", - text = "twilightshammer_summoningportal_water01.m2", - value = "twilightshammer_summoningportal_water01.m2", + fileId = "307325", + text = "goblin_barrel_brown_02.m2", + value = "goblin_barrel_brown_02.m2", + }, + { + fileId = "307326", + text = "goblin_barrel_green_01.m2", + value = "goblin_barrel_green_01.m2", + }, + { + fileId = "307327", + text = "goblin_barrel_green_02.m2", + value = "goblin_barrel_green_02.m2", + }, + { + fileId = "307769", + text = "goblin_barricade_01.m2", + value = "goblin_barricade_01.m2", + }, + { + fileId = "307770", + text = "goblin_barricade_02.m2", + value = "goblin_barricade_02.m2", + }, + { + fileId = "307771", + text = "goblin_barricade_03.m2", + value = "goblin_barricade_03.m2", + }, + { + fileId = "314517", + text = "goblin_cage_01.m2", + value = "goblin_cage_01.m2", + }, + { + fileId = "359597", + text = "goblin_cage_02.m2", + value = "goblin_cage_02.m2", + }, + { + fileId = "317827", + text = "goblin_christmaslight_all.m2", + value = "goblin_christmaslight_all.m2", + }, + { + fileId = "317828", + text = "goblin_christmaslight_all_large.m2", + value = "goblin_christmaslight_all_large.m2", + }, + { + fileId = "317829", + text = "goblin_christmaslight_green.m2", + value = "goblin_christmaslight_green.m2", + }, + { + fileId = "317830", + text = "goblin_christmaslight_red.m2", + value = "goblin_christmaslight_red.m2", }, - }, - text = "summoningportals", - value = "summoningportals", - }, - }, - text = "twilighthammer", - value = "twilighthammer", - }, - }, - text = "doodads", - value = "doodads", - }, - }, - text = "expansion03", - value = "expansion03", - }, - { - children = { - { - children = { - { - fileId = "1401005", - text = "shop_giftbox01.m2", - value = "shop_giftbox01.m2", - }, - }, - text = "doodads", - value = "doodads", - }, - }, - text = "expansion06", - value = "expansion06", - }, - { - children = { - { - children = { - { - fileId = "196911", - text = "ed_dragonshrine_a.m2", - value = "ed_dragonshrine_a.m2", - }, - { - fileId = "196912", - text = "ed_largevrykulhut.m2", - value = "ed_largevrykulhut.m2", - }, - { - fileId = "196913", - text = "ed_smallvrykulhut.m2", - value = "ed_smallvrykulhut.m2", - }, - { - fileId = "196914", - text = "ed_vrykulmediumscale.m2", - value = "ed_vrykulmediumscale.m2", - }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { - { - fileId = "196915", - text = "ed_grizzlepaw.m2", - value = "ed_grizzlepaw.m2", - }, - }, - text = "grizzlyhills", - value = "grizzlyhills", - }, - { - children = { - { - fileId = "196916", - text = "ed_daggercapcave.m2", - value = "ed_daggercapcave.m2", - }, - }, - text = "howlingfjord", - value = "howlingfjord", - }, - { - children = { - { - fileId = "196917", - text = "ed_codhouse01.m2", - value = "ed_codhouse01.m2", - }, - { - fileId = "196918", - text = "ed_codhouse02.m2", - value = "ed_codhouse02.m2", - }, - }, - text = "icecrownglacier", - value = "icecrownglacier", - }, - { - children = { - { - fileId = "196919", - text = "ed_stormpeaks01.m2", - value = "ed_stormpeaks01.m2", - }, - }, - text = "stormpeaks", - value = "stormpeaks", - }, - { - children = { - { - fileId = "196927", - text = "ed_testdoodad.m2", - value = "ed_testdoodad.m2", - }, - { - fileId = "196928", - text = "frozen_throne_nosky_eyesclosed.m2", - value = "frozen_throne_nosky_eyesclosed.m2", - }, - { - fileId = "196929", - text = "frozen_throne_nosky_eyesopen.m2", - value = "frozen_throne_nosky_eyesopen.m2", - }, - { - fileId = "196930", - text = "frozen_throne_sky_eyesclosed.m2", - value = "frozen_throne_sky_eyesclosed.m2", - }, - { - fileId = "196931", - text = "frozen_throne_sky_eyesopen.m2", - value = "frozen_throne_sky_eyesopen.m2", - }, - }, - text = "test", - value = "test", - }, - { - children = { - { - fileId = "196933", - text = "forsakencatapult_doodad.m2", - value = "forsakencatapult_doodad.m2", - }, - }, - text = "vehicletest", - value = "vehicletest", - }, - { - children = { - { - fileId = "196936", - text = "ed_zuldrakaquaduccurve.m2", - value = "ed_zuldrakaquaduccurve.m2", - }, - { - fileId = "196937", - text = "ed_zuldrakaquaducpipe01.m2", - value = "ed_zuldrakaquaducpipe01.m2", - }, - { - fileId = "196938", - text = "ed_zuldrakaquaducpipe02.m2", - value = "ed_zuldrakaquaducpipe02.m2", - }, - { - fileId = "196939", - text = "ed_zuldrakaquaducsupport.m2", - value = "ed_zuldrakaquaducsupport.m2", - }, - { - fileId = "196940", - text = "ed_zuldrakaquaductip.m2", - value = "ed_zuldrakaquaductip.m2", - }, - { - fileId = "196941", - text = "ed_zuldrakbridge_fire.m2", - value = "ed_zuldrakbridge_fire.m2", - }, - { - fileId = "196942", - text = "ed_zuldrakbridge_fire_02.m2", - value = "ed_zuldrakbridge_fire_02.m2", - }, - { - fileId = "244114", - text = "ed_zuldrakbridge_fire_03.m2", - value = "ed_zuldrakbridge_fire_03.m2", - }, - { - fileId = "196943", - text = "ed_zuldrakcoliseum.m2", - value = "ed_zuldrakcoliseum.m2", - }, - { - fileId = "196944", - text = "ed_zuldrakstairs_large_ext.m2", - value = "ed_zuldrakstairs_large_ext.m2", - }, - { - fileId = "196945", - text = "ed_zuldrakstairs_large_int.m2", - value = "ed_zuldrakstairs_large_int.m2", - }, - { - fileId = "196946", - text = "ed_zuldrakstairs_large_straight.m2", - value = "ed_zuldrakstairs_large_straight.m2", - }, - { - fileId = "196947", - text = "ed_zuldrakstairs_small_ext.m2", - value = "ed_zuldrakstairs_small_ext.m2", - }, - { - fileId = "196948", - text = "ed_zuldrakstairs_small_int.m2", - value = "ed_zuldrakstairs_small_int.m2", - }, - { - fileId = "196949", - text = "ed_zuldrakstairs_small_straight.m2", - value = "ed_zuldrakstairs_small_straight.m2", - }, - { - fileId = "196950", - text = "ed_zuldrakwall150.m2", - value = "ed_zuldrakwall150.m2", - }, - { - fileId = "196951", - text = "ed_zuldrakwall150skull.m2", - value = "ed_zuldrakwall150skull.m2", - }, - { - fileId = "196952", - text = "ed_zuldrakwall300.m2", - value = "ed_zuldrakwall300.m2", - }, - { - fileId = "196953", - text = "ed_zuldrakwall50.m2", - value = "ed_zuldrakwall50.m2", - }, - { - fileId = "196954", - text = "ed_zuldrakwallbigstairs01.m2", - value = "ed_zuldrakwallbigstairs01.m2", - }, - { - fileId = "196955", - text = "ed_zuldrakwallbigstairs02.m2", - value = "ed_zuldrakwallbigstairs02.m2", - }, - { - fileId = "196956", - text = "ed_zuldrakwallcanaltube.m2", - value = "ed_zuldrakwallcanaltube.m2", - }, - { - fileId = "196957", - text = "ed_zuldrakwallextcorner.m2", - value = "ed_zuldrakwallextcorner.m2", - }, - { - fileId = "196958", - text = "ed_zuldrakwallextcornerbroken.m2", - value = "ed_zuldrakwallextcornerbroken.m2", - }, - { - fileId = "196959", - text = "ed_zuldrakwallhole.m2", - value = "ed_zuldrakwallhole.m2", - }, - { - fileId = "196960", - text = "ed_zuldrakwallintcorner.m2", - value = "ed_zuldrakwallintcorner.m2", - }, - { - fileId = "196961", - text = "ed_zuldrakwallintcornerbroken.m2", - value = "ed_zuldrakwallintcornerbroken.m2", - }, - { - fileId = "196962", - text = "ed_zuldrakwallridge.m2", - value = "ed_zuldrakwallridge.m2", - }, - { - fileId = "196963", - text = "ed_zuldrakwallrubbleleft.m2", - value = "ed_zuldrakwallrubbleleft.m2", - }, - { - fileId = "196964", - text = "ed_zuldrakwallrubbleright.m2", - value = "ed_zuldrakwallrubbleright.m2", - }, - { - fileId = "196965", - text = "ed_zuldrakwallsmallstairs.m2", - value = "ed_zuldrakwallsmallstairs.m2", - }, - { - fileId = "196966", - text = "ed_zuldrakwallwaterbreak.m2", - value = "ed_zuldrakwallwaterbreak.m2", - }, - }, - text = "zuldrak", - value = "zuldrak", - }, - }, - text = "exteriordesigners", - value = "exteriordesigners", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "196975", - text = "berrybush01.m2", - value = "berrybush01.m2", - }, - }, - text = "bushes", - value = "bushes", - }, - { - children = { - { - fileId = "196976", - text = "chest01.m2", - value = "chest01.m2", - }, - }, - text = "chest01", - value = "chest01", - }, - { - children = { - { - fileId = "196979", - text = "chest02.m2", - value = "chest02.m2", - }, - }, - text = "chest02", - value = "chest02", - }, - { - children = { - { - fileId = "196982", - text = "chest03.m2", - value = "chest03.m2", - }, - }, - text = "chest03", - value = "chest03", - }, - { - children = { - { - fileId = "196987", - text = "chest04.m2", - value = "chest04.m2", - }, - }, - text = "chest04", - value = "chest04", - }, - { - children = { - { - fileId = "196988", - text = "chest01b.m2", - value = "chest01b.m2", - }, - { - fileId = "196989", - text = "chest01c.m2", - value = "chest01c.m2", - }, - { - fileId = "196990", - text = "chestactive01.m2", - value = "chestactive01.m2", - }, - { - fileId = "244115", - text = "helmchest01.m2", - value = "helmchest01.m2", - }, - }, - text = "chests", - value = "chests", - }, - { - children = { - { - fileId = "196993", - text = "snowballmound01.m2", - value = "snowballmound01.m2", - }, - }, - text = "christmas", - value = "christmas", - }, - { - children = { - { - fileId = "196998", - text = "giantclamactive.m2", - value = "giantclamactive.m2", - }, - { - fileId = "196999", - text = "giantclamclosed.m2", - value = "giantclamclosed.m2", - }, - }, - text = "clam", - value = "clam", - }, - { - children = { - { - children = { { - fileId = "197001", - text = "giantportcullisflatbottom01.m2", - value = "giantportcullisflatbottom01.m2", + fileId = "317831", + text = "goblin_christmaslight_yellow.m2", + value = "goblin_christmaslight_yellow.m2", }, - }, - text = "giantportcullis", - value = "giantportcullis", - }, - { - children = { { - fileId = "197002", - text = "gnomeregandoor01.m2", - value = "gnomeregandoor01.m2", + fileId = "307329", + text = "goblin_crate_01.m2", + value = "goblin_crate_01.m2", }, - }, - text = "gnomeregandoors", - value = "gnomeregandoors", - }, - { - children = { { - fileId = "197003", - text = "sunktemple_portcullis.m2", - value = "sunktemple_portcullis.m2", + fileId = "307330", + text = "goblin_crate_02.m2", + value = "goblin_crate_02.m2", }, - }, - text = "sunkentempledoors", - value = "sunkentempledoors", - }, - { - children = { { - fileId = "197004", - text = "uldamandoor01.m2", - value = "uldamandoor01.m2", + fileId = "307331", + text = "goblin_crate_03.m2", + value = "goblin_crate_03.m2", }, - }, - text = "uldamandoors", - value = "uldamandoors", - }, - }, - text = "doors", - value = "doors", - }, - { - children = { - { - fileId = "197007", - text = "instanceportal.m2", - value = "instanceportal.m2", - }, - { - fileId = "197008", - text = "instanceportal_green.m2", - value = "instanceportal_green.m2", - }, - { - fileId = "197009", - text = "instanceportal_purpledifficulty.m2", - value = "instanceportal_purpledifficulty.m2", - }, - { - fileId = "197010", - text = "instanceportal_purpledifficultyicon.m2", - value = "instanceportal_purpledifficultyicon.m2", - }, - { - fileId = "197011", - text = "instanceportal_red.m2", - value = "instanceportal_red.m2", - }, - { - fileId = "197012", - text = "instanceportal_white.m2", - value = "instanceportal_white.m2", - }, - { - fileId = "197013", - text = "instanceportalcollision.m2", - value = "instanceportalcollision.m2", - }, - { - fileId = "197017", - text = "summon_ritual.m2", - value = "summon_ritual.m2", - }, - { - fileId = "197018", - text = "temporal_displacement.m2", - value = "temporal_displacement.m2", - }, - }, - text = "instanceportal", - value = "instanceportal", - }, - { - children = { - { - fileId = "197020", - text = "stormwindmageportal01.m2", - value = "stormwindmageportal01.m2", - }, - }, - text = "mageportals", - value = "mageportals", - }, - { - children = { - { - fileId = "197022", - text = "meetingstone01.m2", - value = "meetingstone01.m2", - }, - { - fileId = "197024", - text = "meetingstone02.m2", - value = "meetingstone02.m2", - }, - { - fileId = "197026", - text = "meetingstone03.m2", - value = "meetingstone03.m2", - }, - { - fileId = "197028", - text = "meetingstone04.m2", - value = "meetingstone04.m2", - }, - { - fileId = "197030", - text = "meetingstone05.m2", - value = "meetingstone05.m2", - }, - }, - text = "meetingstones", - value = "meetingstones", - }, - { - children = { - { - fileId = "197038", - text = "gemrock01.m2", - value = "gemrock01.m2", - }, - }, - text = "rocks", - value = "rocks", - }, - { - children = { - { - fileId = "244118", - text = "mageportal_cavernsoftime.m2", - value = "mageportal_cavernsoftime.m2", - }, - { - fileId = "244119", - text = "mageportal_dalaran.m2", - value = "mageportal_dalaran.m2", - }, - { - fileId = "197042", - text = "mageportal_darnassus.m2", - value = "mageportal_darnassus.m2", - }, - { - fileId = "197043", - text = "mageportal_exodar.m2", - value = "mageportal_exodar.m2", - }, - { - fileId = "197044", - text = "mageportal_ironforge.m2", - value = "mageportal_ironforge.m2", - }, - { - fileId = "197045", - text = "mageportal_karazhan.m2", - value = "mageportal_karazhan.m2", - }, - { - fileId = "197046", - text = "mageportal_maraudon.m2", - value = "mageportal_maraudon.m2", - }, - { - fileId = "197047", - text = "mageportal_ogrimmar.m2", - value = "mageportal_ogrimmar.m2", - }, - { - fileId = "197048", - text = "mageportal_shattrath.m2", - value = "mageportal_shattrath.m2", - }, - { - fileId = "197049", - text = "mageportal_silvermoon.m2", - value = "mageportal_silvermoon.m2", - }, - { - fileId = "307023", - text = "mageportal_stairofdestiny.m2", - value = "mageportal_stairofdestiny.m2", - }, - { - fileId = "197050", - text = "mageportal_stonard.m2", - value = "mageportal_stonard.m2", - }, - { - fileId = "197051", - text = "mageportal_stormwind.m2", - value = "mageportal_stormwind.m2", - }, - { - fileId = "197052", - text = "mageportal_sunwell.m2", - value = "mageportal_sunwell.m2", - }, - { - fileId = "197053", - text = "mageportal_theramore.m2", - value = "mageportal_theramore.m2", - }, - { - fileId = "197054", - text = "mageportal_thunderbluff.m2", - value = "mageportal_thunderbluff.m2", - }, - { - fileId = "197055", - text = "mageportal_undercity.m2", - value = "mageportal_undercity.m2", - }, - { - fileId = "244120", - text = "mageportal_wintergrasp.m2", - value = "mageportal_wintergrasp.m2", - }, - { - fileId = "244122", - text = "portal_alteracvalleyalliance.m2", - value = "portal_alteracvalleyalliance.m2", - }, - { - fileId = "244124", - text = "portal_alteracvalleyhorde.m2", - value = "portal_alteracvalleyhorde.m2", - }, - { - fileId = "244126", - text = "portal_arathibasinalliance.m2", - value = "portal_arathibasinalliance.m2", - }, - { - fileId = "244128", - text = "portal_arathibasinhorde.m2", - value = "portal_arathibasinhorde.m2", - }, - { - fileId = "244130", - text = "portal_eyeofthestormalliance.m2", - value = "portal_eyeofthestormalliance.m2", - }, - { - fileId = "244131", - text = "portal_eyeofthestormhorde.m2", - value = "portal_eyeofthestormhorde.m2", - }, - { - fileId = "311063", - text = "portal_isleofconquestalliance.m2", - value = "portal_isleofconquestalliance.m2", - }, - { - fileId = "311065", - text = "portal_isleofconquesthorde.m2", - value = "portal_isleofconquesthorde.m2", - }, - { - fileId = "244133", - text = "portal_strandoftheancients.m2", - value = "portal_strandoftheancients.m2", - }, - { - fileId = "244135", - text = "portal_warsonggulchalliance.m2", - value = "portal_warsonggulchalliance.m2", - }, - { - fileId = "244137", - text = "portal_warsonggulchhorde.m2", - value = "portal_warsonggulchhorde.m2", - }, - }, - text = "spellportals", - value = "spellportals", - }, - { - children = { - { - fileId = "197063", - text = "trollchest.m2", - value = "trollchest.m2", - }, - }, - text = "trollchest", - value = "trollchest", - }, - { - children = { - { - fileId = "197068", - text = "worldtreeportal01.m2", - value = "worldtreeportal01.m2", + { + fileId = "307332", + text = "goblin_crate_04.m2", + value = "goblin_crate_04.m2", + }, + { + fileId = "307333", + text = "goblin_crate_05.m2", + value = "goblin_crate_05.m2", + }, + { + fileId = "307334", + text = "goblin_crate_06.m2", + value = "goblin_crate_06.m2", + }, + { + fileId = "307335", + text = "goblin_crate_07.m2", + value = "goblin_crate_07.m2", + }, + { + fileId = "315764", + text = "goblin_escapepod.m2", + value = "goblin_escapepod.m2", + }, + { + fileId = "317149", + text = "goblin_escapepod_blue.m2", + value = "goblin_escapepod_blue.m2", + }, + { + fileId = "317150", + text = "goblin_escapepod_fire_blue.m2", + value = "goblin_escapepod_fire_blue.m2", + }, + { + fileId = "317152", + text = "goblin_escapepod_fire_green.m2", + value = "goblin_escapepod_fire_green.m2", + }, + { + fileId = "317153", + text = "goblin_escapepod_fire_orange.m2", + value = "goblin_escapepod_fire_orange.m2", + }, + { + fileId = "315765", + text = "goblin_escapepod_floating.m2", + value = "goblin_escapepod_floating.m2", + }, + { + fileId = "317154", + text = "goblin_escapepod_green.m2", + value = "goblin_escapepod_green.m2", + }, + { + fileId = "307336", + text = "goblin_fence_brown_01.m2", + value = "goblin_fence_brown_01.m2", + }, + { + fileId = "307337", + text = "goblin_fence_brown_02.m2", + value = "goblin_fence_brown_02.m2", + }, + { + fileId = "307338", + text = "goblin_fence_brown_03.m2", + value = "goblin_fence_brown_03.m2", + }, + { + fileId = "307339", + text = "goblin_fence_brown_04.m2", + value = "goblin_fence_brown_04.m2", + }, + { + fileId = "307340", + text = "goblin_fence_brown_05.m2", + value = "goblin_fence_brown_05.m2", + }, + { + fileId = "307341", + text = "goblin_fence_brown_06.m2", + value = "goblin_fence_brown_06.m2", + }, + { + fileId = "307342", + text = "goblin_fence_brown_07.m2", + value = "goblin_fence_brown_07.m2", + }, + { + fileId = "307343", + text = "goblin_fence_brown_08.m2", + value = "goblin_fence_brown_08.m2", + }, + { + fileId = "307344", + text = "goblin_fence_brown_09.m2", + value = "goblin_fence_brown_09.m2", + }, + { + fileId = "307345", + text = "goblin_fence_brown_10.m2", + value = "goblin_fence_brown_10.m2", + }, + { + fileId = "307346", + text = "goblin_fence_green_01.m2", + value = "goblin_fence_green_01.m2", + }, + { + fileId = "307347", + text = "goblin_fence_green_02.m2", + value = "goblin_fence_green_02.m2", + }, + { + fileId = "307348", + text = "goblin_fence_green_03.m2", + value = "goblin_fence_green_03.m2", + }, + { + fileId = "307349", + text = "goblin_fence_green_04.m2", + value = "goblin_fence_green_04.m2", + }, + { + fileId = "307350", + text = "goblin_fence_green_05.m2", + value = "goblin_fence_green_05.m2", + }, + { + fileId = "307351", + text = "goblin_fence_green_06.m2", + value = "goblin_fence_green_06.m2", + }, + { + fileId = "307352", + text = "goblin_fence_green_07.m2", + value = "goblin_fence_green_07.m2", + }, + { + fileId = "307353", + text = "goblin_fence_green_08.m2", + value = "goblin_fence_green_08.m2", + }, + { + fileId = "307354", + text = "goblin_fence_green_09.m2", + value = "goblin_fence_green_09.m2", + }, + { + fileId = "307355", + text = "goblin_fence_green_10.m2", + value = "goblin_fence_green_10.m2", + }, + { + fileId = "309145", + text = "goblin_guardtower_01.m2", + value = "goblin_guardtower_01.m2", + }, + { + fileId = "309146", + text = "goblin_guardtower_02.m2", + value = "goblin_guardtower_02.m2", + }, + { + fileId = "320497", + text = "goblin_horde_spikes_01.m2", + value = "goblin_horde_spikes_01.m2", + }, + { + fileId = "320498", + text = "goblin_horde_spikes_02.m2", + value = "goblin_horde_spikes_02.m2", + }, + { + fileId = "320499", + text = "goblin_horde_spikes_03.m2", + value = "goblin_horde_spikes_03.m2", + }, + { + fileId = "320500", + text = "goblin_horde_spikes_04.m2", + value = "goblin_horde_spikes_04.m2", + }, + { + fileId = "320501", + text = "goblin_horde_spikes_05.m2", + value = "goblin_horde_spikes_05.m2", + }, + { + fileId = "307713", + text = "goblin_keg_brown_01.m2", + value = "goblin_keg_brown_01.m2", + }, + { + fileId = "307714", + text = "goblin_keg_brown_02.m2", + value = "goblin_keg_brown_02.m2", + }, + { + fileId = "307715", + text = "goblin_keg_brown_03.m2", + value = "goblin_keg_brown_03.m2", + }, + { + fileId = "307716", + text = "goblin_keg_brown_04.m2", + value = "goblin_keg_brown_04.m2", + }, + { + fileId = "307718", + text = "goblin_keg_brown_05.m2", + value = "goblin_keg_brown_05.m2", + }, + { + fileId = "307720", + text = "goblin_keg_green_01.m2", + value = "goblin_keg_green_01.m2", + }, + { + fileId = "307721", + text = "goblin_keg_green_02.m2", + value = "goblin_keg_green_02.m2", + }, + { + fileId = "307722", + text = "goblin_keg_green_03.m2", + value = "goblin_keg_green_03.m2", + }, + { + fileId = "307723", + text = "goblin_keg_green_04.m2", + value = "goblin_keg_green_04.m2", + }, + { + fileId = "307772", + text = "goblin_keg_green_05.m2", + value = "goblin_keg_green_05.m2", + }, + { + fileId = "319853", + text = "goblin_kezan_lamp_01.m2", + value = "goblin_kezan_lamp_01.m2", + }, + { + fileId = "329600", + text = "goblin_kezan_oilpipe.m2", + value = "goblin_kezan_oilpipe.m2", + }, + { + fileId = "318754", + text = "goblin_kezan_pipe_01.m2", + value = "goblin_kezan_pipe_01.m2", + }, + { + fileId = "318755", + text = "goblin_kezan_pipe_02.m2", + value = "goblin_kezan_pipe_02.m2", + }, + { + fileId = "318756", + text = "goblin_kezan_pipe_03.m2", + value = "goblin_kezan_pipe_03.m2", + }, + { + fileId = "318757", + text = "goblin_kezan_pipe_04.m2", + value = "goblin_kezan_pipe_04.m2", + }, + { + fileId = "318758", + text = "goblin_kezan_pipe_05.m2", + value = "goblin_kezan_pipe_05.m2", + }, + { + fileId = "318759", + text = "goblin_kezan_pipe_06.m2", + value = "goblin_kezan_pipe_06.m2", + }, + { + fileId = "318760", + text = "goblin_kezan_pipe_cap_01.m2", + value = "goblin_kezan_pipe_cap_01.m2", + }, + { + fileId = "318761", + text = "goblin_kezan_pipe_cap_02.m2", + value = "goblin_kezan_pipe_cap_02.m2", + }, + { + fileId = "318762", + text = "goblin_kezan_pipe_cap_03.m2", + value = "goblin_kezan_pipe_cap_03.m2", + }, + { + fileId = "318763", + text = "goblin_kezan_pipe_connector_01.m2", + value = "goblin_kezan_pipe_connector_01.m2", + }, + { + fileId = "318764", + text = "goblin_kezan_pipe_connector_02.m2", + value = "goblin_kezan_pipe_connector_02.m2", + }, + { + fileId = "318765", + text = "goblin_kezan_pipe_top_01.m2", + value = "goblin_kezan_pipe_top_01.m2", + }, + { + fileId = "318766", + text = "goblin_kezan_pipe_top_02.m2", + value = "goblin_kezan_pipe_top_02.m2", + }, + { + fileId = "318767", + text = "goblin_kezan_pipe_top_03.m2", + value = "goblin_kezan_pipe_top_03.m2", + }, + { + fileId = "318768", + text = "goblin_kezan_pipe_top_04.m2", + value = "goblin_kezan_pipe_top_04.m2", + }, + { + fileId = "318187", + text = "goblin_kezan_road_01.m2", + value = "goblin_kezan_road_01.m2", + }, + { + fileId = "318188", + text = "goblin_kezan_road_02.m2", + value = "goblin_kezan_road_02.m2", + }, + { + fileId = "318189", + text = "goblin_kezan_road_03.m2", + value = "goblin_kezan_road_03.m2", + }, + { + fileId = "318190", + text = "goblin_kezan_road_04.m2", + value = "goblin_kezan_road_04.m2", + }, + { + fileId = "330847", + text = "goblin_kezan_road_05.m2", + value = "goblin_kezan_road_05.m2", + }, + { + fileId = "330848", + text = "goblin_kezan_road_06.m2", + value = "goblin_kezan_road_06.m2", + }, + { + fileId = "330849", + text = "goblin_kezan_road_07.m2", + value = "goblin_kezan_road_07.m2", + }, + { + fileId = "330850", + text = "goblin_kezan_road_08.m2", + value = "goblin_kezan_road_08.m2", + }, + { + fileId = "318769", + text = "goblin_kezan_window_01.m2", + value = "goblin_kezan_window_01.m2", + }, + { + fileId = "307162", + text = "goblin_lamppost_01.m2", + value = "goblin_lamppost_01.m2", + }, + { + fileId = "307164", + text = "goblin_lamppost_02.m2", + value = "goblin_lamppost_02.m2", + }, + { + fileId = "307166", + text = "goblin_lamppost_03.m2", + value = "goblin_lamppost_03.m2", + }, + { + fileId = "307167", + text = "goblin_lamppost_04.m2", + value = "goblin_lamppost_04.m2", + }, + { + fileId = "322357", + text = "goblin_lostisles_minecart.m2", + value = "goblin_lostisles_minecart.m2", + }, + { + fileId = "322358", + text = "goblin_lostisles_minecart_broken.m2", + value = "goblin_lostisles_minecart_broken.m2", + }, + { + fileId = "322380", + text = "goblin_lostisles_minetrack_bottom.m2", + value = "goblin_lostisles_minetrack_bottom.m2", + }, + { + fileId = "322381", + text = "goblin_lostisles_minetrack_curve.m2", + value = "goblin_lostisles_minetrack_curve.m2", + }, + { + fileId = "322382", + text = "goblin_lostisles_minetrack_straight.m2", + value = "goblin_lostisles_minetrack_straight.m2", + }, + { + fileId = "322383", + text = "goblin_lostisles_minetrack_top.m2", + value = "goblin_lostisles_minetrack_top.m2", + }, + { + fileId = "322385", + text = "goblin_lostisles_net.m2", + value = "goblin_lostisles_net.m2", + }, + { + fileId = "320943", + text = "goblin_lostisles_telescope.m2", + value = "goblin_lostisles_telescope.m2", + }, + { + fileId = "325268", + text = "goblin_lostisles_wreckage_01.m2", + value = "goblin_lostisles_wreckage_01.m2", + }, + { + fileId = "325269", + text = "goblin_lostisles_wreckage_02.m2", + value = "goblin_lostisles_wreckage_02.m2", + }, + { + fileId = "317156", + text = "goblin_palmfrond_rug_01.m2", + value = "goblin_palmfrond_rug_01.m2", + }, + { + fileId = "311986", + text = "goblin_paper_01.m2", + value = "goblin_paper_01.m2", + }, + { + fileId = "311987", + text = "goblin_paper_04.m2", + value = "goblin_paper_04.m2", + }, + { + fileId = "311988", + text = "goblin_paper_05.m2", + value = "goblin_paper_05.m2", + }, + { + fileId = "311989", + text = "goblin_paper_06.m2", + value = "goblin_paper_06.m2", + }, + { + fileId = "321556", + text = "goblin_poolelevator.m2", + value = "goblin_poolelevator.m2", + }, + { + fileId = "315225", + text = "goblin_prisonwall_01.m2", + value = "goblin_prisonwall_01.m2", + }, + { + fileId = "315226", + text = "goblin_prisonwall_02.m2", + value = "goblin_prisonwall_02.m2", + }, + { + fileId = "315227", + text = "goblin_prisonwall_03.m2", + value = "goblin_prisonwall_03.m2", + }, + { + fileId = "315228", + text = "goblin_prisonwall_04.m2", + value = "goblin_prisonwall_04.m2", + }, + { + fileId = "309569", + text = "goblin_signpost_01.m2", + value = "goblin_signpost_01.m2", + }, + { + fileId = "309571", + text = "goblin_signpost_02.m2", + value = "goblin_signpost_02.m2", + }, + { + fileId = "309722", + text = "goblin_signpost_03.m2", + value = "goblin_signpost_03.m2", + }, + { + fileId = "316222", + text = "goblin_table_brown.m2", + value = "goblin_table_brown.m2", + }, + { + fileId = "316223", + text = "goblin_table_green.m2", + value = "goblin_table_green.m2", + }, + { + fileId = "309267", + text = "goblin_tent_01.m2", + value = "goblin_tent_01.m2", + }, + { + fileId = "308846", + text = "goblin_tent_02.m2", + value = "goblin_tent_02.m2", + }, + { + fileId = "308847", + text = "goblin_tent_03.m2", + value = "goblin_tent_03.m2", + }, + { + fileId = "308848", + text = "goblin_tent_04.m2", + value = "goblin_tent_04.m2", + }, + { + fileId = "316225", + text = "goblin_tire_large.m2", + value = "goblin_tire_large.m2", + }, + { + fileId = "316226", + text = "goblin_tire_pile_large.m2", + value = "goblin_tire_pile_large.m2", + }, + { + fileId = "316227", + text = "goblin_tire_pile_small.m2", + value = "goblin_tire_pile_small.m2", + }, + { + fileId = "316228", + text = "goblin_tire_small.m2", + value = "goblin_tire_small.m2", + }, + { + fileId = "309933", + text = "goblin_wagon_01.m2", + value = "goblin_wagon_01.m2", + }, + { + fileId = "309935", + text = "goblin_wagon_02.m2", + value = "goblin_wagon_02.m2", + }, + { + fileId = "309918", + text = "goblinbattery_01.m2", + value = "goblinbattery_01.m2", + }, + { + fileId = "533722", + text = "goblinbattery_01_onside_quest.m2", + value = "goblinbattery_01_onside_quest.m2", + }, + { + fileId = "309919", + text = "goblinbattery_02.m2", + value = "goblinbattery_02.m2", + }, + { + fileId = "309564", + text = "goblinbottle_01.m2", + value = "goblinbottle_01.m2", + }, + { + fileId = "309567", + text = "goblincup_01.m2", + value = "goblincup_01.m2", + }, + { + fileId = "309568", + text = "goblincup_02.m2", + value = "goblincup_02.m2", + }, + { + fileId = "307306", + text = "postboxgoblin.m2", + value = "postboxgoblin.m2", + }, + { + fileId = "316229", + text = "pygmy_guard_tower.m2", + value = "pygmy_guard_tower.m2", + }, + { + children = { + { + fileId = "315767", + text = "goblin_spool_01.m2", + value = "goblin_spool_01.m2", + }, + { + fileId = "315768", + text = "goblin_spool_02.m2", + value = "goblin_spool_02.m2", + }, + }, + text = "spool", + value = "spool", + }, + { + children = { + { + fileId = "316230", + text = "goblin_wire_01.m2", + value = "goblin_wire_01.m2", + }, + { + fileId = "316231", + text = "goblin_wire_02.m2", + value = "goblin_wire_02.m2", + }, + { + fileId = "317216", + text = "goblin_wire_03.m2", + value = "goblin_wire_03.m2", + }, + }, + text = "wire", + value = "wire", + }, + }, + text = "lostisles", + value = "lostisles", }, - }, - text = "worldtreeportals", - value = "worldtreeportals", - }, - }, - text = "activedoodads", - value = "activedoodads", - }, - { - children = { - { - children = { { - fileId = "341870", - text = "alliancechest_01.m2", - value = "alliancechest_01.m2", + children = { + { + fileId = "326871", + text = "horde_goblin_minicannon01.m2", + value = "horde_goblin_minicannon01.m2", + }, + { + fileId = "326872", + text = "horde_goblin_minicannon02.m2", + value = "horde_goblin_minicannon02.m2", + }, + }, + text = "minicannon", + value = "minicannon", }, - }, - text = "chest", - value = "chest", - }, - }, - text = "alliance", - value = "alliance", - }, - { - children = { - { - children = { { - fileId = "197108", - text = "humantentlarge.m2", - value = "humantentlarge.m2", + children = { + { + fileId = "329853", + text = "goblin_horde_mortar_01.m2", + value = "goblin_horde_mortar_01.m2", + }, + }, + text = "mortar", + value = "mortar", }, - }, - text = "humantentlarge", - value = "humantentlarge", - }, - { - children = { { - fileId = "197109", - text = "humantentmedium.m2", - value = "humantentmedium.m2", + children = { + { + fileId = "314806", + text = "goblin_floatingoildrum_exploder01.m2", + value = "goblin_floatingoildrum_exploder01.m2", + }, + { + fileId = "371191", + text = "goblin_floatingoildrum_exploder02.m2", + value = "goblin_floatingoildrum_exploder02.m2", + }, + { + fileId = "317157", + text = "goblin_oildrum_01.m2", + value = "goblin_oildrum_01.m2", + }, + }, + text = "oildrum", + value = "oildrum", }, - }, - text = "humantentmedium", - value = "humantentmedium", - }, - }, - text = "buildings", - value = "buildings", - }, - { - children = { - { - fileId = "197122", - text = "collision_pcsize.m2", - value = "collision_pcsize.m2", - }, - }, - text = "collision", - value = "collision", - }, - { - children = { - { - children = { { children = { { - fileId = "197230", - text = "fishingchair.m2", - value = "fishingchair.m2", + fileId = "344253", + text = "goblin_horde_pinupcalendar_01.m2", + value = "goblin_horde_pinupcalendar_01.m2", + }, + { + fileId = "344255", + text = "goblin_horde_pinupcalendar_02.m2", + value = "goblin_horde_pinupcalendar_02.m2", }, }, - text = "chair", - value = "chair", + text = "pinupcalendar", + value = "pinupcalendar", }, - }, - text = "fishing", - value = "fishing", - }, - }, - text = "doodads", - value = "doodads", - }, - { - children = { - { - children = { { children = { { - fileId = "197635", - text = "gnomemachine.m2", - value = "gnomemachine.m2", + fileId = "343855", + text = "goblin_plunger.m2", + value = "goblin_plunger.m2", }, }, - text = "gnomemachine", - value = "gnomemachine", + text = "plunger", + value = "plunger", }, - }, - text = "activedoodads", - value = "activedoodads", - }, - }, - text = "gnome", - value = "gnome", - }, - { - children = { - { - children = { { children = { { - fileId = "197760", - text = "goblincontrolpanel.m2", - value = "goblincontrolpanel.m2", + fileId = "392518", + text = "goblin_engine_pontoons.m2", + value = "goblin_engine_pontoons.m2", }, }, - text = "controlpanel", - value = "controlpanel", + text = "pontoons", + value = "pontoons", }, { children = { { - fileId = "197766", - text = "goblinhutbottles.m2", - value = "goblinhutbottles.m2", + fileId = "322388", + text = "goblin_rocket_blownup.m2", + value = "goblin_rocket_blownup.m2", }, { - fileId = "197767", - text = "goblinmachinery.m2", - value = "goblinmachinery.m2", + fileId = "322436", + text = "goblin_rocket_blownup_02.m2", + value = "goblin_rocket_blownup_02.m2", }, { - fileId = "197768", - text = "goblinweathervane.m2", - value = "goblinweathervane.m2", + fileId = "322439", + text = "goblin_rocket_lightlyscorched.m2", + value = "goblin_rocket_lightlyscorched.m2", }, - }, - text = "goblinmachinery", - value = "goblinmachinery", - }, - { - children = { { - fileId = "197777", - text = "crashedgoblinrc.m2", - value = "crashedgoblinrc.m2", + fileId = "322440", + text = "goblin_rocket_scorched.m2", + value = "goblin_rocket_scorched.m2", }, { - fileId = "197779", - text = "goblinrocketcart01.m2", - value = "goblinrocketcart01.m2", + fileId = "322441", + text = "goblin_rocket_seatpile.m2", + value = "goblin_rocket_seatpile.m2", }, { - fileId = "197780", - text = "goblinrocketcart02.m2", - value = "goblinrocketcart02.m2", + fileId = "322442", + text = "goblin_rocket_standing.m2", + value = "goblin_rocket_standing.m2", }, + }, + text = "rockets", + value = "rockets", + }, + { + children = { { - fileId = "244144", - text = "goblinrocketcart02_rc.m2", - value = "goblinrocketcart02_rc.m2", + fileId = "197802", + text = "go_rocketship.m2", + value = "go_rocketship.m2", }, + }, + text = "rocketship", + value = "rocketship", + }, + { + children = { { - fileId = "197781", - text = "goblinrocketcart03.m2", - value = "goblinrocketcart03.m2", + fileId = "345038", + text = "goblin_horde_shagthrowrug_01.m2", + value = "goblin_horde_shagthrowrug_01.m2", }, + }, + text = "rugs", + value = "rugs", + }, + { + children = { { - fileId = "197782", - text = "goblinrocketcart04.m2", - value = "goblinrocketcart04.m2", + fileId = "350579", + text = "goblin_horde_shelf_01.m2", + value = "goblin_horde_shelf_01.m2", }, { - fileId = "197783", - text = "goblinrocketcart05.m2", - value = "goblinrocketcart05.m2", + fileId = "350312", + text = "goblin_horde_shelf_02.m2", + value = "goblin_horde_shelf_02.m2", }, + }, + text = "shelf", + value = "shelf", + }, + { + children = { { - fileId = "197784", - text = "goblinrocketcart_rc.m2", - value = "goblinrocketcart_rc.m2", + fileId = "368990", + text = "goblin_showercurtain_01.m2", + value = "goblin_showercurtain_01.m2", }, + }, + text = "showercurtain", + value = "showercurtain", + }, + { + children = { { - fileId = "244145", - text = "goblinrocketcart_rc_blue.m2", - value = "goblinrocketcart_rc_blue.m2", + fileId = "353343", + text = "goblin_shredderboot.m2", + value = "goblin_shredderboot.m2", }, }, - text = "goblinrocketcarts", - value = "goblinrocketcarts", + text = "shredder", + value = "shredder", }, { children = { { - fileId = "197789", - text = "goblinshreddersuit01.m2", - value = "goblinshreddersuit01.m2", + fileId = "355818", + text = "goblin_silodoor_01.m2", + value = "goblin_silodoor_01.m2", }, { - fileId = "197790", - text = "goblinshreddersuit02.m2", - value = "goblinshreddersuit02.m2", + fileId = "356037", + text = "goblin_silorocket_01.m2", + value = "goblin_silorocket_01.m2", }, }, - text = "goblinshreddersuit", - value = "goblinshreddersuit", + text = "silorocket", + value = "silorocket", }, { children = { { - fileId = "197791", - text = "goblintent01.m2", - value = "goblintent01.m2", + fileId = "355516", + text = "goblin_skateboardramp_01.m2", + value = "goblin_skateboardramp_01.m2", }, + }, + text = "skateboardramp", + value = "skateboardramp", + }, + { + children = { { - fileId = "197792", - text = "goblintent02.m2", - value = "goblintent02.m2", + fileId = "455585", + text = "goblinsteelplate01.m2", + value = "goblinsteelplate01.m2", }, { - fileId = "197793", - text = "goblintent03.m2", - value = "goblintent03.m2", + fileId = "455586", + text = "goblinsteelplate02.m2", + value = "goblinsteelplate02.m2", }, { - fileId = "197794", - text = "goblintent04.m2", - value = "goblintent04.m2", + fileId = "455587", + text = "goblinsteelplate03.m2", + value = "goblinsteelplate03.m2", }, { - fileId = "197795", - text = "goblintent05.m2", - value = "goblintent05.m2", + fileId = "455588", + text = "goblinsteelplate04.m2", + value = "goblinsteelplate04.m2", }, { - fileId = "197796", - text = "goblintent06.m2", - value = "goblintent06.m2", + fileId = "455589", + text = "goblinsteelplate05.m2", + value = "goblinsteelplate05.m2", }, + }, + text = "steelplates", + value = "steelplates", + }, + { + children = { { - fileId = "197797", - text = "goblintent07.m2", - value = "goblintent07.m2", + fileId = "319554", + text = "goblin_table_01.m2", + value = "goblin_table_01.m2", + }, + { + fileId = "367103", + text = "goblin_table_cloth_01.m2", + value = "goblin_table_cloth_01.m2", + }, + { + fileId = "365824", + text = "goblin_table_small_01.m2", + value = "goblin_table_small_01.m2", }, }, - text = "goblintents", - value = "goblintents", + text = "table", + value = "table", }, { children = { { - fileId = "197799", - text = "goblinwagontnt_01.m2", - value = "goblinwagontnt_01.m2", + fileId = "343859", + text = "goblin_towninabox.m2", + value = "goblin_towninabox.m2", }, }, - text = "goblintntwagon", - value = "goblintntwagon", + text = "towninabox", + value = "towninabox", }, { children = { { - fileId = "197802", - text = "go_rocketship.m2", - value = "go_rocketship.m2", + fileId = "368914", + text = "goblin_tub_01.m2", + value = "goblin_tub_01.m2", + }, + { + fileId = "368915", + text = "goblin_tub_02.m2", + value = "goblin_tub_02.m2", + }, + { + fileId = "368991", + text = "goblin_tub_03.m2", + value = "goblin_tub_03.m2", }, }, - text = "rocketship", - value = "rocketship", + text = "tub", + value = "tub", + }, + { + children = { + { + fileId = "349795", + text = "goblin_horde_wallcot_01.m2", + value = "goblin_horde_wallcot_01.m2", + }, + }, + text = "wallcot", + value = "wallcot", }, }, text = "passivedoodads", @@ -96403,6 +139899,16 @@ WeakAuras.ModelPaths = { text = "portcullisactive.m2", value = "portcullisactive.m2", }, + { + fileId = "462644", + text = "portcullisactive_stormwindbank.m2", + value = "portcullisactive_stormwindbank.m2", + }, + { + fileId = "463432", + text = "portcullisinactive.m2", + value = "portcullisinactive.m2", + }, { fileId = "197819", text = "scarletcathedraldoor.m2", @@ -97045,6 +140551,16 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "526019", + text = "beerfest_keg01.m2", + value = "beerfest_keg01.m2", + }, + { + fileId = "526102", + text = "beerfest_keg_pony01.m2", + value = "beerfest_keg_pony01.m2", + }, { fileId = "199577", text = "beerfest_molemachine.m2", @@ -97055,6 +140571,11 @@ WeakAuras.ModelPaths = { text = "beerfest_molemachine_anim_set2.m2", value = "beerfest_molemachine_anim_set2.m2", }, + { + fileId = "511102", + text = "beerfest_molemachine_anim_set3.m2", + value = "beerfest_molemachine_anim_set3.m2", + }, }, text = "brewfest", value = "brewfest", @@ -97206,6 +140727,27 @@ WeakAuras.ModelPaths = { text = "christmas", value = "christmas", }, + { + children = { + { + fileId = "307025", + text = "coalpilelarge_01.m2", + value = "coalpilelarge_01.m2", + }, + { + fileId = "307026", + text = "coalpilemedium_01.m2", + value = "coalpilemedium_01.m2", + }, + { + fileId = "307027", + text = "coalpilesmall_01.m2", + value = "coalpilesmall_01.m2", + }, + }, + text = "coal", + value = "coal", + }, { children = { { @@ -97359,6 +140901,16 @@ WeakAuras.ModelPaths = { text = "humanmaledeathskeleton.m2", value = "humanmaledeathskeleton.m2", }, + { + fileId = "366780", + text = "nagafemaledeathskeleton.m2", + value = "nagafemaledeathskeleton.m2", + }, + { + fileId = "366781", + text = "nagamaledeathskeleton.m2", + value = "nagamaledeathskeleton.m2", + }, { fileId = "199672", text = "nightelffemaledeathskeleton.m2", @@ -97414,6 +140966,16 @@ WeakAuras.ModelPaths = { text = "vrykulmaledeathskeleton.m2", value = "vrykulmaledeathskeleton.m2", }, + { + fileId = "323307", + text = "worgenfemaledeathskeleton.m2", + value = "worgenfemaledeathskeleton.m2", + }, + { + fileId = "323308", + text = "worgenmaledeathskeleton.m2", + value = "worgenmaledeathskeleton.m2", + }, }, text = "deathskeletons", value = "deathskeletons", @@ -97573,11 +141135,76 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "338527", + text = "fish_bluetrawler.m2", + value = "fish_bluetrawler.m2", + }, + { + fileId = "340131", + text = "fish_felblood_snappa.m2", + value = "fish_felblood_snappa.m2", + }, + { + fileId = "359600", + text = "fish_jellyfishswarm.m2", + value = "fish_jellyfishswarm.m2", + }, + { + fileId = "338529", + text = "fish_redfloater.m2", + value = "fish_redfloater.m2", + }, + { + fileId = "338531", + text = "fish_redfloater_02.m2", + value = "fish_redfloater_02.m2", + }, + { + fileId = "338837", + text = "fish_sculpin.m2", + value = "fish_sculpin.m2", + }, + { + fileId = "375482", + text = "fish_stingray.m2", + value = "fish_stingray.m2", + }, { fileId = "341250", text = "fish_undead_01.m2", value = "fish_undead_01.m2", }, + { + fileId = "341880", + text = "fish_yellowfloater.m2", + value = "fish_yellowfloater.m2", + }, + { + fileId = "338755", + text = "fishschool_01.m2", + value = "fishschool_01.m2", + }, + { + fileId = "338756", + text = "fishschool_02.m2", + value = "fishschool_02.m2", + }, + { + fileId = "338759", + text = "fishschool_03.m2", + value = "fishschool_03.m2", + }, + { + fileId = "338761", + text = "fishschool_04.m2", + value = "fishschool_04.m2", + }, + { + fileId = "338763", + text = "fishschool_05.m2", + value = "fishschool_05.m2", + }, { fileId = "199710", text = "fishskel01.m2", @@ -97661,6 +141288,11 @@ WeakAuras.ModelPaths = { text = "fruit_apple.m2", value = "fruit_apple.m2", }, + { + fileId = "324948", + text = "fruit_apple_02.m2", + value = "fruit_apple_02.m2", + }, { fileId = "199725", text = "fruit_banana.m2", @@ -97774,6 +141406,11 @@ WeakAuras.ModelPaths = { text = "titanvase02.m2", value = "titanvase02.m2", }, + { + fileId = "511904", + text = "titanvase02_nocol.m2", + value = "titanvase02_nocol.m2", + }, }, text = "containers", value = "containers", @@ -97816,6 +141453,11 @@ WeakAuras.ModelPaths = { text = "graystone01.m2", value = "graystone01.m2", }, + { + fileId = "463815", + text = "graystone01_nocollision.m2", + value = "graystone01_nocollision.m2", + }, { fileId = "199758", text = "graystone02.m2", @@ -97888,6 +141530,11 @@ WeakAuras.ModelPaths = { text = "burningwickerman01.m2", value = "burningwickerman01.m2", }, + { + fileId = "524488", + text = "burningwickerman01_standing.m2", + value = "burningwickerman01_standing.m2", + }, { fileId = "199788", text = "hangingskulllight01.m2", @@ -97965,6 +141612,11 @@ WeakAuras.ModelPaths = { text = "candleblack01.m2", value = "candleblack01.m2", }, + { + fileId = "512808", + text = "candleblack01_nocol.m2", + value = "candleblack01_nocol.m2", + }, { fileId = "199810", text = "candleoff01.m2", @@ -98015,6 +141667,11 @@ WeakAuras.ModelPaths = { text = "generaltorch01.m2", value = "generaltorch01.m2", }, + { + fileId = "341882", + text = "generaltorch01_extinguished.m2", + value = "generaltorch01_extinguished.m2", + }, { fileId = "199821", text = "generaltorch02.m2", @@ -98549,6 +142206,11 @@ WeakAuras.ModelPaths = { text = "bubblesb_bigemitter.m2", value = "bubblesb_bigemitter.m2", }, + { + fileId = "405329", + text = "bubblesbsideways.m2", + value = "bubblesbsideways.m2", + }, { fileId = "199935", text = "ceilingdustemitter.m2", @@ -98883,6 +142545,11 @@ WeakAuras.ModelPaths = { text = "hordezepanimation.m2", value = "hordezepanimation.m2", }, + { + fileId = "429106", + text = "hordezepanimationnobike.m2", + value = "hordezepanimationnobike.m2", + }, }, text = "hordezeppelinanimation", value = "hordezeppelinanimation", @@ -99056,6 +142723,17 @@ WeakAuras.ModelPaths = { text = "skeletons", value = "skeletons", }, + { + children = { + { + fileId = "386854", + text = "spawnflag.m2", + value = "spawnflag.m2", + }, + }, + text = "spawnflag", + value = "spawnflag", + }, { children = { { @@ -99700,6 +143378,16 @@ WeakAuras.ModelPaths = { text = "naga_trident.m2", value = "naga_trident.m2", }, + { + fileId = "366782", + text = "naga_trident02.m2", + value = "naga_trident02.m2", + }, + { + fileId = "316523", + text = "naga_trident_horizontal.m2", + value = "naga_trident_horizontal.m2", + }, { fileId = "244242", text = "shield_pvpalliance.m2", @@ -100100,6 +143788,11 @@ WeakAuras.ModelPaths = { text = "bf2_lighthousebeam_01.m2", value = "bf2_lighthousebeam_01.m2", }, + { + fileId = "306853", + text = "bf2_oilslick_01.m2", + value = "bf2_oilslick_01.m2", + }, { fileId = "306882", text = "bf2_oilslick_02.m2", @@ -100181,6 +143874,36 @@ WeakAuras.ModelPaths = { text = "northbattleground_rocks_06.m2", value = "northbattleground_rocks_06.m2", }, + { + fileId = "306783", + text = "northrendbg2_rocks_01.m2", + value = "northrendbg2_rocks_01.m2", + }, + { + fileId = "306784", + text = "northrendbg2_rocks_02.m2", + value = "northrendbg2_rocks_02.m2", + }, + { + fileId = "306785", + text = "northrendbg2_rocks_03.m2", + value = "northrendbg2_rocks_03.m2", + }, + { + fileId = "306786", + text = "northrendbg2_rocks_04.m2", + value = "northrendbg2_rocks_04.m2", + }, + { + fileId = "306787", + text = "northrendbg2_rocks_05.m2", + value = "northrendbg2_rocks_05.m2", + }, + { + fileId = "306788", + text = "northrendbg2_rocks_06.m2", + value = "northrendbg2_rocks_06.m2", + }, }, text = "rocks", value = "rocks", @@ -100694,6 +144417,11 @@ WeakAuras.ModelPaths = { text = "g_bomb_02.m2", value = "g_bomb_02.m2", }, + { + fileId = "511116", + text = "g_bomb_03.m2", + value = "g_bomb_03.m2", + }, { fileId = "200897", text = "g_bombfactory.m2", @@ -100849,6 +144577,11 @@ WeakAuras.ModelPaths = { text = "g_cage03.m2", value = "g_cage03.m2", }, + { + fileId = "320930", + text = "g_cage_arcane.m2", + value = "g_cage_arcane.m2", + }, { fileId = "200940", text = "g_cagebase.m2", @@ -101009,6 +144742,11 @@ WeakAuras.ModelPaths = { text = "g_explosivetrap.m2", value = "g_explosivetrap.m2", }, + { + fileId = "326722", + text = "g_fireembers_projected.m2", + value = "g_fireembers_projected.m2", + }, { fileId = "200982", text = "g_firework01blue.m2", @@ -101084,6 +144822,11 @@ WeakAuras.ModelPaths = { text = "g_fireworklauncher02.m2", value = "g_fireworklauncher02.m2", }, + { + fileId = "403237", + text = "g_fireworklauncher02_nocollision.m2", + value = "g_fireworklauncher02_nocollision.m2", + }, { fileId = "200998", text = "g_fireworktwirlysmall01gold.m2", @@ -101284,6 +145027,11 @@ WeakAuras.ModelPaths = { text = "g_jewelblue.m2", value = "g_jewelblue.m2", }, + { + fileId = "467108", + text = "g_jewelblue_centered.m2", + value = "g_jewelblue_centered.m2", + }, { fileId = "201056", text = "g_jewelred.m2", @@ -101344,6 +145092,16 @@ WeakAuras.ModelPaths = { text = "g_mortar.m2", value = "g_mortar.m2", }, + { + fileId = "511149", + text = "g_mortar_fx.m2", + value = "g_mortar_fx.m2", + }, + { + fileId = "511433", + text = "g_mortar_nofx.m2", + value = "g_mortar_nofx.m2", + }, { fileId = "201075", text = "g_mummytroll.m2", @@ -101374,6 +145132,16 @@ WeakAuras.ModelPaths = { text = "g_nexus_pulsatingplant.m2", value = "g_nexus_pulsatingplant.m2", }, + { + fileId = "330563", + text = "g_parrot_01.m2", + value = "g_parrot_01.m2", + }, + { + fileId = "330851", + text = "g_parrot_02.m2", + value = "g_parrot_02.m2", + }, { fileId = "201082", text = "g_pirateflag_01.m2", @@ -101777,6 +145545,36 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "307635", + text = "ashenvale_burnttree_01.m2", + value = "ashenvale_burnttree_01.m2", + }, + { + fileId = "307636", + text = "ashenvale_burnttree_02.m2", + value = "ashenvale_burnttree_02.m2", + }, + { + fileId = "307637", + text = "ashenvale_burnttree_03.m2", + value = "ashenvale_burnttree_03.m2", + }, + { + fileId = "307638", + text = "ashenvale_burnttree_04.m2", + value = "ashenvale_burnttree_04.m2", + }, + { + fileId = "307639", + text = "ashenvale_burnttree_05.m2", + value = "ashenvale_burnttree_05.m2", + }, + { + fileId = "307640", + text = "ashenvale_burnttree_06.m2", + value = "ashenvale_burnttree_06.m2", + }, { fileId = "201221", text = "ashenvalecuttree01.m2", @@ -102269,6 +146067,41 @@ WeakAuras.ModelPaths = { text = "azr_tree07.m2", value = "azr_tree07.m2", }, + { + fileId = "311991", + text = "azr_tree_stump_01.m2", + value = "azr_tree_stump_01.m2", + }, + { + fileId = "311992", + text = "azr_tree_stump_02.m2", + value = "azr_tree_stump_02.m2", + }, + { + fileId = "312063", + text = "azr_tree_stump_03.m2", + value = "azr_tree_stump_03.m2", + }, + { + fileId = "312064", + text = "azr_tree_stump_04.m2", + value = "azr_tree_stump_04.m2", + }, + { + fileId = "312828", + text = "azr_tree_stump_05.m2", + value = "azr_tree_stump_05.m2", + }, + { + fileId = "312829", + text = "azr_tree_stump_06.m2", + value = "azr_tree_stump_06.m2", + }, + { + fileId = "318192", + text = "azsharafallingtree01.m2", + value = "azsharafallingtree01.m2", + }, }, text = "trees", value = "trees", @@ -102420,6 +146253,38 @@ WeakAuras.ModelPaths = { text = "bushes", value = "bushes", }, + { + children = { + { + fileId = "351244", + text = "barrens_druidroot_01.m2", + value = "barrens_druidroot_01.m2", + }, + { + fileId = "351245", + text = "barrens_druidroot_02.m2", + value = "barrens_druidroot_02.m2", + }, + { + fileId = "351246", + text = "barrens_druidroot_03.m2", + value = "barrens_druidroot_03.m2", + }, + }, + text = "druidroot", + value = "druidroot", + }, + { + children = { + { + fileId = "328145", + text = "barrens_regrow_fx.m2", + value = "barrens_regrow_fx.m2", + }, + }, + text = "fx", + value = "fx", + }, { children = { { @@ -102552,6 +146417,21 @@ WeakAuras.ModelPaths = { text = "barrenstree10.m2", value = "barrenstree10.m2", }, + { + fileId = "304802", + text = "barrenstreegreen01.m2", + value = "barrenstreegreen01.m2", + }, + { + fileId = "304806", + text = "barrenstreegreen02.m2", + value = "barrenstreegreen02.m2", + }, + { + fileId = "304810", + text = "barrenstreegreen03.m2", + value = "barrenstreegreen03.m2", + }, }, text = "trees", value = "trees", @@ -102807,11 +146687,21 @@ WeakAuras.ModelPaths = { text = "bfd_waterfalls10.m2", value = "bfd_waterfalls10.m2", }, + { + fileId = "409400", + text = "bfd_waterfalls10_nosound.m2", + value = "bfd_waterfalls10_nosound.m2", + }, { fileId = "201465", text = "bfd_waterfalls11.m2", value = "bfd_waterfalls11.m2", }, + { + fileId = "409401", + text = "bfd_waterfalls11_nosound.m2", + value = "bfd_waterfalls11_nosound.m2", + }, }, text = "waterfalls", value = "waterfalls", @@ -102842,6 +146732,17 @@ WeakAuras.ModelPaths = { text = "desolace", value = "desolace", }, + { + children = { + { + fileId = "523791", + text = "nightelfmoonwell_nowater.m2", + value = "nightelfmoonwell_nowater.m2", + }, + }, + text = "nightelf", + value = "nightelf", + }, }, text = "buildings", value = "buildings", @@ -103102,6 +147003,26 @@ WeakAuras.ModelPaths = { text = "darkshoretree08.m2", value = "darkshoretree08.m2", }, + { + fileId = "250943", + text = "darkshoretree_roots01.m2", + value = "darkshoretree_roots01.m2", + }, + { + fileId = "250945", + text = "darkshoretree_roots02.m2", + value = "darkshoretree_roots02.m2", + }, + { + fileId = "250947", + text = "darkshoretree_roots03.m2", + value = "darkshoretree_roots03.m2", + }, + { + fileId = "250949", + text = "darkshoretree_roots04.m2", + value = "darkshoretree_roots04.m2", + }, }, text = "darkshoretrees", value = "darkshoretrees", @@ -103517,11 +147438,21 @@ WeakAuras.ModelPaths = { text = "centaurspears01.m2", value = "centaurspears01.m2", }, + { + fileId = "341580", + text = "centaurspears01_floating.m2", + value = "centaurspears01_floating.m2", + }, { fileId = "201615", text = "centaurspears02.m2", value = "centaurspears02.m2", }, + { + fileId = "341581", + text = "centaurspears02_floating.m2", + value = "centaurspears02_floating.m2", + }, { fileId = "201616", text = "centaurspearscone.m2", @@ -104035,6 +147966,16 @@ WeakAuras.ModelPaths = { text = "blackdragonegg03.m2", value = "blackdragonegg03.m2", }, + { + fileId = "353157", + text = "blackdragonegg_large_01.m2", + value = "blackdragonegg_large_01.m2", + }, + { + fileId = "353528", + text = "blackdragonegg_large_02.m2", + value = "blackdragonegg_large_02.m2", + }, }, text = "blackdragoneggs", value = "blackdragoneggs", @@ -104131,6 +148072,31 @@ WeakAuras.ModelPaths = { text = "cactusapple01.m2", value = "cactusapple01.m2", }, + { + fileId = "338533", + text = "durotar_cattails01.m2", + value = "durotar_cattails01.m2", + }, + { + fileId = "338535", + text = "durotar_lumpygrass01.m2", + value = "durotar_lumpygrass01.m2", + }, + { + fileId = "338838", + text = "durotar_lumpygrass02.m2", + value = "durotar_lumpygrass02.m2", + }, + { + fileId = "338537", + text = "durotar_marshgrass01.m2", + value = "durotar_marshgrass01.m2", + }, + { + fileId = "338538", + text = "durotar_marshgrass02.m2", + value = "durotar_marshgrass02.m2", + }, { fileId = "201768", text = "durotarbush01.m2", @@ -104248,21 +148214,76 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "338541", + text = "durotargreentree03.m2", + value = "durotargreentree03.m2", + }, + { + fileId = "338543", + text = "durotargreentree05.m2", + value = "durotargreentree05.m2", + }, { fileId = "201800", text = "durotarpalm01.m2", value = "durotarpalm01.m2", }, + { + fileId = "383641", + text = "durotarpalm01_noanim.m2", + value = "durotarpalm01_noanim.m2", + }, { fileId = "201801", text = "durotarpalm02.m2", value = "durotarpalm02.m2", }, + { + fileId = "383642", + text = "durotarpalm02_noanim.m2", + value = "durotarpalm02_noanim.m2", + }, { fileId = "201802", text = "durotarpalm03.m2", value = "durotarpalm03.m2", }, + { + fileId = "383643", + text = "durotarpalm03_noanim.m2", + value = "durotarpalm03_noanim.m2", + }, + { + fileId = "368831", + text = "durotarpalmfallen01.m2", + value = "durotarpalmfallen01.m2", + }, + { + fileId = "368832", + text = "durotarpalmfallen02.m2", + value = "durotarpalmfallen02.m2", + }, + { + fileId = "394906", + text = "durotarpalmfallen03.m2", + value = "durotarpalmfallen03.m2", + }, + { + fileId = "368834", + text = "durotarpalmfallen04.m2", + value = "durotarpalmfallen04.m2", + }, + { + fileId = "368835", + text = "durotarpalmfloating01.m2", + value = "durotarpalmfloating01.m2", + }, + { + fileId = "394907", + text = "durotarpalmfloating02.m2", + value = "durotarpalmfloating02.m2", + }, { fileId = "201803", text = "durotartree01.m2", @@ -104671,6 +148692,11 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "344825", + text = "felwoodcanopytree03.m2", + value = "felwoodcanopytree03.m2", + }, { fileId = "201900", text = "felwoodtree01.m2", @@ -104799,6 +148825,17 @@ WeakAuras.ModelPaths = { children = { { children = { + { + children = { + { + fileId = "366217", + text = "feralas_stonegiantcrystal01.m2", + value = "feralas_stonegiantcrystal01.m2", + }, + }, + text = "crystals", + value = "crystals", + }, { children = { { @@ -104810,6 +148847,32 @@ WeakAuras.ModelPaths = { text = "fern", value = "fern", }, + { + children = { + { + fileId = "366218", + text = "feralas_stonegiantrock01.m2", + value = "feralas_stonegiantrock01.m2", + }, + { + fileId = "366219", + text = "feralas_stonegiantrock02.m2", + value = "feralas_stonegiantrock02.m2", + }, + { + fileId = "367850", + text = "feralas_stonegiantrock04.m2", + value = "feralas_stonegiantrock04.m2", + }, + { + fileId = "367852", + text = "feralas_stonegiantrock05.m2", + value = "feralas_stonegiantrock05.m2", + }, + }, + text = "rocks", + value = "rocks", + }, { children = { { @@ -104828,6 +148891,11 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "368548", + text = "feralasfloatingtree01.m2", + value = "feralasfloatingtree01.m2", + }, { fileId = "201935", text = "feralastree01.m2", @@ -104982,6 +149050,251 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "330853", + text = "hyjal_bouldera01.m2", + value = "hyjal_bouldera01.m2", + }, + { + fileId = "330854", + text = "hyjal_bouldera02.m2", + value = "hyjal_bouldera02.m2", + }, + { + fileId = "330855", + text = "hyjal_bouldera03.m2", + value = "hyjal_bouldera03.m2", + }, + { + fileId = "330857", + text = "hyjal_boulderb01.m2", + value = "hyjal_boulderb01.m2", + }, + { + fileId = "333090", + text = "hyjal_boulderb02.m2", + value = "hyjal_boulderb02.m2", + }, + { + fileId = "330858", + text = "hyjal_boulderb03.m2", + value = "hyjal_boulderb03.m2", + }, + }, + text = "boulders", + value = "boulders", + }, + { + children = { + { + fileId = "330063", + text = "hyjal_largewaterfalls.m2", + value = "hyjal_largewaterfalls.m2", + }, + { + fileId = "340178", + text = "hyjal_largewaterfalls_eastern.m2", + value = "hyjal_largewaterfalls_eastern.m2", + }, + { + fileId = "338544", + text = "hyjal_largewaterfalls_rivulet.m2", + value = "hyjal_largewaterfalls_rivulet.m2", + }, + }, + text = "largewaterfall", + value = "largewaterfall", + }, + { + children = { + { + fileId = "321594", + text = "hyjal_hugesmoke01.m2", + value = "hyjal_hugesmoke01.m2", + }, + { + fileId = "321678", + text = "hyjal_hugesmoke02.m2", + value = "hyjal_hugesmoke02.m2", + }, + { + fileId = "321455", + text = "hyjal_lavaashember01.m2", + value = "hyjal_lavaashember01.m2", + }, + { + fileId = "389211", + text = "hyjal_lavaashember03.m2", + value = "hyjal_lavaashember03.m2", + }, + { + fileId = "321456", + text = "hyjal_lavaburst01.m2", + value = "hyjal_lavaburst01.m2", + }, + { + fileId = "321457", + text = "hyjal_lavasmoke01.m2", + value = "hyjal_lavasmoke01.m2", + }, + { + fileId = "466675", + text = "hyjal_lavasmoke01_origination.m2", + value = "hyjal_lavasmoke01_origination.m2", + }, + { + fileId = "355560", + text = "hyjal_lavawaterfalls_01.m2", + value = "hyjal_lavawaterfalls_01.m2", + }, + { + fileId = "355791", + text = "hyjal_lavawaterfalls_02.m2", + value = "hyjal_lavawaterfalls_02.m2", + }, + { + fileId = "355792", + text = "hyjal_lavawaterfalls_03.m2", + value = "hyjal_lavawaterfalls_03.m2", + }, + }, + text = "lavaeffects", + value = "lavaeffects", + }, + { + children = { + { + children = { + { + fileId = "320316", + text = "hyjalbush01.m2", + value = "hyjalbush01.m2", + }, + { + fileId = "321366", + text = "hyjalbushburning01.m2", + value = "hyjalbushburning01.m2", + }, + { + fileId = "321367", + text = "hyjalbushburnt01.m2", + value = "hyjalbushburnt01.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "458177", + text = "hyjal_fire_vortex.m2", + value = "hyjal_fire_vortex.m2", + }, + { + fileId = "338545", + text = "hyjal_lavaashember02.m2", + value = "hyjal_lavaashember02.m2", + }, + { + fileId = "338549", + text = "hyjal_red_wall_fire_01.m2", + value = "hyjal_red_wall_fire_01.m2", + }, + }, + text = "fire", + value = "fire", + }, + { + children = { + { + fileId = "344259", + text = "hyjal_flower_01.m2", + value = "hyjal_flower_01.m2", + }, + { + fileId = "344260", + text = "hyjal_flower_02.m2", + value = "hyjal_flower_02.m2", + }, + { + fileId = "344261", + text = "hyjal_flower_03.m2", + value = "hyjal_flower_03.m2", + }, + { + fileId = "344262", + text = "hyjal_flower_04.m2", + value = "hyjal_flower_04.m2", + }, + { + fileId = "344263", + text = "hyjal_flower_05.m2", + value = "hyjal_flower_05.m2", + }, + { + fileId = "344264", + text = "hyjal_flower_06.m2", + value = "hyjal_flower_06.m2", + }, + { + fileId = "344265", + text = "hyjal_flower_07.m2", + value = "hyjal_flower_07.m2", + }, + }, + text = "flowers", + value = "flowers", + }, + { + children = { + { + fileId = "342048", + text = "hyjal_heat_shimmer_01.m2", + value = "hyjal_heat_shimmer_01.m2", + }, + }, + text = "heat_shimmer", + value = "heat_shimmer", + }, + { + children = { + { + fileId = "342692", + text = "hyjal_lilypads01.m2", + value = "hyjal_lilypads01.m2", + }, + { + fileId = "342693", + text = "hyjal_lilypads02.m2", + value = "hyjal_lilypads02.m2", + }, + }, + text = "lilypads", + value = "lilypads", + }, + { + children = { + { + fileId = "367492", + text = "logosh_shrine.m2", + value = "logosh_shrine.m2", + }, + }, + text = "logoshshrine", + value = "logoshshrine", + }, + { + children = { + { + fileId = "463979", + text = "hyjal_tower_meteor.m2", + value = "hyjal_tower_meteor.m2", + }, + }, + text = "meteor", + value = "meteor", + }, { children = { { @@ -105008,6 +149321,44 @@ WeakAuras.ModelPaths = { text = "rocks", value = "rocks", }, + { + children = { + { + fileId = "392574", + text = "hyjal_malorne_shrine_intact_doodads.m2", + value = "hyjal_malorne_shrine_intact_doodads.m2", + }, + }, + text = "shrines", + value = "shrines", + }, + { + children = { + { + fileId = "395900", + text = "hyjal_smokeclouds.m2", + value = "hyjal_smokeclouds.m2", + }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { + { + fileId = "342049", + text = "hyjal_sparkles01.m2", + value = "hyjal_sparkles01.m2", + }, + { + fileId = "343625", + text = "hyjal_sparkles_regrow_01.m2", + value = "hyjal_sparkles_regrow_01.m2", + }, + }, + text = "sparkles", + value = "sparkles", + }, { children = { { @@ -105020,17 +149371,93 @@ WeakAuras.ModelPaths = { text = "theworldtree_02.m2", value = "theworldtree_02.m2", }, + { + fileId = "326873", + text = "theworldtreeroot01.m2", + value = "theworldtreeroot01.m2", + }, + { + fileId = "329601", + text = "theworldtreeroot02.m2", + value = "theworldtreeroot02.m2", + }, + { + fileId = "329602", + text = "theworldtreeroot03.m2", + value = "theworldtreeroot03.m2", + }, + { + fileId = "329603", + text = "theworldtreeroot04.m2", + value = "theworldtreeroot04.m2", + }, + { + fileId = "329604", + text = "theworldtreeroot05.m2", + value = "theworldtreeroot05.m2", + }, + { + fileId = "329605", + text = "theworldtreeroot06.m2", + value = "theworldtreeroot06.m2", + }, + { + fileId = "343675", + text = "theworldtreeroot_magic_02.m2", + value = "theworldtreeroot_magic_02.m2", + }, + { + fileId = "343676", + text = "theworldtreeroot_magic_06.m2", + value = "theworldtreeroot_magic_06.m2", + }, }, text = "theworldtree", value = "theworldtree", }, { children = { + { + fileId = "463869", + text = "hyjal_tower_effect.m2", + value = "hyjal_tower_effect.m2", + }, + }, + text = "towereffect", + value = "towereffect", + }, + { + children = { + { + fileId = "330143", + text = "hyjal_treesapling01.m2", + value = "hyjal_treesapling01.m2", + }, + { + fileId = "330144", + text = "hyjal_treesapling02.m2", + value = "hyjal_treesapling02.m2", + }, { fileId = "201998", text = "hyjalfallentree01.m2", value = "hyjalfallentree01.m2", }, + { + fileId = "321445", + text = "hyjalfallentreenew01.m2", + value = "hyjalfallentreenew01.m2", + }, + { + fileId = "321292", + text = "hyjallogburning01.m2", + value = "hyjallogburning01.m2", + }, + { + fileId = "321293", + text = "hyjallogburnt01.m2", + value = "hyjallogburnt01.m2", + }, { fileId = "201999", text = "hyjaltree01.m2", @@ -105056,10 +149483,86 @@ WeakAuras.ModelPaths = { text = "hyjaltree05.m2", value = "hyjaltree05.m2", }, + { + fileId = "320864", + text = "hyjaltreeburning01.m2", + value = "hyjaltreeburning01.m2", + }, + { + fileId = "321294", + text = "hyjaltreeburning02.m2", + value = "hyjaltreeburning02.m2", + }, + { + fileId = "336117", + text = "hyjaltreeburning03.m2", + value = "hyjaltreeburning03.m2", + }, + { + fileId = "320865", + text = "hyjaltreeburnt01.m2", + value = "hyjaltreeburnt01.m2", + }, + { + fileId = "336119", + text = "hyjaltreeburnt02.m2", + value = "hyjaltreeburnt02.m2", + }, + { + fileId = "320108", + text = "hyjaltreenew01.m2", + value = "hyjaltreenew01.m2", + }, + { + fileId = "320109", + text = "hyjaltreenew02.m2", + value = "hyjaltreenew02.m2", + }, + { + fileId = "321425", + text = "hyjaltreenew03.m2", + value = "hyjaltreenew03.m2", + }, + { + fileId = "321355", + text = "hyjaltreenew04.m2", + value = "hyjaltreenew04.m2", + }, + { + fileId = "320319", + text = "hyjaltreenew05.m2", + value = "hyjaltreenew05.m2", + }, + { + fileId = "321430", + text = "hyjaltreestump01.m2", + value = "hyjaltreestump01.m2", + }, + { + fileId = "321431", + text = "hyjaltreestump02.m2", + value = "hyjaltreestump02.m2", + }, }, text = "trees", value = "trees", }, + { + children = { + { + fileId = "328330", + text = "hyjal_middle_wall1.m2", + value = "hyjal_middle_wall1.m2", + }, + { + fileId = "328331", + text = "hyjal_small_tower1.m2", + value = "hyjal_small_tower1.m2", + }, + }, + text = "walls", + value = "walls", + }, }, text = "passivedoodads", value = "passivedoodads", @@ -105079,6 +149582,16 @@ WeakAuras.ModelPaths = { text = "felpinecone.m2", value = "felpinecone.m2", }, + { + fileId = "467768", + text = "felpinecone_nosmoke.m2", + value = "felpinecone_nosmoke.m2", + }, + { + fileId = "467769", + text = "felpinecone_psmoke.m2", + value = "felpinecone_psmoke.m2", + }, }, text = "felpinecone", value = "felpinecone", @@ -106125,6 +150638,17 @@ WeakAuras.ModelPaths = { }, { children = { + { + children = { + { + fileId = "516582", + text = "funeralpyre_cairnebloodhoof.m2", + value = "funeralpyre_cairnebloodhoof.m2", + }, + }, + text = "cairnesmonument", + value = "cairnesmonument", + }, { children = { { @@ -106399,6 +150923,73 @@ WeakAuras.ModelPaths = { text = "auctionhouse", value = "auctionhouse", }, + { + children = { + { + fileId = "360670", + text = "black_iron_01.m2", + value = "black_iron_01.m2", + }, + { + fileId = "341886", + text = "blackironorc_bladethrower_01.m2", + value = "blackironorc_bladethrower_01.m2", + }, + { + fileId = "341891", + text = "blackironorc_catapult_01.m2", + value = "blackironorc_catapult_01.m2", + }, + { + fileId = "340133", + text = "blackironorc_wagon_01.m2", + value = "blackironorc_wagon_01.m2", + }, + { + fileId = "340134", + text = "blackironorc_wagon_02.m2", + value = "blackironorc_wagon_02.m2", + }, + }, + text = "blackiron", + value = "blackiron", + }, + { + children = { + { + fileId = "336120", + text = "orc_crane_01.m2", + value = "orc_crane_01.m2", + }, + { + fileId = "336121", + text = "orc_crane_02.m2", + value = "orc_crane_02.m2", + }, + { + fileId = "336122", + text = "orc_crane_03.m2", + value = "orc_crane_03.m2", + }, + { + fileId = "336125", + text = "orc_crane_04.m2", + value = "orc_crane_04.m2", + }, + { + fileId = "336126", + text = "orc_crane_05.m2", + value = "orc_crane_05.m2", + }, + { + fileId = "336127", + text = "orc_crane_06.m2", + value = "orc_crane_06.m2", + }, + }, + text = "cranes", + value = "cranes", + }, { children = { { @@ -106410,6 +151001,44 @@ WeakAuras.ModelPaths = { text = "doors", value = "doors", }, + { + children = { + { + fileId = "366653", + text = "orgrimmar_elevator_01.m2", + value = "orgrimmar_elevator_01.m2", + }, + { + fileId = "366614", + text = "orgrimmar_elevator_02.m2", + value = "orgrimmar_elevator_02.m2", + }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { + { + fileId = "366002", + text = "orc_giantmetalsmelter_01.m2", + value = "orc_giantmetalsmelter_01.m2", + }, + }, + text = "giantmetalsmelter", + value = "giantmetalsmelter", + }, + { + children = { + { + fileId = "374815", + text = "orgrimmar_inn_bottles.m2", + value = "orgrimmar_inn_bottles.m2", + }, + }, + text = "inn", + value = "inn", + }, { children = { { @@ -106464,6 +151093,11 @@ WeakAuras.ModelPaths = { text = "onyxiatrophypost", value = "onyxiatrophypost", }, + { + fileId = "381944", + text = "orc_sconce_01.m2", + value = "orc_sconce_01.m2", + }, { children = { { @@ -106496,6 +151130,83 @@ WeakAuras.ModelPaths = { text = "pentagram", value = "pentagram", }, + { + children = { + { + fileId = "440163", + text = "orgrim_rocks_01.m2", + value = "orgrim_rocks_01.m2", + }, + { + fileId = "440164", + text = "orgrim_rocks_02.m2", + value = "orgrim_rocks_02.m2", + }, + { + fileId = "440165", + text = "orgrim_rocks_03.m2", + value = "orgrim_rocks_03.m2", + }, + { + fileId = "440166", + text = "orgrim_rocks_04.m2", + value = "orgrim_rocks_04.m2", + }, + { + fileId = "440167", + text = "orgrim_rocks_05.m2", + value = "orgrim_rocks_05.m2", + }, + { + fileId = "440168", + text = "orgrim_rocks_06.m2", + value = "orgrim_rocks_06.m2", + }, + { + fileId = "440169", + text = "orgrim_rocks_07.m2", + value = "orgrim_rocks_07.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "362837", + text = "orcsign_armory_new_01.m2", + value = "orcsign_armory_new_01.m2", + }, + { + fileId = "362838", + text = "orcsign_auctionhouse_new_01.m2", + value = "orcsign_auctionhouse_new_01.m2", + }, + { + fileId = "362207", + text = "orcsign_bank_new_01.m2", + value = "orcsign_bank_new_01.m2", + }, + { + fileId = "362839", + text = "orcsign_general_new_01.m2", + value = "orcsign_general_new_01.m2", + }, + { + fileId = "362840", + text = "orcsign_tavern_new_01.m2", + value = "orcsign_tavern_new_01.m2", + }, + { + fileId = "362841", + text = "orcsign_weapons_new_01.m2", + value = "orcsign_weapons_new_01.m2", + }, + }, + text = "signs", + value = "signs", + }, { fileId = "202367", text = "thralls_throne.m2", @@ -106506,6 +151217,17 @@ WeakAuras.ModelPaths = { text = "thralls_throne_02.m2", value = "thralls_throne_02.m2", }, + { + children = { + { + fileId = "357852", + text = "orc_grommashthrone_01.m2", + value = "orc_grommashthrone_01.m2", + }, + }, + text = "throne", + value = "throne", + }, { children = { { @@ -106513,10 +151235,278 @@ WeakAuras.ModelPaths = { text = "orgrimmar_waterfalla.m2", value = "orgrimmar_waterfalla.m2", }, + { + fileId = "366429", + text = "orgrimwaterfall_01.m2", + value = "orgrimwaterfall_01.m2", + }, + { + fileId = "366430", + text = "orgrimwaterfall_02.m2", + value = "orgrimwaterfall_02.m2", + }, + { + fileId = "366431", + text = "orgrimwaterfall_02b.m2", + value = "orgrimwaterfall_02b.m2", + }, + { + fileId = "366446", + text = "orgrimwaterfall_02c.m2", + value = "orgrimwaterfall_02c.m2", + }, + { + fileId = "366447", + text = "orgrimwaterfall_03.m2", + value = "orgrimwaterfall_03.m2", + }, + { + fileId = "366448", + text = "orgrimwaterfall_03b.m2", + value = "orgrimwaterfall_03b.m2", + }, + { + fileId = "366449", + text = "orgrimwaterfall_03c.m2", + value = "orgrimwaterfall_03c.m2", + }, }, text = "waterfalls", value = "waterfalls", }, + { + children = { + { + children = { + { + fileId = "366793", + text = "winterorc_bed_01.m2", + value = "winterorc_bed_01.m2", + }, + { + fileId = "366794", + text = "winterorc_bed_02.m2", + value = "winterorc_bed_02.m2", + }, + }, + text = "bed", + value = "bed", + }, + { + children = { + { + fileId = "355507", + text = "winterorc_medium_brazier_01.m2", + value = "winterorc_medium_brazier_01.m2", + }, + { + fileId = "355496", + text = "winterorc_small_brazier_01.m2", + value = "winterorc_small_brazier_01.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "366654", + text = "winterorc_chains_01.m2", + value = "winterorc_chains_01.m2", + }, + }, + text = "chains", + value = "chains", + }, + { + children = { + { + fileId = "366432", + text = "winterorc_chair_01.m2", + value = "winterorc_chair_01.m2", + }, + { + fileId = "366644", + text = "winterorc_chair_02.m2", + value = "winterorc_chair_02.m2", + }, + }, + text = "chair", + value = "chair", + }, + { + children = { + { + fileId = "451131", + text = "winterorc_counter_l.m2", + value = "winterorc_counter_l.m2", + }, + { + fileId = "451132", + text = "winterorc_counter_straight.m2", + value = "winterorc_counter_straight.m2", + }, + }, + text = "counters", + value = "counters", + }, + { + children = { + { + fileId = "358389", + text = "winterorc_curb_01.m2", + value = "winterorc_curb_01.m2", + }, + { + fileId = "358466", + text = "winterorc_curb_02.m2", + value = "winterorc_curb_02.m2", + }, + { + fileId = "358467", + text = "winterorc_curb_03.m2", + value = "winterorc_curb_03.m2", + }, + { + fileId = "358468", + text = "winterorc_curb_04.m2", + value = "winterorc_curb_04.m2", + }, + { + fileId = "361354", + text = "winterorc_curb_05.m2", + value = "winterorc_curb_05.m2", + }, + { + fileId = "361237", + text = "winterorc_metalcurb_01.m2", + value = "winterorc_metalcurb_01.m2", + }, + { + fileId = "361238", + text = "winterorc_metalcurb_02.m2", + value = "winterorc_metalcurb_02.m2", + }, + { + fileId = "361311", + text = "winterorc_metalcurb_03.m2", + value = "winterorc_metalcurb_03.m2", + }, + { + fileId = "361333", + text = "winterorc_metalcurb_04.m2", + value = "winterorc_metalcurb_04.m2", + }, + { + fileId = "361355", + text = "winterorc_metalcurb_05.m2", + value = "winterorc_metalcurb_05.m2", + }, + { + fileId = "362622", + text = "winterorc_metalcurb_06.m2", + value = "winterorc_metalcurb_06.m2", + }, + { + fileId = "362623", + text = "winterorc_metalcurb_07.m2", + value = "winterorc_metalcurb_07.m2", + }, + }, + text = "curb", + value = "curb", + }, + { + children = { + { + fileId = "356051", + text = "winterorc_gears_01.m2", + value = "winterorc_gears_01.m2", + }, + }, + text = "gears", + value = "gears", + }, + { + children = { + { + fileId = "360672", + text = "winterorc_girder_01.m2", + value = "winterorc_girder_01.m2", + }, + }, + text = "girder", + value = "girder", + }, + { + children = { + { + fileId = "365005", + text = "winterorc_rocks_01.m2", + value = "winterorc_rocks_01.m2", + }, + { + fileId = "365013", + text = "winterorc_rocks_02.m2", + value = "winterorc_rocks_02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "451133", + text = "winterorc_shelf_small.m2", + value = "winterorc_shelf_small.m2", + }, + }, + text = "shelves", + value = "shelves", + }, + { + children = { + { + fileId = "357313", + text = "winterorc_table_01.m2", + value = "winterorc_table_01.m2", + }, + { + fileId = "451135", + text = "winterorc_table_02.m2", + value = "winterorc_table_02.m2", + }, + { + fileId = "451134", + text = "winterorc_tabletop.m2", + value = "winterorc_tabletop.m2", + }, + }, + text = "table", + value = "table", + }, + { + children = { + { + fileId = "354478", + text = "winterorc_weaponrack_01.m2", + value = "winterorc_weaponrack_01.m2", + }, + { + fileId = "354738", + text = "winterorc_weaponrack_02.m2", + value = "winterorc_weaponrack_02.m2", + }, + }, + text = "weaponrack", + value = "weaponrack", + }, + }, + text = "winterorc", + value = "winterorc", + }, }, text = "passivedoodads", value = "passivedoodads", @@ -106564,6 +151554,11 @@ WeakAuras.ModelPaths = { text = "activedoodads", value = "activedoodads", }, + { + fileId = "382498", + text = "razorfendowns_canopy01.m2", + value = "razorfendowns_canopy01.m2", + }, }, text = "razorfen", value = "razorfen", @@ -107802,6 +152797,17 @@ WeakAuras.ModelPaths = { text = "treestumps", value = "treestumps", }, + { + children = { + { + fileId = "254628", + text = "stonetalonvolcanotop.m2", + value = "stonetalonvolcanotop.m2", + }, + }, + text = "volcano", + value = "volcano", + }, { children = { { @@ -107972,6 +152978,11 @@ WeakAuras.ModelPaths = { text = "go_large_rocket_2.m2", value = "go_large_rocket_2.m2", }, + { + fileId = "320916", + text = "go_sludgefall.m2", + value = "go_sludgefall.m2", + }, { fileId = "254422", text = "go_small_bomb.m2", @@ -108048,6 +153059,41 @@ WeakAuras.ModelPaths = { text = "tanarisrock07.m2", value = "tanarisrock07.m2", }, + { + fileId = "458892", + text = "tanarisrock_twilight_01.m2", + value = "tanarisrock_twilight_01.m2", + }, + { + fileId = "458893", + text = "tanarisrock_twilight_02.m2", + value = "tanarisrock_twilight_02.m2", + }, + { + fileId = "458894", + text = "tanarisrock_twilight_03.m2", + value = "tanarisrock_twilight_03.m2", + }, + { + fileId = "458895", + text = "tanarisrock_twilight_04.m2", + value = "tanarisrock_twilight_04.m2", + }, + { + fileId = "458896", + text = "tanarisrock_twilight_05.m2", + value = "tanarisrock_twilight_05.m2", + }, + { + fileId = "458897", + text = "tanarisrock_twilight_06.m2", + value = "tanarisrock_twilight_06.m2", + }, + { + fileId = "458898", + text = "tanarisrock_twilight_07.m2", + value = "tanarisrock_twilight_07.m2", + }, }, text = "rocks", value = "rocks", @@ -108064,6 +153110,21 @@ WeakAuras.ModelPaths = { text = "tanariswatertower.m2", value = "tanariswatertower.m2", }, + { + fileId = "354500", + text = "tanariswatertower_broken_01.m2", + value = "tanariswatertower_broken_01.m2", + }, + { + fileId = "354501", + text = "tanariswatertower_broken_02.m2", + value = "tanariswatertower_broken_02.m2", + }, + { + fileId = "354502", + text = "tanariswatertower_broken_03.m2", + value = "tanariswatertower_broken_03.m2", + }, { fileId = "307492", text = "tanariswatertower_steel.m2", @@ -108112,6 +153173,39 @@ WeakAuras.ModelPaths = { text = "bridge", value = "bridge", }, + { + children = { + { + fileId = "344798", + text = "thousandneedles_buoy.m2", + value = "thousandneedles_buoy.m2", + }, + }, + text = "buoy", + value = "buoy", + }, + { + children = { + { + fileId = "343100", + text = "barge_crane_01.m2", + value = "barge_crane_01.m2", + }, + }, + text = "crane", + value = "crane", + }, + { + children = { + { + fileId = "338839", + text = "spinning_gear.m2", + value = "spinning_gear.m2", + }, + }, + text = "gears", + value = "gears", + }, { children = { { @@ -108124,11 +153218,21 @@ WeakAuras.ModelPaths = { text = "straightaway01.m2", value = "straightaway01.m2", }, + { + fileId = "343677", + text = "straightaway01_scattered.m2", + value = "straightaway01_scattered.m2", + }, { fileId = "202696", text = "straightaway02.m2", value = "straightaway02.m2", }, + { + fileId = "344051", + text = "straightaway02_scattered.m2", + value = "straightaway02_scattered.m2", + }, { fileId = "202697", text = "straightaway03.m2", @@ -108195,6 +153299,26 @@ WeakAuras.ModelPaths = { text = "racingflag01.m2", value = "racingflag01.m2", }, + { + fileId = "352998", + text = "racingflag01_animated_01.m2", + value = "racingflag01_animated_01.m2", + }, + { + fileId = "352999", + text = "racingflag01_animated_02.m2", + value = "racingflag01_animated_02.m2", + }, + { + fileId = "353002", + text = "racingflag01_floating.m2", + value = "racingflag01_floating.m2", + }, + { + fileId = "353003", + text = "racingflag01_floating_underwater.m2", + value = "racingflag01_floating_underwater.m2", + }, }, text = "racingflags", value = "racingflags", @@ -108296,6 +153420,51 @@ WeakAuras.ModelPaths = { text = "thousandrock15.m2", value = "thousandrock15.m2", }, + { + fileId = "347911", + text = "thousandrockbroken01.m2", + value = "thousandrockbroken01.m2", + }, + { + fileId = "347912", + text = "thousandrockbroken02.m2", + value = "thousandrockbroken02.m2", + }, + { + fileId = "347913", + text = "thousandrockbroken03.m2", + value = "thousandrockbroken03.m2", + }, + { + fileId = "347914", + text = "thousandrockbroken04.m2", + value = "thousandrockbroken04.m2", + }, + { + fileId = "347915", + text = "thousandrockbroken05.m2", + value = "thousandrockbroken05.m2", + }, + { + fileId = "347916", + text = "thousandrockbroken06.m2", + value = "thousandrockbroken06.m2", + }, + { + fileId = "347917", + text = "thousandrockbroken07.m2", + value = "thousandrockbroken07.m2", + }, + { + fileId = "347918", + text = "thousandrockbroken08.m2", + value = "thousandrockbroken08.m2", + }, + { + fileId = "347919", + text = "thousandrockbroken09.m2", + value = "thousandrockbroken09.m2", + }, }, text = "rocks", value = "rocks", @@ -108316,6 +153485,48 @@ WeakAuras.ModelPaths = { text = "snakenests", value = "snakenests", }, + { + children = { + { + fileId = "343101", + text = "gnome_tube_01.m2", + value = "gnome_tube_01.m2", + }, + { + fileId = "343102", + text = "gnome_tube_02.m2", + value = "gnome_tube_02.m2", + }, + { + fileId = "353158", + text = "gnome_tube_03.m2", + value = "gnome_tube_03.m2", + }, + { + fileId = "355508", + text = "gnome_tube_04.m2", + value = "gnome_tube_04.m2", + }, + { + fileId = "346125", + text = "gnome_tube_large.m2", + value = "gnome_tube_large.m2", + }, + }, + text = "tubes", + value = "tubes", + }, + { + children = { + { + fileId = "343679", + text = "thousandneedles_wood_floating.m2", + value = "thousandneedles_wood_floating.m2", + }, + }, + text = "wood", + value = "wood", + }, { children = { { @@ -108400,6 +153611,27 @@ WeakAuras.ModelPaths = { text = "archway", value = "archway", }, + { + children = { + { + fileId = "366956", + text = "ungoro_coconut01.m2", + value = "ungoro_coconut01.m2", + }, + { + fileId = "366957", + text = "ungoro_coconut01_broken.m2", + value = "ungoro_coconut01_broken.m2", + }, + { + fileId = "366958", + text = "ungoro_coconutbunch01.m2", + value = "ungoro_coconutbunch01.m2", + }, + }, + text = "coconuts", + value = "coconuts", + }, { children = { { @@ -109086,6 +154318,26 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "367938", + text = "badlands_charredcactus01.m2", + value = "badlands_charredcactus01.m2", + }, + { + fileId = "367939", + text = "badlands_charredcactus02.m2", + value = "badlands_charredcactus02.m2", + }, + { + fileId = "367940", + text = "badlands_charredcactus03.m2", + value = "badlands_charredcactus03.m2", + }, + { + fileId = "367941", + text = "badlands_charredcactus04.m2", + value = "badlands_charredcactus04.m2", + }, { fileId = "202925", text = "badlandscactus_1.m2", @@ -109153,6 +154405,31 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "367315", + text = "badlands_charredrock01.m2", + value = "badlands_charredrock01.m2", + }, + { + fileId = "367316", + text = "badlands_charredrock02.m2", + value = "badlands_charredrock02.m2", + }, + { + fileId = "367317", + text = "badlands_charredrock03.m2", + value = "badlands_charredrock03.m2", + }, + { + fileId = "367318", + text = "badlands_charredrock04.m2", + value = "badlands_charredrock04.m2", + }, + { + fileId = "367319", + text = "badlands_charredrock05.m2", + value = "badlands_charredrock05.m2", + }, { fileId = "202940", text = "badlandsrock01.m2", @@ -109257,6 +154534,26 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "367746", + text = "badlands_charredtree01.m2", + value = "badlands_charredtree01.m2", + }, + { + fileId = "367747", + text = "badlands_charredtree02.m2", + value = "badlands_charredtree02.m2", + }, + { + fileId = "367748", + text = "badlands_charredtree03.m2", + value = "badlands_charredtree03.m2", + }, + { + fileId = "367749", + text = "badlands_charredtree04.m2", + value = "badlands_charredtree04.m2", + }, { fileId = "202970", text = "badlandscactus01.m2", @@ -109282,6 +154579,16 @@ WeakAuras.ModelPaths = { text = "badlandspalmtree02.m2", value = "badlandspalmtree02.m2", }, + { + fileId = "459316", + text = "badlandspalmtree_dead_01.m2", + value = "badlandspalmtree_dead_01.m2", + }, + { + fileId = "459317", + text = "badlandspalmtree_dead_02.m2", + value = "badlandspalmtree_dead_02.m2", + }, { fileId = "202975", text = "badlandstree01.m2", @@ -109858,6 +155165,33 @@ WeakAuras.ModelPaths = { }, { children = { + { + children = { + { + fileId = "513906", + text = "magniroom_bookgroup.m2", + value = "magniroom_bookgroup.m2", + }, + }, + text = "bookgroup", + value = "bookgroup", + }, + { + children = { + { + fileId = "512921", + text = "book_dwarf_huge_open_01_lecturn.m2", + value = "book_dwarf_huge_open_01_lecturn.m2", + }, + { + fileId = "512924", + text = "book_dwarf_huge_open_02_lecturn.m2", + value = "book_dwarf_huge_open_02_lecturn.m2", + }, + }, + text = "books", + value = "books", + }, { children = { { @@ -110281,6 +155615,11 @@ WeakAuras.ModelPaths = { text = "lavasteam.m2", value = "lavasteam.m2", }, + { + fileId = "342414", + text = "lavasteam_low.m2", + value = "lavasteam_low.m2", + }, }, text = "lavasteam", value = "lavasteam", @@ -110413,6 +155752,11 @@ WeakAuras.ModelPaths = { text = "ironforgestatue_01.m2", value = "ironforgestatue_01.m2", }, + { + fileId = "510063", + text = "magnibronzebeard_diamond.m2", + value = "magnibronzebeard_diamond.m2", + }, }, text = "statues", value = "statues", @@ -110651,6 +155995,46 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "390310", + text = "dwarvendam_debris01.m2", + value = "dwarvendam_debris01.m2", + }, + { + fileId = "390311", + text = "dwarvendam_debris02.m2", + value = "dwarvendam_debris02.m2", + }, + { + fileId = "390312", + text = "dwarvendam_debris03.m2", + value = "dwarvendam_debris03.m2", + }, + { + fileId = "390499", + text = "dwarvendam_debris04.m2", + value = "dwarvendam_debris04.m2", + }, + { + fileId = "446007", + text = "dwarvendam_debris05.m2", + value = "dwarvendam_debris05.m2", + }, + { + fileId = "446008", + text = "dwarvendam_debris06.m2", + value = "dwarvendam_debris06.m2", + }, + { + fileId = "446009", + text = "dwarvendam_debris07.m2", + value = "dwarvendam_debris07.m2", + }, + { + fileId = "446010", + text = "dwarvendam_debris08.m2", + value = "dwarvendam_debris08.m2", + }, { fileId = "203305", text = "testdam01.m2", @@ -110732,6 +156116,16 @@ WeakAuras.ModelPaths = { text = "grass", value = "grass", }, + { + fileId = "440170", + text = "loch_modan_dam_waterfall.m2", + value = "loch_modan_dam_waterfall.m2", + }, + { + fileId = "451156", + text = "loch_modan_dam_waterfall_mud.m2", + value = "loch_modan_dam_waterfall_mud.m2", + }, { children = { { @@ -111404,6 +156798,11 @@ WeakAuras.ModelPaths = { text = "blackrockbanners", value = "blackrockbanners", }, + { + fileId = "400721", + text = "bridgebigwhite_fx.m2", + value = "bridgebigwhite_fx.m2", + }, { children = { { @@ -111638,6 +157037,11 @@ WeakAuras.ModelPaths = { }, { children = { + { + fileId = "402678", + text = "wetland_angledtree_01.m2", + value = "wetland_angledtree_01.m2", + }, { fileId = "203531", text = "wetlandsnest01.m2", @@ -112435,6 +157839,17 @@ WeakAuras.ModelPaths = { text = "banners", value = "banners", }, + { + children = { + { + fileId = "463576", + text = "plagueland_beamfx.m2", + value = "plagueland_beamfx.m2", + }, + }, + text = "beam", + value = "beam", + }, { children = { { @@ -112570,6 +157985,16 @@ WeakAuras.ModelPaths = { text = "plaguecauldron.m2", value = "plaguecauldron.m2", }, + { + fileId = "387005", + text = "plaguecauldronbroken.m2", + value = "plaguecauldronbroken.m2", + }, + { + fileId = "387006", + text = "plaguecauldronbrokenbase.m2", + value = "plaguecauldronbrokenbase.m2", + }, }, text = "plaguecauldron", value = "plaguecauldron", @@ -113536,6 +158961,11 @@ WeakAuras.ModelPaths = { text = "nox_door_web_boss.m2", value = "nox_door_web_boss.m2", }, + { + fileId = "436629", + text = "nox_door_web_boss2.m2", + value = "nox_door_web_boss2.m2", + }, { fileId = "203998", text = "nox_door_web_large.m2", @@ -113724,6 +159154,11 @@ WeakAuras.ModelPaths = { text = "nox_portal_yellow_bossroom_eye.m2", value = "nox_portal_yellow_bossroom_eye.m2", }, + { + fileId = "303853", + text = "stratholme_smoke_01.m2", + value = "stratholme_smoke_01.m2", + }, { fileId = "204055", text = "stratholmefiresmokeemberm.m2", @@ -114488,6 +159923,11 @@ WeakAuras.ModelPaths = { text = "badroc03.m2", value = "badroc03.m2", }, + { + fileId = "367105", + text = "badroc04.m2", + value = "badroc04.m2", + }, { fileId = "218617", text = "barbus01.m2", @@ -114858,6 +160298,56 @@ WeakAuras.ModelPaths = { text = "csshrub01.m2", value = "csshrub01.m2", }, + { + fileId = "316202", + text = "cwlflo01.m2", + value = "cwlflo01.m2", + }, + { + fileId = "316203", + text = "cwlflo02.m2", + value = "cwlflo02.m2", + }, + { + fileId = "316204", + text = "cwlflo03.m2", + value = "cwlflo03.m2", + }, + { + fileId = "316205", + text = "cwlflo04.m2", + value = "cwlflo04.m2", + }, + { + fileId = "316206", + text = "cwlflo05.m2", + value = "cwlflo05.m2", + }, + { + fileId = "316207", + text = "cwlflo06.m2", + value = "cwlflo06.m2", + }, + { + fileId = "316208", + text = "cwlflo07.m2", + value = "cwlflo07.m2", + }, + { + fileId = "316209", + text = "cwlshrub01.m2", + value = "cwlshrub01.m2", + }, + { + fileId = "316210", + text = "cwlshrub02.m2", + value = "cwlshrub02.m2", + }, + { + fileId = "316211", + text = "cwlshrub04.m2", + value = "cwlshrub04.m2", + }, { fileId = "218700", text = "dbbra04.m2", @@ -114888,6 +160378,146 @@ WeakAuras.ModelPaths = { text = "dbgra04.m2", value = "dbgra04.m2", }, + { + fileId = "364973", + text = "dh_bra01.m2", + value = "dh_bra01.m2", + }, + { + fileId = "364974", + text = "dh_bra02.m2", + value = "dh_bra02.m2", + }, + { + fileId = "364975", + text = "dh_bus01.m2", + value = "dh_bus01.m2", + }, + { + fileId = "364976", + text = "dh_bus02.m2", + value = "dh_bus02.m2", + }, + { + fileId = "364977", + text = "dh_bus03.m2", + value = "dh_bus03.m2", + }, + { + fileId = "386013", + text = "dh_gra01.m2", + value = "dh_gra01.m2", + }, + { + fileId = "385331", + text = "dh_mus01.m2", + value = "dh_mus01.m2", + }, + { + fileId = "385332", + text = "dh_mus02.m2", + value = "dh_mus02.m2", + }, + { + fileId = "385333", + text = "dh_mus03.m2", + value = "dh_mus03.m2", + }, + { + fileId = "386265", + text = "dh_mus04.m2", + value = "dh_mus04.m2", + }, + { + fileId = "386266", + text = "dh_mus05.m2", + value = "dh_mus05.m2", + }, + { + fileId = "386267", + text = "dh_mus06.m2", + value = "dh_mus06.m2", + }, + { + fileId = "385334", + text = "dh_ore01.m2", + value = "dh_ore01.m2", + }, + { + fileId = "385335", + text = "dh_ore02.m2", + value = "dh_ore02.m2", + }, + { + fileId = "385336", + text = "dh_ore03.m2", + value = "dh_ore03.m2", + }, + { + fileId = "385069", + text = "dh_pla01.m2", + value = "dh_pla01.m2", + }, + { + fileId = "385070", + text = "dh_pla02.m2", + value = "dh_pla02.m2", + }, + { + fileId = "364978", + text = "dh_roc01.m2", + value = "dh_roc01.m2", + }, + { + fileId = "364979", + text = "dh_roc02.m2", + value = "dh_roc02.m2", + }, + { + fileId = "364980", + text = "dh_roc03.m2", + value = "dh_roc03.m2", + }, + { + fileId = "370779", + text = "dh_roc04.m2", + value = "dh_roc04.m2", + }, + { + fileId = "370780", + text = "dh_roc05.m2", + value = "dh_roc05.m2", + }, + { + fileId = "370781", + text = "dh_roc06.m2", + value = "dh_roc06.m2", + }, + { + fileId = "412429", + text = "dh_roc07.m2", + value = "dh_roc07.m2", + }, + { + fileId = "412430", + text = "dh_roc08.m2", + value = "dh_roc08.m2", + }, + { + fileId = "385071", + text = "dh_spo01.m2", + value = "dh_spo01.m2", + }, + { + fileId = "385072", + text = "dh_spo02.m2", + value = "dh_spo02.m2", + }, + { + fileId = "386014", + text = "dh_spo03.m2", + value = "dh_spo03.m2", + }, { fileId = "218708", text = "drkbus01.m2", @@ -115153,6 +160783,11 @@ WeakAuras.ModelPaths = { text = "durgra03.m2", value = "durgra03.m2", }, + { + fileId = "344371", + text = "durgra04.m2", + value = "durgra04.m2", + }, { fileId = "218761", text = "duribu01.m2", @@ -115648,6 +161283,56 @@ WeakAuras.ModelPaths = { text = "felgra04.m2", value = "felgra04.m2", }, + { + fileId = "514280", + text = "fl_roc01.m2", + value = "fl_roc01.m2", + }, + { + fileId = "514282", + text = "fl_roc02.m2", + value = "fl_roc02.m2", + }, + { + fileId = "514284", + text = "fl_roc03.m2", + value = "fl_roc03.m2", + }, + { + fileId = "514286", + text = "fl_roc04.m2", + value = "fl_roc04.m2", + }, + { + fileId = "514288", + text = "fl_roc05.m2", + value = "fl_roc05.m2", + }, + { + fileId = "514290", + text = "fl_roc06.m2", + value = "fl_roc06.m2", + }, + { + fileId = "514292", + text = "fl_roc07.m2", + value = "fl_roc07.m2", + }, + { + fileId = "514294", + text = "fl_roc08.m2", + value = "fl_roc08.m2", + }, + { + fileId = "514296", + text = "fl_roc09.m2", + value = "fl_roc09.m2", + }, + { + fileId = "514298", + text = "fl_roc10.m2", + value = "fl_roc10.m2", + }, { fileId = "218867", text = "ghclov01.m2", @@ -115678,6 +161363,51 @@ WeakAuras.ModelPaths = { text = "ghshrub03.m2", value = "ghshrub03.m2", }, + { + fileId = "306986", + text = "gilclov01.m2", + value = "gilclov01.m2", + }, + { + fileId = "314951", + text = "gilrose01.m2", + value = "gilrose01.m2", + }, + { + fileId = "306987", + text = "gilshrub01.m2", + value = "gilshrub01.m2", + }, + { + fileId = "307024", + text = "gilshrub02.m2", + value = "gilshrub02.m2", + }, + { + fileId = "314873", + text = "gilshrub03.m2", + value = "gilshrub03.m2", + }, + { + fileId = "314875", + text = "gilshrub04.m2", + value = "gilshrub04.m2", + }, + { + fileId = "314954", + text = "gilshrub05.m2", + value = "gilshrub05.m2", + }, + { + fileId = "315432", + text = "gilshrub06.m2", + value = "gilshrub06.m2", + }, + { + fileId = "426351", + text = "gilshrub07.m2", + value = "gilshrub07.m2", + }, { fileId = "218879", text = "gstbus01.m2", @@ -115763,6 +161493,21 @@ WeakAuras.ModelPaths = { text = "hofgrassyd02.m2", value = "hofgrassyd02.m2", }, + { + fileId = "322145", + text = "hyjbra01.m2", + value = "hyjbra01.m2", + }, + { + fileId = "322146", + text = "hyjbra02.m2", + value = "hyjbra02.m2", + }, + { + fileId = "322147", + text = "hyjbra03.m2", + value = "hyjbra03.m2", + }, { fileId = "218899", text = "hyjbus01.m2", @@ -115788,6 +161533,41 @@ WeakAuras.ModelPaths = { text = "hyjbus05.m2", value = "hyjbus05.m2", }, + { + fileId = "322148", + text = "hyjbus06.m2", + value = "hyjbus06.m2", + }, + { + fileId = "322149", + text = "hyjbus07.m2", + value = "hyjbus07.m2", + }, + { + fileId = "363278", + text = "hyjflo01.m2", + value = "hyjflo01.m2", + }, + { + fileId = "363279", + text = "hyjflo02.m2", + value = "hyjflo02.m2", + }, + { + fileId = "363280", + text = "hyjflo03.m2", + value = "hyjflo03.m2", + }, + { + fileId = "363281", + text = "hyjflo04.m2", + value = "hyjflo04.m2", + }, + { + fileId = "363282", + text = "hyjflo05.m2", + value = "hyjflo05.m2", + }, { fileId = "218904", text = "hyjgra01.m2", @@ -115803,6 +161583,51 @@ WeakAuras.ModelPaths = { text = "hyjgra03.m2", value = "hyjgra03.m2", }, + { + fileId = "322150", + text = "hyjgra04.m2", + value = "hyjgra04.m2", + }, + { + fileId = "363284", + text = "hyjgra05.m2", + value = "hyjgra05.m2", + }, + { + fileId = "363285", + text = "hyjgra06.m2", + value = "hyjgra06.m2", + }, + { + fileId = "363286", + text = "hyjgra07.m2", + value = "hyjgra07.m2", + }, + { + fileId = "321744", + text = "hyjpla01.m2", + value = "hyjpla01.m2", + }, + { + fileId = "321745", + text = "hyjpla02.m2", + value = "hyjpla02.m2", + }, + { + fileId = "321746", + text = "hyjpla03.m2", + value = "hyjpla03.m2", + }, + { + fileId = "322151", + text = "hyjroc01.m2", + value = "hyjroc01.m2", + }, + { + fileId = "322152", + text = "hyjroc02.m2", + value = "hyjroc02.m2", + }, { fileId = "218907", text = "icebon01.m2", @@ -115908,6 +161733,66 @@ WeakAuras.ModelPaths = { text = "kalgra05.m2", value = "kalgra05.m2", }, + { + fileId = "331303", + text = "kzban01.m2", + value = "kzban01.m2", + }, + { + fileId = "331304", + text = "kzban02.m2", + value = "kzban02.m2", + }, + { + fileId = "331306", + text = "kzcan01.m2", + value = "kzcan01.m2", + }, + { + fileId = "331307", + text = "kzcan02.m2", + value = "kzcan02.m2", + }, + { + fileId = "331308", + text = "kzgra01.m2", + value = "kzgra01.m2", + }, + { + fileId = "331309", + text = "kzgra02.m2", + value = "kzgra02.m2", + }, + { + fileId = "331310", + text = "kzgra03.m2", + value = "kzgra03.m2", + }, + { + fileId = "331311", + text = "kzpaper01.m2", + value = "kzpaper01.m2", + }, + { + fileId = "331312", + text = "kzpaper02.m2", + value = "kzpaper02.m2", + }, + { + fileId = "331313", + text = "kzpaper03.m2", + value = "kzpaper03.m2", + }, + { + fileId = "331314", + text = "kzroc01.m2", + value = "kzroc01.m2", + }, + { + fileId = "331315", + text = "kzroc02.m2", + value = "kzroc02.m2", + }, { fileId = "218932", text = "lakgra01.m2", @@ -116028,6 +161913,26 @@ WeakAuras.ModelPaths = { text = "lchroc04.m2", value = "lchroc04.m2", }, + { + fileId = "307743", + text = "losbra01.m2", + value = "losbra01.m2", + }, + { + fileId = "307744", + text = "losgra01.m2", + value = "losgra01.m2", + }, + { + fileId = "307745", + text = "losgra02.m2", + value = "losgra02.m2", + }, + { + fileId = "307773", + text = "losgra03.m2", + value = "losgra03.m2", + }, { fileId = "218957", text = "mulbus01.m2", @@ -116093,6 +161998,21 @@ WeakAuras.ModelPaths = { text = "mulroc02.m2", value = "mulroc02.m2", }, + { + fileId = "347003", + text = "multho01.m2", + value = "multho01.m2", + }, + { + fileId = "347004", + text = "multho02.m2", + value = "multho02.m2", + }, + { + fileId = "347006", + text = "multho03.m2", + value = "multho03.m2", + }, { fileId = "218971", text = "naggra01.m2", @@ -116328,6 +162248,21 @@ WeakAuras.ModelPaths = { text = "sivgra01.m2", value = "sivgra01.m2", }, + { + fileId = "404181", + text = "sivgra02.m2", + value = "sivgra02.m2", + }, + { + fileId = "404182", + text = "sivgra03.m2", + value = "sivgra03.m2", + }, + { + fileId = "404183", + text = "sivpla01.m2", + value = "sivpla01.m2", + }, { fileId = "219026", text = "sivroc01.m2", @@ -116638,6 +162573,131 @@ WeakAuras.ModelPaths = { text = "stmgra05.m2", value = "stmgra05.m2", }, + { + fileId = "369379", + text = "swcflo01.m2", + value = "swcflo01.m2", + }, + { + fileId = "369380", + text = "swcflo02.m2", + value = "swcflo02.m2", + }, + { + fileId = "369381", + text = "swcgra01.m2", + value = "swcgra01.m2", + }, + { + fileId = "369382", + text = "swcgra02.m2", + value = "swcgra02.m2", + }, + { + fileId = "369383", + text = "swcmus01.m2", + value = "swcmus01.m2", + }, + { + fileId = "523105", + text = "th_skullrock01.m2", + value = "th_skullrock01.m2", + }, + { + fileId = "364652", + text = "thbra01.m2", + value = "thbra01.m2", + }, + { + fileId = "433617", + text = "thbra02.m2", + value = "thbra02.m2", + }, + { + fileId = "384703", + text = "thcor01.m2", + value = "thcor01.m2", + }, + { + fileId = "384704", + text = "thcor02.m2", + value = "thcor02.m2", + }, + { + fileId = "384705", + text = "thcor03.m2", + value = "thcor03.m2", + }, + { + fileId = "364653", + text = "thgra01.m2", + value = "thgra01.m2", + }, + { + fileId = "364654", + text = "thgra02.m2", + value = "thgra02.m2", + }, + { + fileId = "433618", + text = "thgra03.m2", + value = "thgra03.m2", + }, + { + fileId = "433619", + text = "thgra04.m2", + value = "thgra04.m2", + }, + { + fileId = "364655", + text = "throc01.m2", + value = "throc01.m2", + }, + { + fileId = "364656", + text = "throc02.m2", + value = "throc02.m2", + }, + { + fileId = "364657", + text = "throc03.m2", + value = "throc03.m2", + }, + { + fileId = "364658", + text = "throc04.m2", + value = "throc04.m2", + }, + { + fileId = "433620", + text = "throc05.m2", + value = "throc05.m2", + }, + { + fileId = "433621", + text = "throc06.m2", + value = "throc06.m2", + }, + { + fileId = "364659", + text = "thweed01.m2", + value = "thweed01.m2", + }, + { + fileId = "364660", + text = "thweed02.m2", + value = "thweed02.m2", + }, + { + fileId = "433622", + text = "thweed03.m2", + value = "thweed03.m2", + }, + { + fileId = "433623", + text = "thweed04.m2", + value = "thweed04.m2", + }, { fileId = "219093", text = "tifbus01.m2", @@ -116783,6 +162843,91 @@ WeakAuras.ModelPaths = { text = "tkrwea04.m2", value = "tkrwea04.m2", }, + { + fileId = "335336", + text = "trollbus01.m2", + value = "trollbus01.m2", + }, + { + fileId = "335337", + text = "trollbus02.m2", + value = "trollbus02.m2", + }, + { + fileId = "346130", + text = "trollbus03.m2", + value = "trollbus03.m2", + }, + { + fileId = "346131", + text = "trollbus04.m2", + value = "trollbus04.m2", + }, + { + fileId = "346132", + text = "trollbus05.m2", + value = "trollbus05.m2", + }, + { + fileId = "346133", + text = "trollflo01.m2", + value = "trollflo01.m2", + }, + { + fileId = "346134", + text = "trollflo02.m2", + value = "trollflo02.m2", + }, + { + fileId = "346135", + text = "trollflo03.m2", + value = "trollflo03.m2", + }, + { + fileId = "346136", + text = "trollflo04.m2", + value = "trollflo04.m2", + }, + { + fileId = "346137", + text = "trollgra01.m2", + value = "trollgra01.m2", + }, + { + fileId = "346138", + text = "trollroc01.m2", + value = "trollroc01.m2", + }, + { + fileId = "369068", + text = "uldgra01.m2", + value = "uldgra01.m2", + }, + { + fileId = "369069", + text = "uldgra02.m2", + value = "uldgra02.m2", + }, + { + fileId = "369070", + text = "uldreed01.m2", + value = "uldreed01.m2", + }, + { + fileId = "369071", + text = "uldweed01.m2", + value = "uldweed01.m2", + }, + { + fileId = "369072", + text = "uldweed02.m2", + value = "uldweed02.m2", + }, + { + fileId = "413498", + text = "uldweed03.m2", + value = "uldweed03.m2", + }, { fileId = "219124", text = "ungbun01.m2", @@ -116798,6 +162943,16 @@ WeakAuras.ModelPaths = { text = "ungbun03.m2", value = "ungbun03.m2", }, + { + fileId = "368382", + text = "ungbus01.m2", + value = "ungbus01.m2", + }, + { + fileId = "368383", + text = "ungbus02.m2", + value = "ungbus02.m2", + }, { fileId = "219127", text = "ungflo01.m2", @@ -116848,6 +163003,16 @@ WeakAuras.ModelPaths = { text = "unggra08.m2", value = "unggra08.m2", }, + { + fileId = "368384", + text = "unggra09.m2", + value = "unggra09.m2", + }, + { + fileId = "368385", + text = "unggra10.m2", + value = "unggra10.m2", + }, { fileId = "219138", text = "unwcor01.m2", @@ -116918,6 +163083,71 @@ WeakAuras.ModelPaths = { text = "unwshl02.m2", value = "unwshl02.m2", }, + { + fileId = "363637", + text = "vjbar01.m2", + value = "vjbar01.m2", + }, + { + fileId = "363638", + text = "vjbar02.m2", + value = "vjbar02.m2", + }, + { + fileId = "363639", + text = "vjbar03.m2", + value = "vjbar03.m2", + }, + { + fileId = "332050", + text = "vjshrub01.m2", + value = "vjshrub01.m2", + }, + { + fileId = "332051", + text = "vjshrub02.m2", + value = "vjshrub02.m2", + }, + { + fileId = "332052", + text = "vjweed01.m2", + value = "vjweed01.m2", + }, + { + fileId = "332053", + text = "vjweed02.m2", + value = "vjweed02.m2", + }, + { + fileId = "332054", + text = "vjweed03.m2", + value = "vjweed03.m2", + }, + { + fileId = "332055", + text = "vjweed04.m2", + value = "vjweed04.m2", + }, + { + fileId = "332056", + text = "vjweed05.m2", + value = "vjweed05.m2", + }, + { + fileId = "363640", + text = "vjweed06.m2", + value = "vjweed06.m2", + }, + { + fileId = "363641", + text = "vjweed07.m2", + value = "vjweed07.m2", + }, + { + fileId = "363642", + text = "vjweed08.m2", + value = "vjweed08.m2", + }, { fileId = "219152", text = "wesbus01.m2", @@ -117198,6 +163428,16 @@ WeakAuras.ModelPaths = { text = "lightray_dusty_01.m2", value = "lightray_dusty_01.m2", }, + { + fileId = "358939", + text = "lightray_dusty_02.m2", + value = "lightray_dusty_02.m2", + }, + { + fileId = "413599", + text = "lightray_dusty_02_blue.m2", + value = "lightray_dusty_02_blue.m2", + }, { fileId = "219220", text = "lightshafta.m2", @@ -117228,6 +163468,11 @@ WeakAuras.ModelPaths = { text = "uthershrinelightbeam.m2", value = "uthershrinelightbeam.m2", }, + { + fileId = "458277", + text = "uthershrinelightbeam_nosound.m2", + value = "uthershrinelightbeam_nosound.m2", + }, }, text = "volumetriclights", value = "volumetriclights", @@ -117752,6 +163997,78 @@ WeakAuras.ModelPaths = { text = "outland", value = "outland", }, + { + children = { + { + children = { + { + fileId = "458522", + text = "battlestandard_guild_alliance_a_01.m2", + value = "battlestandard_guild_alliance_a_01.m2", + }, + { + fileId = "458523", + text = "battlestandard_guild_alliance_b_01.m2", + value = "battlestandard_guild_alliance_b_01.m2", + }, + { + fileId = "458524", + text = "battlestandard_guild_alliance_c_01.m2", + value = "battlestandard_guild_alliance_c_01.m2", + }, + { + fileId = "458526", + text = "battlestandard_guild_horde_a_01.m2", + value = "battlestandard_guild_horde_a_01.m2", + }, + { + fileId = "458527", + text = "battlestandard_guild_horde_b_01.m2", + value = "battlestandard_guild_horde_b_01.m2", + }, + { + fileId = "458528", + text = "battlestandard_guild_horde_c_01.m2", + value = "battlestandard_guild_horde_c_01.m2", + }, + { + fileId = "449191", + text = "guildcauldron_alliance_01.m2", + value = "guildcauldron_alliance_01.m2", + }, + { + fileId = "449110", + text = "guildcauldron_horde_01.m2", + value = "guildcauldron_horde_01.m2", + }, + { + fileId = "448517", + text = "guildchest_alliance01.m2", + value = "guildchest_alliance01.m2", + }, + { + fileId = "448518", + text = "guildchest_horde01.m2", + value = "guildchest_horde01.m2", + }, + { + fileId = "461352", + text = "pennant_guild_alliance_a_01.m2", + value = "pennant_guild_alliance_a_01.m2", + }, + { + fileId = "461353", + text = "pennant_guild_horde_a_01.m2", + value = "pennant_guild_horde_a_01.m2", + }, + }, + text = "guild", + value = "guild", + }, + }, + text = "replaceabletextureprops", + value = "replaceabletextureprops", + }, { children = { { @@ -117809,11 +164126,66 @@ WeakAuras.ModelPaths = { text = "777yardradiussphere.m2", value = "777yardradiussphere.m2", }, + { + fileId = "433566", + text = "bloodelfmalescale.m2", + value = "bloodelfmalescale.m2", + }, + { + fileId = "433567", + text = "draeneimalescale.m2", + value = "draeneimalescale.m2", + }, + { + fileId = "433638", + text = "dwarfmalescale.m2", + value = "dwarfmalescale.m2", + }, + { + fileId = "433569", + text = "gnomemalescale.m2", + value = "gnomemalescale.m2", + }, + { + fileId = "433624", + text = "goblinmalescale.m2", + value = "goblinmalescale.m2", + }, { fileId = "219368", text = "humanmalescale.m2", value = "humanmalescale.m2", }, + { + fileId = "433640", + text = "nightelfmalescale.m2", + value = "nightelfmalescale.m2", + }, + { + fileId = "433570", + text = "orcmalescale.m2", + value = "orcmalescale.m2", + }, + { + fileId = "433641", + text = "scourgemalescale.m2", + value = "scourgemalescale.m2", + }, + { + fileId = "433642", + text = "taurenmalescale.m2", + value = "taurenmalescale.m2", + }, + { + fileId = "433626", + text = "trollmalescale.m2", + value = "trollmalescale.m2", + }, + { + fileId = "433571", + text = "worgenmalescale.m2", + value = "worgenmalescale.m2", + }, }, text = "scale", value = "scale", @@ -117827,6 +164199,31 @@ WeakAuras.ModelPaths = { text = "treasurechest01.m2", value = "treasurechest01.m2", }, + { + fileId = "446671", + text = "treasurechest02.m2", + value = "treasurechest02.m2", + }, + { + fileId = "446673", + text = "treasurechest03.m2", + value = "treasurechest03.m2", + }, + { + fileId = "446675", + text = "treasurechest04.m2", + value = "treasurechest04.m2", + }, + { + fileId = "446677", + text = "treasurechest05.m2", + value = "treasurechest05.m2", + }, + { + fileId = "446679", + text = "treasurechest06.m2", + value = "treasurechest06.m2", + }, }, text = "containers", value = "containers", @@ -117989,6 +164386,11 @@ WeakAuras.ModelPaths = { text = "bush_arthastears.m2", value = "bush_arthastears.m2", }, + { + fileId = "456452", + text = "bush_azsharasveil.m2", + value = "bush_azsharasveil.m2", + }, { fileId = "219437", text = "bush_blacklotus.m2", @@ -118009,6 +164411,11 @@ WeakAuras.ModelPaths = { text = "bush_bruiseweed01.m2", value = "bush_bruiseweed01.m2", }, + { + fileId = "457443", + text = "bush_cinderbloom.m2", + value = "bush_cinderbloom.m2", + }, { fileId = "219442", text = "bush_constrictorgrass.m2", @@ -118019,6 +164426,11 @@ WeakAuras.ModelPaths = { text = "bush_crownroyal01.m2", value = "bush_crownroyal01.m2", }, + { + fileId = "459133", + text = "bush_dragonsteeth.m2", + value = "bush_dragonsteeth.m2", + }, { fileId = "219444", text = "bush_dreamfoil.m2", @@ -118084,6 +164496,11 @@ WeakAuras.ModelPaths = { text = "bush_gromsblood.m2", value = "bush_gromsblood.m2", }, + { + fileId = "458032", + text = "bush_heartblossom.m2", + value = "bush_heartblossom.m2", + }, { fileId = "219465", text = "bush_icecap.m2", @@ -118199,6 +164616,16 @@ WeakAuras.ModelPaths = { text = "bush_steelbloom01.m2", value = "bush_steelbloom01.m2", }, + { + fileId = "454529", + text = "bush_stormvine.m2", + value = "bush_stormvine.m2", + }, + { + fileId = "454530", + text = "bush_stormvinebubbles.m2", + value = "bush_stormvinebubbles.m2", + }, { fileId = "219495", text = "bush_stranglekelp01.m2", @@ -118234,6 +164661,16 @@ WeakAuras.ModelPaths = { text = "bush_tigerlily.m2", value = "bush_tigerlily.m2", }, + { + fileId = "458210", + text = "bush_twilightjasmine.m2", + value = "bush_twilightjasmine.m2", + }, + { + fileId = "458931", + text = "bush_whiptail01.m2", + value = "bush_whiptail01.m2", + }, { fileId = "219506", text = "bush_whispervine.m2", @@ -118254,6 +164691,16 @@ WeakAuras.ModelPaths = { text = "copper_miningnode_01.m2", value = "copper_miningnode_01.m2", }, + { + fileId = "394822", + text = "elementium_miningnode_normal.m2", + value = "elementium_miningnode_normal.m2", + }, + { + fileId = "394823", + text = "elementium_miningnode_rich.m2", + value = "elementium_miningnode_rich.m2", + }, { fileId = "219519", text = "feliron_miningnode_01.m2", @@ -118264,6 +164711,11 @@ WeakAuras.ModelPaths = { text = "gold_miningnode_01.m2", value = "gold_miningnode_01.m2", }, + { + fileId = "514456", + text = "gold_miningnode_nocol.m2", + value = "gold_miningnode_nocol.m2", + }, { fileId = "219526", text = "goldthorn_01.m2", @@ -118279,6 +164731,21 @@ WeakAuras.ModelPaths = { text = "iron_miningnode_01.m2", value = "iron_miningnode_01.m2", }, + { + fileId = "319276", + text = "kajamite_01.m2", + value = "kajamite_01.m2", + }, + { + fileId = "319557", + text = "kajamite_bars_01.m2", + value = "kajamite_bars_01.m2", + }, + { + fileId = "319279", + text = "kajamite_node_01.m2", + value = "kajamite_node_01.m2", + }, { fileId = "219535", text = "khorium_miningnode_01.m2", @@ -118294,6 +164761,26 @@ WeakAuras.ModelPaths = { text = "obsidian_miningnode_01.m2", value = "obsidian_miningnode_01.m2", }, + { + fileId = "392577", + text = "obsidian_miningnode_normal.m2", + value = "obsidian_miningnode_normal.m2", + }, + { + fileId = "392579", + text = "obsidian_miningnode_rich.m2", + value = "obsidian_miningnode_rich.m2", + }, + { + fileId = "392622", + text = "pyrium_miningnode_normal.m2", + value = "pyrium_miningnode_normal.m2", + }, + { + fileId = "392624", + text = "pyrium_miningnode_rich.m2", + value = "pyrium_miningnode_rich.m2", + }, { fileId = "219550", text = "richthorium_miningnode_01.m2", From 7b46059ed9a339889a5863c375f848528aed54c9 Mon Sep 17 00:00:00 2001 From: InfusOnWoW <12950521+InfusOnWoW@users.noreply.github.com> Date: Mon, 6 May 2024 10:05:28 +0000 Subject: [PATCH 17/25] Update Atlas File List from wago.tools --- WeakAuras/Atlas_Wrath.lua | 57 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/WeakAuras/Atlas_Wrath.lua b/WeakAuras/Atlas_Wrath.lua index fd5862b0bc..90d290a915 100644 --- a/WeakAuras/Atlas_Wrath.lua +++ b/WeakAuras/Atlas_Wrath.lua @@ -2035,6 +2035,9 @@ Private.AtlasList = { "SliderBar-NineSlice-CornerTopLeft", "SliderBar-NineSlice-CornerTopRight", "SmallQuestBang", +"Spinner_Ring", +"Spinner_Shadow", +"Spinner_Sparks", "StableMaster", "Start-VersusSplash", "StoneFrameCorner-TopLeft", @@ -2738,6 +2741,41 @@ Private.AtlasList = { "combat_swords-icon", "common-button-square-gray-down", "common-button-square-gray-up", +"common-dropdown-classic-a-buttonDown", +"common-dropdown-classic-a-buttonDown-disabled", +"common-dropdown-classic-a-buttonDown-disabled-small", +"common-dropdown-classic-a-buttonDown-hover", +"common-dropdown-classic-a-buttonDown-hover-small", +"common-dropdown-classic-a-buttonDown-pressed", +"common-dropdown-classic-a-buttonDown-pressed-small", +"common-dropdown-classic-a-buttonDown-pressedhover", +"common-dropdown-classic-a-buttonDown-pressedhover-small", +"common-dropdown-classic-a-buttonDown-small", +"common-dropdown-classic-a-buttonUp", +"common-dropdown-classic-a-buttonUp-disabled", +"common-dropdown-classic-a-buttonUp-disabled-small", +"common-dropdown-classic-a-buttonUp-hover", +"common-dropdown-classic-a-buttonUp-hover-small", +"common-dropdown-classic-a-buttonUp-pressed", +"common-dropdown-classic-a-buttonUp-pressed-small", +"common-dropdown-classic-a-buttonUp-pressedhover", +"common-dropdown-classic-a-buttonUp-pressedhover-small", +"common-dropdown-classic-a-buttonUp-small", +"common-dropdown-classic-b-bg", +"common-dropdown-classic-b-button", +"common-dropdown-classic-b-button-disabled", +"common-dropdown-classic-b-button-hover", +"common-dropdown-classic-b-button-pressed", +"common-dropdown-classic-b-button-pressedhover", +"common-dropdown-classic-bg", +"common-dropdown-classic-bg-b", +"common-dropdown-classic-darkBG", +"common-dropdown-classic-textholder", +"common-dropdown-classic-textholder-small", +"common-dropdown-icon-checkmark-yellow-classic", +"common-dropdown-icon-radialtick-yellow-classic", +"common-dropdown-tickradial-classic", +"common-dropdown-ticksquare-classic", "common-gray-button-entrybox-center", "common-gray-button-entrybox-left", "common-gray-button-entrybox-right", @@ -2786,6 +2824,8 @@ Private.AtlasList = { "communities-ring-blue", "communities-ring-gold", "communities-widebackground", +"communitiesfinder-card", +"communitiesfinder_card_highlight", "countdown-swords", "countdown-swords-glow", "creditsscreen-highlight", @@ -2929,6 +2969,10 @@ Private.AtlasList = { "groupfinder-icon-voice", "groupfinder-waitdot", "guild-levelring", +"guildfinder-card", +"guildfinder-card-guildbanner-background", +"guildfinder-card-guildbanner-border", +"guildfinder-card-guildbanner-shadow", "honorsystem-bar-background", "honorsystem-bar-frame", "honorsystem-bar-frame-exhaustiontick", @@ -3102,6 +3146,19 @@ Private.AtlasList = { "legionmission-map-orderhall-warrior", "legionmission-portraitring-epicplus", "legionmission-portraitring_levelborder_epicplus", +"levelup-bar-gold", +"levelup-bar-green", +"levelup-bar-white", +"levelup-dot-gold", +"levelup-dot-green", +"levelup-glow-gold", +"levelup-glow-green", +"levelup-icon-arrow", +"levelup-icon-bag", +"levelup-icon-book", +"levelup-icon-lock", +"levelup-shadow-lower", +"levelup-shadow-upper", "loottab-background", "loottab-set-background", "loottab-set-itemborder-artifact", From b4fb1be1a4a73170f9ea1091376c21e0d50551b0 Mon Sep 17 00:00:00 2001 From: Buds Date: Tue, 7 May 2024 01:57:52 +0200 Subject: [PATCH 18/25] Fix Premade Auras option not shown C_AddOns.GetAddOnEnableState arguments doesn't work exactly the same as with GetAddOnEnableState This was tested with WeakAurasTemplates addon loaded for current character only, and for all characters --- WeakAurasOptions/OptionsFrames/OptionsFrame.lua | 2 +- WeakAurasOptions/TriggerOptions.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua index a6e61fa5cb..74b68d1eb2 100644 --- a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua +++ b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua @@ -1117,7 +1117,7 @@ function OptionsPrivate.CreateFrame() containerScroll:SetLayout("flow") border:AddChild(containerScroll) - if C_AddOns.GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0 then + if C_AddOns.GetAddOnEnableState("WeakAurasTemplates") ~= Enum.AddOnEnableState.None then local simpleLabel = AceGUI:Create("Label") simpleLabel:SetFont(STANDARD_TEXT_FONT, 24, "OUTLINE") simpleLabel:SetColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b) diff --git a/WeakAurasOptions/TriggerOptions.lua b/WeakAurasOptions/TriggerOptions.lua index da3a95f653..f2407c04a6 100644 --- a/WeakAurasOptions/TriggerOptions.lua +++ b/WeakAurasOptions/TriggerOptions.lua @@ -375,7 +375,7 @@ function OptionsPrivate.AddTriggerMetaFunctions(options, data, triggernum) end end } - if (C_AddOns.GetAddOnEnableState(UnitName("player"), "WeakAurasTemplates") ~= 0) then + if (C_AddOns.GetAddOnEnableState("WeakAurasTemplates") ~= Enum.AddOnEnableState.None) then options.__applyTemplate = function() -- If we have more than a single aura selected, -- we want to open the template view with the group/multi selection From b24b64386f3cdc5d03fb5801ec9a7cac0cb97ea0 Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Tue, 7 May 2024 07:04:31 +0200 Subject: [PATCH 19/25] Fix typo --- WeakAurasOptions/ConditionOptions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WeakAurasOptions/ConditionOptions.lua b/WeakAurasOptions/ConditionOptions.lua index 58d03e483c..3f704f7b14 100644 --- a/WeakAurasOptions/ConditionOptions.lua +++ b/WeakAurasOptions/ConditionOptions.lua @@ -668,7 +668,7 @@ local function addControlsForChange(args, order, data, conditionVariable, totalA return true end - args["condition" .. i .. "progressSoruceManualValue" .. j] = { + args["condition" .. i .. "progressSourceManualValue" .. j] = { type = "range", control = "WeakAurasSpinBox", width = WeakAuras.normalWidth, @@ -686,7 +686,7 @@ local function addControlsForChange(args, order, data, conditionVariable, totalA } order = order + 1 - args["condition" .. i .. "progressSoruceManualTotal" .. j] = { + args["condition" .. i .. "progressSourceManualTotal" .. j] = { type = "range", control = "WeakAurasSpinBox", width = WeakAuras.normalWidth, From a24e76c8cb5aee7a5b81a2f851cd1fa7f633e5cf Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Tue, 7 May 2024 07:52:18 +0200 Subject: [PATCH 20/25] Few more spelling and type fixes --- .luarc.json | 4 +++- WeakAuras/BuffTrigger2.lua | 4 ++-- WeakAuras/GenericTrigger.lua | 4 ++-- WeakAuras/Init.lua | 4 ++-- WeakAuras/Prototypes.lua | 2 +- WeakAuras/SubRegionTypes/Glow.lua | 2 +- WeakAuras/WeakAuras.lua | 7 ++++--- .../AceGUIWidget-WeakAurasDisplayButton.lua | 7 +++++-- .../AceGUIWidget-WeakAurasScrollArea.lua | 4 ++-- .../WeakAurasStatusbarAtlasWidget.lua | 1 + WeakAurasOptions/RegionOptions/Icon.lua | 1 + WeakAurasOptions/RegionOptions/Model.lua | 4 +++- WeakAurasOptions/WeakAurasOptions.lua | 1 + cspell.json | 18 +++++++++++++++--- 14 files changed, 43 insertions(+), 20 deletions(-) diff --git a/.luarc.json b/.luarc.json index e7d984b598..34c522a120 100644 --- a/.luarc.json +++ b/.luarc.json @@ -238,7 +238,9 @@ "CreateScrollBoxListLinearView", "CreateDataProvider", "UIMenuButtonStretchMixin", - "ToggleDropDownMenu" + "ToggleDropDownMenu", + "GetPrimaryTalentTree", + "GetTalentTabInfo" ], "runtime.version": "Lua 5.1", "workspace.ignoreDir": [ diff --git a/WeakAuras/BuffTrigger2.lua b/WeakAuras/BuffTrigger2.lua index 58a4fed459..8e385bd729 100644 --- a/WeakAuras/BuffTrigger2.lua +++ b/WeakAuras/BuffTrigger2.lua @@ -2302,7 +2302,7 @@ local function EventHandler(frame, event, arg1, arg2, ...) -- With newApi we have TOOLTIP_DATA_UPDATE to update the tooltips if not newAPI then C_Timer.After(3, function() - for unit, matchtDataPerUnit in pairs(matchData) do + for unit, matchDataPerUnit in pairs(matchData) do EventHandler(frame, "UNIT_AURA", unit) end end) @@ -2398,7 +2398,7 @@ local PerUnitFrames = { -- We check whether we are already registered for the given pet mode, -- and unregister as needed by tracking the number of calls to Register with different -- petModes - -- All of the dancing is to not register for UNIT_IN_RANGE_UPDATE for pets unless explictly asked for + -- All of the dancing is to not register for UNIT_IN_RANGE_UPDATE for pets unless explicitly asked for local unitTypePetMode = GetOrCreateSubTable(self.unitTypePetMode, event, unitType) --- @type any local mode = false diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index 8fbeca0791..07cebaa43b 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -2649,8 +2649,8 @@ do end ---@param id string - ---@param ignoreSpellKnown boolean - ---@param followoverride boolean + ---@param ignoreSpellKnown? boolean + ---@param followoverride? boolean ---@return integer? charges ---@return integer? chargesMax ---@return integer? count diff --git a/WeakAuras/Init.lua b/WeakAuras/Init.lua index 6838dd961a..650d0aa6ab 100644 --- a/WeakAuras/Init.lua +++ b/WeakAuras/Init.lua @@ -192,8 +192,8 @@ Private.frames = {} ---@field GetNameAndIcon (fun(trigger: triggerData): string?, string?)|nil ---@field iconFunc (fun(trigger: triggerData): string?)|nil ---@field nameFunc (fun(trigger: triggerData): string?)|nil ----@field events (fun(tigger: triggerData): table)|nil ----@field internal_events (fun(tigger: triggerData): table)|nil +---@field events (fun(trigger: triggerData): table)|nil +---@field internal_events (fun(trigger: triggerData): table)|nil ---@field name string ---@field statesParamater "unit"|"one"|"all"|nil ---@field progressType "timed"|"static"|"none" diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index e716a0656f..923655db92 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -7277,7 +7277,7 @@ Private.event_prototypes = { type = "description", display = "", text = function() - return L["Note: This trigger internally stores the shape shift positon, and thus is incompatible with learning stances on the fly, like e.g. the Gladiator Rune."] + return L["Note: This trigger internally stores the shapeshift position, and thus is incompatible with learning stances on the fly, like e.g. the Gladiator Rune."] end, hidden = not (C_Seasons and C_Seasons.GetActiveSeason and C_Seasons.GetActiveSeason() == 2), }, diff --git a/WeakAuras/SubRegionTypes/Glow.lua b/WeakAuras/SubRegionTypes/Glow.lua index b8efcd2ceb..d719430f5e 100644 --- a/WeakAuras/SubRegionTypes/Glow.lua +++ b/WeakAuras/SubRegionTypes/Glow.lua @@ -255,7 +255,7 @@ local funcs = { if self.parentRegionType ~= "aurabar" then self.parent:AnchorSubRegion(self, "area", "region") end - else -- noop function in case of unsuported glow + else -- noop function in case of unsupported glow self.glowStart = function() end self.glowStop = function() end end diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index 07a76b774c..8664b00296 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -453,7 +453,7 @@ end ---@param default table ---@param addDefaultsForNewAura function ---@param properties table ----@param supportsAdd boolean +---@param supportsAdd? boolean function WeakAuras.RegisterSubRegionType(name, displayName, supportFunction, createFunction, modifyFunction, onAcquire, onRelease, default, addDefaultsForNewAura, properties, supportsAdd) if not(name) then error("Improper arguments to WeakAuras.RegisterSubRegionType - name is not defined", 2); @@ -3928,7 +3928,7 @@ end -- The constants table has weak keys do local function CompareProgressValueTables(a, b) - -- For auto/manual progreess, only compare a[] with b[1] + -- For auto/manual progress, only compare a[] with b[1] if a[1] == -1 or a[1] == 0 then return a[1] == b[1] end @@ -5304,6 +5304,7 @@ local function ensureMouseFrame() if (mouseFrame) then return; end + ---@class Frame mouseFrame = CreateFrame("Frame", "WeakAurasAttachToMouseFrame", UIParent); mouseFrame.attachedVisibleFrames = {}; mouseFrame:SetWidth(1); @@ -6009,7 +6010,7 @@ do end ---@param unit UnitToken - ---@return boolean result + ---@return boolean? result function WeakAuras.IsUntrackableSoftTarget(unit) if not Private.soft_target_cvars[unit] then return end -- technically this is incorrect if user doesn't have KBM and sets CVar to "2" (KBM only) diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua index f76f0b444c..65c3dd8e01 100644 --- a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua @@ -1049,13 +1049,13 @@ local methods = { Show_Long_Tooltip(self.frame, self.frame.description); end end, - ["StartGrouping"] = function(self, groupingData, selected, groupingGroup, childOfGrouing) + ["StartGrouping"] = function(self, groupingData, selected, groupingGroup, childOfGrouping) self.grouping = groupingData; self:UpdateIconsVisible() if(selected) then self.frame:SetScript("OnClick", self.callbacks.OnClickGroupingSelf); self:SetDescription(L["Cancel"], L["Do not group this display"]); - elseif (childOfGrouing) then + elseif (childOfGrouping) then self:Disable(); else if(self.data.regionType == "dynamicgroup" and groupingGroup) then @@ -1767,6 +1767,7 @@ Constructor local function Constructor() local name = "WeakAurasDisplayButton"..AceGUI:GetNextWidgetNum(Type); + ---@class Button local button = CreateFrame("Button", name, UIParent, "OptionsListButtonTemplate"); button:SetHeight(32); button:SetWidth(1000); @@ -1806,6 +1807,7 @@ local function Constructor() button.description = {}; + ---@class Button local view = CreateFrame("Button", nil, button); button.view = view; view:SetWidth(16); @@ -1915,6 +1917,7 @@ local function Constructor() downgroup:SetScript("OnLeave", Hide_Tooltip); downgroup:Hide(); + ---@class Button local expand = CreateFrame("Button", nil, button); button.expand = expand; expand.expanded = true; diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasScrollArea.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasScrollArea.lua index b886637025..6df82397cb 100644 --- a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasScrollArea.lua +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasScrollArea.lua @@ -1,7 +1,7 @@ --[[----------------------------------------------------------------------------- ScrollArea Widget Plain widget that scrolls a content widget and doesn't grow in height. -Heavly based on AceGUIContainer-ScrollFrame +Heavily based on AceGUIContainer-ScrollFrame -------------------------------------------------------------------------------]] local Type, Version = "WeakAurasScrollArea", 1 local AceGUI = LibStub and LibStub("AceGUI-3.0", true) @@ -103,7 +103,7 @@ local methods = { local status = self.localstatus local height, viewheight = self.scrollframe:GetHeight(), self.content:GetHeight() local offset = status.offset or 0 - -- Give us a margin of error of 2 pixels to stop some conditions that i would blame on floating point inaccuracys + -- Give us a margin of error of 2 pixels to stop some conditions that i would blame on floating point inaccuracies -- No-one is going to miss 2 pixels at the bottom of the frame, anyhow! if viewheight < height + 2 then if self.scrollBarShown then diff --git a/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua b/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua index 26733405ee..464d11b617 100644 --- a/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua +++ b/WeakAurasOptions/AceGUI-Widgets/WeakAurasStatusbarAtlasWidget.lua @@ -31,6 +31,7 @@ do if next(contentFrameCache) then frame = table.remove(contentFrameCache) else + ---@class Button frame = CreateFrame("Button", nil, UIParent) --frame:SetWidth(200) frame:SetHeight(18) diff --git a/WeakAurasOptions/RegionOptions/Icon.lua b/WeakAurasOptions/RegionOptions/Icon.lua index 74c075d2db..41f422bd27 100644 --- a/WeakAurasOptions/RegionOptions/Icon.lua +++ b/WeakAurasOptions/RegionOptions/Icon.lua @@ -306,6 +306,7 @@ local function createOptions(id, data) end local function createThumbnail() + ---@class frame: FrameScriptObject local frame = CreateFrame("Frame", nil, UIParent) local icon = frame:CreateTexture(); icon:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark"); diff --git a/WeakAurasOptions/RegionOptions/Model.lua b/WeakAurasOptions/RegionOptions/Model.lua index 5b74c27d58..5ab54e239f 100644 --- a/WeakAurasOptions/RegionOptions/Model.lua +++ b/WeakAurasOptions/RegionOptions/Model.lua @@ -225,13 +225,14 @@ local function createOptions(id, data) }; end --- Duplicated because Private does not exist when we want to create the first thumnail +-- Duplicated because Private does not exist when we want to create the first thumbnail local function ModelSetTransformFixed(self, tx, ty, tz, rx, ry, rz, s) -- In Dragonflight the api changed, this converts to the new api self:SetTransform(CreateVector3D(tx, ty, tz), CreateVector3D(rx, ry, rz), -s) end local function createThumbnail() + ---@class frame local borderframe = CreateFrame("Frame", nil, UIParent); borderframe:SetWidth(32); borderframe:SetHeight(32); @@ -241,6 +242,7 @@ local function createThumbnail() border:SetTexture("Interface\\BUTTONS\\UI-Quickslot2.blp"); border:SetTexCoord(0.2, 0.8, 0.2, 0.8); + ---@class Model local model = CreateFrame("PlayerModel", nil, borderframe); borderframe.model = model; model.SetTransformFixed = ModelSetTransformFixed diff --git a/WeakAurasOptions/WeakAurasOptions.lua b/WeakAurasOptions/WeakAurasOptions.lua index 0c3d6e5d78..192b1b32e9 100644 --- a/WeakAurasOptions/WeakAurasOptions.lua +++ b/WeakAurasOptions/WeakAurasOptions.lua @@ -1624,6 +1624,7 @@ end function OptionsPrivate.DropIndicator() local indicator = frame.dropIndicator if not indicator then + ---@class Frame indicator = CreateFrame("Frame", "WeakAuras_DropIndicator") indicator:SetHeight(4) indicator:SetFrameStrata("FULLSCREEN") diff --git a/cspell.json b/cspell.json index 11938e7546..7456bbcd81 100644 --- a/cspell.json +++ b/cspell.json @@ -1,18 +1,22 @@ { "version": "0.2", "language": "en-US, en-GB", - "ignoreRegExpList": [ - "\\((.+?)\\)" - ], + "allowCompoundWords": true, + "ignoreRegExpList": ["\\((.+?)\\)"], "ignorePaths": [ "WeakAurasModelPaths", + "WeakAurasTemplates", + "WeakAuras/Atlas_*.lua", "WeakAuras/Types*.lua", "WeakAuras/Libs", ".luacheckrc" ], "words": [ + "Aberrus", "AceGUIWidgetLSMlists", "Adamantite", + "Adjusteded", + "AGSMW", "Ahn'Qiraj", "Akama", "Akil'zon", @@ -108,6 +112,7 @@ "Frostwyrm", "ftcsv", "funcs", + "Funkeh", "Gahz'ranka", "Galmok", "Garr", @@ -261,7 +266,11 @@ "scaley", "Scorpid", "scrollbg", + "sealofsalvation", "setfenv", + "sfgg", + "sfng", + "sfsg", "Shahraz", "Shazzrah", "Shoop", @@ -273,6 +282,7 @@ "SOUNDFX", "spammy", "spellid", + "Stealthed", "Sulfuron", "Taijitu", "Tauren", @@ -305,6 +315,7 @@ "ungrouptexture", "Uninvite", "Unserializable", + "Unstealthed", "untrackable", "untrigger", "updata", @@ -335,6 +346,7 @@ "Yoyodyne", "yrange", "Ysera", + "Yssaril", "Yu'lon", "Zandalari", "Zarithrian", From 3c703376feafbdf266b3a525a2d6e9e8ee11bcbc Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Tue, 7 May 2024 20:22:56 +0200 Subject: [PATCH 21/25] Update TOC for Retail Patch 10.2.7 --- WeakAuras/WeakAuras.toc | 2 +- WeakAurasArchive/WeakAurasArchive.toc | 2 +- WeakAurasModelPaths/WeakAurasModelPaths.toc | 2 +- WeakAurasOptions/WeakAurasOptions.toc | 2 +- WeakAurasTemplates/WeakAurasTemplates.toc | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/WeakAuras/WeakAuras.toc b/WeakAuras/WeakAuras.toc index 9505199441..03dc67b186 100644 --- a/WeakAuras/WeakAuras.toc +++ b/WeakAuras/WeakAuras.toc @@ -1,4 +1,4 @@ -## Interface: 100206 +## Interface: 100207 ## Title: WeakAuras ## Author: The WeakAuras Team ## Version: @project-version@ diff --git a/WeakAurasArchive/WeakAurasArchive.toc b/WeakAurasArchive/WeakAurasArchive.toc index ede3064a3b..b1df60e5e2 100644 --- a/WeakAurasArchive/WeakAurasArchive.toc +++ b/WeakAurasArchive/WeakAurasArchive.toc @@ -1,4 +1,4 @@ -## Interface: 100206 +## Interface: 100207 ## Title: WeakAuras Archive ## Author: The WeakAuras Team ## Version: @project-version@ diff --git a/WeakAurasModelPaths/WeakAurasModelPaths.toc b/WeakAurasModelPaths/WeakAurasModelPaths.toc index 298bc974d8..1da9a0c870 100644 --- a/WeakAurasModelPaths/WeakAurasModelPaths.toc +++ b/WeakAurasModelPaths/WeakAurasModelPaths.toc @@ -1,4 +1,4 @@ -## Interface: 100206 +## Interface: 100207 ## Title: WeakAuras Model Paths ## Author: The WeakAuras Team ## Version: @project-version@ diff --git a/WeakAurasOptions/WeakAurasOptions.toc b/WeakAurasOptions/WeakAurasOptions.toc index 7c44b8cd52..e98b0b5ac2 100644 --- a/WeakAurasOptions/WeakAurasOptions.toc +++ b/WeakAurasOptions/WeakAurasOptions.toc @@ -1,4 +1,4 @@ -## Interface: 100206 +## Interface: 100207 ## Title: WeakAuras Options ## Author: The WeakAuras Team ## Version: @project-version@ diff --git a/WeakAurasTemplates/WeakAurasTemplates.toc b/WeakAurasTemplates/WeakAurasTemplates.toc index 8ffc262fdc..90b8e98af1 100644 --- a/WeakAurasTemplates/WeakAurasTemplates.toc +++ b/WeakAurasTemplates/WeakAurasTemplates.toc @@ -1,4 +1,4 @@ -## Interface: 100206 +## Interface: 100207 ## Title: WeakAuras Templates ## Author: The WeakAuras Team ## Version: @project-version@ From 6d1761bd7e3279debbd69d46aaa9e08109b1a827 Mon Sep 17 00:00:00 2001 From: Buds Date: Tue, 7 May 2024 16:41:41 +0200 Subject: [PATCH 22/25] Cataclysm Templates --- .../TriggerTemplatesDataCataclysm.lua | 1649 +++++++++++++++++ .../WeakAurasTemplates_Cata.toc | 2 +- 2 files changed, 1650 insertions(+), 1 deletion(-) create mode 100644 WeakAurasTemplates/TriggerTemplatesDataCataclysm.lua diff --git a/WeakAurasTemplates/TriggerTemplatesDataCataclysm.lua b/WeakAurasTemplates/TriggerTemplatesDataCataclysm.lua new file mode 100644 index 0000000000..b2535a01fc --- /dev/null +++ b/WeakAurasTemplates/TriggerTemplatesDataCataclysm.lua @@ -0,0 +1,1649 @@ +local AddonName, TemplatePrivate = ... +---@class WeakAuras +local WeakAuras = WeakAuras +if not WeakAuras.IsCataClassic() then return end +local L = WeakAuras.L +local GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell + = GetSpellInfo, tinsert, GetSpellDescription, C_Timer, Spell + +-- The templates tables are created on demand +local templates = + { + class = { }, + race = { + Human = {}, + NightElf = {}, + Dwarf = {}, + Gnome = {}, + Draenei = {}, + Orc = {}, + Scourge = {}, + Tauren = {}, + Troll = {}, + BloodElf = {}, + }, + general = { + title = L["General"], + icon = 136116, + args = {} + }, + } + +local manaIcon = "Interface\\Icons\\spell_frost_manarecharge.blp" +local rageIcon = "Interface\\Icons\\ability_racial_bloodrage.blp" +local comboPointsIcon = "Interface\\Icons\\ability_backstab" + +local powerTypes = + { + [0] = { name = POWER_TYPE_MANA, icon = manaIcon }, + [1] = { name = POWER_TYPE_RED_POWER, icon = rageIcon}, + [2] = { name = POWER_TYPE_FOCUS, icon = "Interface\\Icons\\ability_hunter_focusfire"}, + [3] = { name = POWER_TYPE_ENERGY, icon = "Interface\\Icons\\spell_shadow_shadowworddominate"}, + [4] = { name = COMBO_POINTS, icon = comboPointsIcon}, + } + +-- Collected by WeakAurasTemplateCollector: +-------------------------------------------------------------------------------- + +templates.class.WARRIOR = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 469, type = "buff", unit = "player" }, -- Commanding Shout + { spell = 871, type = "buff", unit = "player" }, -- Shield Wall + { spell = 1134, type = "buff", unit = "player" }, -- Inner Rage + { spell = 1719, type = "buff", unit = "player" }, -- Recklessness + { spell = 2565, type = "buff", unit = "player" }, -- Shield Block + { spell = 6673, type = "buff", unit = "player" }, -- Battle Shout + { spell = 12292, type = "buff", unit = "player", talent = 35 }, -- Death Wish + { spell = 12328, type = "buff", unit = "player", talent = 4 }, -- Sweeping Strikes + { spell = 12964, type = "buff", unit = "player", talent = 29 }, -- Battle Trance + { spell = 12968, type = "buff", unit = "player", talent = 37 }, -- Flurry + { spell = 14202, type = "buff", unit = "player", talent = 32 }, -- Enrage + { spell = 18499, type = "buff", unit = "player" }, -- Berserker Rage + { spell = 20230, type = "buff", unit = "player" }, -- Retaliation + { spell = 23885, type = "buff", unit = "player" }, -- Bloodthirst + { spell = 23920, type = "buff", unit = "player" }, -- Spell Reflection + { spell = 29801, type = "buff", unit = "player", talent = 41 }, -- Rampage + { spell = 46916, type = "buff", unit = "player", talent = 42 }, -- Bloodsurge + { spell = 55694, type = "buff", unit = "player" }, -- Enraged Regeneration + { spell = 60116, type = "buff", unit = "player" }, -- Armored Brown Bear + { spell = 60503, type = "buff", unit = "player", talent = 12 }, -- Taste for Blood + { spell = 65156, type = "buff", unit = "player", talent = 6 }, -- Juggernaut + { spell = 84586, type = "buff", unit = "player" }, -- Slaughter + { spell = 85730, type = "buff", unit = "player", talent = 17 }, -- Deadly Calm + { spell = 85739, type = "buff", unit = "player", talent = 38 }, -- Meat Cleaver + { spell = 87096, type = "buff", unit = "player", talent = 68 }, -- Thunderstruck + { spell = 97954, type = "buff", unit = "player" }, -- Spell Block + { spell = 102740, type = "buff", unit = "player" }, -- Strength of Courage + { spell = 102742, type = "buff", unit = "player" }, -- Mastery of Nimbleness + }, + icon = 132333 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 355, type = "debuff", unit = "target" }, -- Taunt + { spell = 1160, type = "debuff", unit = "target" }, -- Demoralizing Shout + { spell = 1161, type = "debuff", unit = "target" }, -- Challenging Shout + { spell = 1715, type = "debuff", unit = "target" }, -- Hamstring + { spell = 6343, type = "debuff", unit = "target" }, -- Thunder Clap + { spell = 7922, type = "debuff", unit = "target" }, -- Charge Stun + { spell = 12294, type = "debuff", unit = "target" }, -- Mortal Strike + { spell = 12323, type = "debuff", unit = "target", talent = 33 }, -- Piercing Howl + { spell = 18498, type = "debuff", unit = "target" }, -- Silenced - Gag Order + { spell = 20253, type = "debuff", unit = "target" }, -- Intercept + { spell = 20511, type = "debuff", unit = "target" }, -- Intimidating Shout + { spell = 30070, type = "debuff", unit = "target", talent = 9 }, -- Blood Frenzy + { spell = 46857, type = "debuff", unit = "target" }, -- Trauma + { spell = 46968, type = "debuff", unit = "target", talent = 73 }, -- Shockwave + { spell = 56112, type = "debuff", unit = "target", talent = 36 }, -- Furious Attacks + { spell = 58567, type = "debuff", unit = "target" }, -- Sunder Armor + { spell = 64382, type = "debuff", unit = "target" }, -- Shattering Throw + { spell = 85388, type = "debuff", unit = "target", talent = 16 }, -- Throwdown + { spell = 86346, type = "debuff", unit = "target" }, -- Colossus Smash + { spell = 94009, type = "debuff", unit = "target" }, -- Rend + { spell = 413763, type = "debuff", unit = "target", talent = 1 }, -- Deep Wounds + }, + icon = 132366 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 71, type = "ability" }, -- Defensive Stance + { spell = 78, type = "ability", requiresTarget = true }, -- Heroic Strike + { spell = 100, type = "ability", requiresTarget = true, usable = true }, -- Charge + { spell = 355, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Taunt + { spell = 469, type = "ability", buff = true }, -- Commanding Shout + { spell = 676, type = "ability", requiresTarget = true, usable = true }, -- Disarm + { spell = 772, type = "ability", requiresTarget = true, usable = true }, -- Rend + { spell = 845, type = "ability", requiresTarget = true }, -- Cleave + { spell = 871, type = "ability", buff = true, usable = true }, -- Shield Wall + { spell = 1134, type = "ability", buff = true }, -- Inner Rage + { spell = 1161, type = "ability", debuff = true }, -- Challenging Shout + { spell = 1464, type = "ability", overlayGlow = true, requiresTarget = true }, -- Slam + { spell = 1680, type = "ability", usable = true }, -- Whirlwind + { spell = 1715, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Hamstring + { spell = 1719, type = "ability", buff = true, usable = true }, -- Recklessness + { spell = 2457, type = "ability" }, -- Battle Stance + { spell = 2458, type = "ability" }, -- Berserker Stance + { spell = 2565, type = "ability", buff = true, usable = true }, -- Shield Block + { spell = 2764, type = "ability", requiresTarget = true }, -- Throw + { spell = 3018, type = "ability", requiresTarget = true }, -- Shoot + { spell = 5246, type = "ability", requiresTarget = true }, -- Intimidating Shout + { spell = 5308, type = "ability", requiresTarget = true, usable = true }, -- Execute + { spell = 6343, type = "ability", debuff = true, usable = true }, -- Thunder Clap + { spell = 6544, type = "ability" }, -- Heroic Leap + { spell = 6552, type = "ability", requiresTarget = true }, -- Pummel + { spell = 6572, type = "ability", requiresTarget = true, usable = true }, -- Revenge + { spell = 6673, type = "ability", buff = true }, -- Battle Shout + { spell = 7384, type = "ability", overlayGlow = true, requiresTarget = true, usable = true }, -- Overpower + { spell = 7386, type = "ability", requiresTarget = true }, -- Sunder Armor + { spell = 12292, type = "ability", buff = true, talent = 35 }, -- Death Wish + { spell = 12294, type = "ability", debuff = true, requiresTarget = true }, -- Mortal Strike + { spell = 12328, type = "ability", buff = true, usable = true, talent = 4 }, -- Sweeping Strikes + { spell = 12809, type = "ability", talent = 63 }, -- Concussion Blow + { spell = 18499, type = "ability", buff = true }, -- Berserker Rage + { spell = 20230, type = "ability", buff = true, usable = true }, -- Retaliation + { spell = 20243, type = "ability", requiresTarget = true, usable = true, talent = 67 }, -- Devastate + { spell = 20252, type = "ability", requiresTarget = true, usable = true }, -- Intercept + { spell = 23881, type = "ability", requiresTarget = true }, -- Bloodthirst + { spell = 23920, type = "ability", buff = true, usable = true }, -- Spell Reflection + { spell = 23922, type = "ability", requiresTarget = true, usable = true }, -- Shield Slam + { spell = 34428, type = "ability", requiresTarget = true, usable = true }, -- Victory Rush + { spell = 46924, type = "ability", talent = 8 }, -- Bladestorm + { spell = 46968, type = "ability", debuff = true, talent = 73 }, -- Shockwave + { spell = 55694, type = "ability", buff = true, usable = true }, -- Enraged Regeneration + { spell = 57755, type = "ability", requiresTarget = true }, -- Heroic Throw + { spell = 60970, type = "ability", talent = 40 }, -- Heroic Fury + { spell = 64382, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Shattering Throw + { spell = 85288, type = "ability", overlayGlow = true, requiresTarget = true, usable = true, talent = 47 }, -- Raging Blow + { spell = 85388, type = "ability", debuff = true, requiresTarget = true, usable = true, talent = 16 }, -- Throwdown + { spell = 85730, type = "ability", buff = true, talent = 17 }, -- Deadly Calm + { spell = 86346, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Colossus Smash + { spell = 88161, type = "ability", requiresTarget = true }, -- Strike + }, + icon = 132355 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = rageIcon, + } + } +} + +templates.class.PALADIN = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 465, type = "buff", unit = "player" }, -- Devotion Aura + { spell = 498, type = "buff", unit = "player" }, -- Divine Protection + { spell = 642, type = "buff", unit = "player" }, -- Divine Shield + { spell = 1022, type = "buff", unit = "player" }, -- Hand of Protection + { spell = 1038, type = "buff", unit = "player" }, -- Hand of Salvation + { spell = 1044, type = "buff", unit = "player" }, -- Hand of Freedom + { spell = 7294, type = "buff", unit = "player" }, -- Retribution Aura + { spell = 19746, type = "buff", unit = "player" }, -- Concentration Aura + { spell = 19891, type = "buff", unit = "player" }, -- Resistance Aura + { spell = 20052, type = "buff", unit = "player", talent = 17 }, -- Conviction + { spell = 20154, type = "buff", unit = "player" }, -- Seal of Righteousness + { spell = 20164, type = "buff", unit = "player" }, -- Seal of Justice + { spell = 20165, type = "buff", unit = "player" }, -- Seal of Insight + { spell = 20925, type = "buff", unit = "player", talent = 37 }, -- Holy Shield + { spell = 25780, type = "buff", unit = "player" }, -- Righteous Fury + { spell = 31801, type = "buff", unit = "player" }, -- Seal of Truth + { spell = 31821, type = "buff", unit = "player", talent = 5 }, -- Aura Mastery + { spell = 31842, type = "buff", unit = "player", talent = 12 }, -- Divine Favor + { spell = 31850, type = "buff", unit = "player", talent = 36 }, -- Ardent Defender + { spell = 31884, type = "buff", unit = "player" }, -- Avenging Wrath + { spell = 31930, type = "buff", unit = "player" }, -- Judgements of the Wise + { spell = 32223, type = "buff", unit = "player" }, -- Crusader Aura + { spell = 53563, type = "buff", unit = "player", talent = 10 }, -- Beacon of Light + { spell = 53655, type = "buff", unit = "player", talent = 8 }, -- Judgements of the Pure + { spell = 54149, type = "buff", unit = "player", talent = 9 }, -- Infusion of Light + { spell = 54428, type = "buff", unit = "player" }, -- Divine Plea + { spell = 57669, type = "buff", unit = "player" }, -- Replenishment + { spell = 59578, type = "buff", unit = "player", talent = 61 }, -- The Art of War + { spell = 60116, type = "buff", unit = "player" }, -- Armored Brown Bear + { spell = 79063, type = "buff", unit = "player" }, -- Blessing of Kings + { spell = 79102, type = "buff", unit = "player" }, -- Blessing of Might + { spell = 82327, type = "buff", unit = "player" }, -- Holy Radiance + { spell = 84963, type = "buff", unit = "player" }, -- Inquisition + { spell = 85416, type = "buff", unit = "player", talent = 44 }, -- Grand Crusader + { spell = 85433, type = "buff", unit = "player", talent = 38 }, -- Sacred Duty + { spell = 85497, type = "buff", unit = "player", talent = 15 }, -- Speed of Light + { spell = 85696, type = "buff", unit = "player", talent = 69 }, -- Zealotry + { spell = 88819, type = "buff", unit = "player", talent = 16 }, -- Daybreak + { spell = 89906, type = "buff", unit = "player" }, -- Judgements of the Bold + { spell = 90174, type = "buff", unit = "player", talent = 57 }, -- Divine Purpose + { spell = 102740, type = "buff", unit = "player" }, -- Strength of Courage + { spell = 102742, type = "buff", unit = "player" }, -- Mastery of Nimbleness + }, + icon = 135964 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 853, type = "debuff", unit = "target" }, -- Hammer of Justice + { spell = 20170, type = "debuff", unit = "target" }, -- Seal of Justice + { spell = 26017, type = "debuff", unit = "target", talent = 41 }, -- Vindication + { spell = 31803, type = "debuff", unit = "target" }, -- Censure + { spell = 31935, type = "debuff", unit = "target" }, -- Avenger's Shield + { spell = 62124, type = "debuff", unit = "target" }, -- Hand of Reckoning + { spell = 68055, type = "debuff", unit = "target", talent = 39 }, -- Judgements of the Just + }, + icon = 135952 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 498, type = "ability", buff = true }, -- Divine Protection + { spell = 633, type = "ability", usable = true }, -- Lay on Hands + { spell = 642, type = "ability", buff = true, usable = true }, -- Divine Shield + { spell = 853, type = "ability", debuff = true, requiresTarget = true }, -- Hammer of Justice + { spell = 879, type = "ability", overlayGlow = true, requiresTarget = true }, -- Exorcism + { spell = 1022, type = "ability", buff = true, usable = true }, -- Hand of Protection + { spell = 1038, type = "ability", buff = true }, -- Hand of Salvation + { spell = 1044, type = "ability", buff = true }, -- Hand of Freedom + { spell = 2812, type = "ability" }, -- Holy Wrath + { spell = 6940, type = "ability" }, -- Hand of Sacrifice + { spell = 20066, type = "ability", talent = 62 }, -- Repentance + { spell = 20271, type = "ability", requiresTarget = true, usable = true }, -- Judgement + { spell = 20473, type = "ability", requiresTarget = true }, -- Holy Shock + { spell = 20925, type = "ability", buff = true, usable = true, talent = 37 }, -- Holy Shield + { spell = 24275, type = "ability", overlayGlow = true, requiresTarget = true, usable = true }, -- Hammer of Wrath + { spell = 26573, type = "ability", totem = true }, -- Consecration + { spell = 31821, type = "ability", buff = true, talent = 5 }, -- Aura Mastery + { spell = 31842, type = "ability", buff = true, talent = 12 }, -- Divine Favor + { spell = 31850, type = "ability", buff = true, talent = 36 }, -- Ardent Defender + { spell = 31884, type = "ability", buff = true }, -- Avenging Wrath + { spell = 31935, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true, usable = true }, -- Avenger's Shield + { spell = 35395, type = "ability", requiresTarget = true, usable = true }, -- Crusader Strike + { spell = 53385, type = "ability", talent = 66 }, -- Divine Storm + { spell = 53595, type = "ability", requiresTarget = true, usable = true, talent = 40 }, -- Hammer of the Righteous + { spell = 53600, type = "ability", requiresTarget = true, usable = true, talent = 46 }, -- Shield of the Righteous + { spell = 54428, type = "ability", buff = true }, -- Divine Plea + { spell = 62124, type = "ability", debuff = true, requiresTarget = true }, -- Hand of Reckoning + { spell = 82327, type = "ability", buff = true, requiresTarget = true }, -- Holy Radiance + { spell = 85256, type = "ability", overlayGlow = true, requiresTarget = true }, -- Templar's Verdict + { spell = 85673, type = "ability" }, -- Word of Glory + { spell = 85696, type = "ability", buff = true, overlayGlow = true, talent = 69 }, -- Zealotry + { spell = 96231, type = "ability", requiresTarget = true }, -- Rebuke + }, + icon = 135972 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.HUNTER = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 3045, type = "buff", unit = "player" }, -- Rapid Fire + { spell = 5118, type = "buff", unit = "player" }, -- Aspect of the Cheetah + { spell = 5384, type = "buff", unit = "player" }, -- Feign Death + { spell = 13159, type = "buff", unit = "player" }, -- Aspect of the Pack + { spell = 13165, type = "buff", unit = "player" }, -- Aspect of the Hawk + { spell = 19263, type = "buff", unit = "player" }, -- Deterrence + { spell = 19506, type = "buff", unit = "player", talent = 38 }, -- Trueshot Aura + { spell = 20043, type = "buff", unit = "player" }, -- Aspect of the Wild + { spell = 24529, type = "buff", unit = "player", talent = 8 }, -- Spirit Bond + { spell = 34471, type = "buff", unit = "player", talent = 16 }, -- The Beast Within + { spell = 34477, type = "buff", unit = "player" }, -- Misdirection + { spell = 53220, type = "buff", unit = "player", talent = 34 }, -- Improved Steady Shot + { spell = 53290, type = "buff", unit = "player", talent = 70 }, -- Hunting Party + { spell = 54216, type = "buff", unit = "player" }, -- Master's Call + { spell = 54227, type = "buff", unit = "player", talent = 42 }, -- Rapid Recuperation + { spell = 56453, type = "buff", unit = "player", talent = 63 }, -- Lock and Load + { spell = 64420, type = "buff", unit = "player", talent = 71 }, -- Sniper Training + { spell = 75447, type = "buff", unit = "player", talent = 9 }, -- Ferocious Inspiration + { spell = 77769, type = "buff", unit = "player" }, -- Trap Launcher + { spell = 82661, type = "buff", unit = "player" }, -- Aspect of the Fox + { spell = 82692, type = "buff", unit = "player", talent = 10 }, -- Focus Fire + { spell = 82921, type = "buff", unit = "player", talent = 37 }, -- Bombardment + { spell = 82925, type = "buff", unit = "player" }, -- Ready, Set, Aim... + { spell = 82926, type = "buff", unit = "player" }, -- Fire! + { spell = 89388, type = "buff", unit = "player", talent = 32 }, -- Sic 'Em! + { spell = 136, type = "buff", unit = "pet" }, -- Mend Pet + { spell = 19574, type = "buff", unit = "pet", talent = 12 }, -- Bestial Wrath + { spell = 19615, type = "buff", unit = "pet" }, -- Frenzy Effect + { spell = 62305, type = "buff", unit = "pet" }, -- Master's Call + }, + icon = 132242 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 1130, type = "debuff", unit = "target" }, -- Hunter's Mark + { spell = 1978, type = "debuff", unit = "target" }, -- Serpent Sting + { spell = 2974, type = "debuff", unit = "target" }, -- Wing Clip + { spell = 3355, type = "debuff", unit = "target" }, -- Freezing Trap + { spell = 3674, type = "debuff", unit = "target", talent = 72 }, -- Black Arrow + { spell = 5116, type = "debuff", unit = "target" }, -- Concussive Shot + { spell = 13797, type = "debuff", unit = "target" }, -- Immolation Trap + { spell = 13810, type = "debuff", unit = "target" }, -- Ice Trap + { spell = 13812, type = "debuff", unit = "target" }, -- Explosive Trap + { spell = 19386, type = "debuff", unit = "target", talent = 67 }, -- Wyvern Sting + { spell = 19503, type = "debuff", unit = "target" }, -- Scatter Shot + { spell = 20736, type = "debuff", unit = "target" }, -- Distracting Shot + { spell = 24394, type = "debuff", unit = "target" }, -- Intimidation + { spell = 25810, type = "debuff", unit = "target" }, -- Mind-numbing Poison + { spell = 34490, type = "debuff", unit = "target", talent = 43 }, -- Silencing Shot + { spell = 34655, type = "debuff", unit = "target" }, -- Deadly Poison + { spell = 35101, type = "debuff", unit = "target", talent = 36 }, -- Concussive Barrage + { spell = 50518, type = "debuff", unit = "target" }, -- Ravage + { spell = 53301, type = "debuff", unit = "target" }, -- Explosive Shot + { spell = 82654, type = "debuff", unit = "target" }, -- Widow Venom + { spell = 88691, type = "debuff", unit = "target", talent = 45 }, -- Marked for Death + { spell = 94528, type = "debuff", unit = "target" }, -- Flare + { spell = 413848, type = "debuff", unit = "target", talent = 47 }, -- Piercing Shots + }, + icon = 135860 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 75, type = "ability", requiresTarget = true, usable = true }, -- Auto Shot + { spell = 781, type = "ability" }, -- Disengage + { spell = 1499, type = "ability" }, -- Freezing Trap + { spell = 1543, type = "ability" }, -- Flare + { spell = 1978, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Serpent Sting + { spell = 2643, type = "ability", requiresTarget = true, usable = true }, -- Multi-Shot + { spell = 2649, type = "ability" }, -- Growl + { spell = 2973, type = "ability", requiresTarget = true, usable = true }, -- Raptor Strike + { spell = 2974, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Wing Clip + { spell = 3044, type = "ability", requiresTarget = true, usable = true }, -- Arcane Shot + { spell = 3045, type = "ability", buff = true }, -- Rapid Fire + { spell = 3674, type = "ability", debuff = true, requiresTarget = true, usable = true, talent = 72 }, -- Black Arrow + { spell = 5116, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Concussive Shot + { spell = 5118, type = "ability", buff = true }, -- Aspect of the Cheetah + { spell = 5384, type = "ability", buff = true }, -- Feign Death + { spell = 6991, type = "ability", requiresTarget = true, usable = true }, -- Feed Pet + { spell = 13159, type = "ability", buff = true }, -- Aspect of the Pack + { spell = 13165, type = "ability", buff = true }, -- Aspect of the Hawk + { spell = 13795, type = "ability" }, -- Immolation Trap + { spell = 13809, type = "ability" }, -- Ice Trap + { spell = 13813, type = "ability" }, -- Explosive Trap + { spell = 17253, type = "ability" }, -- Bite + { spell = 19263, type = "ability", buff = true }, -- Deterrence + { spell = 19306, type = "ability", requiresTarget = true, usable = true, talent = 61 }, -- Counterattack + { spell = 19386, type = "ability", debuff = true, requiresTarget = true, usable = true, talent = 67 }, -- Wyvern Sting + { spell = 19434, type = "ability", overlayGlow = true, requiresTarget = true }, -- Aimed Shot + { spell = 19503, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Scatter Shot + { spell = 19574, type = "ability", buff = true, unit = 'pet', talent = 12 }, -- Bestial Wrath + { spell = 19577, type = "ability" }, -- Intimidation + { spell = 19801, type = "ability", requiresTarget = true, usable = true }, -- Tranquilizing Shot + { spell = 20043, type = "ability", buff = true }, -- Aspect of the Wild + { spell = 20736, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Distracting Shot + { spell = 23989, type = "ability", talent = 35 }, -- Readiness + { spell = 34026, type = "ability" }, -- Kill Command + { spell = 34477, type = "ability", buff = true }, -- Misdirection + { spell = 34490, type = "ability", debuff = true, requiresTarget = true, talent = 43 }, -- Silencing Shot + { spell = 34600, type = "ability" }, -- Snake Trap + { spell = 50518, type = "ability", debuff = true }, -- Ravage + { spell = 51753, type = "ability", usable = true }, -- Camouflage + { spell = 53209, type = "ability", requiresTarget = true, talent = 46 }, -- Chimera Shot + { spell = 53271, type = "ability" }, -- Master's Call + { spell = 53301, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true, usable = true }, -- Explosive Shot + { spell = 53351, type = "ability", requiresTarget = true, usable = true }, -- Kill Shot + { spell = 56641, type = "ability", requiresTarget = true, usable = true }, -- Steady Shot + { spell = 60192, type = "ability", overlayGlow = true }, -- Freezing Trap + { spell = 77767, type = "ability", requiresTarget = true, usable = true }, -- Cobra Shot + { spell = 77769, type = "ability", buff = true, usable = true }, -- Trap Launcher + { spell = 82654, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Widow Venom + { spell = 82661, type = "ability", buff = true }, -- Aspect of the Fox + { spell = 82692, type = "ability", buff = true, overlayGlow = true, talent = 10 }, -- Focus Fire + { spell = 82726, type = "ability", talent = 5 }, -- Fervor + { spell = 82939, type = "ability", overlayGlow = true }, -- Explosive Trap + { spell = 82941, type = "ability", overlayGlow = true }, -- Ice Trap + { spell = 82945, type = "ability", overlayGlow = true }, -- Immolation Trap + { spell = 82948, type = "ability", overlayGlow = true }, -- Snake Trap + }, + icon = 135130 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.ROGUE = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 1784, type = "buff", unit = "player" }, -- Stealth + { spell = 1966, type = "buff", unit = "player" }, -- Feint + { spell = 2983, type = "buff", unit = "player" }, -- Sprint + { spell = 5171, type = "buff", unit = "player" }, -- Slice and Dice + { spell = 5277, type = "buff", unit = "player" }, -- Evasion + { spell = 11327, type = "buff", unit = "player" }, -- Vanish + { spell = 13750, type = "buff", unit = "player", talent = 33 }, -- Adrenaline Rush + { spell = 13877, type = "buff", unit = "player" }, -- Blade Flurry + { spell = 14177, type = "buff", unit = "player", talent = 6 }, -- Cold Blood + { spell = 31224, type = "buff", unit = "player" }, -- Cloak of Shadows + { spell = 31665, type = "buff", unit = "player" }, -- Master of Subtlety + { spell = 32645, type = "buff", unit = "player" }, -- Envenom + { spell = 36554, type = "buff", unit = "player" }, -- Shadowstep + { spell = 51690, type = "buff", unit = "player", talent = 42 }, -- Killing Spree + { spell = 51701, type = "buff", unit = "player", talent = 68 }, -- Honor Among Thieves + { spell = 51713, type = "buff", unit = "player", talent = 70 }, -- Shadow Dance + { spell = 58427, type = "buff", unit = "player", talent = 7 }, -- Overkill + { spell = 73651, type = "buff", unit = "player" }, -- Recuperate + { spell = 74001, type = "buff", unit = "player" }, -- Combat Readiness + { spell = 102742, type = "buff", unit = "player" }, -- Mastery of Nimbleness + { spell = 102747, type = "buff", unit = "player" }, -- Agility of the Tiger + }, + icon = 132290 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 408, type = "debuff", unit = "target" }, -- Kidney Shot + { spell = 703, type = "debuff", unit = "target" }, -- Garrote + { spell = 1330, type = "debuff", unit = "target" }, -- Garrote - Silence + { spell = 1776, type = "debuff", unit = "target" }, -- Gouge + { spell = 1833, type = "debuff", unit = "target" }, -- Cheap Shot + { spell = 1943, type = "debuff", unit = "target" }, -- Rupture + { spell = 2094, type = "debuff", unit = "target" }, -- Blind + { spell = 2818, type = "debuff", unit = "target" }, -- Deadly Poison + { spell = 3409, type = "debuff", unit = "target" }, -- Crippling Poison + { spell = 5760, type = "debuff", unit = "target" }, -- Mind-numbing Poison + { spell = 8647, type = "debuff", unit = "target" }, -- Expose Armor + { spell = 13218, type = "debuff", unit = "target" }, -- Wound Poison + { spell = 16511, type = "debuff", unit = "target", talent = 64 }, -- Hemorrhage + { spell = 26679, type = "debuff", unit = "target" }, -- Deadly Throw + { spell = 51585, type = "debuff", unit = "target", talent = 37 }, -- Blade Twisting + { spell = 51693, type = "debuff", unit = "target", talent = 67 }, -- Waylay + { spell = 58683, type = "debuff", unit = "target", talent = 41 }, -- Savage Combat + { spell = 79140, type = "debuff", unit = "target", talent = 14 }, -- Vendetta + { spell = 88611, type = "debuff", unit = "target" }, -- Smoke Bomb + { spell = 93068, type = "debuff", unit = "target", talent = 10 }, -- Master Poisoner + }, + icon = 132302 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 53, type = "ability", requiresTarget = true, usable = true }, -- Backstab + { spell = 408, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Kidney Shot + { spell = 703, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Garrote + { spell = 921, type = "ability", requiresTarget = true, usable = true }, -- Pick Pocket + { spell = 1329, type = "ability", requiresTarget = true }, -- Mutilate + { spell = 1725, type = "ability" }, -- Distract + { spell = 1752, type = "ability", requiresTarget = true }, -- Sinister Strike + { spell = 1766, type = "ability", requiresTarget = true }, -- Kick + { spell = 1776, type = "ability", debuff = true, requiresTarget = true }, -- Gouge + { spell = 1784, type = "ability", buff = true, usable = true }, -- Stealth + { spell = 1833, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Cheap Shot + { spell = 1856, type = "ability" }, -- Vanish + { spell = 1943, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Rupture + { spell = 1966, type = "ability", buff = true, requiresTarget = true }, -- Feint + { spell = 2094, type = "ability", debuff = true, requiresTarget = true }, -- Blind + { spell = 2098, type = "ability", requiresTarget = true, usable = true }, -- Eviscerate + { spell = 2764, type = "ability", requiresTarget = true }, -- Throw + { spell = 2983, type = "ability", buff = true, usable = true }, -- Sprint + { spell = 3018, type = "ability", requiresTarget = true, usable = true }, -- Shoot + { spell = 5277, type = "ability", buff = true }, -- Evasion + { spell = 5938, type = "ability", requiresTarget = true }, -- Shiv + { spell = 8647, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Expose Armor + { spell = 8676, type = "ability", requiresTarget = true, usable = true }, -- Ambush + { spell = 13750, type = "ability", buff = true, talent = 33 }, -- Adrenaline Rush + { spell = 13877, type = "ability", buff = true }, -- Blade Flurry + { spell = 14177, type = "ability", buff = true, usable = true, talent = 6 }, -- Cold Blood + { spell = 14183, type = "ability", requiresTarget = true, usable = true, talent = 63 }, -- Premeditation + { spell = 14185, type = "ability", talent = 62 }, -- Preparation + { spell = 16511, type = "ability", debuff = true, requiresTarget = true, talent = 64 }, -- Hemorrhage + { spell = 26679, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Deadly Throw + { spell = 31224, type = "ability", buff = true }, -- Cloak of Shadows + { spell = 32645, type = "ability", buff = true, requiresTarget = true, usable = true }, -- Envenom + { spell = 36554, type = "ability", buff = true, requiresTarget = true, usable = true }, -- Shadowstep + { spell = 51690, type = "ability", buff = true, talent = 42 }, -- Killing Spree + { spell = 51713, type = "ability", buff = true, talent = 70 }, -- Shadow Dance + { spell = 51722, type = "ability", requiresTarget = true }, -- Dismantle + { spell = 57934, type = "ability" }, -- Tricks of the Trade + { spell = 73981, type = "ability", requiresTarget = true }, -- Redirect + { spell = 74001, type = "ability", buff = true }, -- Combat Readiness + { spell = 76577, type = "ability", duration = 5 }, -- Smoke Bomb + { spell = 79140, type = "ability", debuff = true, requiresTarget = true, talent = 14 }, -- Vendetta + { spell = 84617, type = "ability", requiresTarget = true, talent = 46 }, -- Revealing Strike + }, + icon = 132350 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = comboPointsIcon, + }, + } +} + +templates.class.PRIEST = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 17, type = "buff", unit = "player" }, -- Power Word: Shield + { spell = 139, type = "buff", unit = "player" }, -- Renew + { spell = 586, type = "buff", unit = "player" }, -- Fade + { spell = 588, type = "buff", unit = "player" }, -- Inner Fire + { spell = 6346, type = "buff", unit = "player" }, -- Fear Ward + { spell = 10060, type = "buff", unit = "player", talent = 10 }, -- Power Infusion + { spell = 14751, type = "buff", unit = "player", talent = 41 }, -- Chakra + { spell = 15286, type = "buff", unit = "player", talent = 63 }, -- Vampiric Embrace + { spell = 15357, type = "buff", unit = "player", talent = 31 }, -- Inspiration + { spell = 15473, type = "buff", unit = "player", talent = 66 }, -- Shadowform + { spell = 33206, type = "buff", unit = "player", talent = 13 }, -- Pain Suppression + { spell = 41635, type = "buff", unit = "player" }, -- Prayer of Mending + { spell = 47585, type = "buff", unit = "player", talent = 72 }, -- Dispersion + { spell = 47753, type = "buff", unit = "player", talent = 9 }, -- Divine Aegis + { spell = 47788, type = "buff", unit = "player", talent = 38 }, -- Guardian Spirit + { spell = 49868, type = "buff", unit = "player" }, -- Mind Quickening + { spell = 57669, type = "buff", unit = "player" }, -- Replenishment + { spell = 59888, type = "buff", unit = "player", talent = 17 }, -- Borrowed Time + { spell = 60116, type = "buff", unit = "player" }, -- Armored Brown Bear + { spell = 63735, type = "buff", unit = "player", talent = 32 }, -- Serendipity + { spell = 64843, type = "buff", unit = "player" }, -- Divine Hymn + { spell = 64901, type = "buff", unit = "player" }, -- Hymn of Hope + { spell = 65081, type = "buff", unit = "player", talent = 34 }, -- Body and Soul + { spell = 73413, type = "buff", unit = "player" }, -- Inner Will + { spell = 77487, type = "buff", unit = "player" }, -- Shadow Orb + { spell = 77489, type = "buff", unit = "player" }, -- Echo of Light + { spell = 77613, type = "buff", unit = "player", talent = 14 }, -- Grace + { spell = 79105, type = "buff", unit = "player" }, -- Power Word: Fortitude + { spell = 79107, type = "buff", unit = "player" }, -- Shadow Protection + { spell = 81208, type = "buff", unit = "player" }, -- Chakra: Serenity + { spell = 81782, type = "buff", unit = "player", talent = 6 }, -- Power Word: Barrier + { spell = 87160, type = "buff", unit = "player", talent = 64 }, -- Mind Melt + { spell = 88684, type = "buff", unit = "player" }, -- Holy Word: Serenity + { spell = 89485, type = "buff", unit = "player", talent = 3 }, -- Inner Focus + { spell = 91139, type = "buff", unit = "player" }, -- Cleansing Tears + { spell = 91724, type = "buff", unit = "player" }, -- Spell Warding + { spell = 95799, type = "buff", unit = "player" }, -- Empowered Shadow + { spell = 96267, type = "buff", unit = "player", talent = 20 }, -- Strength of Soul + { spell = 17, type = "buff", unit = "target" }, -- Power Word: Shield + { spell = 47788, type = "buff", unit = "target", talent = 38 }, -- Guardian Spirit + { spell = 65081, type = "buff", unit = "target", talent = 34 }, -- Body and Soul + { spell = 63619, type = "buff", unit = "pet" }, -- Shadowcrawl + }, + icon = 135940 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 589, type = "debuff", unit = "target" }, -- Shadow Word: Pain + { spell = 2944, type = "debuff", unit = "target" }, -- Devouring Plague + { spell = 6788, type = "debuff", unit = "target" }, -- Weakened Soul + { spell = 8122, type = "debuff", unit = "target" }, -- Psychic Scream + { spell = 15407, type = "debuff", unit = "target" }, -- Mind Flay + { spell = 15487, type = "debuff", unit = "target", talent = 62 }, -- Silence + { spell = 34914, type = "debuff", unit = "target", talent = 70 }, -- Vampiric Touch + { spell = 48045, type = "debuff", unit = "target" }, -- Mind Sear + { spell = 48301, type = "debuff", unit = "target" }, -- Mind Trauma + { spell = 64044, type = "debuff", unit = "target", talent = 69 }, -- Psychic Horror + { spell = 87178, type = "debuff", unit = "target" }, -- Mind Spike + { spell = 87194, type = "debuff", unit = "target", talent = 75 }, -- Paralysis + { spell = 88625, type = "debuff", unit = "target" }, -- Holy Word: Chastise + }, + icon = 136207 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 17, type = "ability", buff = true, usable = true }, -- Power Word: Shield + { spell = 527, type = "ability", requiresTarget = true }, -- Dispel Magic + { spell = 585, type = "ability", requiresTarget = true }, -- Smite + { spell = 586, type = "ability", buff = true }, -- Fade + { spell = 589, type = "ability", debuff = true, requiresTarget = true }, -- Shadow Word: Pain + { spell = 724, type = "ability", totem = true, talent = 40 }, -- Lightwell + { spell = 2944, type = "ability", debuff = true, requiresTarget = true }, -- Devouring Plague + { spell = 6346, type = "ability", buff = true }, -- Fear Ward + { spell = 8092, type = "ability", overlayGlow = true, requiresTarget = true }, -- Mind Blast + { spell = 8122, type = "ability", debuff = true }, -- Psychic Scream + { spell = 8129, type = "ability", requiresTarget = true }, -- Mana Burn + { spell = 10060, type = "ability", buff = true, talent = 10 }, -- Power Infusion + { spell = 14751, type = "ability", buff = true, usable = true, talent = 41 }, -- Chakra + { spell = 14914, type = "ability", requiresTarget = true }, -- Holy Fire + { spell = 15407, type = "ability", debuff = true, requiresTarget = true }, -- Mind Flay + { spell = 15473, type = "ability", buff = true, usable = true, talent = 66 }, -- Shadowform + { spell = 15487, type = "ability", debuff = true, requiresTarget = true, talent = 62 }, -- Silence + { spell = 19236, type = "ability", talent = 43 }, -- Desperate Prayer + { spell = 32379, type = "ability", requiresTarget = true }, -- Shadow Word: Death + { spell = 33076, type = "ability" }, -- Prayer of Mending + { spell = 33206, type = "ability", buff = true, talent = 13 }, -- Pain Suppression + { spell = 34433, type = "ability", requiresTarget = true }, -- Shadowfiend + { spell = 34861, type = "ability", requiresTarget = true, talent = 36 }, -- Circle of Healing + { spell = 34914, type = "ability", debuff = true, requiresTarget = true, talent = 70 }, -- Vampiric Touch + { spell = 47540, type = "ability", requiresTarget = true }, -- Penance + { spell = 47585, type = "ability", buff = true, talent = 72 }, -- Dispersion + { spell = 47788, type = "ability", buff = true, talent = 38 }, -- Guardian Spirit + { spell = 48045, type = "ability", debuff = true, requiresTarget = true }, -- Mind Sear + { spell = 62618, type = "ability", talent = 6 }, -- Power Word: Barrier + { spell = 64044, type = "ability", debuff = true, requiresTarget = true, talent = 69 }, -- Psychic Horror + { spell = 64843, type = "ability", buff = true }, -- Divine Hymn + { spell = 64901, type = "ability", buff = true }, -- Hymn of Hope + { spell = 73510, type = "ability", overlayGlow = true, requiresTarget = true }, -- Mind Spike + { spell = 88625, type = "ability", debuff = true, requiresTarget = true }, -- Holy Word: Chastise + { spell = 88684, type = "ability", buff = true, overlayGlow = true }, -- Holy Word: Serenity + { spell = 89485, type = "ability", buff = true, usable = true, talent = 3 }, -- Inner Focus + }, + icon = 136224 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.SHAMAN = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 324, type = "buff", unit = "player" }, -- Lightning Shield + { spell = 974, type = "buff", unit = "player" }, -- Earth Shield + { spell = 2645, type = "buff", unit = "player" }, -- Ghost Wolf + { spell = 2825, type = "buff", unit = "player" }, -- Bloodlust + { spell = 2895, type = "buff", unit = "player" }, -- Wrath of Air Totem + { spell = 5677, type = "buff", unit = "player" }, -- Mana Spring + { spell = 8072, type = "buff", unit = "player" }, -- Stoneskin + { spell = 8076, type = "buff", unit = "player" }, -- Strength of Earth + { spell = 8178, type = "buff", unit = "player" }, -- Grounding Totem Effect + { spell = 8185, type = "buff", unit = "player" }, -- Elemental Resistance + { spell = 8515, type = "buff", unit = "player" }, -- Windfury Totem + { spell = 16166, type = "buff", unit = "player", talent = 4 }, -- Elemental Mastery + { spell = 16188, type = "buff", unit = "player", talent = 61 }, -- Nature's Swiftness + { spell = 16191, type = "buff", unit = "player" }, -- Mana Tide + { spell = 16236, type = "buff", unit = "player" }, -- Ancestral Fortitude + { spell = 16246, type = "buff", unit = "player" }, -- Clearcasting + { spell = 16278, type = "buff", unit = "player", talent = 29 }, -- Flurry + { spell = 29178, type = "buff", unit = "player", talent = 44 }, -- Elemental Devastation + { spell = 30802, type = "buff", unit = "player", talent = 35 }, -- Unleashed Rage + { spell = 30823, type = "buff", unit = "player", talent = 36 }, -- Shamanistic Rage + { spell = 51470, type = "buff", unit = "player", talent = 11 }, -- Elemental Oath + { spell = 52109, type = "buff", unit = "player" }, -- Flametongue Totem + { spell = 52127, type = "buff", unit = "player" }, -- Water Shield + { spell = 53390, type = "buff", unit = "player", talent = 68 }, -- Tidal Waves + { spell = 53817, type = "buff", unit = "player", talent = 39 }, -- Maelstrom Weapon + { spell = 60116, type = "buff", unit = "player" }, -- Armored Brown Bear + { spell = 61295, type = "buff", unit = "player", talent = 69 }, -- Riptide + { spell = 77747, type = "buff", unit = "player", talent = 13 }, -- Totemic Wrath + { spell = 77800, type = "buff", unit = "player", talent = 71 }, -- Focused Insight + { spell = 98007, type = "buff", unit = "player", talent = 76 }, -- Spirit Link Totem + { spell = 105284, type = "buff", unit = "player" }, -- Ancestral Vigor + { spell = 8178, type = "buff", unit = "pet" }, -- Grounding Totem Effect + { spell = 8185, type = "buff", unit = "pet" }, -- Elemental Resistance + { spell = 52109, type = "buff", unit = "pet" }, -- Flametongue Totem + }, + icon = 135863 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 3600, type = "debuff", unit = "target" }, -- Earthbind + { spell = 8034, type = "debuff", unit = "target" }, -- Frostbrand Attack + { spell = 8042, type = "debuff", unit = "target" }, -- Earth Shock + { spell = 8050, type = "debuff", unit = "target" }, -- Flame Shock + { spell = 8056, type = "debuff", unit = "target" }, -- Frost Shock + { spell = 17364, type = "debuff", unit = "target", talent = 34 }, -- Stormstrike + { spell = 58861, type = "debuff", unit = "target" }, -- Bash + { spell = 77661, type = "debuff", unit = "target", talent = 41 }, -- Searing Flames + { spell = 100955, type = "debuff", unit = "target" }, -- Thunderstorm + }, + icon = 135813 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 370, type = "ability", requiresTarget = true }, -- Purge + { spell = 403, type = "ability", requiresTarget = true }, -- Lightning Bolt + { spell = 421, type = "ability", requiresTarget = true }, -- Chain Lightning + { spell = 556, type = "ability", usable = true }, -- Astral Recall + { spell = 1535, type = "ability" }, -- Fire Nova + { spell = 2062, type = "ability", totem = true }, -- Earth Elemental Totem + { spell = 2484, type = "ability", totem = true }, -- Earthbind Totem + { spell = 2825, type = "ability", buff = true }, -- Bloodlust + { spell = 2894, type = "ability", totem = true }, -- Fire Elemental Totem + { spell = 5730, type = "ability" }, -- Stoneclaw Totem + { spell = 8042, type = "ability", debuff = true, requiresTarget = true }, -- Earth Shock + { spell = 8050, type = "ability", debuff = true, requiresTarget = true }, -- Flame Shock + { spell = 8056, type = "ability", debuff = true, requiresTarget = true }, -- Frost Shock + { spell = 8143, type = "ability" }, -- Tremor Totem + { spell = 8177, type = "ability", totem = true }, -- Grounding Totem + { spell = 16166, type = "ability", buff = true, usable = true, talent = 4 }, -- Elemental Mastery + { spell = 16188, type = "ability", buff = true, usable = true, talent = 61 }, -- Nature's Swiftness + { spell = 16190, type = "ability", totem = true, talent = 60 }, -- Mana Tide Totem + { spell = 17364, type = "ability", debuff = true, requiresTarget = true, talent = 34 }, -- Stormstrike + { spell = 30823, type = "ability", buff = true, talent = 36 }, -- Shamanistic Rage + { spell = 51490, type = "ability" }, -- Thunderstorm + { spell = 51505, type = "ability", requiresTarget = true }, -- Lava Burst + { spell = 51514, type = "ability" }, -- Hex + { spell = 51533, type = "ability", talent = 40 }, -- Feral Spirit + { spell = 57994, type = "ability", requiresTarget = true }, -- Wind Shear + { spell = 60103, type = "ability", requiresTarget = true, usable = true }, -- Lava Lash + { spell = 61295, type = "ability", buff = true, talent = 69 }, -- Riptide + { spell = 61882, type = "ability", talent = 10 }, -- Earthquake + { spell = 73899, type = "ability" }, -- Primal Strike + { spell = 98008, type = "ability", totem = true, talent = 76 }, -- Spirit Link Totem + }, + icon = 135963 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = 135990, + }, + } +} + +templates.class.MAGE = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 66, type = "buff", unit = "player" }, -- Invisibility + { spell = 543, type = "buff", unit = "player" }, -- Mage Ward + { spell = 1463, type = "buff", unit = "player" }, -- Mana Shield + { spell = 6117, type = "buff", unit = "player" }, -- Mage Armor + { spell = 7302, type = "buff", unit = "player" }, -- Frost Armor + { spell = 11426, type = "buff", unit = "player", talent = 65 }, -- Ice Barrier + { spell = 12042, type = "buff", unit = "player", talent = 9 }, -- Arcane Power + { spell = 12043, type = "buff", unit = "player", talent = 6 }, -- Presence of Mind + { spell = 12051, type = "buff", unit = "player" }, -- Evocation + { spell = 12472, type = "buff", unit = "player", talent = 59 }, -- Icy Veins + { spell = 12536, type = "buff", unit = "player" }, -- Clearcasting + { spell = 30482, type = "buff", unit = "player" }, -- Molten Armor + { spell = 44544, type = "buff", unit = "player", talent = 63 }, -- Fingers of Frost + { spell = 45438, type = "buff", unit = "player" }, -- Ice Block + { spell = 48108, type = "buff", unit = "player", talent = 43 }, -- Hot Streak + { spell = 57531, type = "buff", unit = "player", talent = 8 }, -- Arcane Potency + { spell = 57669, type = "buff", unit = "player" }, -- Replenishment + { spell = 57761, type = "buff", unit = "player", talent = 66 }, -- Brain Freeze + { spell = 64343, type = "buff", unit = "player", talent = 32 }, -- Impact + { spell = 79058, type = "buff", unit = "player" }, -- Arcane Brilliance + { spell = 79683, type = "buff", unit = "player" }, -- Arcane Missiles! + { spell = 80169, type = "buff", unit = "player" }, -- Food + { spell = 80353, type = "buff", unit = "player" }, -- Time Warp + { spell = 82930, type = "buff", unit = "player", talent = 17 }, -- Arcane Tactics + { spell = 87959, type = "buff", unit = "player" }, -- Drink + { spell = 90887, type = "buff", unit = "player" }, -- Witching Hour + { spell = 90898, type = "buff", unit = "player" }, -- Tendrils of Darkness + { spell = 54646, type = "buff", unit = "target", talent = 16 }, -- Focus Magic + { spell = 57669, type = "buff", unit = "pet" }, -- Replenishment + }, + icon = 136096 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 116, type = "debuff", unit = "target" }, -- Frostbolt + { spell = 120, type = "debuff", unit = "target" }, -- Cone of Cold + { spell = 122, type = "debuff", unit = "target" }, -- Frost Nova + { spell = 11113, type = "debuff", unit = "target", talent = 37 }, -- Blast Wave + { spell = 11366, type = "debuff", unit = "target" }, -- Pyroblast + { spell = 12355, type = "debuff", unit = "target", talent = 32 }, -- Impact + { spell = 12485, type = "debuff", unit = "target" }, -- Chilled + { spell = 22959, type = "debuff", unit = "target", talent = 33 }, -- Critical Mass + { spell = 31589, type = "debuff", unit = "target", talent = 13 }, -- Slow + { spell = 31661, type = "debuff", unit = "target", talent = 42 }, -- Dragon's Breath + { spell = 44457, type = "debuff", unit = "target", talent = 44 }, -- Living Bomb + { spell = 44572, type = "debuff", unit = "target", talent = 68 }, -- Deep Freeze + { spell = 44614, type = "debuff", unit = "target" }, -- Frostfire Bolt + { spell = 84721, type = "debuff", unit = "target", talent = 72 }, -- Frostfire Orb + { spell = 92315, type = "debuff", unit = "target" }, -- Pyroblast! + { spell = 413841, type = "debuff", unit = "target", talent = 30 }, -- Ignite + }, + icon = 135848 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 66, type = "ability", buff = true }, -- Invisibility + { spell = 116, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true }, -- Frostbolt + { spell = 120, type = "ability", debuff = true }, -- Cone of Cold + { spell = 122, type = "ability", debuff = true }, -- Frost Nova + { spell = 133, type = "ability", overlayGlow = true, requiresTarget = true }, -- Fireball + { spell = 543, type = "ability", buff = true }, -- Mage Ward + { spell = 1463, type = "ability", buff = true }, -- Mana Shield + { spell = 1953, type = "ability" }, -- Blink + { spell = 2136, type = "ability", overlayGlow = true, requiresTarget = true }, -- Fire Blast + { spell = 2139, type = "ability", requiresTarget = true }, -- Counterspell + { spell = 2948, type = "ability", requiresTarget = true }, -- Scorch + { spell = 5143, type = "ability", overlayGlow = true, requiresTarget = true, usable = true }, -- Arcane Missiles + { spell = 11113, type = "ability", debuff = true, talent = 37 }, -- Blast Wave + { spell = 11426, type = "ability", buff = true, talent = 65 }, -- Ice Barrier + { spell = 11958, type = "ability", talent = 62 }, -- Cold Snap + { spell = 12042, type = "ability", buff = true, usable = true, talent = 9 }, -- Arcane Power + { spell = 12043, type = "ability", buff = true, usable = true, talent = 6 }, -- Presence of Mind + { spell = 12051, type = "ability", buff = true }, -- Evocation + { spell = 12472, type = "ability", buff = true, talent = 59 }, -- Icy Veins + { spell = 30449, type = "ability", requiresTarget = true }, -- Spellsteal + { spell = 30451, type = "ability", requiresTarget = true }, -- Arcane Blast + { spell = 30455, type = "ability", overlayGlow = true, requiresTarget = true }, -- Ice Lance + { spell = 31589, type = "ability", debuff = true, requiresTarget = true, talent = 13 }, -- Slow + { spell = 31661, type = "ability", debuff = true, talent = 42 }, -- Dragon's Breath + { spell = 31707, type = "ability" }, -- Waterbolt + { spell = 43987, type = "ability", usable = true }, -- Ritual of Refreshment + { spell = 44425, type = "ability", requiresTarget = true }, -- Arcane Barrage + { spell = 44572, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true, usable = true, talent = 68 }, -- Deep Freeze + { spell = 44614, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true }, -- Frostfire Bolt + { spell = 45438, type = "ability", buff = true, usable = true }, -- Ice Block + { spell = 55342, type = "ability" }, -- Mirror Image + { spell = 82676, type = "ability" }, -- Ring of Frost + { spell = 82731, type = "ability" }, -- Flame Orb + { spell = 92283, type = "ability", talent = 72 }, -- Frostfire Orb + }, + icon = 136075 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.WARLOCK = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 687, type = "buff", unit = "player" }, -- Demon Armor + { spell = 1949, type = "buff", unit = "player" }, -- Hellfire + { spell = 5697, type = "buff", unit = "player" }, -- Unending Breath + { spell = 6229, type = "buff", unit = "player" }, -- Shadow Ward + { spell = 6307, type = "buff", unit = "player" }, -- Blood Pact + { spell = 25228, type = "buff", unit = "player" }, -- Soul Link + { spell = 28176, type = "buff", unit = "player" }, -- Fel Armor + { spell = 47241, type = "buff", unit = "player", talent = 37 }, -- Metamorphosis + { spell = 47283, type = "buff", unit = "player", talent = 68 }, -- Empowered Imp + { spell = 48018, type = "buff", unit = "player" }, -- Demonic Circle: Summon + { spell = 50589, type = "buff", unit = "player" }, -- Immolation Aura + { spell = 53646, type = "buff", unit = "player", talent = 36 }, -- Demonic Pact + { spell = 54276, type = "buff", unit = "player", talent = 66 }, -- Backdraft + { spell = 57669, type = "buff", unit = "player" }, -- Replenishment + { spell = 64371, type = "buff", unit = "player", talent = 9 }, -- Eradication + { spell = 71165, type = "buff", unit = "player", talent = 34 }, -- Molten Core + { spell = 74434, type = "buff", unit = "player" }, -- Soulburn + { spell = 79268, type = "buff", unit = "player" }, -- Soul Harvest + { spell = 79462, type = "buff", unit = "player" }, -- Demon Soul: Felguard + { spell = 85383, type = "buff", unit = "player", talent = 59 }, -- Improved Soul Fire + { spell = 85768, type = "buff", unit = "player" }, -- Dark Intent + { spell = 86211, type = "buff", unit = "player", talent = 16 }, -- Soul Swap + { spell = 90887, type = "buff", unit = "player" }, -- Witching Hour + { spell = 90898, type = "buff", unit = "player" }, -- Tendrils of Darkness + { spell = 6307, type = "buff", unit = "target" }, -- Blood Pact + { spell = 25228, type = "buff", unit = "target" }, -- Soul Link + { spell = 53646, type = "buff", unit = "target", talent = 36 }, -- Demonic Pact + { spell = 54508, type = "buff", unit = "target", talent = 38 }, -- Demonic Empowerment + { spell = 85767, type = "buff", unit = "target" }, -- Dark Intent + { spell = 6307, type = "buff", unit = "pet" }, -- Blood Pact + { spell = 25228, type = "buff", unit = "pet" }, -- Soul Link + { spell = 53646, type = "buff", unit = "pet", talent = 36 }, -- Demonic Pact + { spell = 54508, type = "buff", unit = "pet", talent = 38 }, -- Demonic Empowerment + { spell = 57669, type = "buff", unit = "pet" }, -- Replenishment + { spell = 85759, type = "buff", unit = "pet" }, -- Dark Intent + { spell = 89751, type = "buff", unit = "pet" }, -- Felstorm + }, + icon = 136210 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 172, type = "debuff", unit = "target" }, -- Corruption + { spell = 348, type = "debuff", unit = "target" }, -- Immolate + { spell = 603, type = "debuff", unit = "target" }, -- Bane of Doom + { spell = 689, type = "debuff", unit = "target" }, -- Drain Life + { spell = 702, type = "debuff", unit = "target" }, -- Curse of Weakness + { spell = 980, type = "debuff", unit = "target" }, -- Bane of Agony + { spell = 1120, type = "debuff", unit = "target" }, -- Drain Soul + { spell = 1490, type = "debuff", unit = "target" }, -- Curse of the Elements + { spell = 1714, type = "debuff", unit = "target" }, -- Curse of Tongues + { spell = 5484, type = "debuff", unit = "target" }, -- Howl of Terror + { spell = 5782, type = "debuff", unit = "target" }, -- Fear + { spell = 6789, type = "debuff", unit = "target" }, -- Death Coil + { spell = 17800, type = "debuff", unit = "target", talent = 57 }, -- Shadow and Flame + { spell = 18118, type = "debuff", unit = "target", talent = 74 }, -- Aftermath + { spell = 18223, type = "debuff", unit = "target", talent = 8 }, -- Curse of Exhaustion + { spell = 27243, type = "debuff", unit = "target" }, -- Seed of Corruption + { spell = 30108, type = "debuff", unit = "target" }, -- Unstable Affliction + { spell = 30213, type = "debuff", unit = "target" }, -- Legion Strike + { spell = 30283, type = "debuff", unit = "target", talent = 67 }, -- Shadowfury + { spell = 32389, type = "debuff", unit = "target", talent = 7 }, -- Shadow Embrace + { spell = 47960, type = "debuff", unit = "target" }, -- Shadowflame + { spell = 48181, type = "debuff", unit = "target", talent = 13 }, -- Haunt + { spell = 54786, type = "debuff", unit = "target" }, -- Demon Leap + { spell = 60947, type = "debuff", unit = "target" }, -- Nightmare + { spell = 80240, type = "debuff", unit = "target", talent = 63 }, -- Bane of Havoc + { spell = 85421, type = "debuff", unit = "target", talent = 72 }, -- Burning Embers + { spell = 86000, type = "debuff", unit = "target" }, -- Curse of Gul'dan + { spell = 89766, type = "debuff", unit = "target" }, -- Axe Toss + { spell = 93986, type = "debuff", unit = "target", talent = 47 }, -- Aura of Foreboding + }, + icon = 136139 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 172, type = "ability", debuff = true, requiresTarget = true }, -- Corruption + { spell = 348, type = "ability", debuff = true, requiresTarget = true }, -- Immolate + { spell = 603, type = "ability", debuff = true, requiresTarget = true }, -- Bane of Doom + { spell = 686, type = "ability", requiresTarget = true }, -- Shadow Bolt + { spell = 689, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true }, -- Drain Life + { spell = 698, type = "ability", usable = true }, -- Ritual of Summoning + { spell = 702, type = "ability", debuff = true, requiresTarget = true }, -- Curse of Weakness + { spell = 980, type = "ability", debuff = true, requiresTarget = true }, -- Bane of Agony + { spell = 1120, type = "ability", debuff = true, requiresTarget = true }, -- Drain Soul + { spell = 1122, type = "ability" }, -- Summon Infernal + { spell = 1490, type = "ability", debuff = true, requiresTarget = true }, -- Curse of the Elements + { spell = 1714, type = "ability", debuff = true, requiresTarget = true }, -- Curse of Tongues + { spell = 5484, type = "ability", debuff = true }, -- Howl of Terror + { spell = 5676, type = "ability", overlayGlow = true, requiresTarget = true }, -- Searing Pain + { spell = 5782, type = "ability", debuff = true, requiresTarget = true }, -- Fear + { spell = 6229, type = "ability", buff = true }, -- Shadow Ward + { spell = 6353, type = "ability", overlayGlow = true, requiresTarget = true }, -- Soul Fire + { spell = 6789, type = "ability", debuff = true, requiresTarget = true }, -- Death Coil + { spell = 17877, type = "ability", requiresTarget = true, usable = true, talent = 60 }, -- Shadowburn + { spell = 17962, type = "ability", requiresTarget = true, usable = true }, -- Conflagrate + { spell = 18223, type = "ability", debuff = true, requiresTarget = true, talent = 8 }, -- Curse of Exhaustion + { spell = 18540, type = "ability" }, -- Summon Doomguard + { spell = 27243, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true }, -- Seed of Corruption + { spell = 29722, type = "ability", overlayGlow = true, requiresTarget = true }, -- Incinerate + { spell = 29858, type = "ability" }, -- Soulshatter + { spell = 29893, type = "ability" }, -- Ritual of Souls + { spell = 30108, type = "ability", debuff = true, requiresTarget = true }, -- Unstable Affliction + { spell = 30151, type = "ability" }, -- Pursuit + { spell = 30213, type = "ability", debuff = true }, -- Legion Strike + { spell = 30283, type = "ability", debuff = true, talent = 67 }, -- Shadowfury + { spell = 47193, type = "ability", talent = 38 }, -- Demonic Empowerment + { spell = 47241, type = "ability", buff = true, talent = 37 }, -- Metamorphosis + { spell = 47897, type = "ability" }, -- Shadowflame + { spell = 48020, type = "ability", overlayGlow = true, usable = true }, -- Demonic Circle: Teleport + { spell = 48181, type = "ability", debuff = true, requiresTarget = true, talent = 13 }, -- Haunt + { spell = 50589, type = "ability", buff = true, usable = true }, -- Immolation Aura + { spell = 50796, type = "ability", requiresTarget = true, talent = 70 }, -- Chaos Bolt + { spell = 54785, type = "ability", usable = true }, -- Demon Leap + { spell = 71521, type = "ability", requiresTarget = true, totem = true, talent = 44 }, -- Hand of Gul'dan + { spell = 74434, type = "ability", buff = true }, -- Soulburn + { spell = 77799, type = "ability", requiresTarget = true }, -- Fel Flame + { spell = 77801, type = "ability" }, -- Demon Soul + { spell = 79268, type = "ability", buff = true, usable = true }, -- Soul Harvest + { spell = 80240, type = "ability", debuff = true, requiresTarget = true, talent = 63 }, -- Bane of Havoc + { spell = 86121, type = "ability", requiresTarget = true, talent = 16 }, -- Soul Swap + { spell = 89751, type = "ability", buff = true, unit = 'pet' }, -- Felstorm + { spell = 89766, type = "ability", debuff = true }, -- Axe Toss + { spell = 89792, type = "ability" }, -- Flee + }, + icon = 135808 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = "Interface\\Icons\\inv_misc_gem_amethyst_02", + }, + } +} + +templates.class.DRUID = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 467, type = "buff", unit = "player" }, -- Thorns + { spell = 768, type = "buff", unit = "player" }, -- Cat Form + { spell = 774, type = "buff", unit = "player" }, -- Rejuvenation + { spell = 783, type = "buff", unit = "player" }, -- Travel Form + { spell = 1850, type = "buff", unit = "player" }, -- Dash + { spell = 5215, type = "buff", unit = "player" }, -- Prowl + { spell = 5217, type = "buff", unit = "player" }, -- Tiger's Fury + { spell = 5229, type = "buff", unit = "player" }, -- Enrage + { spell = 5487, type = "buff", unit = "player" }, -- Bear Form + { spell = 8936, type = "buff", unit = "player" }, -- Regrowth + { spell = 16689, type = "buff", unit = "player" }, -- Nature's Grasp + { spell = 16870, type = "buff", unit = "player" }, -- Clearcasting + { spell = 17116, type = "buff", unit = "player", talent = 60 }, -- Nature's Swiftness + { spell = 22812, type = "buff", unit = "player" }, -- Barkskin + { spell = 22842, type = "buff", unit = "player" }, -- Frenzied Regeneration + { spell = 24858, type = "buff", unit = "player", talent = 15 }, -- Moonkin Form + { spell = 24907, type = "buff", unit = "player" }, -- Moonkin Aura + { spell = 24932, type = "buff", unit = "player", talent = 39 }, -- Leader of the Pack + { spell = 29166, type = "buff", unit = "player" }, -- Innervate + { spell = 33763, type = "buff", unit = "player" }, -- Lifebloom + { spell = 33891, type = "buff", unit = "player", talent = 67 }, -- Tree of Life + { spell = 44203, type = "buff", unit = "player" }, -- Tranquility + { spell = 48438, type = "buff", unit = "player", talent = 69 }, -- Wild Growth + { spell = 48504, type = "buff", unit = "player", talent = 61 }, -- Living Seed + { spell = 48505, type = "buff", unit = "player", talent = 13 }, -- Starfall + { spell = 50334, type = "buff", unit = "player", talent = 43 }, -- Berserk + { spell = 51185, type = "buff", unit = "player", talent = 38 }, -- King of the Jungle + { spell = 52610, type = "buff", unit = "player" }, -- Savage Roar + { spell = 57669, type = "buff", unit = "player" }, -- Replenishment + { spell = 60116, type = "buff", unit = "player" }, -- Armored Brown Bear + { spell = 77761, type = "buff", unit = "player" }, -- Stampeding Roar + { spell = 79061, type = "buff", unit = "player" }, -- Mark of the Wild + { spell = 80879, type = "buff", unit = "player", talent = 40 }, -- Primal Madness + { spell = 81022, type = "buff", unit = "player", talent = 32 }, -- Stampede + { spell = 91143, type = "buff", unit = "player" }, -- Anthem + }, + icon = 136097 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 99, type = "debuff", unit = "target" }, -- Demoralizing Roar + { spell = 339, type = "debuff", unit = "target" }, -- Entangling Roots + { spell = 1079, type = "debuff", unit = "target" }, -- Rip + { spell = 5209, type = "debuff", unit = "target" }, -- Challenging Roar + { spell = 5211, type = "debuff", unit = "target" }, -- Bash + { spell = 5570, type = "debuff", unit = "target" }, -- Insect Swarm + { spell = 6795, type = "debuff", unit = "target" }, -- Growl + { spell = 8921, type = "debuff", unit = "target" }, -- Moonfire + { spell = 22570, type = "debuff", unit = "target" }, -- Maim + { spell = 33745, type = "debuff", unit = "target" }, -- Lacerate + { spell = 33876, type = "debuff", unit = "target" }, -- Mangle + { spell = 50259, type = "debuff", unit = "target" }, -- Dazed + { spell = 58180, type = "debuff", unit = "target", talent = 46 }, -- Infected Wounds + { spell = 60433, type = "debuff", unit = "target", talent = 14 }, -- Earth and Moon + { spell = 61391, type = "debuff", unit = "target", talent = 17 }, -- Typhoon + { spell = 81261, type = "debuff", unit = "target", talent = 4 }, -- Solar Beam + { spell = 91565, type = "debuff", unit = "target" }, -- Faerie Fire + }, + icon = 132114 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 339, type = "ability", debuff = true, overlayGlow = true, requiresTarget = true }, -- Entangling Roots + { spell = 467, type = "ability", buff = true, requiresTarget = true }, -- Thorns + { spell = 740, type = "ability" }, -- Tranquility + { spell = 770, type = "ability", requiresTarget = true }, -- Faerie Fire + { spell = 779, type = "ability", usable = true }, -- Swipe + { spell = 1079, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Rip + { spell = 1082, type = "ability", requiresTarget = true, usable = true }, -- Claw + { spell = 1126, type = "ability", requiresTarget = true }, -- Mark of the Wild + { spell = 1822, type = "ability", requiresTarget = true, usable = true }, -- Rake + { spell = 1850, type = "ability", buff = true, usable = true }, -- Dash + { spell = 2908, type = "ability", requiresTarget = true }, -- Soothe + { spell = 2912, type = "ability", requiresTarget = true }, -- Starfire + { spell = 5176, type = "ability", overlayGlow = true, requiresTarget = true }, -- Wrath + { spell = 5209, type = "ability", debuff = true, usable = true }, -- Challenging Roar + { spell = 5211, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Bash + { spell = 5215, type = "ability", buff = true, usable = true }, -- Prowl + { spell = 5217, type = "ability", buff = true, usable = true }, -- Tiger's Fury + { spell = 5221, type = "ability", requiresTarget = true, usable = true }, -- Shred + { spell = 5229, type = "ability", buff = true, usable = true }, -- Enrage + { spell = 5570, type = "ability", debuff = true, requiresTarget = true }, -- Insect Swarm + { spell = 6785, type = "ability", overlayGlow = true, requiresTarget = true, usable = true }, -- Ravage + { spell = 6795, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Growl + { spell = 6807, type = "ability", requiresTarget = true, usable = true }, -- Maul + { spell = 8921, type = "ability", debuff = true, requiresTarget = true }, -- Moonfire + { spell = 8998, type = "ability", requiresTarget = true, usable = true }, -- Cower + { spell = 9005, type = "ability", requiresTarget = true, usable = true }, -- Pounce + { spell = 16689, type = "ability", buff = true }, -- Nature's Grasp + { spell = 16857, type = "ability", requiresTarget = true, usable = true }, -- Faerie Fire (Feral) + { spell = 16979, type = "ability", requiresTarget = true, talent = 31 }, -- Feral Charge + { spell = 17116, type = "ability", buff = true, usable = true, talent = 60 }, -- Nature's Swiftness + { spell = 18562, type = "ability", usable = true }, -- Swiftmend + { spell = 20484, type = "ability", usable = true }, -- Rebirth + { spell = 22568, type = "ability", requiresTarget = true, usable = true }, -- Ferocious Bite + { spell = 22570, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Maim + { spell = 22812, type = "ability", buff = true }, -- Barkskin + { spell = 22842, type = "ability", buff = true, usable = true }, -- Frenzied Regeneration + { spell = 29166, type = "ability", buff = true, requiresTarget = true }, -- Innervate + { spell = 33745, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Lacerate + { spell = 33786, type = "ability", requiresTarget = true }, -- Cyclone + { spell = 33831, type = "ability", talent = 11 }, -- Force of Nature + { spell = 33876, type = "ability", debuff = true, requiresTarget = true, usable = true }, -- Mangle + { spell = 33878, type = "ability", overlayGlow = true, requiresTarget = true }, -- Mangle + { spell = 33891, type = "ability", buff = true, talent = 67 }, -- Tree of Life + { spell = 48438, type = "ability", buff = true, overlayGlow = true, requiresTarget = true, talent = 69 }, -- Wild Growth + { spell = 48505, type = "ability", buff = true, talent = 13 }, -- Starfall + { spell = 49376, type = "ability", requiresTarget = true, usable = true, talent = 31 }, -- Feral Charge + { spell = 49377, type = "ability", requiresTarget = true, talent = 31 }, -- Feral Charge + { spell = 50334, type = "ability", buff = true, talent = 43 }, -- Berserk + { spell = 50516, type = "ability", talent = 17 }, -- Typhoon + { spell = 77758, type = "ability", usable = true }, -- Thrash + { spell = 77761, type = "ability", buff = true, usable = true }, -- Stampeding Roar + { spell = 77764, type = "ability", usable = true }, -- Stampeding Roar + { spell = 78674, type = "ability", requiresTarget = true }, -- Starsurge + { spell = 78675, type = "ability", requiresTarget = true, talent = 4 }, -- Solar Beam + { spell = 80313, type = "ability", requiresTarget = true, usable = true, talent = 37 }, -- Pulverize + { spell = 80964, type = "ability", requiresTarget = true, usable = true }, -- Skull Bash + { spell = 80965, type = "ability", requiresTarget = true, usable = true }, -- Skull Bash + { spell = 88751, type = "ability" }, -- Wild Mushroom: Detonate + }, + icon = 132134 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources and Shapeshift Form"], + args = { + }, + icon = manaIcon, + }, + }, +} + +templates.class.DEATHKNIGHT = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 3714, type = "buff", unit = "player" }, -- Path of Frost + { spell = 42650, type = "buff", unit = "player" }, -- Army of the Dead + { spell = 45529, type = "buff", unit = "player" }, -- Blood Tap + { spell = 48263, type = "buff", unit = "player" }, -- Blood Presence + { spell = 48265, type = "buff", unit = "player" }, -- Unholy Presence + { spell = 48266, type = "buff", unit = "player" }, -- Frost Presence + { spell = 48707, type = "buff", unit = "player" }, -- Anti-Magic Shell + { spell = 48792, type = "buff", unit = "player" }, -- Icebound Fortitude + { spell = 49016, type = "buff", unit = "player", talent = 71 }, -- Unholy Frenzy + { spell = 49222, type = "buff", unit = "player", talent = 14 }, -- Bone Shield + { spell = 50461, type = "buff", unit = "player", talent = 68 }, -- Anti-Magic Zone + { spell = 51124, type = "buff", unit = "player", talent = 41 }, -- Killing Machine + { spell = 51271, type = "buff", unit = "player", talent = 30 }, -- Pillar of Frost + { spell = 51460, type = "buff", unit = "player", talent = 65 }, -- Runic Corruption + { spell = 51721, type = "buff", unit = "player" }, -- Dominion Over Acherus + { spell = 53138, type = "buff", unit = "player", talent = 11 }, -- Abomination's Might + { spell = 55233, type = "buff", unit = "player", talent = 10 }, -- Vampiric Blood + { spell = 55610, type = "buff", unit = "player", talent = 44 }, -- Improved Icy Talons + { spell = 57330, type = "buff", unit = "player" }, -- Horn of Winter + { spell = 59052, type = "buff", unit = "player" }, -- Freezing Fog + { spell = 81141, type = "buff", unit = "player", talent = 18 }, -- Crimson Scourge + { spell = 81340, type = "buff", unit = "player", talent = 72 }, -- Sudden Doom + { spell = 91364, type = "buff", unit = "player" }, -- Heartened + { spell = 96268, type = "buff", unit = "player", talent = 76 }, -- Death's Advance + { spell = 102740, type = "buff", unit = "player" }, -- Strength of Courage + { spell = 102742, type = "buff", unit = "player" }, -- Mastery of Nimbleness + { spell = 63560, type = "buff", unit = "pet", talent = 67 }, -- Dark Transformation + { spell = 91342, type = "buff", unit = "pet", talent = 74 }, -- Shadow Infusion + }, + icon = 237517 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 43265, type = "debuff", unit = "target" }, -- Death and Decay + { spell = 45524, type = "debuff", unit = "target" }, -- Chains of Ice + { spell = 47476, type = "debuff", unit = "target" }, -- Strangulate + { spell = 49203, type = "debuff", unit = "target", talent = 36 }, -- Hungering Cold + { spell = 49206, type = "debuff", unit = "target", talent = 60 }, -- Summon Gargoyle + { spell = 50435, type = "debuff", unit = "target", talent = 45 }, -- Chilblains + { spell = 50536, type = "debuff", unit = "target", talent = 59 }, -- Unholy Blight + { spell = 55078, type = "debuff", unit = "target" }, -- Blood Plague + { spell = 55095, type = "debuff", unit = "target" }, -- Frost Fever + { spell = 56222, type = "debuff", unit = "target" }, -- Dark Command + { spell = 65142, type = "debuff", unit = "target" }, -- Ebon Plague + { spell = 73975, type = "debuff", unit = "target" }, -- Necrotic Strike + { spell = 77606, type = "debuff", unit = "target" }, -- Dark Simulacrum + { spell = 81130, type = "debuff", unit = "target", talent = 17 }, -- Scarlet Fever + { spell = 81325, type = "debuff", unit = "target", talent = 31 }, -- Brittle Bones + { spell = 91800, type = "debuff", unit = "target" }, -- Gnaw + }, + icon = 237514 + }, + [3] = { + title = L["Cooldowns"], + args = { + { spell = 3714, type = "ability", buff = true }, -- Path of Frost + { spell = 42650, type = "ability", buff = true }, -- Army of the Dead + { spell = 43265, type = "ability", debuff = true }, -- Death and Decay + { spell = 45462, type = "ability", requiresTarget = true }, -- Plague Strike + { spell = 45477, type = "ability", overlayGlow = true, requiresTarget = true }, -- Icy Touch + { spell = 45524, type = "ability", debuff = true, requiresTarget = true }, -- Chains of Ice + { spell = 45529, type = "ability", buff = true }, -- Blood Tap + { spell = 45902, type = "ability", requiresTarget = true }, -- Blood Strike + { spell = 46584, type = "ability", totem = true }, -- Raise Dead + { spell = 47468, type = "ability" }, -- Claw + { spell = 47476, type = "ability", debuff = true, requiresTarget = true }, -- Strangulate + { spell = 47481, type = "ability" }, -- Gnaw + { spell = 47482, type = "ability" }, -- Leap + { spell = 47484, type = "ability" }, -- Huddle + { spell = 47528, type = "ability", requiresTarget = true }, -- Mind Freeze + { spell = 47541, type = "ability", overlayGlow = true, requiresTarget = true }, -- Death Coil + { spell = 47568, type = "ability" }, -- Empower Rune Weapon + { spell = 48707, type = "ability", buff = true }, -- Anti-Magic Shell + { spell = 48721, type = "ability", overlayGlow = true }, -- Blood Boil + { spell = 48743, type = "ability" }, -- Death Pact + { spell = 48792, type = "ability", buff = true }, -- Icebound Fortitude + { spell = 48982, type = "ability", talent = 4 }, -- Rune Tap + { spell = 49016, type = "ability", buff = true, talent = 71 }, -- Unholy Frenzy + { spell = 49020, type = "ability", overlayGlow = true, requiresTarget = true }, -- Obliterate + { spell = 49028, type = "ability", requiresTarget = true, talent = 8 }, -- Dancing Rune Weapon + { spell = 49143, type = "ability", overlayGlow = true, requiresTarget = true }, -- Frost Strike + { spell = 49184, type = "ability", overlayGlow = true, requiresTarget = true, talent = 33 }, -- Howling Blast + { spell = 49203, type = "ability", debuff = true, talent = 36 }, -- Hungering Cold + { spell = 49206, type = "ability", debuff = true, talent = 60 }, -- Summon Gargoyle + { spell = 49222, type = "ability", buff = true, talent = 14 }, -- Bone Shield + { spell = 49576, type = "ability", requiresTarget = true }, -- Death Grip + { spell = 49998, type = "ability", requiresTarget = true }, -- Death Strike + { spell = 50842, type = "ability", requiresTarget = true }, -- Pestilence + { spell = 50977, type = "ability", usable = true }, -- Death Gate + { spell = 51052, type = "ability", talent = 68 }, -- Anti-Magic Zone + { spell = 51271, type = "ability", buff = true, talent = 30 }, -- Pillar of Frost + { spell = 55050, type = "ability", requiresTarget = true }, -- Heart Strike + { spell = 55090, type = "ability", requiresTarget = true }, -- Scourge Strike + { spell = 55233, type = "ability", buff = true, talent = 10 }, -- Vampiric Blood + { spell = 56222, type = "ability", debuff = true, requiresTarget = true }, -- Dark Command + { spell = 56815, type = "ability", requiresTarget = true, usable = true }, -- Rune Strike + { spell = 57330, type = "ability", buff = true }, -- Horn of Winter + { spell = 61999, type = "ability" }, -- Raise Ally + { spell = 63560, type = "ability", buff = true, unit = 'pet', overlayGlow = true, usable = true, talent = 67 }, -- Dark Transformation + { spell = 73975, type = "ability", debuff = true, requiresTarget = true }, -- Necrotic Strike + { spell = 77575, type = "ability", requiresTarget = true }, -- Outbreak + { spell = 77606, type = "ability", debuff = true, requiresTarget = true }, -- Dark Simulacrum + { spell = 85948, type = "ability", requiresTarget = true }, -- Festering Strike + }, + icon = 136120 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = "Interface\\PlayerFrame\\UI-PlayerFrame-Deathknight-SingleRune", + }, + } +} + +-- General Section +tinsert(templates.general.args, { + title = L["Health"], + icon = "Interface\\Icons\\inv_potion_54", + type = "health" +}); +tinsert(templates.general.args, { + title = L["Cast"], + icon = 136209, + type = "cast" +}); +tinsert(templates.general.args, { + title = L["Always Active"], + icon = "Interface\\Addons\\WeakAuras\\PowerAurasMedia\\Auras\\Aura78", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Conditions"), + event = "Conditions", + use_alwaystrue = true}}} +}); + +tinsert(templates.general.args, { + title = L["Pet alive"], + icon = "Interface\\Icons\\ability_hunter_pet_raptor", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Conditions"), + event = "Conditions", + use_HasPet = true}}} +}); + +tinsert(templates.general.args, { + title = L["Pet Behavior"], + icon = "Interface\\Icons\\ability_defend.blp", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Pet Behavior"), + event = "Pet Behavior", + use_behavior = true, + behavior = "assist"}}} +}); + +tinsert(templates.general.args, { + spell = 2825, type = "buff", unit = "player", + forceOwnOnly = true, + ownOnly = nil, + overideTitle = L["Bloodlust/Heroism"], + spellIds = {2825, 32182}} +); + +-- Meta template for Power triggers +local function createSimplePowerTemplate(powertype) + local power = { + title = powerTypes[powertype].name, + icon = powerTypes[powertype].icon, + type = "power", + powertype = powertype, + } + return power; +end + +------------------------------- +-- Hardcoded trigger templates +------------------------------- + +-- Warrior +tinsert(templates.class.WARRIOR[1][8].args, { + title = L["Stance"], + icon = 132349, + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura"}}} +}) +for j, id in ipairs({2457, 71, 2458}) do + local title, _, icon = GetSpellInfo(id) + if title then + tinsert(templates.class.WARRIOR[1][8].args, { + title = title, + icon = icon, + triggers = { + [1] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura", + use_form = true, + form = { single = j } + } + } + } + }); + end +end + +tinsert(templates.class.WARRIOR[1][8].args, createSimplePowerTemplate(1)); +tinsert(templates.class.PALADIN[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.HUNTER[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.ROGUE[1][8].args, createSimplePowerTemplate(3)); +tinsert(templates.class.ROGUE[1][8].args, createSimplePowerTemplate(4)); +tinsert(templates.class.PRIEST[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.SHAMAN[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.MAGE[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.WARLOCK[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(1)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(3)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(4)); + +-- Shapeshift Form +tinsert(templates.class.DRUID[1][8].args, { + title = L["Shapeshift Form"], + icon = 132276, + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura"}}} +}); +for j, id in ipairs({5487, 768, 783, 114282, 1394966}) do + local title, _, icon = GetSpellInfo(id) + if title then + tinsert(templates.class.DRUID[1][8].args, { + title = title, + icon = icon, + triggers = { + [1] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura", + use_form = true, + form = { single = j } + } + } + } + }); + end +end + + +------------------------------ +-- Hardcoded race templates +------------------------------- + +-- Will of Survive +tinsert(templates.race.Human, { spell = 59752, type = "ability" }); +-- Stoneform +tinsert(templates.race.Dwarf, { spell = 20594, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Dwarf, { spell = 20594, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Shadow Meld +tinsert(templates.race.NightElf, { spell = 58984, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.NightElf, { spell = 58984, type = "buff", titleSuffix = L["buff"]}); +-- Escape Artist +tinsert(templates.race.Gnome, { spell = 20589, type = "ability" }); + +-- Blood Fury +tinsert(templates.race.Orc, { spell = 20572, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Orc, { spell = 20572, type = "buff", unit = "player", titleSuffix = L["buff"]}); +--Cannibalize +tinsert(templates.race.Scourge, { spell = 20577, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Scourge, { spell = 20578, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Will of the Forsaken +tinsert(templates.race.Scourge, { spell = 7744, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Scourge, { spell = 7744, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- War Stomp +tinsert(templates.race.Tauren, { spell = 20549, type = "ability", debuff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Tauren, { spell = 20549, type = "debuff", titleSuffix = L["debuff"]}); +--Beserking +tinsert(templates.race.Troll, { spell = 26297, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Troll, { spell = 26297, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Arcane Torrent +tinsert(templates.race.BloodElf, { spell = 28730, type = "ability", debuff = true, titleSuffix = L["cooldown"]}); +-- Gift of the Naaru +tinsert(templates.race.Draenei, { spell = 28880, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Draenei, { spell = 28880, type = "buff", unit = "player", titleSuffix = L["buff"]}); + +------------------------------ +-- Helper code for options +------------------------------- + +-- Enrich items from spell, set title +local function handleItem(item) + local waitingForItemInfo = false; + if (item.spell) then + local name, icon, _; + if (item.type == "item") then + name, _, _, _, _, _, _, _, _, icon = C_Item.GetItemInfo(item.spell); + if (name == nil) then + name = L["Unknown Item"] .. " " .. tostring(item.spell); + waitingForItemInfo = true; + end + else + name, _, icon = GetSpellInfo(item.spell); + if (name == nil) then + name = L["Unknown Spell"] .. " " .. tostring(item.spell); + end + end + if (icon and not item.icon) then + item.icon = icon; + end + + item.title = item.overideTitle or name or ""; + if (item.titleSuffix) then + item.title = item.title .. " " .. item.titleSuffix; + end + if (item.titlePrefix) then + item.title = item.titlePrefix .. item.title; + end + if (item.titleItemPrefix) then + local prefix = C_Item.GetItemInfo(item.titleItemPrefix); + if (prefix) then + item.title = prefix .. "-" .. item.title; + else + waitingForItemInfo = true; + end + end + if (item.type ~= "item") then + local spell = Spell:CreateFromSpellID(item.spell); + if (not spell:IsSpellEmpty()) then + spell:ContinueOnSpellLoad(function() + item.description = GetSpellDescription(spell:GetSpellID()); + end); + end + item.description = GetSpellDescription(item.spell); + end + end + if (item.talent) then + item.load = item.load or {}; + if type(item.talent) == "table" then + item.load.talent = { multi = {} }; + for _,v in pairs(item.talent) do + item.load.talent.multi[v] = true; + end + item.load.use_talent = false; + else + item.load.talent = { + single = item.talent, + multi = {}; + }; + item.load.use_talent = true; + end + end + if (item.pvptalent) then + item.load = item.load or {}; + item.load.use_pvptalent = true; + item.load.pvptalent = { + single = item.pvptalent, + multi = {}; + } + end + if (item.covenant) then + item.load = item.load or {} + item.load.use_covenant = true + item.load.covenant = { + single = item.covenant, + multi = {} + } + end + if (item.bonusItemId) then + item.load = item.load or {} + item.load.use_item_bonusid_equipped = true + item.load.item_bonusid_equipped = tostring(item.bonusItemId) + end + -- form field is lazy handled by a usable condition + if item.form then + item.usable = true + end + return waitingForItemInfo; +end + +local function addLoadCondition(item, loadCondition) + -- No need to deep copy here, templates are read-only + item.load = item.load or {}; + for k, v in pairs(loadCondition) do + item.load[k] = v; + end +end + +local delayedEnrichDatabase = false; +local itemInfoReceived = CreateFrame("Frame") + +local enrichTries = 0; +local function enrichDatabase() + if (enrichTries > 3) then + return; + end + enrichTries = enrichTries + 1; + + local waitingForItemInfo = false; + for className, class in pairs(templates.class) do + for specIndex, spec in pairs(class) do + for _, section in pairs(spec) do + local loadCondition = { + use_class = true, class = { single = className, multi = {} }, + }; + for itemIndex, item in pairs(section.args or {}) do + local handle = handleItem(item) + if(handle) then + waitingForItemInfo = true; + end + addLoadCondition(item, loadCondition); + end + end + end + end + + for raceName, race in pairs(templates.race) do + local loadCondition = { + use_race = true, race = { single = raceName, multi = {} } + }; + for _, item in pairs(race) do + local handle = handleItem(item) + if handle then + waitingForItemInfo = true; + end + if handle ~= nil then + addLoadCondition(item, loadCondition); + end + end + end + + for _, item in pairs(templates.general.args) do + if (handleItem(item)) then + waitingForItemInfo = true; + end + end + + if (waitingForItemInfo) then + itemInfoReceived:RegisterEvent("GET_ITEM_INFO_RECEIVED"); + else + itemInfoReceived:UnregisterEvent("GET_ITEM_INFO_RECEIVED"); + end +end + + +enrichDatabase(); + +itemInfoReceived:SetScript("OnEvent", function() + if (not delayedEnrichDatabase) then + delayedEnrichDatabase = true; + C_Timer.After(2, function() + enrichDatabase(); + delayedEnrichDatabase = false; + end) + end +end); + + +TemplatePrivate.triggerTemplates = templates diff --git a/WeakAurasTemplates/WeakAurasTemplates_Cata.toc b/WeakAurasTemplates/WeakAurasTemplates_Cata.toc index 94ec3e2e45..2bb7b05cd1 100644 --- a/WeakAurasTemplates/WeakAurasTemplates_Cata.toc +++ b/WeakAurasTemplates/WeakAurasTemplates_Cata.toc @@ -13,6 +13,6 @@ locales.xml TriggerTemplates.lua -TriggerTemplatesDataWrath.lua +TriggerTemplatesDataCataclysm.lua AceGUI-Widgets\AceGUIContainer-WeakAurasTemplateGroup.lua From bdc89b3b8ab8684feca70a871933dfcb7687d9ec Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Wed, 8 May 2024 11:36:34 -0500 Subject: [PATCH 23/25] always ReAnchor() if isRestricted, not just if numVisible > 0 otherwise the group gets 'stuck' on UIParent(CENTER) if it ever collapses due to 0 active children Also, prevent all of this behavior during IsOptionsOpen, to avoid any potential edges case with the moversizer Fixes #5065 --- WeakAuras/RegionTypes/DynamicGroup.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/WeakAuras/RegionTypes/DynamicGroup.lua b/WeakAuras/RegionTypes/DynamicGroup.lua index 4c7b25ebdb..6d227f1a8a 100644 --- a/WeakAuras/RegionTypes/DynamicGroup.lua +++ b/WeakAuras/RegionTypes/DynamicGroup.lua @@ -1538,7 +1538,7 @@ local function modify(parent, region, data) Private.StartProfileAura(data.id) local numVisible, minX, maxX, maxY, minY = 0, nil, nil, nil, nil local isRestricted = region:IsAnchoringRestricted() - if isRestricted then + if isRestricted and not WeakAuras.IsOptionsOpen() then -- workaround for restricted anchor families (mostly PRD) -- if region is in a restricted anchor family, we're not allowed to get the rect of its children -- and via Blizzard's extremely finite wisdom, the personal resource display is one such restricted family @@ -1585,14 +1585,13 @@ local function modify(parent, region, data) self.background:SetPoint("TOPRIGHT", region, "BOTTOMLEFT", maxX + data.borderOffset - regionLeft, maxY + data.borderOffset - regionBottom) end end - if isRestricted then - self:ReAnchor() - end else self:Hide() end if WeakAuras.IsOptionsOpen() then Private.OptionsFrame().moversizer:ReAnchor() + elseif isRestricted then + self:ReAnchor() end Private.StopProfileSystem("dynamicgroup") Private.StopProfileAura(data.id) From accbb96abb457b834c34d1af69e9ec7807f4028c Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Fri, 10 May 2024 09:59:47 -0500 Subject: [PATCH 24/25] explicitly checkout head ref --- .github/workflows/pull_request.yml | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 035dd3c69b..91a12d2247 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -5,19 +5,27 @@ on: types: [opened, reopened, synchronize, labeled] jobs: - build: - + permission_check: runs-on: ubuntu-latest - steps: - uses: actions-cool/check-user-permission@v2 id: check-permission with: require: write username: ${{ github.triggering_actor }} + outputs: + require-result: ${{ steps.check-permission.outputs.require-result }} + + build: + runs-on: ubuntu-latest + needs: [permission_check] + outputs: + artifact-id: ${{ steps.upload-artifact.outputs.artifact-id}} + steps: - uses: actions/checkout@v4 with: fetch-depth: 0 + ref: ${{ github.event.pull_request.head.sha }} - name: Install and run Luacheck uses: nebularg/actions-luacheck@v1 @@ -40,21 +48,25 @@ jobs: args: -d -z - uses: actions/upload-artifact@v4 - if: ${{ steps.check-permission.outputs.require-result == 'true'}} + if: ${{ needs.permission_check.outputs.require-result == 'true' && contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview')}} id: upload-artifact with: name: WeakAuras-PR#${{ github.event.number }}-${{ github.sha }} path: .release/ + advertise: + runs-on: ubuntu-latest + needs: [permission_check, build] + if: ${{ needs.permission_check.outputs.require-result == 'true' && needs.build.result == 'success' && contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview')}} + steps: - uses: exercism/pr-commenter-action@v1.5.1 - if: ${{ steps.check-permission.outputs.require-result == 'true' && contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview') }} with: github-token: ${{ github.token }} config-file: ".github/pr-commenter.yml" template-variables: | { "repository": "${{ github.repository }}", - "build_id": "${{ steps.upload-artifact.outputs.artifact-id }}", + "build_id": "${{ needs.build.outputs.artifact-id }}", "run_id": "${{ github.run_id }}" } From 3ae9479b77cf56b8870a74081cbf51019230a929 Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Sun, 12 May 2024 17:55:58 -0500 Subject: [PATCH 25/25] add build date to pr comment & edit isntead of recreate --- .github/pr-commenter.yml | 7 +++++-- .github/workflows/pull_request.yml | 4 ++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/pr-commenter.yml b/.github/pr-commenter.yml index 306dd5c2f5..9cd6b05eb5 100644 --- a/.github/pr-commenter.yml +++ b/.github/pr-commenter.yml @@ -1,5 +1,5 @@ comment: - on-update: recreate + on-update: edit glob-options: dot: true @@ -8,5 +8,8 @@ comment: files: - '**' body: | - {{#build_id}}An experimental build of WeakAuras with the changes in this pull request is available [here](https://nightly.link/{{repository}}/actions/artifacts/{{build_id}}.zip).{{/build_id}} + {{#build_id}} + An experimental build of WeakAuras with the changes in this pull request is available [here](https://nightly.link/{{repository}}/actions/artifacts/{{build_id}}.zip). + Build Time: {{datestr}} + {{/build_id}} {{^build_id}}Experimental build was unsuccessful. See the logs for details.{{/build_id}} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 91a12d2247..401bca4c61 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -59,12 +59,16 @@ jobs: needs: [permission_check, build] if: ${{ needs.permission_check.outputs.require-result == 'true' && needs.build.result == 'success' && contains(github.event.pull_request.labels.*.name, '🆕 Feature Preview')}} steps: + - id: datestr + run: echo "datestr=${date}" >> $GITHUB_OUTPUT + - uses: exercism/pr-commenter-action@v1.5.1 with: github-token: ${{ github.token }} config-file: ".github/pr-commenter.yml" template-variables: | { + "datestr": "${{ steps.datestr.outputs.datestr }}", "repository": "${{ github.repository }}", "build_id": "${{ needs.build.outputs.artifact-id }}", "run_id": "${{ github.run_id }}"