diff --git "a/data/lua/data.json" "b/data/lua/data.json" new file mode 100644--- /dev/null +++ "b/data/lua/data.json" @@ -0,0 +1,100 @@ +{"size":8198,"ext":"lua","lang":"Lua","max_stars_count":1.0,"content":"--!A cross-platform build utility based on Lua\n--\n-- Licensed under the Apache License, Version 2.0 (the \"License\");\n-- you may not use this file except in compliance with the License.\n-- You may obtain a copy of the License at\n--\n-- http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n--\n-- Unless required by applicable law or agreed to in writing, software\n-- distributed under the License is distributed on an \"AS IS\" BASIS,\n-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-- See the License for the specific language governing permissions and\n-- limitations under the License.\n-- \n-- Copyright (C) 2015-2020, TBOOX Open Source Group.\n--\n-- @author ruki\n-- @file linker.lua\n--\n\n-- define module\nlocal linker = linker or {}\n\n-- load modules\nlocal io = require(\"base\/io\")\nlocal path = require(\"base\/path\")\nlocal utils = require(\"base\/utils\")\nlocal table = require(\"base\/table\")\nlocal string = require(\"base\/string\")\nlocal option = require(\"base\/option\")\nlocal config = require(\"project\/config\")\nlocal sandbox = require(\"sandbox\/sandbox\")\nlocal language = require(\"language\/language\")\nlocal platform = require(\"platform\/platform\")\nlocal tool = require(\"tool\/tool\")\nlocal builder = require(\"tool\/builder\")\nlocal compiler = require(\"tool\/compiler\")\n\n-- add flags from the platform \nfunction linker:_add_flags_from_platform(flags, targetkind)\n\n -- attempt to add special lanugage flags first for target kind, e.g. binary.go.gc-ldflags, static.dc-arflags\n if targetkind then\n local toolkind = self:kind()\n local toolname = self:name()\n for _, flagkind in ipairs(self:_flagkinds()) do\n local toolflags = platform.get(targetkind .. '.' .. toolname .. '.' .. toolkind .. 'flags') or platform.get(targetkind .. '.' .. toolname .. '.' .. flagkind)\n table.join2(flags, toolflags or platform.get(targetkind .. '.' .. toolkind .. 'flags') or platform.get(targetkind .. '.' .. flagkind))\n end\n end\nend\n\n-- add flags from the linker \nfunction linker:_add_flags_from_linker(flags)\n\n -- add flags\n local toolkind = self:kind()\n for _, flagkind in ipairs(self:_flagkinds()) do\n\n -- attempt to add special lanugage flags first, e.g. gc-ldflags, dc-arflags\n table.join2(flags, self:get(toolkind .. 'flags') or self:get(flagkind))\n end\nend\n\n-- load tool\nfunction linker._load_tool(targetkind, sourcekinds, target)\n\n -- get the linker infos\n local linkerinfos, errors = language.linkerinfos_of(targetkind, sourcekinds)\n if not linkerinfos then\n return nil, errors\n end\n\n -- select the linker\n local linkerinfo = nil\n local linkertool = nil\n local firsterror = nil\n for _, _linkerinfo in ipairs(linkerinfos) do\n\n -- get program from target\n local program = nil\n if target then\n program = target:get(\"toolchain.\" .. _linkerinfo.linkerkind)\n if not program then\n local tools = target:get(\"tools\") -- TODO: deprecated\n if tools then\n program = tools[_linkerinfo.linkerkind]\n end\n end\n end\n\n -- load the linker tool from the linker kind (with cache)\n linkertool, errors = tool.load(_linkerinfo.linkerkind, program)\n if linkertool then \n linkerinfo = _linkerinfo\n linkerinfo.program = program\n break\n else\n firsterror = firsterror or errors\n end\n end\n if not linkerinfo then\n return nil, firsterror\n end\n\n -- done\n return linkertool, linkerinfo\nend\n\n-- load the linker from the given target kind\nfunction linker.load(targetkind, sourcekinds, target)\n\n -- check\n assert(sourcekinds)\n\n -- wrap sourcekinds first\n sourcekinds = table.wrap(sourcekinds)\n if #sourcekinds == 0 then\n -- we need detect the sourcekinds of all deps if the current target has not any source files\n for _, dep in ipairs(target:orderdeps()) do\n table.join2(sourcekinds, dep:sourcekinds())\n end\n if #sourcekinds > 0 then\n sourcekinds = table.unique(sourcekinds)\n end\n end\n\n -- load linker tool first (with cache)\n local linkertool, linkerinfo_or_errors = linker._load_tool(targetkind, sourcekinds, target)\n if not linkertool then\n return nil, linkerinfo_or_errors\n end\n\n -- get linker info\n local linkerinfo = linkerinfo_or_errors\n\n -- init cache key\n local cachekey = targetkind .. \"_\" .. linkerinfo.linkerkind .. (linkerinfo.program or \"\") .. (config.get(\"arch\") or os.arch())\n\n -- get it directly from cache dirst\n builder._INSTANCES = builder._INSTANCES or {}\n if builder._INSTANCES[cachekey] then\n return builder._INSTANCES[cachekey]\n end\n\n -- new instance\n local instance = table.inherit(linker, builder)\n\n -- save linker tool\n instance._TOOL = linkertool\n \n -- load the name flags of archiver \n local nameflags = {}\n local nameflags_exists = {}\n for _, sourcekind in ipairs(sourcekinds) do\n\n -- load language \n local result, errors = language.load_sk(sourcekind)\n if not result then \n return nil, errors\n end\n\n -- merge name flags\n for _, flaginfo in ipairs(table.wrap(result:nameflags()[targetkind])) do\n local key = flaginfo[1] .. flaginfo[2]\n if not nameflags_exists[key] then\n table.insert(nameflags, flaginfo)\n nameflags_exists[key] = flaginfo\n end\n end\n end\n instance._NAMEFLAGS = nameflags\n\n -- init target kind\n instance._TARGETKIND = targetkind\n\n -- init flag kinds\n instance._FLAGKINDS = {linkerinfo.linkerflag}\n\n -- save this instance\n builder._INSTANCES[cachekey] = instance\n\n -- add platform flags to the linker tool\n local toolkind = linkertool:kind()\n local toolname = linkertool:name()\n for _, flagkind in ipairs(instance:_flagkinds()) do\n\n -- add special lanugage flags first, e.g. go.gc-ldflags or gcc.ldflags or gc-ldflags or ldflags\n linkertool:add(toolkind .. 'flags', platform.get(toolname .. '.' .. toolkind .. 'flags') or platform.get(toolkind .. 'flags'))\n linkertool:add(flagkind, platform.get(toolname .. '.' .. flagkind) or platform.get(flagkind))\n end\n\n -- ok\n return instance\nend\n\n-- link the target file\nfunction linker:link(objectfiles, targetfile, opt)\n opt = opt or {}\n return sandbox.load(self:_tool().link, self:_tool(), table.wrap(objectfiles), self:_targetkind(), targetfile, opt.linkflags or self:linkflags(opt), opt)\nend\n\n-- get the link arguments list\nfunction linker:linkargv(objectfiles, targetfile, opt)\n return self:_tool():linkargv(table.wrap(objectfiles), self:_targetkind(), targetfile, opt.linkflags or self:linkflags(opt), opt)\nend\n\n-- get the link command\nfunction linker:linkcmd(objectfiles, targetfile, opt)\n return os.args(table.join(self:linkargv(objectfiles, targetfile, opt)))\nend\n\n-- get the link flags\n--\n-- @param opt the argument options (contain all the linker attributes of target), \n-- e.g. {target = ..., targetkind = \"static\", configs = {ldflags = \"\", links = \"\", linkdirs = \"\", ...}}\n--\nfunction linker:linkflags(opt)\n\n -- init options\n opt = opt or {}\n\n -- get target\n local target = opt.target\n\n -- get target kind\n local targetkind = opt.targetkind\n if not targetkind and target and target.targetkind then\n targetkind = target:targetkind()\n end\n\n -- add flags from the configure \n local flags = {}\n self:_add_flags_from_config(flags)\n\n -- add flags for the target\n self:_add_flags_from_target(flags, target)\n\n -- add flags for the argument\n local configs = opt.configs or opt.config\n if configs then\n self:_add_flags_from_argument(flags, target, configs)\n end\n\n -- add flags from the platform \n self:_add_flags_from_platform(flags, targetkind)\n\n -- add flags from the linker \n self:_add_flags_from_linker(flags)\n\n -- preprocess flags\n return self:_preprocess_flags(flags)\nend\n\n-- return module\nreturn linker\n","avg_line_length":31.8988326848,"max_line_length":169,"alphanum_fraction":0.6599170529} +{"size":109,"ext":"lua","lang":"Lua","max_stars_count":6.0,"content":"-- execute current buffer\nvim.keymap.set(\"n\", \"\", \"source %\", { silent = true, buffer = true })\n","avg_line_length":36.3333333333,"max_line_length":82,"alphanum_fraction":0.6055045872} +{"size":2975,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"--[[\n-- Map class\n-- The map is in charge of creaating the scenario where the game is played - it spawns a bunch of rocks, walls, floors and guardians, and a player.\n-- Map:reset() restarts the map. It can be done when the player dies, or manually.\n-- Map:update() updates the visible entities on a given rectangle (by default, what's visible on the screen). See main.lua to see how to update\n-- all entities instead.\n--]]\nlocal class = require 'lib.middleclass'\nlocal bump = require 'lib.bump'\nlocal bump_debug = require 'lib.bump_debug'\n\nlocal media = require 'media'\n\nlocal Player = require 'entities.player'\nlocal Block = require 'entities.block'\nlocal Guardian = require 'entities.guardian'\n\nlocal random = math.random\n\nlocal sortByUpdateOrder = function(a,b)\n return a:getUpdateOrder() < b:getUpdateOrder()\nend\n\nlocal sortByCreatedAt = function(a,b)\n return a.created_at < b.created_at\nend\n\nlocal Map = class('Map')\n\nfunction Map:initialize(width, height, camera)\n self.width = width\n self.height = height\n self.camera = camera\n\n self:reset()\nend\n\nfunction Map:reset()\n local music = media.music\n music:rewind()\n music:play()\n\n local width, height = self.width, self.height\n self.world = bump.newWorld()\n self.player = Player:new(self, self.world, 60, 60)\n\n -- walls & ceiling\n Block:new(self.world, 0, 0, width, 32, true)\n Block:new(self.world, 0, 32, 32, height-64, true)\n Block:new(self.world, width-32, 32, 32, height-64, true)\n\n -- tiled floor\n local tilesOnFloor = 40\n for i=0,tilesOnFloor - 1 do\n Block:new(self.world, i*width\/tilesOnFloor, height-32, width\/tilesOnFloor, 32, true)\n end\n\n -- groups of blocks\n local l,t,w,h, area\n for i=1,60 do\n w = random(100, 400)\n h = random(100, 400)\n area = w * h\n l = random(100, width-w-200)\n t = random(100, height-h-100)\n\n\n for i=1, math.floor(area\/7000) do\n Block:new( self.world,\n random(l, l+w),\n random(t, t+h),\n random(32, 100),\n random(32, 100),\n random() > 0.75 )\n end\n end\n\n for i=1,10 do\n Guardian:new( self.world,\n self.player,\n self.camera,\n random(100, width-200),\n random(100, height-150) )\n end\n\nend\n\n\nfunction Map:update(dt, l,t,w,h)\n l,t,w,h = l or 0, t or 0, w or self.width, h or self.height\n local visibleThings, len = self.world:queryRect(l,t,w,h)\n\n table.sort(visibleThings, sortByUpdateOrder)\n\n for i=1, len do\n visibleThings[i]:update(dt)\n end\nend\n\nfunction Map:draw(drawDebug, l,t,w,h)\n if drawDebug then bump_debug.draw(self.world, l,t,w,h) end\n\n local visibleThings, len = self.world:queryRect(l,t,w,h)\n\n table.sort(visibleThings, sortByCreatedAt)\n\n for i=1, len do\n visibleThings[i]:draw(drawDebug)\n end\nend\n\nfunction Map:countItems()\n return self.world:countItems()\nend\n\n\nreturn Map\n","avg_line_length":25.2118644068,"max_line_length":147,"alphanum_fraction":0.6352941176} +{"size":853,"ext":"lua","lang":"Lua","max_stars_count":18.0,"content":"coa_aclo_elite_slicer_human_f = Creature:new {\n\tcustomName = \"coa_aclo_elite_slicer_human_f\",\n\t--objectName = \"\",\n\t--randomNameType = NAME_GENERIC_TAG,\n\tsocialGroup = \"townsperson\",\n\tfaction = \"\",\n\tlevel = 100,\n\tchanceHit = 1,\n\tdamageMin = 645,\n\tdamageMax = 1000,\n\tbaseXp = 9429,\n\tbaseHAM = 24000,\n\tbaseHAMmax = 30000,\n\tarmor = 0,\n\tresists = {0,0,0,0,0,0,0,0,-1},\n\tmeatType = \"\",\n\tmeatAmount = 0,\n\thideType = \"\",\n\thideAmount = 0,\n\tboneType = \"\",\n\tboneAmount = 0,\n\tmilk = 0,\n\ttamingChance = 0.0,\n\tferocity = 0,\n\tpvpBitmask = NONE,\n\tcreatureBitmask = NONE,\n\toptionsBitmask = AIENABLED,\n\tdiet = HERBIVORE,\n\n\ttemplates = {\"object\/mobile\/coa_aclo_elite_slicer_human_f.iff\"},\n\tlootGroups = {},\n\tweapons = {},\n\tconversationTemplate = \"\",\n\tattacks = {\n\t}\n}\n\nCreatureTemplates:addCreatureTemplate(coa_aclo_elite_slicer_human_f, \"coa_aclo_elite_slicer_human_f\")\n\n","avg_line_length":21.325,"max_line_length":101,"alphanum_fraction":0.6975381008} +{"size":38205,"ext":"lua","lang":"Lua","max_stars_count":18.0,"content":"--Copyright (C) 2009 \n\n--This File is part of Core3.\n\n--This program is free software; you can redistribute\n--it and\/or modify it under the terms of the GNU Lesser\n--General Public License as published by the Free Software\n--Foundation; either version 2 of the License,\n--or (at your option) any later version.\n\n--This program is distributed in the hope that it will be useful,\n--but WITHOUT ANY WARRANTY; without even the implied warranty of\n--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n--See the GNU Lesser General Public License for\n--more details.\n\n--You should have received a copy of the GNU Lesser General\n--Public License along with this program; if not, write to\n--the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\n--Linking Engine3 statically or dynamically with other modules\n--is making a combined work based on Engine3.\n--Thus, the terms and conditions of the GNU Lesser General Public License\n--cover the whole combination.\n\n--In addition, as a special exception, the copyright holders of Engine3\n--give you permission to combine Engine3 program with free software\n--programs or libraries that are released under the GNU LGPL and with\n--code included in the standard release of Core3 under the GNU LGPL\n--license (or modified versions of such code, with unchanged license).\n--You may copy and distribute such a system following the terms of the\n--GNU LGPL for Engine3 and the licenses of the other code concerned,\n--provided that you include the source code of that other code when\n--and as the GNU LGPL requires distribution of source code.\n\n--Note that people who make modified versions of Engine3 are not obligated\n--to grant this special exception for their modified versions;\n--it is their choice whether to do so. The GNU Lesser General Public License\n--gives permission to release a modified version without this exception;\n--this exception also makes it possible to release a modified version\n--which carries forward this exception.\n\n\nobject_tangible_wearables_belt_shared_aakuan_belt = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_aakuan_belt.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s05_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:aakuan_belt\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:aakuan_belt\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:aakuan_belt\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 1699237411,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_aakuan_belt, \"object\/tangible\/wearables\/belt\/shared_aakuan_belt.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s01 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s01.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s01_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s01\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s01\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s01\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 2489884324,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s01, \"object\/tangible\/wearables\/belt\/shared_belt_s01.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s02 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s02.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s02_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s02\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s02\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s02\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 1333737011,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s02, \"object\/tangible\/wearables\/belt\/shared_belt_s02.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s03 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s03.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s03_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s03\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s03\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s03\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 108155326,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s03, \"object\/tangible\/wearables\/belt\/shared_belt_s03.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s04 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s04.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s04_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s04\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s04\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s04\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 4254169770,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s04, \"object\/tangible\/wearables\/belt\/shared_belt_s04.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s05 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s05.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s05_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s05\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s05\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s05\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 3030129959,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s05, \"object\/tangible\/wearables\/belt\/shared_belt_s05.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s05_quest = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s05_quest.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s05_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s05_quest\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s05\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s05_quest\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 3225289633,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\", \"object\/tangible\/wearables\/belt\/shared_belt_s05.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s05_quest, \"object\/tangible\/wearables\/belt\/shared_belt_s05_quest.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s07 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s07.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s07_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s07\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s07\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s07\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 646369853,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s07, \"object\/tangible\/wearables\/belt\/shared_belt_s07.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s09 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s09.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s09_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s09\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s09\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s09\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 3582040482,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s09, \"object\/tangible\/wearables\/belt\/shared_belt_s09.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s11 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s11.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s11_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s11\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s11\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s11\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 2403374044,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s11, \"object\/tangible\/wearables\/belt\/shared_belt_s11.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s12 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s12.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s12_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s12\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s12\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s12\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 1415002955,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s12, \"object\/tangible\/wearables\/belt\/shared_belt_s12.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s13 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s13.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s13_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s13\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s13\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s13\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 492461254,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s13, \"object\/tangible\/wearables\/belt\/shared_belt_s13.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s14 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s14.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s14_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s14\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s14\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s14\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 3870914514,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s14, \"object\/tangible\/wearables\/belt\/shared_belt_s14.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s15 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s15.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s15_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s15\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s15\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s15\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 2947813471,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s15, \"object\/tangible\/wearables\/belt\/shared_belt_s15.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s16 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s16.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s16_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s16\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s16\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s16\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 1956886728,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s16, \"object\/tangible\/wearables\/belt\/shared_belt_s16.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s17 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s17.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s17_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s17\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s17\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s17\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 1034870597,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s17, \"object\/tangible\/wearables\/belt\/shared_belt_s17.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s18 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s18.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s18_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s18\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s18\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s18\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 2275734359,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s18, \"object\/tangible\/wearables\/belt\/shared_belt_s18.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s19 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s19.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s19_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s19\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s19\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s19\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 3467220186,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s19, \"object\/tangible\/wearables\/belt\/shared_belt_s19.iff\")\n\nobject_tangible_wearables_belt_shared_belt_s20 = SharedTangibleObjectTemplate:new {\n\tclientTemplateFileName = \"object\/tangible\/wearables\/belt\/shared_belt_s20.iff\"\n\t--Data below here is deprecated and loaded from the tres, keeping for easy lookups\n--[[\n\tappearanceFilename = \"appearance\/belt_s20_f.sat\",\n\tarrangementDescriptorFilename = \"abstract\/slot\/arrangement\/wearables\/belt.iff\",\n\n\tcertificationsRequired = {},\n\tclearFloraRadius = 0,\n\tclientDataFile = \"\",\n\tclientGameObjectType = 16777218,\n\tcollisionActionBlockFlags = 0,\n\tcollisionActionFlags = 51,\n\tcollisionActionPassFlags = 1,\n\tcollisionMaterialBlockFlags = 0,\n\tcollisionMaterialFlags = 1,\n\tcollisionMaterialPassFlags = 0,\n\tcontainerType = 0,\n\tcontainerVolumeLimit = 1,\n\tcustomizationVariableMapping = {},\n\n\tdetailedDescription = \"@wearables_detail:belt_s20\",\n\n\tgameObjectType = 16777218,\n\n\tlocationReservationRadius = 0,\n\tlookAtText = \"@wearables_lookat:belt_s20\",\n\n\tnoBuildRadius = 0,\n\n\tobjectName = \"@wearables_name:belt_s20\",\n\tonlyVisibleInTools = 0,\n\n\tpaletteColorCustomizationVariables = {},\n\tportalLayoutFilename = \"\",\n\n\trangedIntCustomizationVariables = {},\n\n\tscale = 1,\n\tscaleThresholdBeforeExtentTest = 0.5,\n\tsendToClient = 1,\n\tslotDescriptorFilename = \"abstract\/slot\/descriptor\/tangible.iff\",\n\tsnapToTerrain = 1,\n\tsocketDestinations = {},\n\tstructureFootprintFileName = \"\",\n\tsurfaceType = 0,\n\n\ttargetable = 1,\n\ttotalCellNumber = 0,\n\n\tuseStructureFootprintOutline = 0,\n\n\tclientObjectCRC = 3946177497,\n\tderivedFromTemplates = {\"object\/object\/base\/shared_base_object.iff\", \"object\/tangible\/base\/shared_tangible_base.iff\", \"object\/tangible\/base\/shared_tangible_craftable.iff\", \"object\/tangible\/wearables\/base\/shared_wearables_base.iff\", \"object\/tangible\/wearables\/base\/shared_base_belt.iff\"}\n]]\n}\n\nObjectTemplates:addClientTemplate(object_tangible_wearables_belt_shared_belt_s20, \"object\/tangible\/wearables\/belt\/shared_belt_s20.iff\")\n","avg_line_length":32.8221649485,"max_line_length":341,"alphanum_fraction":0.7948697814} +{"size":6172,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"--!A cross-platform build utility based on Lua\n--\n-- Licensed under the Apache License, Version 2.0 (the \"License\");\n-- you may not use this file except in compliance with the License.\n-- You may obtain a copy of the License at\n--\n-- http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n--\n-- Unless required by applicable law or agreed to in writing, software\n-- distributed under the License is distributed on an \"AS IS\" BASIS,\n-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-- See the License for the specific language governing permissions and\n-- limitations under the License.\n-- \n-- Copyright (C) 2015-2020, TBOOX Open Source Group.\n--\n-- @author ruki\n-- @file codesign.lua\n--\n\n-- imports\nimport(\"lib.detect.find_tool\")\n\n-- get mobile provision name\nfunction _get_mobile_provision_name(provision)\n local p = provision:find(\"Name<\/key>\", 1, true)\n if p then\n local e = provision:find(\"<\/string>\", p, true)\n if e then\n return provision:sub(p, e + 9):match(\"(.*)<\/string>\")\n end\n end\nend\n\n-- get mobile provision entitlements\nfunction _get_mobile_provision_entitlements(provision)\n local p = provision:find(\"Entitlements<\/key>\", 1, true)\n if p then\n local e = provision:find(\"<\/dict>\", p, true)\n if e then\n return provision:sub(p, e + 7):match(\"(.*<\/dict>)\")\n end\n end\nend\n\n-- get codesign identities\nfunction codesign_identities()\n local identities = _g.identities\n if identities == nil then\n identities = {}\n local results = try { function() return os.iorun(\"\/usr\/bin\/security find-identity -v -p codesigning\") end }\n if not results then\n results = try { function() return os.iorun(\"\/usr\/bin\/security find-identity\") end }\n if results then\n local splitinfo = results:split(\"Valid identities only\", {plain = true})\n if splitinfo and #splitinfo > 1 then\n results = splitinfo[2]\n end\n end\n end\n if results then\n for _, line in ipairs(results:split('\\n', {plain = true})) do\n local sign, identity = line:match(\"%) (%w+) \\\"(.+)\\\"\")\n if sign and identity then\n identities[identity] = sign\n end\n end\n end\n _g.identities = identities or false\n end\n return identities or nil\nend\n\n-- get provision profiles only for mobile\nfunction mobile_provisions()\n local mobile_provisions = _g.mobile_provisions\n if mobile_provisions == nil then\n mobile_provisions = {}\n local files = os.files(\"~\/Library\/MobileDevice\/Provisioning Profiles\/*.mobileprovision\")\n for _, file in ipairs(files) do\n local results = try { function() return os.iorunv(\"\/usr\/bin\/security\", {\"cms\", \"-D\", \"-i\", file}) end }\n if results then\n local name = _get_mobile_provision_name(results)\n if name then\n mobile_provisions[name] = results\n end\n end\n end\n _g.mobile_provisions = mobile_provisions or false\n end\n return mobile_provisions or nil\nend\n\n-- dump all information of codesign\nfunction dump()\n\n -- only for macosx\n assert(is_host(\"macosx\"), \"codesign: only support for macOS!\")\n\n -- do dump\n print(\"==================================== codesign identities ====================================\")\n print(codesign_identities())\n print(\"===================================== mobile provisions =====================================\")\n print(mobile_provisions())\nend\n\n-- remove signature \nfunction unsign(programdir)\n\n -- only for macosx\n assert(is_host(\"macosx\"), \"codesign: only support for macOS!\")\n\n -- get codesign\n local codesign = find_tool(\"codesign\")\n if not codesign then\n return\n end\n\n -- remove signature\n os.vrunv(codesign.program, {\"--remove-signature\", programdir})\nend\n\n-- main entry\nfunction main (programdir, codesign_identity, mobile_provision)\n\n -- only for macosx\n assert(is_host(\"macosx\"), \"codesign: only support for macOS!\")\n\n -- get codesign\n local codesign = find_tool(\"codesign\")\n if not codesign then\n return\n end\n\n -- get codesign_allocate\n local codesign_allocate\n local xcode_sdkdir = get_config(\"xcode\")\n if xcode_sdkdir then\n codesign_allocate = path.join(xcode_sdkdir, \"Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/bin\/codesign_allocate\")\n end\n\n -- get codesign \n local sign = \"-\"\n if codesign_identity then -- we will uses sign\/'-' if be false for `xmake f --xcode_codesign_identity=n`\n local identities = codesign_identities()\n if identities then\n sign = identities[codesign_identity]\n assert(sign, \"codesign: invalid sign identity(%s)!\", codesign_identity)\n end\n end\n\n -- get entitlements for mobile\n local entitlements\n if mobile_provision then\n local provisions = mobile_provisions()\n if provisions then\n mobile_provision = provisions[mobile_provision]\n if mobile_provision then\n local entitlements_data = _get_mobile_provision_entitlements(mobile_provision)\n if entitlements_data then\n entitlements = os.tmpfile() .. \".plist\"\n io.writefile(entitlements, string.format([[\n\n\n%s\n<\/plist>\n]], entitlements_data))\n end\n end\n end\n end\n\n -- do sign\n local argv = {\"--force\", \"--timestamp=none\"}\n table.insert(argv, \"--sign\")\n table.insert(argv, sign)\n if entitlements then\n table.insert(argv, \"--entitlements\")\n table.insert(argv, entitlements)\n end\n table.insert(argv, programdir)\n os.vrunv(codesign.program, argv, {envs = {CODESIGN_ALLOCATE = codesign_allocate}})\n if entitlements then\n os.tryrm(entitlements)\n end\nend\n\n","avg_line_length":32.829787234,"max_line_length":135,"alphanum_fraction":0.6166558652} +{"size":791,"ext":"lua","lang":"Lua","max_stars_count":6.0,"content":"#!\/usr\/bin\/env texlua\n\ndofile(\"init_test_db.lua\")\n\nlocal documents = require \"documents\"\n\nlu = require('luaunit')\n\ntest_documents = {}\n\nfunction test_documents.test_version()\n theDoc=\"adv_fsp\"\n lu.assertEquals(documents.getDocumentVersion(theDoc), \"1.0-SNAPSHOT\")\nend\n\nfunction test_documents.test_date()\n theDoc=\"adv_fsp\"\n lu.assertEquals(documents.getDocumentDate(theDoc), \"\\\\today\")\nend\n\nfunction test_documents.test_versions()\n lu.assertEquals(documents.get_version_number_for_reflist(\"1.0\"), \"1.0\")\n lu.assertEquals(documents.get_version_number_for_reflist(\"1.1-SNAPSHOT\"), \"1.0\")\n lu.assertEquals(documents.get_version_number_for_reflist(\"1.2-SNAPSHOT\"), \"1.1\")\n lu.assertEquals(documents.get_version_number_for_reflist(\"1.2\"), \"1.2\")\n end\n\nos.exit( lu.LuaUnit.run() )\n","avg_line_length":27.275862069,"max_line_length":83,"alphanum_fraction":0.7572692794} +{"size":2004,"ext":"lua","lang":"Lua","max_stars_count":1.0,"content":"-- functional.lua: (pseudo-)functional stuff\n-- This file is a part of lua-nucleo library\n-- Copyright (c) lua-nucleo authors (see file `COPYRIGHT` for the license)\n\nlocal assert, unpack, select = assert, unpack, select\nlocal table_remove = table.remove\n\nlocal assert_is_number,\n assert_is_function\n = import 'lua-nucleo\/typeassert.lua'\n {\n 'assert_is_number',\n 'assert_is_function'\n }\n\nlocal do_nothing = function() end\n\nlocal identity = function(...) return ... end\n\n-- TODO: Backport advanced version with caching for primitive types\nlocal invariant = function(v)\n return function()\n return v\n end\nend\n\nlocal create_table = function(...)\n return { ... }\nend\n\nlocal make_generator_mt = function(fn)\n return\n {\n __index = function(t, k)\n local v = fn(k)\n t[k] = v\n return v\n end;\n }\nend\n\nlocal arguments_ignorer = function(fn)\n return function()\n return fn()\n end\nend\n\nlocal list_caller = function(calls)\n return function()\n for i = 1, #calls do\n local call = calls[i]\n assert_is_function(call[1])(\n unpack(\n call,\n 2,\n assert_is_number(\n call.n or (#call - 1)\n ) + 1\n )\n )\n end\n end\nend\n\nlocal bind_many = function(fn, ...)\n local n, args = select(\"#\", ...), { ... }\n return function()\n return fn(unpack(args, 1, n))\n end\nend\n\nlocal remove_nil_arguments\ndo\n local function impl(n, a, ...)\n if n > 0 then\n if a ~= nil then\n return a, impl(n - 1, ...)\n end\n\n return impl(n - 1, ...)\n end\n end\n\n remove_nil_arguments = function(...)\n return impl(select(\"#\", ...), ...)\n end\nend\n\nreturn\n{\n do_nothing = do_nothing;\n identity = identity;\n invariant = invariant;\n create_table = create_table;\n make_generator_mt = make_generator_mt;\n arguments_ignorer = arguments_ignorer;\n list_caller = list_caller;\n bind_many = bind_many;\n remove_nil_arguments = remove_nil_arguments;\n}\n","avg_line_length":19.8415841584,"max_line_length":74,"alphanum_fraction":0.6132734531} +{"size":22196,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"---------------------------------------------------------------------------------\n--\n-- Prat - A framework for World of Warcraft chat mods\n--\n-- Copyright (C) 2006-2018 Prat Development Team\n--\n-- This program is free software; you can redistribute it and\/or\n-- modify it under the terms of the GNU General Public License\n-- as published by the Free Software Foundation; either version 2\n-- of the License, or (at your option) any later version.\n--\n-- This program is distributed in the hope that it will be useful,\n-- but WITHOUT ANY WARRANTY; without even the implied warranty of\n-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n-- GNU General Public License for more details.\n--\n-- You should have received a copy of the GNU General Public License\n-- along with this program; if not, write to:\n--\n-- Free Software Foundation, Inc., \n-- 51 Franklin Street, Fifth Floor, \n-- Boston, MA 02110-1301, USA.\n--\n--\n-------------------------------------------------------------------------------\n\n\n\n\n\nPrat:AddModuleToLoad(function() \n\nlocal PRAT_MODULE = Prat:RequestModuleName(\"Scroll\")\n\nif PRAT_MODULE == nil then \n return \nend\n\nlocal module = Prat:NewModule(PRAT_MODULE, \"AceHook-3.0\")\n\nlocal PL = module.PL\n\n--[===[@debug@\nPL:AddLocale(PRAT_MODULE, \"enUS\", {\n [\"Scroll\"] = true,\n [\"Chat window scrolling options.\"] = true,\n [\"mousewheel_name\"] = \"Enable MouseWheel\",\n [\"mousewheel_desc\"] = \"Toggle mousewheel support for each chat window.\",\n [\"Set MouseWheel Speed\"] = true,\n [\"Set number of lines mousewheel will scroll.\"] = true,\n modified_speed = \"Set Shift+MouseWheel Speed\",\n modified_speed_desc = \"Set number of lines mousewheel will scroll when shift is pressed.\",\n [\"lowdown_name\"] = \"Enable TheLowDown\",\n [\"lowdown_desc\"] = \"Toggle auto jumping to the bottom for each chat window.\",\n [\"Set TheLowDown Delay\"] = true,\n [\"Set time to wait before jumping to the bottom of chat windows.\"] = true,\n\t[\"Text scroll direction\"] = true,\n\t[\"Control whether text is added to the frame at the top or the bottom.\"] = true,\n\t[\"Top\"] = \"Top to bottom\",\n\t[\"Bottom\"] = \"Bottom to top\",\n})\n--@end-debug@]===]\n\n-- These Localizations are auto-generated. To help with localization\n-- please go to http:\/\/www.wowace.com\/projects\/prat-3-0\/localization\/\n\n\n --@non-debug@\ndo\n local L\n\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"Bottom to top\",\n\t\t[\"Chat window scrolling options.\"] = true,\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = true,\n\t\t[\"lowdown_desc\"] = \"Toggle auto jumping to the bottom for each chat window.\",\n\t\t[\"lowdown_name\"] = \"Enable TheLowDown\",\n\t\t[\"modified_speed\"] = \"Set Shift+MouseWheel Speed\",\n\t\t[\"modified_speed_desc\"] = \"Set number of lines mousewheel will scroll when shift is pressed.\",\n\t\t[\"mousewheel_desc\"] = \"Toggle mousewheel support for each chat window.\",\n\t\t[\"mousewheel_name\"] = \"Enable MouseWheel\",\n\t\t[\"Scroll\"] = true,\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = true,\n\t\t[\"Set MouseWheel Speed\"] = true,\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = true,\n\t\t[\"Set number of lines mousewheel will scroll.\"] = true,\n\t\t[\"Set TheLowDown Delay\"] = true,\n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = true,\n\t\t[\"Text scroll direction\"] = true,\n\t\t[\"Top\"] = \"Top to bottom\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"enUS\", L)\n\n\nL=\n{\n\t[\"Scroll\"] = {\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Bottom\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Chat window scrolling options.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Control whether text is added to the frame at the top or the bottom.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"mousewheel_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"mousewheel_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Scroll\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set Ctrl+MouseWheel Speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set MouseWheel Speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set number of lines mousewheel will scroll.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set TheLowDown Delay\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Text scroll direction\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Top\"] = \"\",--]] \n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"itIT\", L)\n\n\nL=\n{\n\t[\"Scroll\"] = {\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Bottom\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Chat window scrolling options.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Control whether text is added to the frame at the top or the bottom.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"mousewheel_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"mousewheel_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Scroll\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set Ctrl+MouseWheel Speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set MouseWheel Speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set number of lines mousewheel will scroll.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set TheLowDown Delay\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Text scroll direction\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Top\"] = \"\",--]] \n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"ptBR\", L)\n\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"Bas vers le haut\",\n\t\t[\"Chat window scrolling options.\"] = \"Options de d\u00e9filement.\",\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = \"D\u00e9finit si le texte est ajout\u00e9 en bas ou en haut de la fen\u00eatre.\",\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed_desc\"] = \"\",--]] \n\t\t[\"mousewheel_desc\"] = \"Active\/D\u00e9sactive le support de la molette pour chaque fen\u00eatre.\",\n\t\t[\"mousewheel_name\"] = \"Activer la molette\",\n\t\t[\"Scroll\"] = \"D\u00e9filement\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"Vitesse Ctrl+Molette\",\n\t\t[\"Set MouseWheel Speed\"] = \"Vitesse Molette\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"D\u00e9finit le nombre de lignes qui d\u00e9filent lorsque Ctrl est enfonc\u00e9.\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"D\u00e9finit le nombre de lignes qui d\u00e9filent lors d'un coup de molette avec la souris.\",\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set TheLowDown Delay\"] = \"\",--]] \n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = \"R\u00e9gler le temps d'attente avant de sauter au bas de la fen\u00eatre de chat.\",\n\t\t[\"Text scroll direction\"] = \"Direction du texte\",\n\t\t[\"Top\"] = \"Haut en bas\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"frFR\",L)\n\n\n\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"Von unten nach oben\",\n\t\t[\"Chat window scrolling options.\"] = \"Optionen zum Scrollen in Chatfenstern.\",\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = \"Steuerung, ob der Text oben oder unten im Chatfenster hinzugef\u00fcgt wird.\",\n\t\t[\"lowdown_desc\"] = \"Automatisches Springen zum unteren Ende eines Chatfensters ein-\/ausschalten.\",\n\t\t[\"lowdown_name\"] = \"TheLowDown aktivieren\",\n\t\t[\"modified_speed\"] = \"SHIFT + Mausrad-Geschwindigkeit einstellen\",\n\t\t[\"modified_speed_desc\"] = \"Anzahl der Zeilen, die bei Bet\u00e4tigung des Mausrads gescrollt werden, w\u00e4hrend die SHIFT-Taste gedr\u00fcckt wird.\",\n\t\t[\"mousewheel_desc\"] = \"Mausradunterst\u00fctzung f\u00fcr jedes Chatfenster ein-\/ausschalten.\",\n\t\t[\"mousewheel_name\"] = \"Mausrad aktivieren\",\n\t\t[\"Scroll\"] = \"Scrollen\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"Geschwindigkeit f\u00fcr -Mausrad einstellen\",\n\t\t[\"Set MouseWheel Speed\"] = \"Geschwindigkeit des Mausrads einstellen\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"Anzahl der Zeilen, die per Mausrad weitergescrollt werden, w\u00e4hrend gedr\u00fcckt wird, einstellen.\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"Zeilenanzahl einstellen, die das Mausrad weiterscrollt.\",\n\t\t[\"Set TheLowDown Delay\"] = \"TheLowDown-Verz\u00f6gerung einstellen\",\n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = \"Wartezeit einstellen, ehe zum Ende von Chatfenstern gesprungen wird.\",\n\t\t[\"Text scroll direction\"] = \"Scroll-Richtung im Text\",\n\t\t[\"Top\"] = \"Von oben nach unten\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"deDE\", L)\n\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"\ubc11\uc5d0\uc11c \uc704\ub85c\",\n\t\t[\"Chat window scrolling options.\"] = \"\ub300\ud654 \ucc3d \uc2a4\ud06c\ub864 \uc635\uc158\uc785\ub2c8\ub2e4.\",\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = \"\ubb38\uc790\uac00 \ucc3d\uc758 \uc0c1\ub2e8 \ub610\ub294 \ud558\ub2e8\ubd80\ud130 \ucd94\uac00\ub420 \uc9c0 \uc124\uc815\ud569\ub2c8\ub2e4.\",\n\t\t[\"lowdown_desc\"] = \"\uac01 \ub300\ud654\ucc3d \ubcc4\ub85c \uc790\ub3d9 \ucd5c\ud558\ub2e8 \uc774\ub3d9\uc744 \ub044\uac70\ub098 \ucf2d\ub2c8\ub2e4.\",\n\t\t[\"lowdown_name\"] = \"\ucd5c\ud558\ub2e8 \uc774\ub3d9 \uc0ac\uc6a9\",\n\t\t[\"modified_speed\"] = \"Shift+\ub9c8\uc6b0\uc2a4\ud720 \uc18d\ub3c4 \uc124\uc815\",\n\t\t[\"modified_speed_desc\"] = \"Shift\ub97c \ub20c\ub800\uc744 \ub54c \ub9c8\uc6b0\uc2a4 \ud720\ub85c \uc2a4\ud06c\ub864\ud560 \uc904\uc758 \uc22b\uc790\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.\",\n\t\t[\"mousewheel_desc\"] = \"\uac01 \ub300\ud654\ucc3d \ubcc4\ub85c \ub9c8\uc6b0\uc2a4 \ud720 \uc9c0\uc6d0\uc744 \ub044\uac70\ub098 \ucf2d\ub2c8\ub2e4.\",\n\t\t[\"mousewheel_name\"] = \"\ub9c8\uc6b0\uc2a4 \ud720 \uc0ac\uc6a9\",\n\t\t[\"Scroll\"] = \"\uc2a4\ud06c\ub864\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"Ctrl+\ub9c8\uc6b0\uc2a4 \ud720 \uc18d\ub3c4 \uc124\uc815\",\n\t\t[\"Set MouseWheel Speed\"] = \"\ub9c8\uc6b0\uc2a4 \ud720 \uc18d\ub3c4 \uc124\uc815\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"Ctrl \ud0a4\ub97c \ub204\ub974\uace0 \ub9c8\uc6b0\uc2a4 \ud720\uc744 \uc0ac\uc6a9\ud560 \ub54c \uc2a4\ud06c\ub864\ud560 \uc904\uc758 \uc218\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"\ub9c8\uc6b0\uc2a4 \ud720\ub85c \uc2a4\ud06c\ub864\ud560 \uc904\uc758 \uc218\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.\",\n\t\t[\"Set TheLowDown Delay\"] = \"\ucd5c\ud558\ub2e8 \uc774\ub3d9 \uc9c0\uc5f0 \uc2dc\uac04 \uc124\uc815\",\n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\ub300\ud654\ucc3d\uc744 \ud558\ub2e8\uc73c\ub85c \ub0b4\ub9ac\uae30\uae4c\uc9c0 \ub300\uae30 \uc2dc\uac04\uc744 \uc124\uc815\ud569\ub2c8\ub2e4.\",\n\t\t[\"Text scroll direction\"] = \"\ubb38\uc790 \uc2a4\ud06c\ub864 \ubc29\ud5a5\",\n\t\t[\"Top\"] = \"\uc704\uc5d0\uc11c \uc544\ub798\ub85c\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"koKR\",L)\nL=\n{\n\t[\"Scroll\"] = {\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Bottom\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Chat window scrolling options.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Control whether text is added to the frame at the top or the bottom.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"lowdown_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"mousewheel_desc\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"mousewheel_name\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Scroll\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set Ctrl+MouseWheel Speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set MouseWheel Speed\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set number of lines mousewheel will scroll.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set TheLowDown Delay\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Text scroll direction\"] = \"\",--]] \n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Top\"] = \"\",--]] \n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"esMX\",L)\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"\u0421\u043d\u0438\u0437\u0443 \u0432\u0432\u0435\u0440\u0445\",\n\t\t[\"Chat window scrolling options.\"] = \"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0438 \u043e\u043a\u043d\u0430 \u0447\u0430\u0442\u0430.\",\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = \"\u0420\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u043a\u0430 \u0442\u0435\u043a\u0441\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0432 \u043e\u043a\u043d\u043e \u0432 \u0432\u0432\u0435\u0440\u0445 \u0438\u043b\u0438 \u043d\u0438\u0437.\",\n\t\t[\"lowdown_desc\"] = \"\u0412\u043a\u043b\/\u0412\u044b\u043a\u043b \u0430\u0432\u0442\u043e \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0443 \u0432 \u043d\u0438\u0437 \u0434\u043b\u044f \u0432\u043e \u0432\u0441\u0435\u0445 \u043e\u043a\u043d\u0430\u0445 \u0447\u0430\u0442\u0430.\",\n\t\t[\"lowdown_name\"] = \"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u043f\u0430\u0434 \u0432 \u043d\u0438\u0437\",\n\t\t[\"modified_speed\"] = \"\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0438 \u043a\u043e\u043b\u0435\u0441\u0430 \u043c\u044b\u0448\u043a\u0438+Shift\",\n\t\t[\"modified_speed_desc\"] = \"\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0442\u0440\u043e\u043a \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u043b\u0435\u0441\u0430 \u043c\u044b\u0448\u0438+shift.\",\n\t\t[\"mousewheel_desc\"] = \"\u0412\u043a\u043b\/\u0412\u044b\u043a\u043b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043a\u043e\u043b\u0435\u0441\u0438\u043a\u0430 \u043c\u044b\u0448\u0438 \u0432\u043e \u0432\u0441\u0435\u0445 \u043e\u043a\u043e\u043d\u0430\u0445 \u0447\u0430\u0442\u0430.\",\n\t\t[\"mousewheel_name\"] = \"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u041a\u043e\u043b\u0435\u0441\u043e\u041c\u044b\u0448\u0438\",\n\t\t[\"Scroll\"] = \"\u041f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"\u0417\u0430\u0434\u0430\u0442\u044c \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c Ctrl+\u041a\u043e\u043b\u0435\u0441\u043e\u041c\u044b\u0448\u0438\",\n\t\t[\"Set MouseWheel Speed\"] = \"\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u041a\u043e\u043b\u0435\u0441\u0430\u041c\u044b\u0448\u0438\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0447\u0438\u0441\u043b\u043e \u0441\u0442\u0440\u043e\u043a \u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u043a\u043e\u043b\u0451\u0441\u0438\u043a\u043e\u043c \u043c\u044b\u0448\u0438 \u043f\u0440\u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043d\u0438\u0438 ctrl.\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u0438\u0442\u0435 \u0447\u0438\u0441\u043b\u043e \u0441\u0442\u0440\u043e\u043a \u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u043a\u043e\u043b\u0451\u0441\u0438\u043a\u043e\u043c \u043c\u044b\u0448\u0438 \u0437\u0430 \u0440\u0430\u0437.\",\n\t\t[\"Set TheLowDown Delay\"] = \"\u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u0441\u043f\u0430\u0434\u0430 \u0432 \u043d\u0438\u0437\",\n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0432\u0440\u0435\u043c\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0434 \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u043e\u0439 \u0432 \u043d\u0438\u0437 \u043e\u043a\u043d\u0430 \u0447\u0430\u0442\u0430.\",\n\t\t[\"Text scroll direction\"] = \"\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0438\",\n\t\t[\"Top\"] = \"\u0421 \u0432\u0435\u0440\u0445\u0443 \u0432\u043d\u0438\u0437\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"ruRU\",L)\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"\u4ece\u4e0b\u5230\u4e0a\",\n\t\t[\"Chat window scrolling options.\"] = \"\u804a\u5929\u7a97\u53e3\u6eda\u52a8\u9009\u9879\",\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = \"\u63a7\u5236\u6587\u672c\u88ab\u6dfb\u52a0\u5230\u6846\u4f53\u9876\u7aef\u8fd8\u662f\u5e95\u7aef\",\n\t\t[\"lowdown_desc\"] = \"\u4e3a\u6bcf\u4e2a\u804a\u5929\u7a97\u53e3\u81ea\u52a8\u8df3\u81f3\u5e95\u7aef\",\n\t\t[\"lowdown_name\"] = \"\u542f\u7528\u56de\u5230\u5e95\u7aef\",\n\t\t[\"modified_speed\"] = \"\u8bbe\u7f6e Shift+\u9f20\u6807\u6eda\u8f6e \u901f\u5ea6\",\n\t\t[\"modified_speed_desc\"] = \"\u8bbe\u5b9a\u6309\u4f4fShift\u952e\u65f6\u9f20\u6807\u6eda\u8f6e\u6eda\u52a8\u7684\u884c\u6570\",\n\t\t[\"mousewheel_desc\"] = \"\u4e3a\u6bcf\u4e2a\u804a\u5929\u7a97\u53e3\u9009\u53d6\u9f20\u6807\u6eda\u8f6e\u652f\u6301\",\n\t\t[\"mousewheel_name\"] = \"\u542f\u7528\u9f20\u6807\u6eda\u8f6e\",\n\t\t[\"Scroll\"] = \"\u6eda\u52a8\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"\u8bbe\u7f6eCtrl+\u9f20\u6807\u6eda\u8f6e\u901f\u5ea6\",\n\t\t[\"Set MouseWheel Speed\"] = \"\u8bbe\u7f6e\u9f20\u6807\u6eda\u8f6e\u901f\u5ea6\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"\u8bbe\u7f6e\u6309\u4e0bctrl\u65f6\u9f20\u6807\u6eda\u8f6e\u6eda\u52a8\u884c\u6570\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"\u8bbe\u7f6e\u9f20\u6807\u6eda\u8f6e\u6eda\u52a8\u884c\u6570\",\n\t\t[\"Set TheLowDown Delay\"] = \"\u8bbe\u7f6e\u56de\u5230\u5e95\u7aef\u5ef6\u8fdf\",\n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\u8bbe\u7f6e\u804a\u5929\u7a97\u53e3\u8df3\u81f3\u5e95\u90e8\u524d\u7b49\u5f85\u65f6\u95f4\",\n\t\t[\"Text scroll direction\"] = \"\u6587\u672c\u6eda\u52a8\u65b9\u5411\",\n\t\t[\"Top\"] = \"\u4ece\u4e0a\u5230\u4e0b\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"zhCN\",L)\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"De Abajo a Arriba\",\n\t\t[\"Chat window scrolling options.\"] = \"Opciones de desplazamiento de la ventana de chat.\",\n\t\t[\"Control whether text is added to the frame at the top or the bottom.\"] = \"Controla si el texto se a\u00f1ade al marco en la parte superior o inferior.\",\n\t\t[\"lowdown_desc\"] = \"Alternar saltar autom\u00e1ticamente a la parte inferior de cada ventana de chat.\",\n\t\t[\"lowdown_name\"] = \"Activar TheLowDown\",\n\t\t[\"modified_speed\"] = [=[Establecer la velocidad de Shift+Rueda del Rat\u00f3n\n]=],\n\t\t[\"modified_speed_desc\"] = \"Establece el n\u00famero de l\u00edneas que la rueda del rat\u00f3n desplazar\u00e1 cuando shift est\u00e1 pulsado.\",\n\t\t[\"mousewheel_desc\"] = \"Alterna soporte para rueda de rat\u00f3n para cada ventana de chat.\",\n\t\t[\"mousewheel_name\"] = \"Activar Rueda del Rat\u00f3n\",\n\t\t[\"Scroll\"] = \"Desplazamiento\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"Establecer Velocidad Ctrl+Rueda Rat\u00f3n\",\n\t\t[\"Set MouseWheel Speed\"] = \"Establecer Velocidad de la Rueda del Rat\u00f3n\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"Establece el n\u00famero de l\u00edneas que la rueda del rat\u00f3n desplazar\u00e1 cuando ctrl est\u00e1 pulsada.\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"Establece el n\u00famero de lineas que la rueda del rat\u00f3n desplazar\u00e1.\",\n\t\t[\"Set TheLowDown Delay\"] = \"Establecer Retraso TheLowDown\",\n\t\t[\"Set time to wait before jumping to the bottom of chat windows.\"] = \"Estable el tiempo de espera antes de saltar a la parte inferior de las ventanas de chat.\",\n\t\t[\"Text scroll direction\"] = \"Direcci\u00f3n de desplazamiento del texto\",\n\t\t[\"Top\"] = \"De arriba a abajo\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"esES\",L)\nL=\n{\n\t[\"Scroll\"] = {\n\t\t[\"Bottom\"] = \"\u7531\u4e0b\u800c\u4e0a\",\n\t\t[\"Chat window scrolling options.\"] = \"\u804a\u5929\u8996\u7a97\u6efe\u52d5\u9078\u9805\",\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Control whether text is added to the frame at the top or the bottom.\"] = \"\",--]] \n\t\t[\"lowdown_desc\"] = \"\u5207\u63db\u662f\u5426\u65bc\u500b\u5225\u804a\u5929\u8996\u7a97\u81ea\u52d5\u8df3\u8f49\u81f3\u6700\u65b0\u8a0a\u606f\",\n\t\t[\"lowdown_name\"] = \"\u555f\u7528 TheLowDown\",\n\t\t[\"modified_speed\"] = \"\u8a2d\u5b9a Shift+\u6ed1\u9f20\u6efe\u8f2a\u901f\u5ea6\",\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"modified_speed_desc\"] = \"\",--]] \n\t\t[\"mousewheel_desc\"] = \"\u5207\u63db\u662f\u5426\u65bc\u500b\u5225\u804a\u5929\u8996\u7a97\u652f\u63f4\u6ed1\u9f20\u6efe\u8f2a\",\n\t\t[\"mousewheel_name\"] = \"\u555f\u7528\u6ed1\u9f20\u6efe\u8f2a\",\n\t\t[\"Scroll\"] = \"\u6efe\u52d5\",\n\t\t[\"Set Ctrl+MouseWheel Speed\"] = \"\u8a2d\u5b9a Ctrl \u53ca\u6ed1\u9f20\u6efe\u8f2a\u901f\u5ea6\",\n\t\t[\"Set MouseWheel Speed\"] = \"\u8a2d\u5b9a\u6ed1\u9f20\u6efe\u8f2a\u901f\u5ea6\",\n\t\t[\"Set number of lines mousewheel will scroll when ctrl is pressed.\"] = \"\u8a2d\u5b9a\u7576\u6309\u4e0b Ctrl\u6642\u6ed1\u9f20\u6efe\u8f2a\u6efe\u52d5\u7684\u884c\u6578\",\n\t\t[\"Set number of lines mousewheel will scroll.\"] = \"\u8a2d\u5b9a\u6ed1\u9f20\u6efe\u8f2a\u5c07\u6efe\u52d5\u884c\u6578\u6578\u5b57\",\n\t\t[\"Set TheLowDown Delay\"] = \"\u8a2d\u5b9a\u4e0a\u4e0b\u5ef6\u9072\",\n\t\t--[[Translation missing --]]\n\t\t--[[ [\"Set time to wait before jumping to the bottom of chat windows.\"] = \"\",--]] \n\t\t[\"Text scroll direction\"] = \"\u6587\u5b57\u6efe\u52d5\u65b9\u5411\",\n\t\t[\"Top\"] = \"\u7531\u4e0a\u800c\u4e0b\",\n\t}\n}\nPL:AddLocale(PRAT_MODULE, \"zhTW\",L)\nend\n--@end-non-debug@\n\n\n\n\n----[[\n--\tChinese Local : CWDG Translation Team \u660f\u7761\u58a8\u9c7c (Thomas Mo)\n--\tCWDG site: http:\/\/Cwowaddon.com\n--\t$Rev: 82149 $\n--]]\n--\n\n--\n\n--\n\n--\n\n-- \n\n--\n\n\n\n\n\nPrat:SetModuleDefaults(module.name, {\n\tprofile = {\n on = true,\n mousewheel = { [\"*\"] = true },\n normscrollspeed = 1,\n ctrlscrollspeed = 3,\n lowdown = { [\"*\"] = true },\n lowdowndelay = 20,\n\t\tscrolldirection = \"BOTTOM\" \n\t}\n} )\n\n\n---- build the options menu using prat templates\n--module.toggleOptions = {\n-- mousewheel_handler = {},\n-- sep135_sep = 135,\n-- lowdown_handler = {}\n--}\n\n\nPrat:SetModuleOptions(module.name, {\n name = PL[\"Scroll\"],\n desc = PL[\"Chat window scrolling options.\"],\n type = \"group\",\n args = {\n\t\t mousewheel = {\n\t\t\tname = PL[\"mousewheel_name\"],\n\t\t\tdesc = PL[\"mousewheel_desc\"],\n\t\t\ttype = \"multiselect\",\n\t\t\torder = 110,\n\t\t\tvalues = Prat.HookedFrameList,\n\t\t\tget = \"GetSubValue\",\n\t\t\tset = \"SetSubValue\"\n\t\t },\n normscrollspeed = {\n name = PL[\"Set MouseWheel Speed\"],\n desc = PL[\"Set number of lines mousewheel will scroll.\"],\n type = \"range\",\n order = 120,\n min = 1,\n max = 21,\n step = 1,\n },\n\t\tscrolldirection = {\n\t\t\ttype = \"select\", \n name = PL[\"Text scroll direction\"],\n desc = PL[\"Control whether text is added to the frame at the top or the bottom.\"],\n\t\t\tvalues = { [\"TOP\"] = PL[\"Top\"], [\"BOTTOM\"] = PL[\"Bottom\"] },\n\t\t\thidden = true, -- Blizz Bug DISABLED 10172010\n\t\t},\n ctrlscrollspeed = {\n name = PL.modified_speed,\n desc = PL.modified_speed_desc,\n type = \"range\",\n order = 130,\n min = 3,\n max = 21,\n step = 3,\n },\n--\t\tlowdown = {\n--\t\t\tname = PL[\"lowdown_name\"],\n--\t\t\tdesc = PL[\"lowdown_desc\"],\n--\t\t\ttype = \"multiselect\",\n--\t\t\torder = 110,\n--\t\t\tvalues = Prat.HookedFrameList,\n--\t\t\tget = \"GetSubValue\",\n--\t\t\tset = \"SetSubValue\"\n--\t\t},\t\t\n-- lowdowndelay = {\n-- name = PL[\"Set TheLowDown Delay\"],\n-- desc = PL[\"Set time to wait before jumping to the bottom of chat windows.\"],\n-- type = \"range\",\n-- order = 220,\n-- min = 1,\n-- max = 60,\n-- step = 1,\n-- },\n }\n})\n\nmodule.OnSubValueChanged = module.ConfigureAllFrames\n\n\n--[[------------------------------------------------\n Module Event Functions\n------------------------------------------------]]--\n\n-- things to do when the module is enabled\nfunction module:OnModuleEnable()\n\tself:ConfigureAllFrames()\t\nend\n\n\n\n-- things to do when the module is disabled\nfunction module:OnModuleDisable()\n for k, v in pairs(Prat.Frames) do\n self:MouseWheel(v,false)\n-- \tself:LowDown(v,false)\n end\n\n\tself:SetScrollDirection(\"BOTTOM\")\nend\n\n--[[------------------------------------------------\n Core Functions\n------------------------------------------------]]--\nfunction module:GetDescription()\n\treturn PL[\"Chat window scrolling options.\"]\nend\n\nfunction module:ConfigureAllFrames()\n for k, v in pairs(Prat.Frames) do\n self:MouseWheel(v, self.db.profile.mousewheel[k])\n-- \tself:LowDown(v, self.db.profile.lowdown[k])\n end\n\n\tself:SetScrollDirection(self.db.profile.scrolldirection)\nend\n\ndo\n\tlocal function scrollFrame(cf, up)\n\t\tif IsControlKeyDown() then\n\t if up then cf:ScrollToTop() else cf:ScrollToBottom() end\n\t\telse\n\t\t if IsShiftKeyDown() then\n\t\t for i = 1,module.db.profile.ctrlscrollspeed do\n\t\t if up then cf:ScrollUp() else cf:ScrollDown() end\n\t\t end\n\t\t else\n\t\t for i = 1,module.db.profile.normscrollspeed do\n\t\t if up then cf:ScrollUp() else cf:ScrollDown() end\n\t\t end\n\t\t end\n\t\tend\n\tend\n\t\n\tfunction module:MouseWheel(cf, enabled)\n\t if enabled then\n\t cf:SetScript(\"OnMouseWheel\", function(cf, arg1) scrollFrame(cf, arg1 > 0) end)\n\t cf:EnableMouseWheel(true)\n\t else\n\t cf:SetScript(\"OnMouseWheel\", nil)\n\t cf:EnableMouseWheel(false)\n\t end\n\tend\nend\n\n--function module:LowDown(cf, enabled)\n--\tlocal name = cf:GetName()\n--\tlocal funcs = {\"ScrollUp\", \"ScrollDown\", \"ScrollToTop\", \"PageUp\", \"PageDown\"}\n--\n-- if enabled then\n--\t\tfor _,func in ipairs(funcs) do\n--\t\t\tlocal f = function(cf)\n--\t\t\t\tif self:IsEventScheduled(name..\"DownTimeout\") then self:CancelScheduledEvent(name..\"DownTimeout\") end\n--\t\t\t\tself:ScheduleEvent(name..\"DownTimeout\", self.ResetFrame, self.db.profile.lowdowndelay, self, cf)\n--\t\t\tend\n--\t\t\tself:SecureHook(cf, func, f)\n--\t\tend\n--\telse\n--\t\tfor _,func in ipairs(funcs) do\n--\t\t\tif self:IsHooked(cf, func) then self:Unhook(cf, func) end\n--\t\tend\n--\tend\n--end\n\nfunction module:ResetFrame(cf)\n\tif not cf:AtBottom() then\n\t\tcf:ScrollToBottom()\n\tend\nend\n\nfunction module:SetScrollDirection(direction)\n\t-- Blizz bug DISABLED 10172010 \n\n-- for k, v in pairs(Prat.HookedFrames) do\n--\t\tself:ScrollDirection(v, direction)\n-- end\n\n\tself.db.profile.scrolldirection = direction\nend\n\nfunction module:ScrollDirection(cf, direction)\n\tif cf:GetInsertMode() ~= direction then\n\t\tcf:SetMaxLines(cf:GetMaxLines())\n\t\tcf:SetInsertMode(direction)\n\tend\nend\n\n\n\n return\nend ) -- Prat:AddModuleToLoad\n","avg_line_length":35.2317460317,"max_line_length":176,"alphanum_fraction":0.6157415751} +{"size":1476,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"--------------------------------------------------------------------------------\n-- Handler.......... : onEnterFrame\n-- Author........... : \n-- Description...... : \n--------------------------------------------------------------------------------\n\n--------------------------------------------------------------------------------\nfunction JPSpriteSample.onEnterFrame ( )\n--------------------------------------------------------------------------------\n\t\r\n if ( not this.bStarted ( ) )\r\n then\r\n return\r\n end\r\n \r\n --Update characters in an optimized way\r\n -- [[\r\n local tIndexesToUpdate, nUpdateCoef = JPSprite.helpMeUpdateMySprites ( table.getSize ( this.tSpritesData ( ) ) )\r\n for i = 0, table.getSize ( tIndexesToUpdate ) - 1\r\n do\r\n local nIndex = table.getAt ( tIndexesToUpdate, i )\r\n \r\n local hSpriteData = table.getAt ( this.tSpritesData ( ), nIndex )\r\n object.sendEventImmediate ( hSpriteData, \"JPSpriteData\", \"onUpdate\", nUpdateCoef )\r\n end\r\n --]]\r\n \r\n --Not optimized way\r\n --[[\r\n for i = 0, table.getSize ( this.tSpritesData ( ) ) - 1\r\n do\r\n local hSpriteData = table.getAt ( this.tSpritesData ( ), i )\r\n object.sendEventImmediate ( hSpriteData, \"JPSpriteData\", \"onUpdate\", 1 )\r\n end\r\n --]]\r\n \n--------------------------------------------------------------------------------\nend\n--------------------------------------------------------------------------------\n","avg_line_length":36.9,"max_line_length":117,"alphanum_fraction":0.3848238482} +{"size":1508,"ext":"lua","lang":"Lua","max_stars_count":7.0,"content":"local configs = require 'lspconfig\/configs'\nlocal util = require 'lspconfig\/util'\n\nlocal server_name = 'intelephense'\nlocal bin_name = 'intelephense'\n\nconfigs[server_name] = {\n default_config = {\n cmd = { bin_name, '--stdio' },\n filetypes = { 'php' },\n root_dir = function(pattern)\n local cwd = vim.loop.cwd()\n local root = util.root_pattern('composer.json', '.git')(pattern)\n\n -- prefer cwd if root is a descendant\n return util.path.is_descendant(cwd, root) and cwd or root\n end,\n },\n docs = {\n description = [[\nhttps:\/\/intelephense.com\/\n\n`intelephense` can be installed via `npm`:\n```sh\nnpm install -g intelephense\n```\n]],\n default_config = {\n root_dir = [[root_pattern(\"composer.json\", \".git\")]],\n init_options = [[{\n storagePath = Optional absolute path to storage dir. Defaults to os.tmpdir().\n globalStoragePath = Optional absolute path to a global storage dir. Defaults to os.homedir().\n licenceKey = Optional licence key or absolute path to a text file containing the licence key.\n clearCache = Optional flag to clear server state. State can also be cleared by deleting {storagePath}\/intelephense\n -- See https:\/\/github.com\/bmewburn\/intelephense-docs#initialisation-options\n }]],\n settings = [[{\n intelephense = {\n files = {\n maxSize = 1000000;\n };\n };\n -- See https:\/\/github.com\/bmewburn\/intelephense-docs#configuration-options\n }]],\n },\n },\n}\n","avg_line_length":31.4166666667,"max_line_length":122,"alphanum_fraction":0.6385941645} +{"size":2736,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"--***********************************************************\n--** THE INDIE STONE **\n--***********************************************************\n\nrequire \"ISUI\/ISPanel\"\n\nlocal FONT_HGT_CONSOLE = getTextManager():getFontHeight(UIFont.DebugConsole)\n\n---@class DebugChunkState_ObjectPickerPanel : ISPanel\nDebugChunkState_ObjectPickerPanel = ISPanel:derive(\"DebugChunkState_ObjectPickerPanel\")\nlocal ObjectPickerPanel = DebugChunkState_ObjectPickerPanel\n\nfunction ObjectPickerPanel:update()\n\tISPanel.update(self)\n\tself.lastPicked = UIManager.getLastPicked()\nend\n\nfunction ObjectPickerPanel:render()\n\tISPanel.render(self)\n\tself.addLineX = 8\n\tself.addLineY = 4\n\t\n\tlocal isoObject = self.lastPicked -- UIManager.getLastPicked()\n\tif isoObject == nil then\n\t\tself:addLine(\"LastPicked = nil\")\n\telseif isoObject:getSprite() == nil then\n\t\tself:addLine(\"LastPicked.getSprite() = nil ???\")\n\telse\n\t\tself:addLine(\"LastPicked = %s\", tostring(isoObject:getSprite():getName() or isoObject:getSpriteName()))\n\tend\n\n\tlocal playerIndex = self.debugChunkState.gameState:fromLua0(\"getPlayerIndex\")\n\tlocal zoom = getCore():getZoom(playerIndex)\n\n\tisoObject = IsoObjectPicker.Instance:PickCorpse(getMouseX(), getMouseY())\n\tself:addLine(\"Corpse = %s\", tostring(isoObject))\n\n\tisoObject = IsoObjectPicker.Instance:PickThumpable(getMouseX(), getMouseY())\n\tself:addLine(\"Thumpable = %s\", tostring(isoObject))\n\n\tisoObject = IsoObjectPicker.Instance:PickTree(getMouseX(), getMouseY())\n\tself:addLine(\"Tree = %s\", tostring(isoObject))\n\n\tisoObject = IsoObjectPicker.Instance:PickVehicle(getMouseX() * zoom, getMouseY() * zoom)\n\tself:addLine(\"Vehicle = %s\", tostring(isoObject))\n\n\tisoObject = IsoObjectPicker.Instance:PickWindow(getMouseX(), getMouseY())\n\tself:addLine(\"Window = %s\", tostring(isoObject))\n\n\tisoObject = IsoObjectPicker.Instance:PickWindowFrame(getMouseX(), getMouseY())\n\tself:addLine(\"WindowFrame = %s\", tostring(isoObject))\nend\n\nfunction ObjectPickerPanel:addLine(text, arg0, arg1, arg2, arg3, arg4)\n\tif type(arg0) == \"boolean\" then arg0 = tostring(arg0) end\n\tif type(arg1) == \"boolean\" then arg1 = tostring(arg1) end\n\tif type(arg2) == \"boolean\" then arg2 = tostring(arg2) end\n\tif type(arg3) == \"boolean\" then arg3 = tostring(arg3) end\n\tif type(arg4) == \"boolean\" then arg4 = tostring(arg4) end\n\tself:drawText(string.format(text, arg0, arg1, arg2, arg3, arg4), self.addLineX, self.addLineY, 1, 1, 1, 1, UIFont.DebugConsole)\n\tself.addLineY = self.addLineY + FONT_HGT_CONSOLE\nend\n\nfunction ObjectPickerPanel:new(x, y, width, height, debugChunkState)\n\theight = 4 + FONT_HGT_CONSOLE * 7 + 4\n\tlocal o = ISPanel.new(self, x, y, width, height)\n\to.backgroundColor.a = 0.8\n\to.debugChunkState = debugChunkState\n\treturn o\nend\n\n\n\n","avg_line_length":36.972972973,"max_line_length":128,"alphanum_fraction":0.7094298246} +{"size":7789,"ext":"lua","lang":"Lua","max_stars_count":70.0,"content":"-- Gui to Lua\n-- Version: 3.2\n\n-- Instances:\n\nlocal ShitStrezaOnTop = Instance.new(\"ScreenGui\")\nlocal Frame = Instance.new(\"ImageLabel\")\nlocal TextLabel = Instance.new(\"TextLabel\")\nlocal TextButton = Instance.new(\"TextButton\")\nlocal TextButton_Roundify_12px = Instance.new(\"ImageLabel\")\nlocal discord = Instance.new(\"TextButton\")\nlocal Frame_2 = Instance.new(\"Frame\")\nlocal TextButton_2 = Instance.new(\"TextButton\")\n\n--Properties:\n\nShitStrezaOnTop.Name = \"Shit Streza On Top\"\nShitStrezaOnTop.Parent = game.Players.LocalPlayer:WaitForChild(\"PlayerGui\")\n\nFrame.Name = \"Frame\"\nFrame.Parent = ShitStrezaOnTop\nFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)\nFrame.BackgroundTransparency = 1.000\nFrame.Position = UDim2.new(0.158415839, 0, 0.438162446, 0)\nFrame.Size = UDim2.new(0, 325, 0, 274)\nFrame.Image = \"rbxassetid:\/\/3570695787\"\nFrame.ImageColor3 = Color3.fromRGB(29, 29, 29)\nFrame.ScaleType = Enum.ScaleType.Slice\nFrame.SliceCenter = Rect.new(100, 100, 100, 100)\nFrame.SliceScale = 0.120\n\nTextLabel.Parent = Frame\nTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)\nTextLabel.BackgroundTransparency = 1.000\nTextLabel.Position = UDim2.new(0.0746616125, 0, 0, 0)\nTextLabel.Size = UDim2.new(0, 275, 0, 44)\nTextLabel.Font = Enum.Font.SourceSans\nTextLabel.Text = \"S T R E Z A\"\nTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)\nTextLabel.TextScaled = true\nTextLabel.TextSize = 14.000\nTextLabel.TextWrapped = true\n\nTextButton.Parent = Frame\nTextButton.BackgroundColor3 = Color3.fromRGB(39, 39, 39)\nTextButton.BackgroundTransparency = 1.000\nTextButton.BorderColor3 = Color3.fromRGB(27, 27, 27)\nTextButton.BorderSizePixel = 0\nTextButton.Position = UDim2.new(0.285619646, 0, 0.20143874, 0)\nTextButton.Size = UDim2.new(0, 139, 0, 44)\nTextButton.ZIndex = 2\nTextButton.Font = Enum.Font.GothamSemibold\nTextButton.Text = \"Execute\"\nTextButton.TextColor3 = Color3.fromRGB(255, 255, 255)\nTextButton.TextScaled = true\nTextButton.TextSize = 14.000\nTextButton.TextWrapped = true\n\nTextButton_Roundify_12px.Name = \"TextButton_Roundify_12px\"\nTextButton_Roundify_12px.Parent = Frame\nTextButton_Roundify_12px.Active = true\nTextButton_Roundify_12px.AnchorPoint = Vector2.new(0.5, 0.5)\nTextButton_Roundify_12px.BackgroundColor3 = Color3.fromRGB(255, 255, 255)\nTextButton_Roundify_12px.BackgroundTransparency = 1.000\nTextButton_Roundify_12px.Position = UDim2.new(0.499276131, 0, 0.278776884, 0)\nTextButton_Roundify_12px.Selectable = true\nTextButton_Roundify_12px.Size = UDim2.new(0.818459868, 0, 0.183453262, 0)\nTextButton_Roundify_12px.Image = \"rbxassetid:\/\/3570695787\"\nTextButton_Roundify_12px.ImageColor3 = Color3.fromRGB(39, 39, 39)\nTextButton_Roundify_12px.ScaleType = Enum.ScaleType.Slice\nTextButton_Roundify_12px.SliceCenter = Rect.new(100, 100, 100, 100)\nTextButton_Roundify_12px.SliceScale = 0.120\n\ndiscord.Name = \"discord\"\ndiscord.Parent = Frame\ndiscord.BackgroundColor3 = Color3.fromRGB(39, 39, 39)\ndiscord.BackgroundTransparency = 1.000\ndiscord.BorderColor3 = Color3.fromRGB(27, 27, 27)\ndiscord.BorderSizePixel = 0\ndiscord.Position = UDim2.new(-0.326688081, 0, 0.836974084, 0)\ndiscord.Size = UDim2.new(0, 536, 0, 44)\ndiscord.ZIndex = 2\ndiscord.Font = Enum.Font.GothamSemibold\ndiscord.Text = \"Discord: 326SwvS\"\ndiscord.TextColor3 = Color3.fromRGB(255, 255, 255)\ndiscord.TextSize = 30.000\ndiscord.TextWrapped = true\n\nFrame_2.Parent = ShitStrezaOnTop\nFrame_2.Active = true\nFrame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)\nFrame_2.BorderSizePixel = 0\nFrame_2.Position = UDim2.new(0.157797024, 0, 0.486454666, 0)\nFrame_2.Size = UDim2.new(0, 326, 0, 1)\n\nTextButton_2.Parent = ShitStrezaOnTop\nTextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)\nTextButton_2.BackgroundTransparency = 1.000\nTextButton_2.BorderSizePixel = 0\nTextButton_2.Position = UDim2.new(0.336014867, 0, 0.438162446, 0)\nTextButton_2.Size = UDim2.new(0, 38, 0, 35)\nTextButton_2.Font = Enum.Font.SourceSans\nTextButton_2.Text = \"X\"\nTextButton_2.TextColor3 = Color3.fromRGB(170, 0, 0)\nTextButton_2.TextScaled = true\nTextButton_2.TextSize = 14.000\nTextButton_2.TextWrapped = true\n\n-- Scripts:\n\nlocal function SLIKMR_fake_script() -- TextLabel.Streza Colors \n\tlocal script = Instance.new('LocalScript', TextLabel)\n\n\t\n\tfunction zigzag(X) return math.acos(math.cos(X*math.pi))\/math.pi end\n\t\n\tcounter = 0\n\t\n\twhile wait(0.1)do\n\t\t script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)\n\t \n\t counter = counter + 0.01\n\tend\nend\ncoroutine.wrap(SLIKMR_fake_script)()\nlocal function FYYM_fake_script() -- TextButton.Games Execution \n\tlocal script = Instance.new('LocalScript', TextButton)\n\n\tprint(\"Streza Is Currently In [BETA Testing] Join Our Discord @ discord.gg\/326SwvS\")\n\tfunction Arsenal()\n\t\tloadstring(game:HttpGet(\"https:\/\/pastebin.com\/raw\/RviqFvtr\", true))()\n\t\t\n\tend\n\t--PIGGY------------------------------------------------------------------------------------------------------PIGGY-----------------------------\n\tif game.PlaceId == 4623386862 then\n\t\tscript.Parent.Text = \"Piggy\"\n\tend\n\t\n\tscript.Parent.MouseButton1Click:Connect(function()\n\t\tif game.PlaceId == 4623386862\n\t\tthen loadstring(game:HttpGet(\"https:\/\/raw.githubusercontent.com\/joeengo\/PiggyHax\/master\/Piggy%20Hax.txt\", true))()\n\t\tend\n\t\twait(0.08)\n\t\tscript.Parent.Parent.Parent:Destroy()\n\tend)\n\t--PIGGY----------------------------------------------------------------------------------------------------------------------------------------\n\t--JAILBREAK------------------------------------------------------------------------------------------------------------------------------------\n\tif game.PlaceId == 606849621\n\tthen\n\t\tscript.Parent.Text = \"Jailbreak\"\n\tend\n\t\n\tscript.Parent.MouseButton1Click:Connect(function()\n\t\tif game.PlaceId == 606849621\n\t\tthen loadstring(game:HttpGet(\"https:\/\/raw.githubusercontent.com\/HazeWasTaken\/JailedHax\/master\/PayPal\", true))() --credits to hazed#0001\n\t\tend\n\t\twait(0.08)\n\t\tscript.Parent.Parent.Parent:Destroy()\n\tend)\n\t--Jailbreak------------------------------------------------------------------------------------------------------------------------------------\n\t--Adopt Me------------------------------------------------------------------------------------------------------------------------------------- \n\tif game.PlaceId == 920587237 \n\tthen\n\t\tscript.Parent.Text = \"Adopt Me\"\n\tend\n\t\n\tscript.Parent.MouseButton1Click:Connect(function()\n\t\tif game.PlaceId == 920587237\n\t\tthen\n\t\t loadstring(game:HttpGet(\"http:\/\/stockerperso.me\/scripts\/haxxme.lua\", true))()\n\t\tend\n\t\twait(0.08)\n\t\tscript.Parent.Parent.Parent:Destroy()\n\tend)\n\t--Adopt Me-------------------------------------------------------------------------------------------------------------------------------------\n\t--Arsenal--------------------------------------------------------------------------------------------------------------------------------------\n\tif game.PlaceId == 286090429\n\tthen\n\t\tscript.Parent.Text = \"Arsenal\"\n\tend\n\tscript.Parent.MouseButton1Click:Connect(function()\n\t\tif game.PlaceId == 286090429\n\t\tthen\n\t\t\tArsenal()\n\t\tend\n\tend)\n\t--Arsenal---------------------------------------------------------------------------------------------------------------------------------------\n\t\n\t\n\t\nend\ncoroutine.wrap(FYYM_fake_script)()\nlocal function CZXXB_fake_script() -- Frame_2.Streza Colors \n\tlocal script = Instance.new('LocalScript', Frame_2)\n\n\t\n\tfunction zigzag(X) return math.acos(math.cos(X*math.pi))\/math.pi end\n\t\n\tcounter = 0\n\t\n\twhile wait(0.1)do\n\t\t script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)\n\t \n\t counter = counter + 0.01\n\tend\nend\ncoroutine.wrap(CZXXB_fake_script)()\nlocal function JFEBRR_fake_script() -- TextButton_2.LocalScript \n\tlocal script = Instance.new('LocalScript', TextButton_2)\n\n\tscript.Parent.MouseButton1Click:Connect(function()\n\t\tscript.Parent.Parent:Destroy()\n\tend)\nend\ncoroutine.wrap(JFEBRR_fake_script)()\n","avg_line_length":36.0601851852,"max_line_length":145,"alphanum_fraction":0.6605469252} +{"size":2410,"ext":"lua","lang":"Lua","max_stars_count":3.0,"content":"-- Natural Selection 2 Competitive Mod\n-- Source located at - https:\/\/github.com\/xToken\/CompMod\n-- lua\\CompMod\\TechData\\post.lua\n-- - Dragon\n\nkTechDataIDName = \"techdataidname\"\nkTechDataButtonID = \"techdatabuttonid\"\nkTechDataRequiresSecondPlacement = \"techdatarequirestwoplacements\"\nkTechDataDescription = \"techdatadescription\"\nkTechDataUnlockAction = \"techdataunlockaction\"\nkTechDataNotifyPlayers = \"techdatanotifyplayers\"\nkTechDataRequiredTechs = \"techdatarequiredtechs\"\n\nScript.Load(\"lua\/CompMod\/TechData\/NewTechData.lua\")\n\nlocal techDataUpdatesBuilt = false\nlocal newTechTable = { }\nlocal updatedTechTable = { }\n\n-- Take all the updated tech IDs kTechData keys, insert into single table for easy checking\nlocal techIdUpdatedKeys = { }\nlocal techIdUpdatedFields = { } -- LUA tables make me sad sometimes\n\t\t\nlocal function BuildTechDataUpdates()\n\tif not techDataUpdatesBuilt then\n\t\tnewTechTable, updatedTechTable = BuildCompModTechDataUpdates()\n\t\tfor i = 1, #updatedTechTable do\n\t\t\tlocal updatedId = updatedTechTable[i][kTechDataId]\n\t\t\ttable.insert(techIdUpdatedKeys, updatedId)\n\t\t\ttechIdUpdatedFields[updatedId] = updatedTechTable[i]\n\t\tend\n\t\ttechDataUpdatesBuilt = true\n\tend\nend\n\nfunction ReturnNewTechButtons()\n\tBuildTechDataUpdates()\n\tlocal tButtons = { }\n\tfor i = 1, #newTechTable do\n\t\tif newTechTable[i][kTechDataButtonID] then\n\t\t\ttButtons[newTechTable[i][kTechDataId]] = newTechTable[i][kTechDataButtonID]\n\t\tend\n\tend\n\tfor i = 1, #updatedTechTable do\n\t\tif updatedTechTable[i][kTechDataButtonID] then\n\t\t\ttButtons[updatedTechTable[i][kTechDataId]] = updatedTechTable[i][kTechDataButtonID]\n\t\tend\n\tend\n\treturn tButtons\nend\n\nfunction IsTechIDUpdated(techId)\n\treturn table.contains(techIdUpdatedKeys, techId)\nend\n\nfunction ReturnUpdatedTechData(techId)\n\treturn techIdUpdatedFields[techId]\nend\n\nlocal function AddCompModTechChanges(techData)\n\tBuildTechDataUpdates()\n\tfor _, record in ipairs(techData) do\n\t\t-- Update any existing techIDs\n if IsTechIDUpdated(record[kTechDataId]) then\n\t\t\tfor k, v in pairs(ReturnUpdatedTechData(record[kTechDataId])) do\n\t\t\t\trecord[k] = v\n\t\t\tend\n\t\tend\n end\n\t-- Add new tech IDs\n\tfor _, techTable in ipairs(newTechTable) do\n\t\ttable.insert(techData, techTable)\n\tend\nend\n\n-- You dumbass, the BuildTechData is global...\nlocal oldBuildTechData = BuildTechData\nfunction BuildTechData()\n\tlocal techData = oldBuildTechData()\n\tAddCompModTechChanges(techData)\n\treturn techData\nend","avg_line_length":29.3902439024,"max_line_length":91,"alphanum_fraction":0.7867219917} +{"size":1445,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"require(\"strict\")\n\nlocal MRC = require(\"MRC\")\nlocal testDir = \"spec\/MRC\"\n\ndescribe(\"Testing MRC class #MRC.\",\n function()\n it(\"Test parsing of modA\",\n function()\n local mrc = MRC:singleton()\n local modA={\n {kind=\"module-version\",module_name=\"\/15.0.2\", module_versionA={\"15.0\",\"15\"}},\n {kind=\"module-version\",module_name=\"intel\/14.0.3\", module_versionA={\"14.0\"}},\n {kind=\"module-version\",module_name=\"intel\/14.0\", module_versionA={\"14\"}},\n {kind=\"module-version\",module_name=\"intel\/14\", module_versionA={\"default\"}},\n }\n local defaultV = mrc:parseModA_for_moduleA(\"intel\", modA)\n assert.are.equal(\"intel\/14.0.3\" , defaultV)\n\n modA={\n {kind=\"module-version\", module_name=\"\/15.0.2\", module_versionA={\"15.0\",\"15\"}},\n {kind=\"module-version\", module_name=\"\/14.0.3\", module_versionA={\"14.0\"}},\n {kind=\"module-version\", module_name=\"\/14.0\", module_versionA={\"14\"}},\n {kind=\"module-version\", module_name=\"\/14\", module_versionA={\"default\"}},\n }\n defaultV = mrc:parseModA_for_moduleA(\"intel\", modA)\n assert.are.equal(\"intel\/14.0.3\" , defaultV)\n end)\n end\n)\n","avg_line_length":46.6129032258,"max_line_length":103,"alphanum_fraction":0.4968858131} +{"size":1957,"ext":"lua","lang":"Lua","max_stars_count":2.0,"content":"local Errors = require \"kong.dao.errors\"\n\ndescribe(\"Errors\", function()\n describe(\"unique()\", function()\n it(\"creates a unique error\", function()\n local err = Errors.unique {name = \"foo\", unique_field = \"bar\"}\n assert.is_table(err)\n assert.True(err.unique)\n assert.equal(\"already exists with value 'foo'\", err.tbl.name)\n assert.equal(\"already exists with value 'bar'\", err.tbl.unique_field)\n assert.matches(\"name=already exists with value 'foo' unique_field=already exists with value 'bar'\", err.message)\n assert.equal(err.message, tostring(err))\n end)\n end)\n\n describe(\"foreign()\", function()\n it(\"creates a foreign error\", function()\n local err = Errors.foreign {foreign_a = \"foo\", foreign_b = \"bar\"}\n assert.is_table(err)\n assert.True(err.foreign)\n assert.equal(\"does not exist with value 'foo'\", err.tbl.foreign_a)\n assert.equal(\"does not exist with value 'bar'\", err.tbl.foreign_b)\n assert.equal(\"foreign_a=does not exist with value 'foo' foreign_b=does not exist with value 'bar'\", err.message)\n assert.equal(err.message, tostring(err))\n end)\n end)\n\n describe(\"schema()\", function()\n it(\"create a schema error\", function()\n local err = Errors.schema {field_a = \"invalid\", field_b = \"bar\"}\n assert.is_table(err)\n assert.True(err.schema)\n assert.equal(\"invalid\", err.tbl.field_a)\n assert.equal(\"bar\", err.tbl.field_b)\n end)\n end)\n\n describe(\"db()\", function()\n it(\"create a db error\", function()\n local err = Errors.db \"invalid response\"\n assert.is_table(err)\n assert.True(err.db)\n assert.equal(\"invalid response\", err.message)\n end)\n end)\n\n describe(\"__tostring()\", function()\n it(\"prefixes with db_type if present\", function()\n local err = Errors.unique({name = \"foo\", unique_field = \"bar\"}, \"postgres\")\n assert.equal(\"[postgres error] \" .. err.message, tostring(err))\n end)\n end)\nend)\n","avg_line_length":36.2407407407,"max_line_length":118,"alphanum_fraction":0.6530403679} +{"size":2404,"ext":"lua","lang":"Lua","max_stars_count":18.0,"content":"--Copyright (C) 2010 \n\n\n--This File is part of Core3.\n\n--This program is free software; you can redistribute\n--it and\/or modify it under the terms of the GNU Lesser\n--General Public License as published by the Free Software\n--Foundation; either version 2 of the License,\n--or (at your option) any later version.\n\n--This program is distributed in the hope that it will be useful,\n--but WITHOUT ANY WARRANTY; without even the implied warranty of\n--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n--See the GNU Lesser General Public License for\n--more details.\n\n--You should have received a copy of the GNU Lesser General\n--Public License along with this program; if not, write to\n--the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\n--Linking Engine3 statically or dynamically with other modules\n--is making a combined work based on Engine3.\n--Thus, the terms and conditions of the GNU Lesser General Public License\n--cover the whole combination.\n\n--In addition, as a special exception, the copyright holders of Engine3\n--give you permission to combine Engine3 program with free software\n--programs or libraries that are released under the GNU LGPL and with\n--code included in the standard release of Core3 under the GNU LGPL\n--license (or modified versions of such code, with unchanged license).\n--You may copy and distribute such a system following the terms of the\n--GNU LGPL for Engine3 and the licenses of the other code concerned,\n--provided that you include the source code of that other code when\n--and as the GNU LGPL requires distribution of source code.\n\n--Note that people who make modified versions of Engine3 are not obligated\n--to grant this special exception for their modified versions;\n--it is their choice whether to do so. The GNU Lesser General Public License\n--gives permission to release a modified version without this exception;\n--this exception also makes it possible to release a modified version\n\n\nobject_tangible_dungeon_corellian_corvette_corvette_search_imperial_rescue_03 = object_tangible_dungeon_corellian_corvette_shared_corvette_search_imperial_rescue_03:new {\n\tobjectMenuComponent = \"DarkstoneIntelSearchMenuComponent\",\n}\n\nObjectTemplates:addTemplate(object_tangible_dungeon_corellian_corvette_corvette_search_imperial_rescue_03, \"object\/tangible\/dungeon\/corellian_corvette\/corvette_search_imperial_rescue_03.iff\")\n","avg_line_length":49.0612244898,"max_line_length":191,"alphanum_fraction":0.8078202995} +{"size":268,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local PLUGIN = PLUGIN;\n\n-- Called when Clockwork has loaded all of the entities.\nfunction PLUGIN:ClockworkInitPostEntity()\n\tPLUGIN:LoadEmplacementGuns()\nend;\n\n-- Called just after data should be saved.\nfunction PLUGIN:PostSaveData()\n\tPLUGIN:SaveEmplacementGuns();\nend;","avg_line_length":24.3636363636,"max_line_length":56,"alphanum_fraction":0.7910447761} +{"size":1958,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local json = require(\"json\")\n\nlocal module = { \n mt = { __index = {} }\n}\n\nfunction module.WebSocketConnection(url, port)\n local res =\n {\n url = url,\n port = port\n }\n res.socket = network.WebSocket()\n setmetatable(res, module.mt)\n res.qtproxy = qt.dynamic()\n return res\nend\n\nfunction module.mt.__index:Connect()\n self.socket:open(self.url, self.port)\nend\nlocal function checkSelfArg(s)\n if type(s) ~= \"table\" or\n getmetatable(s) ~= module.mt then\n error(\"Invalid argument 'self': must be connection (use ':', not '.')\")\n end\nend\nfunction module.mt.__index:Send(text)\n atf_logger.LOG(\"HMItoSDL\", text)\n self.socket:write(text)\nend\n\nfunction module.mt.__index:OnInputData(func)\n local d = qt.dynamic()\n local this = self\n function d:textMessageReceived(text)\n atf_logger.LOG(\"SDLtoHMI\", text)\n local data = json.decode(text)\n --print(\"ws input:\", text)\n func(this, data)\n end\n qt.connect(self.socket, \"textMessageReceived(QString)\", d, \"textMessageReceived(QString)\")\nend\n\nfunction module.mt.__index:OnDataSent(func)\n local d = qt.dynamic()\n local this = self\n function d:bytesWritten(num)\n func(this, num)\n end\n qt.connect(self.socket, \"bytesWritten(qint64)\", d, \"bytesWritten(qint64)\")\nend\n\nfunction module.mt.__index:OnConnected(func)\n if self.qtproxy.connected then\n error(\"Websocket connection: connected signal is handled already\")\n end\n local this = self\n self.qtproxy.connected = function() func(this) end\n qt.connect(self.socket, \"connected()\", self.qtproxy, \"connected()\")\nend\n\nfunction module.mt.__index:OnDisconnected(func)\n if self.qtproxy.disconnected then\n error(\"Websocket connection: disconnected signal is handled already\")\n end\n local this = self\n self.qtproxy.disconnected = function() func(this) end\n qt.connect(self.socket, \"disconnected()\", self.qtproxy, \"disconnected()\")\nend\nfunction module.mt.__index:Close()\n checkSelfArg(self)\n self.socket:close();\nend\nreturn module\n","avg_line_length":25.7631578947,"max_line_length":92,"alphanum_fraction":0.7119509704} +{"size":403366,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"Emoticons_Settings={\n\t[\"CHAT_MSG_OFFICER\"]=true,\t\t--1\n\t[\"CHAT_MSG_GUILD\"]=true,\t\t--2\n\t[\"CHAT_MSG_PARTY\"]=true,\t\t--3\n\t[\"CHAT_MSG_PARTY_LEADER\"]=true,\t\t--dont count, tie to 3\n\t[\"CHAT_MSG_PARTY_GUIDE\"]=true,\t\t--dont count, tie to 3\n\t[\"CHAT_MSG_RAID\"]=true,\t\t\t--4\n\t[\"CHAT_MSG_RAID_LEADER\"]=true,\t\t--dont count, tie to 4\n\t[\"CHAT_MSG_RAID_WARNING\"]=true,\t\t--dont count, tie to 4\n\t[\"CHAT_MSG_SAY\"]=true,\t\t\t--5\n\t[\"CHAT_MSG_YELL\"]=true,\t\t\t--6\n\t[\"CHAT_MSG_WHISPER\"]=true,\t\t--7\n\t[\"CHAT_MSG_WHISPER_INFORM\"]=true,\t--dont count, tie to 7\n\t[\"CHAT_MSG_CHANNEL\"]=true,\t\t--8\n\t[\"CHAT_MSG_BN_WHISPER\"]=true,\t--9\n\t[\"CHAT_MSG_BN_WHISPER_INFORM\"]=true,--dont count, tie to 9\n\t[\"CHAT_MSG_BN_CONVERSATION\"]=true,--10\n\t[\"CHAT_MSG_INSTANCE_CHAT\"]=true,--11\n\t[\"CHAT_MSG_INSTANCE_CHAT_LEADER\"]=true,--dont count, tie to 11\n\t[\"MAIL\"]=true,\n\t[\"TWITCHBUTTON\"]=true,\n\t[\"sliderX\"]=-35,\n\t[\"sliderY\"]=0,\n\t[\"MinimapPos\"] = 45,\n\t[\"MINIMAPBUTTON\"] = true,\n\t[\"FAVEMOTES\"] = {true,true,true,true,true,true,true,true,true,true,\n\ttrue,true,true,true,true,true,true,true,true,true,\n\ttrue,true,true,true,true,true,true,true,true,true,\n\ttrue,true,true,true,true,true}\n \n };\n Emoticons_Eyecandy = false;\n \n \n \n local origsettings = {\n\t[\"CHAT_MSG_OFFICER\"]=true,\n\t[\"CHAT_MSG_GUILD\"]=true,\n\t[\"CHAT_MSG_PARTY\"]=true,\n\t[\"CHAT_MSG_PARTY_LEADER\"]=true,\n\t[\"CHAT_MSG_PARTY_GUIDE\"]=true,\n\t[\"CHAT_MSG_RAID\"]=true,\n\t[\"CHAT_MSG_RAID_LEADER\"]=true,\n\t[\"CHAT_MSG_RAID_WARNING\"]=true,\n\t[\"CHAT_MSG_SAY\"]=true,\n\t[\"CHAT_MSG_YELL\"]=true,\n\t[\"CHAT_MSG_WHISPER\"]=true,\n\t[\"CHAT_MSG_WHISPER_INFORM\"]=true,\n\t[\"CHAT_MSG_BN_WHISPER\"]=true,\n\t[\"CHAT_MSG_BN_WHISPER_INFORM\"]=true,\n\t[\"CHAT_MSG_BN_CONVERSATION\"]=true,\n\t[\"CHAT_MSG_CHANNEL\"]=true,\n\t[\"CHAT_MSG_INSTANCE_CHAT\"]=true,\n\t[\"MAIL\"]=true,\n\t[\"TWITCHBUTTON\"]=true,\n\t[\"sliderX\"]=-35,\n\t[\"sliderY\"]=0,\n\t[\"MinimapPos\"] = 45,\n\t[\"MINIMAPBUTTON\"] = true,\n\t[\"FAVEMOTES\"] = {true,true,true,true,true,true,true,true,true,true,\n\ttrue,true,true,true,true,true,true,true,true,true,\n\ttrue,true,true,true,true,true,true,true,true,true,\n\ttrue,true,true,true,true,true}\n };\n \n local defaultpack={\n\t-- A_Seagull\n\t[\"seag1HP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seag1HP.tga:28:28\",\n\t[\"seag7\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seag7.tga:28:28\",\n\t[\"seagBAKA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagBAKA.tga:28:28\",\n\t[\"seagBAN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagBAN.tga:28:28\",\n\t[\"seagBox\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagBox.tga:28:28\",\n\t[\"seagBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagBruh.tga:28:28\",\n\t[\"seagC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagC.tga:28:28\",\n\t[\"seagCaw\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagCaw.tga:28:28\",\n\t[\"seagCHEEK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagCHEEK.tga:28:28\",\n\t[\"seagCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagCry.tga:28:28\",\n\t[\"seagDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagDerp.tga:28:28\",\n\t[\"seagDINO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagDINO.tga:28:28\",\n\t[\"seagEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagEZ.tga:28:28\",\n\t[\"seagFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagFeels.tga:28:28\",\n\t[\"seagFeelsG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagFeelsG.tga:28:28\",\n\t[\"seagFine\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagFine.tga:28:28\",\n\t[\"seagFIST\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagFIST.tga:28:28\",\n\t[\"seagGASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagGASM.tga:28:28\",\n\t[\"seagGotem\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagGotem.tga:28:28\",\n\t[\"seagH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagH.tga:28:28\",\n\t[\"seagHeals\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagHeals.tga:28:28\",\n\t[\"seagHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagHey.tga:28:28\",\n\t[\"seagHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagHug.tga:28:28\",\n\t[\"seagHYPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagHYPE.tga:28:28\",\n\t[\"seagJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagJ.tga:28:28\",\n\t[\"seagLATE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagLATE.tga:28:28\",\n\t[\"seagLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagLUL.tga:28:28\",\n\t[\"seagMei\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagMei.tga:28:28\",\n\t[\"seagNo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagNo.tga:28:28\",\n\t[\"seagPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagPog.tga:28:28\",\n\t[\"seagPUKE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagPUKE.tga:28:28\",\n\t[\"seagR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagR.tga:28:28\",\n\t[\"seagRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagRIP.tga:28:28\",\n\t[\"seagSG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagSG.tga:28:28\",\n\t[\"seagSMUSH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagSMUSH.tga:28:28\",\n\t[\"seagSPY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagSPY.tga:28:28\",\n\t[\"seagT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagT.tga:28:28\",\n\t[\"seagTracist\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagTracist.tga:28:28\",\n\t[\"seagW1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagW1.tga:28:28\",\n\t[\"seagW2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagW2.tga:28:28\",\n\t[\"seagWHY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagWHY.tga:28:28\",\n\t[\"seagWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\A_Seagull\\\\seagWTF.tga:28:28\",\n\t-- AdmiralBulldog\n\t[\"admiral1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiral1.tga:28:28\",\n\t[\"admiral2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiral2.tga:28:28\",\n\t[\"admiral3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiral3.tga:28:28\",\n\t[\"admiral4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiral4.tga:28:28\",\n\t[\"admiral6\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiral6.tga:28:28\",\n\t[\"admiralB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB.tga:28:28\",\n\t[\"admiralB1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB1.tga:28:28\",\n\t[\"admiralB2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB2.tga:28:28\",\n\t[\"admiralB3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB3.tga:28:28\",\n\t[\"admiralB4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB4.tga:28:28\",\n\t[\"admiralB5\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB5.tga:28:28\",\n\t[\"admiralB6\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB6.tga:28:28\",\n\t[\"admiralB7\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB7.tga:28:28\",\n\t[\"admiralB8\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB8.tga:28:28\",\n\t[\"admiralB9\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralB9.tga:28:28\",\n\t[\"admiralBackpack\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralBackpack.tga:28:28\",\n\t[\"admiralBanana\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralBanana.tga:28:28\",\n\t[\"admiralC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralC.tga:28:28\",\n\t[\"admiralCS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralCS.tga:28:28\",\n\t[\"admiralDong\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralDong.tga:28:28\",\n\t[\"admiralFedora\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralFedora.tga:28:28\",\n\t[\"admiralFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralFeels.tga:28:28\",\n\t[\"admiralGame\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralGame.tga:28:28\",\n\t[\"admiralHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralHappy.tga:28:28\",\n\t[\"admiralJebaited\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralJebaited.tga:28:28\",\n\t[\"admiralKawaii\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralKawaii.tga:28:28\",\n\t[\"admiralKristin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralKristin.tga:28:28\",\n\t[\"admiralLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralLove.tga:28:28\",\n\t[\"admiralNox\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralNox.tga:28:28\",\n\t[\"admiralPleb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralPleb.tga:28:28\",\n\t[\"admiralPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralPride.tga:28:28\",\n\t[\"admiralRapira\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralRapira.tga:28:28\",\n\t[\"admiralS4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralS4.tga:28:28\",\n\t[\"admiralS4CD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralS4CD.tga:28:28\",\n\t[\"admiralS4Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralS4Head.tga:28:28\",\n\t[\"admiralSellout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralSellout.tga:28:28\",\n\t[\"admiralSexy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralSexy.tga:28:28\",\n\t[\"admiralSkadoosh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralSkadoosh.tga:28:28\",\n\t[\"admiralSmart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralSmart.tga:28:28\",\n\t[\"admiralTI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralTI.tga:28:28\",\n\t[\"admiralW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBulldog\\\\admiralW.tga:28:28\",\n\t-- nymn\n\t[\"nymn0\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymn0.tga:28:28\",\n\t[\"nymn1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymn1.tga:28:28\",\n\t[\"nymn2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymn2.tga:28:28\",\n\t[\"nymn3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymn3.tga:28:28\",\n\t[\"nymn158\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymn158.tga:28:28\",\n\t[\"nymnA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnA.tga:28:28\",\n\t[\"nymnAww\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnAww.tga:28:28\",\n\t[\"nymnB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnB.tga:28:28\",\n\t[\"nymnBee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnBee.tga:28:28\",\n\t[\"nymnBenis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnBenis.tga:28:28\",\n\t[\"nymnC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnC.tga:28:28\",\n\t[\"nymnCaptain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCaptain.tga:28:28\",\n\t[\"nymnCD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCD.tga:28:28\",\n\t[\"nymnCozy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCozy.tga:28:28\",\n\t[\"nymnCREB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCREB.tga:28:28\",\n\t[\"nymnCringe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCringe.tga:28:28\",\n\t[\"nymnCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCry.tga:28:28\",\n\t[\"nymnDab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnDab.tga:28:28\",\n\t[\"nymnDeer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnDeer.tga:28:28\",\n\t[\"nymnE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnE.tga:28:28\",\n\t[\"nymnEU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnEU.tga:28:28\",\n\t[\"nymnEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnEZ.tga:28:28\",\n\t[\"nymnFlag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnFlag.tga:28:28\",\n\t[\"nymnFlick\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnFlick.tga:28:28\",\n\t[\"nymnG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnG.tga:28:28\",\n\t[\"nymnGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnGASM.tga:28:28\",\n\t[\"nymnGasp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnGasp.tga:28:28\",\n\t[\"nymnGnome\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnGnome.tga:28:28\",\n\t[\"nymnGold\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnGold.tga:28:28\",\n\t[\"nymnGolden\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnGolden.tga:28:28\",\n\t[\"nymnGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnGun.tga:28:28\",\n\t[\"nymnH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnH.tga:28:28\",\n\t[\"nymnHammer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnHammer.tga:28:28\",\n\t[\"nymnHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnHmm.tga:28:28\",\n\t[\"nymnHonk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnHonk.tga:28:28\",\n\t[\"nymnHydra\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnHYDRA.tga:28:28\",\n\t[\"nymnJoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnJoy.tga:28:28\",\n\t[\"nymnK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnK.tga:28:28\",\n\t[\"nymnKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnKek.tga:28:28\",\n\t[\"nymnKomrade\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnKomrade.tga:28:28\",\n\t[\"nymnL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnL.tga:28:28\",\n\t[\"nymnM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnM.tga:28:28\",\n\t[\"nymnNA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnNA.tga:28:28\",\n\t[\"nymnNo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnNO.tga:28:28\",\n\t[\"nymnNormie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnNormie.tga:28:28\",\n\t[\"nymnPains\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnPains.tga:28:28\",\n\t[\"nymnPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnPog.tga:28:28\",\n\t[\"nymnR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnR.tga:28:28\",\n\t[\"nymnRaffle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnRaffle.tga:28:28\",\n\t[\"nymnSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSad.tga:28:28\",\n\t[\"nymnScuffed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnScuffed.tga:28:28\",\n\t[\"nymnSmart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSmart.tga:28:28\",\n\t[\"nymnSmol\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSmol.tga:28:28\",\n\t[\"nymnZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnZ.tga:28:28\",\n\t[\"nymnSon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSon.tga:28:28\",\n\t[\"nymnSoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSoy.tga:28:28\",\n\t[\"nymnSpurdo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSpurdo.tga:28:28\",\n\t[\"nymnThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnThink.tga:28:28\",\n\t[\"nymnU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnU.tga:28:28\",\n\t[\"nymnV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnV.tga:28:28\",\n\t[\"nymnW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnW.tga:28:28\",\n\t[\"nymnWhy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnWHY.tga:28:28\",\n\t[\"nymnX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnX.tga:28:28\",\n\t[\"nymnXd1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnXd1.tga:28:28\",\n\t[\"nymnXD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnXD.tga:28:28\",\n\t[\"nymnY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnY.tga:28:28\",\n\t[\"nymnFEEDME\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnFEEDME.tga:28:28\",\n\t[\"nymn2x\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymn2x.tga:28:28\",\n\t[\"nymnBiggus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnBiggus.tga:28:28\",\n\t[\"nymnBridge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnBridge.tga:28:28\",\n\t[\"nymnCC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnCC.tga:28:28\",\n\t[\"nymnElf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnElf.tga:28:28\",\n\t[\"nymnFood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnFood.tga:28:28\",\n\t[\"nymnKing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnKing.tga:28:28\",\n\t[\"nymnOkay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnOkay.tga:28:28\",\n\t[\"nymnP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnP.tga:28:28\",\n\t[\"nymnPuke\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnPuke.tga:28:28\",\n\t[\"nymnRupert\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnRupert.tga:28:28\",\n\t[\"nymnS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnS.tga:28:28\",\n\t[\"nymnSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSleeper.tga:28:28\",\n\t[\"nymnSmug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnSmug.tga:28:28\",\n\t[\"nymnStrong\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnStrong.tga:28:28\",\n\t[\"nymnTransparent\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nymn\\\\nymnTransparent.tga:28:28\",\n\t-- Alkaizerx\n\t[\"alkArmy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkArmy.tga:28:28\",\n\t[\"alkBG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkBG.tga:28:28\",\n\t[\"alkBorbs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkBorbs.tga:28:28\",\n\t[\"alkChoi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkChoi.tga:28:28\",\n\t[\"alkDio\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkDio.tga:28:28\",\n\t[\"alkEcks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkEcks.tga:28:28\",\n\t[\"alkFax\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkFax.tga:28:28\",\n\t[\"alkGuku\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkGuku.tga:28:28\",\n\t[\"alkJoocy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkJoocy.tga:28:28\",\n\t[\"alkJulbak\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkJulbak.tga:28:28\",\n\t[\"alkKayo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkKayo.tga:28:28\",\n\t[\"alkKrazy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkKrazy.tga:28:28\",\n\t[\"alkKrill\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkKrill.tga:28:28\",\n\t[\"alkMoost\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkMoost.tga:28:28\",\n\t[\"alkP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkP.tga:28:28\",\n\t[\"alkPeasemo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkPeasemo.tga:28:28\",\n\t[\"alkPlastic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkPlastic.tga:28:28\",\n\t[\"alkRoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkRoo.tga:28:28\",\n\t[\"alkKayo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkKayo.tga:28:28\",\n\t[\"alkSuper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkSuper.tga:28:28\",\n\t[\"alkUpset\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkUpset.tga:28:28\",\n\t[\"alkW1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkW1.tga:28:28\",\n\t[\"alkW2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkW2.tga:28:28\",\n\t[\"alkW3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkW3.tga:28:28\",\n\t[\"alkW4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkW4.tga:28:28\",\n\t[\"alkW5\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkW5.tga:28:28\",\n\t[\"alkW6\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkW6.tga:28:28\",\n\t[\"alkXD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkXD.tga:28:28\",\n\t[\"alkPopo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alkaizerx\\\\alkPopo.tga:28:28\",\n\t-- AndyMilonakis\n\t[\"amiloAmazing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloAmazing.tga:28:28\",\n\t[\"amiloAnnoyed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloAnnoyed.tga:28:28\",\n\t[\"amiloBars\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloBars.tga:28:28\",\n\t[\"amiloCallers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloCallers.tga:28:28\",\n\t[\"amiloCrackhead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloCrackhead.tga:28:28\",\n\t[\"amiloDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloDerp.tga:28:28\",\n\t[\"amiloFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloFeels.tga:28:28\",\n\t[\"amiloGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloGasm.tga:28:28\",\n\t[\"amiloGOAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloGOAT.tga:28:28\",\n\t[\"amiloHeyGuys\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloHeyGuys.tga:28:28\",\n\t[\"amiloIcedT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloIcedT.tga:28:28\",\n\t[\"amiloLeaked\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloLeaked.tga:28:28\",\n\t[\"amiloLeech\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloLeech.tga:28:28\",\n\t[\"amiloLive\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloLive.tga:28:28\",\n\t[\"amiloLul\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloLul.tga:28:28\",\n\t[\"amiloMeow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloMeow.tga:28:28\",\n\t[\"amiloPhoto\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloPhoto.tga:28:28\",\n\t[\"amiloRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloRage.tga:28:28\",\n\t[\"amiloRip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloRip.tga:28:28\",\n\t[\"amiloRun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloRun.tga:28:28\",\n\t[\"amiloSabaPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloSabaPride.tga:28:28\",\n\t[\"amiloSaved\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloSaved.tga:28:28\",\n\t[\"amiloStare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloStare.tga:28:28\",\n\t[\"amiloTriheart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloTriheart.tga:28:28\",\n\t[\"amiloWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AndyMilonakis\\\\amiloWut.tga:28:28\",\n\t-- AnnieFuchsia\n\t[\"anniesBob\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesBob.tga:28:28\",\n\t[\"anniesCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesCreep.tga:28:28\",\n\t[\"anniesCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesCry.tga:28:28\",\n\t[\"anniesE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesE.tga:28:28\",\n\t[\"anniesFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesFeels.tga:28:28\",\n\t[\"anniesFF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesFF.tga:28:28\",\n\t[\"anniesFuchsia\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesFuchsia.tga:28:28\",\n\t[\"anniesG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesG.tga:28:28\",\n\t[\"anniesGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesGun.tga:28:28\",\n\t[\"anniesH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesH.tga:28:28\",\n\t[\"anniesHAA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesHAA.tga:28:28\",\n\t[\"anniesHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesHi.tga:28:28\",\n\t[\"anniesHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesHype.tga:28:28\",\n\t[\"anniesL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesL.tga:28:28\",\n\t[\"anniesLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesLurk.tga:28:28\",\n\t[\"anniesRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesRage.tga:28:28\",\n\t[\"anniesShrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesShrug.tga:28:28\",\n\t[\"anniesShy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesShy.tga:28:28\",\n\t[\"anniesSkal\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesSkal.tga:28:28\",\n\t[\"anniesSmug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesSmug.tga:28:28\",\n\t[\"anniesThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesThink.tga:28:28\",\n\t[\"anniesTibbers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesTibbers.tga:28:28\",\n\t[\"anniesW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AnnieFuchsia\\\\anniesW.tga:28:28\",\n\t-- Mizkif\n\t[\"mizkif4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkif4.tga:28:28\",\n\t[\"mizkifBlanket\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifBlanket.tga:28:28\",\n\t[\"mizkifBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifBruh.tga:28:28\",\n\t[\"mizkifC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifC.tga:28:28\",\n\t[\"mizkifCorn\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifCorn.tga:28:28\",\n\t[\"mizkifCozy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifCozy.tga:28:28\",\n\t[\"mizkifCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifCry.tga:28:28\",\n\t[\"mizkifCup\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifCup.tga:28:28\",\n\t[\"mizkifD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifD.tga:28:28\",\n\t[\"mizkifDank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifDank.tga:28:28\",\n\t[\"mizkifDedo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifDedo.tga:28:28\",\n\t[\"mizkifDent\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifDent.tga:28:28\",\n\t[\"mizkifE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifE.tga:28:28\",\n\t[\"mizkifEgg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifEgg.tga:28:28\",\n\t[\"mizkifEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifEZ.tga:28:28\",\n\t[\"mizkifFancy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifFancy.tga:28:28\",\n\t[\"mizkifFeelsBadMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifFeelsBadMan.tga:28:28\",\n\t[\"mizkifG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifG.tga:28:28\",\n\t[\"mizkifGEgg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifGEgg.tga:28:28\",\n\t[\"mizkifGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifGasm.tga:28:28\",\n\t[\"mizkifH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifH.tga:28:28\",\n\t[\"mizkifHA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifHA.tga:28:28\",\n\t[\"mizkifHand\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifHand.tga:28:28\",\n\t[\"mizkifHead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifHead.tga:28:28\",\n\t[\"mizkifHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifHug.tga:28:28\",\n\t[\"mizkifHugs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifHugs.tga:28:28\",\n\t[\"mizkifJif\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifJif.tga:28:28\",\n\t[\"mizkifKid\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifKid.tga:28:28\",\n\t[\"mizkifOkay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifOkay.tga:28:28\",\n\t[\"mizkifPeepo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifPeepo.tga:28:28\",\n\t[\"mizkifPega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifPega.tga:28:28\",\n\t[\"mizkifPls\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifPls.tga:28:28\",\n\t[\"mizkifPoke\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifPoke.tga:28:28\",\n\t[\"mizkifRain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifRain.tga:28:28\",\n\t[\"mizkifREE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifREE.tga:28:28\",\n\t[\"mizkifS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifS.tga:28:28\",\n\t[\"mizkifSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifSad.tga:28:28\",\n\t[\"mizkifSip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifSip.tga:28:28\",\n\t[\"mizkifThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifThink.tga:28:28\",\n\t[\"mizkifU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifU.tga:28:28\",\n\t[\"mizkifV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifV.tga:28:28\",\n\t[\"mizkifW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifW.tga:28:28\",\n\t[\"mizkifWC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifWC.tga:28:28\",\n\t[\"mizkifWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifWeird.tga:28:28\",\n\t[\"mizkifY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Mizkif\\\\mizkifY.tga:28:28\",\n\t-- Arteezy\n\t[\"rtzAomine\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzAomine.tga:28:28\",\n\t[\"rtzB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzB.tga:28:28\",\n\t[\"rtzBayed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzBayed.tga:28:28\",\n\t[\"rtzDX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzDX.tga:28:28\",\n\t[\"rtzFail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzFail.tga:28:28\",\n\t[\"rtzGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzGasm.tga:28:28\",\n\t[\"rtzGetEm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzGetEm.tga:28:28\",\n\t[\"rtzHehe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzHehe.tga:28:28\",\n\t[\"rtzHippo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzHippo.tga:28:28\",\n\t[\"rtzKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzKappa.tga:28:28\",\n\t[\"rtzLike\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzLike.tga:28:28\",\n\t[\"rtzLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzLUL.tga:28:28\",\n\t[\"rtzM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzM.tga:28:28\",\n\t[\"rtzP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzP.tga:28:28\",\n\t[\"rtzS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzS.tga:28:28\",\n\t[\"rtzSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzSad.tga:28:28\",\n\t[\"rtzSlayer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzSlayer.tga:28:28\",\n\t[\"rtzSmooth\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzSmooth.tga:28:28\",\n\t[\"rtzThinking\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzThinking.tga:28:28\",\n\t[\"rtzW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzW.tga:28:28\",\n\t[\"rtzW1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzW1.tga:28:28\",\n\t[\"rtzW2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzW2.tga:28:28\",\n\t[\"rtzW3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzW3.tga:28:28\",\n\t[\"rtzW4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzW4.tga:28:28\",\n\t[\"rtzXD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Arteezy\\\\rtzWXD.tga:28:28\",\n\t-- Asmongold\n\t[\"asmon1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmon1.tga:28:28\",\n\t[\"asmon2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmon2.tga:28:28\",\n\t[\"asmon3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmon3.tga:28:28\",\n\t[\"asmon4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmon4.tga:28:28\",\n\t[\"asmonC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonC.tga:28:28\",\n\t[\"asmonCD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonCD.tga:28:28\",\n\t[\"asmonD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonD.tga:28:28\",\n\t[\"asmonDad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonDad.tga:28:28\",\n\t[\"asmonDegen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonDegen.tga:28:28\",\n\t[\"asmonG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonG.tga:28:28\",\n\t[\"asmonGASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonGASM.tga:28:28\",\n\t[\"asmonGet\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonGet.tga:28:28\",\n\t[\"asmonL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonL.tga:28:28\",\n\t[\"asmonLFR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonLFR.tga:28:28\",\n\t[\"asmonLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonLove.tga:28:28\",\n\t[\"asmonM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonM.tga:28:28\",\n\t[\"asmonPray\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonPray.tga:28:28\",\n\t[\"asmonTiger\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonTiger.tga:28:28\",\n\t[\"asmonUH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonUH.tga:28:28\",\n\t[\"asmonW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonW.tga:28:28\",\n\t[\"asmonDaze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonDaze.tga:28:28\",\n\t[\"asmonE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonE.tga:28:28\",\n\t[\"asmonE1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonE1.tga:28:28\",\n\t[\"asmonE2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonE2.tga:28:28\",\n\t[\"asmonE3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonE3.tga:28:28\",\n\t[\"asmonE4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonE4.tga:28:28\",\n\t[\"asmonFiend\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonFiend.tga:28:28\",\n\t[\"asmonHide\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonHide.tga:28:28\",\n\t[\"asmonLong1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonLong1.tga:28:28\",\n\t[\"asmonLong2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonLong2.tga:28:28\",\n\t[\"asmonLong3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonLong3.tga:28:28\",\n\t[\"asmonLong4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonLong4.tga:28:28\",\n\t[\"asmonM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonM.tga:28:28\",\n\t[\"asmonOcean\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonOcean.tga:28:28\",\n\t[\"asmonOrc\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonOrc.tga:28:28\",\n\t[\"asmonTar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonTar.tga:28:28\",\n\t[\"asmonP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonP.tga:28:28\",\n\t[\"asmonPrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonPrime.tga:28:28\",\n\t[\"asmonR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonR.tga:28:28\",\n\t[\"asmonSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonSad.tga:28:28\",\n\t[\"asmonREE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonREE.tga:28:28\",\n\t[\"asmonStare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonStare.tga:28:28\",\n\t[\"asmonWHAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonWHAT.tga:28:28\",\n\t[\"asmonWHATR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonWHATR.tga:28:28\",\n\t[\"asmonWOW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Asmongold\\\\asmonWOW.tga:28:28\",\n\t-- AvoidingThePuddle\n\t[\"atpChar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpChar.tga:28:28\",\n\t[\"atpCop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpCop.tga:28:28\",\n\t[\"atpDog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpDog.tga:28:28\",\n\t[\"atpFeelsBeardMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpFeelsBeardMan.tga:28:28\",\n\t[\"atpGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpGasm.tga:28:28\",\n\t[\"atpHorns\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpHorns.tga:28:28\",\n\t[\"atpIzza\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpIzza.tga:28:28\",\n\t[\"atpLaw\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpLaw.tga:28:28\",\n\t[\"atpLook\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpLook.tga:28:28\",\n\t[\"atpRtsd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpRtsd.tga:28:28\",\n\t[\"atpRtsd1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpRtsd1.tga:28:28\",\n\t[\"atpRtsd2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpRtsd2.tga:28:28\",\n\t[\"atpRtsd3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpRtsd3.tga:28:28\",\n\t[\"atpRtsd4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpRtsd4.tga:28:28\",\n\t[\"atpShh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpShh.tga:28:28\",\n\t[\"atp1000\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atp1000.tga:28:28\",\n\t[\"atpSolid\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpSolid.tga:28:28\",\n\t[\"atpStude\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpStude.tga:28:28\",\n\t[\"atpToiler\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpToiler.tga:28:28\",\n\t[\"atpWind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AvoidingThePuddle\\\\atpWind.tga:28:28\",\n\t-- B0aty\n\t[\"boatyVV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVV.tga:28:28\",\n\t[\"boatyVV1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVV1.tga:28:28\",\n\t[\"boatyVV2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVV2.tga:28:28\",\n\t[\"boatyVV3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVV3.tga:28:28\",\n\t[\"boatyVV4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVV4.tga:28:28\",\n\t[\"boaty1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boaty1.tga:28:28\",\n\t[\"boaty2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boaty2.tga:28:28\",\n\t[\"boatyBack2uni\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyBack2uni.tga:28:28\",\n\t[\"boatyBBS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyBBS.tga:28:28\",\n\t[\"boatyBoss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyBoss.tga:28:28\",\n\t[\"boatyBpapter\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyBpapter.tga:28:28\",\n\t[\"boatyC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyC.tga:28:28\",\n\t[\"boatyCaged1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyCaged1.tga:28:28\",\n\t[\"boatyCaged2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyCaged2.tga:28:28\",\n\t[\"boatyCheeky\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyCheeky.tga:28:28\",\n\t[\"boatyCLANG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyClang.tga:28:28\",\n\t[\"boatyCoco\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyCoco.tga:28:28\",\n\t[\"boatyCreeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyCreeper.tga:28:28\",\n\t[\"boatyD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyD.tga:28:28\",\n\t[\"boatyDG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyDG.tga:28:28\",\n\t[\"boatyDrugs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyDrugs.tga:28:28\",\n\t[\"boatyDW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyDW.tga:28:28\",\n\t[\"boatyEisonhower\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyEisonhower.tga:28:28\",\n\t[\"boatyEraze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyEraze.tga:28:28\",\n\t[\"boatyFGingerM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyFGingerM.tga:28:28\",\n\t[\"boatyG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyG.tga:28:28\",\n\t[\"boatyGACHI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyGACHI.tga:28:28\",\n\t[\"boatyGoldenDrugs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyGoldenDrugs.tga:28:28\",\n\t[\"boatyH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyH.tga:28:28\",\n\t[\"boatyHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyHands.tga:28:28\",\n\t[\"boatyIQ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyIQ.tga:28:28\",\n\t[\"boatyKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyKappa.tga:28:28\",\n\t[\"boatyLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyLove.tga:28:28\",\n\t[\"boatyLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyLurk.tga:28:28\",\n\t[\"boatyMC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyMC.tga:28:28\",\n\t[\"boatyMicMuted\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyMicMuted.tga:28:28\",\n\t[\"boatyMilk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyMilk.tga:28:28\",\n\t[\"boatyNK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyNK.tga:28:28\",\n\t[\"boatyPENNY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyPENNY.tga:28:28\",\n\t[\"boatyR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyR.tga:28:28\",\n\t[\"boatyS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyS.tga:28:28\",\n\t[\"boatySELLOUT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySELLOUT.tga:28:28\",\n\t[\"boatySire\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySire.tga:28:28\",\n\t[\"boatySMORK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySMORK.tga:28:28\",\n\t[\"boatySpecs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySpecs.tga:28:28\",\n\t[\"boatySS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySS.tga:28:28\",\n\t[\"boatySTARE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySTARE.tga:28:28\",\n\t[\"boatySwag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatySwag.tga:28:28\",\n\t[\"boatyThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyThump.tga:28:28\",\n\t[\"boatyToucan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyToucan.tga:28:28\",\n\t[\"boatyTroll\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyTroll.tga:28:28\",\n\t[\"boatyU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyU.tga:28:28\",\n\t[\"boatyVV7\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVV7.tga:28:28\",\n\t[\"boatyVVomo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVVomo.tga:28:28\",\n\t[\"boatyVVW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyVVW.tga:28:28\",\n\t[\"boatyW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyW.tga:28:28\",\n\t[\"boatyWahey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyWahey.tga:28:28\",\n\t[\"boatyWhale\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\B0aty\\\\boatyWhale.tga:28:28\",\n\t-- BobRoss\n\t[\"bobrossBeli\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossBeli.tga:28:28\",\n\t[\"bobrossBrush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossBrush.tga:28:28\",\n\t[\"bobrossCabin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCabin.tga:28:28\",\n\t[\"bobrossCanvas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCanvas.tga:28:28\",\n\t[\"bobrossCanvasA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCanvasA.tga:28:28\",\n\t[\"bobrossCanvasB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCanvasB.tga:28:28\",\n\t[\"bobrossCanvasH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCanvasH.tga:28:28\",\n\t[\"bobrossCanvasP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCanvasP.tga:28:28\",\n\t[\"bobrossChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossChamp.tga:28:28\",\n\t[\"bobrossCloud\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCloud.tga:28:28\",\n\t[\"bobrossCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossCool.tga:28:28\",\n\t[\"bobrossEve\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossEve.tga:28:28\",\n\t[\"bobrossFan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossFan.tga:28:28\",\n\t[\"bobrossFence\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossFence.tga:28:28\",\n\t[\"bobrossFree\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossFree.tga:28:28\",\n\t[\"bobrossGG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossGG.tga:28:28\",\n\t[\"bobrossHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossHappy.tga:28:28\",\n\t[\"bobrossKappaR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossKappaR.tga:28:28\",\n\t[\"bobrossMeta\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossMeta.tga:28:28\",\n\t[\"bobrossMini\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossMini.tga:28:28\",\n\t[\"bobrossMnt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossMnt.tga:28:28\",\n\t[\"bobrossNED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossNED.tga:28:28\",\n\t[\"bobrossOPKnife\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossOPKnife.tga:28:28\",\n\t[\"bobrossPal\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossPal.tga:28:28\",\n\t[\"bobrossRUI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossRUI.tga:28:28\",\n\t[\"bobrossSaved\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossSaved.tga:28:28\",\n\t[\"bobrossSq\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossSq.tga:28:28\",\n\t[\"bobrossTap\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossTap.tga:28:28\",\n\t[\"bobrossTree\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossTree.tga:28:28\",\n\t[\"bobrossVHS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BobRoss\\\\bobrossVHS.tga:28:28\",\n\t-- BTTV+FFZ\n\t[\"emDface\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\emDface.tga:28:28\",\n\t[\"D:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\emDface.tga:28:28\",\n\t[\"4HEad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\4HEad.tga:28:28\",\n\t[\"BBona\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\BBona.tga:28:28\",\n\t[\"bUrself\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\bUrself.tga:28:28\",\n\t[\"ChogPamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\ChogPamp.tga:28:28\",\n\t[\"CiGrip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\CiGrip.tga:32:32\",\n\t[\"ConcernDoge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\ConcernDoge.tga:28:28\",\n\t[\"DogeWitIt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\DogeWitIt.tga:28:28\",\n\t[\"eShrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\eShrug.tga:32:64\",\n\t[\"FapFapFap\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\FapFapFap.tga:28:28\",\n\t[\"FishMoley\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\FishMoley.tga:28:56\",\n\t[\"ForeverAlone\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\ForeverAlone.tga:28:28\",\n\t[\"FuckYea\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\FuckYea.tga:28:56\",\n\t[\"GabeN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\GabeN.tga:28:28\",\n\t[\"gachiGASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\gachiGASM.tga:28:28\",\n\t[\"haHAA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\haHAA.tga:28:28\",\n\t[\"HammerTime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\HammerTime.tga:28:28\",\n\t[\"HandsUp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\HandsUp.tga:28:56\",\n\t[\"HerbPerve\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\HerbPerve.tga:28:28\",\n\t[\"Hhhehehe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Hhhehehe.tga:28:28\",\n\t[\"HYPERBRUH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\HYPERBRUH.tga:28:28\",\n\t[\"HYPERTHONK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\HYPERTHONK.tga:28:28\",\n\t[\"Kaged\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Kaged.tga:28:28\",\n\t[\"Kermitpls\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Kermitpls.tga:28:28\",\n\t[\"KKomrade\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\KKomrade.tga:28:28\",\n\t[\"KK0na\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\KKona.tga:32:32\",\n\t[\"Krappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Krappa.tga:28:28\",\n\t[\"LilZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\LilZ.tga:28:28\",\n\t[\"LUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\LUL.tga:28:28\",\n\t[\"LULW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\LULW.tga:28:28\",\n\t[\"MEGALUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\MEGALUL.tga:28:28\",\n\t[\"MingLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\MingLuL.tga:28:28\",\n\t[\"NickyQ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\NickyQ.tga:28:28\",\n\t[\"NickyQW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\NickyQ.tga:64:64\",\n\t[\"OMEGALUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\OMEGALUL.tga:28:28\",\n\t[\"PagChomp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\PagChomp.tga:28:28\",\n\t[\"Thonk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Thonk.tga:28:28\",\n\t[\"VapeNation\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\VapeNation.tga:28:28\",\n\t[\"weSmart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\weSmart.tga:28:28\",\n\t[\"ZULUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\ZULUL.tga:28:28\",\n\t[\"ZULOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\ZULOL.tga:28:28\",\n\t[\"PowerUpL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\PowerUpL.tga:28:28\",\n\t[\"PowerUpR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\PowerUpR.tga:28:28\",\n\t[\"Wowee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Wowee.tga:28:28\",\n\t[\"tooDank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\tooDank.tga:56:28\",\n\t[\"Kapp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\BTTV+FFZ\\\\Kapp.tga:28:28\",\n\t-- C9Sneaky\n\t[\"sneakyBoost\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyBoost.tga:28:28\",\n\t[\"sneakyBug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyBug.tga:28:28\",\n\t[\"sneakyByfar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyByfar.tga:28:28\",\n\t[\"sneakyC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyC.tga:28:28\",\n\t[\"sneakyChair\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyChair.tga:28:28\",\n\t[\"sneakyChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyChamp.tga:28:28\",\n\t[\"sneakyCheese\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyCheese.tga:28:28\",\n\t[\"sneakyClap\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyClap.tga:28:28\",\n\t[\"sneakyClaus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyClaus.tga:28:28\",\n\t[\"sneakyCup\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyCup.tga:28:28\",\n\t[\"sneakyE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyE.tga:28:28\",\n\t[\"sneakyEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyEZ.tga:28:28\",\n\t[\"sneakyFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyFace.tga:28:28\",\n\t[\"sneakyFedora\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyFedora.tga:28:28\",\n\t[\"sneakyFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyFeels.tga:28:28\",\n\t[\"sneakyFiesta\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyFiesta.tga:28:28\",\n\t[\"sneakyFun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyFun.tga:28:28\",\n\t[\"sneakyGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyGasm.tga:28:28\",\n\t[\"sneakyGold\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyGold.tga:28:28\",\n\t[\"sneakyGrip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyGrip.tga:28:28\",\n\t[\"sneakyHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyHey.tga:28:28\",\n\t[\"sneakyJack\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyJack.tga:28:28\",\n\t[\"sneakyLemon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyLemon.tga:28:28\",\n\t[\"sneakyLemon2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyLemon2.tga:28:28\",\n\t[\"sneakyLmao\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyLmao.tga:28:28\",\n\t[\"sneakyLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyLUL.tga:28:28\",\n\t[\"sneakyMeteos\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyMeteos.tga:28:28\",\n\t[\"sneakyMonte\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyMonte.tga:28:28\",\n\t[\"sneakyNLT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyNLT.tga:28:28\",\n\t[\"sneakyPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyPride.tga:28:28\",\n\t[\"sneakySame\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakySame.tga:28:28\",\n\t[\"sneakySick\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakySick.tga:28:28\",\n\t[\"sneakySoTroll\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakySoTroll.tga:28:28\",\n\t[\"sneakyW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyW.tga:28:28\",\n\t[\"sneakyWeeb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyWeeb.tga:28:28\",\n\t[\"sneakyWoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyWoo.tga:28:28\",\n\t[\"sneakyWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyWut.tga:28:28\",\n\t[\"sneakyYeehaw\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\C9Sneaky\\\\sneakyYeehaw.tga:28:28\",\n\t-- chinglishtv\n\t[\"chingA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingA.tga:28:28\",\n\t[\"chingAus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingAus.tga:28:28\",\n\t[\"chingBday\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingBday.tga:28:28\",\n\t[\"chingBinbash\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingBinbash.tga:28:28\",\n\t[\"chingChina\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingChina.tga:28:28\",\n\t[\"chingD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingD.tga:28:28\",\n\t[\"chingDad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingDad.tga:28:28\",\n\t[\"chingDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingDerp.tga:28:28\",\n\t[\"chingEdgy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingEdgy.tga:28:28\",\n\t[\"chingFour\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingFour.tga:28:28\",\n\t[\"chingHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingHey.tga:28:28\",\n\t[\"chingHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingHype.tga:28:28\",\n\t[\"chingKorea\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingKorea.tga:28:28\",\n\t[\"chingLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingLove.tga:28:28\",\n\t[\"chingLul\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingLul.tga:28:28\",\n\t[\"chingLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingLurk.tga:28:28\",\n\t[\"chingMate\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingMate.tga:28:28\",\n\t[\"chingOne\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingOne.tga:28:28\",\n\t[\"chingPanda\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingPanda.tga:28:28\",\n\t[\"chingRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingRage.tga:28:28\",\n\t[\"chingSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingSad.tga:28:28\",\n\t[\"chingSellout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingSellout.tga:28:28\",\n\t[\"chingTgi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingTgi.tga:28:28\",\n\t[\"chingThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingThink.tga:28:28\",\n\t[\"chingThree\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingThree.tga:28:28\",\n\t[\"chingTwo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingTwo.tga:28:28\",\n\t[\"chingUwot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingUwot.tga:28:28\",\n\t[\"chingWool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\chinglishtv\\\\chingWool.tga:28:28\",\n\t-- cdewx\n\t[\"dewD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewD.tga:28:28\",\n\t[\"dewDitch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewDitch.tga:28:28\",\n\t[\"dewDogs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewDogs.tga:28:28\",\n\t[\"dewEnergy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewEnergy.tga:28:28\",\n\t[\"dewG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewG.tga:28:28\",\n\t[\"dewKass\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewKass.tga:28:28\",\n\t[\"dewLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewLove.tga:28:28\",\n\t[\"dewLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewLUL.tga:28:28\",\n\t[\"dewMethod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewMethod.tga:28:28\",\n\t[\"dewMLG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewMLG.tga:28:28\",\n\t[\"dewPleb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewPleb.tga:28:28\",\n\t[\"dewRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewRage.tga:28:28\",\n\t[\"dewRise\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewRise.tga:28:28\",\n\t[\"dewS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewS.tga:28:28\",\n\t[\"dewSell\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewSell.tga:28:28\",\n\t[\"dewTrig\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewTrig.tga:28:28\",\n\t[\"dewVod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewVod.tga:28:28\",\n\t[\"dewW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewW.tga:28:28\",\n\t[\"dewWhip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewWhip.tga:28:28\",\n\t[\"dewYo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewYo.tga:28:28\",\n\t[\"dewBoosted\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewBoosted.tga:28:28\",\n\t[\"dewC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewC.tga:28:28\",\n\t[\"dewFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewFeels.tga:28:28\",\n\t[\"dewLurker\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewLurker.tga:28:28\",\n\t[\"dewM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewM.tga:28:28\",\n\t[\"dewMav\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewMav.tga:28:28\",\n\t[\"dewPrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewPrime.tga:28:28\",\n\t[\"dewR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewR.tga:28:28\",\n\t[\"dewSam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewSam.tga:28:28\",\n\t[\"dewTank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewTank.tga:28:28\",\n\t[\"dewThug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewThug.tga:28:28\",\n\t[\"dewTopCheer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewTopCheer.tga:28:28\",\n\t[\"dewTopD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewTopD.tga:28:28\",\n\t[\"dewToxic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewToxic.tga:28:28\",\n\t[\"dewTrophy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewTrophy.tga:28:28\",\n\t[\"dewWings\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewWings.tga:28:28\",\n\t[\"dewWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewWW.tga:28:28\",\n\t[\"dewYoink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\cdewx\\\\dewYoink.tga:28:28\",\n\t-- Sequisha\n\t[\"seqChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqChamp.tga:28:28\",\n\t[\"seqDag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqDag.tga:28:28\",\n\t[\"seqGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqGasm.tga:28:28\",\n\t[\"seqH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqH.tga:28:28\",\n\t[\"seqHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqHi.tga:28:28\",\n\t[\"seqHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqHmm.tga:28:28\",\n\t[\"seqOMG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqOMG.tga:28:28\",\n\t[\"seqPain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqPain.tga:28:28\",\n\t[\"seqW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sequisha\\\\seqW.tga:28:28\",\n\t-- ZubatLEL\n\t[\"zub3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zub3.tga:28:28\",\n\t[\"zub420SUBPOINTS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zub420SUBPOINTS.tga:28:28\",\n\t[\"zubAYAYA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubAYAYA.tga:28:28\",\n\t[\"zubBOYFRIEND\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubBOYFRIEND.tga:28:28\",\n\t[\"zubCOMFY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubCOMFY.tga:28:28\",\n\t[\"zubD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubD.tga:28:28\",\n\t[\"zubDERP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubDERP.tga:28:28\",\n\t[\"zubGEGZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubGEGZ.tga:28:28\",\n\t[\"zubHAMS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubHAMS.tga:28:28\",\n\t[\"zubHOWDY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubHOWDY.tga:28:28\",\n\t[\"zubHYPERMADDEST\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubHYPERMADDEST.tga:28:28\",\n\t[\"zubLOVE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubLOVE.tga:28:28\",\n\t[\"zubLURK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubLURK.tga:28:28\",\n\t[\"zubMAD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubMAD.tga:28:28\",\n\t[\"zubMEG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubMEG.tga:28:28\",\n\t[\"zubMILK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubMILK.tga:28:28\",\n\t[\"zubMINI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubMINI.tga:28:28\",\n\t[\"zubPFT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubPFT.tga:28:28\",\n\t[\"zubPIRATE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubPIRATE.tga:28:28\",\n\t[\"zubRICH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubRICH.tga:28:28\",\n\t[\"zubSAD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubSAD.tga:28:28\",\n\t[\"zubSIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubSIP.tga:28:28\",\n\t[\"zubSMILE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubSMILE.tga:28:28\",\n\t[\"zubSWEAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubSWEAT.tga:28:28\",\n\t[\"zubTUX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubTUX.tga:28:28\",\n\t[\"zubUWU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubUWU.tga:28:28\",\n\t[\"zubW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubW.tga:28:28\",\n\t[\"zubHARD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ZubatLEL\\\\zubHARD.tga:28:28\",\n\t-- EsfandTV\n\t[\"esfand0\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfand0.tga:28:28\",\n\t[\"esfand1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfand1.tga:28:28\",\n\t[\"esfand2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfand2.tga:28:28\",\n\t[\"esfand3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfand3.tga:28:28\",\n\t[\"esfand4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfand4.tga:28:28\",\n\t[\"esfand21\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfand21.tga:28:28\",\n\t[\"esfandAB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandAB.tga:28:28\",\n\t[\"esfandAK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandAK.tga:28:28\",\n\t[\"esfandBald\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandBald.tga:28:28\",\n\t[\"esfandBan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandBan.tga:28:28\",\n\t[\"esfandBless\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandBless.tga:28:28\",\n\t[\"esfandBrain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandBrain.tga:28:28\",\n\t[\"esfandBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandBruh.tga:28:28\",\n\t[\"esfandBubble\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandBubble.tga:28:28\",\n\t[\"esfandClassic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandClassic.tga:28:28\",\n\t[\"esfandDad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandDad.tga:28:28\",\n\t[\"esfandDPS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandDPS.tga:28:28\",\n\t[\"esfandGold\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandGold.tga:28:28\",\n\t[\"esfandH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandH.tga:28:28\",\n\t[\"esfandHearth\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandHearth.tga:28:28\",\n\t[\"esfandHog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandHog.tga:28:28\",\n\t[\"esfandL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandL.tga:28:28\",\n\t[\"esfandLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandLUL.tga:28:28\",\n\t[\"esfandN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandN.tga:28:28\",\n\t[\"esfandOkay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandOkay.tga:28:28\",\n\t[\"esfandPPF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandPPF.tga:28:28\",\n\t[\"esfandPrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandPrime.tga:28:28\",\n\t[\"esfandRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandRage.tga:28:28\",\n\t[\"esfandRet\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandRet.tga:28:28\",\n\t[\"esfandRetBull\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandRetBull.tga:28:28\",\n\t[\"esfandRetPill\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandRetPill.tga:28:28\",\n\t[\"esfandSlam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandSlam.tga:28:28\",\n\t[\"esfandT1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandT1.tga:28:28\",\n\t[\"esfandT2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandT2.tga:28:28\",\n\t[\"esfandT25\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandT25.tga:28:28\",\n\t[\"esfandTomato\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandTomato.tga:28:28\",\n\t[\"esfandTrash\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandTrash.tga:28:28\",\n\t[\"esfandWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandWTF.tga:28:28\",\n\t[\"esfandLW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandLW.tga:28:28\",\n\t[\"esfandRW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandRW.tga:28:28\",\n\t[\"esfandYou\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandYou.tga:28:28\",\n\t[\"esfandAre\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandAre.tga:28:28\",\n\t[\"esfandDead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\EsfandTV\\\\esfandDead.tga:28:28\",\n\t-- Custom\n\t[\"thinkioning\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\thinkioning.tga:28:28\",\n\t[\"JohnU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\JohnU.tga:28:28\",\n\t[\"Oodam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Oodam.tga:28:28\",\n\t[\"taureW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\taureW.tga:28:28\",\n\t[\"damilKiss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\damilKiss.tga:28:28\",\n\t[\"damilHerz\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\damilHerz.tga:28:28\",\n\t[\"AYAYA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\AYAYA.tga:28:28\",\n\t[\"bjornoVV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\bjornoVV.tga:28:28\",\n\t[\"bjornoVVona\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\bjornoVVona.tga:28:28\",\n\t[\"chupBro\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\chupBro.tga:28:28\",\n\t[\"chupDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\chupDerp.tga:28:28\",\n\t[\"chupHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\chupHappy.tga:28:28\",\n\t[\"Clap\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Clap.tga:28:28\",\n\t[\"cptfriHE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\cptfriHE.tga:28:28\",\n\t[\"Del\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Del.tga:28:28\",\n\t[\"ednasly\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\ednasly.tga:28:28\",\n\t[\"endANELE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endANELE.tga:28:28\",\n\t[\"endBomb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endBomb.tga:28:28\",\n\t[\"endCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endCreep.tga:28:28\",\n\t[\"endDawg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endDawg.tga:28:28\",\n\t[\"endFrench\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endFrench.tga:28:28\",\n\t[\"endHarambe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endHarambe.tga:28:28\",\n\t[\"endKyori\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endKyori.tga:28:28\",\n\t[\"endNotLikeThis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endNotLikeThis.tga:28:28\",\n\t[\"endRP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endRP.tga:28:28\",\n\t[\"endTrump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\endTrump.tga:28:28\",\n\t[\"FlipThis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\FlipThis.tga:28:28\",\n\t[\"fruitBug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\fruitBug.tga:28:28\",\n\t[\"LaurGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\LaurGasm.tga:28:28\",\n\t[\"lockOmegatayys\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\lockOmegatayys.tga:28:28\",\n\t[\"marcithDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\marcithDerp.tga:28:28\",\n\t[\"marcithMath\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\marcithMath.tga:28:28\",\n\t[\"monkeyS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\monkeyS.tga:28:28\",\n\t[\"oldmorDim\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\oldmorDim.tga:28:28\",\n\t[\"PogCena\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\PogCena.tga:28:28\",\n\t[\"selyihHEY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\selyihHEY.tga:28:28\",\n\t[\"SuicideThinking\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\SuicideThinking.tga:28:28\",\n\t[\"TableHere\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\TableHere.tga:28:28\",\n\t[\"tntLIDL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\tntLIDL.tga:28:28\",\n\t[\"WhatsLupp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\WhatsLupp.tga:28:28\",\n\t[\"wheezy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\wheezy.tga:28:28\",\n\t[\"DuckerZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\DuckerZ.tga:28:28\",\n\t[\"kargue\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\kargue.tga:28:28\",\n\t[\"kargueHD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\kargueHD.tga:28:28\",\n\t[\"kargueH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\kargueH.tga:28:28\",\n\t[\"kargueTip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\kargueTip.tga:28:28\",\n\t[\"jackblaze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\jackblaze.tga:28:28\",\n\t[\"THICCM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\THICCM.tga:28:28\",\n\t[\"ANEBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\ANEBruh.tga:28:28\",\n\t[\"scoM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\scoM.tga:28:28\",\n\t[\"scoHypers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\scoHypers.tga:28:28\",\n\t[\"scoPepeHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\scoPepeHands.tga:28:28\",\n\t[\"shrekSL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\shrekSL.tga:28:28\",\n\t[\"shrekSR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\shrekSR.tga:28:28\",\n\t[\"paaaaja\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\paaaajaW.tga:28:28\",\n\t[\"paaaajaW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\paaaajaW.tga:28:56\",\n\t[\"Porg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Porg.tga:28:28\",\n\t[\"Poog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Poog.tga:28:28\",\n\t[\"mastahFloor\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mastahFloor.tga:28:32\",\n\t[\":weed:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\XWeed.tga:28:28\",\n\t[\"PogCat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\PogCat.tga:28:28\",\n\t[\"ThisIsFine\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\ThisIsFine.tga:28:28\",\n\t[\"LOLW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\LOLW.tga:28:28\",\n\t[\"OMEGALOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\OMEGALOL.tga:28:28\",\n\t[\"pokiW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\pokiW.tga:28:28\",\n\t[\"AMAZIN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\AMAZIN.tga:28:28\",\n\t[\"Popoga\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Popoga.tga:28:28\",\n\t[\"JokerdTV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\JokerdTV.tga:28:28\",\n\t[\"drjayDepleto1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\drjayDepleto1.tga:28:28\",\n\t[\"drjayDepleto2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\drjayDepleto2.tga:28:28\",\n\t[\"gachiHYDRA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\gachiHYDRA.tga:28:28\",\n\t[\"HAhaa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\HAhaa.tga:28:28\",\n\t[\"HYPERBAITED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\HYPERBAITED.tga:28:28\",\n\t[\"JUSTDOIT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\JUSTDOIT.tga:28:28\",\n\t[\"Kappa420\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Kappa420.tga:28:28\",\n\t[\"Kappap\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Kappap.tga:28:28\",\n\t[\"PressF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\PressF.tga:28:28\",\n\t[\"ripChu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\ripChu.tga:28:28\",\n\t[\"OMEGABRUH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\OMEGABRUH.tga:28:28\",\n\t[\":blinking:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\ZBlinking.tga:32:32\",\n\t[\"woundGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\woundGasm.tga:28:28\",\n\t[\"SoBayed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\SoBayed.tga:28:28\",\n\t[\"jermaChomp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\jermaChomp.tga:28:28\",\n\t[\"Stonks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\Stonks.tga:32:28\",\n\t-- DansGaming -- Outdated\n\t[\"dan7\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\dan7.tga:28:28\",\n\t[\"dan10\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\dan10.tga:28:28\",\n\t[\"danBad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danBad.tga:28:28\",\n\t[\"danBoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danBoy.tga:28:28\",\n\t[\"danCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danCreep.tga:28:28\",\n\t[\"danCringe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danCringe.tga:28:28\",\n\t[\"danCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danCry.tga:28:28\",\n\t[\"danCute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danCute.tga:28:28\",\n\t[\"danDead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danDead.tga:28:28\",\n\t[\"danDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danDerp.tga:28:28\",\n\t[\"danDuck\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danDuck.tga:28:28\",\n\t[\"danGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danGasm.tga:28:28\",\n\t[\"danGasp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danGasp.tga:28:28\",\n\t[\"danGOTY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danGOTY.tga:28:28\",\n\t[\"danGrump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danGrump.tga:28:28\",\n\t[\"danHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danHype.tga:28:28\",\n\t[\"danLewd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danLewd.tga:28:28\",\n\t[\"danLol\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danLol.tga:28:28\",\n\t[\"danLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danLove.tga:28:28\",\n\t[\"danNo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danNo.tga:28:28\",\n\t[\"danPalm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danPalm.tga:28:28\",\n\t[\"danPoop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danPoop.tga:28:28\",\n\t[\"danPuzzle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danPuzzle.tga:28:28\",\n\t[\"danRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danRage.tga:28:28\",\n\t[\"danRekt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danRekt.tga:28:28\",\n\t[\"danSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danSad.tga:28:28\",\n\t[\"danScare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danScare.tga:28:28\",\n\t[\"danSexy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danSexy.tga:28:28\",\n\t[\"danTen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danTen.tga:28:28\",\n\t[\"danThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danThink.tga:28:28\",\n\t[\"danTrain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danTrain.tga:28:28\",\n\t[\"danWave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danWave.tga:28:28\",\n\t[\"danWoah\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danWoah.tga:28:28\",\n\t[\"danWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danWTF.tga:28:28\",\n\t[\"danYay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danYay.tga:28:28\",\n\t[\"danYes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DansGaming\\\\danYes.tga:28:28\",\n\t-- Datto\n\t[\"datto1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\datto1.tga:28:28\",\n\t[\"datto2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\datto2.tga:28:28\",\n\t[\"datto3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\datto3.tga:28:28\",\n\t[\"datto4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\datto4.tga:28:28\",\n\t[\"dattoA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoA.tga:28:28\",\n\t[\"dattoB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoB.tga:28:28\",\n\t[\"dattoCAWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoCAWW.tga:28:28\",\n\t[\"dattoDEAL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoDEAL.tga:28:28\",\n\t[\"dattoH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoH.tga:28:28\",\n\t[\"dattoHUH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoHUH.tga:28:28\",\n\t[\"dattoHYPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoHYPE.tga:28:28\",\n\t[\"dattoLEG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoLEG.tga:28:28\",\n\t[\"dattoLOVE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoLOVE.tga:28:28\",\n\t[\"dattoMASTER\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoMASTER.tga:28:28\",\n\t[\"dattoMC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoMC.tga:28:28\",\n\t[\"dattoN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoN.tga:28:28\",\n\t[\"dattoNC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoNC.tga:28:28\",\n\t[\"dattoP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoP.tga:28:28\",\n\t[\"dattoRAGE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoRAGE.tga:28:28\",\n\t[\"dattoSOAK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoSOAK.tga:28:28\",\n\t[\"dattoSTAR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoSTAR.tga:28:28\",\n\t[\"dattoTH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoTH.tga:28:28\",\n\t[\"dattoWF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Datto\\\\dattoWF.tga:28:28\",\n\t-- SivHD\n\t[\"siv1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\siv1.tga:28:28\",\n\t[\"siv2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\siv2.tga:28:28\",\n\t[\"sivBrushy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivBrushy.tga:28:28\",\n\t[\"sivContent\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivContent.tga:28:28\",\n\t[\"sivCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivCreep.tga:28:28\",\n\t[\"sivHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivHappy.tga:28:28\",\n\t[\"sivHW1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivHW1.tga:28:28\",\n\t[\"sivHW2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivHW2.tga:28:28\",\n\t[\"sivHW3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivHW3.tga:28:28\",\n\t[\"sivHW4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivHW4.tga:28:28\",\n\t[\"sivNEED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivNEED.tga:28:28\",\n\t[\"sivStare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivStare.tga:28:28\",\n\t[\"sivThiccS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivThiccS.tga:28:28\",\n\t[\"sivToot1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivToot1.tga:28:28\",\n\t[\"sivToot2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivToot2.tga:28:28\",\n\t[\"sivUnhappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivUnhappy.tga:28:28\",\n\t[\"sivWrath\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\SivHD\\\\sivWrath.tga:28:28\",\n\t-- Destiny\n\t[\"AUTISTINY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\AUTISTINY.tga:28:28\",\n\t[\"Blubstiny\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\Blubstiny.tga:28:28\",\n\t[\"Depresstiny\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\Depresstiny.tga:28:28\",\n\t[\"DestiSenpaii\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\DestiSenpaii.tga:28:28\",\n\t[\"Disgustiny\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\Disgustiny.tga:28:28\",\n\t[\"GODSTINY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\GODSTINY.tga:28:28\",\n\t[\"HmmStiny\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\HmmStiny.tga:28:28\",\n\t[\"Klappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\Klappa.tga:28:28\",\n\t[\"LeRuse\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\LeRuse.tga:28:28\",\n\t[\"Memegasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\Memegasm.tga:28:28\",\n\t[\"MLADY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\MLADY.tga:28:28\",\n\t[\"NOBULLY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\NOBULLY.tga:28:28\",\n\t[\"NoTears\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\NoTears.tga:28:28\",\n\t[\"OverRustle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\OverRustle.tga:28:28\",\n\t[\"PEPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\PEPE.tga:28:28\",\n\t[\"REE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\REE.tga:28:28\",\n\t[\"SURPRISE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\SURPRISE.tga:28:28\",\n\t[\"SWEATSTINY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\SWEATSTINY.tga:28:28\",\n\t[\"YEE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Destiny\\\\YEE.tga:28:28\",\n\t-- DrDisRespectLIVE\n\t[\"doctor2X\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctor2X.tga:28:28\",\n\t[\"doctorBANGS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorBANGS.tga:28:28\",\n\t[\"doctorBED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorBED.tga:28:28\",\n\t[\"doctorBEST\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorBEST.tga:28:28\",\n\t[\"doctorBlazer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorBlazer.tga:28:28\",\n\t[\"doctorBLESS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorBLESS.tga:28:28\",\n\t[\"doctorBUTTON\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorBUTTON.tga:28:28\",\n\t[\"doctorCOMB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorCOMB.tga:28:28\",\n\t[\"doctorCOMMITTED1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorCOMMITTED1.tga:28:28\",\n\t[\"doctorCOMMITTED2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorCOMMITTED2.tga:28:28\",\n\t[\"doctorDANCE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorDANCE.tga:28:28\",\n\t[\"doctorDIRECTOR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorDIRECTOR.tga:28:28\",\n\t[\"doctorDOCATI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorDOCATI.tga:28:28\",\n\t[\"doctorEAGLES\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorEAGLES.tga:28:28\",\n\t[\"doctorEAGLES2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorEAGLES2.tga:28:28\",\n\t[\"doctorEMBLEM1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorEMBLEM1.tga:28:28\",\n\t[\"doctorEMBLEM2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorEMBLEM2.tga:28:28\",\n\t[\"doctorEMBLEM3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorEMBLEM3.tga:28:28\",\n\t[\"doctorEMBLEM4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorEMBLEM4.tga:28:28\",\n\t[\"doctorGOLD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorGOLD.tga:28:28\",\n\t[\"doctorHANDSHAKE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorHANDSHAKE.tga:28:28\",\n\t[\"doctorJAWLINE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorJAWLINE.tga:28:28\",\n\t[\"doctorKAPPA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorKAPPA.tga:28:28\",\n\t[\"doctorKARATE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorKARATE.tga:28:28\",\n\t[\"doctorLAMBO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorLAMBO.tga:28:28\",\n\t[\"doctorLOCKER\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorLOCKER.tga:28:28\",\n\t[\"doctorMARBLEBAG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorMARBLEBAG.tga:28:28\",\n\t[\"doctorMOMENTUM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorMOMENTUM.tga:28:28\",\n\t[\"doctorNANA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorNANA.tga:28:28\",\n\t[\"doctorNOSEDRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorNOSEDRIP.tga:28:28\",\n\t[\"doctorPERFECT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorPERFECT.tga:28:28\",\n\t[\"doctorPRECISION\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorPRECISION.tga:28:28\",\n\t[\"doctorPUNK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorPUNK.tga:28:28\",\n\t[\"doctorREPLAY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorREPLAY.tga:28:28\",\n\t[\"doctorROBODOC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorROBODOC.tga:28:28\",\n\t[\"doctorSHOTGUN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSHOTGUN.tga:28:28\",\n\t[\"doctorSKI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSKI.tga:28:28\",\n\t[\"doctorSLICE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSLICE.tga:28:28\",\n\t[\"doctorSLICKDADDY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSLICKDADDY.tga:28:28\",\n\t[\"doctorSMC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSMC.tga:28:28\",\n\t[\"doctorSPLITS1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSPLITS1.tga:28:28\",\n\t[\"doctorSPLITS2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSPLITS2.tga:28:28\",\n\t[\"doctorSPRAY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSPRAY.tga:28:28\",\n\t[\"doctorSTARE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorSTARE.tga:28:28\",\n\t[\"doctorTONIC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorTONIC.tga:28:28\",\n\t[\"doctorTROPHY1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorTROPHY1.tga:28:28\",\n\t[\"doctorTROPHY2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorTROPHY2.tga:28:28\",\n\t[\"doctorTROPHY3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorTROPHY3.tga:28:28\",\n\t[\"doctorVASELINE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorVASELINE.tga:28:28\",\n\t[\"doctorWARCRY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorWARCRY.tga:28:28\",\n\t[\"doctorYAYA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\DrDisRespectLIVE\\\\doctorYAYA.tga:28:28\",\n\t-- Ducksauce\n\t[\"duckArthas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckArthas.tga:28:28\",\n\t[\"duckBA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckBA.tga:28:28\",\n\t[\"duckBarrel\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckBarrel.tga:28:28\",\n\t[\"duckBedHead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckBedHead.tga:28:28\",\n\t[\"duckBoop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckBoop.tga:28:28\",\n\t[\"duckCoffee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckCoffee.tga:28:28\",\n\t[\"duckDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckDerp.tga:28:28\",\n\t[\"duckDuckFlex\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckDuckFlex.tga:28:56\",\n\t[\"duckGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckGA.tga:28:28\",\n\t[\"duckMama\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckMama.tga:28:28\",\n\t[\"duckParty\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckParty.tga:28:28\",\n\t[\"duckPist\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckPist.tga:28:28\",\n\t[\"duckQuappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckQuappa.tga:28:28\",\n\t[\"duckSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckSad.tga:28:28\",\n\t[\"duckSkadoosh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckSkadoosh.tga:28:56\",\n\t[\"duckSpread\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckSpread.tga:28:28\",\n\t[\"duckTenTen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckTenTen.tga:28:56\",\n\t[\"duckTrain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckTrain.tga:28:28\",\n\t[\"duckZIN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Ducksauce\\\\duckZIN.tga:28:28\",\n\t-- Emojis\n\t[\"emBlush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emBlush.tga:28:28\",\n\t[\":blush:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emBlush.tga:28:28\",\n\t[\"emDoor\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emDoor.tga:28:28\",\n\t[\":door:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emDoor.tga:28:28\",\n\t[\"emGuitar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emGuitar.tga:28:28\",\n\t[\":guitar:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emGuitar.tga:28:28\",\n\t[\"emGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emGun.tga:28:28\",\n\t[\":gun:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emGun.tga:28:28\",\n\t[\"emJoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emJoy.tga:28:28\",\n\t[\":joy:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emJoy.tga:28:28\",\n\t[\"emMuscle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emMuscle.tga:28:28\",\n\t[\":muscle:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emMuscle.tga:28:28\",\n\t[\"emEyes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emEyes.tga:28:28\",\n\t[\":eyes:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emEyes.tga:28:28\",\n\t[\"emSweat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emSweat.tga:28:28\",\n\t[\":sweat_drops:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emSweat.tga:28:28\",\n\t[\"emPeach\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPeach.tga:28:28\",\n\t[\":peach:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPeach.tga:28:28\",\n\t[\"emWeary\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWeary.tga:28:28\",\n\t[\":weary:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWeary.tga:28:28\",\n\t[\"emTired\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emTired.tga:28:28\",\n\t[\":tired:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emTired.tga:28:28\",\n\t[\"emPointLeft\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPointLeft.tga:28:28\",\n\t[\":point_left:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPointLeft.tga:28:28\",\n\t[\"emWritingHand\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWritingHand.tga:28:28\",\n\t[\":writing_hand:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWritingHand.tga:28:28\",\n\t[\"emBook\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emBook.tga:28:28\",\n\t[\":book:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emBook.tga:28:28\",\n\t[\"emClock\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emClock.tga:28:28\",\n\t[\":clock:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emClock.tga:28:28\",\n\t[\"emCrab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emCrab.tga:28:28\",\n\t[\":crab:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emCrab.tga:28:28\",\n\t[\"emShrimp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emShrimp.tga:28:28\",\n\t[\":shrimp:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emShrimp.tga:28:28\",\n\t[\"emOkHand\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emOkHand.tga:28:28\",\n\t[\":ok_hand:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emOkHand.tga:28:28\",\n\t[\"emPhone\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPhone.tga:28:28\",\n\t[\":phone:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPhone.tga:28:28\",\n\t[\"emPointRight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPointRight.tga:28:28\",\n\t[\":point_right:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPointRight.tga:28:28\",\n\t[\"emRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emRage.tga:28:28\",\n\t[\":rage:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emRage.tga:28:28\",\n\t[\"emRat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emRat.tga:28:28\",\n\t[\":rat:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emRat.tga:28:28\",\n\t[\"emSunWithFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emSunWithFace.tga:28:28\",\n\t[\":sun_with_face:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emSunWithFace.tga:28:28\",\n\t[\"emThinking\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emThinking.tga:28:28\",\n\t[\":thinking:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emThinking.tga:28:28\",\n\t[\"emWheelchair\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWheelchair.tga:28:28\",\n\t[\":wheelchair:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWheelchair.tga:28:28\",\n\t[\"emPoop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPoop.tga:28:28\",\n\t[\":poop:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPoop.tga:28:28\",\n\t[\":eggplant:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emEggplant.tga:28:28\",\n\t[\":monkey:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emMonkey.tga:28:28\",\n\t[\":monkeyW:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emMonkey.tga:64:64\",\n\t[\":kiss:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emKiss.tga:28:28\",\n\t[\":oof:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emOof.tga:28:28\",\n\t[\":100:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\em100.tga:28:28\",\n\t[\":heart:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emHeart.tga:28:28\",\n\t[\":scroll:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emScroll.tga:28:28\",\n\t[\":mega:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emMega.tga:28:28\",\n\t[\":bell:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emBell.tga:28:28\",\n\t[\":rolling_eyes:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emRollingeyes.tga:28:28\",\n\t[\":chart_upwards:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emChartUpwards.tga:32:32\",\n\t[\":chart_downwards:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emChartDownwards.tga:32:32\",\n\t[\":smiley:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emSmiley.tga:28:28\",\n\t[\":wink:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWink.tga:28:28\",\n\t[\":smirk:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emSmirk.tga:28:28\",\n\t[\":cat:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emCat.tga:28:28\",\n\t[\":yum:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emYum.tga:28:28\",\n\t[\":eye:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emEye.tga:28:28\",\n\t[\":tongue:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emTongue.tga:28:28\",\n\t[\":unicorn:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emUnicorn.tga:28:28\",\n\t[\":zap:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emZap.tga:28:28\",\n\t[\":wine_glass:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emWine.tga:28:28\",\n\t[\":hand:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emHand.tga:28:28\",\n\t[\":pray:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPray.tga:28:28\",\n\t[\":question:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emQuestion.tga:28:28\",\n\t[\":crown:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emCrown.tga:28:28\",\n\t[\":dragon:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emDragon.tga:28:28\",\n\t[\":flush:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emFlushed.tga:28:28\",\n\t[\":point_up:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPointUp.tga:28:28\",\n\t[\":point_down:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emPointDown.tga:28:28\",\n\t[\":thumbsup:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emThumbsUp.tga:28:28\",\n\t[\":thumbsdown:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Emoji\\\\emThumbsDown.tga:28:28\",\n\t-- FinalBossTV\n\t[\"finalBAYCHA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalBAYCHA.tga:28:28\",\n\t[\"finalCLAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalCLAP.tga:28:28\",\n\t[\"finalDERP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalDERP.tga:28:28\",\n\t[\"finalDIDSOMEONESAY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalDIDSOMEONESAY.tga:28:28\",\n\t[\"finalDOOM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalDOOM.tga:28:28\",\n\t[\"finalFP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalFP.tga:28:28\",\n\t[\"finalFROST\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalFROST.tga:28:28\",\n\t[\"finalGAR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalGAR.tga:28:28\",\n\t[\"finalGASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalGASM.tga:28:28\",\n\t[\"finalGLAIVE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalGLAIVE.tga:28:28\",\n\t[\"finalGLOB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalGLOB.tga:28:28\",\n\t[\"finalTK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalTK.tga:28:28\",\n\t[\"finalKAPPA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalKAPPA.tga:28:28\",\n\t[\"finalLEFT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalLEFT.tga:28:28\",\n\t[\"finalLEWD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalLEWD.tga:28:28\",\n\t[\"finalLUSTISM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalLUSTISM.tga:28:28\",\n\t[\"finalPREPOT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalPREPOT.tga:28:28\",\n\t[\"finalRAGE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalRAGE.tga:28:28\",\n\t[\"finalRIGHT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalRIGHT.tga:28:28\",\n\t[\"finalSULF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalSULF.tga:28:28\",\n\t[\"finalTONE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\FinalBossTV\\\\finalTONE.tga:28:28\",\n\t-- Forsenlol\n\t[\"forsen1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsen1.tga:28:28\",\n\t[\"forsen2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsen2.tga:28:28\",\n\t[\"forsen3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsen3.tga:28:28\",\n\t[\"forsen4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsen4.tga:28:28\",\n\t[\"forsenBee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenBee.tga:28:28\",\n\t[\"forsenBanned\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenBanned.tga:28:28\",\n\t[\"forsenBoys\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenBoys.tga:28:28\",\n\t[\"forsenC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenC.tga:28:28\",\n\t[\"forsenCD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenCD.tga:28:28\",\n\t[\"forsenChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenChamp.tga:28:28\",\n\t[\"forsenClown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenClown.tga:28:28\",\n\t[\"forsenCpooky\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenCpooky.tga:28:28\",\n\t[\"forsenD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenD.tga:28:28\",\n\t[\"forsenDDK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenDDK.tga:28:28\",\n\t[\"forsenDED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenDED.tga:28:28\",\n\t[\"forsenDiglett\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenDiglett.tga:28:28\",\n\t[\"forsenE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenE.tga:28:28\",\n\t[\"forsenEmote\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenEmote.tga:28:28\",\n\t[\"forsenEmote2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenEmote2.tga:28:28\",\n\t[\"forsenFajita\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenFajita.tga:28:28\",\n\t[\"forsenFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenFeels.tga:28:28\",\n\t[\"forsenGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenGun.tga:28:28\",\n\t[\"forsenH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenH.tga:28:28\",\n\t[\"forsenHorsen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenHorsen.tga:28:28\",\n\t[\"forsenIQ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenIQ.tga:28:28\",\n\t[\"forsenKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenKek.tga:28:28\",\n\t[\"forsenKnife\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenKnife.tga:28:28\",\n\t[\"forsenL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenL.tga:28:28\",\n\t[\"forsenLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenLUL.tga:28:28\",\n\t[\"forsenLewd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenLewd.tga:28:28\",\n\t[\"forsenLooted\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenLooted.tga:28:28\",\n\t[\"forsenMoney\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenMoney.tga:28:28\",\n\t[\"forsenMonkey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenMonkey.tga:28:28\",\n\t[\"forsenO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenO.tga:28:28\",\n\t[\"forsenODO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenODO.tga:28:28\",\n\t[\"forsenOG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenOG.tga:28:28\",\n\t[\"forsenOP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenOP.tga:28:28\",\n\t[\"forsenPepe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPepe.tga:28:28\",\n\t[\"forsenPuke\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPuke.tga:28:28\",\n\t[\"forsenPuke2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPuke2.tga:28:28\",\n\t[\"forsenPuke3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPuke3.tga:28:28\",\n\t[\"forsenPuke4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPuke4.tga:28:28\",\n\t[\"forsenR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenR.tga:28:28\",\n\t[\"forsenRedSonic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenRedSonic.tga:28:28\",\n\t[\"forsenRP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenRP.tga:28:28\",\n\t[\"forsenS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenS.tga:28:28\",\n\t[\"forsenSS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSS.tga:28:28\",\n\t[\"forsenSambool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSambool.tga:28:28\",\n\t[\"forsenSheffy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSheffy.tga:28:28\",\n\t[\"forsenSkip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSkip.tga:28:28\",\n\t[\"forsenSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSleeper.tga:28:28\",\n\t[\"forsenStein\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenStein.tga:28:28\",\n\t[\"forsenSwag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSwag.tga:28:28\",\n\t[\"forsenT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenT.tga:28:28\",\n\t[\"forsenTriggered\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenTriggered.tga:28:28\",\n\t[\"forsenW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenW.tga:28:28\",\n\t[\"forsenWhip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWhip.tga:28:28\",\n\t[\"forsenWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWut.tga:28:28\",\n\t[\"forsenX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenX.tga:28:28\",\n\t[\"forsenY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenY.tga:28:28\",\n\t[\"forsenWC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWC.tga:28:28\",\n\t[\"forsenWC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWC.tga:28:28\",\n\t[\"forsenAYAYA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenAYAYA.tga:28:28\",\n\t[\"forsenAYOYO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenAYOYO.tga:28:28\",\n\t[\"forsenBlob\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenBlob.tga:28:28\",\n\t[\"forsenConnoisseur\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenConnoisseur.tga:28:28\",\n\t[\"forsenCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenCool.tga:28:28\",\n\t[\"forsenDab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenDab.tga:28:28\",\n\t[\"forsenDank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenDank.tga:28:28\",\n\t[\"forsenEcardo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenEcardo.tga:28:28\",\n\t[\"forsenFur\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenFur.tga:28:28\",\n\t[\"forsenG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenG.tga:28:28\",\n\t[\"forsenGa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenGa.tga:28:28\",\n\t[\"forsenGASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenGASM.tga:28:28\",\n\t[\"forsenGrill\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenGrill.tga:28:28\",\n\t[\"forsenHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenHappy.tga:28:28\",\n\t[\"forsenHead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenHead.tga:28:28\",\n\t[\"forsenHobo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenHobo.tga:28:28\",\n\t[\"forsenJoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenJoy.tga:28:28\",\n\t[\"forsenK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenK.tga:28:28\",\n\t[\"forsenKraken\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenKraken.tga:28:28\",\n\t[\"forsenLicence\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenLicence.tga:28:28\",\n\t[\"forsenLooted\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenLooted.tga:28:28\",\n\t[\"forsenM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenM.tga:28:28\",\n\t[\"forsenMald\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenMald.tga:28:28\",\n\t[\"forsenNam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenNam.tga:28:28\",\n\t[\"forsenP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenP.tga:28:28\",\n\t[\"forsenPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPog.tga:28:28\",\n\t[\"forsenPosture\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPosture.tga:28:28\",\n\t[\"forsenPosture1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPosture1.tga:28:28\",\n\t[\"forsenPosture2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPosture2.tga:28:28\",\n\t[\"forsenPuke5\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenPuke5.tga:28:28\",\n\t[\"forsenReally\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenReally.tga:28:28\",\n\t[\"forsenScoots\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenScoots.tga:28:28\",\n\t[\"forsenSith\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSith.tga:28:28\",\n\t[\"forsenSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenSmile.tga:28:28\",\n\t[\"forsenTILT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenTILT.tga:28:28\",\n\t[\"forsenWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWeird.tga:28:28\",\n\t[\"forsenWeird25\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWeird25.tga:28:28\",\n\t[\"forsenWhat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWhat.tga:28:28\",\n\t[\"forsenWitch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWitch.tga:28:28\",\n\t[\"forsenWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenWTF.tga:28:28\",\n\t[\"forsenYHD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Forsenlol\\\\forsenYHD.tga:28:28\",\n\t-- fragNance\n\t[\"fraggy1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggy1.tga:28:28\",\n\t[\"fraggy2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggy2.tga:28:28\",\n\t[\"fraggy3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggy3.tga:28:28\",\n\t[\"fraggy4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggy4.tga:28:28\",\n\t[\"fraggyBIG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyBIG.tga:28:28\",\n\t[\"fraggyFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyFeels.tga:28:28\",\n\t[\"fraggyGF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyGF.tga:28:28\",\n\t[\"fraggyHOOD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyHOOD.tga:28:28\",\n\t[\"fraggyKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyKappa.tga:28:28\",\n\t[\"fraggyL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyL.tga:28:28\",\n\t[\"fraggyLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyLUL.tga:28:28\",\n\t[\"fraggyMRC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyMRC.tga:28:28\",\n\t[\"fraggyPapii\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyPapii.tga:28:28\",\n\t[\"fraggyPLS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyPLS.tga:28:28\",\n\t[\"fraggySMASH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggySMASH.tga:28:28\",\n\t[\"fraggyTAUNT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyTAUNT.tga:28:28\",\n\t[\"fraggyTINK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyTINK.tga:28:28\",\n\t[\"fraggyW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\fragNance\\\\fraggyW.tga:28:28\",\n\t-- ggMarche\n\t[\"marcheChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheChamp.tga:28:28\",\n\t[\"marcheFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheFeels.tga:28:28\",\n\t[\"marcheHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheHey.tga:28:28\",\n\t[\"marcheHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheHype.tga:28:28\",\n\t[\"marcheKT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheKT.tga:28:28\",\n\t[\"marcheP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheP.tga:28:28\",\n\t[\"marcheRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheRage.tga:28:28\",\n\t[\"marcheRat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheRat.tga:28:28\",\n\t[\"marcheW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheW.tga:28:28\",\n\t[\"marcheY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ggMarche\\\\marcheY.tga:28:28\",\n\t-- Giantwaffle\n\t[\"waffleButch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleButch.tga:28:28\",\n\t[\"waffleChair\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleChair.tga:28:28\",\n\t[\"waffleCute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleCute.tga:28:28\",\n\t[\"waffleD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleD.tga:28:28\",\n\t[\"waffleDead\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleDead.tga:28:28\",\n\t[\"waffleFat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleFat.tga:28:28\",\n\t[\"waffleGrump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleGrump.tga:28:28\",\n\t[\"waffleHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleHeart.tga:28:28\",\n\t[\"waffleHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleHey.tga:28:28\",\n\t[\"waffleHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleHype.tga:28:28\",\n\t[\"waffleLily\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleLily.tga:28:28\",\n\t[\"waffleLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleLove.tga:28:28\",\n\t[\"waffleLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleLUL.tga:28:28\",\n\t[\"wafflePalm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\wafflePalm.tga:28:28\",\n\t[\"wafflePizza\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\wafflePizza.tga:28:28\",\n\t[\"wafflePride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\wafflePride.tga:28:28\",\n\t[\"waffleSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleSad.tga:28:28\",\n\t[\"waffleScared\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleScared.tga:28:28\",\n\t[\"waffleTen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleTen.tga:28:28\",\n\t[\"waffleYay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleYay.tga:28:28\",\n\t[\"waffleYes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Giantwaffle\\\\waffleYes.tga:28:28\",\n\t-- ZXValicera\n\t[\"monkaJail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\monkaJail.tga:28:28\",\n\t[\"raidspot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\raidspot.tga:28:28\",\n\t[\"raidspot2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\raidspot2.tga:28:28\",\n\t[\"negrowave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\valiwave.tga:28:28\",\n\t[\"negrorun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\valirun.tga:28:28\",\n\t[\"negromelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\valimelon.tga:28:56\",\n\t[\"negroJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\valijammies.tga:28:28\",\n\t[\"NOGGERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\NOGGERS.tga:28:28\",\n\t[\"NOGGERSW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\NOGGERS.tga:64:64\",\n\t[\"negroheart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\nheart.tga:28:28\",\n\t[\"nigduduk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\nigduduk.tga:28:28\",\n\t[\"FeelsNigMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\FeelsValiMan.tga:28:28\",\n\t[\"FeelsNigManW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\FeelsValiMan.tga:64:64\",\n\t[\"cmonHabibi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\cmonHabibi.tga:28:28\",\n\t[\"Ado\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\Ado.tga:28:28\",\n\t[\":yikes:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\yikes.tga:28:28\",\n\t[\"xfabray\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\xfabray.tga:28:28\",\n\t[\"xfabrayW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\xfabray.tga:64:64\",\n\t[\"xfabrayWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\xfabray.tga:128:128\",\n\t[\"ZXBenjovi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ZXBenjovi.tga:28:28\",\n\t[\"ZXBenjoviW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ZXBenjovi.tga:64:64\",\n\t[\"FeelsNewYear\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\FeelsNewYear.tga:28:28\",\n\t[\"FeelsXmasMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\FeelsXmasMan.tga:28:28\",\n\t[\"naowhDPS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\naowhDPS.tga:28:28\",\n\t[\"PepeLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\PepeLove.tga:28:28\",\n\t[\"PepeLoveW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\PepeLove.tga:64:64\",\n\t[\"peepoWoW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoWoW.tga:28:28\",\n\t[\"peepoRun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoRun.tga:28:28\",\n\t[\"peepoPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoPride.tga:28:28\",\n\t[\"peepoPrideW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoPride.tga:64:64\",\n\t[\"peepoJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoJammies.tga:28:28\",\n\t[\"pillowJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\pillowJammies.tga:28:28\",\n\t[\"xmasJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\xmasJammies.tga:28:28\",\n\t[\"halloweenJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\halloweenJammies.tga:28:28\",\n\t[\"ValiHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\valihands.tga:28:28\",\n\t[\"memebeam1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\memebeam1.tga:28:28\",\n\t[\"memebeam2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\memebeam2.tga:28:28\",\n\t[\"memebeam3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\memebeam3.tga:28:28\",\n\t[\"peepoVali\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoValicera.tga:28:28\",\n\t[\"peepoValiW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoValicera.tga:64:64\",\n\t[\"peepoValiWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoValicera.tga:128:128\",\n\t[\"peepoAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoAP.tga:28:28\",\n\t[\":AP:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\AP.tga:28:28\",\n\t[\"OMEGAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\OMEGAP.tga:28:28\",\n\t[\"PAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\PAP.tga:28:28\",\n\t[\"TriHAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\TriHap.tga:28:28\",\n\t[\"TriHAPW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\TriHAPW.tga:28:28\",\n\t[\"peepoBoomie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\Ranobae.tga:28:28\",\n\t[\"peepoNog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoNog.tga:28:28\",\n\t[\"OwlHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\OwlHey.tga:28:28\",\n\t[\"OwlLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\OwlLove.tga:28:28\",\n\t[\"Nog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\Nog.tga:28:28\",\n\t[\"FeelsPinkMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\FeelsPinkMan.tga:28:28\",\n\t[\"XMoophs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\XMoophs.tga:28:28\",\n\t[\"FeelsBlackMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\FeelsBlackMan.tga:28:28\",\n\t[\":pearls:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\Pearls.tga:28:28\",\n\t[\"gachiSLAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\gachiSLAP.tga:28:28\",\n\t[\"gachiSLAPW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\gachiSLAP.tga:64:64\",\n\t[\"ValiMonkey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiMonkey.tga:28:28\",\n\t[\":content:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\Content.tga:28:28\",\n\t[\"ValiMonkey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiMonkey.tga:28:28\",\n\t[\"ValiHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiHeart.tga:28:28\",\n\t[\"Valibae\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\Valibae.tga:28:28\",\n\t[\"ValiAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiAP.tga:28:28\",\n\t[\"ValiLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiLove.tga:28:28\",\n\t[\"ValiLoveW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiLove.tga:64:64\",\n\t[\":Axtaroth:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ZXNAxtaroth.tga:28:28\",\n\t[\"ValiCheer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiCheer.tga:28:28\",\n\t[\"ValiCheerW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiCheer.tga:64:64\",\n\t[\"ValiCheerWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiCheer.tga:128:128\",\n\t[\"ValiJAM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiJAM.tga:28:28\",\n\t[\"ValiJAMW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiJAM.tga:64:64\",\n\t[\"PepeBlyat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\PepeBlyat.tga:28:28\",\n\t[\"peepoShower\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoShower.tga:28:28\",\n\t[\"PCOGGERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\PCOGGERS.tga:28:28\",\n\t[\"ValiEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiEZ.tga:28:28\",\n\t[\"ValiGoodMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiGoodMan.tga:28:28\",\n\t[\"ValiceraJAM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiceraJAM.tga:28:28\",\n\t[\"ValiceraJAMW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiceraJAM.tga:64:64\",\n\t[\"ValiBadMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiBadMan.tga:28:28\",\n\t[\"ValiS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiS.tga:28:28\",\n\t[\"OwlHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\OwlHug.tga:28:28\",\n\t[\"ValiPrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiPrime.tga:32:32\",\n\t[\"ValiDeplete\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiDeplete.tga:32:32\",\n\t[\"VD1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\VD1.tga:32:32\",\n\t[\"VD2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\VD2.tga:32:32\",\n\t[\":Cyntos:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ZXCyntos.tga:32:32\",\n\t[\":Amigo:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ZXAmigo.tga:32:32\",\n\t[\"PepeAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\PepeAP.tga:32:32\",\n\t[\"monkaIris\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\monkaIris.tga:32:32\",\n\t[\"CatHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\CatHug.tga:32:32\",\n\t[\"CatHugJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\CatHugJammies.tga:32:32\",\n\t[\"CatJammies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\CatJammies.tga:32:32\",\n\t[\":Ocean:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\zxOcean.tga:32:32\",\n\t[\":Oceanbae:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\zxOceanbae.tga:32:32\",\n\t[\":Oceans:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\zxOceans.tga:32:32\",\n\t[\"NoggerGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiGun.tga:28:28\",\n\t[\"NigRetreat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\ValiH.tga:28:28\",\n\t[\"peepoPopcorn\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoPopcorn.tga:28:28\",\n\t[\"peepoOwl\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoOwl.tga:28:28\",\n\t[\"peepoCookie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoCookie.tga:28:28\",\n\t[\"peepoCola\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoCola.tga:28:28\",\n\t[\"peepoCoffee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoCoffee.tga:28:28\",\n\t[\"peepoChocolate\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoChocolate.tga:28:28\",\n\t[\"peepoMuffin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoMuffin.tga:28:28\",\n\t[\"peepoStarbucks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoStarbucks.tga:28:28\",\n\t[\"CWEIRD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\CWEIRD.tga:28:28\",\n\t-- h3h3productions\n\t[\"h3h3America\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3America.tga:28:28\",\n\t[\"h3h3Batman\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Batman.tga:28:28\",\n\t[\"h3h3Beauty\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Beauty.tga:28:28\",\n\t[\"h3h3Brett\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Brett.tga:28:28\",\n\t[\"h3h3Bye\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Bye.tga:28:28\",\n\t[\"h3h3Chocolate\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Chocolate.tga:28:28\",\n\t[\"h3h3Cough\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Cough.tga:28:28\",\n\t[\"h3h3Cringe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Cringe.tga:28:28\",\n\t[\"h3h3Ed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Ed.tga:28:28\",\n\t[\"h3h3Gy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Gy.tga:28:28\",\n\t[\"h3h3Hey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Hey.tga:28:28\",\n\t[\"h3h3Logo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Logo.tga:28:28\",\n\t[\"h3h3Oppression\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Oppression.tga:28:28\",\n\t[\"h3h3Organgod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Organgod.tga:28:28\",\n\t[\"h3h3Papabless\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Papabless.tga:28:28\",\n\t[\"h3h3Potatohila\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Potatohila.tga:28:28\",\n\t[\"h3h3Roasted1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Roasted1.tga:28:28\",\n\t[\"h3h3Roasted2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Roasted2.tga:28:28\",\n\t[\"h3h3Squat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Squat.tga:28:28\",\n\t[\"h3h3Triggered1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Triggered1.tga:28:28\",\n\t[\"h3h3Triggered2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Triggered2.tga:28:28\",\n\t[\"h3h3Triggered3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Triggered3.tga:28:28\",\n\t[\"h3h3Vape1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Vape1.tga:28:28\",\n\t[\"h3h3Vape2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Vape2.tga:28:28\",\n\t[\"h3h3Vape3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Vape3.tga:28:28\",\n\t[\"h3h3Vape4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Vape4.tga:28:28\",\n\t[\"h3h3Vapenation\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Vapenation.tga:28:28\",\n\t[\"h3h3Vapenaysh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Vapenaysh.tga:28:28\",\n\t[\"h3h3Wow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\h3h3productions\\\\h3h3Wow.tga:28:28\",\n\t-- Hey_Jase\n\t[\"jase1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jase1.tga:28:28\",\n\t[\"jase2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jase2.tga:28:28\",\n\t[\"jase3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jase3.tga:28:28\",\n\t[\"jase4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jase4.tga:28:28\",\n\t[\"jaseAA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseAA.tga:28:28\",\n\t[\"jaseAmazing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseAmazing.tga:28:28\",\n\t[\"jaseBye\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseBye.tga:28:28\",\n\t[\"jaseDemon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseDemon.tga:28:28\",\n\t[\"jaseFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseFeels.tga:28:28\",\n\t[\"jaseG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseG.tga:28:28\",\n\t[\"jaseH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseH.tga:28:28\",\n\t[\"jaseHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseHey.tga:28:28\",\n\t[\"jaseHiYo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseHiYo.tga:28:28\",\n\t[\"jaseMA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseMA.tga:28:28\",\n\t[\"jaseOh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseOh.tga:28:28\",\n\t[\"jasePls\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jasePls.tga:28:28\",\n\t[\"jaseRank2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseRank2.tga:28:28\",\n\t[\"jaseS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseS.tga:28:28\",\n\t[\"jaseSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseSad.tga:28:28\",\n\t[\"jaseSellout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseSellout.tga:28:28\",\n\t[\"jaseSkip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseSkip.tga:28:28\",\n\t[\"jaseTE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseTE.tga:28:28\",\n\t[\"jaseThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseThump.tga:28:28\",\n\t[\"jaseTune\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseTune.tga:28:28\",\n\t[\"jaseWave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hey_Jase\\\\jaseWave.tga:28:28\",\n\t-- Hirona\n\t[\"hiroCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroCry.tga:28:28\",\n\t[\"hiroDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroDerp.tga:28:28\",\n\t[\"hiroH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroH.tga:28:28\",\n\t[\"hiroHail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroHail.tga:28:28\",\n\t[\"hiroNo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroNo.tga:28:28\",\n\t[\"hiroP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroP.tga:28:28\",\n\t[\"hiroWave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroWave.tga:28:28\",\n\t[\"hiroWtf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hirona\\\\hiroWtf.tga:28:28\",\n\t-- HORSEPANTS\n\t[\"horseB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseB.tga:28:28\",\n\t[\"horseC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseC.tga:28:28\",\n\t[\"horseChu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseChu.tga:28:28\",\n\t[\"horseDank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseDank.tga:28:28\",\n\t[\"horseDva\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseDva.tga:28:28\",\n\t[\"horseEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseEZ.tga:28:28\",\n\t[\"horseFarez\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseFarez.tga:28:28\",\n\t[\"horseH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseH.tga:28:28\",\n\t[\"horseHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseHey.tga:28:28\",\n\t[\"horseLuldan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseLuldan.tga:28:28\",\n\t[\"horseMP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseMP.tga:28:28\",\n\t[\"horseORA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseORA.tga:28:28\",\n\t[\"horseP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseP.tga:28:28\",\n\t[\"horsePERFECTION\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horsePERFECTION.tga:28:28\",\n\t[\"horseR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseR.tga:28:28\",\n\t[\"horseS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseS.tga:28:28\",\n\t[\"horseW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\HORSEPANTS\\\\horseW.tga:28:28\",\n\t\t-- koil\n\t[\"koil0\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koil0.tga:28:28\",\n\t[\"koil2h\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koil2h.tga:28:28\",\n\t[\"koilAmazing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilAmazing.tga:28:28\",\n\t[\"koilAnna\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilAnna.tga:28:28\",\n\t[\"koilBoss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilBoss.tga:28:28\",\n\t[\"koilBurgie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilBurgie.tga:28:28\",\n\t[\"koilBurn\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilBurn.tga:28:28\",\n\t[\"koilC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilC.tga:28:28\",\n\t[\"koilChat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilChat.tga:28:28\",\n\t[\"koilCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilCool.tga:28:28\",\n\t[\"koilCop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilCop.tga:28:28\",\n\t[\"koilCringe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilCringe.tga:28:28\",\n\t[\"koilCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilCry.tga:28:28\",\n\t[\"koilCu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilCu.tga:28:28\",\n\t[\"koilD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilD.tga:28:28\",\n\t[\"koilDads\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilDads.tga:28:28\",\n\t[\"koilDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilDerp.tga:28:28\",\n\t[\"koilDude\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilDude.tga:28:28\",\n\t[\"koilEat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilEat.tga:28:28\",\n\t[\"koilEh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilEh.tga:28:28\",\n\t[\"koilEw\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilEw.tga:28:28\",\n\t[\"koilEz\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilEz.tga:28:28\",\n\t[\"koilF1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilF1.tga:28:28\",\n\t[\"koilF2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilF2.tga:28:28\",\n\t[\"koilFail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilFail.tga:28:28\",\n\t[\"koilFat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilFat.tga:28:28\",\n\t[\"koilFBR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilFBR.tga:28:28\",\n\t[\"koilFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilFeels.tga:28:28\",\n\t[\"koilFrog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilFrog.tga:28:28\",\n\t[\"koilGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilGasm.tga:28:28\",\n\t[\"koilGG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilGG.tga:28:28\",\n\t[\"koilGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilGun.tga:28:28\",\n\t[\"koilHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilHi.tga:28:28\",\n\t[\"koilHm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilHm.tga:28:28\",\n\t[\"koilHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilHug.tga:28:28\",\n\t[\"koilHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilHype.tga:28:28\",\n\t[\"koilJebega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilJebega.tga:28:28\",\n\t[\"koilJepega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilJepega.tga:28:28\",\n\t[\"koilJoe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilJoe.tga:28:28\",\n\t[\"koilK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilK.tga:28:28\",\n\t[\"koilL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilL.tga:28:28\",\n\t[\"koilLegion\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilLegion.tga:28:28\",\n\t[\"koilLewd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilLewd.tga:28:28\",\n\t[\"koilLol\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilLol.tga:28:28\",\n\t[\"koilLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilLove.tga:28:28\",\n\t[\"koilLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilLUL.tga:28:28\",\n\t[\"koilLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilLurk.tga:28:28\",\n\t[\"koilM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilM.tga:28:28\",\n\t[\"koilMarv\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilMarv.tga:28:28\",\n\t[\"koilNerd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilNerd.tga:28:28\",\n\t[\"koilNom\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilNom.tga:28:28\",\n\t[\"koilNote\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilNote.tga:28:28\",\n\t[\"koilOG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilOG.tga:28:28\",\n\t[\"koilOtto\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilOtto.tga:28:28\",\n\t[\"koilOwned\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilOwned.tga:28:28\",\n\t[\"koilPff\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilPff.tga:28:28\",\n\t[\"koilPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilPog.tga:28:28\",\n\t[\"koilPray\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilPray.tga:28:28\",\n\t[\"koilPrego\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilPrego.tga:28:28\",\n\t[\"koilRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilRage.tga:28:28\",\n\t[\"koilRee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilRee.tga:28:28\",\n\t[\"koilBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilBlind.tga:28:28\",\n\t[\"koilRekt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilRekt.tga:28:28\",\n\t[\"koilRip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilRip.tga:28:28\",\n\t[\"koilRoasted\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilRoasted.tga:28:28\",\n\t[\"koilS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilS.tga:28:28\",\n\t[\"koilSalt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSalt.tga:28:28\",\n\t[\"koilSavage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSavage.tga:28:28\",\n\t[\"koilSellout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSellout.tga:28:28\",\n\t[\"koilSip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSip.tga:28:28\",\n\t[\"koilSmart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSmart.tga:28:28\",\n\t[\"koilSpew\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSpew.tga:28:28\",\n\t[\"koilSpew1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSpew1.tga:28:28\",\n\t[\"koilSpew2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSpew2.tga:28:28\",\n\t[\"koilSpew3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSpew3.tga:28:28\",\n\t[\"koilStupid\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilStupid.tga:28:28\",\n\t[\"koilSucks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilSucks.tga:28:28\",\n\t[\"koilThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilThink.tga:28:28\",\n\t[\"koilTony\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilTony.tga:28:28\",\n\t[\"koilTune\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilTune.tga:28:28\",\n\t[\"koilWow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilWow.tga:28:28\",\n\t[\"koilWtf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilWtf.tga:28:28\",\n\t[\"koilWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilWut.tga:28:28\",\n\t[\"koilX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilX.tga:28:28\",\n\t[\"koilZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Koil\\\\koilZ.tga:28:28\",\n\t-- Hydramist\n\t[\"hydraChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraChamp.tga:28:28\",\n\t[\"hydraFoot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraFoot.tga:28:28\",\n\t[\"hydraHEIL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraHEIL.tga:28:28\",\n\t[\"hydraLUNA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraLUNA.tga:28:28\",\n\t[\"hydraMURAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraMURAT.tga:28:28\",\n\t[\"hydraPURPLE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraPURPLE.tga:28:28\",\n\t[\"hydraRUSSIA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraRUSSIA.tga:28:28\",\n\t[\"hydraSquare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraSquare.tga:28:28\",\n\t[\"hydraXMAS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Hydramist\\\\hydraXMAS.tga:28:28\",\n\t-- imaqtpie\n\t[\"qtp1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtp1.tga:28:28\",\n\t[\"qtp2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtp2.tga:28:28\",\n\t[\"qtp2ND\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtp2ND.tga:28:28\",\n\t[\"qtp3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtp3.tga:28:28\",\n\t[\"qtp4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtp4.tga:28:28\",\n\t[\"qtpA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpA.tga:28:28\",\n\t[\"qtpB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpB.tga:28:28\",\n\t[\"qtpBAKED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpBAKED.tga:28:28\",\n\t[\"qtpBLESSED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpBLESSED.tga:28:28\",\n\t[\"qtpBOOSTED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpBOOSTED.tga:28:28\",\n\t[\"qtpBOT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpBOT.tga:28:28\",\n\t[\"qtpCOOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpCOOL.tga:28:28\",\n\t[\"qtpCULLED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpCULLED.tga:28:28\",\n\t[\"qtpDAPPER\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpDAPPER.tga:28:28\",\n\t[\"qtpDONG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpDONG.tga:28:28\",\n\t[\"qtpEDGE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpEDGE.tga:28:28\",\n\t[\"qtpFEELS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpFEELS.tga:28:28\",\n\t[\"qtpGIVE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpGIVE.tga:28:28\",\n\t[\"qtpHAHAA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpHAHAA.tga:28:28\",\n\t[\"qtpHEART\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpHEART.tga:28:28\",\n\t[\"qtpHEHE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpHEHE.tga:28:28\",\n\t[\"qtpHONK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpHONK.tga:28:28\",\n\t[\"qtpKAWAII\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpKAWAII.tga:28:28\",\n\t[\"qtpLEMONKEY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpLEMONKEY.tga:28:28\",\n\t[\"qtpLIT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpLIT.tga:28:28\",\n\t[\"qtpLUCIAN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpLUCIAN.tga:28:28\",\n\t[\"qtpLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpLUL.tga:28:28\",\n\t[\"qtpMEME\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpMEME.tga:28:28\",\n\t[\"qtpMEW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpMEW.tga:28:28\",\n\t[\"qtpMOIST\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpMOIST.tga:28:28\",\n\t[\"qtpNLT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpNLT.tga:28:28\",\n\t[\"qtpNO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpNO.tga:28:28\",\n\t[\"qtpOWO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpOWO.tga:28:28\",\n\t[\"qtpPAID\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpPAID.tga:28:28\",\n\t[\"qtpPLEB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpPLEB.tga:28:28\",\n\t[\"qtpPOTATO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpPOTATO.tga:28:28\",\n\t[\"qtpSMORC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpSMORC.tga:28:28\",\n\t[\"qtpSPOOKED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpSPOOKED.tga:28:28\",\n\t[\"qtpSPOOKY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpSPOOKY.tga:28:28\",\n\t[\"qtpSTFU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpSTFU.tga:28:28\",\n\t[\"qtpSWAG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpSWAG.tga:28:28\",\n\t[\"qtpTHINKING\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpTHINKING.tga:28:28\",\n\t[\"qtpTHUMP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpTHUMP.tga:28:28\",\n\t[\"qtpTILT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpTILT.tga:28:28\",\n\t[\"qtpURGOD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpURGOD.tga:28:28\",\n\t[\"qtpUSA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpUSA.tga:28:28\",\n\t[\"qtpW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpW.tga:28:28\",\n\t[\"qtpWAVE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpWAVE.tga:28:28\",\n\t[\"qtpWEEB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpWEEB.tga:28:28\",\n\t[\"qtpWHAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\imaqtpie\\\\qtpWHAT.tga:28:28\",\n\t-- JoshOG\n\t[\"weed1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weed1.tga:28:28\",\n\t[\"weed2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weed2.tga:28:28\",\n\t[\"weed3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weed3.tga:28:28\",\n\t[\"weed4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weed4.tga:28:28\",\n\t[\"weedAFK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedAFK.tga:28:28\",\n\t[\"weedBanana\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedBanana.tga:28:28\",\n\t[\"weedBBs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedBBs.tga:28:28\",\n\t[\"weedBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedBlind.tga:28:28\",\n\t[\"weedBOAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedBOAT.tga:28:28\",\n\t[\"weedBomb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedBomb.tga:28:28\",\n\t[\"weedBushwooky\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedBushwooky.tga:28:28\",\n\t[\"weedC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedC.tga:28:28\",\n\t[\"weedCHICKEN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedCHICKEN.tga:28:28\",\n\t[\"weedCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedCool.tga:28:28\",\n\t[\"weedCrash\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedCrash.tga:28:28\",\n\t[\"weedCrate\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedCrate.tga:28:28\",\n\t[\"weedCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedCry.tga:28:28\",\n\t[\"weedDucks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedDucks.tga:28:28\",\n\t[\"weedF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedF.tga:28:28\",\n\t[\"weedFaded\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedFaded.tga:28:28\",\n\t[\"weedFail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedFail.tga:28:28\",\n\t[\"weedFro\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedFro.tga:28:28\",\n\t[\"weedGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedGasm.tga:28:28\",\n\t[\"weedGG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedGG.tga:28:28\",\n\t[\"weedHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedHey.tga:28:28\",\n\t[\"weedHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedHype.tga:28:28\",\n\t[\"weedKobe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedKobe.tga:28:28\",\n\t[\"weedLong\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedLong.tga:28:28\",\n\t[\"weedLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedLove.tga:28:28\",\n\t[\"weedLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedLurk.tga:28:28\",\n\t[\"weedPan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedPan.tga:28:28\",\n\t[\"weedPopcorn\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedPopcorn.tga:28:28\",\n\t[\"weedPotato\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedPotato.tga:28:28\",\n\t[\"weedPray\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedPray.tga:28:28\",\n\t[\"weedSalt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedSalt.tga:28:28\",\n\t[\"weedSmoothie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedSmoothie.tga:28:28\",\n\t[\"weedSniper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedSniper.tga:28:28\",\n\t[\"weedSpaghetti\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedSpaghetti.tga:28:28\",\n\t[\"weedSteve\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedSteve.tga:28:28\",\n\t[\"weedTrain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedTrain.tga:28:28\",\n\t[\"weedVibes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedVibes.tga:28:28\",\n\t[\"weedW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedW.tga:28:28\",\n\t[\"weedWhale\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedWhale.tga:28:28\",\n\t[\"weedWOO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedWOO.tga:28:28\",\n\t[\"weedWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\JoshOG\\\\weedWut.tga:28:28\",\n\t-- pepeOKLife\n\t[\"beamBrah\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\beamBrah.tga:28:28\",\n\t[\"beamBrahW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\beamBrah.tga:64:64\",\n\t[\"CaptainSuze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\CaptainSuze.tga:28:28\",\n\t[\"FeelsPandaMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\FeelsPandaMan.tga:28:28\",\n\t[\"JanCarlo2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\JanCarlo2.tga:28:28\",\n\t[\"mumes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\mumes.tga:28:28\",\n\t[\"peepoKnife\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepoKnife.tga:28:56\",\n\t[\"PepeClown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeClown.tga:28:28\",\n\t[\"PepeScience\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeScience.tga:28:28\",\n\t[\"PepeWork\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeWork.tga:28:28\",\n\t[\"PepeWorkW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeWork.tga:64:64\",\n\t[\"peepoCozy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepoCozy.tga:28:28\",\n\t[\"peepoCrab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepoCrab.tga:28:28\",\n\t[\"suze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\Suze.tga:28:28\",\n\t[\"suzeOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\SuzeOK.tga:28:28\",\n\t[\"PepeKing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeKing.tga:28:28\",\n\t[\"gigaSuze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\gigaSuze.tga:28:28\",\n\t[\"ANELELUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\ANELELUL.tga:28:28\",\n\t[\"bubby\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\bubby.tga:28:28\",\n\t[\"FeelsCozyMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\FeelsCozyMan.tga:28:28\",\n\t[\"Samefood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\food.tga:28:28\",\n\t[\"GAmer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\gamer.tga:28:28\",\n\t[\"miffs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\miffs.tga:28:28\",\n\t[\"peepoCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepoCry.tga:28:28\",\n\t[\"peepoCheer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepoCheer.tga:28:28\",\n\t[\"peepoDK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepoDK.tga:28:28\",\n\t[\"peepoMad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepoMad.tga:28:28\",\n\t[\"peepoMadW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepoMad.tga:64:64\",\n\t[\"PepeBed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeBed.tga:28:28\",\n\t[\"PepeChill\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeChill.tga:28:28\",\n\t[\"PepeCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeCool.tga:28:28\",\n\t[\"PepeGiggle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeGiggle.tga:28:28\",\n\t[\"PepeKingLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeKingLove.tga:28:28\",\n\t[\"PepeSpartan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeSpartan.tga:28:28\",\n\t[\"PepeSuspect\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeSuspicious.tga:28:28\",\n\t[\"peepoChef\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepoChef.tga:28:28\",\n\t[\"peepoChrist\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepoChristus.tga:28:28\",\n\t[\"peepoSuze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepoSuze.tga:28:28\",\n\t[\"potter\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\potter.tga:28:28\",\n\t[\"sameS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\same.tga:28:28\",\n\t[\"study\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\study.tga:28:28\",\n\t[\"suze4animals\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\suze4animals.tga:28:28\",\n\t[\"suze4know\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\suze4know.tga:28:28\",\n\t[\"FeelsMageMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\FeelsMageMan.tga:28:28\",\n\t[\"PepeStudy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeStudy.tga:28:28\",\n\t[\"PepeWave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeWave.tga:28:28\",\n\t[\"PepeWheels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeWheels.tga:28:28\",\n\t[\"PepeGod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeGod.tga:28:28\",\n\t[\"PepeHacker\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeHacker.tga:28:28\",\n\t[\"PepeCop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeCop.tga:28:28\",\n\t[\"PepeSmurf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\pepeSmurf.tga:28:28\",\n\t[\"PauseChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\PauseChamp.tga:28:28\",\n\t[\"PogChampius\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\PogChampius.tga:28:28\",\n\t[\"WeirdChampius\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\WeirdChampius.tga:28:28\",\n\t[\"WeirdChampion\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\WeirdChampion.tga:28:28\",\n\t[\"LULWWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\LULWWW.tga:28:28\",\n\t[\"LULWWWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\LULWWWW.tga:28:32\",\n\t[\"LULWWWWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\LULWWWWW.tga:28:32\",\n\t[\"EZGiggle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\EZGiggle.tga:28:28\",\n\t[\"PepeRuski\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\PepeRuski.tga:28:28\",\n\t[\"PepeSoldier\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\PepeSoldier.tga:28:28\",\n\t[\"PepeBalls\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\PepeBalls.tga:28:28\",\n\t[\"Bic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\ZBic.tga:28:28\",\n\t[\"peep420\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peep420.tga:28:28\",\n\t[\"peep420Ely\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peep420Ely.tga:28:32\",\n\t[\"peepKing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\peepKing.tga:32:28\",\n\t[\"AngryWoof\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\AngryWoof.tga:28:28\",\n\t-- LegendaryLea\n\t[\"lea8\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\lea8.tga:28:28\",\n\t[\"leaA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaA.tga:28:28\",\n\t[\"leaDinodoge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaDinodoge.tga:28:28\",\n\t[\"leaF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaF.tga:28:28\",\n\t[\"leaG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaG.tga:28:28\",\n\t[\"leaH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaH.tga:28:28\",\n\t[\"leaHS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaHS.tga:28:28\",\n\t[\"leaHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaHug.tga:28:28\",\n\t[\"leaK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaK.tga:28:28\",\n\t[\"leaKobe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaKobe.tga:28:28\",\n\t[\"leaRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaRage.tga:28:28\",\n\t[\"leaRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaRIP.tga:28:28\",\n\t[\"leaShame\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaShame.tga:28:28\",\n\t[\"leaSkal\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaSkal.tga:28:28\",\n\t[\"leaTbirds\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaTbirds.tga:28:28\",\n\t[\"leaThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\LegendaryLea\\\\leaThump.tga:28:28\",\n\t-- Lirik\n\t[\"lirikA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikA.tga:28:28\",\n\t[\"lirikAppa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikAppa.tga:28:28\",\n\t[\"lirikBB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikBB.tga:28:28\",\n\t[\"lirikBLIND\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikBLIND.tga:28:28\",\n\t[\"lirikC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikC.tga:28:28\",\n\t[\"lirikCHAMP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikCHAMP.tga:28:28\",\n\t[\"lirikCLAP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikCLAP.tga:28:28\",\n\t[\"lirikCLENCH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikCLENCH.tga:28:28\",\n\t[\"lirikCRASH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikCRASH.tga:28:28\",\n\t[\"lirikDJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikDJ.tga:28:28\",\n\t[\"lirikF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikF.tga:28:28\",\n\t[\"lirikFAKE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikFAKE.tga:28:28\",\n\t[\"lirikFEELS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikFEELS.tga:28:28\",\n\t[\"lirikFR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikFR.tga:28:28\",\n\t[\"lirikGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikGasm.tga:28:28\",\n\t[\"lirikGOTY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikGOTY.tga:28:28\",\n\t[\"lirikGREAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikGREAT.tga:28:28\",\n\t[\"lirikH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikH.tga:28:28\",\n\t[\"lirikHOLD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikHOLD.tga:28:28\",\n\t[\"lirikHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikHug.tga:28:28\",\n\t[\"lirikHYPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikHYPE.tga:28:28\",\n\t[\"lirikL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikL.tga:28:28\",\n\t[\"lirikLEAN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikLEAN.tga:28:28\",\n\t[\"lirikLEWD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikLEWD.tga:28:28\",\n\t[\"lirikLOOT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikLOOT.tga:28:28\",\n\t[\"lirikLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikLUL.tga:28:28\",\n\t[\"lirikMLG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikMLG.tga:28:28\",\n\t[\"lirikN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikN.tga:28:28\",\n\t[\"lirikNICE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikNICE.tga:28:28\",\n\t[\"lirikNON\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikNON.tga:28:28\",\n\t[\"lirikNOT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikNOT.tga:28:28\",\n\t[\"lirikO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikO.tga:28:28\",\n\t[\"lirikOBESE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikOBESE.tga:28:28\",\n\t[\"lirikOHGOD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikOHGOD.tga:28:28\",\n\t[\"lirikOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikOK.tga:28:28\",\n\t[\"lirikP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikP.tga:28:28\",\n\t[\"lirikPOOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikPOOL.tga:28:28\",\n\t[\"lirikPOOP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikPOOP.tga:28:28\",\n\t[\"lirikPUKE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikPUKE.tga:28:28\",\n\t[\"lirikREKT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikREKT.tga:28:28\",\n\t[\"lirikRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikRIP.tga:28:28\",\n\t[\"lirikS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikS.tga:28:28\",\n\t[\"lirikSALT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikSALT.tga:28:28\",\n\t[\"lirikSCARED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikSCARED.tga:28:28\",\n\t[\"lirikSHUCKS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikSHUCKS.tga:28:28\",\n\t[\"lirikSMART\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikSMART.tga:28:28\",\n\t[\"lirikTEN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikTEN.tga:28:28\",\n\t[\"lirikTENK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikTENK.tga:28:28\",\n\t[\"lirikThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikThump.tga:28:28\",\n\t[\"lirikW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lirik\\\\lirikW.tga:28:28\",\n\t-- loltyler1\n\t[\"tyler1AYY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1AYY.tga:28:28\",\n\t[\"tyler1Bad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Bad.tga:28:28\",\n\t[\"tyler1Ban\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Ban.tga:28:28\",\n\t[\"tyler1Bandit\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Bandit.tga:28:28\",\n\t[\"tyler1BB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1BB.tga:28:28\",\n\t[\"tyler1Beta\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Beta.tga:28:28\",\n\t[\"tyler1Bruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Bruh.tga:28:28\",\n\t[\"tyler1C\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1C.tga:28:28\",\n\t[\"tyler1Chair\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Chair.tga:28:28\",\n\t[\"tyler1Champ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Champ.tga:28:28\",\n\t[\"tyler1Chef\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Chef.tga:28:28\",\n\t[\"tyler1CS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1CS.tga:28:28\",\n\t[\"tyler1EU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1EU.tga:28:28\",\n\t[\"tyler1Feels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Feels.tga:28:28\",\n\t[\"tyler1Free\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Free.tga:28:28\",\n\t[\"tyler1G\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1G.tga:28:28\",\n\t[\"tyler1Geo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Geo.tga:28:28\",\n\t[\"tyler1GOOD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1GOOD.tga:28:28\",\n\t[\"tyler1HA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1HA.tga:28:28\",\n\t[\"tyler1Hey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Hey.tga:28:28\",\n\t[\"tyler1INT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1INT.tga:28:28\",\n\t[\"tyler1IQ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1IQ.tga:28:28\",\n\t[\"tyler1KKona\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1KKona.tga:28:28\",\n\t[\"tyler1Lift\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Lift.tga:28:28\",\n\t[\"tyler1LUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1LUL.tga:28:28\",\n\t[\"tyler1M\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1M.tga:28:28\",\n\t[\"tyler1Monk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Monk.tga:28:28\",\n\t[\"tyler1NA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1NA.tga:28:28\",\n\t[\"tyler1NLT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1NLT.tga:28:28\",\n\t[\"tyler1O\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1O.tga:28:28\",\n\t[\"tyler1P\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1P.tga:28:28\",\n\t[\"tyler1Pride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Pride.tga:28:28\",\n\t[\"tyler1Q\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Q.tga:28:28\",\n\t[\"tyler1R1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1R1.tga:28:28\",\n\t[\"tyler1R2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1R2.tga:28:28\",\n\t[\"tyler1Ross\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Ross.tga:28:28\",\n\t[\"tyler1Skip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Skip.tga:28:28\",\n\t[\"tyler1Sleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Sleeper.tga:28:28\",\n\t[\"tyler1SSJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1SSJ.tga:28:28\",\n\t[\"tyler1Stutter\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Stutter.tga:28:28\",\n\t[\"tyler1T1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1T1.tga:28:28\",\n\t[\"tyler1T2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1T2.tga:28:28\",\n\t[\"tyler1Toxic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1Toxic.tga:28:28\",\n\t[\"tyler1XD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\loltyler1\\\\tyler1XD.tga:28:28\",\n\t-- MisterRogers\n\t[\"rogersKingFriday\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersKingFriday.tga:28:28\",\n\t[\"rogersKingFridayBW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersKingFridayBW.tga:28:28\",\n\t[\"rogersQueenSara\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersQueenSara.tga:28:28\",\n\t[\"rogersQueenSaraBW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersQueenSaraBW.tga:28:28\",\n\t[\"rogersTrolley\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersTrolley.tga:28:28\",\n\t[\"rogersTrolleyBW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersTrolleyBW.tga:28:28\",\n\t[\"rogersXTheOwl\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersXTheOwl.tga:28:28\",\n\t[\"rogersXTheOwlBW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MisterRogers\\\\rogersXTheOwlBW.tga:28:28\",\n\t-- MOONMOON_OW\n\t[\"moon21\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon21.tga:28:28\",\n\t[\"moon22\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon22.tga:28:28\",\n\t[\"moon23\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon23.tga:28:28\",\n\t[\"moon24\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon24.tga:28:28\",\n\t[\"moon2AMAZING\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2AMAZING.tga:28:28\",\n\t[\"moon2AWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2AWW.tga:28:28\",\n\t[\"moon2BANNED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2BANNED.tga:28:28\",\n\t[\"moon2COFFEE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2COFFEE.tga:28:28\",\n\t[\"moon2COOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2COOL.tga:28:28\",\n\t[\"moon2CREEP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2CREEP.tga:28:28\",\n\t[\"moon2CUTE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2CUTE.tga:28:28\",\n\t[\"moon2DUMB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2DUMB.tga:28:28\",\n\t[\"moon2EZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2EZ.tga:28:28\",\n\t[\"moon2FEELS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2FEELS.tga:28:28\",\n\t[\"moon2GASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2GASM.tga:28:28\",\n\t[\"moon2GOOD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2GOOD.tga:28:28\",\n\t[\"moon2GOTTEM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2GOTTEM.tga:28:28\",\n\t[\"moon2GUMS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2GUMS.tga:28:28\",\n\t[\"moon2HAHAA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2HAHAA.tga:28:28\",\n\t[\"moon2HAPPY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2HAPPY.tga:28:28\",\n\t[\"moon2HEY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2HEY.tga:28:28\",\n\t[\"moon2HNNG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2HNNG.tga:28:28\",\n\t[\"moon2KISSES\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2KISSES.tga:28:28\",\n\t[\"moon2L\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2L.tga:28:28\",\n\t[\"moon2LULT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2LULT.tga:28:28\",\n\t[\"moon2MLADY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2MLADY.tga:28:28\",\n\t[\"moon2MLEM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2MLEM.tga:28:28\",\n\t[\"moon2OOO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2OOO.tga:28:28\",\n\t[\"moon2P\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2P.tga:28:28\",\n\t[\"moon2PLSNO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2PLSNO.tga:28:28\",\n\t[\"moon2R\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2R.tga:28:28\",\n\t[\"moon2S\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2S.tga:28:28\",\n\t[\"moon2SHURG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SHURG.tga:28:28\",\n\t[\"moon2SMAG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SMAG.tga:28:28\",\n\t[\"moon2SMUG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SMUG.tga:28:28\",\n\t[\"moon2SPY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SPY.tga:28:28\",\n\t[\"moon2T\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2T.tga:28:28\",\n\t[\"moon2TEEHEE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2TEEHEE.tga:28:28\",\n\t[\"moon2THUMP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2THUMP.tga:28:28\",\n\t[\"moon2VAPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2VAPE.tga:28:28\",\n\t[\"moon2W\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2W.tga:28:28\",\n\t[\"moon2WHINE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WHINE.tga:28:28\",\n\t[\"moon2WHY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WHY.tga:28:28\",\n\t[\"moon2WINKY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WINKY.tga:28:28\",\n\t[\"moon2WOO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WOO.tga:28:28\",\n\t[\"moon2WOOP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WOOP.tga:28:28\",\n\t[\"moon2WOW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WOW.tga:28:28\",\n\t[\"moon2WUT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WUT.tga:28:28\",\n\t[\"moon2XD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2XD.tga:28:28\",\n\t[\"moon2YE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2YE.tga:28:28\",\n\t[\"moon2DOIT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2DOIT.tga:28:28\",\n\t[\"moon2DUMBER\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2DUMBER.tga:28:28\",\n\t[\"moon2EZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2EZ.tga:28:28\",\n\t[\"moon2H\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2H.tga:28:28\",\n\t[\"moon2MLADY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2MLADY.tga:28:28\",\n\t[\"moon2MM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2MM.tga:28:28\",\n\t[\"moon2N\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2N.tga:28:28\",\n\t[\"moon2O\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2O.tga:28:28\",\n\t[\"moon2OP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2OP.tga:28:28\",\n\t[\"moon2P\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2P.tga:28:28\",\n\t[\"moon2PEEPEEGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2PEEPEEGA.tga:28:28\",\n\t[\"moon2PH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2PH.tga:28:28\",\n\t[\"moon2SECRETEMOTE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SECRETEMOTE.tga:28:28\",\n\t[\"moon2SH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SH.tga:28:28\",\n\t[\"moon2SMERG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SMERG.tga:28:28\",\n\t[\"moon2SP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2SP.tga:28:28\",\n\t[\"moon2VERYSCARED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2VERYSCARED.tga:28:28\",\n\t[\"moon2WAH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2WAH.tga:28:28\",\n\t[\"moon2Y\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MOONMOON_OW\\\\moon2Y.tga:28:28\",\n\t-- MyMrFruit\n\t[\"mrfruitAngry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitAngry.tga:28:28\",\n\t[\"mrfruitChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitChamp.tga:28:28\",\n\t[\"mrfruitDD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitDD.tga:28:28\",\n\t[\"mrfruitFail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitFail.tga:28:28\",\n\t[\"mrfruitGarbage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitGarbage.tga:28:28\",\n\t[\"mrfruitGREAT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitGREAT.tga:28:28\",\n\t[\"mrfruitHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitHype.tga:28:28\",\n\t[\"mrfruitJuicy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitJuicy.tga:28:28\",\n\t[\"mrfruitKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitKappa.tga:28:28\",\n\t[\"mrfruitLURK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitLURK.tga:28:28\",\n\t[\"mrfruitMe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitMe.tga:28:28\",\n\t[\"mrfruitMELON\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitMELON.tga:28:28\",\n\t[\"mrfruitNaisu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitNaisu.tga:28:28\",\n\t[\"mrfruitNN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitNN.tga:28:28\",\n\t[\"mrfruitNope\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitNope.tga:28:28\",\n\t[\"mrfruitReally\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitReally.tga:28:28\",\n\t[\"mrfruitRight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitRight.tga:28:28\",\n\t[\"mrfruitUP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\MyMrFruit\\\\mrfruitUP.tga:28:28\",\n\t-- nl_Kripp\n\t[\"valicePeepoWideW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\ZXValicera\\\\peepoValicera.tga:256:256\",\n\t[\"Krug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\Krug.tga:32:28\",\n\t[\"kripp1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\kripp1.tga:28:28\",\n\t[\"kripp2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\kripp2.tga:28:28\",\n\t[\"kripp3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\kripp3.tga:28:28\",\n\t[\"kripp4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\kripp4.tga:28:28\",\n\t[\"krippAmbe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippAmbe.tga:28:28\",\n\t[\"krippBaby\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippBaby.tga:28:28\",\n\t[\"krippBeg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippBeg.tga:28:28\",\n\t[\"krippBird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippBird.tga:28:28\",\n\t[\"krippBomb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippBomb.tga:28:28\",\n\t[\"krippC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippC.tga:28:28\",\n\t[\"krippCat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippCat.tga:28:28\",\n\t[\"krippChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippChamp.tga:28:28\",\n\t[\"krippDex\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippDex.tga:28:28\",\n\t[\"krippDoge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippDoge.tga:28:28\",\n\t[\"krippDonger\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippDonger.tga:28:28\",\n\t[\"krippDrums\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippDrums.tga:28:28\",\n\t[\"krippFat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippFat.tga:28:28\",\n\t[\"krippFeelsMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippFeelsMan.tga:28:28\",\n\t[\"krippFist\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippFist.tga:28:28\",\n\t[\"krippGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippGasm.tga:28:28\",\n\t[\"krippGood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippGood.tga:28:28\",\n\t[\"krippHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippHey.tga:28:28\",\n\t[\"krippKripp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippKripp.tga:28:28\",\n\t[\"krippLucky\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippLucky.tga:28:28\",\n\t[\"krippLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippLUL.tga:28:28\",\n\t[\"krippMas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippMas.tga:28:28\",\n\t[\"krippMath\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippMath.tga:28:28\",\n\t[\"krippO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippO.tga:28:28\",\n\t[\"krippOJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippOJ.tga:28:28\",\n\t[\"krippPopo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippPopo.tga:28:28\",\n\t[\"krippPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippPride.tga:28:28\",\n\t[\"krippRania\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippRania.tga:28:28\",\n\t[\"krippRiot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippRiot.tga:28:28\",\n\t[\"krippRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippRIP.tga:28:28\",\n\t[\"krippRoss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippRoss.tga:28:28\",\n\t[\"krippRU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippRU.tga:28:28\",\n\t[\"krippSalt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippSalt.tga:28:28\",\n\t[\"krippSkip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippSkip.tga:28:28\",\n\t[\"krippSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippSleeper.tga:28:28\",\n\t[\"krippSmorc\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippSmorc.tga:28:28\",\n\t[\"krippSnipe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippSnipe.tga:28:28\",\n\t[\"krippSuccy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippSuccy.tga:28:28\",\n\t[\"krippThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippThump.tga:28:28\",\n\t[\"krippTop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippTop.tga:28:28\",\n\t[\"krippTrigger\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippTrigger.tga:28:28\",\n\t[\"krippV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippV.tga:28:28\",\n\t[\"krippW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippW.tga:28:28\",\n\t[\"krippWall\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippWall.tga:28:28\",\n\t[\"krippWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippWTF.tga:28:28\",\n\t[\"krippX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\nl_Kripp\\\\krippX.tga:28:28\",\n\t-- Pepes\n\t[\"EZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\EZ.tga:28:28\",\n\t[\"FeelsAmazingMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsAmazingMan.tga:28:28\",\n\t[\"FeelsIncredibleMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsIncredibleMan.tga:28:28\",\n\t[\"FeelsBadMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBadMan.tga:28:28\",\n\t[\"FeelsBadManF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBadManF.tga:28:28\",\n\t[\"FeelsBadManV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBadManV.tga:28:28\",\n\t[\"FeelsBadManW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBadMan.tga:64:64\",\n\t[\"FeelsBetaMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBetaMan.tga:28:28\",\n\t[\"FeelsBirthdayMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBirthdayMan.tga:28:28\",\n\t[\"FeelsBlushMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBlushMan.tga:28:28\",\n\t[\"FeelsCoolMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsCoolMan.tga:28:28\",\n\t[\"FeelsCopterMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsCopterMan.tga:28:28\",\n\t[\"FeelsCuteMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsCuteMan.tga:28:28\",\n\t[\"FeelsDorkMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsDorkMan.tga:28:28\",\n\t[\"FeelsDrunkMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsDrunkMan.tga:28:28\",\n\t[\"FeelsDutchMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsDutchMan.tga:28:28\",\n\t[\"FeelsEvilMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsEvilMan.tga:28:28\",\n\t[\"FeelsGamerMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsGamerMan.tga:28:28\",\n\t[\"FeelsGoodEnoughMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsGoodEnoughMan.tga:28:28\",\n\t[\"FeelsGoodMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsGoodMan.tga:28:28\",\n\t[\"FeelsGoodManW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsGoodMan.tga:64:64\",\n\t[\"FeelsGreatMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsGreatMan.tga:28:28\",\n\t[\"FeelsHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsHug.tga:28:28\",\n\t[\"FeelsHugged\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsHugged.tga:28:28\",\n\t[\"FeelsKekMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsKekMan.tga:28:28\",\n\t[\"FeelsMyFingerMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsMyFingerMan.tga:28:28\",\n\t[\"FeelsOkayMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsOkayMan.tga:28:28\",\n\t[\"FeelsOkayManW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsOkayMan.tga:64:64\",\n\t[\"FeelsPumpkinMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsPumpkinMan.tga:28:28\",\n\t[\"FeelsSadMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsSadMan.tga:28:28\",\n\t[\"FeelsSadManW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsSadMan.tga:64:64\",\n\t[\"FeelsSleepyMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsSleepyMan.tga:28:28\",\n\t[\"FeelsSnowMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsSnowMan.tga:28:28\",\n\t[\"FeelsSnowyMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsSnowyMan.tga:28:28\",\n\t[\"FeelsTastyMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsTastyMan.tga:28:28\",\n\t[\"FeelsThinkingMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsThinkingMan.tga:28:28\",\n\t[\"FeelsTired\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsTired.tga:28:28\",\n\t[\"FeelsWeirdMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsWeirdMan.tga:28:28\",\n\t[\"FeelsWowMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsWowMan.tga:28:28\",\n\t[\"FeelsRottenMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsRottenMan.tga:28:28\",\n\t[\"HYPERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\HYPERS.tga:28:28\",\n\t[\"JanCarlo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\JanCarlo.tga:28:28\",\n\t[\"maximumautism\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\maximumautism.tga:28:28\",\n\t[\"meAutism\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\meAutism.tga:28:28\",\n\t[\"monkaGIGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaGIGA.tga:28:28\",\n\t[\"monkaGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaGun.tga:28:28\",\n\t[\"monkaH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaH.tga:28:28\",\n\t[\"monkaMEGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaMEGA.tga:28:28\",\n\t[\"monkaOMEGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaOMEGA.tga:28:28\",\n\t[\"monkaS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaS.tga:28:28\",\n\t[\"monkaX\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaX.tga:28:28\",\n\t[\"peepoRain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoRain.tga:28:28\",\n\t[\"monkaT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaT.tga:28:28\",\n\t[\"NA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\NA.tga:28:28\",\n\t[\"nanoMEGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\nanoMEGA.tga:28:28\",\n\t[\"peep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peep.tga:28:28\",\n\t[\"PepeHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeHands.tga:28:28\",\n\t[\"PepeHandsW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeHands.tga:64:64\",\n\t[\"PepeLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeLaugh.tga:28:28\",\n\t[\"PepePoint\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeLaughPoint.tga:28:28\",\n\t[\"PepeJAM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeJAM.tga:28:28\",\n\t[\"PepeJAMW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeJAM.tga:64:64\",\n\t[\"PepeOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeOK.tga:28:28\",\n\t[\"PepeOKW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeOK.tga:64:64\",\n\t[\"PepoThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepoThink.tga:28:28\",\n\t[\"POGGERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\POGGERS.tga:28:28\",\n\t[\"POGGERSF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\POGGERSF.tga:28:28\",\n\t[\"RandomPepe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\RandomPepe.tga:28:28\",\n\t[\"REEE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\REEE.tga:28:28\",\n\t[\"SucksMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SucksMan.tga:28:28\",\n\t[\"WOAW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\WOAW.tga:28:28\",\n\t[\"Pepega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Pepega.tga:28:28\",\n\t[\"pepega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaScuffed.tga:28:28\",\n\t[\"PepegaHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaHands.tga:28:28\",\n\t[\"Weirdga\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Weirdga.tga:28:28\",\n\t[\"Britpega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Britpega.tga:28:28\",\n\t[\"noClown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\noClown.tga:28:28\",\n\t[\"nymWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\nymWeird.tga:28:28\",\n\t[\"WeirdW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\nymWeird.tga:28:28\",\n\t[\"WeirdWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\nymWeird.tga:64:64\",\n\t[\"WeirdWWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\nymWeird.tga:128:128\",\n\t[\"WeirdWWWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\nymWeird.tga:256:256\",\n\t[\"monkaW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaW.tga:28:28\",\n\t[\"peepoLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoLove.tga:28:28\",\n\t[\"peepoLoveW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoLove.tga:64:64\",\n\t[\"WidePeepoLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoLove.tga:32:112\",\n\t[\"peepoCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PPepoCool.tga:28:28\",\n\t[\"BadW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBadW.tga:28:28\",\n\t[\"GoodW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\GoodW.tga:28:28\",\n\t[\"OkayW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\OkayW.tga:28:28\",\n\t[\"monkaHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaHmm.tga:28:28\",\n\t[\"MegaMonkas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\MegaMonkas.tga:28:28\",\n\t[\"Monkas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Monkas1.tga:28:28\",\n\t[\"peepoHit\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PPepoHit.tga:28:28\",\n\t[\"peepoPat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PPepoPat.tga:28:28\",\n\t[\"peepoSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PeepoSad.tga:28:28\",\n\t[\"WidePeepoSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PeepoSad.tga:28:112\",\n\t[\"peepoHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHappy.tga:28:28\",\n\t[\"WidePeepoHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHappy.tga:28:112\",\n\t[\"PepeBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeBruh.tga:28:28\",\n\t[\"PepeGang\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeGang.tga:28:28\",\n\t[\"PepeHammer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeHam.tga:28:28\",\n\t[\"peepoDetective\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoDetective.tga:28:28\",\n\t[\"POOGERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\POOGERS.tga:28:28\",\n\t[\"POGGIES\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\POGGIES.tga:28:28\",\n\t[\"peepoS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoS.tga:28:28\",\n\t[\"peepoHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHug.tga:28:28\",\n\t[\"peepoHugged\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHugged.tga:28:28\",\n\t[\"peepoEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoEZ.tga:28:28\",\n\t[\"peepoWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoWeird.tga:28:28\",\n\t[\"WidePeepoWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoWeird.tga:28:112\",\n\t[\"PepePoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepePoo.tga:28:28\",\n\t[\"peepoBlushing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoBlush.tga:28:28\",\n\t[\"peepoBlush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoBlushing.tga:28:28\",\n\t[\"peepoUK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoUK.tga:28:28\",\n\t[\"peepoThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoThink.tga:28:28\",\n\t[\"peepoPlot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPlot.tga:28:28\",\n\t[\"peepoPlotW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPlot.tga:64:64\",\n\t[\"monkaPickle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaPickle.tga:28:28\",\n\t[\"PepeG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeG.tga:28:28\",\n\t[\"pepeD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeD.tga:28:28\",\n\t[\"PepeDisgust\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeDisgust.tga:28:28\",\n\t[\"PoggersHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PoggersHypeF.tga:28:28\",\n\t[\"PoggersHypeF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PoggersHype.tga:28:28\",\n\t[\"PepeButt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeButt.tga:28:28\",\n\t[\"peepoWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoWTF.tga:28:28\",\n\t[\"monkaTOS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaTOS.tga:28:28\",\n\t[\"PepeWizard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeWizard.tga:28:28\",\n\t[\"peepaGrown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepaGrown.tga:32:32\",\n\t[\"PepeLegs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeLegs.tga:28:28\",\n\t[\"PepeReach\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeReach.tga:28:28\",\n\t[\"PepeTHICC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeTHICC.tga:28:28\",\n\t[\"FeelsFatMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsFatMan.tga:28:28\",\n\t[\"FeelsSuicideMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsSuicideMan.tga:28:28\",\n\t[\"FUARK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FUARK.tga:28:28\",\n\t[\"KekeHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\KekeHands.tga:28:28\",\n\t[\"monkaHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaHands.tga:28:28\",\n\t[\"peepoHide\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHide.tga:28:28\",\n\t[\"peepoWeirdNo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoNo.tga:28:28\",\n\t[\"peepoNo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeNo.tga:28:28\",\n\t[\"peepoYes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeYes.tga:28:28\",\n\t[\"peepoPeek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPeek.tga:28:28\",\n\t[\"peepoPogPoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPogPoo.tga:28:28\",\n\t[\"peepoPoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPoo.tga:28:28\",\n\t[\"peepoShrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoShrug.tga:28:28\",\n\t[\"peepoWave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoWave.tga:28:28\",\n\t[\"PepeCoolStory\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeCoolStory.tga:28:28\",\n\t[\"PepeFeet\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeFeet.tga:28:28\",\n\t[\"PepeHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeHeart.tga:28:28\",\n\t[\"PepeM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeM.tga:28:28\",\n\t[\"PepeMW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeM.tga:64:64\",\n\t[\"PepeCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeMegaSad.tga:28:28\",\n\t[\"PepeMeltdown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeMeltdown.tga:28:28\",\n\t[\"spit1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\spit1.tga:28:28\",\n\t[\"spit2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\spit2.tga:28:28\",\n\t[\"PepePants\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepePants.tga:28:28\",\n\t[\":need:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\needmemes1.tga:28:28\",\n\t[\":memes:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\needmemes2.tga:28:28\",\n\t[\"FeelsRainMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsRainMan.tga:28:28\",\n\t[\"FeelsBoredMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBoredMan.tga:28:28\",\n\t[\"FeelsCryMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsCryMan.tga:28:28\",\n\t[\"peepoFA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFA.tga:28:28\",\n\t[\"peepoFH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFH.tga:28:28\",\n\t[\"peepoNolegs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoNolegs.tga:28:28\",\n\t[\"peepoTired\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoTired.tga:28:28\",\n\t[\"PepeFist\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeFist.tga:28:28\",\n\t[\"PepegaLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaLaugh.tga:28:28\",\n\t[\"PepegaPoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaPoo.tga:28:28\",\n\t[\"PepegaS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaS.tga:28:28\",\n\t[\"Pepege\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Pepege.tga:28:28\",\n\t[\"PepegeS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegeS.tga:28:28\",\n\t[\"PepegeSit\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegeSit.tga:28:28\",\n\t[\"PepegeWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegeWeird.tga:28:28\",\n\t[\"Pepeggers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Pepeggers.tga:28:28\",\n\t[\"PepeHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeHmm.tga:28:28\",\n\t[\"PepeKMS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeKMS.tga:28:28\",\n\t[\"PepeRun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeRun.tga:28:28\",\n\t[\"WeirdU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\WeirdU.tga:28:28\",\n\t[\"peepoKing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoKing.tga:28:28\",\n\t[\"peepoCrown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoCrown.tga:28:28\",\n\t[\"peepoFat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFat.tga:28:28\",\n\t[\"FeelsDeadMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsDeadMan.tga:28:28\",\n\t[\"peepoH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoH.tga:28:28\",\n\t[\"peepoWeirdCrown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoWeirdCrown.tga:28:28\",\n\t[\"PePeppaPig\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PePeppaPig.tga:28:28\",\n\t[\"peepoPing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPing.tga:28:28\",\n\t[\"peepoHuggies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHuggiesL.tga:28:28\",\n\t[\"peepoHuggied\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHuggiesR.tga:28:28\",\n\t[\"PepeAyy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeAyy.tga:28:28\",\n\t[\"PepegaLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaLaugh.tga:28:28\",\n\t[\"TiredW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\TiredW.tga:28:28\",\n\t[\"OkayLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\OkayLaugh.tga:28:28\",\n\t[\"peepOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepOK.tga:28:28\",\n\t[\"monakHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monakHmm.tga:28:28\",\n\t[\"monakS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monakS.tga:28:28\",\n\t[\"monakO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monakO.tga:28:28\",\n\t[\"Monaks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Monaks1.tga:28:28\",\n\t[\"monakaS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monakaS.tga:28:28\",\n\t[\"monakOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monakOK.tga:28:28\",\n\t[\"PeepLaff\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PeepLaugh.tga:28:28\",\n\t[\"peepoFrogHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFrogHappy.tga:28:28\",\n\t[\"FeelsComradeMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsComradeMan.tga:28:28\",\n\t[\"PepOMEGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepOMEGA.tga:28:28\",\n\t[\"peepoV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoV.tga:28:28\",\n\t[\"peepoVW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoV.tga:28:112\",\n\t[\"4peepo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\4peepo.tga:28:28\",\n\t[\"FeelsTiredAF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsTiredAF.tga:28:28\",\n\t[\"peepoKnight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoKnight.tga:28:28\",\n\t[\"PepeMStache\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeMStache.tga:28:28\",\n\t[\"PepeMStacheW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeMStache.tga:64:64\",\n\t[\"PeepKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PeepKek.tga:28:28\",\n\t[\"PeepGiggle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PeepGiggle.tga:28:28\",\n\t[\"PepePains\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Pepepains.tga:28:28\",\n\t[\"peepoPants\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPants.tga:28:28\",\n\t[\"FeelsOakyMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsOakyMan.tga:28:28\",\n\t[\"FeelsWiredMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsWiredMan.tga:28:28\",\n\t[\"PeepHand\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PeepHand.tga:28:28\",\n\t[\"Lovepeepo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Lovepeepo.tga:28:28\",\n\t[\"LovepeepoW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Lovepeepo.tga:64:64\",\n\t[\"PHOGGERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PHOGGERS.tga:28:28\",\n\t[\"PepegaSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaSad.tga:28:28\",\n\t[\"FeelsLMAO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeLMAO.tga:28:28\",\n\t[\"drxLit\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeLMAO.tga:28:28\",\n\t[\"PepeGamer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeGamer.tga:28:28\",\n\t[\"PepeL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeL.tga:28:28\",\n\t[\"monkaGIG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaGig.tga:28:28\",\n\t[\"monkaD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaD.tga:28:28\",\n\t[\"monkaU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaU.tga:28:28\",\n\t[\"peepoGift\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoGift.tga:28:28\",\n\t[\"PepeHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeHug.tga:28:28\",\n\t[\"monkaStab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaStab.tga:28:28\",\n\t[\"ppFootbol\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\ppFootbol.tga:28:28\",\n\t[\"FeelsAngryVan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsAngryVan.tga:28:28\",\n\t[\"TOSga\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\TOSga.tga:28:28\",\n\t[\"monkaEyes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaEyes.tga:28:28\",\n\t[\"peepoBlanket\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoBlanket.tga:28:28\",\n\t[\"widepeepoBlanket\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoBlanket.tga:28:112\",\n\t[\"PepeCoffee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeCoffee.tga:28:28\",\n\t[\"peepoHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoCoffee.tga:28:28\",\n\t[\"PepeSmoke\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeSmoke.tga:28:28\",\n\t[\"FeelsShadowMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsShadowMan.tga:28:28\",\n\t[\"peepoSE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSE.tga:28:28\",\n\t[\"monkaANELE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaANELE.tga:28:28\",\n\t[\"peepoSip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSip.tga:28:28\",\n\t[\"POGGERSLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\POGGERSLove.tga:28:28\",\n\t[\"PepegaKMS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepegaKMS.tga:28:28\",\n\t[\"SadHonk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SadHonk.tga:28:28\",\n\t[\"ClownPain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\ClownPain.tga:28:28\",\n\t[\"ClownBall\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\ClownBall.tga:28:28\",\n\t[\"ClownNice\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoNice.tga:28:56\",\n\t[\"MALDD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\MALDD.tga:28:28\",\n\t[\":drama:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\needdrama.tga:28:28\",\n\t[\"Pepegwa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Pepegwa.tga:28:28\",\n\t[\"peepoSenor\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSenor.tga:28:28\",\n\t[\"peepoStudy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoStudy.tga:28:28\",\n\t[\"peepoSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSmile.tga:28:28\",\n\t[\"peepoSalute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSalute.tga:28:28\",\n\t[\"peepoDE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoDE.tga:28:28\",\n\t[\"peepoEU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoEU.tga:28:28\",\n\t[\"peepoUSA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoUSA.tga:28:28\",\n\t[\"peepoCN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoCN.tga:28:28\",\n\t[\"peepoES\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoES.tga:28:28\",\n\t[\"peepoFR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFR.tga:28:28\",\n\t[\"peepoNOO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoNOO.tga:28:28\",\n\t[\"peepoNOOO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoNOOO.tga:28:28\",\n\t[\"peepoTeddy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoTeddy.tga:28:28\",\n\t[\"peepoUgh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoUgh.tga:28:28\",\n\t[\"peepoSuspect\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSuspect.tga:28:28\",\n\t[\"peepoSuspicious\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoSuspicious.tga:28:28\",\n\t[\"peepoOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoOK.tga:28:28\",\n\t[\"peepoReallyHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoReallyHappy.tga:28:28\",\n\t[\"peepoEyes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoEyes.tga:28:28\",\n\t[\"peepoBored\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoBored.tga:28:28\",\n\t[\"peepoHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoHands.tga:28:28\",\n\t[\"PepeUnicorn\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeUnicorn.tga:28:28\",\n\t[\"PepeUnicornW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeUnicorn.tga:64:64\",\n\t[\"PepeUnicornK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeUnicorn.tga:32:32\",\n\t[\"peepoTip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoTip.tga:28:28\",\n\t[\"peepoCharge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoCharge.tga:28:28\",\n\t[\"monkaBlanket\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaBlanket.tga:28:28\",\n\t[\"Jewega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\ZXega.tga:28:28\",\n\t[\"FeelsHunterMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsHunterMan.tga:28:28\",\n\t[\"PepoScience\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepoScience.tga:28:28\",\n\t[\"PepeNotOK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeNotOK.tga:28:28\",\n\t[\"PepeNotOKW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\pepeNotOK.tga:64:64\",\n\t[\"peepoStab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoStab.tga:28:28\",\n\t[\"LaughW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\LaughW.tga:28:28\",\n\t[\"FeelsDabMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsDabMan.tga:28:28\",\n\t[\"GIMMIE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\GIMMIE.tga:28:28\",\n\t[\"PepeDitch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\greekDitch.tga:28:28\",\n\t[\"PepeLouder\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\greekLouder.tga:28:28\",\n\t[\"LULERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\LULERS.tga:28:28\",\n\t[\"monkaChrist\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaChrist.tga:28:28\",\n\t[\"OMEGAEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\OMEGAEZ.tga:28:28\",\n\t[\"ppSmoke\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\ppSmoke.tga:28:28\",\n\t[\"SmugPepe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SmugPepe.tga:28:28\",\n\t[\"GiggleHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\GiggleHands.tga:28:28\",\n\t[\":strike:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\striked.tga:28:28\",\n\t[\"FeelsUnsureMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsUnsureMan.tga:28:28\",\n\t[\"FeelsNzoth\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsNzoth.tga:28:28\",\n\t[\"yikers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\yikers.tga:28:28\",\n\t[\"monkaKEK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaKEK.tga:28:28\",\n\t[\"PepeMods\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeMods.tga:28:28\",\n\t[\"PepeXD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeXD.tga:28:28\",\n\t[\"peepoBeer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoBeer.tga:28:28\",\n\t[\"peepoFight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFight.tga:28:28\",\n\t[\"SadPepe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SadPepe.tga:28:28\",\n\t[\"monkaYou\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaYou.tga:28:28\",\n\t[\"WeirdJAM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\WeirdJAM.tga:28:28\",\n\t[\"WeirdJAMW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\WeirdJAM.tga:64:64\",\n\t[\"peepaSexy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepaSexy.tga:28:28\",\n\t[\"SchubertBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SchubertBruh.tga:28:28\",\n\t[\"SchubertaBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SchubertaBruh.tga:28:28\",\n\t[\"SchubertSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\SchubertSmile.tga:28:28\",\n\t[\"FeelsHordeMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsHordeMan.tga:28:28\",\n\t[\"FeelsAllianceMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsAllianceMan.tga:28:28\",\n\t[\"monkaThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaThink.tga:28:28\",\n\t[\"peepoGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoGun.tga:28:28\",\n\t[\"peepoLip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoLip.tga:28:28\",\n\t[\"peepoExit\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoExit.tga:28:28\",\n\t[\"peepoExitW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoExit.tga:64:64\",\n\t[\"PepeFU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeFU.tga:28:28\",\n\t[\"FeelsCringeMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsCringeMan.tga:28:28\",\n\t[\"CringeW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\CringeW.tga:28:28\",\n\t[\"peepoPoint\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoPoint.tga:28:28\",\n\t[\"PepeCozy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeCozy.tga:28:28\",\n\t[\"PepeBean\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeBean.tga:28:28\",\n\t[\"peepoCringe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoCringe.tga:28:28\",\n\t[\"PepeManos\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeManos.tga:28:28\",\n\t[\"PepeScoots\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeScoots.tga:28:28\",\n\t[\"monkaStare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaStare.tga:28:28\",\n\t[\"beanping\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\beanping.tga:28:28\",\n\t[\"PepeThumbsUp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeThumbsUp.tga:28:28\",\n\t[\"PepperHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepperHands.tga:28:28\",\n\t[\"KEKWHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\KEKWHands.tga:28:28\",\n\t[\"peepoKEKW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoKEKW.tga:28:28\",\n\t[\"peepoCute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoCute.tga:28:28\",\n\t[\"peepoMaybe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoMaybe.tga:28:28\",\n\t[\"peepoFriends\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoFriends.tga:32:56\",\n\t[\"peepoGlad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoGlad.tga:28:28\",\n\t[\"peepoDetective2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\peepoDetective2.tga:28:28\",\n\t[\"Smilers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\Smilers.tga:28:28\",\n\t[\"COGGERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\COGGERS.tga:28:28\",\n\t[\"monkaStop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\monkaStop.tga:28:28\",\n\t[\"FeelsLoveMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsLoveMan.tga:28:28\",\n\t[\"YEP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\YEP.tga:28:28\",\n\t[\"PepeDent\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\PepeDent.tga:28:28\",\n\t[\"FeelsBoomieMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsBoomieMan.tga:28:28\",\n\t[\"FeelsEleMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsEleMan.tga:28:28\",\n\t-- PsheroTV\n\t[\"heroBT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroBT.tga:28:28\",\n\t[\"heroFEELS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroFEELS.tga:28:28\",\n\t[\"heroH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroH.tga:28:28\",\n\t[\"heroKOTE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroKOTE.tga:28:28\",\n\t[\"heroKUCHE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroKUCHE.tga:28:28\",\n\t[\"heroNB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroNB.tga:28:28\",\n\t[\"heroNEXT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroNEXT.tga:28:28\",\n\t[\"heroPEDRO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroPEDRO.tga:28:28\",\n\t[\"heroPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroPog.tga:28:28\",\n\t[\"heroRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroRIP.tga:28:28\",\n\t[\"heroS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroS.tga:28:28\",\n\t[\"heroS2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroS2.tga:28:28\",\n\t[\"heroSMART\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroSMART.tga:28:28\",\n\t[\"heroW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroW.tga:28:28\",\n\t[\"heroZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\PsheroTV\\\\heroZ.tga:28:28\",\n\t[\"Nirthel\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsTastyMan.tga:28:28\",\n\t[\"nirthel\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Pepes\\\\FeelsTastyMan.tga:28:28\",\n\t-- pajlada\n [\"pajaAngry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaAngry.tga:28:28\",\n [\"pajaCCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaCCool.tga:28:28\",\n [\"pajaCopter\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaCopter.tga:28:28\",\n [\"pajaCMON\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaCMON.tga:28:28\",\n [\"pajaDank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaDank.tga:28:28\",\n [\"pajaDent\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaDent.tga:28:28\",\n [\"pajaGa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaGa.tga:28:28\",\n [\"pajaGASM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaGASM.tga:28:28\",\n [\"pajaH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaH.tga:28:28\",\n [\"pajaHandsUp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaHandsUp.tga:28:28\",\n [\"pajaHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaHappy.tga:28:28\",\n [\"pajaJoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaJoy.tga:28:28\",\n [\"pajaKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaKek.tga:28:28\",\n [\"pajaL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaL.tga:28:28\",\n [\"pajaLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaLaugh.tga:28:28\",\n [\"pajaM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaM.tga:28:28\",\n [\"pajaMLADA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaMLADA.tga:28:28\",\n [\"pajaPHP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaPHP.tga:28:28\",\n [\"pajaPepe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaPepe.tga:28:28\",\n [\"pajaR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaR.tga:28:28\",\n [\"pajaS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaS.tga:28:28\",\n [\"pajaSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaSad.tga:28:28\",\n [\"pajaThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaThink.tga:28:28\",\n [\"pajaW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaW.tga:28:28\",\n [\"pajaWTH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaWTH.tga:28:28\",\n [\"pajaXD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\pajlada\\\\pajaXD.tga:28:28\",\n\t-- Quin69\n\t[\"quinBeam1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinBeam1.tga:28:28\",\n\t[\"beamB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinBeam2.tga:28:28\",\n\t[\"quinBoss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinBoss.tga:28:28\",\n\t[\"quinBot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinBot.tga:28:28\",\n\t[\"quinBully\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinBully.tga:28:28\",\n\t[\"quinC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinC.tga:28:28\",\n\t[\"quinD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinD.tga:28:28\",\n\t[\"quinDOIT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinDOIT.tga:28:28\",\n\t[\"quinDom\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinDom.tga:28:28\",\n\t[\"quinGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinGun.tga:28:28\",\n\t[\"quinHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinHappy.tga:28:28\",\n\t[\"quinJesus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinJesus.tga:28:28\",\n\t[\"quinJudy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinJudy.tga:28:28\",\n\t[\"quinJuice\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinJuice.tga:28:28\",\n\t[\"quinL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinL.tga:28:28\",\n\t[\"quinLeech\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinLeech.tga:28:28\",\n\t[\"quinMask\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinMask.tga:28:28\",\n\t[\"quinPaca\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinPaca.tga:28:28\",\n\t[\"quinPalm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinPalm.tga:28:28\",\n\t[\"quinPukana\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinPukana.tga:28:28\",\n\t[\"quinR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinR.tga:28:28\",\n\t[\"quinRat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinRat.tga:28:28\",\n\t[\"quinSplat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinSplat.tga:28:28\",\n\t[\"quinThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinThump.tga:28:28\",\n\t[\"quinTip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinTip.tga:28:28\",\n\t[\"quinWtf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinWtf.tga:28:28\",\n\t[\"quinWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Quin69\\\\quinWut.tga:28:28\",\n\t-- Rhabby_v\n\t[\"rhabChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabChamp.tga:28:28\",\n\t[\"rhabDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabDerp.tga:28:28\",\n\t[\"rhabEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabEZ.tga:28:28\",\n\t[\"rhabFB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabFB.tga:28:28\",\n\t[\"rhabFG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabFG.tga:28:28\",\n\t[\"rhabHAHA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabHAHA.tga:28:28\",\n\t[\"rhabHYPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabHYPE.tga:28:28\",\n\t[\"rhabL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabL.tga:28:28\",\n\t[\"rhabLOVE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabLOVE.tga:28:28\",\n\t[\"rhabMonka\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabMonka.tga:28:28\",\n\t[\"rhabPLS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabPLS.tga:28:28\",\n\t[\"rhabRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabRIP.tga:28:28\",\n\t[\"rhabRLY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabRLY.tga:28:28\",\n\t[\"rhabSALT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabSALT.tga:28:28\",\n\t[\"rhabSyd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabSyd.tga:28:28\",\n\t[\"rhabSYDCHAMP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabSYDCHAMP.tga:28:28\",\n\t[\"rhabT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabT.tga:28:28\",\n\t[\"rhabToxic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabToxic.tga:28:28\",\n\t[\"rhabTRIG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabTRIG.tga:28:28\",\n\t[\"rhabWHABBY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Rhabby_v\\\\rhabWHABBY.tga:28:28\",\n\t-- Lacari\n\t[\"lacWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacWeird.tga:28:28\",\n\t[\"lacSW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacSW.tga:28:28\",\n\t[\"lacS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacS.tga:28:28\",\n\t[\"lacOkay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacOkay.tga:28:28\",\n\t[\"lacLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacLaugh.tga:28:28\",\n\t[\"lacKEK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacKEK.tga:28:28\",\n\t[\"lacJ1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacJ1.tga:28:28\",\n\t[\"lacJ2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacJ2.tga:28:28\",\n\t[\"lacBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacBruh.tga:28:28\",\n\t[\"lacBaby\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacBaby.tga:28:28\",\n\t[\"lacAPERZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacAPERZ.tga:28:28\",\n\t[\"lacZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacZ.tga:28:28\",\n\t[\"lacL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Lacari\\\\lacL.tga:28:28\",\n\t-- Preachlfw\n\t[\"pgeBan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeBan.tga:28:28\",\n\t[\"pgeBen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeBen.tga:28:28\",\n\t[\"pgeBrian\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeBrian.tga:28:28\",\n\t[\"pgeCheese\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeCheese.tga:28:28\",\n\t[\"pgeChick\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeChick.tga:28:28\",\n\t[\"pgeClub\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeClub.tga:28:28\",\n\t[\"pgeCrisp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeCrisp.tga:28:28\",\n\t[\"pgeDrama\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeDrama.tga:28:28\",\n\t[\"pgeEdge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeEdge.tga:28:28\",\n\t[\"pgeEmma\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeEmma.tga:28:28\",\n\t[\"pgeFish\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeFish.tga:28:28\",\n\t[\"pgeGhost\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeGhost.tga:28:28\",\n\t[\"pgeHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeHmm.tga:28:28\",\n\t[\"pgeNem\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeNem.tga:28:28\",\n\t[\"pgeNoob\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeNoob.tga:28:28\",\n\t[\"pgeOhno\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeOhno.tga:28:28\",\n\t[\"pgeOhno2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeOhno2.tga:28:28\",\n\t[\"pgePog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgePog.tga:28:28\",\n\t[\"pgePug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgePug.tga:28:28\",\n\t[\"pgeRay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeRay.tga:28:28\",\n\t[\"pgeScience\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeScience.tga:28:28\",\n\t[\"pgeShame\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeShame.tga:28:28\",\n\t[\"pgeSherry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Preachlfw\\\\pgeSherry.tga:28:28\",\n\t-- Alinity\n\t[\"natiAlinity\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiAlinity.tga:28:28\",\n\t[\"natiBroke\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiBroke.tga:28:28\",\n\t[\"natiBurp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiBurp.tga:28:28\",\n\t[\"natiChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiChamp.tga:28:28\",\n\t[\"natiCheers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiCheers.tga:28:28\",\n\t[\"natiCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiCreep.tga:28:28\",\n\t[\"natiFail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiFail.tga:28:28\",\n\t[\"natiFocus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiFocus.tga:28:28\",\n\t[\"natiG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiG.tga:28:28\",\n\t[\"natiGG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiGG.tga:28:28\",\n\t[\"natiHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiHeart.tga:28:28\",\n\t[\"natiGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiGun.tga:28:28\",\n\t[\"natiHearty\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiHearty.tga:28:28\",\n\t[\"natiHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiHi.tga:28:28\",\n\t[\"natiHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiHype.tga:28:28\",\n\t[\"natiKnife\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiKnife.tga:28:28\",\n\t[\"natiL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiL.tga:28:28\",\n\t[\"natiLike\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiLike.tga:28:28\",\n\t[\"natiLuna\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiLuna.tga:28:28\",\n\t[\"natiMaya\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiMaya.tga:28:28\",\n\t[\"natiMc\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiMc.tga:28:28\",\n\t[\"natiMeow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiMeow.tga:28:28\",\n\t[\"natiMilow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiMilow.tga:28:28\",\n\t[\"natiNova\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiNova.tga:28:28\",\n\t[\"natiPanic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiPanic.tga:28:28\",\n\t[\"natiPls\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiPls.tga:28:28\",\n\t[\"natiPoop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiPoop.tga:28:28\",\n\t[\"natiPoopy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiPoopy.tga:28:28\",\n\t[\"natiPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiPride.tga:28:28\",\n\t[\"natiR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiR.tga:28:28\",\n\t[\"natiRIP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiRIP.tga:28:28\",\n\t[\"natiSalt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiSalt.tga:28:28\",\n\t[\"natiScr\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiScr.tga:28:28\",\n\t[\"natiScream\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiScream.tga:28:28\",\n\t[\"natiSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiSleeper.tga:28:28\",\n\t[\"natiThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiThink.tga:28:28\",\n\t[\"natiThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiThump.tga:28:28\",\n\t[\"natiWUT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Alinity\\\\natiWUT.tga:28:28\",\n\t-- Sco\n\t[\"scoA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoA.tga:28:28\",\n\t[\"scoBrave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoBrave.tga:28:28\",\n\t[\"scoBro\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoBro.tga:28:28\",\n\t[\"scoCash\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoCash.tga:28:28\",\n\t[\"scoChair\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoChair.tga:28:28\",\n\t[\"scoChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoChamp.tga:28:28\",\n\t[\"scoChest\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoChest.tga:28:28\",\n\t[\"scoCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoCreep.tga:28:28\",\n\t[\"scoCringe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoCringe.tga:28:28\",\n\t[\"scoDad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoDad.tga:28:28\",\n\t[\"scoFat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoFat.tga:28:28\",\n\t[\"scoFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoFeels.tga:28:28\",\n\t[\"scoFG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoFG.tga:28:28\",\n\t[\"scoGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoGasm.tga:28:28\",\n\t[\"scoHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoHey.tga:28:28\",\n\t[\"scoHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoHype.tga:28:28\",\n\t[\"scoKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoKappa.tga:28:28\",\n\t[\"scoL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoL.tga:28:28\",\n\t[\"scoLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoLUL.tga:28:28\",\n\t[\"scoMethod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoMethod.tga:28:28\",\n\t[\"scoPapi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoPapi.tga:28:28\",\n\t[\"scoPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoPride.tga:28:28\",\n\t[\"scoR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoR.tga:28:28\",\n\t[\"scoSalt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoSalt.tga:28:28\",\n\t[\"scoShield\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoShield.tga:28:28\",\n\t[\"scoSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoSleeper.tga:28:28\",\n\t[\"scoSpin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoSpin.tga:28:28\",\n\t[\"scoThinking\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoThinking.tga:28:28\",\n\t[\"scoThirsty\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoThirsty.tga:28:28\",\n\t[\"scoW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoW.tga:28:28\",\n\t[\"scoWipe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoWipe.tga:28:28\",\n\t[\"scoWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Sco\\\\scoWTF.tga:28:28\",\n\t-- GNeko\n\t[\"astrovrCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\astrovrCry.tga:28:28\",\n\t[\"astrovrRee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\astrovrRee.tga:28:28\",\n\t[\"astrovrHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\astrovrHi.tga:28:28\",\n\t[\"Awoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\Awoo.tga:28:28\",\n\t[\"joshxknife\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\joshxknife.tga:28:28\",\n\t[\"MelonGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\MelonGun.tga:28:28\",\n\t[\"OwOMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\OwOMelon.tga:28:28\",\n\t[\"CuteMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\CuteMelon.tga:28:28\",\n\t[\"DrunkMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\DrunkMelon.tga:28:28\",\n\t[\"GaspMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\GaspMelon.tga:28:28\",\n\t[\"HyperHappyMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\HyperHappyMelon.tga:28:28\",\n\t[\"HyperMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\HyperMelon.tga:28:28\",\n\t[\"RageMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\RageMelon.tga:28:28\",\n\t[\"ReeMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\ReeMelon.tga:28:28\",\n\t[\"SadMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\SadMelon.tga:28:28\",\n\t[\"SweatMelon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\SweatMelon.tga:28:28\",\n\t[\"tyrissGlare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissGlare.tga:28:28\",\n\t[\"tyrissGimme\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissGimme.tga:28:28\",\n\t[\"tyrissHeadpat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissHeadpat.tga:28:28\",\n\t[\"tyrissLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissLurk.tga:28:28\",\n\t[\"tyrissRee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissRee.tga:28:28\",\n\t[\"tyrissRip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissRip.tga:28:28\",\n\t[\"tyrissVictory\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissVictory.tga:28:28\",\n\t[\"tyrissBlush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissBlush.tga:28:28\",\n\t[\"tyrissBoop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissBoop.tga:28:28\",\n\t[\"tyrissComfy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissComfy.tga:28:28\",\n\t[\"tyrissDisappointed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissDisappointed.tga:28:28\",\n\t[\"tyrissGasp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissGasp.tga:28:28\",\n\t[\"tyrissHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissHeart.tga:28:28\",\n\t[\"tyrissHeartz\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissHeartz.tga:28:28\",\n\t[\"tyrissHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissHi.tga:28:28\",\n\t[\"tyrissHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissHug.tga:28:28\",\n\t[\"tyrissHyper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissHyper.tga:28:28\",\n\t[\"tyrissLul\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissLul.tga:28:28\",\n\t[\"tyrissPout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissPout.tga:28:28\",\n\t[\"tyrissSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissSad.tga:28:28\",\n\t[\"tyrissSmug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissSmug.tga:28:28\",\n\t[\"tyrissSmugOwO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissSmugOwO.tga:28:28\",\n\t[\"tyrissThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissThink.tga:28:28\",\n\t[\"tyrissS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\tyrissS.tga:28:28\",\n\t[\"ZevvyBlush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\ZevvyBlush.tga:28:28\",\n\t[\"02Yum\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\02Yum.tga:28:28\",\n\t[\"02Dab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\02Dab.tga:28:28\",\n\t[\"02Stare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\02Stare.tga:28:28\",\n\t[\":RIP:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\ARIP.tga:28:28\",\n\t[\"Awoopls\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\Awoopls.tga:28:28\",\n\t[\":booty:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\emBooty.tga:28:28\",\n\t[\":HEH:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\aniHEH.tga:28:28\",\n\t-- Radiant\n\t[\"radiantAYAYA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantAYAYA.tga:28:28\",\n\t[\"radiantBlush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantBlush.tga:28:28\",\n\t[\"radiantBomb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantBomb.tga:28:28\",\n\t[\"radiantBoop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantBoop.tga:28:28\",\n\t[\"radiantComfy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantComfy.tga:28:28\",\n\t[\"radiantConcern\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantConcern.tga:28:28\",\n\t[\"radiantCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantCry.tga:28:28\",\n\t[\"radiantCult\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantCult.tga:28:28\",\n\t[\"radiantCute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantCute.tga:28:28\",\n\t[\"radiantEEEEE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantEEEEE.tga:28:28\",\n\t[\"radiantEvil\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantEvil.tga:28:28\",\n\t[\"radiantGimme\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantGimme.tga:28:28\",\n\t[\"radiantGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantGun.tga:28:28\",\n\t[\"radiantHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantHmm.tga:28:28\",\n\t[\"radiantISee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantISee.tga:28:28\",\n\t[\"radiantJam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantJam.tga:28:28\",\n\t[\"radiantKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantKek.tga:28:28\",\n\t[\"radiantLag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantLag.tga:28:28\",\n\t[\"radiantLick\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantLick.tga:28:28\",\n\t[\"radiantLurk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantLurk.tga:28:28\",\n\t[\"radiantNom\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantNom.tga:28:28\",\n\t[\"radiantOmega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantOmega.tga:28:28\",\n\t[\"radiantOmegaOWO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantOmegaOWO.tga:28:28\",\n\t[\"radiantOwO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantOwO.tga:28:28\",\n\t[\"radiantPat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantPat.tga:28:28\",\n\t[\"radiantPepega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantPepega.tga:28:28\",\n\t[\"radiantPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantPog.tga:28:28\",\n\t[\"radiantPout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantPout.tga:28:28\",\n\t[\"radiantREE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantREE.tga:28:28\",\n\t[\"radiantSalute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantSalute.tga:28:28\",\n\t[\"radiantScared\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantScared.tga:28:28\",\n\t[\"radiantShrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantShrug.tga:28:28\",\n\t[\"radiantSip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantSip.tga:28:28\",\n\t[\"radiantSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantSmile.tga:28:28\",\n\t[\"radiantSmileW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantSmileW.tga:28:28\",\n\t[\"radiantSmug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantSmug.tga:28:28\",\n\t[\"radiantSnoze\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantSnoze.tga:28:28\",\n\t[\"radiantStare\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantStare.tga:28:28\",\n\t[\"radiantTOS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantTOS.tga:28:28\",\n\t[\"radiantWave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantWave.tga:28:28\",\n\t[\"radiantWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GNeko\\\\radiantWeird.tga:28:28\",\n\t-- xQc\n\t[\"xqcM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcM.tga:28:28\",\n\t[\"xqcRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcRage.tga:28:28\",\n\t[\"xqcArm1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcArm1.tga:28:28\",\n\t[\"xqcArm2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcArm2.tga:28:28\",\n\t[\"xqcDab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcDab.tga:28:28\",\n\t[\"xqcEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcEZ.tga:28:28\",\n\t[\"xqcGun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcGun.tga:28:28\",\n\t[\"xqcH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcH.tga:28:28\",\n\t[\"xqcHug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcHug.tga:28:28\",\n\t[\"xqcHugged\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcHugged.tga:28:28\",\n\t[\"xqcJuice\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcJuice.tga:28:28\",\n\t[\"xqcLook\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcLook.tga:28:28\",\n\t[\"xqcMood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcMood.tga:28:28\",\n\t[\"xqcStory\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcStory.tga:28:28\",\n\t[\"xqcT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcT.tga:28:28\",\n\t[\"xqcWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcWut.tga:28:28\",\n\t[\"xqcY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcY.tga:28:28\",\n\t[\"xqcA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcA.tga:28:28\",\n\t[\"xqcB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcB.tga:28:28\",\n\t[\"xqcCarried\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcCarried.tga:28:28\",\n\t[\"xqcE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcE.tga:28:28\",\n\t[\"xqcF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcF.tga:28:28\",\n\t[\"xqcFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcFace.tga:28:28\",\n\t[\"xqcFast\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcFast.tga:28:28\",\n\t[\"xqcGreet\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcGreet.tga:28:28\",\n\t[\"xqcHAhaa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcHAhaa.tga:28:28\",\n\t[\"xqcHands\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcHands.tga:28:28\",\n\t[\"xqcHYPERF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcHYPERF.tga:28:28\",\n\t[\"xqcJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcJ.tga:28:28\",\n\t[\"xqcKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcKek.tga:28:28\",\n\t[\"xqcL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcL.tga:28:28\",\n\t[\"xqcLeather\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcLeather.tga:28:28\",\n\t[\"xqcLie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcLie.tga:28:28\",\n\t[\"xqcN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcN.tga:28:28\",\n\t[\"xqcO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcO.tga:28:28\",\n\t[\"xqcOld\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcOld.tga:28:28\",\n\t[\"xqcP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcP.tga:28:28\",\n\t[\"xqcPoppin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcPoppin.tga:28:28\",\n\t[\"xqcPrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcPrime.tga:28:28\",\n\t[\"xqcQ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcQ.tga:28:28\",\n\t[\"xqcR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcR.tga:28:28\",\n\t[\"xqcS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcS.tga:28:28\",\n\t[\"xqcSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSad.tga:28:28\",\n\t[\"xqcSkip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSkip.tga:28:28\",\n\t[\"xqcSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSleeper.tga:28:28\",\n\t[\"xqcSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSmile.tga:28:28\",\n\t[\"xqcSmile2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSmile2.tga:28:28\",\n\t[\"xqcSmug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSmug.tga:28:28\",\n\t[\"xqcSword\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcSword.tga:28:28\",\n\t[\"xqcThonk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcThonk.tga:28:28\",\n\t[\"xqcTOS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcTOS.tga:28:28\",\n\t[\"xqcTree\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcTree.tga:28:28\",\n\t[\"xqcWar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\xQc\\\\xqcWar.tga:28:28\",\n\t-- OG Feedback\n\t[\"Snakers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\Snakers.tga:28:28\",\n\t[\"SkoopRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\SkoopRage.tga:28:28\",\n\t[\"skoopas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\skoopas.tga:28:28\",\n\t[\"SamWise\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\eSamWise.tga:28:28\",\n\t[\"samshades\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\samshades.tga:28:28\",\n\t[\"SamSafe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\SamSafe.tga:28:28\",\n\t[\"SamS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\SamS.tga:28:28\",\n\t[\"Priotais\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\Priotais.tga:28:28\",\n\t[\"PreachChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\PreachChamp.tga:28:28\",\n\t[\"FeelsPewMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\FeelsPewMan.tga:28:28\",\n\t[\"dudeman\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\dudeman.tga:28:28\",\n\t[\"Chibol\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\Chibol.tga:28:28\",\n\t[\"Cakers\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\Cakers.tga:28:28\",\n\t[\"BatriSam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\BatriSam.tga:28:28\",\n\t[\"BaileysDude\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\OG_Feedback\\\\BaileysDude.tga:28:28\",\n\t-- Guild emotes\n\t[\"Pog1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Pog.tga:28:28\",\n\t[\"jerryWhat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\jerryWhat.tga:28:28\",\n\t[\"PogU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogU.tga:28:28\",\n\t[\"Pogey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Pogey.tga:28:28\",\n\t[\"PogeyU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogeyU.tga:28:28\",\n\t[\"Poghurt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Poghurt.tga:28:28\",\n\t[\"pOg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\pOg1.tga:28:28\",\n\t[\"p0g\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\pOg1.tga:28:28\",\n\t[\"OhISee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OhISee.tga:28:28\",\n\t[\"OhYouSee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OhYouSee.tga:28:28\",\n\t[\"KKool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\KKool.tga:28:28\",\n\t[\"TriKool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriKool.tga:28:28\",\n\t[\"TriGold\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriGold.tga:28:28\",\n\t[\"OMEGATriHard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OMEGATriHard.tga:28:28\",\n\t[\"ExitG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ExitG.tga:28:28\",\n\t[\"Heartato\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Heartato.tga:28:28\",\n\t[\"HeartatoW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Heartato.tga:64:64\",\n\t[\"3Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\3Head.tga:28:28\",\n\t[\"5Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\5Head.tga:28:28\",\n\t[\"3Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\3Head.tga:28:28\",\n\t[\"asmonPower\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\asmonPower.tga:28:28\",\n\t[\"BaconEffect\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\BaconEffect.tga:28:28\",\n\t[\"BearDab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\BearDab.tga:28:28\",\n\t[\"PBear\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PBear.tga:28:28\",\n\t[\"FeralS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZFeral.tga:28:28\",\n\t[\"emGlimmer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\emGlimmer.tga:28:28\",\n\t[\"ZXChaeri\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZXChaeri.tga:28:28\",\n\t[\"Shelia\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZShelia.tga:28:28\",\n\t[\"Lizardman\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZXLizardman.tga:28:28\",\n\t[\"HammersArk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HammersArk.tga:28:28\",\n\t[\"HYPERDANSGAME\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HYPERDANSGAME.tga:28:28\",\n\t[\"HYPERDANSGAMEW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HYPERDANSGAMEW.tga:28:28\",\n\t[\"KKonaW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\KKonaW.tga:28:28\",\n\t[\"DKKona\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\DKKona.tga:28:28\",\n\t[\"LULWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\LULWW.tga:28:28\",\n\t[\"MaN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\MaN.tga:28:28\",\n\t[\"peepoPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PeepoPog.tga:28:28\",\n\t[\"PikaWOW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PikaWOW.tga:28:28\",\n\t[\"WeirdChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\WeirdChamp.tga:28:28\",\n\t[\"WutChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\WutChamp.tga:28:28\",\n\t[\"StareChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\StareChamp.tga:28:28\",\n\t[\"OkayChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OkayChamp.tga:28:28\",\n\t[\"EZChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\EZChamp.tga:28:28\",\n\t[\"SillyChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\SillyChamp.tga:28:28\",\n\t[\"CrazyChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\CrazyChamp.tga:28:28\",\n\t[\"SadChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\SadChamp.tga:28:28\",\n\t[\"DisappointChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\DisappointChamp.tga:28:28\",\n\t[\"MaldChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\MaldChamp.tga:28:28\",\n\t[\"ChagU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ChagU.tga:28:28\",\n\t[\"ChampU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ChampU.tga:28:28\",\n\t[\"CHAMPERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\CHAMPERS.tga:28:28\",\n\t[\"pepeAx\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\pepeAx.tga:28:28\",\n\t[\"TriEasy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriEasy.tga:28:28\",\n\t[\"OMEGAWOW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OMEGAWOW.tga:28:28\",\n\t[\"noxSorry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\noxSorry.tga:28:28\",\n\t[\"FeelsDankMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Suze\\\\FeelsDankMan.tga:28:28\",\n\t[\"AMAZINGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\AMAZINGA.tga:28:28\",\n\t[\"4Mansion\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\4Mansion.tga:28:28\",\n\t[\"4House\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\4House.tga:28:28\",\n\t[\"espanLOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\espanLOL.tga:28:28\",\n\t[\"FeelsJMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\FeelsJMan.tga:28:28\",\n\t[\"0Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\0Head.tga:28:28\",\n\t[\"1Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\1Head.tga:28:28\",\n\t[\"2Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\2Head.tga:28:28\",\n\t[\"3Lass\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\3Lass.tga:28:28\",\n\t[\"4Weird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\4Weird.tga:28:28\",\n\t[\"4WeirdW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\4WeirdW.tga:28:28\",\n\t[\"4HEader\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\4HEader.tga:28:56\",\n\t[\"duckieW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\duckieW.tga:28:28\",\n\t[\"ChickenR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ChickenHardR.tga:28:28\",\n\t[\"ChickenL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ChickenHardL.tga:28:28\",\n\t[\"FeelsTankMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\FeelsTankMan.tga:28:28\",\n\t[\"TriHalf1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriHalf1.tga:28:28\",\n\t[\"TriHalf2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriHalf2.tga:28:28\",\n\t[\"TriSoft\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriSoft.tga:28:28\",\n\t[\"TriBook\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriBook.tga:28:28\",\n\t[\"5Hard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\5Hard.tga:28:28\",\n\t[\"WULL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\WULL.tga:28:28\",\n\t[\"Frostbitchyes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Frostbitchyes.tga:28:28\",\n\t[\"cmoN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\cmoN1.tga:28:28\",\n\t[\"PogYou\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogYou.tga:28:28\",\n\t[\"PogMe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogMe.tga:28:28\",\n\t[\"Boomer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Boomer.tga:28:28\",\n\t[\"savixHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\savixHappy.tga:28:28\",\n\t[\"DD:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OMEGASP.tga:28:28\",\n\t[\"WeirdBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\WeirdBruh.tga:28:28\",\n\t[\"Pho\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Pho.tga:28:28\",\n\t[\"cmonBruv\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\cmonBruv.tga:28:28\",\n\t[\"cmonBrother\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\cmonBrother.tga:28:28\",\n\t[\"ANGERY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ANGERY.tga:28:28\",\n\t[\"ANGERYW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ANGERY.tga:64:64\",\n\t[\"ANGERYWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ANGERY.tga:128:128\",\n\t[\"smileW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\smileW.tga:28:28\", \n\t[\"smileC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\smileC.tga:28:28\", \n\t[\"feelsblob\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\feelsblob.tga:32:32\", \n\t[\"LULChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\LULChamp.tga:28:28\", \n\t[\"kkOna\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZkkOna.tga:28:28\",\n\t[\"ELE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ELE.tga:28:28\",\n\t[\"TriHardS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriHardS.tga:28:28\",\n\t[\"WhiteKnight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\WhiteKnight.tga:28:28\",\n\t[\"BlackKnight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\BlackKnight.tga:28:28\",\n\t[\"Gerdlerk1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Gerdlerk1.tga:32:32\",\n\t[\"Gerdlerk2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Gerdlerk2.tga:32:32\",\n\t[\"Gerdlerk3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Gerdlerk3.tga:32:32\",\n\t[\"Gerdlerk4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Gerdlerk4.tga:32:32\",\n\t[\"HappyMerchant\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HappyMerchant.tga:28:28\",\n\t[\"HyperAngryMerchant\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HyperAngryMerchant.tga:28:28\",\n\t[\"KKonductor\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\KKonductor.tga:32:28\",\n\t[\"VaN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\VaN.tga:28:28\",\n\t[\"NaM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\NaM.tga:28:28\",\n\t[\"danebrain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\danebrain.tga:28:28\",\n\t[\":trash:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\trash.tga:28:28\",\n\t[\":tip:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\tip.tga:28:28\",\n\t[\":just:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\just.tga:32:28\",\n\t[\"PPirate\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PPirate.tga:32:28\",\n\t[\"PainsChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PainsChamp.tga:28:28\",\n\t[\"PogClappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogClappa.tga:28:28\",\n\t[\"Wut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Wut.tga:28:28\",\n\t[\"TriHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriHeart.tga:28:28\",\n\t[\"TriAngle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriAngle.tga:32:28\",\n\t[\"IceHard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\IceHard.tga:56:28\",\n\t[\"ZOINKS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZOINKS.tga:28:28\",\n\t[\":bench:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\bench.tga:32:56\",\n\t[\"ZOINKS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZOINKS.tga:28:28\",\n\t[\"StareBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\StareBruh.tga:28:28\",\n\t[\"cmoB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\cmoB.tga:28:28\",\n\t[\"cmoV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\cmoV.tga:28:28\",\n\t[\"KEKW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\kekW.tga:28:28\",\n\t[\"KEKWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\KEKWeird.tga:28:28\",\n\t[\"KEKSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\KEKSad.tga:28:28\",\n\t[\"KEKWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\kekW.tga:64:64\",\n\t[\"hoboW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\hoboW.tga:28:28\",\n\t[\"BroKiss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\BroKiss.tga:28:28\",\n\t[\"PogWarts\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogWarts.tga:28:28\",\n\t[\"PogWartsW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PogWarts.tga:64:64\",\n\t[\"POGGAROO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\POGGAROO.tga:28:28\",\n\t[\"HammersNoArk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HammersNoArk.tga:28:28\",\n\t[\"FLOPPERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\FLOPPERS.tga:28:28\",\n\t[\":Kraftbereich:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\HugKraft.tga:32:32\",\n\t[\"Saiko\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\ZXSaiko.tga:28:28\",\n\t[\":xd:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\gXD.tga:28:28\",\n\t[\"SaladPepega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\SaladPepega.tga:28:28\",\n\t[\"Joy2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Joy2.tga:28:28\",\n\t[\"Joy3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Joy3.tga:28:28\",\n\t[\"DogeKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\DogeKek.tga:28:28\",\n\t[\"TriHardo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriHardo.tga:28:28\",\n\t[\"WideHardo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriHardo.tga:28:112\",\n\t[\"4Shrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\4Shrug.tga:28:28\",\n\t[\"OldChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\OldChamp.tga:28:28\",\n\t[\"PotatoCute\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PotatoCute.tga:28:28\",\n\t[\"PotatoArmy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PotatoArmy.tga:28:28\",\n\t[\"PATHETIC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\PATHETIC.tga:28:28\",\n\t[\"AYAYARR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\AYAYARR.tga:28:28\",\n\t[\"TriPeek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\TriPeek.tga:28:28\",\n\t[\"BOGGED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\BOGGED.tga:28:28\",\n\t[\"CrawgTusks\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\CrawgTusks.tga:28:28\",\n\t[\"Geti'ikku\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Getiikku.tga:28:28\",\n\t[\"Bwonsambee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Bwonsambee.tga:28:28\",\n\t[\"Chomp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\Chomp.tga:28:28\",\n\t[\"AYAYAWeird\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\AYAYAWeird.tga:28:28\",\n\t[\":welp:\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\welp.tga:28:28\",\n\t[\"lethink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\lethink.tga:28:28\",\n\t[\"peepoRCU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\GuildEmotes\\\\peepoRCU.tga:28:28\",\n\t-- ShaBooZey\n\t[\"sbzyAGAIN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyAGAIN.tga:28:28\",\n\t[\"sbzyAloydeal\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyAloydeal.tga:28:28\",\n\t[\"sbzyAloy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyAloy.tga:28:28\",\n\t[\"sbzyArt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyArt.tga:28:28\",\n\t[\"sbzyBaeloy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyBaeloy.tga:28:28\",\n\t[\"sbzyBuffalo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyBuffalo.tga:28:28\",\n\t[\"sbzyBut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyBut.tga:28:28\",\n\t[\"sbzyCasual\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyCasual.tga:28:28\",\n\t[\"sbzyChicken\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyChicken.tga:28:28\",\n\t[\"sbzyChimp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyChimp.tga:28:28\",\n\t[\"sbzyClif\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyClif.tga:28:28\",\n\t[\"sbzyCommunity\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyCommunity.tga:28:28\",\n\t[\"sbzyCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyCool.tga:28:28\",\n\t[\"sbzyDeal\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyDeal.tga:28:28\",\n\t[\"sbzyDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyDerp.tga:28:28\",\n\t[\"sbzyDew\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyDew.tga:28:28\",\n\t[\"sbzyDIE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyDIE.tga:28:28\",\n\t[\"sbzyFab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyFab.tga:28:28\",\n\t[\"sbzyFeedMe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyFeedMe.tga:28:28\",\n\t[\"sbzyGnat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyGnat.tga:28:28\",\n\t[\"sbzyHog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyHog.tga:28:28\",\n\t[\"sbzyHoi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyHoi.tga:28:28\",\n\t[\"sbzyHook\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyHook.tga:28:28\",\n\t[\"sbzyI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyI.tga:28:28\",\n\t[\"sbzyIce\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyIce.tga:28:28\",\n\t[\"sbzyJesse\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyJesse.tga:28:28\",\n\t[\"sbzyKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyKappa.tga:28:28\",\n\t[\"sbzyKrs10\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyKrs10.tga:28:28\",\n\t[\"sbzyLadies\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyLadies.tga:28:28\",\n\t[\"sbzyLotus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyLotus.tga:28:28\",\n\t[\"sbzyLuv\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyLuv.tga:28:28\",\n\t[\"sbzyManlee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyManlee.tga:28:28\",\n\t[\"sbzyMistake\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyMistake.tga:28:28\",\n\t[\"sbzyMoozy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyMoozy.tga:28:28\",\n\t[\"sbzyMuppet\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyMuppet.tga:28:28\",\n\t[\"sbzyMURK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyMURK.tga:28:28\",\n\t[\"sbzyMurkeh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyMurkeh.tga:28:28\",\n\t[\"sbzyNom\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyNom.tga:28:28\",\n\t[\"sbzyNotMei\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyNotMei.tga:28:28\",\n\t[\"sbzyNotThatDrunk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyNotThatDrunk.tga:28:28\",\n\t[\"sbzyOmg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyOmg.tga:28:28\",\n\t[\"sbzyOrc\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyOrc.tga:28:28\",\n\t[\"sbzyPB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyPB.tga:28:28\",\n\t[\"sbzyPLEAS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyPLEAS.tga:28:28\",\n\t[\"sbzyReky\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyReky.tga:28:28\",\n\t[\"sbzyS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyS.tga:28:28\",\n\t[\"sbzySays\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzySays.tga:28:28\",\n\t[\"sbzyStitches\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyStitches.tga:28:28\",\n\t[\"sbzySuure\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzySuure.tga:28:28\",\n\t[\"sbzySwole\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzySwole.tga:28:28\",\n\t[\"sbzyWaifu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyWaifu.tga:28:28\",\n\t[\"sbzyWat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyWat.tga:28:28\",\n\t[\"sbzyWipe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyWipe.tga:28:28\",\n\t[\"sbzyZen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ShaBooZey\\\\sbzyZen.tga:28:28\",\n\t-- Slootbag\n\t[\"slootyAfro\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyAfro.tga:28:28\",\n\t[\"slootyBageldan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyBageldan.tga:28:28\",\n\t[\"slootyCat1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyCat1.tga:28:28\",\n\t[\"slootyCat2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyCat2.tga:28:28\",\n\t[\"slootyCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyCool.tga:28:28\",\n\t[\"slootyCreep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyCreep.tga:28:28\",\n\t[\"slootyDog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyDog.tga:28:28\",\n\t[\"slootyDrink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyDrink.tga:28:28\",\n\t[\"slootyFistLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyFistLove.tga:28:28\",\n\t[\"slootyFuture\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyFuture.tga:28:28\",\n\t[\"slootyGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyGasm.tga:28:28\",\n\t[\"slootyHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyHype.tga:28:28\",\n\t[\"slootyJo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyJo.tga:28:28\",\n\t[\"slootyKappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyKappa.tga:28:28\",\n\t[\"slootyLeave\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyLeave.tga:28:28\",\n\t[\"slootyLeia\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyLeia.tga:28:28\",\n\t[\"slootyLogo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyLogo.tga:28:28\",\n\t[\"slootyLoot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyLoot.tga:28:28\",\n\t[\"slootyLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyLUL.tga:28:28\",\n\t[\"slootyMad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyMad.tga:28:28\",\n\t[\"slootyMilk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyMilk.tga:28:28\",\n\t[\"slootyNerd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyNerd.tga:28:28\",\n\t[\"slootyPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyPog.tga:28:28\",\n\t[\"slootyQuote\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyQuote.tga:28:28\",\n\t[\"slootyRigged\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyRigged.tga:28:28\",\n\t[\"slootyRip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyRip.tga:28:28\",\n\t[\"slootyShard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyShard.tga:28:28\",\n\t[\"slootySRN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootySRN.tga:28:28\",\n\t[\"slootyWalrus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Slootbag\\\\slootyWalrus.tga:28:28\",\n\t-- sodapoppin\n\t[\"soda25\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\soda25.tga:28:28\",\n\t[\"sodaBLEH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaBLEH.tga:28:28\",\n\t[\"sodaBRUH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaBRUH.tga:28:28\",\n\t[\"sodaC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaC.tga:28:28\",\n\t[\"sodaCHICKEN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaCHICKEN.tga:28:28\",\n\t[\"sodaCHU\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaCHU.tga:28:28\",\n\t[\"sodaCOOL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaCOOL.tga:28:28\",\n\t[\"sodaDS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaDS.tga:28:28\",\n\t[\"sodaEMOJI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaEMOJI.tga:28:28\",\n\t[\"sodaEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaEZ.tga:28:28\",\n\t[\"sodaFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaFeels.tga:28:28\",\n\t[\"sodaFF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaFF.tga:28:28\",\n\t[\"sodaG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaG.tga:28:28\",\n\t[\"sodaGASP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaGASP.tga:28:28\",\n\t[\"sodaHeyGuys\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaHeyGuys.tga:28:28\",\n\t[\"sodaHi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaHi.tga:28:28\",\n\t[\"sodaHP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaHP.tga:28:28\",\n\t[\"sodaJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaJ.tga:28:28\",\n\t[\"sodaKKona\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaKKona.tga:28:28\",\n\t[\"sodaL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaL.tga:28:28\",\n\t[\"sodaLOUDER\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaLOUDER.tga:28:28\",\n\t[\"sodaLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaLUL.tga:28:28\",\n\t[\"sodaMicMuted\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaMicMuted.tga:28:28\",\n\t[\"sodaMONK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaMONK.tga:28:28\",\n\t[\"sodaNG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaNG.tga:28:28\",\n\t[\"sodaNOPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaNOPE.tga:28:28\",\n\t[\"sodaNUGGET\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaNUGGET.tga:28:28\",\n\t[\"sodaPEPE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaPEPE.tga:28:28\",\n\t[\"sodaPUKE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaPUKE.tga:28:28\",\n\t[\"sodaRAGE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaRAGE.tga:28:28\",\n\t[\"sodaREE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaREE.tga:28:28\",\n\t[\"sodaRIOT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaRIOT.tga:28:28\",\n\t[\"sodaS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaS.tga:28:28\",\n\t[\"sodaSMUG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaSMUG.tga:28:28\",\n\t[\"sodaSO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaSO.tga:28:28\",\n\t[\"sodaTHINKING\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaTHINKING.tga:28:28\",\n\t[\"sodaThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaThump.tga:28:28\",\n\t[\"sodaTOUCAN\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaTOUCAN.tga:28:28\",\n\t[\"sodaW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaW.tga:28:28\",\n\t[\"sodaWat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaWat.tga:28:28\",\n\t[\"sodaWipz\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaWipz.tga:28:28\",\n\t[\"sodaWUT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\sodapoppin\\\\sodaWUT.tga:28:28\",\n\t-- Summit1g\n\t[\"sum1g\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sum1g.tga:28:28\",\n\t[\"sum100\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sum100.tga:28:28\",\n\t[\"sumAbby\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumAbby.tga:28:28\",\n\t[\"sumAyo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumAyo.tga:28:28\",\n\t[\"sumBag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumBag.tga:28:28\",\n\t[\"sumBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumBlind.tga:28:28\",\n\t[\"sumBuhblam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumBuhblam.tga:28:28\",\n\t[\"sumCrash\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumCrash.tga:28:28\",\n\t[\"sumCreeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumCreeper.tga:28:28\",\n\t[\"sumDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumDerp.tga:28:28\",\n\t[\"sumDesi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumDesi.tga:28:28\",\n\t[\"sumFail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumFail.tga:28:28\",\n\t[\"sumFood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumFood.tga:28:28\",\n\t[\"sumFuse\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumFuse.tga:28:28\",\n\t[\"sumGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumGasm.tga:28:28\",\n\t[\"sumGG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumGG.tga:28:28\",\n\t[\"sumGodflash\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumGodflash.tga:28:28\",\n\t[\"sumHassan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumHassan.tga:28:28\",\n\t[\"sumHassin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumHassin.tga:28:28\",\n\t[\"sumHorse\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumHorse.tga:28:28\",\n\t[\"sumLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumLove.tga:28:28\",\n\t[\"sumMolly\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumMolly.tga:28:28\",\n\t[\"sumOhface\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumOhface.tga:28:28\",\n\t[\"sumOrc\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumOrc.tga:28:28\",\n\t[\"sumOreo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumOreo.tga:28:28\",\n\t[\"sumPluto\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumPluto.tga:28:28\",\n\t[\"sumPotato\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumPotato.tga:28:28\",\n\t[\"sumPuzzle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumPuzzle.tga:28:28\",\n\t[\"sumRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumRage.tga:28:28\",\n\t[\"sumRekt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumRekt.tga:28:28\",\n\t[\"sumRip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumRip.tga:28:28\",\n\t[\"sumStache\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumStache.tga:28:28\",\n\t[\"sumSuh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumSuh.tga:28:28\",\n\t[\"sumSwag\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumSwag.tga:28:28\",\n\t[\"sumThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumThump.tga:28:28\",\n\t[\"sumUp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumUp.tga:28:28\",\n\t[\"sumVac\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumVac.tga:28:28\",\n\t[\"sumVac2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumVac2.tga:28:28\",\n\t[\"sumW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumW.tga:28:28\",\n\t[\"sumWhat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumWhat.tga:28:28\",\n\t[\"sumWTF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumWTF.tga:28:28\",\n\t[\"sumWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Summit1g\\\\sumWut.tga:28:28\",\n\t-- TimTheTatman\n\t[\"tat1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tat1.tga:28:28\",\n\t[\"tat100\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tat100.tga:28:28\",\n\t[\"tatAFK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatAFK.tga:28:28\",\n\t[\"tatBlackpaul\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatBlackpaul.tga:28:28\",\n\t[\"tatBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatBlind.tga:28:28\",\n\t[\"tatBURP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatBURP.tga:28:28\",\n\t[\"tatCarried\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatCarried.tga:28:28\",\n\t[\"tatChair\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatChair.tga:28:28\",\n\t[\"tatCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatCry.tga:28:28\",\n\t[\"tatDab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatDab.tga:28:28\",\n\t[\"tatFat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatFat.tga:28:28\",\n\t[\"tatFeels\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatFeels.tga:28:28\",\n\t[\"tatFood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatFood.tga:28:28\",\n\t[\"tatGlam\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatGlam.tga:28:28\",\n\t[\"tatH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatH.tga:28:28\",\n\t[\"tatHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatHype.tga:28:28\",\n\t[\"tatJK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatJK.tga:28:28\",\n\t[\"tatKevin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatKevin.tga:28:28\",\n\t[\"tatKevinH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatKevinH.tga:28:28\",\n\t[\"tatKevinM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatKevinM.tga:28:28\",\n\t[\"tatKevinS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatKevinS.tga:28:28\",\n\t[\"tatLit\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatLit.tga:28:28\",\n\t[\"tatLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatLove.tga:28:28\",\n\t[\"tatMesa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatMesa.tga:28:28\",\n\t[\"tatMlg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatMlg.tga:28:28\",\n\t[\"tatMonster\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatMonster.tga:28:28\",\n\t[\"tatNOLINKS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatNOLINKS.tga:28:28\",\n\t[\"tatOshi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatOshi.tga:28:28\",\n\t[\"tatPepper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPepper.tga:28:28\",\n\t[\"tatPik\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPik.tga:28:28\",\n\t[\"tatPleb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPleb.tga:28:28\",\n\t[\"tatPotato\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPotato.tga:28:28\",\n\t[\"tatPreach\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPreach.tga:28:28\",\n\t[\"tatPretty\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPretty.tga:28:28\",\n\t[\"tatPrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatPrime.tga:28:28\",\n\t[\"tatRiot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatRiot.tga:28:28\",\n\t[\"tatRip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatRip.tga:28:28\",\n\t[\"tatS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatS.tga:28:28\",\n\t[\"tatSellout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatSellout.tga:28:28\",\n\t[\"tatSMUG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatSMUG.tga:28:28\",\n\t[\"tatSuh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatSuh.tga:28:28\",\n\t[\"tatThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatThink.tga:28:28\",\n\t[\"tatTopD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatTopD.tga:28:28\",\n\t[\"tatToxic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatToxic.tga:28:28\",\n\t[\"tatTriggered\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatTriggered.tga:28:28\",\n\t[\"tatW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatW.tga:28:28\",\n\t[\"tatWeeb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatWeeb.tga:28:28\",\n\t[\"tatWelcome\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatWelcome.tga:28:28\",\n\t[\"tatWHIZZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatWHIZZ.tga:28:28\",\n\t[\"tatY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TimTheTatman\\\\tatY.tga:28:28\",\n\t-- Trainwreckstv\n\t[\"squadBNB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadBNB.tga:28:28\",\n\t[\"squadF\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadF.tga:28:28\",\n\t[\"squadG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadG.tga:28:28\",\n\t[\"squadH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadH.tga:28:28\",\n\t[\"squadHey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadHey.tga:28:28\",\n\t[\"squadJOBD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadJOBD.tga:28:28\",\n\t[\"squadKP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadKP.tga:28:28\",\n\t[\"squadNation\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadNation.tga:28:28\",\n\t[\"squadO\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadO.tga:28:28\",\n\t[\"squadOh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadOh.tga:28:28\",\n\t[\"squadS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadS.tga:28:28\",\n\t[\"squadSheep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadSheep.tga:28:28\",\n\t[\"squadSpeech\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadSpeech.tga:28:28\",\n\t[\"squadSquad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadSquad.tga:28:28\",\n\t[\"squadTH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadTH.tga:28:28\",\n\t[\"squadW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadW.tga:28:28\",\n\t[\"squadWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadW.tga:64:64\",\n\t[\"peepoSquad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\peepoSquad.tga:28:28\",\n\t[\"peepoSquadW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\peepoSquad.tga:64:64\",\n\t[\"widepeepoSquad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\peepoSquad.tga:28:112\",\n\t[\"squadHYPERW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadHYPERW.tga:28:28\",\n\t[\"squadHYPERWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadHYPERW.tga:64:64\",\n\t[\"squad4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squad4.tga:28:28\",\n\t[\"squadBrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadBrug.tga:28:28\",\n\t[\"squadChef\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadChef.tga:28:28\",\n\t[\"squadD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadD.tga:28:28\",\n\t[\"squadGA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadGA.tga:28:28\",\n\t[\"squadHmm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadHmm.tga:28:28\",\n\t[\"squadHYPERS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadHYPERS.tga:28:28\",\n\t[\"squadK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadK.tga:28:28\",\n\t[\"squadKK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadKK.tga:28:28\",\n\t[\"squadL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadL.tga:28:28\",\n\t[\"squadLaugh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadLaugh.tga:28:28\",\n\t[\"squadLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadLUL.tga:28:28\",\n\t[\"squadM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadM.tga:28:28\",\n\t[\"squadOmega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadOmega.tga:28:28\",\n\t[\"squadP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadP.tga:28:28\",\n\t[\"squadPepega\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadPepega.tga:28:28\",\n\t[\"squadR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadR.tga:28:28\",\n\t[\"squadREE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadREE.tga:28:28\",\n\t[\"squadSid\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadSid.tga:28:28\",\n\t[\"squadSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Trainwreckstv\\\\squadSleeper.tga:28:28\",\n\t-- TwitchPresents\n\t[\"tpAIYIYI\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpAIYIYI.tga:28:28\",\n\t[\"tpBlack\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpBlack.tga:28:28\",\n\t[\"tpBaboo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpBaboo.tga:28:28\",\n\t[\"tpBLBLBL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpBLBLBL.tga:28:28\",\n\t[\"tpBlue\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpBlue.tga:28:28\",\n\t[\"tpBulk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpBulk.tga:28:28\",\n\t[\"tpFree\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpFree.tga:28:28\",\n\t[\"tpFX1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpFX1.tga:28:28\",\n\t[\"tpGG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpGG.tga:28:28\",\n\t[\"tpGreen\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpGreen.tga:28:28\",\n\t[\"tpHeresTommy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpHeresTommy.tga:28:28\",\n\t[\"tpLokar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpLokar.tga:28:28\",\n\t[\"tpNasus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpNasus.tga:28:28\",\n\t[\"tpPink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpPink.tga:28:28\",\n\t[\"tpRed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpRed.tga:28:28\",\n\t[\"tpSquatt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpSquatt.tga:28:28\",\n\t[\"tpWhite\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpWhite.tga:28:28\",\n\t[\"tpYellow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpYellow.tga:28:28\",\n\t[\"tpZedd\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchPresents\\\\tpZedd.tga:28:28\",\n\t-- TwitchTV\n\t[\"4Head\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\4Head.tga:28:28\",\n\t[\"ANELE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ANELE.tga:28:28\",\n\t[\"AMPEnergy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\AMPEnergy.tga:28:28\",\n\t[\"AMPEnergyCherry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\AMPEnergyCherry.tga:28:28\",\n\t[\"AMPTropPunch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\AMPTropPunch.tga:28:28\",\n\t[\"ArgieB8\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ArgieB8.tga:28:28\",\n\t[\"ArigatoNas\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ArigatoNas.tga:28:28\",\n\t[\"ArsonNoSexy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ArsonNoSexy.tga:28:28\",\n\t[\"AsianGlow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\AsianGlow.tga:28:28\",\n\t[\"BabyRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BabyRage.tga:28:28\",\n\t[\"WideBabyRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BabyRage.tga:28:112\",\n\t[\"BasedGod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BasedGod.tga:28:28\",\n\t[\"BatChest\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BatChest.tga:28:28\",\n\t[\"BCouch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BCouch.tga:28:28\",\n\t[\"BCWarrior\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BCWarrior.tga:28:28\",\n\t[\"BegWan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BegWan.tga:28:28\",\n\t[\"BibleThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BibleThump.tga:28:28\",\n\t[\"BigBrother\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BigBrother.tga:28:28\",\n\t[\"BigPhish\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BigPhish.tga:28:28\",\n\t[\"BlargNaut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BlargNaut.tga:28:28\",\n\t[\"bleedPurple\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\bleedPurple.tga:28:28\",\n\t[\"BlessRNG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BlessRNG.tga:28:28\",\n\t[\"BloodTrail\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BloodTrail.tga:28:56\",\n\t[\"BrainSlug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BrainSlug.tga:28:28\",\n\t[\"BrokeBack\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BrokeBack.tga:28:28\",\n\t[\"BudBlast\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BudBlast.tga:28:28\",\n\t[\"BuddhaBar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BuddhaBar.tga:28:28\",\n\t[\"BudStar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\BudStar.tga:28:28\",\n\t[\"CarlSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\CarlSmile.tga:28:28\",\n\t[\"ChefFrank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ChefFrank.tga:28:28\",\n\t[\"Clarmy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Clarmy.tga:28:28\",\n\t[\"cmonBruh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\cmonBruh.tga:28:28\",\n\t[\"CoolCat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\CoolCat.tga:28:28\",\n\t[\"CoolStoryBob\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\CoolStoryBob.tga:28:28\",\n\t[\"copyThis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\copyThis.tga:28:28\",\n\t[\"CorgiDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\CorgiDerp.tga:28:28\",\n\t[\"DAESuppy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DAESuppy.tga:28:28\",\n\t[\"DansGame\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DansGame.tga:28:28\",\n\t[\"DatSheffy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DatSheffy.tga:28:28\",\n\t[\"DBstyle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DBstyle.tga:28:28\",\n\t[\"DendiFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DendiFace.tga:28:28\",\n\t[\"DogFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DogFace.tga:28:28\",\n\t[\"DoritosChip\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DoritosChip.tga:28:28\",\n\t[\"duDudu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\duDudu.tga:28:28\",\n\t[\"DxAbomb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DxAbomb.tga:28:28\",\n\t[\"DxCat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DxCat.tga:28:28\",\n\t[\"EagleEye\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\EagleEye.tga:28:28\",\n\t[\"EleGiggle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\EleGiggle.tga:28:28\",\n\t[\"FailFish\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FailFish.tga:28:28\",\n\t[\"FPSMarksman\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FPSMarksman.tga:28:28\",\n\t[\"FrankerZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FrankerZ.tga:28:56\",\n\t[\"FreakinStinkin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FreakinStinkin.tga:28:28\",\n\t[\"FUNgineer\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FUNgineer.tga:28:28\",\n\t[\"FunRun\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FunRun.tga:28:28\",\n\t[\"FutureMan\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FutureMan.tga:28:28\",\n\t[\"GingerPower\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\GingerPower.tga:28:28\",\n\t[\"GivePLZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\GivePLZ.tga:28:28\",\n\t[\"GOWSkull\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\GOWSkull.tga:28:28\",\n\t[\"GrammarKing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\GrammarKing.tga:28:28\",\n\t[\"HassaanChop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HassaanChop.tga:28:28\",\n\t[\"HassanChop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HassanChop.tga:28:28\",\n\t[\"HeyGuys\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HeyGuys.tga:28:28\",\n\t[\"HotPokket\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HotPokket.tga:28:28\",\n\t[\"HumbleLife\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HumbleLife.tga:28:28\",\n\t[\"imGlitch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\imGlitch.tga:28:28\",\n\t[\"InuyoFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\InuyoFace.tga:28:28\",\n\t[\"ItsBoshyTime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ItsBoshyTime.tga:28:28\",\n\t[\"Jebaited\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Jebaited.tga:28:28\",\n\t[\"JKanStyle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\JKanStyle.tga:28:28\",\n\t[\"JonCarnage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\JonCarnage.tga:28:28\",\n\t[\"KAPOW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KAPOW.tga:28:28\",\n\t[\"Kappa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Kappa.tga:28:28\",\n\t[\"KappaClaus\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KappaClaus.tga:28:28\",\n\t[\"KappaPride\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KappaPride.tga:28:28\",\n\t[\"KappaRoss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KappaRoss.tga:28:28\",\n\t[\"KappaWealth\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KappaWealth.tga:28:28\",\n\t[\"Keepo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Keepo.tga:28:28\",\n\t[\"KevinTurtle\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KevinTurtle.tga:28:28\",\n\t[\"Kippa\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Kippa.tga:28:28\",\n\t[\"KonCha\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\KonCha.tga:28:28\",\n\t[\"Kreygasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Kreygasm.tga:28:28\",\n\t[\"Mau5\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Mau5.tga:28:28\",\n\t[\"mcaT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\mcaT.tga:28:28\",\n\t[\"MikeHogu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\MikeHogu.tga:28:28\",\n\t[\"MingLee\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\MingLee.tga:28:28\",\n\t[\"MorphinTime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\MorphinTime.tga:28:28\",\n\t[\"MrDestructoid\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\MrDestructoid.tga:28:28\",\n\t[\"MVGame\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\MVGame.tga:28:28\",\n\t[\"NerfBlueBlaster\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\NerfBlueBlaster.tga:28:28\",\n\t[\"NerfRedBlaster\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\NerfRedBlaster.tga:28:28\",\n\t[\"NinjaGrumpy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\NinjaGrumpy.tga:28:28\",\n\t[\"NomNom\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\NomNom.tga:28:28\",\n\t[\"NotAtk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\NotAtk.tga:28:28\",\n\t[\"NotLikeThis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\NotLikeThis.tga:28:28\",\n\t[\"OhMyDog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OhMyDog.tga:28:28\",\n\t[\"OneHand\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OneHand.tga:28:28\",\n\t[\"OpieOP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OpieOP.tga:28:28\",\n\t[\"OptimizePrime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OptimizePrime.tga:28:28\",\n\t[\"OSfrog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OSfrog.tga:28:28\",\n\t[\"OSkomodo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OSkomodo.tga:28:28\",\n\t[\"OSsloth\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\OSsloth.tga:28:28\",\n\t[\"panicBasket\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\panicBasket.tga:28:28\",\n\t[\"PanicVis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PanicVis.tga:28:28\",\n\t[\"PartyTime\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PartyTime.tga:28:28\",\n\t[\"pastaThat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\pastaThat.tga:28:28\",\n\t[\"PeoplesChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PeoplesChamp.tga:28:28\",\n\t[\"PermaSmug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PermaSmug.tga:28:28\",\n\t[\"PeteZaroll\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PeteZaroll.tga:28:28\",\n\t[\"PeteZarollTie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PeteZarollTie.tga:28:28\",\n\t[\"PicoMause\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PicoMause.tga:28:28\",\n\t[\"PipeHype\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PipeHype.tga:28:28\",\n\t[\"PJSalt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PJSalt.tga:28:28\",\n\t[\"PJSugar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PJSugar.tga:28:28\",\n\t[\"PMSTwin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PMSTwin.tga:28:28\",\n\t[\"PogChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PogChamp.tga:28:28\",\n\t[\"Poooound\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Poooound.tga:28:28\",\n\t[\"PraiseIt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PraiseIt.tga:28:28\",\n\t[\"PRChase\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PRChase.tga:28:28\",\n\t[\"PrimeMe\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PrimeMe.tga:28:28\",\n\t[\"PunchTrees\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PunchTrees.tga:28:28\",\n\t[\"PunOko\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\PunOko.tga:28:28\",\n\t[\"RaccAttack\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RaccAttack.tga:28:28\",\n\t[\"RalpherZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RalpherZ.tga:28:28\",\n\t[\"RedCoat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RedCoat.tga:28:28\",\n\t[\"ResidentSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ResidentSleeper.tga:28:28\",\n\t[\"riPepperonis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\riPepperonis.tga:28:28\",\n\t[\"RitzMitz\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RitzMitz.tga:28:28\",\n\t[\"RlyTho\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RlyTho.tga:28:28\",\n\t[\"RuleFive\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RuleFive.tga:28:28\",\n\t[\"SabaPing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SabaPing.tga:28:28\",\n\t[\"SeemsGood\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SeemsGood.tga:28:28\",\n\t[\"ShadyLulu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ShadyLulu.tga:28:28\",\n\t[\"ShazBotstix\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ShazBotstix.tga:28:28\",\n\t[\"SmoocherZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SmoocherZ.tga:28:28\",\n\t[\"SMOrc\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SMOrc.tga:28:28\",\n\t[\"SoBayed\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SoBayed.tga:28:28\",\n\t[\"SoonerLater\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SoonerLater.tga:28:28\",\n\t[\"SSSsss\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SSSsss.tga:28:28\",\n\t[\"StinkyCheese\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\StinkyCheese.tga:28:28\",\n\t[\"StoneLightning\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\StoneLightning.tga:28:28\",\n\t[\"StrawBeary\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\StrawBeary.tga:28:28\",\n\t[\"SuperVinlin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SuperVinlin.tga:28:28\",\n\t[\"SwiftRage\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\SwiftRage.tga:28:28\",\n\t[\"TakeNRG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TakeNRG.tga:28:28\",\n\t[\"TBAngel\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TBAngel.tga:28:28\",\n\t[\"TBCheesePull\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TBCheesePull.tga:28:28\",\n\t[\"TBTacoLeft\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TBTacoLeft.tga:28:28\",\n\t[\"TBTacoRight\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TBTacoRight.tga:28:28\",\n\t[\"TearGlove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TearGlove.tga:28:28\",\n\t[\"TehePelo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TehePelo.tga:28:28\",\n\t[\"TF2John\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TF2John.tga:28:28\",\n\t[\"ThankEgg\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ThankEgg.tga:28:28\",\n\t[\"TheIlluminati\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TheIlluminati.tga:28:28\",\n\t[\"TheRinger\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TheRinger.tga:28:28\",\n\t[\"TheTarFu\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TheTarFu.tga:28:28\",\n\t[\"TheThing\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TheThing.tga:28:28\",\n\t[\"ThunBeast\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ThunBeast.tga:28:28\",\n\t[\"TinyFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TinyFace.tga:28:28\",\n\t[\"TooSpicy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TooSpicy.tga:28:28\",\n\t[\"TriHard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TriHard.tga:28:28\",\n\t[\"WideHard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TriHard.tga:28:112\",\n\t[\"TTours\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TTours.tga:28:28\",\n\t[\"twitchRaid\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\twitchRaid.tga:28:28\",\n\t[\"TwitchRPG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\TwitchRPG.tga:28:28\",\n\t[\"UncleNox\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\UncleNox.tga:28:28\",\n\t[\"UnSane\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\UnSane.tga:28:28\",\n\t[\"UWot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\UWot.tga:28:28\",\n\t[\"VoHiYo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\VoHiYo.tga:28:28\",\n\t[\"VoteNay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\VoteNay.tga:28:28\",\n\t[\"VoteYea\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\VoteYea.tga:28:28\",\n\t[\"WholeWheat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\WholeWheat.tga:28:28\",\n\t[\"WTRuck\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\WTRuck.tga:28:28\",\n\t[\"WutFace\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\WutFace.tga:28:28\",\n\t[\"YouDontSay\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\YouDontSay.tga:28:28\",\n\t[\"YouWHY\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\YouWHY.tga:28:28\",\n\t[\"VaultBoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\VaultBoy.tga:28:28\",\n\t[\"cmonBrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\cmonBrug.tga:28:28\",\n\t[\"HYPERBRUG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HYPERBRUG.tga:28:28\",\n\t[\"WideBrug\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\cmonBrug.tga:28:112\",\n\t[\"WIDEHYPERBRUG\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HYPERBRUG.tga:28:112\",\n\t[\"AngelThump\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\AngelThump.tga:28:64\",\n\t[\"DICKS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\DICKS.tga:28:56\",\n\t[\"gachiHYPER\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\gachiHYPER.tga:28:28\",\n\t[\"HYPERLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\HYPERLUL.tga:28:28\",\n\t[\"ConcernFroge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\ConcernFroge.tga:28:28\",\n\t[\"FacePalm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\FacePalm.tga:28:28\",\n\t[\"Squid1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Squid1.tga:28:28\",\n\t[\"Squid2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Squid2.tga:28:28\",\n\t[\"Squid3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Squid3.tga:28:28\",\n\t[\"Squid4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\Squid4.tga:28:28\",\n\t[\"WinnerWinner\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\WinnerWinner.tga:28,28\",\n\t[\"RSmile\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotSmile.tga:20,20\",\n\t[\"RSmiling\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotD.tga:20,20\",\n\t[\"RFrown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotFrown.tga:20,20\",\n\t[\"RGasp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotGasp.tga:20,20\",\n\t[\"RCool\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotB).tga:20,20\",\n\t[\"RMeh\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotEh.tga:20,20\",\n\t[\"RWink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotWink.tga:20,20\",\n\t[\"RWinkTongue\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotWinkTongue.tga:20,20\",\n\t[\"RTongue\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotTongue.tga:20,20\",\n\t[\"RPatch\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotPirate.tga:20,20\",\n\t[\"o_O\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotEye.tga:20,20\",\n\t[\"RTired\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotTired.tga:20,20\",\n\t[\"RHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\TwitchTV\\\\RobotHeart.tga:20,20\",\n\t-- AdmiralBahroo\n\t[\"rooAww\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooAww.tga:28:28\",\n\t[\"rooBlank\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooBlank.tga:28:28\",\n\t[\"rooBless\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooBless.tga:28:28\",\n\t[\"rooLove\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooLove.tga:28:28\",\n\t[\"rooBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooBlind.tga:28:28\",\n\t[\"rooBonk\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooBonk.tga:28:28\",\n\t[\"rooBooli\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooBooli.tga:28:28\",\n\t[\"rooBot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooBot.tga:28:28\",\n\t[\"rooCarry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooCarry.tga:28:28\",\n\t[\"rooCop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooCop.tga:28:28\",\n\t[\"rooCry\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooCry.tga:28:28\",\n\t[\"rooCult\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooCult.tga:28:28\",\n\t[\"rooD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooD.tga:28:28\",\n\t[\"rooDab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooDab.tga:28:28\",\n\t[\"rooDerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooDerp.tga:28:28\",\n\t[\"rooDevil\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooDevil.tga:28:28\",\n\t[\"rooDisgust\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooDisgust.tga:28:28\",\n\t[\"rooEZ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooEZ.tga:28:28\",\n\t[\"rooGift\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooGift.tga:28:28\",\n\t[\"rooHappy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooHappy.tga:28:28\",\n\t[\"rooLick\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooLick.tga:28:28\",\n\t[\"rooLick2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooLick2.tga:28:28\",\n\t[\"rooMurica\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooMurica.tga:28:28\",\n\t[\"rooNap\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooNap.tga:28:28\",\n\t[\"rooNom\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooNom.tga:28:28\",\n\t[\"rooPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooPog.tga:28:28\",\n\t[\"rooPs\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooPs.tga:28:28\",\n\t[\"rooREE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooREE.tga:28:28\",\n\t[\"rooScheme\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooScheme.tga:28:28\",\n\t[\"rooSellout\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooSellout.tga:28:28\",\n\t[\"rooSmush\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooSmush.tga:28:28\",\n\t[\"rooSleepy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooSleepy.tga:28:28\",\n\t[\"rooThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooThink.tga:28:28\",\n\t[\"rooTHIVV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooTHIVV.tga:28:28\",\n\t[\"rooVV\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooVV.tga:28:28\",\n\t[\"rooWW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooWW.tga:28:28\",\n\t[\"rooWhine\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooWhine.tga:28:28\",\n\t[\"rooWut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\AdmiralBahroo\\\\rooWut.tga:28:28\",\n\t-- Drainerx\n\t[\"drxBrain\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxBrain.tga:28:28\",\n\t[\"drxCS\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxCS.tga:28:28\",\n\t[\"drxD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxD.tga:28:28\",\n\t[\"drxSSJ\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxSSJ.tga:28:28\",\n\t[\"drxPog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxPog.tga:28:28\",\n\t[\"drxDict\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxDict.tga:28:28\",\n\t[\"drxFE\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxFE.tga:28:28\",\n\t[\"drxED\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxED.tga:28:28\",\n\t[\"drxFE1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxFE1.tga:28:28\",\n\t[\"drxED2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxED2.tga:28:28\",\n\t[\"drxCri\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxCri.tga:28:28\",\n\t[\"drxmonkaEYES\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxmonkaEYES.tga:28:28\",\n\t[\"drxEyes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxEyes.tga:28:28\",\n\t[\"drxGod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxGod.tga:28:28\",\n\t[\"drxR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxR.tga:28:28\",\n\t[\"drxW\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxW.tga:28:28\",\n\t[\"drxGlad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Drainerx\\\\drxGlad.tga:28:28\",\n\t-- Greekgodx\n\t[\"greekA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekA.tga:28:28\",\n\t[\"greekBrow\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekBrow.tga:28:28\",\n\t[\"greekDiet\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekDiet.tga:28:28\",\n\t[\"greekGirl\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekGirl.tga:28:28\",\n\t[\"greekGordo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekGordo.tga:28:28\",\n\t[\"greekGweek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekGweek.tga:28:28\",\n\t[\"greekHard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekHard.tga:28:28\",\n\t[\"greekJoy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekJoy.tga:28:28\",\n\t[\"greekKek\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekKek.tga:28:28\",\n\t[\"greekM\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekM.tga:28:28\",\n\t[\"greekMlady\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekMlady.tga:28:28\",\n\t[\"greekOi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekOi.tga:28:28\",\n\t[\"greekP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekP.tga:28:28\",\n\t[\"greekHYPERP\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekHYPERP.tga:28:28\",\n\t[\"greekThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekThink.tga:28:28\",\n\t[\"greekPVC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekPVC.tga:28:28\",\n\t[\"greekSad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekSad.tga:28:28\",\n\t[\"greekSheep\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekSheep.tga:28:28\",\n\t[\"greekSleeper\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekSleeper.tga:28:28\",\n\t[\"greekSquad\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekSquad.tga:28:28\",\n\t[\"greekT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekT.tga:28:56\",\n\t[\"greekTilt\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekTilt.tga:28:28\",\n\t[\"greekWC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekWC.tga:28:28\",\n\t[\"greekWhy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekWhy.tga:28:28\",\n\t[\"greekWtf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekWtf.tga:28:28\",\n\t[\"greekYikes\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Greekgodx\\\\greekYikes.tga:28:28\",\n\t-- Vinesauce\n\t[\"vineAlien\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineAlien.tga:28:28\",\n\t[\"vineBab\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineBab.tga:28:28\",\n\t[\"vineBadPC\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineBadPC.tga:28:28\",\n\t[\"vineBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineBlind.tga:28:28\",\n\t[\"vineBowie\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineBowie.tga:28:28\",\n\t[\"vineBrainyot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineBrainyot.tga:28:28\",\n\t[\"vineChamp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineChamp.tga:28:28\",\n\t[\"vineClown\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineClown.tga:28:28\",\n\t[\"vineEscape\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineEscape.tga:28:28\",\n\t[\"vineGasm\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineGasm.tga:28:28\",\n\t[\"vineHard\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineHard.tga:28:28\",\n\t[\"vineHeart\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineHeart.tga:28:28\",\n\t[\"vineJape\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineJape.tga:28:28\",\n\t[\"vineKirb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineKirb.tga:28:28\",\n\t[\"vineKorok\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineKorok.tga:28:28\",\n\t[\"vineLoog\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineLoog.tga:28:28\",\n\t[\"vineLoog3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineLoog3.tga:28:28\",\n\t[\"vineLuigi\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineLuigi.tga:28:28\",\n\t[\"vineLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineLUL.tga:28:28\",\n\t[\"vineM8\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineM8.tga:28:28\",\n\t[\"vineMayro\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineMayro.tga:28:28\",\n\t[\"vineMortis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineMortis.tga:28:28\",\n\t[\"vinePassive\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vinePassive.tga:28:28\",\n\t[\"vineRalph\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineRalph.tga:28:28\",\n\t[\"vineRaptor\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineRaptor.tga:28:28\",\n\t[\"vineRizon\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineRizon.tga:28:28\",\n\t[\"vineSanic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineSanic.tga:28:28\",\n\t[\"vineSchut\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineSchut.tga:28:28\",\n\t[\"vineScoot\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineScoot.tga:28:28\",\n\t[\"vineSponge\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineSponge.tga:28:28\",\n\t[\"vineTalian\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineTalian.tga:28:28\",\n\t[\"vineThink\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineThink.tga:28:28\",\n\t[\"vineTommy\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineTommy.tga:28:28\",\n\t[\"vineTubby\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineTubby.tga:28:28\",\n\t[\"vineWhat\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Vinesauce\\\\vineWhat.tga:28:28\",\n\t-- DBMMan\n\t[\"mystic139Dbmleft\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mystic139Dbmleft.tga:28:28\",\n\t[\"mystic139Dbmright\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mystic139Dbmright.tga:28:28\",\n\t[\"mystic139Wolf\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mystic139Wolf.tga:28:28\",\n\t[\"mystic139Runaway\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mystic139Runaway.tga:28:28\",\n\t[\"mystic139Beware\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mystic139Beware.tga:28:28\",\n\t[\"mystic139Airhorn\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Custom\\\\mystic139Airhorn.tga:28:28\",\n\t-- witwix\n\t[\"wix1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wix1.tga:28:28\",\n\t[\"wix2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wix2.tga:28:28\",\n\t[\"wix3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wix3.tga:28:28\",\n\t[\"wix4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wix4.tga:28:28\",\n\t[\"wixAyyLmar\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixAyyLmar.tga:28:28\",\n\t[\"wixB\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixB.tga:28:28\",\n\t[\"wixBlind\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixBlind.tga:28:28\",\n\t[\"wixBod\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixBod.tga:28:28\",\n\t[\"wixBowsey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixBowsey.tga:28:28\",\n\t[\"wixBrix\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixBrix.tga:28:28\",\n\t[\"wixCheese\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixCheese.tga:28:28\",\n\t[\"wixD\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixD.tga:28:28\",\n\t[\"wixDankey\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixDankey.tga:28:28\",\n\t[\"wixGold\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixGold.tga:28:28\",\n\t[\"wixH\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixH.tga:28:28\",\n\t[\"wixHA\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixHA.tga:28:28\",\n\t[\"wixHassanCop\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixHassanCop.tga:28:28\",\n\t[\"wixK\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixK.tga:28:28\",\n\t[\"wixL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixL.tga:28:28\",\n\t[\"wixLUL\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixLUL.tga:28:28\",\n\t[\"wixMagoo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixMagoo.tga:28:28\",\n\t[\"wixMerio\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixMerio.tga:28:28\",\n\t[\"wixMini\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixMini.tga:28:28\",\n\t[\"wixNis\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixNis.tga:28:28\",\n\t[\"wixR\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixR.tga:28:28\",\n\t[\"wixSanic\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixSanic.tga:28:28\",\n\t[\"wixSkerp\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixSkerp.tga:28:28\",\n\t[\"wixT\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixT.tga:28:28\",\n\t[\"wixW1\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixW1.tga:28:28\",\n\t[\"wixW2\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixW2.tga:28:28\",\n\t[\"wixW3\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixW3.tga:28:28\",\n\t[\"wixW4\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixW4.tga:28:28\",\n\t[\"wixWeeb\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixWeeb.tga:28:28\",\n\t[\"wixWerio\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixWerio.tga:28:28\",\n\t[\"wixZaldo\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\witwix\\\\wixZaldo.tga:28:28\",\n\t[\"ParkourDin\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\ParkourDin\\\\ParkourDin.tga:32:32\",\n\t[\"Crabtos\"]=\"Interface\\\\AddOns\\\\TwitchEmotes\\\\Zaitos\\\\Crabtos.tga:40:40\",\n };\n local emoticons={\n\t-- A_Seagull\n\t[\"seag1HP\"]=\"seag1HP\",\n\t[\"seag7\"]=\"seag7\",\n\t[\"seagBAKA\"]=\"seagBAKA\",\n\t[\"seagBAN\"]=\"seagBAN\",\n\t[\"seagBox\"]=\"seagBox\",\n\t[\"seagBruh\"]=\"seagBruh\",\n\t[\"seagC\"]=\"seagC\",\n\t[\"seagCaw\"]=\"seagCaw\",\n\t[\"seagCHEEK\"]=\"seagCHEEK\",\n\t[\"seagCry\"]=\"seagCry\",\n\t[\"seagDerp\"]=\"seagDerp\",\n\t[\"seagDINO\"]=\"seagDINO\",\n\t[\"seagEZ\"]=\"seagEZ\",\n\t[\"seagFeels\"]=\"seagFeels\",\n\t[\"seagFeelsG\"]=\"seagFeelsG\",\n\t[\"seagFine\"]=\"seagFine\",\n\t[\"seagFIST\"]=\"seagFIST\",\n\t[\"seagGASM\"]=\"seagGASM\",\n\t[\"seagGotem\"]=\"seagGotem\",\n\t[\"seagH\"]=\"seagH\",\n\t[\"seagHeals\"]=\"seagHeals\",\n\t[\"seagHey\"]=\"seagHey\",\n\t[\"seagHug\"]=\"seagHug\",\n\t[\"seagHYPE\"]=\"seagHYPE\",\n\t[\"seagJ\"]=\"seagJ\",\n\t[\"seagLATE\"]=\"seagLATE\",\n\t[\"seagLUL\"]=\"seagLUL\",\n\t[\"seagMei\"]=\"seagMei\",\n\t[\"seagNo\"]=\"seagNo\",\n\t[\"seagPog\"]=\"seagPog\",\n\t[\"Grethos\"]=\"BadW\",\n\t[\"grethos\"]=\"BadW\",\n\t[\"seagPUKE\"]=\"seagPUKE\",\n\t[\"seagR\"]=\"seagR\",\n\t[\"seagRIP\"]=\"seagRIP\",\n\t[\"seagSG\"]=\"seagSG\",\n\t[\"seagSMUSH\"]=\"seagSMUSH\",\n\t[\"seagSPY\"]=\"seagSPY\",\n\t[\"seagT\"]=\"seagT\",\n\t[\"seagTracist\"]=\"seagTracist\",\n\t[\"seagW1\"]=\"seagW1\",\n\t[\"seagW2\"]=\"seagW2\",\n\t[\"seagWHY\"]=\"seagWHY\",\n\t[\"seagWTF\"]=\"seagWTF\",\n\t-- AdmiralBulldog\n\t[\"admiral1\"]=\"admiral1\",\n\t[\"admiral2\"]=\"admiral2\",\n\t[\"admiral3\"]=\"admiral3\",\n\t[\"admiral4\"]=\"admiral4\",\n\t[\"admiral6\"]=\"admiral6\",\n\t[\"admiralB\"]=\"admiralB\",\n\t[\"admiralB1\"]=\"admiralB1\",\n\t[\"admiralB2\"]=\"admiralB2\",\n\t[\"admiralB3\"]=\"admiralB3\",\n\t[\"admiralB4\"]=\"admiralB4\",\n\t[\"admiralB5\"]=\"admiralB5\",\n\t[\"admiralB6\"]=\"admiralB6\",\n\t[\"admiralB7\"]=\"admiralB7\",\n\t[\"admiralB8\"]=\"admiralB8\",\n\t[\"admiralB9\"]=\"admiralB9\",\n\t[\"admiralBackpack\"]=\"admiralBackpack\",\n\t[\"admiralBanana\"]=\"admiralBanana\",\n\t[\"admiralC\"]=\"admiralC\",\n\t[\"admiralCS\"]=\"admiralCS\",\n\t[\"admiralDong\"]=\"admiralDong\",\n\t[\"admiralFedora\"]=\"admiralFedora\",\n\t[\"admiralFeels\"]=\"admiralFeels\",\n\t[\"admiralGame\"]=\"admiralGame\",\n\t[\"admiralHappy\"]=\"admiralHappy\",\n\t[\"admiralJebaited\"]=\"admiralJebaited\",\n\t[\"admiralKawaii\"]=\"admiralKawaii\",\n\t[\"admiralKristin\"]=\"admiralKristin\",\n\t[\"admiralLove\"]=\"admiralLove\",\n\t[\"admiralNox\"]=\"admiralNox\",\n\t[\"admiralPleb\"]=\"admiralPleb\",\n\t[\"admiralPride\"]=\"admiralPride\",\n\t[\"admiralRapira\"]=\"admiralRapira\",\n\t[\"admiralS4\"]=\"admiralS4\",\n\t[\"admiralS4CD\"]=\"admiralS4CD\",\n\t[\"admiralS4Head\"]=\"admiralS4Head\",\n\t[\"admiralSellout\"]=\"admiralSellout\",\n\t[\"admiralSexy\"]=\"admiralSexy\",\n\t[\"admiralSkadoosh\"]=\"admiralSkadoosh\",\n\t[\"admiralSmart\"]=\"admiralSmart\",\n\t[\"admiralTI\"]=\"admiralTI\",\n\t[\"admiralW\"]=\"admiralW\",\n\t-- nymn\n\t[\"nymn0\"]=\"nymn0\",\n\t[\"nymn1\"]=\"nymn1\",\n\t[\"nymn2\"]=\"nymn2\",\n\t[\"nymn2x\"]=\"nymn2x\",\n\t[\"nymn3\"]=\"nymn3\",\n\t[\"nymn158\"]=\"nymn158\",\n\t[\"nymnA\"]=\"nymnA\",\n\t[\"nymnAww\"]=\"nymnAww\",\n\t[\"nymnB\"]=\"nymnB\",\n\t[\"nymnBee\"]=\"nymnBee\",\n\t[\"nymnBenis\"]=\"nymnBenis\",\n\t[\"nymnBiggus\"]=\"nymnBiggus\",\n\t[\"nymnBridge\"]=\"nymnBridge\",\n\t[\"nymnC\"]=\"nymnC\",\n\t[\"nymnCaptain\"]=\"nymnCaptain\",\n\t[\"nymnCC\"]=\"nymnCC\",\n\t[\"nymnCD\"]=\"nymnCD\",\n\t[\"nymnCozy\"]=\"nymnCozy\",\n\t[\"nymnCREB\"]=\"nymnCREB\",\n\t[\"nymnCringe\"]=\"nymnCringe\",\n\t[\"nymnCry\"]=\"nymnCry\",\n\t[\"nymnDab\"]=\"nymnDab\",\n\t[\"nymnDeer\"]=\"nymnDeer\",\n\t[\"nymnE\"]=\"nymnE\",\n\t[\"nymnElf\"]=\"nymnElf\",\n\t[\"nymnEU\"]=\"nymnEU\",\n\t[\"nymnEZ\"]=\"nymnEZ\",\n\t[\"nymnFlag\"]=\"nymnFlag\",\n\t[\"nymnFlick\"]=\"nymnFlick\",\n\t[\"nymnFood\"]=\"nymnFood\",\n\t[\"nymnG\"]=\"nymnG\",\n\t[\"nymnGasm\"]=\"nymnGASM\",\n\t[\"nymnGasp\"]=\"nymnGASP\",\n\t[\"nymnGnome\"]=\"nymnGnome\",\n\t[\"nymnGold\"]=\"nymnGold\",\n\t[\"nymnGolden\"]=\"nymnGolden\",\n\t[\"nymnGun\"]=\"nymnGun\",\n\t[\"nymnH\"]=\"nymnH\",\n\t[\"nymnHammer\"]=\"nymnHammer\",\n\t[\"nymnHmm\"]=\"nymnHmm\",\n\t[\"nymnHonk\"]=\"nymnHonk\",\n\t[\"nymnHydra\"]=\"nymnHydra\",\n\t[\"nymnJoy\"]=\"nymnJoy\",\n\t[\"nymnK\"]=\"nymnK\",\n\t[\"nymnKek\"]=\"nymnKek\",\n\t[\"nymnKing\"]=\"nymnKing\",\n\t[\"nymnKomrade\"]=\"nymnKomrade\",\n\t[\"nymnL\"]=\"nymnL\",\n\t[\"nymnM\"]=\"nymnM\",\n\t[\"nymnNA\"]=\"nymnNA\",\n\t[\"nymnNo\"]=\"nymnNo\",\n\t[\"nymnNormie\"]=\"nymnNormie\",\n\t[\"nymnOkay\"]=\"nymnOkay\",\n\t[\"nymnP\"]=\"nymnP\",\n\t[\"nymnPains\"]=\"nymnPains\",\n\t[\"nymnPog\"]=\"nymnPog\",\n\t[\"nymnPuke\"]=\"nymnPuke\",\n\t[\"nymnR\"]=\"nymnR\",\n\t[\"nymnRaffle\"]=\"nymnRaffle\",\n\t[\"nymnRupert\"]=\"nymnRupert\",\n\t[\"nymnS\"]=\"nymnS\",\n\t[\"nymnSad\"]=\"nymnSad\",\n\t[\"nymnScuffed\"]=\"nymnScuffed\",\n\t[\"nymnSleeper\"]=\"nymnSleeper\",\n\t[\"nymnSmart\"]=\"nymnSmart\",\n\t[\"nymnSmol\"]=\"nymnSmol\",\n\t[\"nymnZ\"]=\"nymnZ\",\n\t[\"nymnSmug\"]=\"nymnSmug\",\n\t[\"nymnSon\"]=\"nymnSon\",\n\t[\"nymnSoy\"]=\"nymnSoy\",\n\t[\"nymnSpurdo\"]=\"nymnSpurdo\",\n\t[\"nymnStrong\"]=\"nymnStrong\",\n\t[\"nymnThink\"]=\"nymnThink\",\n\t[\"nymnTransparent\"]=\"nymnTransparent\",\n\t[\"nymnU\"]=\"nymnU\",\n\t[\"nymnV\"]=\"nymnV\",\n\t[\"nymnW\"]=\"nymnW\",\n\t[\"nymnWhy\"]=\"nymnWhy\",\n\t[\"nymnX\"]=\"nymnX\",\n\t[\"nymnXd\"]=\"nymnXd1\",\n\t[\"nymnXD\"]=\"nymnXD\",\n\t[\"nymnY\"]=\"nymnY\",\n\t[\"nymnFEEDME\"]=\"nymnFEEDME\",\n\t-- Alkaizerx\n\t[\"alkArmy\"]=\"alkArmy\",\n\t[\"alkBG\"]=\"alkBG\",\n\t[\"alkBorbs\"]=\"alkBorbs\",\n\t[\"alkChoi\"]=\"alkChoi\",\n\t[\"alkDio\"]=\"alkDio\",\n\t[\"alkEcks\"]=\"alkEcks\",\n\t[\"alkFax\"]=\"alkFax\",\n\t[\"alkGuku\"]=\"alkGuku\",\n\t[\"alkJoocy\"]=\"alkJoocy\",\n\t[\"alkJulbak\"]=\"alkJulbak\",\n\t[\"alkKayo\"]=\"alkKayo\",\n\t[\"alkKrazy\"]=\"alkKrazy\",\n\t[\"alkKrill\"]=\"alkKrill\",\n\t[\"alkMoost\"]=\"alkMoost\",\n\t[\"alkP\"]=\"alkP\",\n\t[\"alkPeasemo\"]=\"alkPeasemo\",\n\t[\"alkPlastic\"]=\"alkPlastic\",\n\t[\"alkRoo\"]=\"alkRoo\",\n\t[\"alkW1\"]=\"alkW1\",\n\t[\"alkW2\"]=\"alkW2\",\n\t[\"alkW3\"]=\"alkW3\",\n\t[\"alkW4\"]=\"alkW4\",\n\t[\"alkW5\"]=\"alkW5\",\n\t[\"alkW6\"]=\"alkW6\",\n\t[\"alkXD\"]=\"alkXD\",\n\t[\"alkPopo\"]=\"alkPopo\",\n\t[\"alkXD\"]=\"alkXD\",\n\t[\"alkPopo\"]=\"alkPopo\",\n\t-- AnnieFuchsia\n\t[\"anniesBob\"]=\"anniesBob\",\n\t[\"anniesCreep\"]=\"anniesCreep\",\n\t[\"anniesCry\"]=\"anniesCry\",\n\t[\"anniesE\"]=\"anniesE\",\n\t[\"anniesFeels\"]=\"anniesFeels\",\n\t[\"anniesFF\"]=\"anniesFF\",\n\t[\"anniesFuchsia\"]=\"anniesFuchsia\",\n\t[\"anniesG\"]=\"anniesG\",\n\t[\"anniesGun\"]=\"anniesGun\",\n\t[\"anniesH\"]=\"anniesH\",\n\t[\"anniesHAA\"]=\"anniesHAA\",\n\t[\"anniesHi\"]=\"anniesHi\",\n\t[\"anniesHype\"]=\"anniesHype\",\n\t[\"anniesL\"]=\"anniesL\",\n\t[\"anniesLurk\"]=\"anniesLurk\",\n\t[\"anniesRage\"]=\"anniesRage\",\n\t[\"anniesShrug\"]=\"anniesShrug\",\n\t[\"anniesShy\"]=\"anniesShy\",\n\t[\"anniesSkal\"]=\"anniesSkal\",\n\t[\"anniesSmug\"]=\"anniesSmug\",\n\t[\"anniesThink\"]=\"anniesThink\",\n\t[\"anniesTibbers\"]=\"anniesTibbers\",\n\t[\"anniesW\"]=\"anniesW\",\n\t-- Mizkif\n\t[\"mizkif4\"]=\"mizkif4\",\n\t[\"mizkifBlanket\"]=\"mizkifBlanket\",\n\t[\"mizkifBruh\"]=\"mizkifBruh\",\n\t[\"mizkifC\"]=\"mizkifC\",\n\t[\"mizkifCorn\"]=\"mizkifCorn\",\n\t[\"mizkifCozy\"]=\"mizkifCozy\",\n\t[\"mizkifCry\"]=\"mizkifCry\",\n\t[\"mizkifCup\"]=\"mizkifCup\",\n\t[\"mizkifD\"]=\"mizkifD\",\n\t[\"mizkifDank\"]=\"mizkifDank\",\n\t[\"mizkifDedo\"]=\"mizkifDedo\",\n\t[\"mizkifDent\"]=\"mizkifDent\",\n\t[\"mizkifE\"]=\"mizkifE\",\n\t[\"mizkifEgg\"]=\"mizkifEgg\",\n\t[\"mizkifEZ\"]=\"mizkifEZ\",\n\t[\"mizkifFancy\"]=\"mizkifFancy\",\n\t[\"mizkifFeelsBadMan\"]=\"mizkifFeelsBadMan\",\n\t[\"mizkifG\"]=\"mizkifG\",\n\t[\"mizkifGEgg\"]=\"mizkifGEgg\",\n\t[\"mizkifGasm\"]=\"mizkifGasm\",\n\t[\"mizkifH\"]=\"mizkifH\",\n\t[\"mizkifHA\"]=\"mizkifHA\",\n\t[\"mizkifHand\"]=\"mizkifHand\",\n\t[\"mizkifHead\"]=\"mizkifHead\",\n\t[\"mizkifHug\"]=\"mizkifHug\",\n\t[\"mizkifHugs\"]=\"mizkifHugs\",\n\t[\"mizkifJif\"]=\"mizkifJif\",\n\t[\"mizkifKid\"]=\"mizkifKid\",\n\t[\"mizkifOkay\"]=\"mizkifOkay\",\n\t[\"mizkifPeepo\"]=\"mizkifPeepo\",\n\t[\"mizkifPega\"]=\"mizkifPega\",\n\t[\"mizkifPls\"]=\"mizkifPls\",\n\t[\"mizkifPoke\"]=\"mizkifPoke\",\n\t[\"mizkifRain\"]=\"mizkifRain\",\n\t[\"mizkifREE\"]=\"mizkifREE\",\n\t[\"mizkifS\"]=\"mizkifS\",\n\t[\"mizkifSad\"]=\"mizkifSad\",\n\t[\"mizkifSip\"]=\"mizkifSip\",\n\t[\"mizkifThink\"]=\"mizkifThink\",\n\t[\"mizkifU\"]=\"mizkifU\",\n\t[\"mizkifV\"]=\"mizkifV\",\n\t[\"mizkifW\"]=\"mizkifW\",\n\t[\"mizkifWC\"]=\"mizkifWC\",\n\t[\"mizkifWeird\"]=\"mizkifWeird\",\n\t[\"mizkifY\"]=\"mizkifY\",\n\t-- AnneMunation\n\t[\"anneHeart\"]=\"anneHeart\",\n\t[\"Ceelia\"]=\"WeirdChamp\",\n\t[\"ceelia\"]=\"WeirdChamp\",\n\t[\"Ceel\u00eda\"]=\"tpBulk\",\n\t[\"ceel\u00eda\"]=\"tpBulk\",\n\t-- Arteezy\n\t[\"rtzAomine\"]=\"rtzAomine\",\n\t[\"rtzB\"]=\"rtzB\",\n\t[\"rtzBayed\"]=\"rtzBayed\",\n\t[\"rtzDX\"]=\"rtzDX\",\n\t[\"rtzFail\"]=\"rtzFail\",\n\t[\"rtzGasm\"]=\"rtzGasm\",\n\t[\"rtzGetEm\"]=\"rtzGetEm\",\n\t[\"rtzHehe\"]=\"rtzHehe\",\n\t[\"rtzHippo\"]=\"rtzHippo\",\n\t[\"rtzKappa\"]=\"rtzKappa\",\n\t[\"rtzLike\"]=\"rtzLike\",\n\t[\"rtzLUL\"]=\"rtzLUL\",\n\t[\"rtzM\"]=\"rtzM\",\n\t[\"rtzP\"]=\"rtzP\",\n\t[\"rtzS\"]=\"rtzS\",\n\t[\"rtzSad\"]=\"rtzSad\",\n\t[\"rtzSlayer\"]=\"rtzSlayer\",\n\t[\"rtzSmooth\"]=\"rtzSmooth\",\n\t[\"rtzThinking\"]=\"rtzThinking\",\n\t[\"rtzW\"]=\"rtzW\",\n\t[\"rtzW1\"]=\"rtzW1\",\n\t[\"rtzW2\"]=\"rtzW2\",\n\t[\"rtzW3\"]=\"rtzW3\",\n\t[\"rtzW4\"]=\"rtzW4\",\n\t[\"rtzXD\"]=\"rtzWXD\",\n\t-- Asmongold\n\t[\"asmon1\"]=\"asmon1\",\n\t[\"asmon2\"]=\"asmon2\",\n\t[\"asmon3\"]=\"asmon3\",\n\t[\"asmon4\"]=\"asmon4\",\n\t[\"asmonC\"]=\"asmonC\",\n\t[\"asmonCD\"]=\"asmonCD\",\n\t[\"asmonD\"]=\"asmonD\",\n\t[\"asmonDad\"]=\"asmonDad\",\n\t[\"asmonDegen\"]=\"asmonDegen\",\n\t[\"asmonG\"]=\"asmonG\",\n\t[\"asmonGASM\"]=\"asmonGASM\",\n\t[\"asmonGet\"]=\"asmonGet\",\n\t[\"asmonL\"]=\"asmonL\",\n\t[\"asmonLFR\"]=\"asmonLFR\",\n\t[\"asmonLove\"]=\"asmonLove\",\n\t[\"asmonM\"]=\"asmonM\",\n\t[\"asmonPray\"]=\"asmonPray\",\n\t[\"asmonTiger\"]=\"asmonTiger\",\n\t[\"asmonUH\"]=\"asmonUH\",\n\t[\"asmonW\"]=\"asmonW\",\n\t[\"asmonDaze\"]=\"asmonDaze\",\n\t[\"asmonE\"]=\"asmonE\",\n\t[\"asmonE1\"]=\"asmonE1\",\n\t[\"asmonE2\"]=\"asmonE2\",\n\t[\"asmonE3\"]=\"asmonE3\",\n\t[\"asmonE4\"]=\"asmonE4\",\n\t[\"asmonFiend\"]=\"asmonFiend\",\n\t[\"asmonHide\"]=\"asmonHide\",\n\t[\"asmonLong1\"]=\"asmonLong1\",\n\t[\"asmonLong2\"]=\"asmonLong2\",\n\t[\"asmonLong3\"]=\"asmonLong3\",\n\t[\"asmonLong4\"]=\"asmonLong4\",\n\t[\"asmonOcean\"]=\"asmonOcean\",\n\t[\"asmonOrc\"]=\"asmonOrc\",\n\t[\"asmonTar\"]=\"asmonTar\",\n\t[\"asmonP\"]=\"asmonP\",\n\t[\"asmonPrime\"]=\"asmonPrime\",\n\t[\"asmonR\"]=\"asmonR\",\n\t[\"asmonSad\"]=\"asmonSad\",\n\t[\"asmonREE\"]=\"asmonREE\",\n\t[\"asmonStare\"]=\"asmonStare\",\n\t[\"asmonWHAT\"]=\"asmonWHAT\",\n\t[\"asmonWHATR\"]=\"asmonWHATR\",\n\t[\"asmonWOW\"]=\"asmonWOW\",\n\t-- AvoidingThePuddle\n\t[\"Voxee\"]=\"WeirdW\",\n\t[\"voxee\"]=\"WeirdW\",\n\t[\"atp1000\"]=\"atp1000\",\n\t[\"atpChar\"]=\"atpChar\",\n\t[\"atpCop\"]=\"atpCop\",\n\t[\"atpDog\"]=\"atpDog\",\n\t[\"atpFeelsBeardMan\"]=\"atpFeelsBeardMan\",\n\t[\"atpGasm\"]=\"atpGasm\",\n\t[\"atpHorns\"]=\"atpHorns\",\n\t[\"atpIzza\"]=\"atpIzza\",\n\t[\"atpLaw\"]=\"atpLaw\",\n\t[\"atpLook\"]=\"atpLook\",\n\t[\"atpRtsd\"]=\"atpRtsd\",\n\t[\"atpRtsd1\"]=\"atpRtsd1\",\n\t[\"atpRtsd2\"]=\"atpRtsd2\",\n\t[\"atpRtsd3\"]=\"atpRtsd3\",\n\t[\"atpRtsd4\"]=\"atpRtsd4\",\n\t[\"atpShh\"]=\"atpShh\",\n\t[\"atpSolid\"]=\"atpSolid\",\n\t[\"atpStude\"]=\"atpStude\",\n\t[\"atpToiler\"]=\"atpToiler\",\n\t[\"atpWind\"]=\"atpWind\",\n\t--B0aty\n\t[\"boatyVV\"]=\"boatyVV\",\n\t[\"boatyVV1\"]=\"boatyVV1\",\n\t[\"boatyVV2\"]=\"boatyVV2\",\n\t[\"boatyVV3\"]=\"boatyVV3\",\n\t[\"boatyVV4\"]=\"boatyVV4\",\n\t[\"boaty1\"]=\"boaty1\",\n\t[\"boaty2\"]=\"boaty2\",\n\t[\"boatyBack2uni\"]=\"boatyBack2uni\",\n\t[\"boatyBBS\"]=\"boatyBBS\",\n\t[\"boatyBoss\"]=\"boatyBoss\",\n\t[\"boatyBpapter\"]=\"boatyBpapter\",\n\t[\"boatyC\"]=\"boatyC\",\n\t[\"boatyCaged1\"]=\"boatyCaged1\",\n\t[\"boatyCaged2\"]=\"boatyCaged2\",\n\t[\"boatyCheeky\"]=\"boatyCheeky\",\n\t[\"boatyCLANG\"]=\"boatyCLANG\",\n\t[\"boatyCoco\"]=\"boatyCoco\",\n\t[\"boatyCreeper\"]=\"boatyCreeper\",\n\t[\"boatyD\"]=\"boatyD\",\n\t[\"boatyDG\"]=\"boatyDG\",\n\t[\"boatyDrugs\"]=\"boatyDrugs\",\n\t[\"boatyDW\"]=\"boatyDW\",\n\t[\"boatyEisonhower\"]=\"boatyEisonhower\",\n\t[\"boatyEraze\"]=\"boatyEraze\",\n\t[\"boatyFGingerM\"]=\"boatyFGingerM\",\n\t[\"boatyG\"]=\"boatyG\",\n\t[\"boatyGACHI\"]=\"boatyGACHI\",\n\t[\"boatyGoldenDrugs\"]=\"boatyGoldenDrugs\",\n\t[\"boatyH\"]=\"boatyH\",\n\t[\"boatyHands\"]=\"boatyHands\",\n\t[\"boatyIQ\"]=\"boatyIQ\",\n\t[\"boatyKappa\"]=\"boatyKappa\",\n\t[\"boatyLove\"]=\"boatyLove\",\n\t[\"boatyLurk\"]=\"boatyLurk\",\n\t[\"boatyMC\"]=\"boatyMC\",\n\t[\"boatyMicMuted\"]=\"boatyMicMuted\",\n\t[\"boatyMilk\"]=\"boatyMilk\",\n\t[\"boatyNK\"]=\"boatyNK\",\n\t[\"boatyPENNY\"]=\"boatyPENNY\",\n\t[\"boatyR\"]=\"boatyR\",\n\t[\"boatyS\"]=\"boatyS\",\n\t[\"boatySELLOUT\"]=\"boatySELLOUT\",\n\t[\"boatySire\"]=\"boatySire\",\n\t[\"boatySMORK\"]=\"boatySMORK\",\n\t[\"boatySpecs\"]=\"boatySpecs\",\n\t[\"boatySS\"]=\"boatySS\",\n\t[\"boatySTARE\"]=\"boatySTARE\",\n\t[\"boatySwag\"]=\"boatySwag\",\n\t[\"boatyThump\"]=\"boatyThump\",\n\t[\"boatyToucan\"]=\"boatyToucan\",\n\t[\"boatyTroll\"]=\"boatyTroll\",\n\t[\"boatyU\"]=\"boatyU\",\n\t[\"boatyVV7\"]=\"boatyVV7\",\n\t[\"boatyVVomo\"]=\"boatyVVomo\",\n\t[\"boatyVVW\"]=\"boatyVVW\",\n\t[\"boatyW\"]=\"boatyW\",\n\t[\"boatyWahey\"]=\"boatyWahey\",\n\t[\"boatyWhale\"]=\"boatyWhale\",\n\t-- BobRoss\n\t[\"bobrossBeli\"]=\"bobrossBeli\",\n\t[\"bobrossBrush\"]=\"bobrossBrush\",\n\t[\"bobrossCabin\"]=\"bobrossCabin\",\n\t[\"bobrossCanvas\"]=\"bobrossCanvas\",\n\t[\"bobrossCanvasA\"]=\"bobrossCanvasA\",\n\t[\"bobrossCanvasB\"]=\"bobrossCanvasB\",\n\t[\"bobrossCanvasH\"]=\"bobrossCanvasH\",\n\t[\"bobrossCanvasP\"]=\"bobrossCanvasP\",\n\t[\"bobrossChamp\"]=\"bobrossChamp\",\n\t[\"bobrossCloud\"]=\"bobrossCloud\",\n\t[\"bobrossCool\"]=\"bobrossCool\",\n\t[\"bobrossEve\"]=\"bobrossEve\",\n\t[\"bobrossFan\"]=\"bobrossFan\",\n\t[\"bobrossFence\"]=\"bobrossFence\",\n\t[\"bobrossFree\"]=\"bobrossFree\",\n\t[\"bobrossGG\"]=\"bobrossGG\",\n\t[\"bobrossHappy\"]=\"bobrossHappy\",\n\t[\"bobrossKappaR\"]=\"bobrossKappaR\",\n\t[\"bobrossMeta\"]=\"bobrossMeta\",\n\t[\"bobrossMini\"]=\"bobrossMini\",\n\t[\"bobrossMnt\"]=\"bobrossMnt\",\n\t[\"bobrossNED\"]=\"bobrossNED\",\n\t[\"bobrossOPKnife\"]=\"bobrossOPKnife\",\n\t[\"bobrossPal\"]=\"bobrossPal\",\n\t[\"bobrossRUI\"]=\"bobrossRUI\",\n\t[\"bobrossSaved\"]=\"bobrossSaved\",\n\t[\"bobrossSq\"]=\"bobrossSq\",\n\t[\"bobrossTap\"]=\"bobrossTap\",\n\t[\"bobrossTree\"]=\"bobrossTree\",\n\t[\"bobrossVHS\"]=\"bobrossVHS\",\n\t[\"Vesari\"]=\"peepoVW\",\n\t[\"vesari\"]=\"peepoVW\",\n\t[\"Vesar\u00ed\"]=\"peepoVW\",\n\t[\"vesar\u00ed\"]=\"peepoVW\",\n\t-- BTTV+FFZ\n\t[\"emDface\"]=\"emDface\",\n\t[\"D:\"]=\"emDface\",\n\t[\"4HEad\"]=\"4HEad\",\n\t[\"BBona\"]=\"BBona\",\n\t[\"bUrself\"]=\"bUrself\",\n\t[\"ChogPamp\"]=\"ChogPamp\",\n\t[\"CiGrip\"]=\"CiGrip\",\n\t[\"ConcernDoge\"]=\"ConcernDoge\",\n\t[\"DogeWitIt\"]=\"DogeWitIt\",\n\t[\"eShrug\"]=\"eShrug\",\n\t[\"FapFapFap\"]=\"FapFapFap\",\n\t[\"FishMoley\"]=\"FishMoley\",\n\t[\"ForeverAlone\"]=\"ForeverAlone\",\n\t[\"FuckYea\"]=\"FuckYea\",\n\t[\"GabeN\"]=\"GabeN\",\n\t[\"gachiGASM\"]=\"gachiGASM\",\n\t[\"gachiBASS\"]=\"gachiGASM\",\n\t[\"haHAA\"]=\"haHAA\",\n\t[\"HammerTime\"]=\"HammerTime\",\n\t[\"HandsUp\"]=\"HandsUp\",\n\t[\"HerbPerve\"]=\"HerbPerve\",\n\t[\"Hhhehehe\"]=\"Hhhehehe\",\n\t[\"HYPERBRUH\"]=\"HYPERBRUH\",\n\t[\"HYPERTHONK\"]=\"HYPERTHONK\",\n\t[\"Kaged\"]=\"Kaged\",\n\t[\"Kermitpls\"]=\"Kermitpls\",\n\t[\"KKomrade\"]=\"KKomrade\",\n\t[\"KKona\"]=\"KK0na\",\n\t[\"Krappa\"]=\"Krappa\",\n\t[\"LilZ\"]=\"LilZ\",\n\t[\"LUL\"]=\"LUL\",\n\t[\"LULW\"]=\"LULW\",\n\t[\"MEGALUL\"]=\"MEGALUL\",\n\t[\"MingLuL\"]=\"MingLUL\",\n\t[\"MingLUL\"]=\"MingLUL\",\n\t[\"NickyQ\"]=\"NickyQ\",\n\t[\"WaitWhat\"]=\"NickyQ\",\n\t[\"WaitWhatW\"]=\"NickyQW\",\n\t[\"NickyQW\"]=\"NickyQW\",\n\t[\"OMEGALUL\"]=\"OMEGALUL\",\n\t[\"PagChomp\"]=\"PagChomp\",\n\t[\"Thonk\"]=\"Thonk\",\n\t[\"VapeNation\"]=\"VapeNation\",\n\t[\"weSmart\"]=\"weSmart\",\n\t[\"ZULUL\"]=\"ZULUL\",\n\t[\"ZULOL\"]=\"ZULOL\",\n\t[\"PowerUpL\"]=\"PowerUpL\",\n\t[\"PowerUpR\"]=\"PowerUpR\",\n\t-- C9Sneaky\n\t[\"sneakyBoost\"]=\"sneakyBoost\",\n\t[\"sneakyBug\"]=\"sneakyBug\",\n\t[\"sneakyByfar\"]=\"sneakyByfar\",\n\t[\"sneakyC\"]=\"sneakyC\",\n\t[\"sneakyChair\"]=\"sneakyChair\",\n\t[\"sneakyChamp\"]=\"sneakyChamp\",\n\t[\"sneakyCheese\"]=\"sneakyCheese\",\n\t[\"sneakyClap\"]=\"sneakyClap\",\n\t[\"sneakyClaus\"]=\"sneakyClaus\",\n\t[\"sneakyCup\"]=\"sneakyCup\",\n\t[\"sneakyE\"]=\"sneakyE\",\n\t[\"sneakyEZ\"]=\"sneakyEZ\",\n\t[\"sneakyFace\"]=\"sneakyFace\",\n\t[\"sneakyFedora\"]=\"sneakyFedora\",\n\t[\"sneakyFeels\"]=\"sneakyFeels\",\n\t[\"sneakyFiesta\"]=\"sneakyFiesta\",\n\t[\"sneakyFun\"]=\"sneakyFun\",\n\t[\"sneakyGasm\"]=\"sneakyGasm\",\n\t[\"sneakyGold\"]=\"sneakyGold\",\n\t[\"sneakyGrip\"]=\"sneakyGrip\",\n\t[\"sneakyHey\"]=\"sneakyHey\",\n\t[\"sneakyJack\"]=\"sneakyJack\",\n\t[\"sneakyLemon\"]=\"sneakyLemon\",\n\t[\"sneakyLemon2\"]=\"sneakyLemon2\",\n\t[\"sneakyLmao\"]=\"sneakyLmao\",\n\t[\"sneakyLUL\"]=\"sneakyLUL\",\n\t[\"sneakyMeteos\"]=\"sneakyMeteos\",\n\t[\"sneakyMonte\"]=\"sneakyMonte\",\n\t[\"sneakyNLT\"]=\"sneakyNLT\",\n\t[\"sneakyPride\"]=\"sneakyPride\",\n\t[\"sneakySame\"]=\"sneakySame\",\n\t[\"sneakySick\"]=\"sneakySick\",\n\t[\"sneakySoTroll\"]=\"sneakySoTroll\",\n\t[\"sneakyW\"]=\"sneakyW\",\n\t[\"sneakyWeeb\"]=\"sneakyWeeb\",\n\t[\"sneakyWoo\"]=\"sneakyWoo\",\n\t[\"sneakyWut\"]=\"sneakyWut\",\n\t[\"sneakyYeehaw\"]=\"sneakyYeehaw\",\n\t-- chinglishtv\n\t[\"chingA\"]=\"chingA\",\n\t[\"chingAus\"]=\"chingAus\",\n\t[\"chingBday\"]=\"chingBday\",\n\t[\"chingBinbash\"]=\"chingBinbash\",\n\t[\"chingChina\"]=\"chingChina\",\n\t[\"chingD\"]=\"chingD\",\n\t[\"chingDad\"]=\"chingDad\",\n\t[\"chingDerp\"]=\"chingDerp\",\n\t[\"chingEdgy\"]=\"chingEdgy\",\n\t[\"chingFour\"]=\"chingFour\",\n\t[\"chingHey\"]=\"chingHey\",\n\t[\"chingHype\"]=\"chingHype\",\n\t[\"chingKorea\"]=\"chingKorea\",\n\t[\"chingLove\"]=\"chingLove\",\n\t[\"chingLul\"]=\"chingLul\",\n\t[\"chingLurk\"]=\"chingLurk\",\n\t[\"chingMate\"]=\"chingMate\",\n\t[\"chingOne\"]=\"chingOne\",\n\t[\"chingPanda\"]=\"chingPanda\",\n\t[\"chingRage\"]=\"chingRage\",\n\t[\"chingSad\"]=\"chingSad\",\n\t[\"chingSellout\"]=\"chingSellout\",\n\t[\"chingTgi\"]=\"chingTgi\",\n\t[\"chingThink\"]=\"chingThink\",\n\t[\"chingThree\"]=\"chingThree\",\n\t[\"chingTwo\"]=\"chingTwo\",\n\t[\"chingUwot\"]=\"chingUwot\",\n\t[\"chingWool\"]=\"chingWool\",\n\t-- cdewx\n\t[\"dewD\"]=\"dewD\",\n\t[\"dewDitch\"]=\"dewDitch\",\n\t[\"dewDogs\"]=\"dewDogs\",\n\t[\"dewEnergy\"]=\"dewEnergy\",\n\t[\"dewG\"]=\"dewG\",\n\t[\"dewKass\"]=\"dewKass\",\n\t[\"dewLove\"]=\"dewLove\",\n\t[\"dewLUL\"]=\"dewLUL\",\n\t[\"dewMethod\"]=\"dewMethod\",\n\t[\"dewMLG\"]=\"dewMLG\",\n\t[\"dewPleb\"]=\"dewPleb\",\n\t[\"dewRage\"]=\"dewRage\",\n\t[\"dewRise\"]=\"dewRise\",\n\t[\"dewS\"]=\"dewS\",\n\t[\"dewSell\"]=\"dewSell\",\n\t[\"dewTrig\"]=\"dewTrig\",\n\t[\"dewVod\"]=\"dewVod\",\n\t[\"dewW\"]=\"dewW\",\n\t[\"dewWhip\"]=\"dewWhip\",\n\t[\"dewYo\"]=\"dewYo\",\n\t-- Sequisha\n\t[\"seqChamp\"]=\"seqChamp\",\n\t[\"seqDag\"]=\"seqDag\",\n\t[\"seqGasm\"]=\"seqGasm\",\n\t[\"seqH\"]=\"seqH\",\n\t[\"seqHi\"]=\"seqHi\",\n\t[\"seqHmm\"]=\"seqHmm\",\n\t[\"seqOMG\"]=\"seqOMG\",\n\t[\"seqPain\"]=\"seqPain\",\n\t[\"seqW\"]=\"seqW\",\n\t-- ZubatLEL\n\t[\"zub3\"]=\"zub3\",\n\t[\"zub420SUBPOINTS\"]=\"zub420SUBPOINTS\",\n\t[\"zubAYAYA\"]=\"zubAYAYA\",\n\t[\"zubBOYFRIEND\"]=\"zubBOYFRIEND\",\n\t[\"zubCOMFY\"]=\"zubCOMFY\",\n\t[\"zubD\"]=\"zubD\",\n\t[\"zubDERP\"]=\"zubDERP\",\n\t[\"zubGEGZ\"]=\"zubGEGZ\",\n\t[\"zubHAMS\"]=\"zubHAMS\",\n\t[\"zubHOWDY\"]=\"zubHOWDY\",\n\t[\"zubHYPERMADDEST\"]=\"zubHYPERMADDEST\",\n\t[\"zubLOVE\"]=\"zubLOVE\",\n\t[\"zubLURK\"]=\"zubLURK\",\n\t[\"zubMAD\"]=\"zubMAD\",\n\t[\"zubMEG\"]=\"zubMEG\",\n\t[\"zubMILK\"]=\"zubMILK\",\n\t[\"zubMINI\"]=\"zubMINI\",\n\t[\"zubPET\"]=\"zubPET\",\n\t[\"zubPFT\"]=\"zubPFT\",\n\t[\"zubPIRATE\"]=\"zubPIRATE\",\n\t[\"zubRICH\"]=\"zubRICH\",\n\t[\"zubSAD\"]=\"zubSAD\",\n\t[\"zubSIP\"]=\"zubSIP\",\n\t[\"zubSMILE\"]=\"zubSMILE\",\n\t[\"zubSWEAT\"]=\"zubSWEAT\",\n\t[\"zubTUX\"]=\"zubTUX\",\n\t[\"zubUWU\"]=\"zubUWU\",\n\t[\"zubW\"]=\"zubW\",\n\t[\"zubHARD\"]=\"zubHARD\",\n\t-- EsfandTV\n\t[\"esfand0\"]=\"esfand0\",\n\t[\"esfand1\"]=\"esfand1\",\n\t[\"esfand2\"]=\"esfand2\",\n\t[\"esfand3\"]=\"esfand3\",\n\t[\"esfand4\"]=\"esfand4\",\n\t[\"esfand21\"]=\"esfand21\",\n\t[\"esfandAB\"]=\"esfandAB\",\n\t[\"esfandAK\"]=\"esfandAK\",\n\t[\"esfandBald\"]=\"esfandBald\",\n\t[\"esfandBan\"]=\"esfandBan\",\n\t[\"esfandBless\"]=\"esfandBless\",\n\t[\"esfandBrain\"]=\"esfandBrain\",\n\t[\"esfandBruh\"]=\"esfandBruh\",\n\t[\"esfandBubble\"]=\"esfandBubble\",\n\t[\"esfandClassic\"]=\"esfandClassic\",\n\t[\"esfandDad\"]=\"esfandDad\",\n\t[\"esfandDPS\"]=\"esfandDPS\",\n\t[\"esfandGold\"]=\"esfandGold\",\n\t[\"esfandH\"]=\"esfandH\",\n\t[\"esfandHearth\"]=\"esfandHearth\",\n\t[\"esfandHog\"]=\"esfandHog\",\n\t[\"esfandL\"]=\"esfandL\",\n\t[\"esfandLUL\"]=\"esfandLUL\",\n\t[\"esfandN\"]=\"esfandN\",\n\t[\"esfandOkay\"]=\"esfandOkay\",\n\t[\"esfandPPF\"]=\"esfandPPF\",\n\t[\"esfandPrime\"]=\"esfandPrime\",\n\t[\"esfandRage\"]=\"esfandRage\",\n\t[\"esfandRet\"]=\"esfandRet\",\n\t[\"esfandRetBull\"]=\"esfandRetBull\",\n\t[\"esfandRetPill\"]=\"esfandRetPill\",\n\t[\"esfandSlam\"]=\"esfandSlam\",\n\t[\"esfandT1\"]=\"esfandT1\",\n\t[\"esfandT2\"]=\"esfandT2\",\n\t[\"esfandT25\"]=\"esfandT25\",\n\t[\"esfandTomato\"]=\"esfandTomato\",\n\t[\"esfandTrash\"]=\"esfandTrash\",\n\t[\"esfandWTF\"]=\"esfandWTF\",\n\t[\"esfandLW\"]=\"esfandLW\",\n\t[\"esfandRW\"]=\"esfandRW\",\n\t[\"esfandYou\"]=\"esfandYou\",\n\t[\"esfandAre\"]=\"esfandAre\",\n\t[\"esfandDead\"]=\"esfandDead\",\n\t-- Custom\n\t[\"thinkioning\"]=\"thinkioning\",\n\t[\"taureW\"]=\"taureW\",\n\t[\"damilKiss\"]=\"damilKiss\",\n\t[\"damilHerz\"]=\"damilHerz\",\n\t[\"JohnU\"]=\"JohnU\",\n\t[\"Oodam\"]=\"Oodam\",\n\t[\"AYAYA\"]=\"AYAYA\",\n\t[\"bjornoVV\"]=\"bjornoVV\",\n\t[\"bjornoVVona\"]=\"bjornoVVona\",\n\t[\"chupBro\"]=\"chupBro\",\n\t[\"chupDerp\"]=\"chupDerp\",\n\t[\"chupHappy\"]=\"chupHappy\",\n\t[\"Clap\"]=\"Clap\",\n\t[\"cptfriHE\"]=\"cptfriHE\",\n\t[\"Del\"]=\"Del\",\n\t[\"ednasly\"]=\"ednasly\",\n\t[\"endANELE\"]=\"endANELE\",\n\t[\"endBomb\"]=\"endBomb\",\n\t[\"Popoga\"]=\"Popoga\",\n\t[\"endCreep\"]=\"endCreep\",\n\t[\"endDawg\"]=\"endDawg\",\n\t[\"endFrench\"]=\"endFrench\",\n\t[\"endHarambe\"]=\"endHarambe\",\n\t[\"endKyori\"]=\"endKyori\",\n\t[\"endNotLikeThis\"]=\"endNotLikeThis\",\n\t[\"endRP\"]=\"endRP\",\n\t[\"endTrump\"]=\"endTrump\",\n\t[\"FlipThis\"]=\"FlipThis\",\n\t[\"fruitBug\"]=\"fruitBug\",\n\t[\"LaurGasm\"]=\"LaurGasm\",\n\t[\"lockOmegatayys\"]=\"lockOmegatayys\",\n\t[\"marcithDerp\"]=\"marcithDerp\",\n\t[\"marcithMath\"]=\"marcithMath\",\n\t[\"monkeyS\"]=\"monkeyS\",\n\t[\"oldmorDim\"]=\"oldmorDim\",\n\t[\"PogCena\"]=\"PogCena\",\n\t[\"selyihHEY\"]=\"selyihHEY\",\n\t[\"SuicideThinking\"]=\"SuicideThinking\",\n\t[\"TableHere\"]=\"TableHere\",\n\t[\"tntLIDL\"]=\"tntLIDL\",\n\t[\"WhatsLupp\"]=\"WhatsLupp\",\n\t[\"wheezy\"]=\"wheezy\",\n\t[\"DuckerZ\"]=\"DuckerZ\",\n\t[\"kargueHD\"]=\"kargueHD\",\n\t[\"kargue\"]=\"kargue\",\n\t[\"kargueH\"]=\"kargueH\",\n\t[\"kargueTip\"]=\"kargueTip\",\n\t[\"jackblaze\"]=\"jackblaze\",\n\t[\"THICCM\"]=\"THICCM\",\n\t[\"ANEBruh\"]=\"ANEBruh\",\n\t[\"scoM\"]=\"scoM\",\n\t[\"scoHypers\"]=\"scoHypers\",\n\t[\"scoPepeHands\"]=\"scoPepeHands\",\n\t[\"shrekS\"]=\"shrekSL\",\n\t[\"shrekSL\"]=\"shrekSL\",\n\t[\"shrekSR\"]=\"shrekSR\",\n\t[\"ShrekS\"]=\"shrekSL\",\n\t[\"ShrekSL\"]=\"shrekSL\",\n\t[\"ShrekSR\"]=\"shrekSR\",\n\t[\"paaaaja\"]=\"paaaaja\",\n\t[\"paaaajaW\"]=\"paaaajaW\",\n\t[\"Porg\"]=\"Porg\",\n\t[\"Poog\"]=\"Poog\",\n\t[\"mastahFloor\"]=\"mastahFloor\",\n\t[\":weed:\"]=\":weed:\",\n\t[\"PogCat\"]=\"PogCat\",\n\t[\"ThisIsFine\"]=\"ThisIsFine\",\n\t[\"LOLW\"]=\"LOLW\",\n\t[\"OMEGALOL\"]=\"OMEGALOL\",\n\t[\"pokiW\"]=\"pokiW\",\n\t[\"JokerdTV\"]=\"JokerdTV\",\n\t[\"Jokerd\"]=\"JokerdTV\",\n\t[\"drjayDepleto1\"]=\"drjayDepleto1\",\n\t[\"drjayDepleto2\"]=\"drjayDepleto2\",\n\t[\"gachiHYDRA\"]=\"gachiHYDRA\",\n\t[\"HAhaa\"]=\"HAhaa\",\n\t[\"HYPERBAITED\"]=\"HYPERBAITED\",\n\t[\"JUSTDOIT\"]=\"JUSTDOIT\",\n\t[\"Kappa420\"]=\"Kappa420\",\n\t[\"Kappap\"]=\"Kappap\",\n\t[\"PressF\"]=\"PressF\",\n\t[\"ripChu\"]=\"ripChu\",\n\t[\"OMEGABRUH\"]=\"OMEGABRUH\",\n\t[\":blinking:\"]=\":blinking:\",\n\t[\"DrewWut\"]=\":blinking:\",\n\t[\"DrewStare\"]=\":blinking:\",\n\t[\"woundGasm\"]=\"woundGasm\",\n\t[\"SoBayed\"]=\"SoBayed\",\n\t[\"jermaChomp\"]=\"jermaChomp\",\n\t[\"Stonks\"]=\"Stonks\",\n\t-- DansGaming\n\t[\"dan7\"]=\"dan7\",\n\t[\"dan10\"]=\"dan10\",\n\t[\"danBad\"]=\"danBad\",\n\t[\"danBoy\"]=\"danBoy\",\n\t[\"danCreep\"]=\"danCreep\",\n\t[\"danCringe\"]=\"danCringe\",\n\t[\"danCry\"]=\"danCry\",\n\t[\"danCute\"]=\"danCute\",\n\t[\"danDead\"]=\"danDead\",\n\t[\"danDerp\"]=\"danDerp\",\n\t[\"danDuck\"]=\"danDuck\",\n\t[\"danGasm\"]=\"danGasm\",\n\t[\"danGasp\"]=\"danGasp\",\n\t[\"danGOTY\"]=\"danGOTY\",\n\t[\"danGrump\"]=\"danGrump\",\n\t[\"danHype\"]=\"danHype\",\n\t[\"danLewd\"]=\"danLewd\",\n\t[\"danLol\"]=\"danLol\",\n\t[\"danLove\"]=\"danLove\",\n\t[\"danNo\"]=\"danNo\",\n\t[\"danPalm\"]=\"danPalm\",\n\t[\"danPoop\"]=\"danPoop\",\n\t[\"danPuzzle\"]=\"danPuzzle\",\n\t[\"danRage\"]=\"danRage\",\n\t[\"danRekt\"]=\"danRekt\",\n\t[\"danSad\"]=\"danSad\",\n\t[\"danScare\"]=\"danScare\",\n\t[\"danSexy\"]=\"danSexy\",\n\t[\"danTen\"]=\"danTen\",\n\t[\"danThink\"]=\"danThink\",\n\t[\"danTrain\"]=\"danTrain\",\n\t[\"danWave\"]=\"danWave\",\n\t[\"danWTF\"]=\"danWTF\",\n\t[\"danYay\"]=\"danYay\",\n\t[\"danYes\"]=\"danYes\",\n\t[\"Instagibbed\"]=\"ChampU\",\n\t[\"Instagibbed\"]=\"ChampU\",\n\t-- Datto\n\t[\"datto1\"]=\"datto1\",\n\t[\"datto2\"]=\"datto2\",\n\t[\"datto3\"]=\"datto3\",\n\t[\"datto4\"]=\"datto4\",\n\t[\"dattoA\"]=\"dattoA\",\n\t[\"dattoB\"]=\"dattoB\",\n\t[\"dattoCAWW\"]=\"dattoCAWW\",\n\t[\"dattoDEAL\"]=\"dattoDEAL\",\n\t[\"dattoH\"]=\"dattoH\",\n\t[\"dattoHUH\"]=\"dattoHUH\",\n\t[\"dattoHYPE\"]=\"dattoHYPE\",\n\t[\"dattoLEG\"]=\"dattoLEG\",\n\t[\"dattoLOVE\"]=\"dattoLOVE\",\n\t[\"dattoMASTER\"]=\"dattoMASTER\",\n\t[\"dattoMC\"]=\"dattoMC\",\n\t[\"dattoN\"]=\"dattoN\",\n\t[\"dattoNC\"]=\"dattoNC\",\n\t[\"dattoP\"]=\"dattoP\",\n\t[\"dattoRAGE\"]=\"dattoRAGE\",\n\t[\"dattoSOAK\"]=\"dattoSOAK\",\n\t[\"dattoSTAR\"]=\"dattoSTAR\",\n\t[\"dattoTH\"]=\"dattoTH\",\n\t[\"dattoWF\"]=\"dattoWF\",\n\t-- SivHD\n\t[\"siv1\"]=\"siv1\",\n\t[\"siv2\"]=\"siv2\",\n\t[\"sivBrushy\"]=\"sivBrushy\",\n\t[\"sivContent\"]=\"sivContent\",\n\t[\"sivCreep\"]=\"sivCreep\",\n\t[\"sivHappy\"]=\"sivHappy\",\n\t[\"sivHW1\"]=\"sivHW1\",\n\t[\"sivHW2\"]=\"sivHW2\",\n\t[\"sivHW3\"]=\"sivHW3\",\n\t[\"sivHW4\"]=\"sivHW4\",\n\t[\"sivNEED\"]=\"sivNEED\",\n\t[\"sivStare\"]=\"sivStare\",\n\t[\"sivThiccS\"]=\"sivThiccS\",\n\t[\"sivToot1\"]=\"sivToot1\",\n\t[\"sivToot2\"]=\"sivToot2\",\n\t[\"sivUnhappy\"]=\"sivUnhappy\",\n\t[\"sivWrath\"]=\"sivWrath\",\n\t-- Destiny\n\t[\"AUTISTINY\"]=\"AUTISTINY\",\n\t[\"Blubstiny\"]=\"Blubstiny\",\n\t[\"Depresstiny\"]=\"Depresstiny\",\n\t[\"DestiSenpaii\"]=\"DestiSenpaii\",\n\t[\"Disgustiny\"]=\"Disgustiny\",\n\t[\"GODSTINY\"]=\"GODSTINY\",\n\t[\"HmmStiny\"]=\"HmmStiny\",\n\t[\"Klappa\"]=\"Klappa\",\n\t[\"LeRuse\"]=\"LeRuse\",\n\t[\"Memegasm\"]=\"Memegasm\",\n\t[\"MLADY\"]=\"MLADY\",\n\t[\"NOBULLY\"]=\"NOBULLY\",\n\t[\"NoTears\"]=\"NoTears\",\n\t[\"OverRustle\"]=\"OverRustle\",\n\t[\"PEPE\"]=\"PEPE\",\n\t[\"REE\"]=\"REE\",\n\t[\"SURPRISE\"]=\"SURPRISE\",\n\t[\"SWEATSTINY\"]=\"SWEATSTINY\",\n\t[\"YEE\"]=\"YEE\",\n\t-- DrDisRespectLIVE\n\t[\"doctor2X\"]=\"doctor2X\",\n\t[\"doctorBANGS\"]=\"doctorBANGS\",\n\t[\"doctorBED\"]=\"doctorBED\",\n\t[\"doctorBEST\"]=\"doctorBEST\",\n\t[\"doctorBlazer\"]=\"doctorBlazer\",\n\t[\"doctorBLESS\"]=\"doctorBLESS\",\n\t[\"doctorBUTTON\"]=\"doctorBUTTON\",\n\t[\"doctorCOMB\"]=\"doctorCOMB\",\n\t[\"doctorCOMMITTED1\"]=\"doctorCOMMITTED1\",\n\t[\"doctorCOMMITTED2\"]=\"doctorCOMMITTED2\",\n\t[\"doctorDANCE\"]=\"doctorDANCE\",\n\t[\"doctorDIRECTOR\"]=\"doctorDIRECTOR\",\n\t[\"doctorDOCATI\"]=\"doctorDOCATI\",\n\t[\"doctorEAGLES\"]=\"doctorEAGLES\",\n\t[\"doctorEAGLES2\"]=\"doctorEAGLES2\",\n\t[\"doctorEMBLEM1\"]=\"doctorEMBLEM1\",\n\t[\"doctorEMBLEM2\"]=\"doctorEMBLEM2\",\n\t[\"doctorEMBLEM3\"]=\"doctorEMBLEM3\",\n\t[\"doctorEMBLEM4\"]=\"doctorEMBLEM4\",\n\t[\"doctorGOLD\"]=\"doctorGOLD\",\n\t[\"doctorHANDSHAKE\"]=\"doctorHANDSHAKE\",\n\t[\"doctorJAWLINE\"]=\"doctorJAWLINE\",\n\t[\"doctorKAPPA\"]=\"doctorKAPPA\",\n\t[\"doctorKARATE\"]=\"doctorKARATE\",\n\t[\"doctorLAMBO\"]=\"doctorLAMBO\",\n\t[\"doctorLOCKER\"]=\"doctorLOCKER\",\n\t[\"doctorMARBLEBAG\"]=\"doctorMARBLEBAG\",\n\t[\"doctorMOMENTUM\"]=\"doctorMOMENTUM\",\n\t[\"doctorNANA\"]=\"doctorNANA\",\n\t[\"doctorNOSEDRIP\"]=\"doctorNOSEDRIP\",\n\t[\"doctorPERFECT\"]=\"doctorPERFECT\",\n\t[\"doctorPRECISION\"]=\"doctorPRECISION\",\n\t[\"doctorPUNK\"]=\"doctorPUNK\",\n\t[\"doctorREPLAY\"]=\"doctorREPLAY\",\n\t[\"doctorROBODOC\"]=\"doctorROBODOC\",\n\t[\"doctorSHOTGUN\"]=\"doctorSHOTGUN\",\n\t[\"doctorSKI\"]=\"doctorSKI\",\n\t[\"doctorSLICE\"]=\"doctorSLICE\",\n\t[\"doctorSLICKDADDY\"]=\"doctorSLICKDADDY\",\n\t[\"doctorSMC\"]=\"doctorSMC\",\n\t[\"doctorSPLITS1\"]=\"doctorSPLITS1\",\n\t[\"doctorSPLITS2\"]=\"doctorSPLITS2\",\n\t[\"doctorSPRAY\"]=\"doctorSPRAY\",\n\t[\"doctorSTARE\"]=\"doctorSTARE\",\n\t[\"doctorTONIC\"]=\"doctorTONIC\",\n\t[\"doctorTROPHY1\"]=\"doctorTROPHY1\",\n\t[\"doctorTROPHY2\"]=\"doctorTROPHY2\",\n\t[\"doctorTROPHY3\"]=\"doctorTROPHY3\",\n\t[\"doctorVASELINE\"]=\"doctorVASELINE\",\n\t[\"doctorWARCRY\"]=\"doctorWARCRY\",\n\t[\"doctorYAYA\"]=\"doctorYAYA\",\n\t-- Ducksauce\n\t[\"duckArthas\"]=\"duckArthas\",\n\t[\"duckBA\"]=\"duckBA\",\n\t[\"duckBarrel\"]=\"duckBarrel\",\n\t[\"duckBedHead\"]=\"duckBedHead\",\n\t[\"duckBoop\"]=\"duckBoop\",\n\t[\"duckCoffee\"]=\"duckCoffee\",\n\t[\"duckDerp\"]=\"duckDerp\",\n\t[\"duckDuckFlex\"]=\"duckDuckFlex\",\n\t[\"duckGA\"]=\"duckGA\",\n\t[\"duckMama\"]=\"duckMama\",\n\t[\"duckParty\"]=\"duckParty\",\n\t[\"duckPist\"]=\"duckPist\",\n\t[\"duckQuappa\"]=\"duckQuappa\",\n\t[\"duckSad\"]=\"duckSad\",\n\t[\"duckSkadoosh\"]=\"duckSkadoosh\",\n\t[\"duckSpread\"]=\"duckSpread\",\n\t[\"duckTenTen\"]=\"duckTenTen\",\n\t[\"duckTrain\"]=\"duckTrain\",\n\t[\"duckZIN\"]=\"duckZIN\",\n\t[\":monkeyW:\"]=\":monkeyW:\",\n\t-- Emojis\n\t[\"emBlush\"]=\"emBlush\",\n\t[\":blush:\"]=\"emBlush\",\n\t[\":monkey:\"]=\":monkey:\",\n\t[\":kiss:\"]=\":kiss:\",\n\t[\":eggplant:\"]=\":eggplant:\",\n\t[\"emDoor\"]=\"emDoor\",\n\t[\":door:\"]=\"emDoor\",\n\t[\"emGuitar\"]=\"emGuitar\",\n\t[\":guitar:\"]=\"emGuitar\",\n\t[\"emGun\"]=\"emGun\",\n\t[\":gun:\"]=\"emGun\",\n\t[\"emJoy\"]=\"emJoy\",\n\t[\":joy:\"]=\"emJoy\",\n\t[\"emMuscle\"]=\"emMuscle\",\n\t[\":muscle:\"]=\"emMuscle\",\n\t[\"emEyes\"]=\"emEyes\",\n\t[\":eyes:\"]=\"emEyes\",\n\t[\"emSweat\"]=\"emSweat\",\n\t[\":sweat_drops:\"]=\"emSweat\",\n\t[\"emPeach\"]=\"emPeach\",\n\t[\":peach:\"]=\"emPeach\",\n\t[\"emWeary\"]=\"emWeary\",\n\t[\":weary:\"]=\"emWeary\",\n\t[\"emTired\"]=\"emTired\",\n\t[\":tired:\"]=\"emTired\",\n\t[\"emPointLeft\"]=\"emPointLeft\",\n\t[\":point_left:\"]=\"emPointLeft\",\n\t[\"emWritingHand\"]=\"emWritingHand\",\n\t[\":writing_hand:\"]=\"emWritingHand\",\n\t[\"emBook\"]=\"emBook\",\n\t[\":book:\"]=\"emBook\",\n\t[\"emClock\"]=\"emClock\",\n\t[\":clock:\"]=\"emClock\",\n\t[\"emCrab\"]=\"emCrab\",\n\t[\":crab:\"]=\"emCrab\",\n\t[\"emShrimp\"]=\"emShrimp\",\n\t[\":shrimp:\"]=\"emShrimp\",\n\t[\"emOkHand\"]=\"emOkHand\",\n\t[\":ok_hand:\"]=\"emOkHand\",\n\t[\"emPhone\"]=\"emPhone\",\n\t[\":phone:\"]=\"emPhone\",\n\t[\"emPointRight\"]=\"emPointRight\",\n\t[\":point_right:\"]=\"emPointRight\",\n\t[\"emRage\"]=\"emRage\",\n\t[\":rage:\"]=\"emRage\",\n\t[\"emRat\"]=\"emRat\",\n\t[\":rat:\"]=\"emRat\",\n\t[\"emSunWithFace\"]=\"emSunWithFace\",\n\t[\":sun_with_face:\"]=\"emSunWithFace\",\n\t[\"emThinking\"]=\"emThinking\",\n\t[\":thinking:\"]=\"emThinking\",\n\t[\"emWheelchair\"]=\"emWheelchair\",\n\t[\":wheelchair:\"]=\"emWheelchair\",\n\t[\"emThinking\"]=\"emPoop\",\n\t[\":poop:\"]=\"emPoop\",\n\t[\":100:\"]=\":100:\",\n\t[\":oof:\"]=\":oof:\",\n\t[\":heart:\"]=\":heart:\",\n\t[\":scroll:\"]=\":scroll:\",\n\t[\":mega:\"]=\":mega:\",\n\t[\":bell:\"]=\":bell:\",\n\t[\":rolling_eyes:\"]=\":rolling_eyes:\",\n\t[\":wink:\"]=\":wink:\",\n\t[\":smirk:\"]=\":smirk:\",\n\t[\":smiley:\"]=\":smiley:\",\n\t[\"Shiz\"]=\":smiley:\",\n\t[\"Shizum\"]=\":smiley:\",\n\t[\":cat:\"]=\":cat:\",\n\t[\":yum:\"]=\":yum:\",\n\t[\":eye:\"]=\":eye:\",\n\t[\":tongue:\"]=\":tongue:\",\n\t[\":unicorn:\"]=\":unicorn:\",\n\t[\":zap:\"]=\":zap:\",\n\t[\":energy:\"]=\":zap:\",\n\t[\":gorilla:\"]=\":gorilla:\",\n\t[\":chart_upwards:\"]=\":chart_upwards:\",\n\t[\":chart_downwards:\"]=\":chart_downwards:\",\n\t[\":wine_glass:\"]=\":wine_glass:\",\n\t[\":hand:\"]=\":hand:\",\n\t[\":raised_hand:\"]=\":hand:\",\n\t[\":pray:\"]=\":pray:\",\n\t[\":question:\"]=\":question:\",\n\t[\":crown:\"]=\":crown:\",\n\t[\":dragon:\"]=\":dragon:\",\n\t[\":flushed:\"]=\":flush:\",\n\t[\":flush:\"]=\":flush:\",\n\t[\":smook:\"]=\":flush:\",\n\t[\":point_up:\"]=\":point_up:\",\n\t[\":point_down:\"]=\":point_down:\",\n\t[\":thumbsup:\"]=\":thumbsup:\",\n\t[\":thumbsdown:\"]=\":thumbsdown:\",\n\t[\"ThumbsUp\"]=\":thumbsup:\",\n\t[\"ThumbsDown\"]=\":thumbsdown:\",\n\t-- FinalBossTV\n\t[\"finalBAYCHA\"]=\"finalBAYCHA\",\n\t[\"finalCLAP\"]=\"finalCLAP\",\n\t[\"finalDERP\"]=\"finalDERP\",\n\t[\"finalDIDSOMEONESAY\"]=\"finalDIDSOMEONESAY\",\n\t[\"finalDOOM\"]=\"finalDOOM\",\n\t[\"finalFP\"]=\"finalFP\",\n\t[\"finalFROST\"]=\"finalFROST\",\n\t[\"finalGAR\"]=\"finalGAR\",\n\t[\"finalGASM\"]=\"finalGASM\",\n\t[\"finalGLAIVE\"]=\"finalGLAIVE\",\n\t[\"finalGLOB\"]=\"finalGLOB\",\n\t[\"finalTK\"]=\"finalTK\",\n\t[\"finalKAPPA\"]=\"finalKAPPA\",\n\t[\"finalLEFT\"]=\"finalLEFT\",\n\t[\"finalLEWD\"]=\"finalLEWD\",\n\t[\"finalLUSTISM\"]=\"finalLUSTISM\",\n\t[\"finalPREPOT\"]=\"finalPREPOT\",\n\t[\"finalRAGE\"]=\"finalRAGE\",\n\t[\"finalRIGHT\"]=\"finalRIGHT\",\n\t[\"finalSULF\"]=\"finalSULF\",\n\t[\"finalTONE\"]=\"finalTONE\",\n\t-- Forsenlol\n\t[\"forsen1\"]=\"forsen1\",\n\t[\"forsen2\"]=\"forsen2\",\n\t[\"forsen3\"]=\"forsen3\",\n\t[\"forsen4\"]=\"forsen4\",\n\t[\"forsenBanned\"]=\"forsenBanned\",\n\t[\"forsenBee\"]=\"forsenBee\",\n\t[\"forsenBoys\"]=\"forsenBoys\",\n\t[\"forsenC\"]=\"forsenC\",\n\t[\"forsenCD\"]=\"forsenCD\",\n\t[\"forsenChamp\"]=\"forsenChamp\",\n\t[\"PogChampPepe\"]=\"forsenChamp\",\n\t[\"PepoChamp\"]=\"forsenChamp\",\n\t[\"forsenClown\"]=\"forsenClown\",\n\t[\"forsenCpooky\"]=\"forsenCpooky\",\n\t[\"forsenD\"]=\"forsenD\",\n\t[\"forsenDDK\"]=\"forsenDDK\",\n\t[\"forsenDED\"]=\"forsenDED\",\n\t[\"forsenDiglett\"]=\"forsenDiglett\",\n\t[\"forsenE\"]=\"forsenE\",\n\t[\"forsenEmote\"]=\"forsenEmote\",\n\t[\"forsenEmote2\"]=\"forsenEmote2\",\n\t[\"forsenFajita\"]=\"forsenFajita\",\n\t[\"forsenFeels\"]=\"forsenFeels\",\n\t[\"forsenGun\"]=\"forsenGun\",\n\t[\"forsenH\"]=\"forsenH\",\n\t[\"forsenHorsen\"]=\"forsenHorsen\",\n\t[\"forsenIQ\"]=\"forsenIQ\",\n\t[\"forsenKek\"]=\"forsenKek\",\n\t[\"forsenKnife\"]=\"forsenKnife\",\n\t[\"forsenL\"]=\"forsenL\",\n\t[\"forsenLUL\"]=\"forsenLUL\",\n\t[\"forsenLewd\"]=\"forsenLewd\",\n\t[\"forsenLooted\"]=\"forsenLooted\",\n\t[\"forsenMoney\"]=\"forsenMoney\",\n\t[\"forsenMonkey\"]=\"forsenMonkey\",\n\t[\"forsenO\"]=\"forsenO\",\n\t[\"forsenODO\"]=\"forsenODO\",\n\t[\"forsenOG\"]=\"forsenOG\",\n\t[\"forsenOP\"]=\"forsenOP\",\n\t[\"forsenPepe\"]=\"forsenPepe\",\n\t[\"forsenPuke\"]=\"forsenPuke\",\n\t[\"forsenPuke2\"]=\"forsenPuke2\",\n\t[\"forsenPuke3\"]=\"forsenPuke3\",\n\t[\"forsenPuke4\"]=\"forsenPuke4\",\n\t[\"forsenR\"]=\"forsenR\",\n\t[\"forsenRedSonic\"]=\"forsenRedSonic\",\n\t[\"forsenRP\"]=\"forsenRP\",\n\t[\"forsenS\"]=\"forsenS\",\n\t[\"forsenSS\"]=\"forsenSS\",\n\t[\"forsenSambool\"]=\"forsenSambool\",\n\t[\"forsenSheffy\"]=\"forsenSheffy\",\n\t[\"forsenSkip\"]=\"forsenSkip\",\n\t[\"forsenSleeper\"]=\"forsenSleeper\",\n\t[\"forsenStein\"]=\"forsenStein\",\n\t[\"forsenSwag\"]=\"forsenSwag\",\n\t[\"forsenT\"]=\"forsenT\",\n\t[\"forsenTriggered\"]=\"forsenTriggered\",\n\t[\"forsenW\"]=\"forsenW\",\n\t[\"forsenWhip\"]=\"forsenWhip\",\n\t[\"forsenWut\"]=\"forsenWut\",\n\t[\"forsenX\"]=\"forsenX\",\n\t[\"forsenY\"]=\"forsenY\",\n\t[\"forsenWC\"]=\"forsenWC\",\n\t[\"forsenAYAYA\"]=\"forsenAYAYA\",\n\t[\"forsenAYOYO\"]=\"forsenAYOYO\",\n\t[\"forsenBlob\"]=\"forsenBlob\",\n\t[\"forsenConnoisseur\"]=\"forsenConnoisseur\",\n\t[\"forsenCool\"]=\"forsenCool\",\n\t[\"forsenDab\"]=\"forsenDab\",\n\t[\"forsenDank\"]=\"forsenDank\",\n\t[\"forsenEcardo\"]=\"forsenEcardo\",\n\t[\"forsenFur\"]=\"forsenFur\",\n\t[\"forsenG\"]=\"forsenG\",\n\t[\"forsenGa\"]=\"forsenGa\",\n\t[\"forsenGASM\"]=\"forsenGASM\",\n\t[\"forsenGrill\"]=\"forsenGrill\",\n\t[\"forsenHappy\"]=\"forsenHappy\",\n\t[\"forsenHead\"]=\"forsenHead\",\n\t[\"forsenHobo\"]=\"forsenHobo\",\n\t[\"forsenJoy\"]=\"forsenJoy\",\n\t[\"forsenK\"]=\"forsenK\",\n\t[\"forsenKraken\"]=\"forsenKraken\",\n\t[\"forsenLicence\"]=\"forsenLicence\",\n\t[\"forsenLooted\"]=\"forsenLooted\",\n\t[\"forsenM\"]=\"forsenM\",\n\t[\"forsenMald\"]=\"forsenMald\",\n\t[\"forsenNam\"]=\"forsenNam\",\n\t[\"forsenP\"]=\"forsenP\",\n\t[\"forsenPog\"]=\"forsenPog\",\n\t[\"forsenPosture\"]=\"forsenPosture\",\n\t[\"forsenPosture1\"]=\"forsenPosture1\",\n\t[\"forsenPosture2\"]=\"forsenPosture2\",\n\t[\"forsenPuke5\"]=\"forsenPuke5\",\n\t[\"forsenReally\"]=\"forsenReally\",\n\t[\"forsenScoots\"]=\"forsenScoots\",\n\t[\"forsenSith\"]=\"forsenSith\",\n\t[\"forsenSmile\"]=\"forsenSmile\",\n\t[\"forsenTILT\"]=\"forsenTILT\",\n\t[\"forsenWeird\"]=\"forsenWeird\",\n\t[\"forsenWeird25\"]=\"forsenWeird25\",\n\t[\"forsenWhat\"]=\"forsenWhat\",\n\t[\"forsenWitch\"]=\"forsenWitch\",\n\t[\"forsenWTF\"]=\"forsenWTF\",\n\t[\"forsenYHD\"]=\"forsenYHD\",\n\t-- fragNance\n\t[\"fraggy1\"]=\"fraggy1\",\n\t[\"fraggy2\"]=\"fraggy2\",\n\t[\"fraggy3\"]=\"fraggy3\",\n\t[\"fraggy4\"]=\"fraggy4\",\n\t[\"fraggyBIG\"]=\"fraggyBIG\",\n\t[\"fraggyFeels\"]=\"fraggyFeels\",\n\t[\"fraggyGF\"]=\"fraggyGF\",\n\t[\"fraggyHOOD\"]=\"fraggyHOOD\",\n\t[\"fraggyKappa\"]=\"fraggyKappa\",\n\t[\"fraggyL\"]=\"fraggyL\",\n\t[\"fraggyLUL\"]=\"fraggyLUL\",\n\t[\"fraggyMRC\"]=\"fraggyMRC\",\n\t[\"fraggyPapii\"]=\"fraggyPapii\",\n\t[\"fraggyPLS\"]=\"fraggyPLS\",\n\t[\"fraggySMASH\"]=\"fraggySMASH\",\n\t[\"fraggyTAUNT\"]=\"fraggyTAUNT\",\n\t[\"fraggyTINK\"]=\"fraggyTINK\",\n\t[\"fraggyW\"]=\"fraggyW\",\n\t-- ggMarche\n\t[\"marcheChamp\"]=\"marcheChamp\",\n\t[\"marcheFeels\"]=\"marcheFeels\",\n\t[\"marcheHey\"]=\"marcheHey\",\n\t[\"marcheHype\"]=\"marcheHype\",\n\t[\"marcheKT\"]=\"marcheKT\",\n\t[\"marcheP\"]=\"marcheP\",\n\t[\"marcheRage\"]=\"marcheRage\",\n\t[\"marcheRat\"]=\"marcheRat\",\n\t[\"marcheW\"]=\"marcheW\",\n\t[\"marcheY\"]=\"marcheY\",\n\t[\"Yina\"]=\"FeelsPinkMan\",\n\t[\"yina\"]=\"FeelsPinkMan\",\n\t[\"Boltern\"]=\"emGlimmer\",\n\t[\"boltern\"]=\"emGlimmer\",\n\t[\"Blurerri\"]=\"ZXChaeri\",\n\t[\"Blurerri\"]=\"ZXChaeri\",\n\t-- Giantwaffle\n\t[\"waffleButch\"]=\"waffleButch\",\n\t[\"waffleChair\"]=\"waffleChair\",\n\t[\"waffleCute\"]=\"waffleCute\",\n\t[\"waffleD\"]=\"waffleD\",\n\t[\"waffleDead\"]=\"waffleDead\",\n\t[\"waffleFat\"]=\"waffleFat\",\n\t[\"waffleGrump\"]=\"waffleGrump\",\n\t[\"waffleHeart\"]=\"waffleHeart\",\n\t[\"waffleHey\"]=\"waffleHey\",\n\t[\"waffleHype\"]=\"waffleHype\",\n\t[\"waffleLily\"]=\"waffleLily\",\n\t[\"waffleLove\"]=\"waffleLove\",\n\t[\"waffleLUL\"]=\"waffleLUL\",\n\t[\"wafflePalm\"]=\"wafflePalm\",\n\t[\"wafflePizza\"]=\"wafflePizza\",\n\t[\"wafflePride\"]=\"wafflePride\",\n\t[\"waffleSad\"]=\"waffleSad\",\n\t[\"waffleScared\"]=\"waffleScared\",\n\t[\"waffleTen\"]=\"waffleTen\",\n\t[\"waffleYay\"]=\"waffleYay\",\n\t[\"waffleYes\"]=\"waffleYes\",\n\t[\"FeelsPinkMan\"]=\"FeelsPinkMan\",\n\t[\"FeelsBlackMan\"]=\"FeelsBlackMan\",\n\t-- ZXValicera\n\t[\"PepeLove\"]=\"PepeLove\",\n\t[\"PepeLoveW\"]=\"PepeLoveW\",\n\t[\"peepoWoW\"]=\"peepoWoW\",\n\t[\"peepoRun\"]=\"peepoRun\",\n\t[\"peepoPride\"]=\"peepoPride\",\n\t[\"peepoPrideW\"]=\"peepoPrideW\",\n\t[\"peepoJammies\"]=\"peepoJammies\",\n\t[\"xmasJammies\"]=\"xmasJammies\",\n\t[\"halloweenJammies\"]=\"halloweenJammies\",\n\t[\"peepojammies\"]=\"peepoJammies\",\n\t[\"xmasjammies\"]=\"xmasJammies\",\n\t[\"halloweenjammies\"]=\"halloweenJammies\",\n\t[\"pepeblyat\"]=\"PepeBlyat\",\n\t[\"PepeBlyat\"]=\"PepeBlyat\",\n\t[\"Pepeblyat\"]=\"Pepeblyat\",\n\t[\"pepeBlyat\"]=\"PepeBlyat\",\n\t[\"raidspot\"]=\"raidspot\",\n\t[\"raidspot2\"]=\"raidspot2\",\n\t[\"negrowave\"]=\"negrowave\",\n\t[\"negrorun\"]=\"negrorun\",\n\t[\"negromelon\"]=\"negromelon\",\n\t[\"negroMelon\"]=\"negromelon\",\n\t[\"Negromelon\"]=\"negromelon\",\n\t[\"NegroMelon\"]=\"negromelon\",\n\t[\"negrojammies\"]=\"negroJammies\",\n\t[\"negroJammies\"]=\"negroJammies\",\n\t[\"negroheart\"]=\"negroheart\",\n\t[\"valiwave\"]=\"negrowave\",\n\t[\"valirun\"]=\"negrorun\",\n\t[\"valimelon\"]=\"negromelon\",\n\t[\"valijammies\"]=\"negroJammies\",\n\t[\"valiJammies\"]=\"negroJammies\",\n\t[\"Valiwave\"]=\"negrowave\",\n\t[\"Valirun\"]=\"negrorun\",\n\t[\"Valimelon\"]=\"negromelon\",\n\t[\"Valijammies\"]=\"negroJammies\",\n\t[\"ValiJammies\"]=\"negroJammies\",\n\t[\"nigduduk\"]=\"nigduduk\",\n\t[\"FeelsNigMan\"]=\"FeelsNigMan\",\n\t[\"FeelsValiMan\"]=\"FeelsNigMan\",\n\t[\"FeelsValiManW\"]=\"FeelsNigManW\",\n\t[\"NOGGERS\"]=\"NOGGERS\",\n\t[\"NOGGERSW\"]=\"NOGGERSW\",\n\t[\"cmonHabibi\"]=\"cmonHabibi\",\n\t[\"Ado\"]=\"Ado\",\n\t[\":yikes:\"]=\":yikes:\",\n\t[\"fabray\"]=\"xfabray\",\n\t[\"Fabray\"]=\"xfabray\",\n\t[\"fabrayW\"]=\"xfabrayW\",\n\t[\"FabrayW\"]=\"xfabrayW\",\n\t[\"fabrayWW\"]=\"xfabrayW\",\n\t[\"FabrayWW\"]=\"xfabrayW\",\n\t[\"Benjovi\"]=\"ZXBenjovi\",\n\t[\"benjovi\"]=\"ZXBenjovi\",\n\t[\"BenjoviW\"]=\"ZXBenjoviW\",\n\t[\"benjoviW\"]=\"ZXBenjoviW\",\n\t[\"FeelsNewYear\"]=\"FeelsNewYear\",\n\t[\"FeelsXmasMan\"]=\"FeelsXmasMan\",\n\t[\"naowhDPS\"]=\"naowhDPS\",\n\t[\"monkaJail\"]=\"monkaJail\",\n\t[\"valiHands\"]=\"ValiHands\",\n\t[\"ValiHands\"]=\"ValiHands\",\n\t[\"valihands\"]=\"ValiHands\",\n\t[\":blackhands:\"]=\"ValiHands\",\n\t[\"memebeam1\"]=\"memebeam1\",\n\t[\"memebeam2\"]=\"memebeam2\",\n\t[\"memebeam3\"]=\"memebeam3\",\n\t[\"peepoValicera\"]=\"peepoVali\",\n\t[\"peepoValiceraW\"]=\"peepoValiW\",\n\t[\"peepoValiceraWW\"]=\"peepoValiW\",\n\t[\"peepoValiceraWWW\"]=\"peepoValiW\",\n\t[\"valicePeepo\"]=\"peepoVali\",\n\t[\"peepoVali\"]=\"peepoVali\",\n\t[\"peepoValiW\"]=\"peepoValiW\",\n\t[\"valicePeepoW\"]=\"peepoValiW\",\n\t[\"peepoValiWW\"]=\"peepoValiW\",\n\t[\"peepoValiWWW\"]=\"peepoValiW\",\n\t[\"peepoAP\"]=\"peepoAP\",\n\t[\":AP:\"]=\":AP:\",\n\t[\"OMEGAP\"]=\"OMEGAP\",\n\t[\"Pap\"]=\"PAP\",\n\t[\"PAP\"]=\"PAP\",\n\t[\"TriHap\"]=\"TriHAP\",\n\t[\"TriHAP\"]=\"TriHAP\",\n\t[\"TriHapW\"]=\"TriHAPW\",\n\t[\"TriHAPW\"]=\"TriHAPW\",\n\t[\"Ranobae\"]=\"peepoBoomie\",\n\t[\"peepoBoomie\"]=\"peepoBoomie\",\n\t[\"peepoNog\"]=\"peepoNog\",\n\t[\"OwlHey\"]=\"OwlHey\",\n\t[\"OwlLove\"]=\"OwlLove\",\n\t[\"Nog\"]=\"Nog\",\n\t[\"Yin\u00e5\"]=\"FeelsPinkMan\",\n\t[\"yin\u00e5\"]=\"FeelsPinkMan\",\n\t[\"moophs\"]=\"XMoophs\",\n\t[\"Moophs\"]=\"XMoophs\",\n\t[\":pearls:\"]=\":pearls:\",\n\t[\":content:\"]=\":content:\",\n\t[\"valiMonkey\"]=\"ValiMonkey\",\n\t[\"ValiMonkey\"]=\"ValiMonkey\",\n\t[\"Valiheart\"]=\"ValiHeart\",\n\t[\"ValiHeart\"]=\"ValiHeart\",\n\t[\"valiheart\"]=\"ValiHeart\",\n\t[\"valiHeart\"]=\"ValiHeart\",\n\t[\"Valibae\"]=\"Valibae\",\n\t[\"negroAP\"]=\"ValiAP\",\n\t[\"ValiAP\"]=\"ValiAP\",\n\t[\"valiAP\"]=\"ValiAP\",\n\t[\"ValiLove\"]=\"ValiLove\",\n\t[\"Valilove\"]=\"ValiLove\",\n\t[\"valiLove\"]=\"ValiLove\",\n\t[\"valilove\"]=\"ValiLove\",\n\t[\"ValiLoveW\"]=\"ValiLoveW\",\n\t[\":Axtaroth:\"]=\":Axtaroth:\",\n\t[\"ValiCheerW\"]=\"ValiCheerW\",\n\t[\"ValiCheerWW\"]=\"ValiCheerW\",\n\t[\"ValiCheer\"]=\"ValiCheer\",\n\t[\"Valicheer\"]=\"ValiCheer\",\n\t[\"ValiJAM\"]=\"ValiJAM\",\n\t[\"ValiJam\"]=\"ValiJAM\",\n\t[\"valiJAM\"]=\"ValiJAM\",\n\t[\"valiJam\"]=\"ValiJAM\",\n\t[\"ValiJAMW\"]=\"ValiJAMW\",\n\t[\"ValiJamW\"]=\"ValiJAMW\",\n\t[\"peepoShower\"]=\"peepoShower\",\n\t[\"PCOGGERS\"]=\"PCOGGERS\",\n\t[\"ValiEZ\"]=\"ValiEZ\",\n\t[\"ValiGoodMan\"]=\"ValiGoodMan\",\n\t[\"ValiceraJAM\"]=\"ValiceraJAM\",\n\t[\"ValiceraJAMW\"]=\"ValiceraJAMW\",\n\t[\"ValiBadMan\"]=\"ValiBadMan\",\n\t[\"ValiS\"]=\"ValiS\",\n\t[\"OwlHug\"]=\"OwlHug\",\n\t[\"ValiDeplete\"]=\"ValiDeplete\",\n\t[\"ValiPrime\"]=\"ValiPrime\",\n\t[\"VD1\"]=\"VD1\",\n\t[\"VD2\"]=\"VD2\",\n\t[\":Cyntos:\"]=\":Cyntos:\",\n\t[\":cyntos:\"]=\":Cyntos:\",\n\t[\":Amigo:\"]=\":Amigo:\",\n\t[\":amigo:\"]=\":Amigo:\",\n\t[\"PepeAP\"]=\"PepeAP\",\n\t[\"monkaIris\"]=\"monkaIris\",\n\t[\"CatHug\"]=\"CatHug\",\n\t[\"CatHugJammies\"]=\"CatHugJammies\",\n\t[\"CatJammies\"]=\"CatJammies\",\n\t[\"CatHugjammies\"]=\"CatHugJammies\",\n\t[\"Catjammies\"]=\"CatJammies\",\n\t[\"catjammies\"]=\"CatJammies\",\n\t[\"NoggerGun\"]=\"NoggerGun\",\n\t[\"ValiGun\"]=\"NoggerGun\",\n\t[\"NigRetreat\"]=\"NigRetreat\",\n\t[\"ValiH\"]=\"NigRetreat\",\n\t[\"peepoPopcorn\"]=\"peepoPopcorn\",\n\t[\"peepoOwl\"]=\"peepoOwl\",\n\t[\"peepoCookie\"]=\"peepoCookie\",\n\t[\"peepoCola\"]=\"peepoCola\",\n\t[\"peepoCoffee\"]=\"peepoCoffee\",\n\t[\"peepoChocolate\"]=\"peepoChocolate\",\n\t[\"peepoMuffin\"]=\"peepoMuffin\",\n\t[\"peepoStarbucks\"]=\"peepoStarbucks\",\t\n\t[\"CWEIRD\"]=\"CWEIRD\",\n\t[\"CWeirdW\"]=\"CWEIRD\",\n\t[\":Ocean:\"]=\":Ocean:\",\n\t[\":ocean:\"]=\":Ocean:\",\n\t[\":Oceanbae:\"]=\":Oceanbae:\",\n\t[\":oceanbae:\"]=\":Oceanbae:\",\n\t[\":Oceans:\"]=\":Oceans:\",\n\t[\":oceans:\"]=\":Oceans:\",\n\t-- h3h3productions\n\t[\"h3h3America\"]=\"h3h3America\",\n\t[\"h3h3Batman\"]=\"h3h3Batman\",\n\t[\"h3h3Beauty\"]=\"h3h3Beauty\",\n\t[\"h3h3Brett\"]=\"h3h3Brett\",\n\t[\"h3h3Bye\"]=\"h3h3Bye\",\n\t[\"h3h3Chocolate\"]=\"h3h3Chocolate\",\n\t[\"h3h3Cough\"]=\"h3h3Cough\",\n\t[\"h3h3Cringe\"]=\"h3h3Cringe\",\n\t[\"h3h3Ed\"]=\"h3h3Ed\",\n\t[\"h3h3Gy\"]=\"h3h3Gy\",\n\t[\"h3h3Hey\"]=\"h3h3Hey\",\n\t[\"h3h3Logo\"]=\"h3h3Logo\",\n\t[\"h3h3Oppression\"]=\"h3h3Oppression\",\n\t[\"h3h3Organgod\"]=\"h3h3Organgod\",\n\t[\"h3h3Papabless\"]=\"h3h3Papabless\",\n\t[\"h3h3Potatohila\"]=\"h3h3Potatohila\",\n\t[\"h3h3Roasted1\"]=\"h3h3Roasted1\",\n\t[\"h3h3Roasted2\"]=\"h3h3Roasted2\",\n\t[\"h3h3Squat\"]=\"h3h3Squat\",\n\t[\"h3h3Triggered1\"]=\"h3h3Triggered1\",\n\t[\"h3h3Triggered2\"]=\"h3h3Triggered2\",\n\t[\"h3h3Triggered3\"]=\"h3h3Triggered3\",\n\t[\"h3h3Vape1\"]=\"h3h3Vape1\",\n\t[\"h3h3Vape2\"]=\"h3h3Vape2\",\n\t[\"h3h3Vape3\"]=\"h3h3Vape3\",\n\t[\"h3h3Vape4\"]=\"h3h3Vape4\",\n\t[\"h3h3Vapenation\"]=\"h3h3Vapenation\",\n\t[\"h3h3Vapenaysh\"]=\"h3h3Vapenaysh\",\n\t[\"h3h3Wow\"]=\"h3h3Wow\",\n\t-- Hey_Jase\n\t[\"jase1\"]=\"jase1\",\n\t[\"jase2\"]=\"jase2\",\n\t[\"jase3\"]=\"jase3\",\n\t[\"jase4\"]=\"jase4\",\n\t[\"jaseAA\"]=\"jaseAA\",\n\t[\"jaseAmazing\"]=\"jaseAmazing\",\n\t[\"jaseBye\"]=\"jaseBye\",\n\t[\"jaseDemon\"]=\"jaseDemon\",\n\t[\"jaseFeels\"]=\"jaseFeels\",\n\t[\"jaseG\"]=\"jaseG\",\n\t[\"jaseH\"]=\"jaseH\",\n\t[\"jaseHey\"]=\"jaseHey\",\n\t[\"jaseHiYo\"]=\"jaseHiYo\",\n\t[\"jaseMA\"]=\"jaseMA\",\n\t[\"jaseOh\"]=\"jaseOh\",\n\t[\"jasePls\"]=\"jasePls\",\n\t[\"jaseRank2\"]=\"jaseRank2\",\n\t[\"jaseS\"]=\"jaseS\",\n\t[\"jaseSad\"]=\"jaseSad\",\n\t[\"jaseSellout\"]=\"jaseSellout\",\n\t[\"jaseSkip\"]=\"jaseSkip\",\n\t[\"jaseTE\"]=\"jaseTE\",\n\t[\"jaseThump\"]=\"jaseThump\",\n\t[\"jaseTune\"]=\"jaseTune\",\n\t[\"jaseWave\"]=\"jaseWave\",\n\t-- Hirona\n\t[\"hiroCry\"]=\"hiroCry\",\n\t[\"hiroDerp\"]=\"hiroDerp\",\n\t[\"hiroH\"]=\"hiroH\",\n\t[\"hiroHail\"]=\"hiroHail\",\n\t[\"hiroNo\"]=\"hiroNo\",\n\t[\"hiroP\"]=\"hiroP\",\n\t[\"hiroWave\"]=\"hiroWave\",\n\t[\"hiroWtf\"]=\"hiroWtf\",\n\t-- HORSEPANTS\n\t[\"horseB\"]=\"horseB\",\n\t[\"horseC\"]=\"horseC\",\n\t[\"horseChu\"]=\"horseChu\",\n\t[\"horseDank\"]=\"horseDank\",\n\t[\"horseDva\"]=\"horseDva\",\n\t[\"horseEZ\"]=\"horseEZ\",\n\t[\"horseFarez\"]=\"horseFarez\",\n\t[\"horseH\"]=\"horseH\",\n\t[\"horseHey\"]=\"horseHey\",\n\t[\"horseLuldan\"]=\"horseLuldan\",\n\t[\"horseMP\"]=\"horseMP\",\n\t[\"horseORA\"]=\"horseORA\",\n\t[\"horseP\"]=\"horseP\",\n\t[\"horsePERFECTION\"]=\"horsePERFECTION\",\n\t[\"horseR\"]=\"horseR\",\n\t[\"horseS\"]=\"horseS\",\n\t[\"horseW\"]=\"horseW\",\n\t-- koil\n\t[\"koil0\"]=\"koil0\",\n\t[\"koil2h\"]=\"koil2h\",\n\t[\"koilAmazing\"]=\"koilAmazing\",\n\t[\"koilAnna\"]=\"koilAnna\",\n\t[\"koilBlind\"]=\"koilBlind\",\n\t[\"koilBoss\"]=\"koilBoss\",\n\t[\"koilBurgie\"]=\"koilBurgie\",\n\t[\"koilBurn\"]=\"koilBurn\",\n\t[\"koilC\"]=\"koilC\",\n\t[\"koilChat\"]=\"koilChat\",\n\t[\"koilCool\"]=\"koilCool\",\n\t[\"koilCop\"]=\"koilCop\",\n\t[\"koilCringe\"]=\"koilCringe\",\n\t[\"koilCu\"]=\"koilCu\",\n\t[\"koilD\"]=\"koilD\",\n\t[\"koilDads\"]=\"koilDads\",\n\t[\"koilDerp\"]=\"koilDerp\",\n\t[\"koilDude\"]=\"koilDude\",\n\t[\"koilEat\"]=\"koilEat\",\n\t[\"koilEh\"]=\"koilEh\",\n\t[\"koilEw\"]=\"koilEw\",\n\t[\"koilEz\"]=\"koilEz\",\n\t[\"koilF1\"]=\"koilF1\",\n\t[\"koilF2\"]=\"koilF2\",\n\t[\"koilFail\"]=\"koilFail\",\n\t[\"koilFat\"]=\"koilFat\",\n\t[\"koilFBR\"]=\"koilFBR\",\n\t[\"koilFeels\"]=\"koilFeels\",\n\t[\"koilFrog\"]=\"koilFrog\",\n\t[\"koilGasm\"]=\"koilGasm\",\n\t[\"koilGG\"]=\"koilGG\",\n\t[\"koilGun\"]=\"koilGun\",\n\t[\"koilHi\"]=\"koilHi\",\n\t[\"koilHm\"]=\"koilHm\",\n\t[\"koilHug\"]=\"koilHug\",\n\t[\"koilHype\"]=\"koilHype\",\n\t[\"koilJebega\"]=\"koilJebega\",\n\t[\"koilJepega\"]=\"koilJepega\",\n\t[\"koilJoe\"]=\"koilJoe\",\n\t[\"koilK\"]=\"koilK\",\n\t[\"koilL\"]=\"koilL\",\n\t[\"koilLegion\"]=\"koilLegion\",\n\t[\"koilLewd\"]=\"koilLewd\",\n\t[\"koilLol\"]=\"koilLol\",\n\t[\"koilLove\"]=\"koilLove\",\n\t[\"koilLUL\"]=\"koilLUL\",\n\t[\"koilLurk\"]=\"koilLurk\",\n\t[\"koilM\"]=\"koilM\",\n\t[\"koilMarv\"]=\"koilMarv\",\n\t[\"koilNerd\"]=\"koilNerd\",\n\t[\"koilNom\"]=\"koilNom\",\n\t[\"koilNote\"]=\"koilNote\",\n\t[\"koilOG\"]=\"koilOG\",\n\t[\"koilOtoo\"]=\"koilOtto\",\n\t[\"koilOwned\"]=\"koilOwned\",\n\t[\"koilPff\"]=\"koilPff\",\n\t[\"koilPog\"]=\"koilPog\",\n\t[\"koilPray\"]=\"koilPray\",\n\t[\"koilPrego\"]=\"koilPrego\",\n\t[\"koilRage\"]=\"koilRage\",\n\t[\"koilRee\"]=\"koilRee\",\n\t[\"koilRekt\"]=\"koilRekt\",\n\t[\"koilRip\"]=\"koilRip\",\n\t[\"koilRoasted\"]=\"koilRoasted\",\n\t[\"koilS\"]=\"koilS\",\n\t[\"koilSalt\"]=\"koilSalt\",\n\t[\"koilSavage\"]=\"koilSavage\",\n\t[\"koilSellout\"]=\"koilSellout\",\n\t[\"koilSip\"]=\"koilSip\",\n\t[\"koilSpew\"]=\"koilSmart\",\n\t[\"koilSpew\"]=\"koilSpew\",\n\t[\"koilSpew1\"]=\"koilSpew1\",\n\t[\"koilSpew2\"]=\"koilSpew2\",\n\t[\"koilSpew3\"]=\"koilSpew3\",\n\t[\"koilStupid\"]=\"koilStupid\",\n\t[\"koilSucks\"]=\"koilSucks\",\n\t[\"koilThink\"]=\"koilThink\",\n\t[\"koilTony\"]=\"koilTony\",\n\t[\"koilTune\"]=\"koilTune\",\n\t[\"koilWow\"]=\"koilWow\",\n\t[\"koilWtf\"]=\"koilWtf\",\n\t[\"koilWut\"]=\"koilWut\",\n\t[\"koilX\"]=\"koilX\",\n\t[\"koilZ\"]=\"koilZ\",\n\t-- Hydramist\n\t[\"hydraChamp\"]=\"hydraChamp\",\n\t[\"hydraFoot\"]=\"hydraFoot\",\n\t[\"hydraHEIL\"]=\"hydraHEIL\",\n\t[\"hydraLUNA\"]=\"hydraLUNA\",\n\t[\"hydraMURAT\"]=\"hydraMURAT\",\n\t[\"hydraPURPLE\"]=\"hydraPURPLE\",\n\t[\"hydraRUSSIA\"]=\"hydraRUSSIA\",\n\t[\"hydraSquare\"]=\"hydraSquare\",\n\t[\"hydraXMAS\"]=\"hydraXMAS\",\n\t-- imaqtpie\n\t[\"qtp1\"]=\"qtp1\",\n\t[\"qtp2\"]=\"qtp2\",\n\t[\"qtp2ND\"]=\"qtp2ND\",\n\t[\"qtp3\"]=\"qtp3\",\n\t[\"qtp4\"]=\"qtp4\",\n\t[\"qtpA\"]=\"qtpA\",\n\t[\"qtpB\"]=\"qtpB\",\n\t[\"qtpBAKED\"]=\"qtpBAKED\",\n\t[\"qtpBLESSED\"]=\"qtpBLESSED\",\n\t[\"qtpBOOSTED\"]=\"qtpBOOSTED\",\n\t[\"qtpBOT\"]=\"qtpBOT\",\n\t[\"qtpCOOL\"]=\"qtpCOOL\",\n\t[\"qtpCULLED\"]=\"qtpCULLED\",\n\t[\"qtpDAPPER\"]=\"qtpDAPPER\",\n\t[\"qtpDONG\"]=\"qtpDONG\",\n\t[\"qtpEDGE\"]=\"qtpEDGE\",\n\t[\"qtpFEELS\"]=\"qtpFEELS\",\n\t[\"qtpGIVE\"]=\"qtpGIVE\",\n\t[\"qtpHAHAA\"]=\"qtpHAHAA\",\n\t[\"qtpHEART\"]=\"qtpHEART\",\n\t[\"qtpHEHE\"]=\"qtpHEHE\",\n\t[\"qtpHONK\"]=\"qtpHONK\",\n\t[\"qtpKAWAII\"]=\"qtpKAWAII\",\n\t[\"qtpLEMONKEY\"]=\"qtpLEMONKEY\",\n\t[\"qtpLIT\"]=\"qtpLIT\",\n\t[\"qtpLUCIAN\"]=\"qtpLUCIAN\",\n\t[\"qtpLUL\"]=\"qtpLUL\",\n\t[\"qtpMEME\"]=\"qtpMEME\",\n\t[\"qtpMEW\"]=\"qtpMEW\",\n\t[\"qtpMOIST\"]=\"qtpMOIST\",\n\t[\"qtpNLT\"]=\"qtpNLT\",\n\t[\"qtpNO\"]=\"qtpNO\",\n\t[\"qtpOWO\"]=\"qtpOWO\",\n\t[\"qtpPAID\"]=\"qtpPAID\",\n\t[\"qtpPLEB\"]=\"qtpPLEB\",\n\t[\"qtpPOTATO\"]=\"qtpPOTATO\",\n\t[\"qtpSMORC\"]=\"qtpSMORC\",\n\t[\"qtpSPOOKED\"]=\"qtpSPOOKED\",\n\t[\"qtpSPOOKY\"]=\"qtpSPOOKY\",\n\t[\"qtpSTFU\"]=\"qtpSTFU\",\n\t[\"qtpSWAG\"]=\"qtpSWAG\",\n\t[\"qtpTHINKING\"]=\"qtpTHINKING\",\n\t[\"qtpTHUMP\"]=\"qtpTHUMP\",\n\t[\"qtpTILT\"]=\"qtpTILT\",\n\t[\"qtpURGOD\"]=\"qtpURGOD\",\n\t[\"qtpUSA\"]=\"qtpUSA\",\n\t[\"qtpW\"]=\"qtpW\",\n\t[\"qtpWAVE\"]=\"qtpWAVE\",\n\t[\"qtpWEEB\"]=\"qtpWEEB\",\n\t[\"qtpWHAT\"]=\"qtpWHAT\",\n\t-- [\"weed1\"]=\"weed1\",\n\t[\"weed2\"]=\"weed2\",\n\t[\"weed3\"]=\"weed3\",\n\t[\"weed4\"]=\"weed4\",\n\t[\"weedAFK\"]=\"weedAFK\",\n\t[\"weedBanana\"]=\"weedBanana\",\n\t[\"weedBBs\"]=\"weedBBs\",\n\t[\"weedBlind\"]=\"weedBlind\",\n\t[\"weedBOAT\"]=\"weedBOAT\",\n\t[\"weedBomb\"]=\"weedBomb\",\n\t[\"weedBushwooky\"]=\"weedBushwooky\",\n\t[\"weedC\"]=\"weedC\",\n\t[\"weedCHICKEN\"]=\"weedCHICKEN\",\n\t[\"weedCool\"]=\"weedCool\",\n\t[\"weedCrash\"]=\"weedCrash\",\n\t[\"weedCrate\"]=\"weedCrate\",\n\t[\"weedCry\"]=\"weedCry\",\n\t[\"weedDucks\"]=\"weedDucks\",\n\t[\"weedF\"]=\"weedF\",\n\t[\"weedFaded\"]=\"weedFaded\",\n\t[\"weedFail\"]=\"weedFail\",\n\t[\"weedFro\"]=\"weedFro\",\n\t[\"weedGasm\"]=\"weedGasm\",\n\t[\"weedGG\"]=\"weedGG\",\n\t[\"weedHey\"]=\"weedHey\",\n\t[\"weedHype\"]=\"weedHype\",\n\t[\"weedKobe\"]=\"weedKobe\",\n\t[\"weedLong\"]=\"weedLong\",\n\t[\"weedLove\"]=\"weedLove\",\n\t[\"weedLurk\"]=\"weedLurk\",\n\t[\"weedPan\"]=\"weedPan\",\n\t[\"weedPopcorn\"]=\"weedPopcorn\",\n\t[\"weedPotato\"]=\"weedPotato\",\n\t[\"weedPray\"]=\"weedPray\",\n\t[\"weedSalt\"]=\"weedSalt\",\n\t[\"weedSmoothie\"]=\"weedSmoothie\",\n\t[\"weedSniper\"]=\"weedSniper\",\n\t[\"weedSpaghetti\"]=\"weedSpaghetti\",\n\t[\"weedSteve\"]=\"weedSteve\",\n\t[\"weedTrain\"]=\"weedTrain\",\n\t[\"weedVibes\"]=\"weedVibes\",\n\t[\"weedW\"]=\"weedW\",\n\t[\"weedWhale\"]=\"weedWhale\",\n\t[\"weedWOO\"]=\"weedWOO\",\n\t[\"weedWut\"]=\"weedWut\",\n\t-- LegendaryLea\n\t[\"lea8\"]=\"lea8\",\n\t[\"leaA\"]=\"leaA\",\n\t[\"leaDinodoge\"]=\"leaDinodoge\",\n\t[\"leaF\"]=\"leaF\",\n\t[\"leaG\"]=\"leaG\",\n\t[\"leaH\"]=\"leaH\",\n\t[\"leaHS\"]=\"leaHS\",\n\t[\"leaHug\"]=\"leaHug\",\n\t[\"leaK\"]=\"leaK\",\n\t[\"leaKobe\"]=\"leaKobe\",\n\t[\"leaRage\"]=\"leaRage\",\n\t[\"leaRIP\"]=\"leaRIP\",\n\t[\"leaShame\"]=\"leaShame\",\n\t[\"leaSkal\"]=\"leaSkal\",\n\t[\"leaTbirds\"]=\"leaTbirds\",\n\t[\"leaThump\"]=\"leaThump\",\n\t-- Lirik\n\t[\"lirikA\"]=\"lirikA\",\n\t[\"lirikAppa\"]=\"lirikAppa\",\n\t[\"lirikBB\"]=\"lirikBB\",\n\t[\"lirikBLIND\"]=\"lirikBLIND\",\n\t[\"lirikC\"]=\"lirikC\",\n\t[\"lirikCHAMP\"]=\"lirikCHAMP\",\n\t[\"lirikCLAP\"]=\"lirikCLAP\",\n\t[\"lirikCLENCH\"]=\"lirikCLENCH\",\n\t[\"lirikCRASH\"]=\"lirikCRASH\",\n\t[\"lirikDJ\"]=\"lirikDJ\",\n\t[\"lirikF\"]=\"lirikF\",\n\t[\"lirikFAKE\"]=\"lirikFAKE\",\n\t[\"lirikFEELS\"]=\"lirikFEELS\",\n\t[\"lirikFR\"]=\"lirikFR\",\n\t[\"lirikGasm\"]=\"lirikGasm\",\n\t[\"lirikGOTY\"]=\"lirikGOTY\",\n\t[\"lirikGREAT\"]=\"lirikGREAT\",\n\t[\"lirikH\"]=\"lirikH\",\n\t[\"lirikHOLD\"]=\"lirikHOLD\",\n\t[\"lirikHug\"]=\"lirikHug\",\n\t[\"lirikHYPE\"]=\"lirikHYPE\",\n\t[\"lirikL\"]=\"lirikL\",\n\t[\"lirikLEAN\"]=\"lirikLEAN\",\n\t[\"lirikLEWD\"]=\"lirikLEWD\",\n\t[\"lirikLOOT\"]=\"lirikLOOT\",\n\t[\"lirikLUL\"]=\"lirikLUL\",\n\t[\"lirikMLG\"]=\"lirikMLG\",\n\t[\"lirikN\"]=\"lirikN\",\n\t[\"lirikNICE\"]=\"lirikNICE\",\n\t[\"lirikNON\"]=\"lirikNON\",\n\t[\"lirikNOT\"]=\"lirikNOT\",\n\t[\"lirikO\"]=\"lirikO\",\n\t[\"lirikOBESE\"]=\"lirikOBESE\",\n\t[\"lirikOHGOD\"]=\"lirikOHGOD\",\n\t[\"lirikOK\"]=\"lirikOK\",\n\t[\"lirikP\"]=\"lirikP\",\n\t[\"lirikPOOL\"]=\"lirikPOOL\",\n\t[\"lirikPOOP\"]=\"lirikPOOP\",\n\t[\"lirikPUKE\"]=\"lirikPUKE\",\n\t[\"lirikREKT\"]=\"lirikREKT\",\n\t[\"lirikRIP\"]=\"lirikRIP\",\n\t[\"lirikS\"]=\"lirikS\",\n\t[\"lirikSALT\"]=\"lirikSALT\",\n\t[\"lirikSCARED\"]=\"lirikSCARED\",\n\t[\"lirikSHUCKS\"]=\"lirikSHUCKS\",\n\t[\"lirikSMART\"]=\"lirikSMART\",\n\t[\"lirikTEN\"]=\"lirikTEN\",\n\t[\"lirikTENK\"]=\"lirikTENK\",\n\t[\"lirikThump\"]=\"lirikThump\",\n\t[\"lirikW\"]=\"lirikW\",\n\t-- loltyler1\n\t[\"tyler1AYY\"]=\"tyler1AYY\",\n\t[\"tyler1Bad\"]=\"tyler1Bad\",\n\t[\"tyler1Ban\"]=\"tyler1Ban\",\n\t[\"tyler1Bandit\"]=\"tyler1Bandit\",\n\t[\"tyler1BB\"]=\"tyler1BB\",\n\t[\"tyler1Beta\"]=\"tyler1Beta\",\n\t[\"tyler1Bruh\"]=\"tyler1Bruh\",\n\t[\"tyler1C\"]=\"tyler1C\",\n\t[\"tyler1Chair\"]=\"tyler1Chair\",\n\t[\"tyler1Champ\"]=\"tyler1Champ\",\n\t[\"tyler1Chef\"]=\"tyler1Chef\",\n\t[\"tyler1CS\"]=\"tyler1CS\",\n\t[\"tyler1EU\"]=\"tyler1EU\",\n\t[\"tyler1Feels\"]=\"tyler1Feels\",\n\t[\"tyler1Free\"]=\"tyler1Free\",\n\t[\"tyler1G\"]=\"tyler1G\",\n\t[\"tyler1Geo\"]=\"tyler1Geo\",\n\t[\"tyler1GOOD\"]=\"tyler1GOOD\",\n\t[\"tyler1HA\"]=\"tyler1HA\",\n\t[\"tyler1Hey\"]=\"tyler1Hey\",\n\t[\"tyler1INT\"]=\"tyler1INT\",\n\t[\"tyler1IQ\"]=\"tyler1IQ\",\n\t[\"tyler1KKona\"]=\"tyler1KKona\",\n\t[\"tyler1Lift\"]=\"tyler1Lift\",\n\t[\"tyler1LUL\"]=\"tyler1LUL\",\n\t[\"tyler1M\"]=\"tyler1M\",\n\t[\"tyler1Monk\"]=\"tyler1Monk\",\n\t[\"tyler1NA\"]=\"tyler1NA\",\n\t[\"tyler1NLT\"]=\"tyler1NLT\",\n\t[\"tyler1O\"]=\"tyler1O\",\n\t[\"tyler1P\"]=\"tyler1P\",\n\t[\"tyler1Pride\"]=\"tyler1Pride\",\n\t[\"tyler1Q\"]=\"tyler1Q\",\n\t[\"tyler1R1\"]=\"tyler1R1\",\n\t[\"tyler1R2\"]=\"tyler1R2\",\n\t[\"tyler1Ross\"]=\"tyler1Ross\",\n\t[\"tyler1Skip\"]=\"tyler1Skip\",\n\t[\"tyler1Sleeper\"]=\"tyler1Sleeper\",\n\t[\"tyler1SSJ\"]=\"tyler1SSJ\",\n\t[\"tyler1Stutter\"]=\"tyler1Stutter\",\n\t[\"tyler1T1\"]=\"tyler1T1\",\n\t[\"tyler1T2\"]=\"tyler1T2\",\n\t[\"tyler1Toxic\"]=\"tyler1Toxic\",\n\t[\"tyler1XD\"]=\"tyler1XD\",\n\t-- MisterRogers\n\t[\"rogersKingFriday\"]=\"rogersKingFriday\",\n\t[\"rogersKingFridayBW\"]=\"rogersKingFridayBW\",\n\t[\"rogersQueenSara\"]=\"rogersQueenSara\",\n\t[\"rogersQueenSaraBW\"]=\"rogersQueenSaraBW\",\n\t[\"rogersTrolley\"]=\"rogersTrolley\",\n\t[\"rogersTrolleyBW\"]=\"rogersTrolleyBW\",\n\t[\"rogersXTheOwl\"]=\"rogersXTheOwl\",\n\t[\"rogersXTheOwlBW\"]=\"rogersXTheOwlBW\",\n\t-- MOONMOON_OW\n\t[\"moon21\"]=\"moon21\",\n\t[\"moon22\"]=\"moon22\",\n\t[\"moon23\"]=\"moon23\",\n\t[\"moon24\"]=\"moon24\",\n\t[\"moon2AMAZING\"]=\"moon2AMAZING\",\n\t[\"moon2AWW\"]=\"moon2AWW\",\n\t[\"moon2BANNED\"]=\"moon2BANNED\",\n\t[\"moon2COFFEE\"]=\"moon2COFFEE\",\n\t[\"moon2COOL\"]=\"moon2COOL\",\n\t[\"moon2CREEP\"]=\"moon2CREEP\",\n\t[\"moon2CUTE\"]=\"moon2CUTE\",\n\t[\"moon2DUMB\"]=\"moon2DUMB\",\n\t[\"moon2EZ\"]=\"moon2EZ\",\n\t[\"moon2FEELS\"]=\"moon2FEELS\",\n\t[\"moon2GASM\"]=\"moon2GASM\",\n\t[\"moon2GOOD\"]=\"moon2GOOD\",\n\t[\"moon2GOTTEM\"]=\"moon2GOTTEM\",\n\t[\"moon2GUMS\"]=\"moon2GUMS\",\n\t[\"moon2HAHAA\"]=\"moon2HAHAA\",\n\t[\"moon2HAPPY\"]=\"moon2HAPPY\",\n\t[\"moon2HEY\"]=\"moon2HEY\",\n\t[\"moon2HNNG\"]=\"moon2HNNG\",\n\t[\"moon2KISSES\"]=\"moon2KISSES\",\n\t[\"moon2L\"]=\"moon2L\",\n\t[\"moon2LULT\"]=\"moon2LULT\",\n\t[\"moon2MLADY\"]=\"moon2MLADY\",\n\t[\"moon2MLEM\"]=\"moon2MLEM\",\n\t[\"moon2OOO\"]=\"moon2OOO\",\n\t[\"moon2P\"]=\"moon2P\",\n\t[\"moon2PLSNO\"]=\"moon2PLSNO\",\n\t[\"moon2R\"]=\"moon2R\",\n\t[\"moon2S\"]=\"moon2S\",\n\t[\"moon2SHURG\"]=\"moon2SHURG\",\n\t[\"moon2SMAG\"]=\"moon2SMAG\",\n\t[\"moon2SMUG\"]=\"moon2SMUG\",\n\t[\"moon2SPY\"]=\"moon2SPY\",\n\t[\"moon2T\"]=\"moon2T\",\n\t[\"moon2TEEHEE\"]=\"moon2TEEHEE\",\n\t[\"moon2THUMP\"]=\"moon2THUMP\",\n\t[\"moon2VAPE\"]=\"moon2VAPE\",\n\t[\"moon2W\"]=\"moon2W\",\n\t[\"moon2WHINE\"]=\"moon2WHINE\",\n\t[\"moon2WHY\"]=\"moon2WHY\",\n\t[\"moon2WINKY\"]=\"moon2WINKY\",\n\t[\"moon2WOO\"]=\"moon2WOO\",\n\t[\"moon2WOOP\"]=\"moon2WOOP\",\n\t[\"moon2WOW\"]=\"moon2WOW\",\n\t[\"moon2WUT\"]=\"moon2WUT\",\n\t[\"moon2XD\"]=\"moon2XD\",\n\t[\"moon2YE\"]=\"moon2YE\",\n\t[\"moon2DOIT\"]=\"moon2DOIT\",\n\t[\"moon2DUMBER\"]=\"moon2DUMBER\",\n\t[\"moon2EZ\"]=\"moon2EZ\",\n\t[\"moon2H\"]=\"moon2H\",\n\t[\"moon2MLADY\"]=\"moon2MLADY\",\n\t[\"moon2MM\"]=\"moon2MM\",\n\t[\"moon2N\"]=\"moon2N\",\n\t[\"moon2O\"]=\"moon2O\",\n\t[\"moon2OP\"]=\"moon2OP\",\n\t[\"moon2P\"]=\"moon2P\",\n\t[\"PEEPEEGA\"]=\"moon2PEEPEEGA\",\n\t[\"moon2PEEPEEGA\"]=\"moon2PEEPEEGA\",\n\t[\"moon2PH\"]=\"moon2PH\",\n\t[\"moon2SECRETEMOTE\"]=\"moon2SECRETEMOTE\",\n\t[\"moon2SH\"]=\"moon2SH\",\n\t[\"moon2SMERG\"]=\"moon2SMERG\",\n\t[\"moon2SP\"]=\"moon2SP\",\n\t[\"moon2VERYSCARED\"]=\"moon2VERYSCARED\",\n\t[\"moon2WAH\"]=\"moon2WAH\",\n\t[\"moon2Y\"]=\"moon2Y\",\n\t-- MyMrFruit\n\t[\"mrfruitAngry\"]=\"mrfruitAngry\",\n\t[\"mrfruitChamp\"]=\"mrfruitChamp\",\n\t[\"mrfruitDD\"]=\"mrfruitDD\",\n\t[\"mrfruitFail\"]=\"mrfruitFail\",\n\t[\"mrfruitGarbage\"]=\"mrfruitGarbage\",\n\t[\"mrfruitGREAT\"]=\"mrfruitGREAT\",\n\t[\"mrfruitHype\"]=\"mrfruitHype\",\n\t[\"mrfruitJuicy\"]=\"mrfruitJuicy\",\n\t[\"mrfruitKappa\"]=\"mrfruitKappa\",\n\t[\"mrfruitLURK\"]=\"mrfruitLURK\",\n\t[\"mrfruitMe\"]=\"mrfruitMe\",\n\t[\"mrfruitMELON\"]=\"mrfruitMELON\",\n\t[\"mrfruitNaisu\"]=\"mrfruitNaisu\",\n\t[\"mrfruitNN\"]=\"mrfruitNN\",\n\t[\"mrfruitNope\"]=\"mrfruitNope\",\n\t[\"mrfruitReally\"]=\"mrfruitReally\",\n\t[\"mrfruitRight\"]=\"mrfruitRight\",\n\t[\"mrfruitUP\"]=\"mrfruitUP\",\n\t-- nl_Kripp\n\t[\"Krug\"]=\"Krug\",\n\t[\"kripp1\"]=\"kripp1\",\n\t[\"kripp2\"]=\"kripp2\",\n\t[\"kripp3\"]=\"kripp3\",\n\t[\"kripp4\"]=\"kripp4\",\n\t[\"krippAmbe\"]=\"krippAmbe\",\n\t[\"krippBaby\"]=\"krippBaby\",\n\t[\"krippBeg\"]=\"krippBeg\",\n\t[\"krippBird\"]=\"krippBird\",\n\t[\"krippBomb\"]=\"krippBomb\",\n\t[\"Vaessa\"]=\"PepePoo\",\n\t[\"vaessa\"]=\"PepePoo\",\n\t[\"krippC\"]=\"krippC\",\n\t[\"krippCat\"]=\"krippCat\",\n\t[\"krippChamp\"]=\"krippChamp\",\n\t[\"krippDex\"]=\"krippDex\",\n\t[\"krippDoge\"]=\"krippDoge\",\n\t[\"krippDonger\"]=\"krippDonger\",\n\t[\"krippDrums\"]=\"krippDrums\",\n\t[\"krippFat\"]=\"krippFat\",\n\t[\"krippFeelsMan\"]=\"krippFeelsMan\",\n\t[\"krippFist\"]=\"krippFist\",\n\t[\"krippGasm\"]=\"krippGasm\",\n\t[\"krippGood\"]=\"krippGood\",\n\t[\"krippHey\"]=\"krippHey\",\n\t[\"krippKripp\"]=\"krippKripp\",\n\t[\"krippLucky\"]=\"krippLucky\",\n\t[\"krippLUL\"]=\"krippLUL\",\n\t[\"krippMas\"]=\"krippMas\",\n\t[\"krippMath\"]=\"krippMath\",\n\t[\"krippO\"]=\"krippO\",\n\t[\"krippOJ\"]=\"krippOJ\",\n\t[\"krippPopo\"]=\"krippPopo\",\n\t[\"krippPride\"]=\"krippPride\",\n\t[\"krippRania\"]=\"krippRania\",\n\t[\"krippRiot\"]=\"krippRiot\",\n\t[\"krippRIP\"]=\"krippRIP\",\n\t[\"krippRoss\"]=\"krippRoss\",\n\t[\"krippRU\"]=\"krippRU\",\n\t[\"krippSalt\"]=\"krippSalt\",\n\t[\"krippSkip\"]=\"krippSkip\",\n\t[\"krippSleeper\"]=\"krippSleeper\",\n\t[\"krippSmorc\"]=\"krippSmorc\",\n\t[\"krippSnipe\"]=\"krippSnipe\",\n\t[\"krippSuccy\"]=\"krippSuccy\",\n\t[\"krippThump\"]=\"krippThump\",\n\t[\"krippTop\"]=\"krippTop\",\n\t[\"krippTrigger\"]=\"krippTrigger\",\n\t[\"krippV\"]=\"krippV\",\n\t[\"krippW\"]=\"krippW\",\n\t[\"krippWall\"]=\"krippWall\",\n\t[\"krippWTF\"]=\"krippWTF\",\n\t[\"krippX\"]=\"krippX\",\n\t-- Pepes\n\t[\"EZ\"]=\"EZ\",\n\t[\"FeelsRainMan\"]=\"FeelsRainMan\",\n\t[\"needmemes1\"]=\":need:\",\n\t[\"needmemes2\"]=\":memes:\",\n\t[\":need:\"]=\":need:\",\n\t[\":memes:\"]=\":memes:\",\n\t[\"FeelsAmazingMan\"]=\"FeelsAmazingMan\",\n\t[\"FeelsIncredibleMan\"]=\"FeelsIncredibleMan\",\n\t[\"FeelsBadMan\"]=\"FeelsBadMan\",\n\t[\"FeelsBadManF\"]=\"FeelsBadManF\",\n\t[\"naMdaBsleeF\"]=\"FeelsBadManF\",\n\t[\"FeelsBadManV\"]=\"FeelsBadManV\",\n\t[\"FBM\"]=\"FeelsBadMan\",\n\t[\"FBMF\"]=\"FeelsBadManF\",\n\t[\"FBMV\"]=\"FeelsBadManV\",\n\t[\"FeelsBetaMan\"]=\"FeelsBetaMan\",\n\t[\"FeelsBirthdayMan\"]=\"FeelsBirthdayMan\",\n\t[\"FeelsBlushMan\"]=\"FeelsBlushMan\",\n\t[\"FeelsTastyMan\"]=\"FeelsTastyMan\",\n\t[\"FeelsCoolMan\"]=\"FeelsCoolMan\",\n\t[\"FeelsCopterMan\"]=\"FeelsCopterMan\",\n\t[\"FeelsCuteMan\"]=\"FeelsCuteMan\",\n\t[\"FeelsDorkMan\"]=\"FeelsDorkMan\",\n\t[\"FeelsDrunkMan\"]=\"FeelsDrunkMan\",\n\t[\"FeelsDutchMan\"]=\"FeelsDutchMan\",\n\t[\"FeelsEvilMan\"]=\"FeelsEvilMan\",\n\t[\"FeelsGamerMan\"]=\"FeelsGamerMan\",\n\t[\"FeelsGoodEnoughMan\"]=\"FeelsGoodEnoughMan\",\n\t[\"FeelsGoodMan\"]=\"FeelsGoodMan\",\n\t[\"FeelsGoodManW\"]=\"FeelsGoodManW\",\n\t[\"FeelsGreatMan\"]=\"FeelsGreatMan\",\n\t[\"FeelsHug\"]=\"FeelsHug\",\n\t[\"FeelsHugged\"]=\"FeelsHugged\",\n\t[\"FeelsKekMan\"]=\"FeelsKekMan\",\n\t[\"FeelsMyFingerMan\"]=\"FeelsMyFingerMan\",\n\t[\"FeelsOkayMan\"]=\"FeelsOkayMan\",\n\t[\"FeelsOkayManW\"]=\"FeelsOkayManW\",\n\t[\"FeelsBadManW\"]=\"FeelsBadManW\",\n\t[\"FeelsPumpkinMan\"]=\"FeelsPumpkinMan\",\n\t[\"FeelsSadMan\"]=\"FeelsSadMan\",\n\t[\"FeelsSadManW\"]=\"FeelsSadManW\",\n\t[\"FeelsSleepyMan\"]=\"FeelsSleepyMan\",\n\t[\"FeelsSnowMan\"]=\"FeelsSnowMan\",\n\t[\"FeelsSnowyMan\"]=\"FeelsSnowyMan\",\n\t[\"FeelsThinkingMan\"]=\"FeelsThinkingMan\",\n\t[\"FeelsTired\"]=\"FeelsTired\",\n\t[\"FeelsWeirdMan\"]=\"FeelsWeirdMan\",\n\t[\"nymWeird\"]=\"nymWeird\",\n\t[\"nymnWeird\"]=\"nymWeird\",\n\t[\"WeirdW\"]=\"WeirdW\",\n\t[\"WeirdWW\"]=\"WeirdWW\",\n\t[\"WeirdWWW\"]=\"WeirdWW\",\n\t[\"WeirdWWWW\"]=\"WeirdWW\",\n\t[\"WEIRD\"]=\"WeirdW\",\n\t[\"FeelsRottenMan\"]=\"FeelsRottenMan\",\n\t[\"FeelsWowMan\"]=\"FeelsWowMan\",\n\t[\"HYPERS\"]=\"HYPERS\",\n\t[\"JanCarlo\"]=\"JanCarlo\",\n\t[\"maximumautism\"]=\"maximumautism\",\n\t[\"meAutism\"]=\"meAutism\",\n\t[\"monkaGIGA\"]=\"monkaGIGA\",\n\t[\"monkaGun\"]=\"monkaGun\",\n\t[\"monkaH\"]=\"monkaH\",\n\t[\"monkaMEGA\"]=\"monkaMEGA\",\n\t[\"monkaOMEGA\"]=\"monkaOMEGA\",\n\t[\"monkaS\"]=\"monkaS\",\n\t[\"monkaX\"]=\"monkaX\",\n\t[\"peepoRain\"]=\"peepoRain\",\n\t[\"monkaT\"]=\"monkaT\",\n\t[\"monkaW\"]=\"monkaW\",\n\t[\"peepoLove\"]=\"peepoLove\",\n\t[\"peepoLoveW\"]=\"peepoLoveW\",\n\t[\"widepeepoLove\"]=\"WidePeepoLove\",\n\t[\"WidePeepoLove\"]=\"WidePeepoLove\",\n\t[\"peepoCool\"]=\"peepoCool\",\n\t[\"FeelsBadW\"]=\"BadW\",\n\t[\"BadW\"]=\"BadW\",\n\t[\"FeelsGoodW\"]=\"GoodW\",\n\t[\"GoodW\"]=\"GoodW\",\n\t[\"BadW\"]=\"BadW\",\n\t[\"FeelsOkayW\"]=\"OkayW\",\n\t[\"OkayW\"]=\"OkayW\",\n\t[\"monkaHmm\"]=\"monkaHmm\",\n\t[\"NA\"]=\"NA\",\n\t[\"nanoMEGA\"]=\"nanoMEGA\",\n\t[\"peep\"]=\"peep\",\n\t[\"PepeHands\"]=\"PepeHands\",\n\t[\"PepeHandsW\"]=\"PepeHandsW\",\n\t[\"PepeLaugh\"]=\"PepeLaugh\",\n\t[\"PepeJAM\"]=\"PepeJAM\",\n\t[\"PepeJAMW\"]=\"PepeJAMW\",\n\t[\"PepeJam\"]=\"PepeJAM\",\n\t[\"PepeJamW\"]=\"PepeJAMW\",\n\t[\"pepeOK\"]=\"PepeOK\",\n\t[\"PepeOK\"]=\"PepeOK\",\n\t[\"allFit\"]=\"PepeOK\",\n\t[\"allfit\"]=\"PepeOK\",\n\t[\"AllFit\"]=\"PepeOK\",\n\t[\"Allfit\"]=\"PepeOK\",\n\t[\"NichtFit\"]=\"PepeNotOK\",\n\t[\"nichtFit\"]=\"PepeNotOK\",\n\t[\"Nichtfit\"]=\"PepeNotOK\",\n\t[\"nichtfit\"]=\"PepeNotOK\",\n\t[\"pepeOKW\"]=\"PepeOKW\",\n\t[\"PepeOKW\"]=\"PepeOKW\",\n\t[\"PepeOKW\"]=\"PepeOKW\",\n\t[\"PepoThink\"]=\"PepoThink\",\n\t[\"POGGERS\"]=\"POGGERS\",\n\t[\"POGGERSF\"]=\"POGGERSF\",\n\t[\"RandomPepe\"]=\"RandomPepe\",\n\t[\"REEE\"]=\"REEE\",\n\t[\"SucksMan\"]=\"SucksMan\",\n\t[\"WOAW\"]=\"WOAW\",\n\t[\"Pepega\"]=\"Pepega\",\n\t[\"pepega\"]=\"pepega\",\n\t[\"PepegaHands\"]=\"PepegaHands\",\n\t[\"Weirdga\"]=\"Weirdga\",\n\t[\"Britpega\"]=\"Britpega\",\n\t[\"noClown\"]=\"noClown\",\n\t[\"Monkas\"]=\"Monkas\",\n\t[\"MegaMonkas\"]=\"MegaMonkas\",\n\t[\"peepoHit\"]=\"peepoHit\",\n\t[\"peepoPat\"]=\"peepoPat\",\n\t[\"pepeBruh\"]=\"PepeBruh\",\n\t[\"PepeBruh\"]=\"PepeBruh\",\n\t[\"PepeHam\"]=\"PepeHammer\",\n\t[\"pepeHam\"]=\"PepeHammer\",\n\t[\":deduct:\"]=\"PepeHammer\",\n\t[\":Deduct:\"]=\"PepeHammer\",\n\t[\"PepeHammer\"]=\"PepeHammer\",\n\t[\"pepeGang\"]=\"PepeGang\",\n\t[\"PepeGang\"]=\"PepeGang\",\n\t[\"peepoDetective\"]=\"peepoDetective\",\n\t[\":peepo:\"]=\"peepoDetective\",\n\t[\"POOGERS\"]=\"POOGERS\",\n\t[\"POGGIES\"]=\"POGGIES\",\n\t[\"peepoS\"]=\"peepoS\",\n\t[\"peepoHug\"]=\"peepoHug\",\n\t[\"peepoHugged\"]=\"peepoHugged\",\n\t[\"peepoEZ\"]=\"peepoEZ\",\n\t[\"peepoWeird\"]=\"peepoWeird\",\n\t[\"widepeepoWeird\"]=\"WidePeepoWeird\",\n\t[\"WidePeepoWeird\"]=\"WidePeepoWeird\",\n\t[\"pepePoo\"]=\"PepePoo\",\n\t[\"PepePoo\"]=\"PepePoo\",\n\t[\"peepoBlush\"]=\"peepoBlush\",\n\t[\"peepoBlushing\"]=\"peepoBlushing\",\n\t[\"peepoUK\"]=\"peepoUK\",\n\t[\"peepoThink\"]=\"peepoThink\",\n\t[\"peepoPlot\"]=\"peepoPlot\",\n\t[\"peepoPlotW\"]=\"peepoPlotW\",\n\t[\"monkaPickle\"]=\"monkaPickle\",\n\t[\"PepeG\"]=\"PepeG\",\n\t[\"PepeD\"]=\"pepeD\",\n\t[\"pepeD\"]=\"pepeD\",\n\t[\"PepeDisgust\"]=\"PepeDisgust\",\n\t[\"PoggersHype\"]=\"PoggersHype\",\n\t[\"POGGERSHype\"]=\"PoggersHype\",\n\t[\"PoggersHypeF\"]=\"PoggersHypeF\",\n\t[\"POGGERSHypeF\"]=\"PoggersHypeF\",\n\t[\"POGGERSHYPE\"]=\"PoggersHype\",\n\t[\"POGGERSHYPE\"]=\"PoggersHype\",\n\t[\"POGGERSHYPEF\"]=\"PoggersHypeF\",\n\t[\"POGGERSHYPEF\"]=\"PoggersHypeF\",\n\t[\"PepeButt\"]=\"PepeButt\",\n\t[\"peepoWTF\"]=\"peepoWTF\",\n\t[\"Rampw\"]=\"peepoWTF\",\n\t[\"RampW\"]=\"peepoWTF\",\n\t[\"monkaTOS\"]=\"monkaTOS\",\n\t[\"PepeWizard\"]=\"PepeWizard\",\n\t[\"PepeLegs\"]=\"PepeLegs\",\n\t[\"peepoLegs\"]=\"PepeLegs\",\n\t[\"peepaGrown\"]=\"peepaGrown\",\n\t[\"PepeReach\"]=\"PepeReach\",\n\t[\"PepeTHICC\"]=\"PepeTHICC\",\n\t[\"FeelsFatMan\"]=\"FeelsFatMan\",\n\t[\"FeelsSuicideMan\"]=\"FeelsSuicideMan\",\n\t[\"KMS\"]=\"FeelsSuicideMan\",\n\t[\"FUARK\"]=\"FUARK\",\n\t[\"KekeHands\"]=\"KekeHands\",\n\t[\"PepeCry\"]=\"PepeCry\",\n\t[\"PepeMeltdown\"]=\"PepeMeltdown\",\n\t[\"spit1\"]=\"spit1\",\n\t[\"spit2\"]=\"spit2\",\n\t[\"monkaHands\"]=\"monkaHands\",\n\t[\"PepeCoolStory\"]=\"PepeCoolStory\",\n\t[\"FeelsCoolStory\"]=\"PepeCoolStory\",\n\t[\"PepeFeet\"]=\"PepeFeet\",\n\t[\"PepeHeart\"]=\"PepeHeart\",\n\t[\"PepeM\"]=\"PepeM\",\n\t[\"PepeMW\"]=\"PepeMW\",\n\t[\"PepePants\"]=\"PepePants\",\n\t[\"peepoHide\"]=\"peepoHide\",\n\t[\"peepoWeirdNo\"]=\"peepoWeirdNo\",\n\t[\"peepoNo\"]=\"peepoNo\",\n\t[\"peepoYes\"]=\"peepoYes\",\n\t[\"peepoPeek\"]=\"peepoPeek\",\n\t[\"peepoPogPoo\"]=\"peepoPogPoo\",\n\t[\"peepoPoo\"]=\"peepoPoo\",\n\t[\"peepoShrug\"]=\"peepoShrug\",\n\t[\"peepoWave\"]=\"peepoWave\",\n\t[\"FeelsBoredMan\"]=\"FeelsBoredMan\",\n\t[\"FeelsCryMan\"]=\"FeelsCryMan\",\n\t[\"peepoFA\"]=\"peepoFA\",\n\t[\"peepoFH\"]=\"peepoFH\",\n\t[\"peepoNolegs\"]=\"peepoNolegs\",\n\t[\"peepoTired\"]=\"peepoTired\",\n\t[\"PepeFist\"]=\"PepeFist\",\n\t[\"PepegaLaugh\"]=\"PepegaLaugh\",\n\t[\"PepegaPoo\"]=\"PepegaPoo\",\n\t[\"PepegaS\"]=\"PepegaS\",\n\t[\"Pepege\"]=\"Pepege\",\n\t[\"PepegeS\"]=\"PepegeS\",\n\t[\"PepegeSit\"]=\"PepegeSit\",\n\t[\"PepegeWeird\"]=\"PepegeWeird\",\n\t[\"Pepeggers\"]=\"Pepeggers\",\n\t[\"PEPEGGERS\"]=\"Pepeggers\",\n\t[\"PepeHmm\"]=\"PepeHmm\",\n\t[\"PepeKMS\"]=\"PepeKMS\",\n\t[\"PepeRun\"]=\"PepeRun\",\n\t[\"WeirdU\"]=\"WeirdU\",\n\t[\"peepoKing\"]=\"peepoKing\",\n\t[\"peepoCrown\"]=\"peepoCrown\",\n\t[\"peepoFat\"]=\"peepoFat\",\n\t[\"FeelsDeadMan\"]=\"FeelsDeadMan\",\n\t[\"peepoH\"]=\"peepoH\",\n\t[\"peepoWeirdCrown\"]=\"peepoWeirdCrown\",\n\t[\"PePeppaPig\"]=\"PePeppaPig\",\n\t[\"PePepaPig\"]=\"PePeppaPig\",\n\t[\"peepoPing\"]=\"peepoPing\",\n\t[\"peepoHuggies\"]=\"peepoHuggies\",\n\t[\"peepoHuggied\"]=\"peepoHuggied\",\n\t[\"PepeAyy\"]=\"PepeAyy\",\n\t[\"PepegaLaugh\"]=\"PepegaLaugh\",\n\t[\"TiredW\"]=\"TiredW\",\n\t[\"FeelsTiredW\"]=\"TiredW\",\n\t[\"OkayLaugh\"]=\"OkayLaugh\",\n\t[\"peepOK\"]=\"peepOK\",\n\t[\"peepKing\"]=\"peepKing\",\n\t[\"peep420\"]=\"peep420\",\n\t[\"peep420Ely\"]=\"peep420Ely\",\n\t[\"peepEly\"]=\"peep420Ely\",\n\t[\"monakHmm\"]=\"monakHmm\",\n\t[\"monakS\"]=\"monakS\",\n\t[\"monakOK\"]=\"monakOK\",\n\t[\"monakO\"]=\"monakO\",\n\t[\"Monaks\"]=\"Monaks\",\n\t[\"monakaS\"]=\"monakaS\",\n\t[\"PeepLaff\"]=\"PeepLaff\",\n\t[\"PeepLaugh\"]=\"PeepLaff\",\n\t[\"PepePoint\"]=\"PepePoint\",\n\t[\"PepeLaughPoint\"]=\"PepePoint\",\n\t[\"peepoFrogHappy\"]=\"peepoFrogHappy\",\n\t[\"FeelsComradeMan\"]=\"FeelsComradeMan\",\n\t[\"PepOMEGA\"]=\"PepOMEGA\",\n\t[\"peepoV\"]=\"peepoV\",\n\t[\"peepoVW\"]=\"peepoVW\",\n\t[\"4peepo\"]=\"4peepo\",\n\t[\"FeelsTiredAF\"]=\"FeelsTiredAF\",\n\t[\"peepoKnight\"]=\"peepoKnight\",\n\t[\"PepeMStache\"]=\"PepeMStache\",\n\t[\"PepeMStacheW\"]=\"PepeMStacheW\",\n\t[\"PeepKek\"]=\"PeepKek\",\n\t[\"PeepGiggle\"]=\"PeepGiggle\",\n\t[\"PepePains\"]=\"PepePains\",\n\t[\"Pepepains\"]=\"PepePains\",\n\t[\"peepoPants\"]=\"peepoPants\",\n\t[\"FeelsOakyMan\"]=\"FeelsOakyMan\",\n\t[\"FeelsWiredMan\"]=\"FeelsWiredMan\",\n\t[\"PeepHand\"]=\"PeepHand\",\n\t[\"Lovepeepo\"]=\"Lovepeepo\",\n\t[\"LovepeepoW\"]=\"LovepeepoW\",\n\t[\"PHOGGERS\"]=\"PHOGGERS\",\n\t[\"drxLit\"]=\"FeelsLMAO\",\n\t[\"PepeLMAO\"]=\"FeelsLMAO\",\n\t[\"FeelsLMAO\"]=\"FeelsLMAO\",\n\t[\"drxLit\"]=\"drxLit\",\n\t[\"PepegaSad\"]=\"PepegaSad\",\n\t[\"PepeGamer\"]=\"PepeGamer\",\n\t[\"P\u00fblv\"]=\"PepeGamer\",\n\t[\"p\u00fblv\"]=\"PepeGamer\",\n\t[\"PepeL\"]=\"PepeL\",\n\t[\"monkaGig\"]=\"monkaGIG\",\n\t[\"monkaGIG\"]=\"monkaGIG\",\n\t[\"monkaD\"]=\"monkaD\",\n\t[\"monkaU\"]=\"monkaU\",\n\t[\"peepoGift\"]=\"peepoGift\",\n\t[\"PepeHug\"]=\"PepeHug\",\n\t[\"monkaStab\"]=\"monkaStab\",\n\t[\"ppFootbol\"]=\"ppFootbol\",\n\t[\"ppFootball\"]=\"ppFootbol\",\n\t[\"Footbol\"]=\"ppFootbol\",\n\t[\"FeelsAngryVan\"]=\"FeelsAngryVan\",\n\t[\"Gachimaster\"]=\"FeelsAngryVan\",\n\t[\"gachimaster\"]=\"FeelsAngryVan\",\n\t[\"TOSga\"]=\"TOSga\",\n\t[\"TOSGa\"]=\"TOSga\",\n\t[\"monkaEyes\"]=\"monkaEyes\",\n\t[\"peepoBlanket\"]=\"peepoBlanket\",\n\t[\"widepeepoBlanket\"]=\"widepeepoBlanket\",\n\t[\"WidePeepoBlanket\"]=\"widepeepoBlanket\",\n\t[\"PepeCoffee\"]=\"PepeCoffee\",\n\t[\"peepoHmm\"]=\"peepoHmm\",\n\t[\"PepeSmoke\"]=\"PepeSmoke\",\n\t[\"peepoSE\"]=\"peepoSE\",\n\t[\"monkaANELE\"]=\"monkaANELE\",\n\t[\"monkANELE\"]=\"monkaANELE\",\n\t[\"monkanele\"]=\"monkaANELE\",\n\t[\"peepoSip\"]=\"peepoSip\",\n\t[\"POGGERSLove\"]=\"POGGERSLove\",\n\t[\"PepegaKMS\"]=\"PepegaKMS\",\n\t[\"SadHonk\"]=\"SadHonk\",\n\t[\"ClownPain\"]=\"ClownPain\",\n\t[\"ClownNice\"]=\"ClownNice\",\n\t[\"ClownBall\"]=\"ClownBall\",\n\t[\":Dironmonk:\"]=\"ClownBall\",\n\t[\"MALDD\"]=\"MALDD\",\n\t[\"FeelsMaldMan\"]=\"MALDD\",\n\t[\":drama:\"]=\":drama:\",\n\t[\"Pepegwa\"]=\"Pepegwa\",\n\t[\"peepoSenor\"]=\"peepoSenor\",\n\t[\"peepoStudy\"]=\"peepoStudy\",\n\t[\"peepoSmile\"]=\"peepoSmile\",\n\t[\"peepoOkay\"]=\"peepoSmile\",\n\t[\"peepoSalute\"]=\"peepoSalute\",\n\t[\"peepoDE\"]=\"peepoDE\",\n\t[\"peepoES\"]=\"peepoES\",\n\t[\"peepoFR\"]=\"peepoFR\",\n\t[\"peepoEU\"]=\"peepoEU\",\n\t[\"peepoUSA\"]=\"peepoUSA\",\n\t[\"peepoCN\"]=\"peepoCN\",\n\t[\"peepoNOO\"]=\"peepoNOO\",\n\t[\"peepoNOOO\"]=\"peepoNOOO\",\n\t[\"peepoTeddy\"]=\"peepoTeddy\",\n\t[\"peepoUgh\"]=\"peepoUgh\",\n\t[\"peepoSuspect\"]=\"peepoSuspect\",\n\t[\"peepoSuspicious\"]=\"peepoSuspicious\",\n\t[\"peepoOK\"]=\"peepoOK\",\n\t[\"peepoReallyHappy\"]=\"peepoReallyHappy\",\n\t[\"peepoEyes\"]=\"peepoEyes\",\n\t[\"peepoBored\"]=\"peepoBored\",\n\t[\"peepoHands\"]=\"peepoHands\",\n\t[\"Kraftdaddy\"]=\"PepeUnicornK\",\n\t[\"PepeUnicorn\"]=\"PepeUnicorn\",\n\t[\"PepeUnicornW\"]=\"PepeUnicornW\",\n\t[\"peepoTip\"]=\"peepoTip\",\n\t[\"Jewega\"]=\"Jewega\",\n\t[\"monkaBlanket\"]=\"monkaBlanket\",\n\t[\"monkaSBlanket\"]=\"monkaBlanket\",\n\t[\"FeelsHunterMan\"]=\"FeelsHunterMan\",\n\t[\"Stripples\"]=\"FeelsHunterMan\",\n\t[\"PepoScience\"]=\"PepoScience\",\n\t[\"PepoScience\"]=\"PepoScience\",\n\t[\"peepoScience\"]=\"PepoScience\",\n\t[\"pepeNotOK\"]=\"PepeNotOK\",\n\t[\"PepeNotOK\"]=\"PepeNotOK\",\n\t[\"pepeNotOKW\"]=\"PepeNotOKW\",\n\t[\"PepeNotOKW\"]=\"PepeNotOKW\",\n\t[\"peepoCharge\"]=\"peepoCharge\",\n\t[\"peepoStab\"]=\"peepoStab\",\n\t[\"LaughW\"]=\"LaughW\",\n\t[\"FeelsDabMan\"]=\"FeelsDabMan\",\n\t[\"GIMMIE\"]=\"GIMMIE\",\n\t[\"PepeDitch\"]=\"PepeDitch\",\n\t[\"PepeLouder\"]=\"PepeLouder\",\n\t[\"LULERS\"]=\"LULERS\",\n\t[\"FeelsLUL\"]=\"LULERS\",\n\t[\"monkaChrist\"]=\"monkaChrist\",\n\t[\"OMEGAEZ\"]=\"OMEGAEZ\",\n\t[\"ppSmoke\"]=\"ppSmoke\",\n\t[\"SmugPepe\"]=\"SmugPepe\",\n\t[\"PepeSmug\"]=\"SmugPepe\",\n\t[\"GiggleHands\"]=\"GiggleHands\",\n\t[\"FeelsUnsureMan\"]=\"FeelsUnsureMan\",\n\t[\":strike:\"]=\":strike:\",\n\t[\"FeelsNzoth\"]=\"FeelsNzoth\",\n\t[\"FeelsHentai\"]=\"FeelsNzoth\",\n\t[\"Sproodle\"]=\"FeelsNzoth\",\n\t[\"yikers\"]=\"yikers\",\n\t[\"YIKERS\"]=\"yikers\",\n\t[\":yikers:\"]=\"yikers\",\n\t[\"monkaKEK\"]=\"monkaKEK\",\n\t[\"monkaKek\"]=\"monkaKEK\",\n\t[\"PepeMods\"]=\"PepeMods\",\n\t[\"PepeXD\"]=\"PepeXD\",\n\t[\"peepoBeer\"]=\"peepoBeer\",\n\t[\"peepoFight\"]=\"peepoFight\",\n\t[\"SadPepe\"]=\"SadPepe\",\n\t[\"sadpepe\"]=\"SadPepe\",\n\t[\"monkaYou\"]=\"monkaYou\",\n\t[\"WeirdJAM\"]=\"WeirdJAM\",\n\t[\"WeirdJAMW\"]=\"WeirdJAMW\",\n\t[\"peepaSexy\"]=\"peepaSexy\",\n\t[\"SchubertBruh\"]=\"SchubertBruh\",\n\t[\"SchubertaBruh\"]=\"SchubertaBruh\",\n\t[\"SchubertSmile\"]=\"SchubertSmile\",\n\t[\"FeelsHordeMan\"]=\"FeelsHordeMan\",\n\t[\"FeelsAllianceMan\"]=\"FeelsAllianceMan\",\n\t[\"monkaThink\"]=\"monkaThink\",\n\t[\"peepoGun\"]=\"peepoGun\",\n\t[\"peepoLip\"]=\"peepoLip\",\n\t[\"peepoExit\"]=\"peepoExit\",\n\t[\"peepoExitW\"]=\"peepoExitW\",\n\t[\"pepeFU\"]=\"PepeFU\",\n\t[\"PepeFU\"]=\"PepeFU\",\n\t[\"FeelsCringeMan\"]=\"FeelsCringeMan\",\n\t[\"CringeW\"]=\"CringeW\",\n\t[\"peepoPoint\"]=\"peepoPoint\",\n\t[\"PepeCozy\"]=\"PepeCozy\",\n\t[\"PepeBean\"]=\"PepeBean\",\n\t[\"peepoCringe\"]=\"peepoCringe\",\n\t[\"PepeManos\"]=\"PepeManos\",\n\t[\"monkaStare\"]=\"monkaStare\",\n\t[\"PepeScoots\"]=\"PepeScoots\",\n\t[\"pillowJammies\"]=\"pillowJammies\",\n\t[\"pillowjammies\"]=\"pillowJammies\",\n\t[\"beanping\"]=\"beanping\",\n\t[\"PepperHands\"]=\"PepperHands\",\n\t[\"PepeThumbsUp\"]=\"PepeThumbsUp\",\n\t[\"KEKWHands\"]=\"KEKWHands\",\n\t[\"peepoKEKW\"]=\"peepoKEKW\",\n\t[\"peepoCute\"]=\"peepoCute\",\n\t[\"OohCute\"]=\"peepoCute\",\n\t[\"peepoMaybe\"]=\"peepoMaybe\",\n\t[\"peepoglad\"]=\"peepoGlad\",\n\t[\"peepoGlad\"]=\"peepoGlad\",\n\t[\"peepoFriends\"]=\"peepoFriends\",\n\t[\"peepoDetective2\"]=\"peepoDetective2\",\n\t[\":peepo2:\"]=\"peepoDetective2\",\n\t[\"Smilers\"]=\"Smilers\",\n\t[\"smilers\"]=\"Smilers\",\n\t[\"SMILERS\"]=\"Smilers\",\n\t[\"COGGERS\"]=\"COGGERS\",\n\t[\"monkaStop\"]=\"monkaStop\",\n\t[\"FeelsLoveMan\"]=\"FeelsLoveMan\",\n\t[\"YEP\"]=\"YEP\",\n\t[\"PepeDent\"]=\"PepeDent\",\n\t[\"pepeDent\"]=\"PepeDent\",\n\t[\"FeelsBoomieMan\"]=\"FeelsBoomieMan\",\n\t[\"FeelsGelorMan\"]=\"FeelsBoomieMan\",\n\t[\"FeelsEleMan\"]=\"FeelsEleMan\",\n\t[\"FeelsInnervateMan\"]=\"FeelsEleMan\",\n\t-- PsheroTV\n\t[\"heroBT\"]=\"heroBT\",\n\t[\"heroFEELS\"]=\"heroFEELS\",\n\t[\"heroH\"]=\"heroH\",\n\t[\"heroKOTE\"]=\"heroKOTE\",\n\t[\"heroKUCHE\"]=\"heroKUCHE\",\n\t[\"heroNB\"]=\"heroNB\",\n\t[\"heroNEXT\"]=\"heroNEXT\",\n\t[\"heroPEDRO\"]=\"heroPEDRO\",\n\t[\"heroPog\"]=\"heroPog\",\n\t[\"heroRIP\"]=\"heroRIP\",\n\t[\"heroS\"]=\"heroS\",\n\t[\"heroS2\"]=\"heroS2\",\n\t[\"heroSMART\"]=\"heroSMART\",\n\t[\"heroW\"]=\"heroW\",\n\t[\"heroZ\"]=\"heroZ\",\n\t-- pepeOKLife\n\t[\"beamBrah\"]=\"beamBrah\",\n\t[\"beamBrahW\"]=\"beamBrahW\",\n\t[\"CaptainSuze\"]=\"CaptainSuze\",\n\t[\"FeelsPandaMan\"]=\"FeelsPandaMan\",\n\t[\"dragon365DSGualo\"]=\"FeelsPandaMan\",\n\t[\"gigaSuze\"]=\"gigaSuze\",\n\t[\"JanCarlo2\"]=\"JanCarlo2\",\n\t[\"mumes\"]=\"mumes\",\n\t[\":mumes:\"]=\"mumes\",\n\t[\"peepoKnife\"]=\"peepoKnife\",\n\t[\"pepeClown\"]=\"PepeClown\",\n\t[\"PepeClown\"]=\"PepeClown\",\n\t[\"pepeKing\"]=\"PepeKing\",\n\t[\"pepeScience\"]=\"PepeScience\",\n\t[\"pepeWork\"]=\"PepeWork\",\n\t[\"PepeWork\"]=\"PepeWork\",\n\t[\"pepeWorkW\"]=\"PepeWorkW\",\n\t[\"PepeWorkW\"]=\"PepeWorkW\",\n\t[\"pepoCozy\"]=\"peepoCozy\",\n\t[\"pepoCrab\"]=\"peepoCrab\",\n\t[\"pepeShrug\"]=\"peepoCrab\",\n\t[\"PepeKing\"]=\"PepeKing\",\n\t[\"PepeScience\"]=\"PepeScience\",\n\t[\"PepeWork\"]=\"PepeWork\",\n\t[\"peepoCozy\"]=\"peepoCozy\",\n\t[\"peepoCrab\"]=\"peepoCrab\",\n\t[\"PepeShrug\"]=\"peepoCrab\",\n\t[\"suze\"]=\"suze\",\n\t[\"Suze\"]=\"suze\",\n\t[\"suzeOK\"]=\"suzeOK\",\n\t[\"sarkenSuze\"]=\"suzeOK\",\n\t[\"ANELELUL\"]=\"ANELELUL\",\n\t[\"ANELUL\"]=\"ANELELUL\",\n\t[\"bubby\"]=\"bubby\",\n\t[\"FeelsCozyMan\"]=\"FeelsCozyMan\",\n\t[\"FeelsWizardMan\"]=\"FeelsMageMan\",\n\t[\"FeelsMageMan\"]=\"FeelsMageMan\",\n\t[\"Kreshh\"]=\"FeelsMageMan\",\n\t[\"Samefood\"]=\"Samefood\",\n\t[\"GAmer\"]=\"GAmer\",\n\t[\"miffs\"]=\"miffs\",\n\t[\"peepoCheer\"]=\"peepoCheer\",\n\t[\"peepoCry\"]=\"peepoCry\",\n\t[\"peepoDK\"]=\"peepoDK\",\n\t[\"peepoMad\"]=\"peepoMad\",\n\t[\"peepoMadW\"]=\"peepoMadW\",\n\t[\"pepeBed\"]=\"PepeBed\",\n\t[\"pepeChill\"]=\"PepeChill\",\n\t[\"pepeCool\"]=\"PepeCool\",\n\t[\"pepeGiggle\"]=\"PepeGiggle\",\n\t[\"PepeGiggle\"]=\"PepeGiggle\",\n\t[\"pepeKingLove\"]=\"PepeKingLove\",\n\t[\"pepeSpartan\"]=\"PepeSpartan\",\n\t[\"pepeSuspect\"]=\"PepeSuspect\",\n\t[\"pepeSuspicious\"]=\"PepeSuspect\",\n\t[\"pepeHMM\"]=\"PepeSuspect\",\n\t[\"pepoChef\"]=\"peepoChef\",\n\t[\"pepoChristus\"]=\"peepoChrist\",\n\t[\"pepoChrist\"]=\"peepoChrist\",\n\t[\"pepoSuze\"]=\"peepoSuze\",\n\t[\"pepeCop\"]=\"PepeCop\",\n\t[\"potter\"]=\"potter\",\n\t[\"sameS\"]=\"sameS\",\n\t[\"pepeStudy\"]=\"PepeStudy\",\n\t[\"suze4animals\"]=\"suze4animals\",\n\t[\"suze4know\"]=\"suze4know\",\n\t[\"pepeGod\"]=\"PepeGod\",\n\t[\"pepeHacker\"]=\"PepeHacker\",\n\t[\"pepeWave\"]=\"PepeWave\",\n\t[\"pepeWheels\"]=\"PepeWheels\",\n\t[\"pepeSmurf\"]=\"PepeSmurf\",\n\t[\"PepeBed\"]=\"PepeBed\",\n\t[\"PepeChill\"]=\"PepeChill\",\n\t[\"PepeCool\"]=\"PepeCool\",\n\t[\"PepeGiggle\"]=\"PepeGiggle\",\n\t[\"PepeGiggle\"]=\"PepeGiggle\",\n\t[\"PepeKingLove\"]=\"PepeKingLove\",\n\t[\"PepeSpartan\"]=\"PepeSpartan\",\n\t[\"PepeSuspect\"]=\"PepeSuspect\",\n\t[\"PepeSuspicious\"]=\"PepeSuspect\",\n\t[\"PepeHMM\"]=\"PepeSuspect\",\n\t[\"peepoChef\"]=\"peepoChef\",\n\t[\"peepoChristus\"]=\"peepoChrist\",\n\t[\"peepoChrist\"]=\"peepoChrist\",\n\t[\"peepoSuze\"]=\"peepoSuze\",\n\t[\"PepeCop\"]=\"PepeCop\",\n\t[\"potter\"]=\"potter\",\n\t[\"sameS\"]=\"sameS\",\n\t[\"PepeStudy\"]=\"PepeStudy\",\n\t[\"suze4animals\"]=\"suze4animals\",\n\t[\"suze4know\"]=\"suze4know\",\n\t[\"PepeGod\"]=\"PepeGod\",\n\t[\"PepeHacker\"]=\"PepeHacker\",\n\t[\"PepeWave\"]=\"PepeWave\",\n\t[\"PepeWheels\"]=\"PepeWheels\",\n\t[\"PepeSmurf\"]=\"PepeSmurf\",\n\t[\"PauseChamp\"]=\"PauseChamp\",\n\t[\"PogChampius\"]=\"PogChampius\",\n\t[\"WeirdChampius\"]=\"WeirdChampius\",\n\t[\"WeirdChampion\"]=\"WeirdChampion\",\n\t[\"LULWWW\"]=\"LULWWW\",\n\t[\"LULWWWW\"]=\"LULWWWW\",\n\t[\"LULWWWWW\"]=\"LULWWWWW\",\n\t[\"AngryWoof\"]=\"AngryWoof\",\n\t-- Quin69\n\t[\"quinBeam1\"]=\"quinBeam1\",\n\t[\"beamB\"]=\"beamB\",\n\t[\"quinBeam2\"]=\"beamB\",\n\t[\"quinBoss\"]=\"quinBoss\",\n\t[\"quinBot\"]=\"quinBot\",\n\t[\"quinBully\"]=\"quinBully\",\n\t[\"quinC\"]=\"quinC\",\n\t[\"quinD\"]=\"quinD\",\n\t[\"quinDOIT\"]=\"quinDOIT\",\n\t[\"quinDom\"]=\"quinDom\",\n\t[\"quinGun\"]=\"quinGun\",\n\t[\"quinHappy\"]=\"quinHappy\",\n\t[\"quinJesus\"]=\"quinJesus\",\n\t[\"quinJudy\"]=\"quinJudy\",\n\t[\"quinJuice\"]=\"quinJuice\",\n\t[\"quinL\"]=\"quinL\",\n\t[\"quinLeech\"]=\"quinLeech\",\n\t[\"quinMask\"]=\"quinMask\",\n\t[\"quinPaca\"]=\"quinPaca\",\n\t[\"quinPalm\"]=\"quinPalm\",\n\t[\"quinPukana\"]=\"quinPukana\",\n\t[\"quinR\"]=\"quinR\",\n\t[\"quinRat\"]=\"quinRat\",\n\t[\"quinSplat\"]=\"quinSplat\",\n\t[\"quinThump\"]=\"quinThump\",\n\t[\"quinTip\"]=\"quinTip\",\n\t[\"quinWtf\"]=\"quinWtf\",\n\t[\"quinWut\"]=\"quinWut\",\n\t -- pajlada\n [\"pajaAngry\"]=\"pajaAngry\",\n [\"pajaCCool\"]=\"pajaCCool\",\n [\"pajaCopter\"]=\"pajaCopter\",\n [\"pajaCMON\"]=\"pajaCMON\",\n [\"pajaDank\"]=\"pajaDank\",\n [\"pajaDent\"]=\"pajaDent\",\n [\"pajaGASM\"]=\"pajaGASM\",\n [\"pajaGa\"]=\"pajaGa\",\n [\"pajaH\"]=\"pajaH\",\n [\"pajaHandsUp\"]=\"pajaHandsUp\",\n [\"pajaHappy\"]=\"pajaHappy\",\n [\"pajaJoy\"]=\"pajaJoy\",\n [\"pajaL\"]=\"pajaL\",\n [\"pajaLaugh\"]=\"pajaLaugh\",\n [\"pajaKek\"]=\"pajaKek\",\n [\"pajaM\"]=\"pajaM\",\n [\"pajaMLADA\"]=\"pajaMLADA\",\n [\"pajaPepe\"]=\"pajaPepe\",\n [\"pajaPHP\"]=\"pajaPHP\", \n [\"pajaR\"]=\"pajaR\",\n [\"pajaS\"]=\"pajaS\",\n [\"pajaSad\"]=\"pajaSad\",\n [\"pajaThink\"]=\"pajaThink\",\n [\"pajaW\"]=\"pajaW\",\n [\"pajaWTH\"]=\"pajaWTH\",\n [\"pajaXD\"]=\"pajaXD\",\n\t-- Rhabby_v\n\t[\"rhabChamp\"]=\"rhabChamp\",\n\t[\"rhabDerp\"]=\"rhabDerp\",\n\t[\"rhabEZ\"]=\"rhabEZ\",\n\t[\"rhabFB\"]=\"rhabFB\",\n\t[\"rhabFG\"]=\"rhabFG\",\n\t[\"rhabHAHA\"]=\"rhabHAHA\",\n\t[\"rhabHYPE\"]=\"rhabHYPE\",\n\t[\"rhabL\"]=\"rhabL\",\n\t[\"rhabLOVE\"]=\"rhabLOVE\",\n\t[\"rhabMonka\"]=\"rhabMonka\",\n\t[\"rhabPLS\"]=\"rhabPLS\", \n\t[\"rhabRIP\"]=\"rhabRIP\",\n\t[\"rhabRLY\"]=\"rhabRLY\",\n\t[\"rhabSALT\"]=\"rhabSALT\",\n\t[\"rhabSyd\"]=\"rhabSyd\",\n\t[\"rhabSYDCHAMP\"]=\"rhabSYDCHAMP\",\n\t[\"rhabT\"]=\"rhabT\",\n\t[\"rhabToxic\"]=\"rhabToxic\",\n\t[\"rhabTRIG\"]=\"rhabTRIG\",\n\t[\"rhabWHABBY\"]=\"rhabWHABBY\",\n\t-- Lacari\n\t[\"lacWeird\"]=\"lacWeird\",\n\t[\"lacSW\"]=\"lacSW\",\n\t[\"lacS\"]=\"lacS\",\n\t[\"lacOkay\"]=\"lacOkay\",\n\t[\"lacLaugh\"]=\"lacLaugh\",\n\t[\"lacKEK\"]=\"lacKEK\",\n\t[\"lacJ1\"]=\"lacJ1\",\n\t[\"lacJ2\"]=\"lacJ2\",\n\t[\"lacBruh\"]=\"lacBruh\",\n\t[\"lacBaby\"]=\"lacBaby\",\n\t[\"lacAPERZ\"]=\"lacAPERZ\",\n\t[\"lacZ\"]=\"lacZ\",\n\t[\"lacL\"]=\"lacL\",\n\t-- Preachlfw\n\t[\"pgeBan\"]=\"pgeBan\",\n\t[\"pgeBen\"]=\"pgeBen\",\n\t[\"pgeBrian\"]=\"pgeBrian\",\n\t[\"pgeCheese\"]=\"pgeCheese\",\n\t[\"pgeChick\"]=\"pgeChick\",\n\t[\"pgeClub\"]=\"pgeClub\",\n\t[\"pgeCrisp\"]=\"pgeCrisp\",\n\t[\"pgeDrama\"]=\"pgeDrama\",\n\t[\"pgeEdge\"]=\"pgeEdge\",\n\t[\"pgeEmma\"]=\"pgeEmma\",\n\t[\"pgeFish\"]=\"pgeFish\",\n\t[\"pgeGhost\"]=\"pgeGhost\",\n\t[\"pgeHmm\"]=\"pgeHmm\",\n\t[\"pgeNem\"]=\"pgeNem\",\n\t[\"pgeNoob\"]=\"pgeNoob\",\n\t[\"pgeOhno\"]=\"pgeOhno\",\n\t[\"pgeOhno2\"]=\"pgeOhno2\",\n\t[\"pgePog\"]=\"pgePog\",\n\t[\"pgePug\"]=\"pgePug\",\n\t[\"pgeRay\"]=\"pgeRay\",\n\t[\"pgeScience\"]=\"pgeScience\",\n\t[\"pgeShame\"]=\"pgeShame\",\n\t[\"pgeSherry\"]=\"pgeSherry\",\n\t-- Alinity\n\t[\"natiAlinity\"]=\"natiAlinity\",\n\t[\"natiBroke\"]=\"natiBroke\",\n\t[\"natiBurp\"]=\"natiBurp\",\n\t[\"natiChamp\"]=\"natiChamp\",\n\t[\"natiCheers\"]=\"natiCheers\",\n\t[\"natiCreep\"]=\"natiCreep\",\n\t[\"natiFail\"]=\"natiFail\",\n\t[\"natiFocus\"]=\"natiFocus\",\n\t[\"natiG\"]=\"natiG\",\n\t[\"natiGG\"]=\"natiGG\",\n\t[\"natiHeart\"]=\"natiHeart\",\n\t[\"natiGun\"]=\"natiGun\",\n\t[\"natiHearty\"]=\"natiHearty\",\n\t[\"natiHi\"]=\"natiHi\",\n\t[\"natiHype\"]=\"natiHype\",\n\t[\"natiKnife\"]=\"natiKnife\",\n\t[\"natiL\"]=\"natiL\",\n\t[\"natiLike\"]=\"natiLike\",\n\t[\"natiLuna\"]=\"natiLuna\",\n\t[\"natiMaya\"]=\"natiMaya\",\n\t[\"natiMc\"]=\"natiMc\",\n\t[\"natiMeow\"]=\"natiMeow\",\n\t[\"natiMilow\"]=\"natiMilow\",\n\t[\"natiNova\"]=\"natiNova\",\n\t[\"natiPanic\"]=\"natiPanic\",\n\t[\"natiPls\"]=\"natiPls\",\n\t[\"natiPoop\"]=\"natiPoop\",\n\t[\"natiPoopy\"]=\"natiPoopy\",\n\t[\"natiPride\"]=\"natiPride\",\n\t[\"natiR\"]=\"natiR\",\n\t[\"natiRIP\"]=\"natiRIP\",\n\t[\"natiSalt\"]=\"natiSalt\",\n\t[\"natiScr\"]=\"natiScr\",\n\t[\"natiScream\"]=\"natiScream\",\n\t[\"natiSleeper\"]=\"natiSleeper\",\n\t[\"natiThink\"]=\"natiThink\",\n\t[\"natiThump\"]=\"natiThump\",\n\t[\"natiWUT\"]=\"natiWUT\",\n\t-- Sco\n\t[\"scoA\"]=\"scoA\",\n\t[\"scoBrave\"]=\"scoBrave\",\n\t[\"scoBro\"]=\"scoBro\",\n\t[\"scoCash\"]=\"scoCash\",\n\t[\"scoChair\"]=\"scoChair\",\n\t[\"scoChamp\"]=\"scoChamp\",\n\t[\"scoChest\"]=\"scoChest\",\n\t[\"scoCreep\"]=\"scoCreep\",\n\t[\"scoCringe\"]=\"scoCringe\",\n\t[\"scoDad\"]=\"scoDad\",\n\t[\"scoFat\"]=\"scoFat\",\n\t[\"scoFeels\"]=\"scoFeels\",\n\t[\"scoFG\"]=\"scoFG\",\n\t[\"scoGasm\"]=\"scoGasm\",\n\t[\"scoHey\"]=\"scoHey\",\n\t[\"scoHype\"]=\"scoHype\",\n\t[\"scoKappa\"]=\"scoKappa\",\n\t[\"scoL\"]=\"scoL\",\n\t[\"scoLUL\"]=\"scoLUL\",\n\t[\"scoMethod\"]=\"scoMethod\",\n\t[\"scoPapi\"]=\"scoPapi\",\n\t[\"scoPride\"]=\"scoPride\",\n\t[\"scoR\"]=\"scoR\",\n\t[\"scoSalt\"]=\"scoSalt\",\n\t[\"scoShield\"]=\"scoShield\",\n\t[\"scoSleeper\"]=\"scoSleeper\",\n\t[\"scoSpin\"]=\"scoSpin\",\n\t[\"scoThinking\"]=\"scoThinking\",\n\t[\"scoThirsty\"]=\"scoThirsty\",\n\t[\"scoW\"]=\"scoW\",\n\t[\"scoWipe\"]=\"scoWipe\",\n\t[\"scoWTF\"]=\"scoWTF\",\n\t-- GNeko\n\t[\"astrovrCry\"]=\"astrovrCry\",\n\t[\"astrovrRee\"]=\"astrovrRee\",\n\t[\"astrovrHi\"]=\"astrovrHi\",\n\t[\"Awoo\"]=\"Awoo\",\n\t[\"joshxknife\"]=\"joshxknife\",\n\t[\"joshxKnife\"]=\"joshxknife\",\n\t[\"MelonGun\"]=\"MelonGun\",\n\t[\"OwOMelon\"]=\"OwOMelon\",\n\t[\"CuteMelon\"]=\"CuteMelon\",\n\t[\"DrunkMelon\"]=\"DrunkMelon\",\n\t[\"GaspMelon\"]=\"GaspMelon\",\n\t[\"HyperHappyMelon\"]=\"HyperHappyMelon\",\n\t[\"HyperMelon\"]=\"HyperMelon\",\n\t[\"RageMelon\"]=\"RageMelon\",\n\t[\"ReeMelon\"]=\"ReeMelon\",\n\t[\"SadMelon\"]=\"SadMelon\",\n\t[\"SweatMelon\"]=\"SweatMelon\",\n\t[\"tyrissGlare\"]=\"tyrissGlare\",\n\t[\"tyrissGimme\"]=\"tyrissGimme\",\n\t[\"tyrissHeadpat\"]=\"tyrissHeadpat\",\n\t[\"tyrissLurk\"]=\"tyrissLurk\",\n\t[\"tyrissRee\"]=\"tyrissRee\",\n\t[\"tyrissRip\"]=\"tyrissRip\",\n\t[\"tyrissVictory\"]=\"tyrissVictory\",\n\t[\"tyrissBlush\"]=\"tyrissBlush\",\n\t[\"tyrissBoop\"]=\"tyrissBoop\",\n\t[\"tyrissComfy\"]=\"tyrissComfy\",\n\t[\"tyrissDisappointed\"]=\"tyrissDisappointed\",\n\t[\"tyrissGasp\"]=\"tyrissGasp\",\n\t[\"tyrissHeart\"]=\"tyrissHeart\",\n\t[\"tyrissHeartz\"]=\"tyrissHeartz\",\n\t[\"tyrissHi\"]=\"tyrissHi\",\n\t[\"tyrissHug\"]=\"tyrissHug\",\n\t[\"tyrissHyper\"]=\"tyrissHyper\",\n\t[\"tyrissLul\"]=\"tyrissLul\",\n\t[\"tyrissPout\"]=\"tyrissPout\",\n\t[\"tyrissSad\"]=\"tyrissSad\",\n\t[\"tyrissSmug\"]=\"tyrissSmug\",\n\t[\"tyrissSmugOwO\"]=\"tyrissSmugOwO\",\n\t[\"tyrissThink\"]=\"tyrissThink\",\n\t[\"tyrissS\"]=\"tyrissS\",\n\t[\"ZevvyBlush\"]=\"ZevvyBlush\",\n\t[\"02Yum\"]=\"02Yum\",\n\t[\"02Dab\"]=\"02Dab\",\n\t[\"02Stare\"]=\"02Stare\",\n\t[\":RIP:\"]=\":RIP:\",\n\t[\"Awoopls\"]=\"Awoopls\",\n\t[\"Yun\u00f5\"]=\"peepoBeer\",\n\t[\"Sh\u00e1nara\"]=\"peepoBeer\",\n\t[\"Punker\"]=\"peepoBeer\",\n\t[\":booty:\"]=\":booty:\",\n\t[\":Flake:\"]=\":booty:\",\n\t[\":HEH:\"]=\":HEH:\",\n\t-- Radiant\n\t[\"radiantAYAYA\"]=\"radiantAYAYA\",\n\t[\"radiantBlush\"]=\"radiantBlush\",\n\t[\"radiantBomb\"]=\"radiantBomb\",\n\t[\"radiantBoop\"]=\"radiantBoop\",\n\t[\"radiantComfy\"]=\"radiantComfy\",\n\t[\"radiantConcern\"]=\"radiantConcern\",\n\t[\"radiantCry\"]=\"radiantCry\",\n\t[\"radiantCult\"]=\"radiantCult\",\n\t[\"radiantCute\"]=\"radiantCute\",\n\t[\"radiantEEEEE\"]=\"radiantEEEEE\",\n\t[\"radiantEvil\"]=\"radiantEvil\",\n\t[\"radiantGimme\"]=\"radiantGimme\",\n\t[\"radiantGun\"]=\"radiantGun\",\n\t[\"radiantHmm\"]=\"radiantHmm\",\n\t[\"radiantISee\"]=\"radiantISee\",\n\t[\"radiantJam\"]=\"radiantJam\",\n\t[\"radiantKek\"]=\"radiantKek\",\n\t[\"radiantLag\"]=\"radiantLag\",\n\t[\"radiantLick\"]=\"radiantLick\",\n\t[\"radiantLurk\"]=\"radiantLurk\",\n\t[\"radiantNom\"]=\"radiantNom\",\n\t[\"radiantOmega\"]=\"radiantOmega\",\n\t[\"radiantOmegaOWO\"]=\"radiantOmegaOWO\",\n\t[\"radiantOwO\"]=\"radiantOwO\",\n\t[\"radiantPat\"]=\"radiantPat\",\n\t[\"radiantPepega\"]=\"radiantPepega\",\n\t[\"radiantPog\"]=\"radiantPog\",\n\t[\"radiantPout\"]=\"radiantPout\",\n\t[\"radiantREE\"]=\"radiantREE\",\n\t[\"radiantSalute\"]=\"radiantSalute\",\n\t[\"radiantScared\"]=\"radiantScared\",\n\t[\"radiantShrug\"]=\"radiantShrug\",\n\t[\"radiantSip\"]=\"radiantSip\",\n\t[\"radiantSmile\"]=\"radiantSmile\",\n\t[\"radiantSmileW\"]=\"radiantSmileW\",\n\t[\"radiantSmug\"]=\"radiantSmug\",\n\t[\"radiantSnoze\"]=\"radiantSnoze\",\n\t[\"radiantStare\"]=\"radiantStare\",\n\t[\"radiantTOS\"]=\"radiantTOS\",\n\t[\"radiantWave\"]=\"radiantWave\",\n\t[\"radiantWeird\"]=\"radiantWeird\",\n\t-- xQc\n\t[\"xqcPlot\"]=\"xqcM\",\n\t[\"xqcM\"]=\"xqcM\",\n\t[\"xqcRage\"]=\"xqcRage\",\n\t[\"xqcArm1\"]=\"xqcArm1\",\n\t[\"xqcArm2\"]=\"xqcArm2\",\n\t[\"xqcDab\"]=\"xqcDab\",\n\t[\"xqcEZ\"]=\"xqcEZ\",\n\t[\"xqcGun\"]=\"xqcGun\",\n\t[\"xqcH\"]=\"xqcH\",\n\t[\"xqcHug\"]=\"xqcHug\",\n\t[\"xqcHugged\"]=\"xqcHugged\",\n\t[\"xqcJuice\"]=\"xqcJuice\",\n\t[\"xqcLook\"]=\"xqcLook\",\n\t[\"xqcMood\"]=\"xqcMood\",\n\t[\"xqcStory\"]=\"xqcStory\",\n\t[\"xqcT\"]=\"xqcT\",\n\t[\"xqcWut\"]=\"xqcWut\",\n\t[\"xqcY\"]=\"xqcY\",\n\t[\"xqcA\"]=\"xqcA\",\n\t[\"xqcB\"]=\"xqcB\",\n\t[\"xqcCarried\"]=\"xqcCarried\",\n\t[\"xqcE\"]=\"xqcE\",\n\t[\"xqcF\"]=\"xqcF\",\n\t[\"xqcFace\"]=\"xqcFace\",\n\t[\"xqcFast\"]=\"xqcFast\",\n\t[\"xqcGreet\"]=\"xqcGreet\",\n\t[\"xqcHAhaa\"]=\"xqcHAhaa\",\n\t[\"xqcHands\"]=\"xqcHands\",\n\t[\"xqcHYPERF\"]=\"xqcHYPERF\",\n\t[\"xqcJ\"]=\"xqcJ\",\n\t[\"xqcKek\"]=\"xqcKek\",\n\t[\"xqcL\"]=\"xqcL\",\n\t[\"xqcLeather\"]=\"xqcLeather\",\n\t[\"xqcLie\"]=\"xqcLie\",\n\t[\"xqcN\"]=\"xqcN\",\n\t[\"xqcO\"]=\"xqcO\",\n\t[\"xqcOld\"]=\"xqcOld\",\n\t[\"xqcP\"]=\"xqcP\",\n\t[\"xqcPoppin\"]=\"xqcPoppin\",\n\t[\"xqcPrime\"]=\"xqcPrime\",\n\t[\"xqcQ\"]=\"xqcQ\",\n\t[\"xqcR\"]=\"xqcR\",\n\t[\"xqcS\"]=\"xqcS\",\n\t[\"xqcSad\"]=\"xqcSad\",\n\t[\"xqcSkip\"]=\"xqcSkip\",\n\t[\"xqcSleeper\"]=\"xqcSleeper\",\n\t[\"xqcSmile\"]=\"xqcSmile\",\n\t[\"xqcSmile2\"]=\"xqcSmile2\",\n\t[\"xqcSmug\"]=\"xqcSmug\",\n\t[\"xqcSword\"]=\"xqcSword\",\n\t[\"xqcThonk\"]=\"xqcThonk\",\n\t[\"xqcTOS\"]=\"xqcTOS\",\n\t[\"xqcTree\"]=\"xqcTree\",\n\t[\"xqcWar\"]=\"xqcWar\",\n\t-- Guild Emotes\n\t[\"Snakers\"]=\"Snakers\",\n\t[\"SkoopRage\"]=\"SkoopRage\",\n\t[\"skoopas\"]=\"skoopas\",\n\t[\"SamWise\"]=\"SamWise\",\n\t[\"samshades\"]=\"samshades\",\n\t[\"SamSafe\"]=\"SamSafe\",\n\t[\"SamS\"]=\"SamS\",\n\t[\"Priotais\"]=\"Priotais\",\n\t[\"PreachChamp\"]=\"PreachChamp\",\n\t[\"FeelsPewMan\"]=\"FeelsPewMan\",\n\t[\"dudeman\"]=\"dudeman\",\n\t[\"Chibol\"]=\"Chibol\",\n\t[\"Cakers\"]=\"Cakers\",\n\t[\"BatriSam\"]=\"BatriSam\",\n\t[\"BaileysDude\"]=\"BaileysDude\",\n\t-- Guild Emotes\n\t[\"jerryWhat\"]=\"jerryWhat\",\n\t[\":cringe:\"]=\"jerryWhat\",\n\t[\"Pog\"]=\"Pog1\",\n\t[\"pog\"]=\"Pog1\",\n\t[\"PogU\"]=\"PogU\",\n\t[\"pOg\"]=\"pOg\",\n\t[\"PogeyU\"]=\"PogeyU\",\n\t[\"Pogey\"]=\"Pogey\",\n\t[\"Poghurt\"]=\"Poghurt\",\n\t[\"OhYouSee\"]=\"OhYouSee\",\n\t[\"OhISee\"]=\"OhISee\",\n\t[\"KKool\"]=\"KKool\",\n\t[\"TriKool\"]=\"TriKool\",\n\t[\"TriGold\"]=\"TriGold\",\n\t[\"OMEGATriHard\"]=\"OMEGATriHard\",\n\t[\"ExitG\"]=\"ExitG\",\n\t[\"Heartato\"]=\"Heartato\",\n\t[\"HeartatoW\"]=\"HeartatoW\",\n\t[\"3Head\"]=\"3Head\",\n\t[\"cmonBruv\"]=\"cmonBruv\",\n\t[\"5Head\"]=\"5Head\",\n\t[\"asmonPower\"]=\"asmonPower\",\n\t[\"BaconEffect\"]=\"BaconEffect\",\n\t[\"BearDab\"]=\"BearDab\",\n\t[\"PBear\"]=\"PBear\",\n\t[\"FeralS\"]=\"FeralS\",\n\t[\"Shelia\"]=\"Shelia\",\n\t[\"Lizardman\"]=\"Lizardman\",\n\t[\"HammersArk\"]=\"HammersArk\",\n\t[\"Arkus\"]=\"HammersArk\",\n\t[\"HYPERDANSGAME\"]=\"HYPERDANSGAME\",\n\t[\"HYPERDANSGAMEW\"]=\"HYPERDANSGAMEW\",\n\t[\"KKonaW\"]=\"KKonaW\",\n\t[\"kk0na\"]=\"kk0na\",\n\t[\"LULWW\"]=\"LULWW\",\n\t[\"LULChamp\"]=\"LULChamp\",\n\t[\"feelsblob\"]=\"feelsblob\",\n\t[\"MaN\"]=\"MaN\",\n\t[\"VaN\"]=\"VaN\",\n\t[\"NaM\"]=\"NaM\",\n\t[\"danebrain\"]=\"danebrain\",\n\t[\":danebrain:\"]=\"danebrain\",\n\t[\"peepoPog\"]=\"peepoPog\",\n\t[\"PikaWOW\"]=\"PikaWOW\",\n\t[\"WeirdChamp\"]=\"WeirdChamp\",\n\t[\"StareChamp\"]=\"StareChamp\",\n\t[\"OkayChamp\"]=\"OkayChamp\",\n\t[\"SillyChamp\"]=\"SillyChamp\",\n\t[\"CrazyChamp\"]=\"CrazyChamp\",\n\t[\"EZChamp\"]=\"EZChamp\",\n\t[\"WutChamp\"]=\"WutChamp\",\n\t[\"SadChamp\"]=\"SadChamp\",\n\t[\"DisappointChamp\"]=\"DisappointChamp\",\n\t[\"MaldChamp\"]=\"MaldChamp\",\n\t[\"ChampU\"]=\"ChampU\",\n\t[\"ChagU\"]=\"ChagU\",\n\t[\"CHAMPERS\"]=\"CHAMPERS\",\n\t[\"pepeAx\"]=\"pepeAx\",\n\t[\"peepoSad\"]=\"peepoSad\",\n\t[\"peepoHappy\"]=\"peepoHappy\",\n\t[\"WidePeepoHappy\"]=\"WidePeepoHappy\",\n\t[\"WidePeepoSad\"]=\"WidePeepoSad\",\n\t[\"widepeepoHappy\"]=\"WidePeepoHappy\",\n\t[\"widepeepoSad\"]=\"WidePeepoSad\",\n\t[\"WideHard\"]=\"WideHard\",\n\t[\"TriEasy\"]=\"TriEasy\",\n\t[\"OMEGAWOW\"]=\"OMEGAWOW\",\n\t[\"noxSorry\"]=\"noxSorry\",\n\t[\"FeelsDankMan\"]=\"FeelsDankMan\",\n\t[\"AMAZINGA\"]=\"AMAZINGA\",\n\t[\"duckieW\"]=\"duckieW\",\n\t[\"4Mansion\"]=\"4Mansion\",\n\t[\":overpaid:\"]=\"0Head\",\n\t[\"0Head\"]=\"0Head\",\n\t[\"4HEader\"]=\"4HEader\",\n\t[\"4House\"]=\"4House\",\n\t[\"2Head\"]=\"2Head\",\n\t[\"1Head\"]=\"1Head\",\n\t[\"3Lass\"]=\"3Lass\",\n\t[\"4Weird\"]=\"4Weird\",\n\t[\"4WeirdW\"]=\"4WeirdW\",\n\t[\"espanLOL\"]=\"espanLOL\",\n\t[\"FeelsJewMan\"]=\"FeelsJMan\",\n\t[\"FJM\"]=\"FeelsJMan\",\n\t[\"Tamir\"]=\"FeelsJMan\",\n\t[\"ChickenHard2\"]=\"ChickenR\",\n\t[\"ChickenHard1\"]=\"ChickenL\",\n\t[\"ChickenR\"]=\"ChickenR\",\n\t[\"ChickenL\"]=\"ChickenL\",\n\t[\"FeelsTankMan\"]=\"FeelsTankMan\",\n\t[\"TriHalf1\"]=\"TriHalf1\",\n\t[\"TriHalf2\"]=\"TriHalf2\",\n\t[\"TriSoft\"]=\"TriSoft\",\n\t[\"TriBook\"]=\"TriBook\",\n\t[\"5Hard\"]=\"5Hard\",\n\t[\"WULL\"]=\"WULL\",\n\t[\"savixHappy\"]=\"savixHappy\",\n\t[\"OMEGASP\"]=\"DD:\",\n\t[\"DD:\"]=\"DD:\",\n\t[\"Frostbitchyes\"]=\"Frostbitchyes\",\n\t[\"cmoN\"]=\"cmoN\",\n\t[\"PogYou\"]=\"PogYou\",\n\t[\"PogMe\"]=\"PogMe\",\n\t[\"Boomer\"]=\"Boomer\",\n\t[\"WeirdBruh\"]=\"WeirdBruh\",\n\t[\"Pho\"]=\"Pho\",\n\t[\"DKKona\"]=\"DKKona\",\n\t[\"ANGERY\"]=\"ANGERY\",\n\t[\"ANGERYW\"]=\"ANGERYW\",\n\t[\"ANGERYWW\"]=\"ANGERYW\",\n\t[\"ELE\"]=\"ELE\",\n\t[\"TriHardS\"]=\"TriHardS\",\n\t[\"WhiteKnight\"]=\"WhiteKnight\",\n\t[\"BlackKnight\"]=\"BlackKnight\",\n\t[\"Sana\"]=\"Gerdlerk1\",\n\t[\"Ohyo\"]=\"Gerdlerk2\",\n\t[\"Cheesekimbap\"]=\"Gerdlerk3\",\n\t[\"Nosananolife\"]=\"Gerdlerk4\",\n\t[\"gachiSLAP\"]=\"gachiSLAP\",\n\t[\"gachiSLAPW\"]=\"gachiSLAPW\",\n\t[\"KKonductor\"]=\"KKonductor\",\n\t[\"HappyMerchant\"]=\"HappyMerchant\",\n\t[\":just:\"]=\":just:\",\n\t[\":tip:\"]=\":tip:\",\n\t[\":trash:\"]=\":trash:\",\n\t[\"HyperAngryMerchant\"]=\"HyperAngryMerchant\",\n\t[\"PPirate\"]=\"PPirate\",\n\t[\"PainsChamp\"]=\"PainsChamp\",\n\t[\"PogClappa\"]=\"PogClappa\",\n\t[\"Wut\"]=\"Wut\",\n\t[\"TriHeart\"]=\"TriHeart\",\n\t[\"TriAngle\"]=\"TriAngle\",\n\t[\"IceHard\"]=\"IceHard\",\n\t[\"ZOINKS\"]=\"ZOINKS\",\n\t[\":bench:\"]=\":bench:\",\n\t[\"StareBruh\"]=\"StareBruh\",\n\t[\"AMAZIN\"]=\"AMAZIN\",\n\t[\"cmoB\"]=\"cmoB\",\n\t[\"cmoV\"]=\"cmoV\",\n\t[\"KekW\"]=\"KEKW\",\n\t[\"KEKW\"]=\"KEKW\",\n\t[\"kekw\"]=\"KEKW\",\n\t[\"kekW\"]=\"KEKW\",\t\n\t[\"KekWW\"]=\"KEKWW\",\n\t[\"KEKWW\"]=\"KEKWW\",\n\t[\"kekww\"]=\"KEKWW\",\n\t[\"kekWW\"]=\"KEKWW\",\n\t[\"sadKEK\"]=\"KEKSad\",\n\t[\"KEKSad\"]=\"KEKSad\",\n\t[\"kekweird\"]=\"KEKWeird\",\n\t[\"KEKWeird\"]=\"KEKWeird\",\n\t[\"hoboW\"]=\"hoboW\",\n\t[\"Yussi\"]=\"hoboW\",\n\t[\"BroKiss\"]=\"BroKiss\",\n\t[\"SeionGay\"]=\"BroKiss\",\n\t[\"PogWarts\"]=\"PogWarts\",\n\t[\"Pogwarts\"]=\"PogWarts\",\n\t[\"PogWartsW\"]=\"PogWartsW\",\n\t[\"PogwartsW\"]=\"PogWartsW\",\n\t[\"POGGAROO\"]=\"POGGAROO\",\n\t[\"HammersNoArk\"]=\"HammersNoArk\",\n\t[\"Arkbrew\"]=\"HammersNoArk\",\n\t[\"arkbrew\"]=\"HammersNoArk\",\n\t[\"FLOPPERS\"]=\"FLOPPERS\",\n\t[\":Kraftbereich:\"]=\":Kraftbereich:\",\n\t[\":kraftbereich:\"]=\":Kraftbereich:\",\n\t[\"Saiko\"]=\"Saiko\",\n\t[\":xd:\"]=\":xd:\",\n\t[\"SaladPepege\"]=\"SaladPepega\",\n\t[\"Joy2\"]=\"Joy2\",\n\t[\"Joy3\"]=\"Joy3\",\n\t[\"joy2\"]=\"Joy2\",\n\t[\"joy3\"]=\"Joy3\",\n\t[\":joy2:\"]=\"Joy2\",\n\t[\":joy3:\"]=\"Joy3\",\n\t[\"DogeKek\"]=\"DogeKek\",\n\t[\"TriHardo\"]=\"TriHardo\",\n\t[\"WideHardo\"]=\"WideHardo\",\n\t[\"4Shrug\"]=\"4Shrug\",\n\t[\"OldChamp\"]=\"OldChamp\",\n\t[\"PotatoCute\"]=\"PotatoCute\",\n\t[\"PotatoArmy\"]=\"PotatoArmy\",\n\t[\"PATHETIC\"]=\"PATHETIC\",\n\t[\"AYAYARR\"]=\"AYAYARR\",\n\t[\"TriPeek\"]=\"TriPeek\",\n\t[\"BOGGED\"]=\"BOGGED\",\n\t[\"cmonEyes\"]=\"cmonEyes\",\n\t[\"CrawgTusks\"]=\"CrawgTusks\",\n\t[\"Geti'ikku\"]=\"Geti'ikku\",\n\t[\":welp:\"]=\":welp:\",\n\t[\"lethink\"]=\"lethink\",\n\t[\"Bwonsambee\"]=\"Bwonsambee\",\n\t[\"Chomp\"]=\"Chomp\",\n\t[\"AYAYAWeird\"]=\"AYAYAWeird\",\n\t[\"lethink\"]=\"lethink\",\n\t[\"lethink\"]=\"lethink\",\n\t[\":peepoRCU:\"]=\"peepoRCU\",\n\t-- ShaBooZey\n\t[\"kkOna\"]=\"kkOna\",\n\t[\"sbzyAGAIN\"]=\"sbzyAGAIN\",\n\t[\"sbzyAloydeal\"]=\"sbzyAloydeal\",\n\t[\"sbzyAloy\"]=\"sbzyAloy\",\n\t[\"sbzyArt\"]=\"sbzyArt\",\n\t[\"sbzyBaeloy\"]=\"sbzyBaeloy\",\n\t[\"sbzyBuffalo\"]=\"sbzyBuffalo\",\n\t[\"sbzyBut\"]=\"sbzyBut\",\n\t[\"sbzyCasual\"]=\"sbzyCasual\",\n\t[\"sbzyChicken\"]=\"sbzyChicken\",\n\t[\"sbzyChimp\"]=\"sbzyChimp\",\n\t[\"sbzyClif\"]=\"sbzyClif\",\n\t[\"sbzyCommunity\"]=\"sbzyCommunity\",\n\t[\"sbzyCool\"]=\"sbzyCool\",\n\t[\"sbzyDeal\"]=\"sbzyDeal\",\n\t[\"sbzyDerp\"]=\"sbzyDerp\",\n\t[\"sbzyDew\"]=\"sbzyDew\",\n\t[\"sbzyDIE\"]=\"sbzyDIE\",\n\t[\"sbzyFab\"]=\"sbzyFab\",\n\t[\"sbzyFeedMe\"]=\"sbzyFeedMe\",\n\t[\"sbzyGnat\"]=\"sbzyGnat\",\n\t[\"sbzyHog\"]=\"sbzyHog\",\n\t[\"sbzyHoi\"]=\"sbzyHoi\",\n\t[\"sbzyHook\"]=\"sbzyHook\",\n\t[\"sbzyI\"]=\"sbzyI\",\n\t[\"sbzyIce\"]=\"sbzyIce\",\n\t[\"sbzyJesse\"]=\"sbzyJesse\",\n\t[\"sbzyKappa\"]=\"sbzyKappa\",\n\t[\"sbzyKrs10\"]=\"sbzyKrs10\",\n\t[\"Mirellis\"]=\"ForeverAlone\",\n\t[\"mirellis\"]=\"ForeverAlone\",\n\t[\"sbzyLadies\"]=\"sbzyLadies\",\n\t[\"sbzyLotus\"]=\"sbzyLotus\",\n\t[\"sbzyLuv\"]=\"sbzyLuv\",\n\t[\"sbzyManlee\"]=\"sbzyManlee\",\n\t[\"sbzyMistake\"]=\"sbzyMistake\",\n\t[\"sbzyMoozy\"]=\"sbzyMoozy\",\n\t[\"sbzyMuppet\"]=\"sbzyMuppet\",\n\t[\"sbzyMURK\"]=\"sbzyMURK\",\n\t[\"sbzyMurkeh\"]=\"sbzyMurkeh\",\n\t[\"sbzyNom\"]=\"sbzyNom\",\n\t[\"sbzyNotMei\"]=\"sbzyNotMei\",\n\t[\"sbzyNotThatDrunk\"]=\"sbzyNotThatDrunk\",\n\t[\"sbzyOmg\"]=\"sbzyOmg\",\n\t[\"sbzyOrc\"]=\"sbzyOrc\",\n\t[\"sbzyPB\"]=\"sbzyPB\",\n\t[\"sbzyPLEAS\"]=\"sbzyPLEAS\",\n\t[\"sbzyReky\"]=\"sbzyReky\",\n\t[\"sbzyS\"]=\"sbzyS\",\n\t[\"sbzySays\"]=\"sbzySays\",\n\t[\"sbzyStitches\"]=\"sbzyStitches\",\n\t[\"sbzySuure\"]=\"sbzySuure\",\n\t[\"sbzySwole\"]=\"sbzySwole\",\n\t[\"sbzyWaifu\"]=\"sbzyWaifu\",\n\t[\"sbzyWat\"]=\"sbzyWat\",\n\t[\"sbzyWipe\"]=\"sbzyWipe\",\n\t[\"sbzyZen\"]=\"sbzyZen\",\n\t[\"Lithieel\"]=\"Pepega\",\n\t[\"lithieel\"]=\"Pepega\",\n\t-- Slootbag\n\t[\"slootyAfro\"]=\"slootyAfro\",\n\t[\"slootyBageldan\"]=\"slootyBageldan\",\n\t[\"slootyCat1\"]=\"slootyCat1\",\n\t[\"slootyCat2\"]=\"slootyCat2\",\n\t[\"slootyCool\"]=\"slootyCool\",\n\t[\"slootyCreep\"]=\"slootyCreep\",\n\t[\"slootyDog\"]=\"slootyDog\",\n\t[\"slootyDrink\"]=\"slootyDrink\",\n\t[\"slootyFistLove\"]=\"slootyFistLove\",\n\t[\"slootyFuture\"]=\"slootyFuture\",\n\t[\"slootyGasm\"]=\"slootyGasm\",\n\t[\"slootyHype\"]=\"slootyHype\",\n\t[\"slootyJo\"]=\"slootyJo\",\n\t[\"slootyKappa\"]=\"slootyKappa\",\n\t[\"slootyLeave\"]=\"slootyLeave\",\n\t[\"slootyLeia\"]=\"slootyLeia\",\n\t[\"slootyLogo\"]=\"slootyLogo\",\n\t[\"slootyLoot\"]=\"slootyLoot\",\n\t[\"slootyLUL\"]=\"slootyLUL\",\n\t[\"slootyMad\"]=\"slootyMad\",\n\t[\"slootyMilk\"]=\"slootyMilk\",\n\t[\"slootyNerd\"]=\"slootyNerd\",\n\t[\"slootyPog\"]=\"slootyPog\",\n\t[\"slootyQuote\"]=\"slootyQuote\",\n\t[\"slootyRigged\"]=\"slootyRigged\",\n\t[\"slootyRip\"]=\"slootyRip\",\n\t[\"slootyShard\"]=\"slootyShard\",\n\t[\"slootySRN\"]=\"slootySRN\",\n\t[\"slootyWalrus\"]=\"slootyWalrus\",\n\t[\"Gelor\"]=\"PepeKing\",\n\t[\"Giann\"]=\"peepoKing\",\n\t[\"Fonikos\"]=\"FeelsShadowMan\",\n\t[\"Spepega\"]=\"FeelsShadowMan\",\n\t[\"FeelsShadowMan\"]=\"FeelsShadowMan\",\n\t[\"Jancarlo\"]=\"JanCarlo\",\n\t[\"Lazor\"]=\"PepeKing\",\n\t[\"Lifevsdemon\"]=\"PepeScience\",\n\t[\"Lifevsnature\"]=\"suzeOK\",\n\t[\"EZGiggle\"]=\"EZGiggle\",\n\t[\"Abejo\"]=\"EZGiggle\",\n\t[\"Abejodh\"]=\"EZGiggle\",\n\t[\"PepeBalkan\"]=\"Bic\",\n\t[\"BicT\"]=\"Bic\",\n\t[\"BicT\"]=\"Bic\",\n\t[\"PepeBalkan\"]=\"PepeRuski\",\n\t[\"PepeRuski\"]=\"PepeRuski\",\n\t[\"PepeSoldier\"]=\"PepeSoldier\",\n\t[\"PepeBalls\"]=\"PepeBalls\",\n\t[\"pepeRuski\"]=\"PepeRuski\",\n\t[\"pepeSoldier\"]=\"PepeSoldier\",\n\t[\"pepeBalls\"]=\"PepeBalls\",\n\t[\"pepeBalkan\"]=\"PepeRuski\",\n\t[\"JuggyT\"]=\"TiredW\",\n\t-- sodapoppin\n\t[\"soda25\"]=\"soda25\",\n\t[\"sodaBLEH\"]=\"sodaBLEH\",\n\t[\"sodaBRUH\"]=\"sodaBRUH\",\n\t[\"sodaC\"]=\"sodaC\",\n\t[\"sodaCHICKEN\"]=\"sodaCHICKEN\",\n\t[\"sodaCHU\"]=\"sodaCHU\",\n\t[\"sodaCOOL\"]=\"sodaCOOL\",\n\t[\"sodaDS\"]=\"sodaDS\",\n\t[\"sodaEMOJI\"]=\"sodaEMOJI\",\n\t[\"sodaEZ\"]=\"sodaEZ\",\n\t[\"sodaFeels\"]=\"sodaFeels\",\n\t[\"sodaFF\"]=\"sodaFF\",\n\t[\"sodaG\"]=\"sodaG\",\n\t[\"sodaGASP\"]=\"sodaGASP\",\n\t[\"sodaHeyGuys\"]=\"sodaHeyGuys\",\n\t[\"sodaHi\"]=\"sodaHi\",\n\t[\"sodaHP\"]=\"sodaHP\",\n\t[\"sodaJ\"]=\"sodaJ\",\n\t[\"sodaKKona\"]=\"sodaKKona\",\n\t[\"sodaL\"]=\"sodaL\",\n\t[\"sodaLOUDER\"]=\"sodaLOUDER\",\n\t[\"sodaLUL\"]=\"sodaLUL\",\n\t[\"sodaMicMuted\"]=\"sodaMicMuted\",\n\t[\"sodaMONK\"]=\"sodaMONK\",\n\t[\"sodaNG\"]=\"sodaNG\",\n\t[\"sodaNOPE\"]=\"sodaNOPE\",\n\t[\"sodaNUGGET\"]=\"sodaNUGGET\",\n\t[\"sodaPEPE\"]=\"sodaPEPE\",\n\t[\"sodaPUKE\"]=\"sodaPUKE\",\n\t[\"sodaRAGE\"]=\"sodaRAGE\",\n\t[\"sodaREE\"]=\"sodaREE\",\n\t[\"sodaRIOT\"]=\"sodaRIOT\",\n\t[\"sodaS\"]=\"sodaS\",\n\t[\"sodaSMUG\"]=\"sodaSMUG\",\n\t[\"sodaSO\"]=\"sodaSO\",\n\t[\"sodaTHINKING\"]=\"sodaTHINKING\",\n\t[\"sodaThump\"]=\"sodaThump\",\n\t[\"sodaTOUCAN\"]=\"sodaTOUCAN\",\n\t[\"sodaW\"]=\"sodaW\",\n\t[\"sodaWat\"]=\"sodaWat\",\n\t[\"sodaWipz\"]=\"sodaWipz\",\n\t[\"sodaWUT\"]=\"sodaWUT\",\n\t[\"Nirthel\"]=\"Nirthel\",\n\t[\"nirthel\"]=\"nirthel\",\n\t[\"Jacie\"]=\"emPoop\",\n\t[\"jacie\"]=\"emPoop\",\n\t-- Summit1g\n\t[\"sum1g\"]=\"sum1g\",\n\t[\"sum100\"]=\"sum100\",\n\t[\"sumAbby\"]=\"sumAbby\",\n\t[\"sumAyo\"]=\"sumAyo\",\n\t[\"sumBag\"]=\"sumBag\",\n\t[\"sumBlind\"]=\"sumBlind\",\n\t[\"sumBuhblam\"]=\"sumBuhblam\",\n\t[\"sumCrash\"]=\"sumCrash\",\n\t[\"sumCreeper\"]=\"sumCreeper\",\n\t[\"sumDerp\"]=\"sumDerp\",\n\t[\"sumDesi\"]=\"sumDesi\",\n\t[\"sumFail\"]=\"sumFail\",\n\t[\"sumFood\"]=\"sumFood\",\n\t[\"sumFuse\"]=\"sumFuse\",\n\t[\"sumGasm\"]=\"sumGasm\",\n\t[\"sumGG\"]=\"sumGG\",\n\t[\"sumGodflash\"]=\"sumGodflash\",\n\t[\"sumHassan\"]=\"sumHassan\",\n\t[\"sumHassin\"]=\"sumHassin\",\n\t[\"sumHorse\"]=\"sumHorse\",\n\t[\"sumLove\"]=\"sumLove\",\n\t[\"sumMolly\"]=\"sumMolly\",\n\t[\"sumOhface\"]=\"sumOhface\",\n\t[\"sumOrc\"]=\"sumOrc\",\n\t[\"sumOreo\"]=\"sumOreo\",\n\t[\"sumPluto\"]=\"sumPluto\",\n\t[\"sumPotato\"]=\"sumPotato\",\n\t[\"sumPuzzle\"]=\"sumPuzzle\",\n\t[\"sumRage\"]=\"sumRage\",\n\t[\"sumRekt\"]=\"sumRekt\",\n\t[\"sumRip\"]=\"sumRip\",\n\t[\"sumStache\"]=\"sumStache\",\n\t[\"sumSuh\"]=\"sumSuh\",\n\t[\"sumSwag\"]=\"sumSwag\",\n\t[\"sumThump\"]=\"sumThump\",\n\t[\"sumUp\"]=\"sumUp\",\n\t[\"sumVac\"]=\"sumVac\",\n\t[\"sumVac2\"]=\"sumVac2\",\n\t[\"sumW\"]=\"sumW\",\n\t[\"sumWhat\"]=\"sumWhat\",\n\t[\"sumWTF\"]=\"sumWTF\",\n\t[\"sumWut\"]=\"sumWut\",\n\t-- TimTheTatman\n\t[\"tat1\"]=\"tat1\",\n\t[\"tat100\"]=\"tat100\",\n\t[\"tatAFK\"]=\"tatAFK\",\n\t[\"tatBlackpaul\"]=\"tatBlackpaul\",\n\t[\"tatBlind\"]=\"tatBlind\",\n\t[\"tatBURP\"]=\"tatBURP\",\n\t[\"tatCarried\"]=\"tatCarried\",\n\t[\"tatChair\"]=\"tatChair\",\n\t[\"tatCry\"]=\"tatCry\",\n\t[\"tatDab\"]=\"tatDab\",\n\t[\"tatFat\"]=\"tatFat\",\n\t[\"tatFeels\"]=\"tatFeels\",\n\t[\"tatFood\"]=\"tatFood\",\n\t[\"tatGlam\"]=\"tatGlam\",\n\t[\"tatH\"]=\"tatH\",\n\t[\"tatHype\"]=\"tatHype\",\n\t[\"tatJK\"]=\"tatJK\",\n\t[\"tatKevin\"]=\"tatKevin\",\n\t[\"tatKevinH\"]=\"tatKevinH\",\n\t[\"tatKevinM\"]=\"tatKevinM\",\n\t[\"tatKevinS\"]=\"tatKevinS\",\n\t[\"tatLit\"]=\"tatLit\",\n\t[\"tatLove\"]=\"tatLove\",\n\t[\"tatMesa\"]=\"tatMesa\",\n\t[\"tatMlg\"]=\"tatMlg\",\n\t[\"tatMonster\"]=\"tatMonster\",\n\t[\"tatNOLINKS\"]=\"tatNOLINKS\",\n\t[\"tatOshi\"]=\"tatOshi\",\n\t[\"tatPepper\"]=\"tatPepper\",\n\t[\"tatPik\"]=\"tatPik\",\n\t[\"tatPleb\"]=\"tatPleb\",\n\t[\"tatPotato\"]=\"tatPotato\",\n\t[\"tatPreach\"]=\"tatPreach\",\n\t[\"tatPretty\"]=\"tatPretty\",\n\t[\"tatPrime\"]=\"tatPrime\",\n\t[\"tatRiot\"]=\"tatRiot\",\n\t[\"tatRip\"]=\"tatRip\",\n\t[\"tatS\"]=\"tatS\",\n\t[\"tatSellout\"]=\"tatSellout\",\n\t[\"tatSMUG\"]=\"tatSMUG\",\n\t[\"tatSuh\"]=\"tatSuh\",\n\t[\"tatThink\"]=\"tatThink\",\n\t[\"tatTopD\"]=\"tatTopD\",\n\t[\"tatToxic\"]=\"tatToxic\",\n\t[\"tatTriggered\"]=\"tatTriggered\",\n\t[\"tatW\"]=\"tatW\",\n\t[\"tatWeeb\"]=\"tatWeeb\",\n\t[\"tatWelcome\"]=\"tatWelcome\",\n\t[\"tatWHIZZ\"]=\"tatWHIZZ\",\n\t[\"tatY\"]=\"tatY\",\n\t-- Trainwreckstv\n\t[\"squadBNB\"]=\"squadBNB\",\n\t[\"squadF\"]=\"squadF\",\n\t[\"squadG\"]=\"squadG\",\n\t[\"squadH\"]=\"squadH\",\n\t[\"squadHey\"]=\"squadHey\",\n\t[\"squadJOBD\"]=\"squadJOBD\",\n\t[\"squadKP\"]=\"squadKP\",\n\t[\"squadNation\"]=\"squadNation\",\n\t[\"squadO\"]=\"squadO\",\n\t[\"squadOh\"]=\"squadOh\",\n\t[\"squadS\"]=\"squadS\",\n\t[\"squadSheep\"]=\"squadSheep\",\n\t[\"squadSpeech\"]=\"squadSpeech\",\n\t[\"squadSquad\"]=\"squadSquad\",\n\t[\"squadTH\"]=\"squadTH\",\n\t[\"squadW\"]=\"squadW\",\n\t[\"squadWW\"]=\"squadWW\",\n\t[\"peepoSquad\"]=\"peepoSquad\",\n\t[\"peepoSquadW\"]=\"peepoSquadW\",\n\t[\"widepeepoSquad\"]=\"widepeepoSquad\",\n\t[\"squadHYPERW\"]=\"squadHYPERW\",\n\t[\"squadHYPERWW\"]=\"squadHYPERWW\",\n\t[\"squad4\"]=\"squad4\",\n\t[\"squadBrug\"]=\"squadBrug\",\n\t[\"squadChef\"]=\"squadChef\",\n\t[\"squadD\"]=\"squadD\",\n\t[\"squadGA\"]=\"squadGA\",\n\t[\"squadHmm\"]=\"squadHmm\",\n\t[\"squadHYPERS\"]=\"squadHYPERS\",\n\t[\"squadK\"]=\"squadK\",\n\t[\"squadKK\"]=\"squadKK\",\n\t[\"squadL\"]=\"squadL\",\n\t[\"squadLaugh\"]=\"squadLaugh\",\n\t[\"squadLUL\"]=\"squadLUL\",\n\t[\"squadM\"]=\"squadM\",\n\t[\"squadOmega\"]=\"squadOmega\",\n\t[\"squadP\"]=\"squadP\",\n\t[\"squadPepega\"]=\"squadPepega\",\n\t[\"squadR\"]=\"squadR\",\n\t[\"squadREE\"]=\"squadREE\",\n\t[\"squadSid\"]=\"squadSid\",\n\t[\"squadSleeper\"]=\"squadSleeper\",\n\t-- TwitchPresents\n\t[\"tpAIYIYI\"]=\"tpAIYIYI\",\n\t[\"tpBlack\"]=\"tpBlack\",\n\t[\"tpBaboo\"]=\"tpBaboo\",\n\t[\"tpBLBLBL\"]=\"tpBLBLBL\",\n\t[\"tpBlue\"]=\"tpBlue\",\n\t[\"toBulk\"]=\"tpBulk\",\n\t[\"tpFree\"]=\"tpFree\",\n\t[\"tpFX1\"]=\"tpFX1\",\n\t[\"tpGG\"]=\"tpGG\",\n\t[\"tpGreen\"]=\"tpGreen\",\n\t[\"tpHeresTommy\"]=\"tpHeresTommy\",\n\t[\"tpLokar\"]=\"tpLokar\",\n\t[\"tpNasus\"]=\"tpNasus\",\n\t[\"tpPink\"]=\"tpPink\",\n\t[\"tpRed\"]=\"tpRed\",\n\t[\"tpSquatt\"]=\"tpSquatt\",\n\t[\"tpWhite\"]=\"tpWhite\",\n\t[\"tpYellow\"]=\"tpYellow\",\n\t[\"tpZedd\"]=\"tpZedd\",\n\t-- TwitchTV\n\t[\"4Head\"]=\"4Head\",\n\t[\"AMPEnergy\"]=\"AMPEnergy\",\n\t[\"AMPEnergyCherry\"]=\"AMPEnergyCherry\",\n\t[\"AMPTropPunch\"]=\"AMPTropPunch\",\n\t[\"ANELE\"]=\"ANELE\",\n\t[\"anneHeart\"]=\"anneHeart\",\n\t[\"ArgieB8\"]=\"ArgieB8\",\n\t[\"ArigatoNas\"]=\"ArigatoNas\",\n\t[\"ArsonNoSexy\"]=\"ArsonNoSexy\",\n\t[\"AsianGlow\"]=\"AsianGlow\",\n\t[\"BabyRage\"]=\"BabyRage\",\n\t[\"WideBabyRage\"]=\"WideBabyRage\",\n\t[\"BasedGod\"]=\"BasedGod\",\n\t[\"Batappa\"]=\"Batappa\",\n\t[\"BatChest\"]=\"BatChest\",\n\t[\"BCouch\"]=\"BCouch\",\n\t[\"BCWarrior\"]=\"BCWarrior\",\n\t[\"BegWan\"]=\"BegWan\",\n\t[\"BibleThump\"]=\"BibleThump\",\n\t[\"BigBrother\"]=\"BigBrother\",\n\t[\"BigPhish\"]=\"BigPhish\",\n\t[\"BionicBunion\"]=\"BionicBunion\",\n\t[\"BlargNaut\"]=\"BlargNaut\",\n\t[\"bleedPurple\"]=\"bleedPurple\",\n\t[\"BlessRNG\"]=\"BlessRNG\",\n\t[\"BloodTrail\"]=\"BloodTrail\",\n\t[\"BrainSlug\"]=\"BrainSlug\",\n\t[\"BrokeBack\"]=\"BrokeBack\",\n\t[\"BudBlast\"]=\"BudBlast\",\n\t[\"BuddhaBar\"]=\"BuddhaBar\",\n\t[\"BudStar\"]=\"BudStar\",\n\t[\"CarlSmile\"]=\"CarlSmile\",\n\t[\"ChefFrank\"]=\"ChefFrank\",\n\t[\"Clarmy\"]=\"Clarmy\",\n\t[\"cmonBruh\"]=\"cmonBruh\",\n\t[\"cmonBrug\"]=\"cmonBrug\",\n\t[\"HYPERBRUG\"]=\"HYPERBRUG\",\n\t[\"WideBrug\"]=\"WideBrug\",\n\t[\"WIDEHYPERBRUG\"]=\"WIDEHYPERBRUG\",\n\t[\"HYPERWIDEBRUG\"]=\"WIDEHYPERBRUG\",\n\t[\"WideHYPERBRUG\"]=\"WIDEHYPERBRUG\",\n\t[\"cmonBrother\"]=\"cmonBrother\",\n\t[\"CoolCat\"]=\"CoolCat\",\n\t[\"CoolStoryBob\"]=\"CoolStoryBob\",\n\t[\"copyThis\"]=\"copyThis\",\n\t[\"CorgiDerp\"]=\"CorgiDerp\",\n\t[\"DAESuppy\"]=\"DAESuppy\",\n\t[\"DansGame\"]=\"DansGame\",\n\t[\"DatSheffy\"]=\"DatSheffy\",\n\t[\"DBstyle\"]=\"DBstyle\",\n\t[\"DendiFace\"]=\"DendiFace\",\n\t[\"DogFace\"]=\"DogFace\",\n\t[\"DoritosChip\"]=\"DoritosChip\",\n\t[\"duDudu\"]=\"duDudu\",\n\t[\"DxAbomb\"]=\"DxAbomb\",\n\t[\"DxCat\"]=\"DxCat\",\n\t[\"EagleEye\"]=\"EagleEye\",\n\t[\"EleGiggle\"]=\"EleGiggle\",\n\t[\"FailFish\"]=\"FailFish\",\n\t[\"FPSMarksman\"]=\"FPSMarksman\",\n\t[\"FrankerZ\"]=\"FrankerZ\",\n\t[\"FreakinStinkin\"]=\"FreakinStinkin\",\n\t[\"FUNgineer\"]=\"FUNgineer\",\n\t[\"FunRun\"]=\"FunRun\",\n\t[\"FutureMan\"]=\"FutureMan\",\n\t[\"GingerPower\"]=\"GingerPower\",\n\t[\"GivePLZ\"]=\"GivePLZ\",\n\t[\"GOWSkull\"]=\"GOWSkull\",\n\t[\"GrammarKing\"]=\"GrammarKing\",\n\t[\"HassaanChop\"]=\"HassaanChop\",\n\t[\"HassanChop\"]=\"HassanChop\",\n\t[\"HeyGuys\"]=\"HeyGuys\",\n\t[\"HotPokket\"]=\"HotPokket\",\n\t[\"HumbleLife\"]=\"HumbleLife\",\n\t[\"imGlitch\"]=\"imGlitch\",\n\t[\"InuyoFace\"]=\"InuyoFace\",\n\t[\"ItsBoshyTime\"]=\"ItsBoshyTime\",\n\t[\"Jebaited\"]=\"Jebaited\",\n\t[\"JKanStyle\"]=\"JKanStyle\",\n\t[\"JonCarnage\"]=\"JonCarnage\",\n\t[\"KAPOW\"]=\"KAPOW\",\n\t[\"Kappa\"]=\"Kappa\",\n\t[\"Kapp\"]=\"Kapp\",\n\t[\"tooDank\"]=\"tooDank\",\n\t[\"Wowee\"]=\"Wowee\",\n\t[\"KappaClaus\"]=\"KappaClaus\",\n\t[\"KappaPride\"]=\"KappaPride\",\n\t[\"KappaRoss\"]=\"KappaRoss\",\n\t[\"KappaWealth\"]=\"KappaWealth\",\n\t[\"Keepo\"]=\"Keepo\",\n\t[\"KevinTurtle\"]=\"KevinTurtle\",\n\t[\"Kippa\"]=\"Kippa\",\n\t[\"KonCha\"]=\"KonCha\",\n\t[\"Kreygasm\"]=\"Kreygasm\",\n\t[\"Mau5\"]=\"Mau5\",\n\t[\"mcaT\"]=\"mcaT\",\n\t[\"MikeHogu\"]=\"MikeHogu\",\n\t[\"MingLee\"]=\"MingLee\",\n\t[\"MorphinTime\"]=\"MorphinTime\",\n\t[\"MrDestructoid\"]=\"MrDestructoid\",\n\t[\"MVGame\"]=\"MVGame\",\n\t[\"NerfBlueBlaster\"]=\"NerfBlueBlaster\",\n\t[\"NerfRedBlaster\"]=\"NerfRedBlaster\",\n\t[\"NinjaGrumpy\"]=\"NinjaGrumpy\",\n\t[\"NomNom\"]=\"NomNom\",\n\t[\"NotAtk\"]=\"NotAtk\",\n\t[\"NotLikeThis\"]=\"NotLikeThis\",\n\t[\"OhMyDog\"]=\"OhMyDog\",\n\t[\"OneHand\"]=\"OneHand\",\n\t[\"OpieOP\"]=\"OpieOP\",\n\t[\"OptimizePrime\"]=\"OptimizePrime\",\n\t[\"OSfrog\"]=\"OSfrog\",\n\t[\"OSkomodo\"]=\"OSkomodo\",\n\t[\"OSsloth\"]=\"OSsloth\",\n\t[\"panicBasket\"]=\"panicBasket\",\n\t[\"PanicVis\"]=\"PanicVis\",\n\t[\"PartyTime\"]=\"PartyTime\",\n\t[\"pastaThat\"]=\"pastaThat\",\n\t[\"PeoplesChamp\"]=\"PeoplesChamp\",\n\t[\"PermaSmug\"]=\"PermaSmug\",\n\t[\"PeteZaroll\"]=\"PeteZaroll\",\n\t[\"PeteZarollTie\"]=\"PeteZarollTie\",\n\t[\"PicoMause\"]=\"PicoMause\",\n\t[\"PipeHype\"]=\"PipeHype\",\n\t[\"PJSalt\"]=\"PJSalt\",\n\t[\"PJSugar\"]=\"PJSugar\",\n\t[\"PMSTwin\"]=\"PMSTwin\",\n\t[\"PogChamp\"]=\"PogChamp\",\n\t[\"Poooound\"]=\"Poooound\",\n\t[\"PraiseIt\"]=\"PraiseIt\",\n\t[\"PRChase\"]=\"PRChase\",\n\t[\"PrimeMe\"]=\"PrimeMe\",\n\t[\"PunchTrees\"]=\"PunchTrees\",\n\t[\"PunOko\"]=\"PunOko\",\n\t[\"RaccAttack\"]=\"RaccAttack\",\n\t[\"RalpherZ\"]=\"RalpherZ\",\n\t[\"RedCoat\"]=\"RedCoat\",\n\t[\"ResidentSleeper\"]=\"ResidentSleeper\",\n\t[\"riPepperonis\"]=\"riPepperonis\",\n\t[\"RitzMitz\"]=\"RitzMitz\",\n\t[\"RlyTho\"]=\"RlyTho\",\n\t[\"RuleFive\"]=\"RuleFive\",\n\t[\"SabaPing\"]=\"SabaPing\",\n\t[\"SeemsGood\"]=\"SeemsGood\",\n\t[\"ShadyLulu\"]=\"ShadyLulu\",\n\t[\"ShazBotstix\"]=\"ShazBotstix\",\n\t[\"SmoocherZ\"]=\"SmoocherZ\",\n\t[\"SMOrc\"]=\"SMOrc\",\n\t[\"SoBayed\"]=\"SoBayed\",\n\t[\"SoonerLater\"]=\"SoonerLater\",\n\t[\"SSSsss\"]=\"SSSsss\",\n\t[\"StinkyCheese\"]=\"StinkyCheese\",\n\t[\"StoneLightning\"]=\"StoneLightning\",\n\t[\"StrawBeary\"]=\"StrawBeary\",\n\t[\"SuperVinlin\"]=\"SuperVinlin\",\n\t[\"SwiftRage\"]=\"SwiftRage\",\n\t[\"TakeNRG\"]=\"TakeNRG\",\n\t[\"TBAngel\"]=\"TBAngel\",\n\t[\"TBCheesePull\"]=\"TBCheesePull\",\n\t[\"TBTacoLeft\"]=\"TBTacoLeft\",\n\t[\"TBTacoRight\"]=\"TBTacoRight\",\n\t[\"TearGlove\"]=\"TearGlove\",\n\t[\"TehePelo\"]=\"TehePelo\",\n\t[\"TF2John\"]=\"TF2John\",\n\t[\"ThankEgg\"]=\"ThankEgg\",\n\t[\"TheIlluminati\"]=\"TheIlluminati\",\n\t[\"TheRinger\"]=\"TheRinger\",\n\t[\"TheTarFu\"]=\"TheTarFu\",\n\t[\"TheThing\"]=\"TheThing\",\n\t[\"ThunBeast\"]=\"ThunBeast\",\n\t[\"TinyFace\"]=\"TinyFace\",\n\t[\"TooSpicy\"]=\"TooSpicy\",\n\t[\"TriHard\"]=\"TriHard\",\n\t[\"TTours\"]=\"TTours\",\n\t[\"twitchRaid\"]=\"twitchRaid\",\n\t[\"TwitchRPG\"]=\"TwitchRPG\",\n\t[\"UncleNox\"]=\"UncleNox\",\n\t[\"UnSane\"]=\"UnSane\",\n\t[\"UWot\"]=\"UWot\",\n\t[\"VoHiYo\"]=\"VoHiYo\",\n\t[\"VoteNay\"]=\"VoteNay\",\n\t[\"VoteYea\"]=\"VoteYea\",\n\t[\"WholeWheat\"]=\"WholeWheat\",\n\t[\"WTRuck\"]=\"WTRuck\",\n\t[\"WutFace\"]=\"WutFace\",\n\t[\"YouDontSay\"]=\"YouDontSay\",\n\t[\"YouWHY\"]=\"YouWHY\",\n\t[\"VaultBoy\"]=\"VaultBoy\",\n\t[\"smileW\"]=\"smileW\",\n\t[\"smileC\"]=\"smileC\",\n\t[\"AngelThump\"]=\"AngelThump\",\n\t[\"DICKS\"]=\"DICKS\",\n\t[\"gachiHYPER\"]=\"gachiHYPER\",\n\t[\"HYPERLUL\"]=\"HYPERLUL\",\n\t[\"ConcernFroge\"]=\"ConcernFroge\",\n\t[\"FacePalm\"]=\"FacePalm\",\n\t[\"Squid1\"]=\"Squid1\",\n\t[\"Squid2\"]=\"Squid2\",\n\t[\"Squid3\"]=\"Squid3\",\n\t[\"Squid4\"]=\"Squid4\",\n\t[\"WinnerWinner\"]=\"WinnerWinner\",\n\t[\"RSmile\"]=\"RSmile\",\n\t[\":smile:\"]=\"RSmile\",\n\t[\"RSmiling\"]=\"RSmiling\",\n\t[\"RFrown\"]=\"RFrown\",\n\t[\"RGasp\"]=\"RGasp\",\n\t[\"RCool\"]=\"RCool\",\n\t[\"RMeh\"]=\"RMeh\",\n\t[\"RWink\"]=\"RWink\",\n\t[\"RWinkTongue\"]=\"RWinkTongue\",\n\t[\"RTongue\"]=\"RTongue\",\n\t[\"RPatch\"]=\"RPatch\",\n\t[\"o_O\"]=\"o_O\",\n\t[\"O_o\"]=\"o_O\",\n\t[\"RTired\"]=\"RTired\",\n\t[\"RHeart\"]=\"RHeart\",\n\t-- Drainerx\n\t[\"drxBrain\"]=\"drxBrain\",\n\t[\"drxCS\"]=\"drxCS\",\n\t[\"drxD\"]=\"drxD\",\n\t[\"drxSSJ\"]=\"drxSSJ\",\n\t[\"drxPog\"]=\"drxPog\",\n\t[\"drxDict\"]=\"drxDict\",\n\t[\"drxFE\"]=\"drxFE\",\n\t[\"drxED\"]=\"drxED\",\n\t[\"drxFE1\"]=\"drxFE1\",\n\t[\"drxED2\"]=\"drxED2\",\n\t[\"drxCri\"]=\"drxCri\",\n\t[\"drxmonkaEYES\"]=\"drxmonkaEYES\",\n\t[\"drxEyes\"]=\"drxEyes\",\n\t[\"drxGod\"]=\"drxGod\",\n\t[\"drxR\"]=\"drxR\",\n\t[\"drxW\"]=\"drxW\",\n\t[\"drxGlad\"]=\"drxGlad\",\n\t-- AdmiralBahroo\n\t[\"rooAww\"]=\"rooAww\",\n\t[\"rooBlank\"]=\"rooBlank\",\n\t[\"rooBless\"]=\"rooBless\",\n\t[\"rooAngel\"]=\"rooBless\",\n\t[\":please:\"]=\"rooBless\",\n\t[\"rooLove\"]=\"rooLove\",\n\t[\"rooBlind\"]=\"rooBlind\",\n\t[\"rooBonk\"]=\"rooBonk\",\n\t[\"rooBooli\"]=\"rooBooli\",\n\t[\"rooBot\"]=\"rooBot\",\n\t[\"rooCarry\"]=\"rooCarry\",\n\t[\"rooCop\"]=\"rooCop\",\n\t[\"rooCry\"]=\"rooCry\",\n\t[\"rooCult\"]=\"rooCult\",\n\t[\"rooD\"]=\"rooD\",\n\t[\"rooDab\"]=\"rooDab\",\n\t[\"rooDerp\"]=\"rooDerp\",\n\t[\"rooDevil\"]=\"rooDevil\",\n\t[\"rooDisgust\"]=\"rooDisgust\",\n\t[\"rooEZ\"]=\"rooEZ\",\n\t[\"rooGift\"]=\"rooGift\",\n\t[\"rooHappy\"]=\"rooHappy\",\n\t[\"rooLick\"]=\"rooLick\",\n\t[\"rooLick2\"]=\"rooLick2\",\n\t[\"rooMurica\"]=\"rooMurica\",\n\t[\"rooNap\"]=\"rooNap\",\n\t[\"rooNom\"]=\"rooNom\",\n\t[\"rooPog\"]=\"rooPog\",\n\t[\"rooPs\"]=\"rooPs\",\n\t[\"rooREE\"]=\"rooREE\",\n\t[\"rooScheme\"]=\"rooScheme\",\n\t[\"rooSellout\"]=\"rooSellout\",\n\t[\"rooSmush\"]=\"rooSmush\",\n\t[\"rooSleepy\"]=\"rooSleepy\",\n\t[\"rooThink\"]=\"rooThink\",\n\t[\"rooTHIVV\"]=\"rooTHIVV\",\n\t[\"rooVV\"]=\"rooVV\",\n\t[\"rooWW\"]=\"rooWW\",\n\t[\"rooWhine\"]=\"rooWhine\",\n\t[\"rooWut\"]=\"rooWut\",\n\t-- Greekgodx\n\t[\"greekA\"]=\"greekA\",\n\t[\"greekBrow\"]=\"greekBrow\",\n\t[\"greekDiet\"]=\"greekDiet\",\n\t[\"greekGirl\"]=\"greekGirl\",\n\t[\"greekGordo\"]=\"greekGordo\",\n\t[\"greekGweek\"]=\"greekGweek\",\n\t[\"greekHard\"]=\"greekHard\",\n\t[\"greekJoy\"]=\"greekJoy\",\n\t[\"greekKek\"]=\"greekKek\",\n\t[\"greekM\"]=\"greekM\",\n\t[\"greekMlady\"]=\"greekMlady\",\n\t[\"greekOi\"]=\"greekOi\",\n\t[\"greekP\"]=\"greekP\",\n\t[\"greekHYPERP\"]=\"greekHYPERP\",\n\t[\"greekThink\"]=\"greekThink\",\n\t[\"greekPVC\"]=\"greekPVC\",\n\t[\"greekSad\"]=\"greekSad\",\n\t[\"greekSheep\"]=\"greekSheep\",\n\t[\"greekSleeper\"]=\"greekSleeper\",\n\t[\"greekSquad\"]=\"greekSquad\",\n\t[\"greekT\"]=\"greekT\",\n\t[\"greekTilt\"]=\"greekTilt\",\n\t[\"greekWC\"]=\"greekWC\",\n\t[\"greekWhy\"]=\"greekWhy\",\n\t[\"greekWtf\"]=\"greekWtf\",\n\t[\"greekYikes\"]=\"greekYikes\",\n\t-- Vinesauce\n\t[\"vineAlien\"]=\"vineAlien\",\n\t[\"vineBab\"]=\"vineBab\",\n\t[\"vineBadPC\"]=\"vineBadPC\",\n\t[\"vineBlind\"]=\"vineBlind\",\n\t[\"vineBowie\"]=\"vineBowie\",\n\t[\"vineBrainyot\"]=\"vineBrainyot\",\n\t[\"vineChamp\"]=\"vineChamp\",\n\t[\"vineClown\"]=\"vineClown\",\n\t[\"vineEscape\"]=\"vineEscape\",\n\t[\"vineGasm\"]=\"vineGasm\",\n\t[\"vineHard\"]=\"vineHard\",\n\t[\"vineHeart\"]=\"vineHeart\",\n\t[\"vineJape\"]=\"vineJape\",\n\t[\"vineKirb\"]=\"vineKirb\",\n\t[\"vineKorok\"]=\"vineKorok\",\n\t[\"vineLoog\"]=\"vineLoog\",\n\t[\"vineLoog3\"]=\"vineLoog3\",\n\t[\"vineLuigi\"]=\"vineLuigi\",\n\t[\"vineLUL\"]=\"vineLUL\",\n\t[\"vineM8\"]=\"vineM8\",\n\t[\"vineMayro\"]=\"vineMayro\",\n\t[\"vineMortis\"]=\"vineMortis\",\n\t[\"vinePassive\"]=\"vinePassive\",\n\t[\"vineRalph\"]=\"vineRalph\",\n\t[\"vineRaptor\"]=\"vineRaptor\",\n\t[\"vineRizon\"]=\"vineRizon\",\n\t[\"vineSanic\"]=\"vineSanic\",\n\t[\"vineSchut\"]=\"vineSchut\",\n\t[\"vineScoot\"]=\"vineScoot\",\n\t[\"vineSponge\"]=\"vineSponge\",\n\t[\"vineTalian\"]=\"vineTalian\",\n\t[\"vineThink\"]=\"vineThink\",\n\t[\"vineTommy\"]=\"vineTommy\",\n\t[\"vineTubby\"]=\"vineTubby\",\n\t[\"vineWhat\"]=\"vineWhat\",\n\t-- DBMMan\n\t[\"mystic139Dbmleft\"]=\"mystic139Dbmleft\",\n\t[\"mystic139Dbmright\"]=\"mystic139Dbmright\",\n\t[\"mystic139Wolf\"]=\"mystic139Wolf\",\n\t[\"mystic139Runaway\"]=\"mystic139Runaway\",\n\t[\"mystic139Beware\"]=\"mystic139Beware\",\n\t[\"mystic139Airhorn\"]=\"mystic139Airhorn\",\n\t-- witwix\n\t[\"wix1\"]=\"wix1\",\n\t[\"wix2\"]=\"wix2\",\n\t[\"wix3\"]=\"wix3\",\n\t[\"wix4\"]=\"wix4\",\n\t[\"wixAyyLmar\"]=\"wixAyyLmar\",\n\t[\"wixB\"]=\"wixB\",\n\t[\"wixBlind\"]=\"wixBlind\",\n\t[\"wixBod\"]=\"wixBod\",\n\t[\"wixBowsey\"]=\"wixBowsey\",\n\t[\"wixBrix\"]=\"wixBrix\",\n\t[\"wixCheese\"]=\"wixCheese\",\n\t[\"wixD\"]=\"wixD\",\n\t[\"wixDankey\"]=\"wixDankey\",\n\t[\"wixGold\"]=\"wixGold\",\n\t[\"wixH\"]=\"wixH\",\n\t[\"wixHA\"]=\"wixHA\",\n\t[\"wixHassanCop\"]=\"wixHassanCop\",\n\t[\"wixK\"]=\"wixK\",\n\t[\"wixL\"]=\"wixL\",\n\t[\"wixLUL\"]=\"wixLUL\",\n\t[\"wixMagoo\"]=\"wixMagoo\",\n\t[\"wixMerio\"]=\"wixMerio\",\n\t[\"wixMini\"]=\"wixMini\",\n\t[\"wixNis\"]=\"wixNis\",\n\t[\"wixR\"]=\"wixR\",\n\t[\"wixSanic\"]=\"wixSanic\",\n\t[\"wixSkerp\"]=\"wixSkerp\",\n\t[\"wixT\"]=\"wixT\",\n\t[\"wixW1\"]=\"wixW1\",\n\t[\"wixW2\"]=\"wixW2\",\n\t[\"wixW3\"]=\"wixW3\",\n\t[\"wixW4\"]=\"wixW4\",\n\t[\"wixWeeb\"]=\"wixWeeb\",\n\t[\"wixWerio\"]=\"wixWerio\",\n\t[\"wixZaldo\"]=\"wixZaldo\",\n\t[\"ParkourDin\"]=\"ParkourDin\",\n\t[\"Crabtos\"]=\"Crabtos\",\n };\n local dropdown_options={\n \n\t[01]= {\"Asmongold\",\"asmon1\",\"asmon2\",\"asmon3\",\"asmon4\",\"asmonC\",\"asmonCD\",\"asmonD\",\"asmonDad\",\"asmonDaze\",\"asmonDegen\",\"asmonE\",\"asmonE1\",\"asmonE2\",\"asmonE3\",\"asmonE4\",\"asmonFiend\",\"asmonG\",\"asmonGASM\",\"asmonGet\",\"asmonHide\",\"asmonL\",\"asmonLFR\",\"asmonLove\",\"asmonLong1\",\"asmonLong2\",\"asmonLong3\",\"asmonLong4\",\"asmonM\",\"asmonOcean\",\"asmonOrc\",\"asmonTar\",\"asmonP\",\"asmonPower\",\"asmonPray\",\"asmonPrime\",\"asmonR\",\"asmonREE\",\"asmonSad\",\"asmonStare\",\"asmonTiger\",\"asmonUH\",\"asmonW\",\"asmonWHAT\",\"asmonWHATR\",\"asmonWOW\"},\n\t[02]= {\"Preachlfw\",\"pgeBan\",\"pgeBen\",\"pgeBrian\",\"pgeCheese\",\"pgeChick\",\"pgeClub\",\"pgeCrisp\",\"pgeDrama\",\"pgeEdge\",\"pgeEmma\",\"pgeFish\",\"pgeGhost\",\"pgeHmm\",\"pgeNem\",\"pgeNoob\",\"pgeOhno\",\"pgeOhno2\",\"pgePog\",\"pgePug\",\"pgeRay\",\"pgeScience\",\"pgeShame\",\"pgeSherry\"},\n\t[03]= {\"BTTV+FFZ 1\",\"tooDank\",\"4Head\",\"ANELE\",\"AngelThump\",\"BibleThump\",\"bUrself\",\"BBona\",\"BabyRage\",\"BlessRNG\",\"BloodTrail\",\"ConcernDoge\",\"DogeWitIt\",\"ConcernFroge\",\"cmonBrother\",\"cmonBruh\",\"cmonBrug\",\"HYPERBRUG\",\"CoolCat\",\"DansGame\",\"DatSheffy\",\"D:\",\"DD:\",\"FacePalm\",\"EleGiggle\",\"eShrug\",\"FailFish\",\"FrankerZ\",\"GabeN\",\"gachiGASM\",\"gachiHYPER\",\"HandsUp\",\"GivePLZ\",\"TakeNRG\",\"haHAA\",\"HeyGuys\",\"HotPokket\",\"HYPERLUL\",\"LUL\",\"LULW\",\"MEGALUL\",\"MingLUL\",\"MingLee\",\"Jebaited\",\"KKomrade\"},\n\t[04]= {\"BTTV+FFZ 2\",\"Kappa\",\"Kapp\",\"KappaPride\",\"Keepo\",\"Kreygasm\",\"MrDestructoid\",\"NotLikeThis\",\"NickyQ\",\"OhMyDog\",\"OpieOP\",\"smileW\",\"smileC\",\"RSmile\",\"RSmiling\",\"RFrown\",\"RGasp\",\"RCool\",\"RMeh\",\"RWink\",\"RWinkTongue\",\"RTongue\",\"RPatch\",\"o_O\",\"RTired\",\"RHeart\",\"PartyTime\",\"PowerUpL\",\"PowerUpR\",\"ResidentSleeper\",\"SeemsGood\",\"SMOrc\",\"Squid1\",\"Squid2\",\"Squid3\",\"Squid4\",\"SwiftRage\",\"Thonk\",\"HYPERTHONK\",\"WideHard\",\"TriHard\",\"weSmart\",\"WinnerWinner\",\"WutFace\",\"Wut\",\"ZULUL\",\"ZULOL\"},\n\t[05]= {\"Custom 1\",\"peepoVW\",\"monkaANELE\",\"Krug\",\"Depresstiny\",\"DestiSenpaii\",\"Disgustiny\",\"GODSTINY\",\"HmmStiny\",\"Klappa\",\"LeRuse\",\"jerryWhat\",\":blinking:\",\"NOBULLY\",\"NoTears\",\"OverRustle\",\"PEPE\",\"REE\",\"SURPRISE\",\"SWEATSTINY\",\"YEE\",\"VoHiYo\",\"AYAYA\",\"bjornoVV\",\"bjornoVVona\",\"chupBro\",\"chupDerp\",\"chupHappy\",\"StareBruh\",\"Clap\",\"cptfriHE\",\"Del\",\"ednasly\",\"endANELE\",\"endBomb\",\"AMAZIN\",\"pokiW\",\"ThisIsFine\"},\n\t[06]= {\"Custom 2\",\"ANEBruh\",\"endDawg\",\"endFrench\",\"endHarambe\",\"endKyori\",\"endNotLikeThis\",\"HappyMerchant\",\"HyperAngryMerchant\",\"endRP\",\"endTrump\",\"FlipThis\",\"fruitBug\",\"LaurGasm\",\"lockOmegatayys\",\"marcithDerp\",\"marcithMath\",\"monkeyS\",\"oldmorDim\",\"PogCena\",\"Popoga\",\"mastahFloor\",\"selyihHEY\",\"SuicideThinking\",\"BOGGED\",\"Stonks\",\"DogeKek\",\"Joy2\",\"LOLW\",\"OMEGALOL\",\"ZOINKS\"},\n\t[07]= {\"Greekgodx\",\"greekA\",\"greekBrow\",\"greekDiet\",\"greekGirl\",\"greekGordo\",\"greekGweek\",\"greekHard\",\"greekJoy\",\"greekKek\",\"greekM\",\"greekMlady\",\"greekOi\",\"greekP\",\"greekHYPERP\",\"greekThink\",\"greekPVC\",\"greekSad\",\"greekSheep\",\"greekSleeper\",\"greekSquad\",\"greekT\",\"greekTilt\",\"greekWC\",\"greekWhy\",\"greekWtf\",\"greekYikes\"},\n\t[08]= {\"nymn 1\",\"nymn0\",\"nymn1\",\"nymn2\",\"nymn3\",\"nymn158\",\"nymnA\",\"nymnAww\",\"nymnB\",\"nymnBee\",\"nymnBenis\",\"nymnC\",\"nymnCaptain\",\"nymnCD\",\"nymnCozy\",\"nymnCREB\",\"nymnCringe\",\"nymnDab\",\"nymnDeer\",\"nymnE\",\"nymnEU\",\"nymnEZ\",\"nymnFlag\",\"nymnFlick\",\"nymnG\",\"nymnGasm\",\"nymnGasp\",\"nymnGnome\",\"nymnGold\",\"nymnGolden\",\"nymnGun\",\"nymnH\",\"nymnHammer\",\"nymnHmm\",\"nymnHonk\",\"nymnHydra\",\"nymnJoy\",\"nymnPog\",\"nymnK\",\"nymnKek\",\"nymnKomrade\",\"nymnL\",\"nymnM\",\"nymnNA\",\"nymnNo\",\"nymnNormie\",\"nymnPains\",\"nymnR\"},\n\t[09]= {\"nymn 2\",\"nymnRaffle\",\"nymnSad\",\"nymnScuffed\",\"nymnSmart\",\"nymnSmol\",\"nymnZ\",\"nymnSon\",\"nymnSoy\",\"nymnSpurdo\",\"nymnThink\",\"nymnU\",\"nymnV\",\"nymnW\",\"nymnWhy\",\"nymnXD\",\"nymnY\",\"nymnFEEDME\",\"nymn2x\",\"nymnBiggus\",\"nymnBridge\",\"nymnCC\",\"nymnCry\",\"nymnElf\",\"nymnFood\",\"nymnKing\",\"nymnOkay\",\"nymnP\",\"nymnPuke\",\"nymnRupert\",\"nymnS\",\"nymnSleeper\",\"nymnSmug\",\"nymnStrong\",\"nymnTransparent\"},\n\t[10]= {\"Drainerx\",\"drxBrain\",\"drxCS\",\"drxD\",\"drxSSJ\",\"drxPog\",\"drxDict\",\"drxEyes\",\"drxFE\",\"drxED\",\"drxFE1\",\"drxED2\",\"drxCri\",\"drxGlad\",\"drxGod\",\"drxmonkaEYES\",\"drxR\",\"drxW\",\"drxLit\"},\n\t[11]= {\"Emojis\",\":poop:\",\":blush:\",\":flush:\",\":door:\",\":zap:\",\":gun:\",\":hand:\",\":pray:\",\":joy:\",\":yum:\",\":rolling_eyes:\",\":smiley:\",\":wink:\",\":smirk:\",\":tired:\",\":weary:\",\":thinking:\",\":dragon:\",\":muscle:\",\":ok_hand:\",\":point_right:\",\":point_left:\",\":writing_hand:\",\":book:\",\":clock:\",\":crab:\",\":shrimp:\",\":rage:\",\":wheelchair:\",\":eye:\",\":eyes:\",\":eggplant:\",\":sweat_drops:\",\":peach:\",\":tongue:\",\":heart:\",\":kiss:\",\":100:\",\":oof:\",\":mega:\",\":bell:\",\":crown:\",\":question:\"},\n\t[12]= {\"Forsen 1\",\"forsen1\",\"forsen2\",\"forsen3\",\"forsen4\",\"forsenAYAYA\",\"forsenAYOYO\",\"forsenBanned\",\"forsenBee\",\"forsenBlob\",\"forsenBoys\",\"forsenC\",\"forsenCD\",\"forsenChamp\",\"forsenClown\",\"forsenConnoisseur\",\"forsenCool\",\"forsenD\",\"forsenDab\",\"forsenDank\",\"forsenDDK\",\"forsenDED\",\"forsenDiglett\",\"forsenE\",\"forsenEcardo\",\"forsenEmote\",\"forsenEmote2\",\"forsenFajita\",\"forsenFeels\",\"forsenFur\",\"forsenG\",\"forsenGa\",\"forsenGASM\",\"forsenGrill\",\"forsenGun\",\"forsenH\",\"forsenHappy\",\"forsenHead\",\"forsenHobo\",\"forsenHorsen\"},\n\t[13]= {\"Forsen 2\",\"forsenIQ\",\"forsenJoy\",\"forsenK\",\"forsenKek\",\"forsenKnife\",\"forsenKraken\",\"forsenL\",\"forsenLewd\",\"forsenLicence\",\"forsenLooted\",\"forsenLUL\",\"forsenM\",\"forsenMald\",\"forsenMoney\",\"forsenMonkey\",\"forsenNam\",\"forsenO\",\"forsenODO\",\"forsenOG\",\"forsenOP\",\"forsenP\",\"forsenPepe\",\"forsenPog\",\"forsenPosture\",\"forsenPosture1\",\"forsenPosture2\",\"forsenPuke\",\"forsenPuke2\",\"forsenPuke3\",\"forsenPuke4\",\"forsenPuke5\",\"forsenR\",\"forsenReally\",\"forsenRedSonic\",\"forsenRP\",\"forsenS\",\"forsenSambool\",\"forsenScoots\"},\n\t[14]= {\"Forsen 3\",\"forsenSheffy\",\"forsenSith\",\"forsenSkip\",\"forsenSleeper\",\"forsenSmile\",\"forsenSS\",\"forsenStein\",\"forsenSwag\",\"forsenT\",\"forsenTILT\",\"forsenTriggered\",\"forsenW\",\"forsenWC\",\"forsenWeird\",\"forsenWeird25\",\"forsenWhat\",\"forsenWhip\",\"forsenWitch\",\"forsenWTF\",\"forsenWut\",\"forsenX\",\"forsenY\",\"forsenYHD\"},\n\t[14]= {\"AdmiralBahroo\",\"rooAww\",\"rooBlank\",\"rooBless\",\"rooBlind\",\"rooBonk\",\"rooBooli\",\"rooBot\",\"rooCarry\",\"rooCop\",\"rooCry\",\"rooCult\",\"rooD\",\"rooDab\",\"rooDerp\",\"rooDevil\",\"rooDisgust\",\"rooEZ\",\"rooGift\",\"rooHappy\",\"rooLick\",\"rooLick2\",\"rooLove\",\"rooMurica\",\"rooNap\",\"rooSleepy\",\"rooNom\",\"rooPog\",\"rooPs\",\"rooREE\",\"rooScheme\",\"rooSellout\",\"rooSmush\",\"rooThink\",\"rooTHIVV\",\"rooVV\",\"rooWhine\",\"rooWut\"},\n\t[15]= {\"VR 1\",\"astrovrCry\",\"astrovrRee\",\"astrovrHi\",\"CuteMelon\",\"DrunkMelon\",\"GaspMelon\",\"HyperHappyMelon\",\"HyperMelon\",\"MelonGun\",\"OwOMelon\",\"RageMelon\",\"ReeMelon\",\"SadMelon\",\"SweatMelon\",\"tyrissBlush\",\"tyrissBoop\",\"tyrissComfy\",\"tyrissDisappointed\",\"tyrissGasp\",\"tyrissGimme\",\"tyrissGlare\",\"tyrissHeadpat\",\"tyrissHeart\",\"tyrissHeartz\",\"tyrissHi\",\"tyrissHug\",\"tyrissHyper\",\"tyrissLul\",\"tyrissLurk\",\"tyrissPout\",\"tyrissRee\",\"tyrissRip\",\"tyrissS\",\"tyrissSad\",\"tyrissSmug\",\"tyrissSmugOwO\",\"tyrissThink\",\"tyrissVictory\",\"ZevvyBlush\"},\n\t[16]= {\"VR 2\",\"radiantAYAYA\",\"radiantBlush\",\"radiantBomb\",\"radiantBoop\",\"radiantComfy\",\"radiantCry\",\"radiantCult\",\"radiantCute\",\"radiantEEEEE\",\"radiantEvil\",\"radiantGimme\",\"radiantGun\",\"radiantHmm\",\"radiantISee\",\"radiantJam\",\"radiantKek\",\"radiantLag\",\"radiantLick\",\"radiantLurk\",\"radiantNom\",\"radiantOmega\",\"radiantOmegaOWO\",\"radiantOwO\",\"radiantPat\",\"radiantPepega\",\"radiantPog\",\"radiantPout\",\"radiantREE\",\"radiantSalute\",\"radiantScared\",\"radiantShrug\",\"radiantSip\",\"radiantSmile\",\"radiantSmileW\",\"radiantSmug\",\"radiantSnoze\",\"radiantStare\",\"radiantTOS\",\"radiantWave\",\"radiantWeird\",\"02Yum\",\"02Dab\",\"02Stare\",\":HEH:\"},\n\t[17]= {\"Pepe 1\",\"EZ\",\"FeelsAmazingMan\",\"FeelsIncredibleMan\",\"PepeBlyat\",\"FeelsBetaMan\",\"MALDD\",\"FeelsBlushMan\",\"FeelsTastyMan\",\"FeelsCoolMan\",\"FeelsCopterMan\",\"FeelsCuteMan\",\"FeelsPinkMan\",\"PoggersHype\",\"yikers\",\"FeelsDrunkMan\",\"PepeThumbsUp\",\"FeelsEvilMan\",\"FeelsGamerMan\",\"FeelsGoodEnoughMan\",\"FeelsGoodMan\",\"FeelsGreatMan\",\"FeelsHug\",\"FeelsHugged\",\"FeelsMyFingerMan\",\"FeelsOkayMan\",\"FeelsMageMan\",\"PepeUnicorn\",\"FeelsPumpkinMan\",\"FeelsNewYear\",\"FeelsSadMan\",\"FeelsCryMan\",\"FeelsSleepyMan\"},\n\t[18]= {\"Pepe 2\",\"FeelsTiredAF\",\"PepeHug\",\"HYPERS\",\"JanCarlo\",\"maximumautism\",\"meAutism\",\"monkaGIGA\",\"monkaThink\",\"monkaYou\",\"monkaHands\",\"monkaMEGA\",\"monkaOMEGA\",\"monkaS\",\"monkaX\",\"monkaT\",\"monkaTOS\",\"NA\",\"nanoMEGA\",\"peep\",\"PepeHands\",\"KEKWHands\",\"PepperHands\",\"PepeL\",\"PepePoint\",\"PepeOK\",\"PepeNotOK\",\"PepoThink\",\"monkaStab\",\"PepoScience\",\"RandomPepe\",\"PepeKMS\",\"FeelsSuicideMan\",\"FeelsDeadMan\",\"SucksMan\",\"WOAW\"},\n\t[19]= {\"Pepe 3\",\"WeirdU\",\"WeirdW\",\"monkaU\",\"monkaW\",\"BadW\",\"GoodW\",\"OkayW\",\"OkayLaugh\",\"CringeW\",\"TiredW\",\"monkaPickle\",\"PepeCozy\",\"POOGERS\",\"POGGIES\",\"PepegaSad\",\"PepegaHands\",\"Weirdga\",\"PepegaLaugh\",\"PepegaPoo\",\"TOSga\",\"PepeFU\",\"PepeCoffee\",\"monkaStare\",\"beanping\",\"PepeScoots\",\"GiggleHands\",\"PepeHammer\",\"PepeWizard\",\"PepeBruh\",\"PepeGang\",\"FeelsRottenMan\",\":need:\",\":memes:\",\":drama:\"},\n\t[20]= {\"Pepe 4\",\"PepePoo\",\"SadPepe\",\"PepeXD\",\"PepeMods\",\"monakHmm\",\"FeelsOakyMan\",\"FeelsWiredMan\",\"PeepHand\",\"monakS\",\"PepeHmm\",\"FeelsBoredMan\",\"PepeCry\",\"PepeJAM\",\"WeirdJAM\",\"FeelsFatMan\",\"FUARK\",\"PepeHeart\",\"PepeCoolStory\",\"FeelsCringeMan\",\"PepePants\",\"PepeM\",\"ppFootbol\",\"PepeAyy\",\"PepeRun\",\"PepeLegs\",\"PepeReach\",\"noClown\",\"LULERS\",\"PepeDisgust\",\"SmugPepe\",\"OMEGAEZ\",\"PepePains\"},\n\t[21]= {\"peepo 1\",\"peepoSalute\",\"peepoCute\",\"peepoLove\",\"peepoPride\",\"peepoWoW\",\"peepoBlanket\",\"peepoSenor\",\"peepoStudy\",\"peepoHmm\",\"peepoSmile\",\"peepoPogPoo\",\"peepoPoo\",\"peepoTired\",\"peepoSad\",\"peepoS\",\"peepoHug\",\"peepoHugged\",\"peepoAP\",\"peepoEZ\",\"peepoCool\",\"peepoBeer\",\"peepoFat\",\"peepoHit\",\"peepoFight\",\"peepoPat\",\"peepoDetective\",\"peepoBlush\",\"peepoThink\",\"peepoPlot\",\"peepoWTF\",\"peepoHide\",\"peepoYes\",\"peepoNo\",\"peepoMaybe\"},\n\t[22]= {\"peepo 2\",\"peepoRain\",\"peepoKnight\",\"peepoPeek\",\"peepoShrug\",\"peepoWave\",\"peepoPing\",\"peepoHuggies\",\"peepoHuggied\",\"peepoHands\",\"peepoSip\",\"peepoPants\",\"peepoNolegs\",\"peepoLip\",\"peepoFA\",\"peepoFH\",\"peepoKEKW\",\"peepoCringe\",\"peepoExit\",\"peepoGun\",\"peepoPoint\",\"peepoNOO\",\"peepoGlad\",\"peepoTeddy\",\"peepoUgh\",\"peepoSuspect\",\"peepoSuspicious\",\"peepoOK\",\"peepoBored\",\"peepoReallyHappy\",\"pillowJammies\",\"peepoFriends\"},\n\t[23]= {\"Suze4Mumes Life P1\",\"beamBrah\",\"beamB\",\"CaptainSuze\",\"peep420\",\"JanCarlo2\",\"mumes\",\"peepoKnife\",\"peepoStab\",\"peepoH\",\"PepeClown\",\"SadHonk\",\"ClownPain\",\"ClownBall\",\"SchubertSmile\",\"PepeKing\",\"peepoKing\",\"peepoCrown\",\"peepoWeirdCrown\",\"PepeScience\",\"peepoCozy\",\"suzeOK\",\"ANELELUL\",\"bubby\",\"FeelsCozyMan\",\"miffs\",\"peepoCheer\",\"peepoCry\",\"peepoDK\",\"peepoMad\",\"PepeBed\",\"PepeChill\",\"PepeCool\",\"EZGiggle\"},\n\t[24]= {\"Suze4Mumes Life P2\",\"FeelsShadowMan\",\"PepeRuski\",\"PepeSoldier\",\"PepeGiggle\",\"PepeKingLove\",\"PepeSpartan\",\"PepeSuspect\",\"peepoChef\",\"peepoChrist\",\"peepoSuze\",\"PepeCop\",\"potter\",\"PepeStudy\",\"suze4animals\",\"PepeGod\",\"PepeWave\",\"PepeHacker\",\"PepeWheels\",\"peepOK\",\"peepKing\",\"PepeSoldier\",\"FeelsDankMan\",\"spit1\",\"spit2\",\"suze4know\",\"GAmer\",\"PepeSmurf\",\"PauseChamp\",\"PogChampius\",\"WeirdChampius\",\"WeirdChampion\"},\n\t[25]= {\"Ren Custom P1\",\"FLOPPERS\",\"cmoN\",\"OhISee\",\"Poghurt\",\"KEKW\",\"KEKWeird\",\"KEKSad\",\"BroKiss\",\"pOg\",\"Pogey\",\"PogeyU\",\"KKonaW\",\"kkOna\",\"DKKona\",\"cmonEyes\",\"TriKool\",\"5Hard\",\"TriPeek\",\"TriEasy\",\"TriGold\",\"TriHardo\",\"0Head\",\"1Head\",\"2Head\",\"3Head\",\"3Lass\",\"4HEader\",\"4Weird\",\"4Shrug\",\"4Mansion\",\"5Head\"},\n\t[26]= {\"Ren Custom P2\",\"PogWarts\",\"noxSorry\",\"AMAZINGA\",\"BaconEffect\",\"duckieW\",\"PATHETIC\",\"TriHardS\",\"HYPERDANSGAME\",\"HYPERDANSGAMEW\",\"LULWW\",\"MaN\",\"NaM\",\"VaN\",\"WhiteKnight\",\"BlackKnight\",\"PikaWOW\",\"Boomer\",\"WeirdChamp\",\"WutChamp\",\"StareChamp\",\"OkayChamp\",\"MaldChamp\",\"DisappointChamp\",\"SadChamp\",\"OldChamp\",\"SillyChamp\",\"LULChamp\",\"CrazyChamp\",\"WeirdBruh\"},\n\t--[27]= {\"Valicera\",\"cmonHabibi\",\"ANGERY\",\"OwlHey\",\"OwlHug\",\"peepoOwl\",\"OwlLove\",\":AP:\",\":pearls:\",\"OMEGAP\",\"TriHAPW\",\":Cyntos:\",\":Amigo:\",\"monkaIris\",\"peepoAP\",\"PepeAP\",\"PepeXD\",\"peepoShower\",\"PCOGGERS\",\"peepoJammies\",\"memebeam1\",\"memebeam2\",\"memebeam3\",\"PepeLove\",\"ValiLove\",\"peepoVali\",\"ValiCheer\",\"ValiPrime\",\"VD1\",\"VD2\",\"ValiDeplete\",\"ValiJAM\",\"ValiEZ\",\"ValiS\",\"ValiBadMan\",\"ValiGoodMan\",\"raidspot\",\"raidspot2\"},\n};\n \n \n local ItemTextFrameSetText = ItemTextPageText.SetText;\n \n \n \n -- Call this in a mod's initialization to move the minimap button to its saved position (also used in its movement)\n -- ** do not call from the mod's OnLoad, VARIABLES_LOADED or later is fine. **\n function stripChars(str)\n local tableAccents = {}\n tableAccents[\"\u00c0\"] = \"A\"\n tableAccents[\"\u00c1\"] = \"A\"\n tableAccents[\"\u00c2\"] = \"A\"\n tableAccents[\"\u00c3\"] = \"A\"\n tableAccents[\"\u00c4\"] = \"A\"\n tableAccents[\"\u00c5\"] = \"A\"\n tableAccents[\"\u00c6\"] = \"AE\"\n tableAccents[\"\u00c7\"] = \"C\"\n tableAccents[\"\u00c8\"] = \"E\"\n tableAccents[\"\u00c9\"] = \"E\"\n tableAccents[\"\u00ca\"] = \"E\"\n tableAccents[\"\u00cb\"] = \"E\"\n tableAccents[\"\u00cc\"] = \"I\"\n tableAccents[\"\u00cd\"] = \"I\"\n tableAccents[\"\u00ce\"] = \"I\"\n tableAccents[\"\u00cf\"] = \"I\"\n tableAccents[\"\u00d0\"] = \"D\"\n tableAccents[\"\u00d1\"] = \"N\"\n tableAccents[\"\u00d2\"] = \"O\"\n tableAccents[\"\u00d3\"] = \"O\"\n tableAccents[\"\u00d4\"] = \"O\"\n tableAccents[\"\u00d5\"] = \"O\"\n tableAccents[\"\u00d6\"] = \"O\"\n tableAccents[\"\u00d8\"] = \"O\"\n tableAccents[\"\u00d9\"] = \"U\"\n tableAccents[\"\u00da\"] = \"U\"\n tableAccents[\"\u00db\"] = \"U\"\n tableAccents[\"\u00dc\"] = \"U\"\n tableAccents[\"\u00dd\"] = \"Y\"\n tableAccents[\"\u00de\"] = \"P\"\n tableAccents[\"\u00df\"] = \"s\"\n tableAccents[\"\u00e0\"] = \"a\"\n tableAccents[\"\u00e1\"] = \"a\"\n tableAccents[\"\u00e2\"] = \"a\"\n tableAccents[\"\u00e3\"] = \"a\"\n tableAccents[\"\u00e4\"] = \"a\"\n tableAccents[\"\u00e5\"] = \"a\"\n tableAccents[\"\u00e6\"] = \"ae\"\n tableAccents[\"\u00e7\"] = \"c\"\n tableAccents[\"\u00e8\"] = \"e\"\n tableAccents[\"\u00e9\"] = \"e\"\n tableAccents[\"\u00ea\"] = \"e\"\n tableAccents[\"\u00eb\"] = \"e\"\n tableAccents[\"\u00ec\"] = \"i\"\n tableAccents[\"\u00ed\"] = \"i\"\n tableAccents[\"\u00ee\"] = \"i\"\n tableAccents[\"\u00ef\"] = \"i\"\n tableAccents[\"\u00f0\"] = \"eth\"\n tableAccents[\"\u00f1\"] = \"n\"\n tableAccents[\"\u00f2\"] = \"o\"\n tableAccents[\"\u00f3\"] = \"o\"\n tableAccents[\"\u00f4\"] = \"o\"\n tableAccents[\"\u00f5\"] = \"o\"\n tableAccents[\"\u00f6\"] = \"o\"\n tableAccents[\"\u00f8\"] = \"o\"\n tableAccents[\"\u00f9\"] = \"u\"\n tableAccents[\"\u00fa\"] = \"u\"\n tableAccents[\"\u00fb\"] = \"u\"\n tableAccents[\"\u00fc\"] = \"u\"\n tableAccents[\"\u00fd\"] = \"y\"\n tableAccents[\"\u00fe\"] = \"p\"\n tableAccents[\"\u00ff\"] = \"y\"\n local normalisedString = ''\n local normalisedString = str: gsub(\"[%z\\1-\\127\\194-\\244][\\128-\\191]*\", tableAccents)\n return normalisedString\nend\n \n function MyMod_MinimapButton_Reposition()\n\tMyMod_MinimapButton:SetPoint(\"TOPLEFT\",\"Minimap\",\"TOPLEFT\",52-(80*cos(Emoticons_Settings[\"MinimapPos\"])),(80*sin(Emoticons_Settings[\"MinimapPos\"]))-52)\n end\n \n -- Only while the button is dragged this is called every frame\n function MyMod_MinimapButton_DraggingFrame_OnUpdate()\n \n\tlocal xpos,ypos = GetCursorPosition()\n\tlocal xmin,ymin = Minimap:GetLeft(), Minimap:GetBottom()\n\tMyMod_MinimapButton:SetToplevel(true)\n\txpos = xmin-xpos\/UIParent:GetScale()+70 -- get coordinates as differences from the center of the minimap\n\typos = ypos\/UIParent:GetScale()-ymin-70\n \n\tEmoticons_Settings[\"MinimapPos\"] = math.deg(math.atan2(ypos,xpos)) -- save the degrees we are relative to the minimap center\n\tMyMod_MinimapButton_Reposition() -- move the button\n end\n \n -- Put your code that you want on a minimap button click here. arg1=\"LeftButton\", \"RightButton\", etc\n function MyMod_MinimapButton_OnClick()\n\tLib_ToggleDropDownMenu(1, nil, EmoticonChatFrameDropDown, MyMod_MinimapButton, 0, 0);\n end\n \n function ItemTextPageText.SetText(self,msg,...)\n\tif(Emoticons_Settings[\"MAIL\"] and msg ~= nil) then\n\t msg = Emoticons_RunReplacement(msg);\n\tend\n\tItemTextFrameSetText(self,msg,...);\n end\n \n local OpenMailBodyTextSetText = OpenMailBodyText.SetText;\n function OpenMailBodyText.SetText(self,msg,...)\n\tif(Emoticons_Settings[\"MAIL\"] and msg ~= nil) then\n\t msg = Emoticons_RunReplacement(msg);\n\tend\n\tOpenMailBodyTextSetText(self,msg,...);\n end\n \n function Emoticons_LoadChatFrameDropdown(self, level, menuList)\n\tlocal info = Lib_UIDropDownMenu_CreateInfo();\n\tif (level or 1) == 1 then\n\t for k,v in ipairs(dropdown_options) do\n\t\tif (Emoticons_Settings[\"FAVEMOTES\"][k]) then\n\t\t info.hasArrow = true;\n\t\t info.text = v[1];\n\t\t info.value = false;\n\t\t info.menuList = k;\n\t\t Lib_UIDropDownMenu_AddButton(info);\n\t\tend\n\t end\n\telse\n\t first=true;\n\t for ke,va in ipairs(dropdown_options[menuList]) do\n\t\tif (first) then\n\t\t first = false;\n\t\telse\n\t\t --print(ke..\" \"..va);\n\t\t info.text = \"|T\"..defaultpack[va]..\"|t \"..va;\n\t\t info.value = va;\n\t\t info.func = Emoticons_Dropdown_OnClick;\n\t\t Lib_UIDropDownMenu_AddButton(info, level);\n\t\tend\n\t end\n \n\tend\n end\n \n function Emoticons_Setxposi(x)\n\tEmoticons_Settings[\"sliderX\"]=x;\n\tb:SetPoint(\"TOPLEFT\",Emoticons_Settings[\"sliderX\"],Emoticons_Settings[\"sliderY\"]);\n end\n \n function Emoticons_Setyposi(y)\n\tEmoticons_Settings[\"sliderY\"]=y;\n\tb:SetPoint(\"TOPLEFT\",Emoticons_Settings[\"sliderX\"],Emoticons_Settings[\"sliderY\"]);\n end\n \n function Emoticons_Dropdown_OnClick(self,arg1,arg2,arg3)\n\tif(ACTIVE_CHAT_EDIT_BOX ~= nil) then\n\t ACTIVE_CHAT_EDIT_BOX:Insert(self.value);\n\tend\n end\n \n function Emoticons_MailFrame_OnChar(self)\n\tlocal msg = self:GetText();\n\tif(Emoticons_Eyecandy and Emoticons_Settings[\"MAIL\"] and string.sub(msg,1,1) ~= \"\/\") then\n\t self:SetText(Emoticons_RunReplacement(msg));\n\tend\n end\n \n local sm = SendMail;\n function SendMail(recipient,subject,msg,...)\n\tif(Emoticons_Eyecandy and Emoticons_Settings[\"MAIL\"]) then\n\t msg = Emoticons_Deformat(msg);\n\tend\n\tsm(recipient,subject,msg,...);\n end\n \n \n \n local scm = SendChatMessage;\n function SendChatMessage(msg,...)\n\tif(Emoticons_Eyecandy) then\n\t msg = Emoticons_Deformat(msg);\n\tend\n\tscm(msg,...);\n end\n \n local bnsw = BNSendWhisper;\n function BNSendWhisper(id,msg,...)\n\tif(Emoticons_Eyecandy) then\n\t msg = Emoticons_Deformat(msg);\n\tend\n\tbnsw(id,msg,...);\n end\n \n function Emoticons_UpdateChatFilters()\n\tfor k,v in pairs(Emoticons_Settings) do\n\t if(k ~= \"MAIL\" and k ~= \"TWITCHBUTTON\" and k ~= \"sliderX\" and k ~= \"sliderY\") then\n\t\tif(v) then\n\t\t ChatFrame_AddMessageEventFilter(k,Emoticons_MessageFilter)\n\t\telse\n\t\t ChatFrame_RemoveMessageEventFilter(k,Emoticons_MessageFilter);\n\t\tend\n\t end\n\tend\n end\n \n function Emoticons_MessageFilter(self, event, msg, ...)\n \n\tmsg = Emoticons_RunReplacement(msg);\n \n\treturn false, msg, ...\n end\n -- addon hat saved vars geladen\n function Emoticons_OnEvent(self,event,...)\n\tif(event == \"ADDON_LOADED\" and select(1,...) == \"TwitchEmotes\") then\n\t for k,v in pairs(origsettings) do\n\t\tif(Emoticons_Settings[k] == nil) then\n\t\t Emoticons_Settings[k] = v;\n\t\tend\n\t end\n\t Emoticons_UpdateChatFilters();\n \n \t b:SetPoint(\"TOPLEFT\",Emoticons_Settings[\"sliderX\"],Emoticons_Settings[\"sliderY\"]);\n\t b:SetWidth(24);\n\t b:SetHeight(24);\n\t b:RegisterForClicks(\"AnyUp\", \"AnyDown\");\n\t b:SetNormalTexture(\"Interface\\\\AddOns\\\\TwitchEmotes\\\\1337.tga\");\n\t Emoticons_SetTwitchButton(Emoticons_Settings[\"TWITCHBUTTON\"]);\n\t Emoticons_SetMinimapButton(Emoticons_Settings[\"MINIMAPBUTTON\"]);\n\t MyMod_MinimapButton_Reposition();\n \tend\n end\n \n \n \n function Emoticons_OptionsWindow_OnShow(self)\n\tfor k,v in pairs(Emoticons_Settings) do\n\t local cb = getglobal(\"EmoticonsOptionsControlsPanel\"..k);\n \n\t if(cb ~= nil) then\n\t\tcb:SetChecked(Emoticons_Settings[k]);\n\t end\n\tend\n\tSliderXText:SetText(\"Position X: \"..Emoticons_Settings[\"sliderX\"]);\n\tSliderYText:SetText(\"Position Y: \"..Emoticons_Settings[\"sliderY\"]);\n\t--EmoticonsOptionsControlsPanelEyecandy:SetChecked(Emoticons_Eyecandy);\n \n\tfavall = CreateFrame(\"CheckButton\",\"favall_GlobalName\",EmoticonsOptionsControlsPanel,\"UIRadioButtonTemplate\" );\n\t--getglobal(\"favall_GlobalName\"):SetChecked(false);\n\tfavall:SetPoint(\"TOPLEFT\", 17,-330);\n\tgetglobal(favall:GetName()..\"Text\"):SetText(\"Check all\");\n\tfavall.tooltip = \"Check all boxes below.\";\n\tgetglobal(\"favall_GlobalName\"):SetScript(\"OnClick\",\n\tfunction(self)\n\t if (self:GetChecked()) then\n\t\tif (getglobal(\"favnone_GlobalName\"):GetChecked() == true) then\n\t\t getglobal(\"favnone_GlobalName\"):SetChecked(false);\n\t\tend\n\t\tself:SetChecked(true);\n\t\tfor n,m in ipairs(Emoticons_Settings[\"FAVEMOTES\"]) do\n\t\t Emoticons_Settings[\"FAVEMOTES\"][n] = true;\n\t\t --print(\"favCheckButton_\"..dropdown_options[n][1]);\n\t\t if (getglobal(\"favCheckButton_\"..dropdown_options[n][1]):GetChecked() == false) then\n\t\t\tgetglobal(\"favCheckButton_\"..dropdown_options[n][1]):SetChecked(true);\n\t\t end\n\t\tend\n\t else\n\t\t--Emoticons_Settings[\"FAVEMOTES\"][a] = false;\n\t end\n\tend\n\t);\n \n\tfavnone = CreateFrame(\"CheckButton\", \"favnone_GlobalName\", favall_GlobalName,\"UIRadioButtonTemplate\" );\n\t--getglobal(\"favnone_GlobalName\"):SetChecked(false);\n\tfavnone:SetPoint(\"TOPLEFT\", 110,0);\n\tgetglobal(favnone:GetName()..\"Text\"):SetText(\"Uncheck all\");\n\tfavnone.tooltip = \"Uncheck all boxes below.\";\n\tgetglobal(\"favnone_GlobalName\"):SetScript(\"OnClick\",\n\tfunction(self)\n\t if (self:GetChecked()) then\n\t\tif (getglobal(\"favall_GlobalName\"):GetChecked() == true) then\n\t\t getglobal(\"favall_GlobalName\"):SetChecked(false);\n\t\tend\n\t\tself:SetChecked(true);\n\t\tfor n,m in ipairs(Emoticons_Settings[\"FAVEMOTES\"]) do\n\t\t Emoticons_Settings[\"FAVEMOTES\"][n] = false;\n\t\t if (getglobal(\"favCheckButton_\"..dropdown_options[n][1]):GetChecked()==true) then\n\t\t\tgetglobal(\"favCheckButton_\"..dropdown_options[n][1]):SetChecked(false);\n\t\t end\n\t\tend\n\t\t--Emoticons_Settings[\"FAVEMOTES\"][a] = true;\n\t else\n\t\t--Emoticons_Settings[\"FAVEMOTES\"][a] = false;\n\t end\n\tend\n\t);\n \n\tfavframe = CreateFrame(\"Frame\", \"favframe_GlobalName\", favall_GlobalName);\n\tfavframe:SetPoint(\"TOPLEFT\", 0,-24);\n\tfavframe:SetSize(590,175);\n \n\tfavframe:SetBackdrop({bgFile=\"Interface\\\\ChatFrame\\\\ChatFrameBackground\",edgeFile=\"Interface\\\\Tooltips\\\\UI-Tooltip-Border\",tile=true,tileSize=5,edgeSize= 2,});\n\tfavframe:SetBackdropColor(0, 0, 0,0.5);\n\tfirst=true;\n\titemcnt=0\n\tfor a,c in ipairs(dropdown_options) do\n \n\t if first then\n\t\tfavCheckButton = CreateFrame(\"CheckButton\", \"favCheckButton_\"..c[1], favframe_GlobalName, \"ChatConfigCheckButtonTemplate\");\n\t\tfirst=false;\n\t\tfavCheckButton:SetPoint(\"TOPLEFT\", 0, 3);\n\t else\n\t\t--favbuttonlist=loadstring(\"favCheckButton_\"..anchor);\n \n\t\tfavCheckButton = CreateFrame(\"CheckButton\", \"favCheckButton_\"..c[1], favframe_GlobalName, \"ChatConfigCheckButtonTemplate\");\n\t\tfavCheckButton:SetParent(\"favCheckButton_\"..anchor);\n\t\tif ((itemcnt % 10) ~= 0) then\n\t\t favCheckButton:SetPoint(\"TOPLEFT\", 0, -16);\n\t\telse\n \n\t\t favCheckButton:SetPoint(\"TOPLEFT\", 110, 9*16);\n\t\tend\n\t end\n\t itemcnt=itemcnt+1;\n\t anchor=c[1];\n \n\t --code=[[print(\"favCheckButton_\"..b[1]..\":SetText(b[1])\")]];\n \n\t getglobal(favCheckButton:GetName()..\"Text\"):SetText(c[1]);\n\t if (getglobal(\"favCheckButton_\"..c[1]):GetChecked() ~= Emoticons_Settings[\"FAVEMOTES\"][a]) then\n\t\tgetglobal(\"favCheckButton_\"..c[1]):SetChecked(Emoticons_Settings[\"FAVEMOTES\"][a]);\n\t end\n\t favCheckButton.tooltip = \"Checked boxes will show in the dropdownlist.\";\n\t favCheckButton:SetScript(\"OnClick\",\n\t function(self)\n\t\tif (self:GetChecked()) then\n\t\t Emoticons_Settings[\"FAVEMOTES\"][a] = true;\n\t\telse\n\t\t Emoticons_Settings[\"FAVEMOTES\"][a] = false;\n\t\tend\n\t end\n\t );\n \n\tend\n end\n \n function Emoticons_Deformat(msg)\n\tfor k,v in pairs(emoticons) do\n\t msg=string.gsub(msg,\"|T\"..defaultpack[k]..\"%:28%:28|t\",v);\n\tend\n\treturn msg;\n end\n \n function Emoticons_RunReplacement(msg)\n \n\t--remember to watch out for |H|h|h's\n \n\tlocal outstr = \"\";\n\tlocal origlen = string.len(msg);\n\tlocal startpos = 1;\n\tlocal endpos;\n \n\twhile(startpos <= origlen) do\n\t endpos = origlen;\n\t local pos = string.find(msg,\"|H\",startpos,true);\n\t if(pos ~= nil) then\n\t\tendpos = pos;\n\t end\n\t outstr = outstr .. Emoticons_InsertEmoticons(string.sub(msg,startpos,endpos)); --run replacement on this bit\n\t startpos = endpos + 1;\n\t if(pos ~= nil) then\n\t\tendpos = string.find(msg,\"|h\",startpos,true);\n\t\tif(endpos == nil) then\n\t\t endpos = origlen;\n\t\tend\n\t\tif(startpos < endpos) then\n\t\t outstr = outstr .. string.sub(msg,startpos,endpos); --don't run replacement on this bit\n\t\t startpos = endpos + 1;\n\t\tend\n\t end\n\tend\n \n\treturn outstr;\n end\n \n function Emoticons_SetEyecandy(state)\n\tif(state) then\n\t Emoticons_Eyecandy = true;\n\t if(ACTIVE_CHAT_EDIT_BOX~=nil) then\n\t\tACTIVE_CHAT_EDIT_BOX:SetText(Emoticons_RunReplacement(ACTIVE_CHAT_EDIT_BOX:GetText()));\n\t end\n\telse\n\t Emoticons_Eyecandy = false;\n\t if(ACTIVE_CHAT_EDIT_BOX~=nil) then\n\t\tACTIVE_CHAT_EDIT_BOX:SetText(Emoticons_Deformat(ACTIVE_CHAT_EDIT_BOX:GetText()));\n\t end\n\tend\n end\n \n function Emoticons_SetTwitchButton(state)\n\tif(state) then\n\t state = true;\n\telse\n\t state = false;\n\tend\n\tEmoticons_Settings[\"TWITCHBUTTON\"]=state;\n\tif(state) then\n\t TestButton:Hide();\n\telse\n\t TestButton:Hide();\n\tend\n end\n \n function Emoticons_SetMinimapButton(state)\n\tif(state) then\n\t state = true;\n\telse\n\t state = false;\n\tend\n\tEmoticons_Settings[\"MINIMAPBUTTON\"]=state;\n\tif(state) then\n\t MyMod_MinimapButton:Show();\n\telse\n\t MyMod_MinimapButton:Hide();\n\tend\n end\n \n \n function Emoticons_InsertEmoticons(msg)\n \t--print(table.getn(words)) ;\n\tfor k,v in pairs(emoticons) do\n\t if (string.find(msg,k,1,true)) then\n\t\tmsg = string.gsub(msg,\"(%s)\"..k..\"(%s)\",\"%1|T\"..defaultpack[v]..\"|t%2\");\n\t\tmsg = string.gsub(msg,\"(%s)\"..k..\"$\",\"%1|T\"..defaultpack[v]..\"|t\");\n\t\tmsg = string.gsub(msg,\"^\"..k..\"(%s)\",\"|T\"..defaultpack[v]..\"|t%1\");\n\t\tmsg = string.gsub(msg,\"^\"..k..\"$\",\"|T\"..defaultpack[v]..\"|t\");\n\t\tmsg = string.gsub(msg,\"(%s)\"..k..\"(%c)\",\"%1|T\"..defaultpack[v]..\"|t%2\");\n\t\tmsg = string.gsub(msg,\"(%s)\"..k..\"(%s)\",\"%1|T\"..defaultpack[v]..\"|t%2\");\n\t end\n\tend\n\n\treturn msg;\n end\n \n function Emoticons_SetType(chattype,state)\n\tif(state) then\n\t state = true;\n\telse\n\t state = false;\n\tend\n\tif(chattype == \"CHAT_MSG_RAID\") then\n\t Emoticons_Settings[\"CHAT_MSG_RAID_LEADER\"] = state;\n\t Emoticons_Settings[\"CHAT_MSG_RAID_WARNING\"] = state;\n\tend\n\tif(chattype == \"CHAT_MSG_PARTY\") then\n\t Emoticons_Settings[\"CHAT_MSG_PARTY_LEADER\"] = state;\n\t Emoticons_Settings[\"CHAT_MSG_PARTY_GUIDE\"] = state;\n\tend\n\tif(chattype == \"CHAT_MSG_WHISPER\") then\n\t Emoticons_Settings[\"CHAT_MSG_WHISPER_INFORM\"] = state;\n\tend\n\tif(chattype == \"CHAT_MSG_INSTANCE_CHAT\") then\n\t Emoticons_Settings[\"CHAT_MSG_INSTANCE_CHAT_LEADER\"] = state;\n\tend\n\tif(chattype == \"CHAT_MSG_BN_WHISPER\") then\n\t Emoticons_Settings[\"CHAT_MSG_BN_WHISPER_INFORM\"] = state;\n\tend\n \n\tEmoticons_Settings[chattype] = state;\n\tEmoticons_UpdateChatFilters();\n end\n \n b = CreateFrame(\"Button\", \"TestButton\", ChatFrame1, \"UIPanelButtonTemplate\");","avg_line_length":51.607727738,"max_line_length":621,"alphanum_fraction":0.7055800439} +{"size":4544,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"-- Lua stuff\r\nlocal squish = 80\r\nlocal xx = 520;\r\nlocal yy = 400;\r\nlocal xx2 = 870;\r\nlocal yy2 = 450;\r\nlocal ofs = 35;\r\nlocal followchars = true;\r\nlocal del = 0;\r\nlocal del2 = 0;\r\nfunction onCreate()\r\n makeLuaSprite('Sky', 'zombehsky', 0, -75)\r\n setLuaSpriteScrollFactor('Sky', 1.1, 1.1);\r\n makeLuaSprite('Hill', 'hill', -150, 150)\r\n makeLuaSprite('fence', 'fence', 0, 200)\r\n makeLuaSprite('floor', 'floor', -200, 600)\r\n makeAnimatedLuaSprite('edd', 'edd', 200, 220);\r\n\tluaSpriteAddAnimationByPrefix('edd', 'idle', 'edd', 24, true);\r\n makeLuaSprite('barleft','',-4,0)\r\n makeGraphic('barleft',163,882,'000000')\r\n makeLuaSprite('barright','',1119,0)\r\n makeGraphic('barright',162,882,'000000')\r\n setScrollFactor('barleft',0,0)\r\n setObjectCamera('barleft','hud')\r\n setScrollFactor('barright',0,0)\r\n setObjectCamera('barright','hud')\r\n addLuaSprite('Sky', false)\r\n addLuaSprite('Hill', false)\r\n addLuaSprite('fence', false)\r\n addLuaSprite('floor', false)\r\n addLuaSprite('edd', false)\r\n addLuaSprite('barleft',true)\r\n addLuaSprite('barright',true)\r\nend\r\nfunction onUpdate(elapsed)\r\n\r\n if not middlescroll then\r\n noteTweenX('0',0,defaultOpponentStrumX0 + squish,0.15,'linear')\r\n noteTweenX('1',1,defaultOpponentStrumX1 + squish,0.15,'linear')\r\n noteTweenX('2',2,defaultOpponentStrumX2 + squish,0.15,'linear')\r\n noteTweenX('3',3,defaultOpponentStrumX3 + squish,0.15,'linear')\r\n noteTweenX('4',4,defaultPlayerStrumX0 - squish,0.01,'linear')\r\n noteTweenX('5',5,defaultPlayerStrumX1 - squish,0.01,'linear')\r\n noteTweenX('6',6,defaultPlayerStrumX2 - squish,0.01,'linear')\r\n noteTweenX('7',7,defaultPlayerStrumX3 - squish,0.01,'linear')\r\n\r\n end\r\n\r\n if del > 0 then\r\n\t\tdel = del - 1\r\n\tend\r\n\tif del2 > 0 then\r\n\t\tdel2 = del2 - 1\r\n\tend\r\n if followchars == true then\r\n if mustHitSection == false then\r\n if getProperty('dad.animation.curAnim.name') == 'singLEFT' then\r\n triggerEvent('Camera Follow Pos',xx-ofs,yy)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singRIGHT' then\r\n triggerEvent('Camera Follow Pos',xx+ofs,yy)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singUP' then\r\n triggerEvent('Camera Follow Pos',xx,yy-ofs)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singDOWN' then\r\n triggerEvent('Camera Follow Pos',xx,yy+ofs)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singLEFT-alt' then\r\n triggerEvent('Camera Follow Pos',xx-ofs,yy)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singRIGHT-alt' then\r\n triggerEvent('Camera Follow Pos',xx+ofs,yy)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singUP-alt' then\r\n triggerEvent('Camera Follow Pos',xx,yy-ofs)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'singDOWN-alt' then\r\n triggerEvent('Camera Follow Pos',xx,yy+ofs)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'idle-alt' then\r\n triggerEvent('Camera Follow Pos',xx,yy)\r\n end\r\n if getProperty('dad.animation.curAnim.name') == 'idle' then\r\n triggerEvent('Camera Follow Pos',xx,yy)\r\n end\r\n else\r\n\r\n if getProperty('boyfriend.animation.curAnim.name') == 'singLEFT' then\r\n triggerEvent('Camera Follow Pos',xx2-ofs,yy2)\r\n end\r\n if getProperty('boyfriend.animation.curAnim.name') == 'singRIGHT' then\r\n triggerEvent('Camera Follow Pos',xx2+ofs,yy2)\r\n end\r\n if getProperty('boyfriend.animation.curAnim.name') == 'singUP' then\r\n triggerEvent('Camera Follow Pos',xx2,yy2-ofs)\r\n end\r\n if getProperty('boyfriend.animation.curAnim.name') == 'singDOWN' then\r\n triggerEvent('Camera Follow Pos',xx2,yy2+ofs)\r\n end\r\n\t if getProperty('boyfriend.animation.curAnim.name') == 'idle' then\r\n triggerEvent('Camera Follow Pos',xx2,yy2)\r\n end\r\n end\r\n else\r\n triggerEvent('Camera Follow Pos','','')\r\n end\r\nend\r\nfunction opponentNoteHit()\r\n health = getProperty('health')\r\n if getProperty('health') > 0.1 then\r\n setProperty('health', health- 0.017);\r\n end\r\nend","avg_line_length":39.8596491228,"max_line_length":83,"alphanum_fraction":0.5911091549} +{"size":424,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"-- TODO INDRA discuss conditional concatenation\n-- When assertx is used it concats all the args except the condition\n-- assertx only conditionally creats the concat string so we dont have to pay\n-- the cost always\nlocal assertx = function(a, ...)\n if a then return a, ... end\n if ... ~= nil then\n local args = {...}\n error(table.concat(args), 2)\n else\n error(\"assertion failed!\", 2)\n end\nend\n\nreturn assertx\n","avg_line_length":26.5,"max_line_length":77,"alphanum_fraction":0.6839622642} +{"size":18676,"ext":"lua","lang":"Lua","max_stars_count":1.0,"content":"--------------------------------------------------------------------------------\n-- HCOMP \/ HL-ZASM compiler\n--\n-- Tokenizer\n--------------------------------------------------------------------------------\n\n\n\n\n--------------------------------------------------------------------------------\n-- All symbols (tokens) recognized by parser\nHCOMP.TOKEN_TEXT = {}\nHCOMP.TOKEN_TEXT[\"IDENT\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}} -- ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz _\nHCOMP.TOKEN_TEXT[\"NUMBER\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}} -- 0123456789\nHCOMP.TOKEN_TEXT[\"LPAREN\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"(\"}}\nHCOMP.TOKEN_TEXT[\"RPAREN\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\")\"}}\nHCOMP.TOKEN_TEXT[\"LBRACKET\"] = {{ \"C\",\"HLZASM\"},{\"{\"}}\nHCOMP.TOKEN_TEXT[\"RBRACKET\"] = {{ \"C\",\"HLZASM\"},{\"}\"}}\nHCOMP.TOKEN_TEXT[\"LSUBSCR\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"[\"}}\nHCOMP.TOKEN_TEXT[\"RSUBSCR\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"]\"}}\nHCOMP.TOKEN_TEXT[\"COLON\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\";\"}}\nHCOMP.TOKEN_TEXT[\"DCOLON\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\":\"}}\nHCOMP.TOKEN_TEXT[\"HASH\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"#\"}}\nHCOMP.TOKEN_TEXT[\"TIMES\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"*\"}}\nHCOMP.TOKEN_TEXT[\"SLASH\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"\/\"}}\nHCOMP.TOKEN_TEXT[\"MODULUS\"] = {{ \"C\",\"HLZASM\"},{\"%\"}}\nHCOMP.TOKEN_TEXT[\"PLUS\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"+\"}}\nHCOMP.TOKEN_TEXT[\"MINUS\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"-\"}}\nHCOMP.TOKEN_TEXT[\"AND\"] = {{ \"C\",\"HLZASM\"},{\"&\"}}\nHCOMP.TOKEN_TEXT[\"OR\"] = {{ \"C\",\"HLZASM\"},{\"|\"}}\nHCOMP.TOKEN_TEXT[\"XOR\"] = {{ \"C\",\"HLZASM\"},{\"^\"}}\nHCOMP.TOKEN_TEXT[\"POWER\"] = {{ \"C\",\"HLZASM\"},{\"^^\"}}\nHCOMP.TOKEN_TEXT[\"INC\"] = {{ \"C\",\"HLZASM\"},{\"++\"}}\nHCOMP.TOKEN_TEXT[\"DEC\"] = {{ \"C\",\"HLZASM\"},{\"--\"}}\nHCOMP.TOKEN_TEXT[\"SHL\"] = {{ \"C\",\"HLZASM\"},{\"<<\"}}\nHCOMP.TOKEN_TEXT[\"SHR\"] = {{ \"C\",\"HLZASM\"},{\">>\"}}\nHCOMP.TOKEN_TEXT[\"EQL\"] = {{ \"C\",\"HLZASM\"},{\"==\"}}\nHCOMP.TOKEN_TEXT[\"NEQ\"] = {{ \"C\",\"HLZASM\"},{\"!=\"}}\nHCOMP.TOKEN_TEXT[\"LEQ\"] = {{ \"C\",\"HLZASM\"},{\"<=\"}}\nHCOMP.TOKEN_TEXT[\"LSS\"] = {{ \"C\",\"HLZASM\"},{\"<\"}}\nHCOMP.TOKEN_TEXT[\"GEQ\"] = {{ \"C\",\"HLZASM\"},{\">=\"}}\nHCOMP.TOKEN_TEXT[\"GTR\"] = {{ \"C\",\"HLZASM\"},{\">\"}}\nHCOMP.TOKEN_TEXT[\"NOT\"] = {{ \"C\",\"HLZASM\"},{\"!\"}}\nHCOMP.TOKEN_TEXT[\"EQUAL\"] = {{ \"C\",\"HLZASM\"},{\"=\"}}\nHCOMP.TOKEN_TEXT[\"LAND\"] = {{ \"C\",\"HLZASM\"},{\"&&\"}}\nHCOMP.TOKEN_TEXT[\"LOR\"] = {{ \"C\",\"HLZASM\"},{\"||\"}}\nHCOMP.TOKEN_TEXT[\"EQLADD\"] = {{ \"C\",\"HLZASM\"},{\"+=\"}}\nHCOMP.TOKEN_TEXT[\"EQLSUB\"] = {{ \"C\",\"HLZASM\"},{\"-=\"}}\nHCOMP.TOKEN_TEXT[\"EQLMUL\"] = {{ \"C\",\"HLZASM\"},{\"*=\"}}\nHCOMP.TOKEN_TEXT[\"EQLDIV\"] = {{ \"C\",\"HLZASM\"},{\"\/=\"}}\nHCOMP.TOKEN_TEXT[\"COMMA\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\",\"}}\nHCOMP.TOKEN_TEXT[\"DOT\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\".\"}}\n\nHCOMP.TOKEN_TEXT[\"GOTO\"] = {{\"C\",\"HLZASM\"},{\"GOTO\"}}\nHCOMP.TOKEN_TEXT[\"FOR\"] = {{\"C\",\"HLZASM\"},{\"FOR\"}}\nHCOMP.TOKEN_TEXT[\"IF\"] = {{\"C\",\"HLZASM\"},{\"IF\"}}\nHCOMP.TOKEN_TEXT[\"ELSE\"] = {{\"C\",\"HLZASM\"},{\"ELSE\"}}\nHCOMP.TOKEN_TEXT[\"WHILE\"] = {{\"C\",\"HLZASM\"},{\"WHILE\"}}\nHCOMP.TOKEN_TEXT[\"DO\"] = {{\"C\",\"HLZASM\"},{\"DO\"}}\nHCOMP.TOKEN_TEXT[\"SWITCH\"] = {{\"C\",\"HLZASM\"},{\"SWITCH\"}}\nHCOMP.TOKEN_TEXT[\"CASE\"] = {{\"C\",\"HLZASM\"},{\"CASE\"}}\nHCOMP.TOKEN_TEXT[\"CONST\"] = {{\"C\",\"HLZASM\"},{\"CONST\"}}\nHCOMP.TOKEN_TEXT[\"RETURN\"] = {{\"C\",\"HLZASM\"},{\"RETURN\"}}\nHCOMP.TOKEN_TEXT[\"BREAK\"] = {{\"C\",\"HLZASM\"},{\"BREAK\"}}\nHCOMP.TOKEN_TEXT[\"CONTINUE\"] = {{\"C\",\"HLZASM\"},{\"CONTINUE\"}}\nHCOMP.TOKEN_TEXT[\"EXPORT\"] = {{\"C\",\"HLZASM\"},{\"EXPORT\"}}\nHCOMP.TOKEN_TEXT[\"INLINE\"] = {{\"C\",\"HLZASM\"},{\"INLINE\"}}\nHCOMP.TOKEN_TEXT[\"FORWARD\"] = {{\"C\",\"HLZASM\"},{\"FORWARD\"}}\nHCOMP.TOKEN_TEXT[\"LREGISTER\"] = {{\"C\",\"HLZASM\"},{\"REGISTER\"}}\nHCOMP.TOKEN_TEXT[\"STRUCT\"] = {{\"C\",\"HLZASM\"},{\"STRUCT\"}}\n\nHCOMP.TOKEN_TEXT[\"DB\"] = {{\"ZASM\",\"HLZASM\"},{\"DB\"}}\nHCOMP.TOKEN_TEXT[\"ALLOC\"] = {{\"ZASM\",\"HLZASM\"},{\"ALLOC\"}}\nHCOMP.TOKEN_TEXT[\"VECTOR\"] = {{\"ZASM\",\"HLZASM\"},{\"SCALAR\",\"VECTOR1F\",\"VECTOR2F\",\"UV\",\"VECTOR3F\",\n \"VECTOR4F\",\"COLOR\",\"VEC1F\",\"VEC2F\",\"VEC3F\",\"VEC4F\",\"MATRIX\"}}\n\nHCOMP.TOKEN_TEXT[\"STRALLOC\"] = {{\"ZASM\",\"HLZASM\"},{\"STRING\"}}\nHCOMP.TOKEN_TEXT[\"DB\"] = {{\"ZASM\",\"HLZASM\"},{\"DB\"}}\nHCOMP.TOKEN_TEXT[\"DEFINE\"] = {{\"ZASM\",\"HLZASM\"},{\"DEFINE\"}}\nHCOMP.TOKEN_TEXT[\"CODE\"] = {{\"ZASM\",\"HLZASM\"},{\"CODE\"}}\nHCOMP.TOKEN_TEXT[\"DATA\"] = {{\"ZASM\",\"HLZASM\"},{\"DATA\"}}\nHCOMP.TOKEN_TEXT[\"ORG\"] = {{\"ZASM\",\"HLZASM\"},{\"ORG\"}}\nHCOMP.TOKEN_TEXT[\"OFFSET\"] = {{\"ZASM\",\"HLZASM\"},{\"OFFSET\"}}\nHCOMP.TOKEN_TEXT[\"TYPE\"] = {{\"ZASM\",\"HLZASM\"},{\"VOID\",\"FLOAT\",\"CHAR\",\"INT48\",\"VECTOR\"}}\nHCOMP.TOKEN_TEXT[\"CTYPE\"] = { {\"C\"},{\"VOID\",\"FLOAT\",\"CHAR\",\"INT\",\"VECTOR\"}}\nHCOMP.TOKEN_TEXT[\"USERTYPE\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}}\n\nHCOMP.TOKEN_TEXT[\"PRESERVE\"] = {{\"HLZASM\"},{\"PRESERVE\"}}\nHCOMP.TOKEN_TEXT[\"ZAP\"] = {{\"HLZASM\"},{\"ZAP\"}}\n\nHCOMP.TOKEN_TEXT[\"REGISTER\"] = {{\"ZASM\",\"HLZASM\"},{\"EAX\",\"EBX\",\"ECX\",\"EDX\",\"ESI\",\"EDI\",\"ESP\",\"EBP\"}}\nHCOMP.TOKEN_TEXT[\"SEGMENT\"] = {{\"ZASM\",\"HLZASM\"},{\"CS\",\"SS\",\"DS\",\"ES\",\"GS\",\"FS\",\"KS\",\"LS\"}}\nHCOMP.TOKEN_TEXT[\"OPCODE\"] = {{\"ZASM\",\"HLZASM\"},{}} -- mov, cmp, etc...\nHCOMP.TOKEN_TEXT[\"COMMENT1\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"\/\/\"}} -- comment 1\nHCOMP.TOKEN_TEXT[\"COMMENT2\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"\/*\"}} -- comment 2\nHCOMP.TOKEN_TEXT[\"COMMENT3\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{\"*\/\"}} -- comment 3\nHCOMP.TOKEN_TEXT[\"MACRO\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}} -- preprocessor macro\nHCOMP.TOKEN_TEXT[\"STRING\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}} -- buffer of chars\nHCOMP.TOKEN_TEXT[\"CHAR\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}} -- single character\nHCOMP.TOKEN_TEXT[\"EOF\"] = {{\"ZASM\",\"C\",\"HLZASM\"},{}} -- end of file\n\n-- Add ZCPU ports\nfor port=0,1023 do\n HCOMP.TOKEN_TEXT[\"REGISTER\"][2][1024+port] = \"PORT\"..port\nend\n\n-- Add extended registers\nfor reg=0,31 do\n HCOMP.TOKEN_TEXT[\"REGISTER\"][2][96+reg] = \"R\"..reg\nend\n\n\n\n\n--------------------------------------------------------------------------------\n-- Generate table of all possible tokens\nHCOMP.TOKEN = {}\nHCOMP.TOKEN_NAME = {}\nHCOMP.TOKEN_NAME2 = {}\nlocal IDX = 1\nfor tokenName,tokenData in pairs(HCOMP.TOKEN_TEXT) do\n HCOMP.TOKEN[tokenName] = IDX\n HCOMP.TOKEN_NAME[IDX] = tokenName\n HCOMP.TOKEN_NAME2[IDX] = {}\n\n for k,v in pairs(tokenData[2]) do\n HCOMP.TOKEN_NAME2[IDX][k] = v\n end\n IDX = IDX + 1\nend\n\n-- Create lookup tables for faster parsing\nHCOMP.PARSER_LOOKUP = {}\nfor symID,symList in pairs(HCOMP.TOKEN_TEXT) do\n for _,languageName in pairs(symList[1]) do\n HCOMP.PARSER_LOOKUP[languageName] = HCOMP.PARSER_LOOKUP[languageName] or {}\n for symSubID,symText in pairs(symList[2]) do\n if symID == \"VECTOR\" then -- Special case for vector symbols\n HCOMP.PARSER_LOOKUP[languageName][symText] = { symText, HCOMP.TOKEN[symID] }\n else\n HCOMP.PARSER_LOOKUP[languageName][symText] = { symSubID, HCOMP.TOKEN[symID] }\n end\n end\n end\nend\n\n\n-- Create lookup table for double-character tokens\nHCOMP.PARSER_DBCHAR = {}\nfor symID,symList in pairs(HCOMP.TOKEN_TEXT) do\n local symText = symList[2][1] or \"\"\n if #symText == 2 then\n local char1 = string.sub(symText,1,1)\n local char2 = string.sub(symText,2,2)\n HCOMP.PARSER_DBCHAR[char1] = HCOMP.PARSER_DBCHAR[char1] or {}\n HCOMP.PARSER_DBCHAR[char1][char2] = true\n end\nend\n\n\n-- Add opcodes to the lookup table\nfor _,languageName in pairs(HCOMP.TOKEN_TEXT[\"OPCODE\"][1]) do\n HCOMP.PARSER_LOOKUP[languageName] = HCOMP.PARSER_LOOKUP[languageName] or {}\n for opcodeName,opcodeNo in pairs(HCOMP.OpcodeNumber) do\n HCOMP.PARSER_LOOKUP[languageName][string.upper(opcodeName)] = { opcodeName, HCOMP.TOKEN.OPCODE }\n end\nend\n\n\n\n\n--------------------------------------------------------------------------------\n-- Skip a single file in input\nfunction HCOMP:nextFile()\n table.remove(self.Code,1)\n if not self.Code[1] then\n self.Code[1] = { Text = \"\", Line = 1, Col = 1, File = \"internal error\" }\n end\nend\n\n-- Return next character\nfunction HCOMP:getChar()\n local char = string.sub(self.Code[1].Text,1,1)\n if char == \"\" then\n self:nextFile()\n char = string.sub(self.Code[1].Text,1,1)\n end\n return char\nend\n\n-- Skip current char\nfunction HCOMP:nextChar()\n local code = self.Code[1]\n if code.Text == \"\" then\n self:nextFile()\n else\n local char = string.sub(code.Text,1,1)\n if char == \"\\n\" then\n code.Line = code.Line + 1\n code.Col = 1\n else\n code.Col = code.Col + 1\n end\n code.Text = string.sub(code.Text,2)\n end\nend\n\n\n\n\n--------------------------------------------------------------------------------\n-- Tokenize the code\nfunction HCOMP:Tokenize() local TOKEN = self.TOKEN\n -- Skip whitespaces\n while (self:getChar() == \" \") or\n (self:getChar() == \"\\t\") or\n (self:getChar() == \"\\n\") do self:nextChar() end\n\n -- Store this line as previous (FIXME: need this?)\n self.PreviousCodeLine = self.Code[1].Text\n\n -- Read token position\n local tokenPosition = { Line = self.Code[1].Line,\n Col = self.Code[1].Col,\n File = self.Code[1].File }\n\n -- Check for end of file\n if self:getChar() == \"\" then\n table.insert(self.Tokens,{\n Type = TOKEN.EOF,\n Data = nil,\n Position = tokenPosition,\n })\n return false\n end\n\n -- Is it a preprocessor macro\n if (self.Code[1].Col == 1) and (self:getChar() == \"#\") then\n local macroLine = \"\"\n while (self:getChar() ~= \"\") and (self:getChar() ~= \"\\n\") do\n macroLine = macroLine .. self:getChar()\n self:nextChar()\n end\n\n -- Parse it\n self:ParsePreprocessMacro(macroLine,tokenPosition)\n return true\n end\n\n -- If still inside IFDEF, do not parse what follows\n if self.IFDEFLevel[#self.IFDEFLevel] == true then\n self:nextChar()\n return true\n end\n\n -- Is it a string\n if (self:getChar() == \"'\") or (self:getChar() == \"\\\"\") then\n local stringType = self:getChar()\n self:nextChar() -- Skip leading character\n\n local fetchString = \"\"\n while (self.Code[1].Text ~= \"\") and (self:getChar() ~= \"'\") and (self:getChar() ~= \"\\\"\") do\n\n if self:getChar() == \"\\\\\" then\n self:nextChar()\n if self:getChar() == \"'\" then fetchString = fetchString .. \"'\"\n elseif self:getChar() == \"\\\"\" then fetchString = fetchString .. \"\\\"\"\n elseif self:getChar() == \"a\" then fetchString = fetchString .. \"\\a\"\n elseif self:getChar() == \"b\" then fetchString = fetchString .. \"\\b\"\n-- elseif self:getChar() == \"c\" then fetchString = fetchString .. \"\\c\"\n elseif self:getChar() == \"f\" then fetchString = fetchString .. \"\\f\"\n elseif self:getChar() == \"r\" then fetchString = fetchString .. \"\\r\"\n elseif self:getChar() == \"n\" then fetchString = fetchString .. \"\\n\"\n elseif self:getChar() == \"t\" then fetchString = fetchString .. \"\\t\"\n elseif self:getChar() == \"v\" then fetchString = fetchString .. \"\\v\"\n elseif self:getChar() == \"0\" then fetchString = fetchString .. \"\\0\"\n end\n self:nextChar()\n elseif self:getChar() == \"\\n\" then\n self:Error(\"Newline in string constant\",\n tokenPosition.Line,tokenPosition.Col,tokenPosition.File)\n else\n fetchString = fetchString .. self:getChar()\n self:nextChar()\n end\n end\n self:nextChar() -- Skip trailing character\n\n if (stringType == \"'\") and (#fetchString == 1) then\n table.insert(self.Tokens,{\n Type = TOKEN.CHAR,\n Data = string.byte(fetchString),\n Position = tokenPosition,\n })\n else\n --if stringType == \"'\" then\n -- self:Warning(\"Using character definition syntax for defining a string - might cause problems\")\n --end\n table.insert(self.Tokens,{\n Type = TOKEN.STRING,\n Data = fetchString,\n Position = tokenPosition,\n })\n end\n return true\n end\n\n -- Fetch entire token\n local token = \"\"\n while string.find(self:getChar(),\"[%w_.@]\") do\n token = token .. self:getChar()\n self:nextChar()\n end\n\n -- Check if token was redefined\n if (token ~= \"\") and (self.Defines[token]) then\n if token == \"__FILE__\" then\n table.insert(self.Tokens,{\n Type = TOKEN.STRING,\n Data = tokenPosition.File,\n Position = tokenPosition,\n })\n return true\n elseif token == \"__LINE__\" then\n table.insert(self.Tokens,{\n Type = TOKEN.STRING,\n Data = tostring(tokenPosition.Line),\n Position = tokenPosition,\n })\n return true\n else\n token = self.Defines[token]\n end\n end\n\n -- If no alphanumeric token fetched, try to fetch the special-character ones\n if token == \"\" then\n token = self:getChar()\n self:nextChar()\n\n if HCOMP.PARSER_DBCHAR[token] then\n local curChar = self:getChar()\n if HCOMP.PARSER_DBCHAR[token][curChar] then\n token = token .. curChar\n self:nextChar()\n if token == \"\/\/\" then -- Line comment\n while (self:getChar() ~= \"\") and (self:getChar() ~= \"\\n\") do self:nextChar() end\n return true\n elseif token == \"\/*\" then -- Block comment open\n while self:getChar() ~= \"\" do\n local curChar = self:getChar()\n self:nextChar()\n if (curChar == \"*\") and (self:getChar() == \"\/\") then\n self:nextChar()\n return true\n end\n end\n\n -- Error in tokenizing\n self:Error(\"Comment block not closed (reached end of file)\",\n tokenPosition.Line,tokenPosition.Col,tokenPosition.File)\n return true\n elseif token == \"*\/\" then -- Block comment end (returns error token)\n table.insert(self.Tokens,{\n Type = TOKEN.COMMENT3,\n Position = tokenPosition,\n })\n return true\n end\n end\n end\n end\n\n -- Determine which token it is\n local tokenLookupTable = self.PARSER_LOOKUP[self.Settings.CurrentLanguage][string.upper(token)]\n if tokenLookupTable then\n table.insert(self.Tokens,{\n Type = tokenLookupTable[2],\n Data = tokenLookupTable[1],\n Position = tokenPosition,\n })\n return true\n end\n\n -- Maybe its a number\n if tonumber(token) then\n table.insert(self.Tokens,{\n Type = TOKEN.NUMBER,\n Data = tonumber(token),\n Position = tokenPosition,\n })\n return true\n end\n\n -- Wow it must have been ident afterall\n table.insert(self.Tokens,{\n Type = TOKEN.IDENT,\n Data = token,\n Position = tokenPosition,\n })\n return true\nend\n\n\n\n\n--------------------------------------------------------------------------------\n-- Print a string of tokens as an expression\nfunction HCOMP:PrintTokens(tokenList)\n local text = \"\"\n if !istable(tokenList) then error(\"[global 1:1] Internal error 516 (\"..tokenList..\")\") end\n\n for _,token in ipairs(tokenList) do\n if (token.Type == self.TOKEN.NUMBER) or\n (token.Type == self.TOKEN.OPCODE) then\n text = text..token.Data\n elseif token.Type == self.TOKEN.IDENT then\n if self.Settings.GenerateLibrary then\n if not self.LabelLookup[token.Data] then\n self.LabelLookup[token.Data] = \"_\"..self.LabelLookupCounter\n self.LabelLookupCounter = self.LabelLookupCounter + 1\n end\n text = text..self.LabelLookup[token.Data]\n else\n text = text..token.Data\n end\n elseif token.Type == self.TOKEN.STRING then\n text = text..\"\\\"\"..token.Data..\"\\\"\"\n elseif token.Type == self.TOKEN.CHAR then\n if token.Data >= 32 then\n text = text..\"'\"..string.char(token.Data)..\"'\"\n else\n text = text..\"'\\\\\"..token.Data..\"'\"\n end\n else\n text = text..(self.TOKEN_NAME2[token.Type][token.Data or 1] or \"\")\n end\n end\n return text\nend\n\n\n\n\n--------------------------------------------------------------------------------\n-- Expects next token to be tok, otherwise will raise an error\nfunction HCOMP:ExpectToken(tok)\n if not self.Tokens[self.CurrentToken] then\n if tok == self.TOKEN.EOF then\n self:Error(\"Expected \"..HCOMP.TOKEN_NAME[tok]..\", got \"..HCOMP.TOKEN_NAME[self.TOKEN.EOF]..\" instead\")\n end\n end\n\n if self.Tokens[self.CurrentToken].Type == tok then\n self.TokenType = self.Tokens[self.CurrentToken].Type\n self.TokenData = self.Tokens[self.CurrentToken].Data\n self.CurrentToken = self.CurrentToken + 1\n else\n self:Error(\"Expected \"..HCOMP.TOKEN_NAME[tok]..\", got \"..HCOMP.TOKEN_NAME[self.Tokens[self.CurrentToken].Type]..\" instead\")\n end\nend\n\n\n\n\n-- Returns true and skips a token if it matches this one\nfunction HCOMP:MatchToken(tok)\n if not self.Tokens[self.CurrentToken] then\n return tok == self.TOKEN.EOF\n end\n\n if self.Tokens[self.CurrentToken].Type == tok then\n self.TokenType = self.Tokens[self.CurrentToken].Type\n self.TokenData = self.Tokens[self.CurrentToken].Data\n self.CurrentToken = self.CurrentToken + 1\n return true\n else\n return false\n end\nend\n\n\n\n\n-- Go to next token\nfunction HCOMP:NextToken()\n self.CurrentToken = self.CurrentToken + 1\nend\n\n\n\n\n-- Returns next token type. Looks forward into stream if offset is specified\nfunction HCOMP:PeekToken(offset,extended)\n if self.Tokens[self.CurrentToken+(offset or 0)] then\n if extended then\n return self.Tokens[self.CurrentToken+(offset or 0)].Type,\n self.Tokens[self.CurrentToken+(offset or 0)].Data\n else\n return self.Tokens[self.CurrentToken+(offset or 0)].Type\n end\n else\n return self.TOKEN.EOF\n end\nend\n\n\n\n\n-- Store current parser state (so code could be reparsed again later)\nfunction HCOMP:SaveParserState()\n self.SavedToken = self.CurrentToken\nend\n\n\n\n\n-- Get all tokens between saved state and current state. This is used for\n-- reparsing expressions during resolve stage.\nfunction HCOMP:GetSavedTokens(firstToken)\n local savedTokens = {}\n for tokenIdx = firstToken or self.SavedToken,self.CurrentToken-1 do\n table.insert(savedTokens,self.Tokens[tokenIdx])\n end\n savedTokens.TokenList = true\n return savedTokens\nend\n\n\n\n\n-- Restore parser state. Can accept a list of tokens and restore state to that\n-- (see GetSavedTokens())\nfunction HCOMP:RestoreParserState(tokenList)\n if tokenList then\n self.Tokens = tokenList\n self.CurrentToken = 1\n else\n self.CurrentToken = self.SavedToken\n end\nend\n\n\n\n\n-- Returns current position in source file\nfunction HCOMP:CurrentSourcePosition()\n if self.Tokens[self.CurrentToken-1] then\n return self.Tokens[self.CurrentToken-1].Position\n else\n return { Line = 1, Col = 1, File = \"HL-ZASM\" }\n end\nend\n","avg_line_length":33.7111913357,"max_line_length":127,"alphanum_fraction":0.5763011351} +{"size":523,"ext":"lua","lang":"Lua","max_stars_count":2.0,"content":"-- luacheck: globals love\n--\n-- Created by IntelliJ IDEA.\n-- User: alexandre\n-- Date: 29\/10\/2019\n-- Time: 19:03\n-- To change this template use File | Settings | File Templates.\n--\n\nlocal SOUND = {}\n\nlocal function auxPlay(arcName, vol, pitch)\n local name = \"assets\/sound\/\" .. arcName .. \".ogg\"\n local src1 = love.audio.newSource(name, \"static\")\n src1:setVolume(vol)\n if pitch then src1:setPitch(pitch) end\n src1:play()\nend\n\nfunction SOUND.play(soundName, vol, pitch)\n auxPlay(soundName, vol, pitch)\nend\n\nreturn SOUND\n","avg_line_length":20.92,"max_line_length":64,"alphanum_fraction":0.6940726577} +{"size":1712,"ext":"lua","lang":"Lua","max_stars_count":41.0,"content":"return function()\n\tlocal removeRange = require(script.Parent.removeRange)\n\tlocal None = require(script.Parent.Parent.None)\n\n\tit(\"should remove elements properly\", function()\n\t\tlocal a = {1, 2, 3}\n\t\tlocal b = removeRange(a, 2, 2)\n\n\t\texpect(#b).to.equal(2)\n\t\texpect(b[1]).to.equal(1)\n\t\texpect(b[2]).to.equal(3)\n\n\t\tlocal c = {1, 2, 3, 4, 5, 6}\n\t\tlocal d = removeRange(c, 1, 4)\n\n\t\texpect(#d).to.equal(2)\n\t\texpect(d[1]).to.equal(5)\n\t\texpect(d[2]).to.equal(6)\n\n\t\tlocal e = removeRange(c, 2, 5)\n\n\t\texpect(#e).to.equal(2)\n\t\texpect(e[1]).to.equal(1)\n\t\texpect(e[2]).to.equal(6)\n\tend)\n\n\tit(\"should throw when the start index is higher than the end index\", function()\n\t\tlocal a = {1, 2, 3}\n\n\t\texpect(function()\n\t\t\tremoveRange(a, 2, 0)\n\t\tend).to.throw()\n\n\t\texpect(function()\n\t\t\tremoveRange(a, 1, -1)\n\t\tend).to.throw()\n\tend)\n\n\tit(\"should copy the table when then indexes are higher than the list length\", function()\n\t\tlocal a = {1, 2, 3}\n\t\tlocal b = removeRange(a, 4, 7)\n\n\t\texpect(#b).to.equal(3)\n\t\texpect(b[1]).to.equal(1)\n\t\texpect(b[2]).to.equal(2)\n\t\texpect(b[3]).to.equal(3)\n\tend)\n\n\tit(\"should work when the start index is smaller than 1\", function()\n\t\tlocal a = {1, 2, 3, 4}\n\t\tlocal b = removeRange(a, -5, 2)\n\n\t\texpect(#b).to.equal(2)\n\t\texpect(b[1]).to.equal(3)\n\t\texpect(b[2]).to.equal(4)\n\tend)\n\n\tit(\"should work when the end index is greater than the list length\", function()\n\t\tlocal a = {1, 2, 3, 4}\n\t\tlocal b = removeRange(a, 3, 8)\n\n\t\texpect(#b).to.equal(2)\n\t\texpect(b[1]).to.equal(1)\n\t\texpect(b[2]).to.equal(2)\n\tend)\n\n\tit(\"should work with a None element\", function()\n\t\tlocal a = {1, None, 3}\n\t\tlocal b = removeRange(a, 1, 1)\n\n\t\texpect(#b).to.equal(2)\n\t\texpect(b[1]).to.equal(None)\n\t\texpect(b[2]).to.equal(3)\n\tend)\nend","avg_line_length":22.8266666667,"max_line_length":89,"alphanum_fraction":0.625} +{"size":3930,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local utils = require('vgit.core.utils')\nlocal Scene = require('vgit.ui.Scene')\nlocal loop = require('vgit.core.loop')\nlocal dimensions = require('vgit.ui.dimensions')\nlocal CodeComponent = require('vgit.ui.components.CodeComponent')\nlocal CodeScreen = require('vgit.ui.screens.CodeScreen')\nlocal console = require('vgit.core.console')\nlocal Hunk = require('vgit.cli.models.Hunk')\n\nlocal DiffScreen = CodeScreen:extend()\n\nfunction DiffScreen:new(...)\n local this = CodeScreen:new(...)\n this.runtime_cache = {\n buffer = nil,\n title = nil,\n options = nil,\n err = false,\n data = nil,\n }\n return setmetatable(this, DiffScreen)\nend\n\nfunction DiffScreen:fetch()\n local runtime_cache = self.runtime_cache\n local buffer = runtime_cache.buffer\n local hunks = buffer.git_object.hunks\n local lines = buffer:get_lines()\n if not hunks then\n -- This scenario will occur if current buffer has not computer it's live hunk yet.\n local hunks_err, calculated_hunks = buffer.git_object:live_hunks(lines)\n if hunks_err then\n console.debug(hunks_err, debug.traceback())\n runtime_cache.err = hunks_err\n return self\n end\n hunks = calculated_hunks\n end\n runtime_cache.data = {\n filename = buffer.filename,\n filetype = buffer:filetype(),\n dto = self:generate_diff(hunks, lines),\n selected_hunk = self.buffer_hunks:cursor_hunk() or Hunk:new(),\n }\n return self\nend\n\nfunction DiffScreen:get_unified_scene_options(options)\n return {\n current = CodeComponent:new(utils.object.assign({\n config = {\n win_options = {\n cursorbind = true,\n scrollbind = true,\n cursorline = true,\n },\n window_props = {\n height = dimensions.global_height(),\n width = dimensions.global_width(),\n },\n },\n }, options)),\n }\nend\n\nfunction DiffScreen:get_split_scene_options(options)\n return {\n previous = CodeComponent:new(utils.object.assign({\n config = {\n win_options = {\n cursorbind = true,\n scrollbind = true,\n cursorline = true,\n },\n window_props = {\n height = dimensions.global_height(),\n width = math.floor(dimensions.global_width() \/ 2),\n },\n },\n }, options)),\n current = CodeComponent:new(utils.object.assign({\n config = {\n win_options = {\n cursorbind = true,\n scrollbind = true,\n cursorline = true,\n },\n window_props = {\n height = dimensions.global_height(),\n width = math.floor(dimensions.global_width() \/ 2),\n col = math.floor(dimensions.global_width() \/ 2),\n },\n },\n }, options)),\n }\nend\n\nfunction DiffScreen:show(title, options)\n local buffer = self.git_store:current()\n if not buffer then\n console.log('Current buffer you are on has no hunks')\n return false\n end\n if buffer:editing() then\n console.debug(\n string.format('Buffer %s is being edited right now', buffer.bufnr)\n )\n return\n end\n local runtime_cache = self.runtime_cache\n runtime_cache.buffer = buffer\n runtime_cache.title = title\n runtime_cache.options = options\n console.log('Processing buffer diff')\n self:fetch()\n loop.await_fast_event()\n if runtime_cache.err then\n console.error(runtime_cache.err)\n return false\n end\n if #runtime_cache.data.dto.hunks == 0 then\n console.log('No hunks found')\n return false\n end\n -- selected_hunk must always be called before creating the scene.\n local _, selected_hunk = self.buffer_hunks:cursor_hunk()\n self.scene = Scene:new(self:get_scene_options(options)):mount()\n local data = runtime_cache.data\n self\n :set_title(title, {\n filename = data.filename,\n filetype = data.filetype,\n stat = data.dto.stat,\n })\n :make_code()\n :set_code_cursor_on_mark(selected_hunk, 'center')\n :paint_code()\n console.clear()\n return true\nend\n\nreturn DiffScreen\n","avg_line_length":27.4825174825,"max_line_length":86,"alphanum_fraction":0.6557251908} +{"size":65,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"return require((string.match(..., \".*%.\") or \"\") .. \"dis_arm64\")\n","avg_line_length":32.5,"max_line_length":64,"alphanum_fraction":0.5384615385} +{"size":1092,"ext":"lua","lang":"Lua","max_stars_count":109.0,"content":"local Aspect = require(\"api.Aspect\")\nlocal AspectHolder_ITestAspect = require(\"test.api.AspectHolder_ITestAspect\")\nlocal AspectHolder_TestAspect = require(\"test.api.AspectHolder_TestAspect\")\nlocal AspectHolder_TestAspectModdable = require(\"test.api.AspectHolder_TestAspectModdable\")\nlocal Assert = require(\"api.test.Assert\")\nlocal IItemMonsterBall = require(\"mod.elona.api.aspect.IItemMonsterBall\")\nlocal Item = require(\"api.Item\")\n\nfunction test_Aspect_set_default_impl()\n local impl = Aspect.get_default_impl(AspectHolder_ITestAspect)\n Assert.eq(AspectHolder_TestAspect, impl)\n\n Aspect.set_default_impl(AspectHolder_ITestAspect, AspectHolder_TestAspectModdable)\n impl = Aspect.get_default_impl(AspectHolder_ITestAspect)\n Assert.eq(AspectHolder_TestAspectModdable, impl)\nend\n\nfunction test_Aspect_set_params()\n local aspects = {\n [IItemMonsterBall] = {\n max_level = 5\n }\n }\n local monster_ball = Item.create(\"elona.monster_ball\", nil, nil, {ownerless = true, aspects = aspects})\n\n Assert.eq(5, monster_ball:calc_aspect(IItemMonsterBall, \"max_level\"))\nend\n","avg_line_length":39.0,"max_line_length":106,"alphanum_fraction":0.7866300366} +{"size":275,"ext":"lua","lang":"Lua","max_stars_count":18.0,"content":"object_tangible_component_armor_new_armor_segment_test = object_tangible_component_armor_shared_new_armor_segment_test:new {\n\n}\n\nObjectTemplates:addTemplate(object_tangible_component_armor_new_armor_segment_test, \"object\/tangible\/component\/armor\/new_armor_segment_test.iff\")\n","avg_line_length":45.8333333333,"max_line_length":145,"alphanum_fraction":0.9127272727} +{"size":69839,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"-- ===========================================================================\n--\tTechTree\n--\tTabs set to 4 spaces retaining tab.\n--\n--\tThe tech \"Index\" is the internal ID the gamecore used to track the tech.\n--\tThis value is essentially the database (db) row id minus 1 since it's 0 based.\n--\t(e.g., TECH_MINING has a db rowid of 3, so it's gamecore index is 2.)\n--\t\n--\tItems exist in one of 8 \"rows\" that span horizontally and within a \n--\t\"column\" based on the era and cost.\n--\n--\tRows Start Eras->\n--\t-3 _____ _____ \n--\t-2 \/-|_____|----\/-|_____| \n--\t-1 | _____ | Nodes \n--\t0 O----%-|_____|----' \n--\t1 \n--\t2\n--\t3\n--\t4\n--\n-- ===========================================================================\ninclude( \"ToolTipHelper\" );\ninclude( \"SupportFunctions\" );\ninclude( \"Civ6Common\" );\t\t\t-- Tutorial check support\ninclude( \"TechAndCivicSupport\");\t-- (Already includes Civ6Common and InstanceManager) PopulateUnlockablesForTech\ninclude( \"TechFilterFunctions\" );\ninclude( \"ModalScreen_PlayerYieldsHelper\" );\ninclude( \"GameCapabilities\" );\n\n-- ===========================================================================\n--\tDEBUG\n--\tToggle these for temporary debugging help.\n-- ===========================================================================\nlocal m_debugFilterEraMaxIndex\t:number = -1;\t\t-- (-1 default) Only load up to a specific ERA (Value less than 1 to disable)\nlocal m_debugOutputTechInfo\t\t:boolean= false;\t-- (false default) Send to console detailed information on tech? \nlocal m_debugShowIDWithName\t\t:boolean= false;\t-- (false default) Show the ID before the name in each node.\nlocal m_debugShowAllMarkers\t\t:boolean= false;\t-- (false default) Show all player markers in the timline; even if they haven't been met.\n\n\n-- ===========================================================================\n--\tCONSTANTS\n-- ===========================================================================\n\n-- Spacing \/ Positioning Constants\nlocal COLUMN_WIDTH\t\t\t\t\t:number = 220;\t\t\t-- Space of node and line(s) after it to the next node\nlocal COLUMNS_NODES_SPAN\t\t\t:number = 2;\t\t\t-- How many colunms do the nodes span\nlocal PADDING_TIMELINE_LEFT\t\t\t:number = 275;\nlocal PADDING_PAST_ERA_LEFT\t\t\t:number = 30;\nlocal PADDING_FIRST_ERA_INDICATOR\t:number = -15;\n\n-- Graphic constants\nlocal PIC_BOLT_OFF\t\t\t\t:string = \"Controls_BoltOff\";\nlocal PIC_BOLT_ON\t\t\t\t:string = \"Controls_BoltOn\";\nlocal PIC_BOOST_OFF\t\t\t\t:string = \"BoostTech\";\nlocal PIC_BOOST_ON\t\t\t\t:string = \"BoostTechOn\";\nlocal PIC_DEFAULT_ERA_BACKGROUND:string = \"TechTree_BGAncient\";\nlocal PIC_MARKER_PLAYER\t\t\t:string = \"Tree_TimePipPlayer\";\nlocal PIC_MARKER_OTHER\t\t\t:string = \"Controls_TimePip\";\nlocal PIC_METER_BACK\t\t\t:string = \"Tree_Meter_GearBack\";\nlocal PIC_METER_BACK_DONE\t\t:string = \"TechTree_Meter_Done\";\nlocal SIZE_ART_ERA_OFFSET_X\t\t:number = 40;\t\t\t-- How far to push each era marker\nlocal SIZE_ART_ERA_START_X\t\t:number = 40;\t\t\t-- How far to set the first era marker\nlocal SIZE_MARKER_PLAYER_X\t\t:number = 42;\t\t\t-- Marker of player\nlocal SIZE_MARKER_PLAYER_Y\t\t:number = 42;\t\t\t-- \"\nlocal SIZE_MARKER_OTHER_X\t\t:number = 34;\t\t\t-- Marker of other players\nlocal SIZE_MARKER_OTHER_Y\t\t:number = 37;\t\t\t-- \"\nlocal SIZE_NODE_X\t\t\t\t:number = 370;\t\t\t-- Item node dimensions\nlocal SIZE_NODE_Y\t\t\t\t:number = 84;\t\nlocal SIZE_OPTIONS_X\t\t\t:number = 200;\nlocal SIZE_OPTIONS_Y\t\t\t:number = 150;\nlocal SIZE_PATH\t\t\t\t\t:number = 40;\nlocal SIZE_PATH_HALF\t\t\t:number = SIZE_PATH \/ 2;\nlocal SIZE_TIMELINE_AREA_Y\t\t:number = 41;\nlocal SIZE_TOP_AREA_Y\t\t\t:number = 60;\nlocal SIZE_WIDESCREEN_HEIGHT\t:number = 768;\n\n\nlocal PATH_MARKER_OFFSET_X\t\t\t:number = 20;\nlocal PATH_MARKER_OFFSET_Y\t\t\t:number = 50;\nlocal PATH_MARKER_NUMBER_0_9_OFFSET\t:number = 20;\nlocal PATH_MARKER_NUMBER_10_OFFSET\t:number = 15;\n\n-- Other constants\nlocal DATA_FIELD_LIVEDATA\t\t\t:string = \"_LIVEDATA\";\t-- The current status of an item.\nlocal DATA_FIELD_PLAYERINFO\t\t\t:string = \"_PLAYERINFO\";-- Holds a table with summary information on that player.\nlocal DATA_FIELD_UIOPTIONS\t\t\t:string = \"_UIOPTIONS\";\t-- What options the player has selected for this screen.\nlocal DATA_ICON_PREFIX\t\t\t\t:string = \"ICON_\";\nlocal ERA_ART\t\t\t\t\t\t:table\t= {};\nlocal ITEM_STATUS\t\t\t\t\t:table = {\n\t\t\t\t\t\t\t\t\tBLOCKED\t\t= 1,\n\t\t\t\t\t\t\t\t\tREADY\t\t= 2,\n\t\t\t\t\t\t\t\t\tCURRENT\t\t= 3,\n\t\t\t\t\t\t\t\t\tRESEARCHED\t= 4,\n\t\t\t\t\t\t\t\t};\nlocal LINE_LENGTH_BEFORE_CURVE\t\t:number = 20;\t\t\t-- How long to make a line before a node before it curves\nlocal PADDING_NODE_STACK_Y\t\t\t:number = 0;\nlocal PARALLAX_SPEED\t\t\t\t:number = 1.1;\t\t\t-- Speed for how much slower background moves (1.0=regular speed, 0.5=half speed)\nlocal PARALLAX_ART_SPEED\t\t\t:number = 1.2;\t\t\t-- Speed for how much slower background moves (1.0=regular speed, 0.5=half speed)\nlocal PREREQ_ID_TREE_START\t\t\t:string = \"_TREESTART\";\t-- Made up, unique value, to mark a non-node tree start\nlocal ROW_MAX\t\t\t\t\t\t:number = 4;\t\t\t-- Highest level row above 0\nlocal ROW_MIN\t\t\t\t\t\t:number = -3;\t\t\t-- Lowest level row below 0\nlocal STATUS_ART\t\t\t\t\t:table\t= {};\nlocal TREE_START_ROW\t\t\t\t:number = 0;\t\t\t-- Which virtual \"row\" does tree start on?\nlocal TREE_START_COLUMN\t\t\t\t:number = 0;\t\t\t-- Which virtual \"column\" does tree start on? (Can be negative!)\nlocal TREE_START_NONE_ID\t\t\t:number = -999;\t\t\t-- Special, unique value, to mark no special tree start node.\nlocal TXT_BOOSTED\t\t\t\t\t:string = Locale.Lookup(\"LOC_BOOST_BOOSTED\");\nlocal TXT_TO_BOOST\t\t\t\t\t:string = Locale.Lookup(\"LOC_BOOST_TO_BOOST\");\nlocal VERTICAL_CENTER\t\t\t\t:number = (SIZE_NODE_Y) \/ 2;\nlocal MAX_BEFORE_TRUNC_TO_BOOST\t\t:number = 310;\nlocal MAX_BEFORE_TRUNC_KEY_LABEL:number = 100;\n\n\nSTATUS_ART[ITEM_STATUS.BLOCKED]\t\t= { Name=\"BLOCKED\",\t\tTextColor0=0xff202726, TextColor1=0x00000000, FillTexture=\"TechTree_GearButtonTile_Disabled.dds\",BGU=0,BGV=(SIZE_NODE_Y*3),\tIsButton=false,\tBoltOn=false,\tIconBacking=PIC_METER_BACK };\nSTATUS_ART[ITEM_STATUS.READY]\t\t= { Name=\"READY\",\t\tTextColor0=0xaaffffff, TextColor1=0x88000000, FillTexture=nil,\t\t\t\t\t\t\t\t\tBGU=0,BGV=0,\t\t\t\tIsButton=true,\tBoltOn=false,\tIconBacking=PIC_METER_BACK };\nSTATUS_ART[ITEM_STATUS.CURRENT]\t\t= { Name=\"CURRENT\",\t\tTextColor0=0xaaffffff, TextColor1=0x88000000, FillTexture=nil,\t\t\t\t\t\t\t\t\tBGU=0,BGV=(SIZE_NODE_Y*4),\tIsButton=false,\tBoltOn=true,\tIconBacking=PIC_METER_BACK };\nSTATUS_ART[ITEM_STATUS.RESEARCHED]\t= { Name=\"RESEARCHED\",\tTextColor0=0xaaffffff, TextColor1=0x88000000, FillTexture=\"TechTree_GearButtonTile_Done.dds\",\tBGU=0,BGV=(SIZE_NODE_Y*5),\tIsButton=false,\tBoltOn=true,\tIconBacking=PIC_METER_BACK_DONE };\n\n\n\n-- ===========================================================================\n--\tMEMBERS \/ VARIABLES\n-- ===========================================================================\nlocal m_kNodeIM\t\t\t\t:table = InstanceManager:new( \"NodeInstance\", \t\t\t\"Top\", \t\tControls.NodeScroller );\nlocal m_kLineIM\t\t\t\t:table = InstanceManager:new( \"LineImageInstance\", \t\t\"LineImage\",Controls.NodeScroller );\nlocal m_kEraArtIM\t\t\t:table = InstanceManager:new( \"EraArtInstance\", \t\t\"Top\", \t\tControls.FarBackArtScroller );\nlocal m_kEraLabelIM\t\t\t:table = InstanceManager:new( \"EraLabelInstance\", \t\t\"Top\", \t\tControls.ArtScroller );\nlocal m_kEraDotIM\t\t\t:table = InstanceManager:new( \"EraDotInstance\",\t\t\t\"Dot\", \t\tControls.ScrollbarBackgroundArt );\nlocal m_kMarkerIM\t\t\t:table = InstanceManager:new( \"PlayerMarkerInstance\",\t\"Top\",\t\tControls.TimelineScrollbar );\nlocal m_kSearchResultIM\t\t:table = InstanceManager:new( \"SearchResultInstance\", \"Root\", Controls.SearchResultsStack);\nlocal m_kPathMarkerIM\t\t:table = InstanceManager:new( \"TechPathMarker\",\t\t\t\"Top\",\t\tControls.NodeScroller);\n\nlocal m_researchHash\t\t:number;\nlocal m_width\t\t\t\t:number= SIZE_MIN_SPEC_X;\t-- Screen Width (default \/ min spec)\nlocal m_height\t\t\t\t:number= SIZE_MIN_SPEC_Y;\t-- Screen Height (default \/ min spec)\nlocal m_previousHeight\t\t:number= SIZE_MIN_SPEC_Y;\t-- Screen Height (default \/ min spec)\nlocal m_scrollWidth\t\t\t:number= SIZE_MIN_SPEC_X;\t-- Width of the scroll bar\nlocal m_kEras\t\t\t\t:table = {};\t\t\t\t-- type to costs\nlocal m_kEraCounter\t\t\t:table = {};\t\t\t\t-- counter to determine which eras have techs\nlocal m_maxColumns\t\t\t:number= 0;\t\t\t\t\t-- # of columns (highest column #)\nlocal m_ePlayer\t\t\t\t:number= -1;\nlocal m_kAllPlayersTechData\t:table = {};\t\t\t\t-- All data for local players.\nlocal m_kCurrentData\t\t:table = {};\t\t\t\t-- Current set of data.\nlocal m_kItemDefaults\t\t:table = {};\t\t\t\t-- Static data about items\nlocal m_kNodeGrid\t\t\t:table = {};\t\t\t\t-- Static data about node location once it's laid out\nlocal m_uiNodes\t\t\t\t:table = {};\nlocal m_uiConnectorSets\t\t:table = {};\nlocal m_kFilters\t\t\t:table = {};\n\nlocal m_shiftDown\t\t\t:boolean = false;\n\nlocal m_lastPercent :number = 0.1;\n\n-- ===========================================================================\n-- Return string respresenation of a prereq table\n-- ===========================================================================\nfunction GetPrereqsString( prereqs:table )\n\tlocal out:string = \"\";\n\tfor _,prereq in pairs(prereqs) do\n\t\tif prereq == PREREQ_ID_TREE_START then\n\t\t\tout = \"n\/a \";\n\t\telse\n\t\t\tout = out .. m_kItemDefaults[prereq].Type .. \" \";\t-- Add space between techs\n\t\tend\n\tend\n\treturn \"[\" .. string.sub(out,1,string.len(out)-1) .. \"]\";\t-- Remove trailing space\nend\n\n-- ===========================================================================\nfunction SetCurrentNode( hash:number )\n\tif hash ~= nil then\n\n\t\tlocal localPlayerTechs = Players[Game.GetLocalPlayer()]:GetTechs();\n\t\t-- Get the complete path to the tech\n\t\tlocal pathToTech = localPlayerTechs:GetResearchPath( hash );\n\n\t\tlocal tParameters = {};\n\t\ttParameters[PlayerOperations.PARAM_TECH_TYPE]\t= pathToTech;\n\t\tif m_shiftDown then\n\t\t\ttParameters[PlayerOperations.PARAM_INSERT_MODE] = PlayerOperations.VALUE_APPEND;\n\t\telse\n\t\t\ttParameters[PlayerOperations.PARAM_INSERT_MODE] = PlayerOperations.VALUE_EXCLUSIVE;\n\t\tend\n\t\tUI.RequestPlayerOperation(Game.GetLocalPlayer(), PlayerOperations.RESEARCH, tParameters);\n UI.PlaySound(\"Confirm_Tech_TechTree\");\n\telse\n\t\tUI.DataError(\"Attempt to change current tree item with NIL hash!\");\n\tend\n\nend\n\n\n-- ===========================================================================\n--\tIf the next item isn't immediate, show a path of #s traversing the tree \n--\tto the desired node.\n-- ===========================================================================\nfunction RealizePathMarkers()\n\t\n\tlocal pTechs\t:table = Players[Game.GetLocalPlayer()]:GetTechs();\n\tlocal kNodeIds\t:table = pTechs:GetResearchQueue();\t\t-- table: index, IDs\n\t\n\tm_kPathMarkerIM:ResetInstances();\n\n\tfor i,nodeNumber in pairs(kNodeIds) do\n\t\tlocal pathPin = m_kPathMarkerIM:GetInstance();\n\n\t\tif(i < 10) then\n\t\t\tpathPin.NodeNumber:SetOffsetX(PATH_MARKER_NUMBER_0_9_OFFSET);\n\t\telse\n\t\t\tpathPin.NodeNumber:SetOffsetX(PATH_MARKER_NUMBER_10_OFFSET);\n\t\tend\n\t\tpathPin.NodeNumber:SetText(tostring(i));\n\t\tfor j,node in pairs(m_kItemDefaults) do\n\t\t\tif node.Index == nodeNumber then\n\t\t\t\tlocal x:number = m_uiNodes[node.Type].x;\n\t\t\t\tlocal y:number = m_uiNodes[node.Type].y;\n\t\t\t\tpathPin.Top:SetOffsetX(x-PATH_MARKER_OFFSET_X);\n\t\t\t\tpathPin.Top:SetOffsetY(y-PATH_MARKER_OFFSET_Y);\n\t\t\tend\n\t\tend\n\tend\nend\n\n\n-- ===========================================================================\n--\tConvert a virtual column # and row # to actual pixels within the\n--\tscrollable tree area.\n-- ===========================================================================\nfunction ColumnRowToPixelXY( column:number, row:number)\t\n\tlocal horizontal\t\t:number = ((column-1) * COLUMNS_NODES_SPAN * COLUMN_WIDTH) + PADDING_TIMELINE_LEFT + PADDING_PAST_ERA_LEFT;\n\tlocal vertical\t\t\t:number = PADDING_NODE_STACK_Y + (SIZE_WIDESCREEN_HEIGHT \/ 2) + (row * SIZE_NODE_Y);\n\treturn horizontal, vertical;\nend\n\n-- ===========================================================================\n--\tGet the width of the scroll panel\n-- ===========================================================================\nfunction GetMaxScrollWidth()\n\treturn m_maxColumns + (m_maxColumns * COLUMN_WIDTH) + PADDING_TIMELINE_LEFT + PADDING_PAST_ERA_LEFT;\nend\n\n-- ===========================================================================\n--\tTake the default item data and build the nodes that work with it.\n--\tOne time creation, any dynamic pieces should be \n--\n--\tNo state specific data (e.g., selected node) should be set here in order\n--\tto reuse the nodes across viewing other players' trees for single seat\n--\tmultiplayer or if a (spy) game rule allows looking at another's tree.\n-- ===========================================================================\nfunction AllocateUI()\t\n\t\t\n\tm_uiNodes = {};\n\tm_kNodeIM:ResetInstances();\t\n\n\tm_uiConnectorSets = {};\n\tm_kLineIM:ResetInstances();\n\n\t--[[ Layout logic for purely pre-reqs...\n\t\t\tIn the existing Tech Tree there are many lines running across\n\t\t\tnodes using this algorithm as a smarter method than just \"pushing\n\t\t\ta node forward\" when a crossed node occurs needs to be implemented.\n\t\t\t\n\t\t\tIf this gets completely re-written, it's likely a method that tracks \n\t\t\tthe entire traceback of the line and then \"untangles\" by pushing\n\t\t\tnode(s) forward should be explored.\n\t\t\t-TRON\n\t]]\n\n\t-- Layout the nodes in columns based on increasing cost within an era.\n\t-- Loop items, put into era columns.\n\tfor _,item in pairs(m_kItemDefaults) do\t\t\n\t\tlocal era\t:table = m_kEras[item.EraType];\n\t\tif era.Columns[item.Cost] == nil then\n\t\t\tera.Columns[item.Cost] = {};\n\t\tend\n\t\ttable.insert( era.Columns[item.Cost], item.Type );\n\t\tera.NumColumns = table.count( era.Columns );\t\t\t\t-- This isn't great; set every iteration!\n\tend\n\n\t-- Loop items again, assigning column based off of total columns used\n\tfor _,item in pairs(m_kItemDefaults) do\t\t\n\t\tlocal era\t\t:table = m_kEras[item.EraType];\n\t\tlocal i\t\t\t:number = 0;\n\t\tlocal isFound\t:boolean = false;\n\t\tfor cost,columns in orderedPairs( era.Columns ) do\n\t\t\tif cost ~= \"__orderedIndex\" then\t\t\t-- skip temp table used for order\n\t\t\t\ti = i + 1;\n\t\t\t\tfor _,itemType in ipairs(columns) do\n\t\t\t\t\tif itemType == item.Type then\n\t\t\t\t\t\titem.Column = i;\n\t\t\t\t\t\tisFound = true;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tend\n\t\t\t\tend\n\t\t\t\tif isFound then break; end\t\t\t\n\t\t\tend\n\t\tend\n\t\tera.Columns.__orderedIndex = nil;\n\tend\n\n\t-- Determine total # of columns prior to a given era, and max columns overall.\n\tlocal index = 1;\n\tlocal priorColumns:number = 0;\n\tm_maxColumns = 0;\n\tfor row:table in GameInfo.Eras() do\n\t\tfor era,eraData in pairs(m_kEras) do\n\t\t\tif eraData.Index == index then\t\t\t\t\t\t\t\t\t-- Ensure indexed order\n\t\t\t\teraData.PriorColumns = priorColumns;\n\t\t\t\tpriorColumns = priorColumns + eraData.NumColumns + 1;\t-- Add one for era art between\n\t\t\t\tbreak;\n\t\t\tend\n\t\tend\n\t\tindex = index + 1;\n\tend\n\tm_maxColumns = priorColumns;\n\n\t-- Set nodes in the rows specified and columns computed above.\n\tm_kNodeGrid\t = {};\n\tfor i = ROW_MIN,ROW_MAX,1 do\n\t\tm_kNodeGrid[i] = {};\n\tend\n\tfor _,item in pairs(m_kItemDefaults) do\t\n\t\tlocal era\t\t:table = m_kEras[item.EraType];\n\t\tlocal columnNum :number = era.PriorColumns + item.Column;\n\t\tm_kNodeGrid[item.UITreeRow][columnNum] = item.Type;\n\tend\n\n\t-- Era divider information\n\tm_kEraArtIM:ResetInstances();\n\tm_kEraLabelIM:ResetInstances();\n\tm_kEraDotIM:ResetInstances();\n\n\tfor era,eraData in pairs(m_kEras) do\t\t\n\t\t\n\t\tlocal instArt :table = m_kEraArtIM:GetInstance();\n\t\tif eraData.BGTexture ~= nil then\n\t\t\tinstArt.BG:SetTexture( eraData.BGTexture );\t\t\t\t\n\t\telse\n\t\t\tUI.DataError(\"Tech tree is unable to find an EraTechBackgroundTexture entry for era '\"..eraData.Description..\"'; using a default.\");\n\t\t\tinstArt.BG:SetTexture(PIC_DEFAULT_ERA_BACKGROUND);\n\t\tend\n\n\t\tlocal startx, _\t= ColumnRowToPixelXY(eraData.PriorColumns + 1, 0);\n\t\tinstArt.Top:SetOffsetX((startx ) * (1\/PARALLAX_ART_SPEED));\n\t\tinstArt.Top:SetOffsetY((SIZE_WIDESCREEN_HEIGHT * 0.5) - (instArt.BG:GetSizeY() * 0.5));\t\n\t\tinstArt.Top:SetSizeVal(eraData.NumColumns * SIZE_NODE_X, 600);\n\n\t\tlocal inst:table = m_kEraLabelIM:GetInstance();\n\t\tlocal eraMarkerx, _\t= ColumnRowToPixelXY( eraData.PriorColumns + 1, 0) - PADDING_PAST_ERA_LEFT;\t-- Need to undo the padding in place that nodes use to get past the era marker column\n\t\tif eraData.Index == 1 then\n\t\t\teraMarkerx = eraMarkerx + PADDING_FIRST_ERA_INDICATOR;\n\t\tend\n\t\tinst.Top:SetOffsetX((eraMarkerx - (SIZE_NODE_X * 0.5)) * (1 \/ PARALLAX_SPEED));\n\t\tinst.EraTitle:SetText(Locale.Lookup(\"LOC_GAME_ERA_DESC\",eraData.Description));\n\n\t\t-- Dots on scrollbar\n\t\tlocal markerx:number = (eraData.PriorColumns \/ m_maxColumns) * Controls.ScrollbarBackgroundArt:GetSizeX();\n\t\tif markerx > 0 then\n\t\t\tlocal inst:table = m_kEraDotIM:GetInstance();\n\t\t\tinst.Dot:SetOffsetX(markerx);\t\n\t\tend\t\n\tend\n\n\tlocal playerId = Game.GetLocalPlayer();\n\tif (playerId == -1) then\n\t\treturn;\n\tend\n\n\t-- Actually build UI nodes\n\tfor _,item in pairs(m_kItemDefaults) do\n\n\t\tlocal tech:table\t\t= GameInfo.Technologies[item.Type];\n\t\tlocal techType:string\t= tech and tech.TechnologyType;\n\n\t\tlocal unlockableTypes\t= GetUnlockablesForTech_Cached(techType, playerId);\n\t\tlocal node\t\t\t\t:table;\n\t\tlocal numUnlocks\t\t:number = 0;\n\n\t\tif unlockableTypes ~= nil then\n\t\t\tfor _, unlockItem in ipairs(unlockableTypes) do\n\t\t\t\tlocal typeInfo = GameInfo.Types[unlockItem[1]];\n\t\t\t\tnumUnlocks = numUnlocks + 1;\n\t\t\tend\n\t\tend\n\t\t\t\t\n\t\tnode = m_kNodeIM:GetInstance();\n\t\tnode.Top:SetTag( item.Hash );\t-- Set the hash of the technology to the tag of the node (for tutorial to be able to callout)\n\n\t\tlocal era:table = m_kEras[item.EraType];\n\n\t\t-- Horizontal # = All prior nodes across all previous eras + node position in current era (based on cost vs. other nodes in that era)\n\t\tlocal horizontal, vertical = ColumnRowToPixelXY(era.PriorColumns + item.Column, item.UITreeRow );\n\n\t\t-- Add data fields to UI component\n\t\tnode.Type\t= techType;\t-- Dynamically add \"Type\" field to UI node for quick look ups in item data table.\n\t\tnode.x\t\t= horizontal;\t-- Granted x,y can be looked up via GetOffset() but caching the values here for\n\t\tnode.y\t\t= vertical - VERTICAL_CENTER;\t\t-- other LUA functions to use removes the necessity of a slow C++ roundtrip.\n\n\t\tif node[\"unlockIM\"] ~= nil then\n\t\t\tnode[\"unlockIM\"]:DestroyInstances()\n\t\tend\n\t\tnode[\"unlockIM\"] = InstanceManager:new( \"UnlockInstance\", \"UnlockIcon\", node.UnlockStack );\n\t\t\n\t\tif node[\"unlockGOV\"] ~= nil then\n\t\t\tnode[\"unlockGOV\"]:DestroyInstances()\n\t\tend\n\t\tnode[\"unlockGOV\"] = InstanceManager:new( \"GovernmentIcon\", \"GovernmentInstanceGrid\", node.UnlockStack );\n\n\t\tPopulateUnlockablesForTech(playerId, tech.Index, node[\"unlockIM\"], function() SetCurrentNode(item.Hash); end);\n\n\t\t-- What happens when clicked\n\t\tfunction OpenPedia()\t\n\t\t\tLuaEvents.OpenCivilopedia(techType); \n\t\tend\n\n\t\tnode.NodeButton:RegisterCallback( Mouse.eLClick, function() SetCurrentNode(item.Hash); end);\n\t\tnode.OtherStates:RegisterCallback( Mouse.eLClick, function() SetCurrentNode(item.Hash); end);\n\n\t\t-- Only wire up Civilopedia handlers if not in a on-rails tutorial; as clicking it can take a player off the rails...\n\t\tif IsTutorialRunning()==false then\n\t\t\tnode.NodeButton:RegisterCallback( Mouse.eRClick, OpenPedia);\n\t\t\tnode.OtherStates:RegisterCallback( Mouse.eRClick, OpenPedia);\n\t\tend\n\n\t\t-- Set position and save.\t\t\n\t\tnode.Top:SetOffsetVal( horizontal, vertical);\n\t\tm_uiNodes[item.Type] = node;\n\tend\n\n\tif Controls.TreeStart ~= nil then\n\t\tlocal h,v = ColumnRowToPixelXY( TREE_START_COLUMN, TREE_START_ROW );\n\t\tControls.TreeStart:SetOffsetVal( h+SIZE_NODE_X-42,v-71 );\t\t-- TODO: Science-out the magic (numbers).\n\tend\n\n\t-- Determine the lines between nodes.\n\t-- NOTE: Potentially move this to view, since lines are constantly change in look, but\n\t--\t\t it makes sense to have at least the routes computed here since they are\n\t--\t\t consistent regardless of the look.\n\tfor type,item in pairs(m_kItemDefaults) do\n\t\t\n\t\tlocal node:table = m_uiNodes[item.Type];\t\t\n\n\t\tfor _,prereqId in pairs(item.Prereqs) do\n\t\t\t\n\t\t\tlocal previousRow\t:number = 0;\n\t\t\tlocal previousColumn:number = 0;\n\t\t\tif prereqId == PREREQ_ID_TREE_START then\n\t\t\t\tpreviousRow\t\t= TREE_START_ROW;\n\t\t\t\tpreviousColumn\t= TREE_START_COLUMN;\n\t\t\telse\n\t\t\t\tlocal prereq :table = m_kItemDefaults[prereqId];\n\t\t\t\tpreviousRow\t\t= prereq.UITreeRow;\n\t\t\t\tpreviousColumn\t= m_kEras[prereq.EraType].PriorColumns + prereq.Column;\n\t\t\tend\n\n\t\t\tlocal startColumn\t:number = m_kEras[item.EraType].PriorColumns + item.Column;\n\t\t\tlocal column\t\t:number\t= startColumn;\n\t\t\tlocal isEarlyBend\t:boolean= false;\n\t\t\tlocal isAtPrior\t\t:boolean= false;\n\n\t\t\twhile( not isAtPrior ) do\n\t\t\t\tcolumn = column - 1;\t-- Move backwards one\n\n\t\t\t\t-- If a node is found, make sure it's the previous node this is looking for.\n\t\t\t\tif (m_kNodeGrid[previousRow][column] ~= nil) then\n\t\t\t\t\tif m_kNodeGrid[previousRow][column] == prereqId then\n\t\t\t\t\t\tisAtPrior = true;\n\t\t\t\t\tend\n\t\t\t\telseif column <= TREE_START_COLUMN then\n\t\t\t\t\tisAtPrior = true;\n\t\t\t\tend\n\n\t\t\t\tif (not isAtPrior) and m_kNodeGrid[item.UITreeRow][column] ~= nil then\n\t\t\t\t\t-- Was trying to hold off bend until start, but it looks to cross\n\t\t\t\t\t-- another node, so move the bend to the end.\n\t\t\t\t\tisEarlyBend = true;\n\t\t\t\tend\n\n\t\t\t\tif column < 0 then\n\t\t\t\t\tUI.DataError(\"Tech tree could not find prior for '\"..prereqId..\"'\");\n\t\t\t\t\tbreak;\n\t\t\t\tend\n\t\t\tend\n\n\n\t\t\tif previousRow == TREE_START_NONE_ID then\n\n\t\t\t\t-- Nothing goes before this, not even a fake start area.\n\n\t\t\telseif previousRow < item.UITreeRow or previousRow > item.UITreeRow then\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- Obtain grid pieces to ____________________\n\t\t\t\t-- use in order to draw ___ ________| |\n\t\t\t\t-- lines. |L2 |L1 | NODE |\n\t\t\t\t-- |___|________| |\n\t\t\t\t-- _____________________ |L3 | x1 |____________________|\n\t\t\t\t-- | |___________|___|\n\t\t\t\t--\t| PREVIOUS NODE | L5 |L4 |\n\t\t\t\t-- | |___________|___|\n\t\t\t\t--\t|_____________________| x2\n\t\t\t\t--\n\t\t\t\tlocal inst\t:table = m_kLineIM:GetInstance();\n\t\t\t\tlocal line1\t:table = inst.LineImage; inst = m_kLineIM:GetInstance();\n\t\t\t\tlocal line2\t:table = inst.LineImage; inst = m_kLineIM:GetInstance();\n\t\t\t\tlocal line3\t:table = inst.LineImage; inst = m_kLineIM:GetInstance();\n\t\t\t\tlocal line4\t:table = inst.LineImage; inst = m_kLineIM:GetInstance();\n\t\t\t\tlocal line5\t:table = inst.LineImage;\n\t\t\t\t\n\t\t\t\t-- Find all the empty space before the node before to make a bend.\n\t\t\t\tlocal LineEndX1:number = 0;\n\t\t\t\tlocal LineEndX2:number = 0;\n\t\t\t\tif isEarlyBend then\n\t\t\t\t\tLineEndX1 = (node.x - LINE_LENGTH_BEFORE_CURVE ) ;\n\t\t\t\t\tLineEndX2, _ = ColumnRowToPixelXY( column, item.UITreeRow );\n\t\t\t\t\tLineEndX2 = LineEndX2 + SIZE_NODE_X;\n\t\t\t\telse\n\t\t\t\t\tLineEndX1, _ = ColumnRowToPixelXY( column, item.UITreeRow );\n\t\t\t\t\tLineEndX2, _ = ColumnRowToPixelXY( column, item.UITreeRow );\n\t\t\t\t\tLineEndX1 = LineEndX1 + SIZE_NODE_X + LINE_LENGTH_BEFORE_CURVE;\n\t\t\t\t\tLineEndX2 = LineEndX2 + SIZE_NODE_X;\n\t\t\t\tend\n\n\t\t\t\tlocal prevY\t:number = 0;\t-- y position of the previous node being connected to\n\n\t\t\t\tif previousRow < item.UITreeRow then\n\t\t\t\t\tprevY = node.y-((item.UITreeRow-previousRow)*SIZE_NODE_Y);-- above\n\t\t\t\t\tline2:SetTexture(\"Controls_TreePathDashSE\");\n\t\t\t\t\tline4:SetTexture(\"Controls_TreePathDashES\");\n\t\t\t\telse\n\t\t\t\t\tprevY = node.y+((previousRow-item.UITreeRow)*SIZE_NODE_Y);-- below\n\t\t\t\t\tline2:SetTexture(\"Controls_TreePathDashNE\");\n\t\t\t\t\tline4:SetTexture(\"Controls_TreePathDashEN\");\n\t\t\t\tend\n\t\t\t\t\n\t\t\t\tline1:SetOffsetVal(LineEndX1 + SIZE_PATH_HALF, node.y - SIZE_PATH_HALF);\t\t\t\t\n\t\t\t\tline1:SetSizeVal( node.x - LineEndX1 - SIZE_PATH_HALF, SIZE_PATH);\n\t\t\t\tline1:SetTexture(\"Controls_TreePathDashEW\");\n\n\t\t\t\tline2:SetOffsetVal(LineEndX1 - SIZE_PATH_HALF, node.y - SIZE_PATH_HALF);\n\t\t\t\tline2:SetSizeVal( SIZE_PATH, SIZE_PATH);\n\n\t\t\t\tline3:SetOffsetVal(LineEndX1 - SIZE_PATH_HALF, math.min(node.y + SIZE_PATH_HALF, prevY + SIZE_PATH_HALF) );\t\n\t\t\t\tline3:SetSizeVal( SIZE_PATH, math.abs(node.y - prevY) - SIZE_PATH );\n\t\t\t\tline3:SetTexture(\"Controls_TreePathDashNS\");\n\t\t\t\t\n\t\t\t\tline4:SetOffsetVal(LineEndX1 - SIZE_PATH_HALF, prevY - SIZE_PATH_HALF);\n\t\t\t\tline4:SetSizeVal( SIZE_PATH, SIZE_PATH);\n\n\t\t\t\tline5:SetSizeVal( LineEndX1 - LineEndX2 - SIZE_PATH_HALF, SIZE_PATH );\n\t\t\t\tline5:SetOffsetVal(LineEndX2, prevY - SIZE_PATH_HALF);\t\n\t\t\t\tline1:SetTexture(\"Controls_TreePathDashEW\");\n\n\t\t\t\t-- Directly store the line (not instance) with a key name made up of this type and the prereq's type.\n\t\t\t\tm_uiConnectorSets[item.Type..\",\"..prereqId] = {line1,line2,line3,line4,line5};\n\n\t\t\telse\n\t\t\t\t-- Prereq is on the same row\n\t\t\t\tlocal inst:table = m_kLineIM:GetInstance();\n\t\t\t\tlocal line:table = inst.LineImage;\n\t\t\t\tline:SetTexture(\"Controls_TreePathDashEW\");\n\t\t\t\tlocal end1, _ = ColumnRowToPixelXY( column, item.UITreeRow );\n\t\t\t\tend1 = end1 + SIZE_NODE_X;\n\n\t\t\t\tline:SetOffsetVal(end1, node.y - SIZE_PATH_HALF);\t\t\t\t\n\t\t\t\tline:SetSizeVal( node.x - end1, SIZE_PATH);\t\n\n\t\t\t\t-- Directly store the line (not instance) with a key name made up of this type and the prereq's type.\n\t\t\t\tm_uiConnectorSets[item.Type..\",\"..prereqId] = {line};\n\t\t\tend\t\t\t\t\n\t\tend\n\tend\n\n\tControls.NodeScroller:CalculateSize();\n\tControls.NodeScroller:ReprocessAnchoring();\n\tControls.ArtScroller:CalculateSize();\n\tControls.FarBackArtScroller:CalculateSize();\n\n\tControls.NodeScroller:RegisterScrollCallback( OnScroll );\n\n\t-- We use a separate BG within the PeopleScroller control since it needs to scroll with the contents\n\tControls.ModalBG:SetHide(true);\n\tControls.ModalScreenClose:RegisterCallback(Mouse.eLClick, OnClose);\t\n\tControls.ModalScreenTitle:SetText(Locale.ToUpper(Locale.Lookup(\"LOC_TECH_TREE_HEADER\")));\nend\n\n\n-- ===========================================================================\n--\tUI Event\n--\tCallback when the main scroll panel is scrolled.\n-- ===========================================================================\nfunction OnScroll( control:table, percent:number )\n\t\n\t-- Parallax \n\tControls.ArtScroller:SetScrollValue( percent );\n\tControls.FarBackArtScroller:SetScrollValue( percent );\n\n -- Audio\n\tif percent==0 or percent==1.0 then \n if m_lastPercent == percent then\n return;\n end\n UI.PlaySound(\"UI_TechTree_ScrollTick_End\"); \n\telse \n\t\tUI.PlaySound(\"UI_TechTree_ScrollTick\"); \n\tend\n \n m_lastPercent = percent; \nend\n\n\n-- ===========================================================================\n--\tDisplay the state of the tree (filter, node display, etc...) based on the \n--\tactive player's item data. \n-- ===========================================================================\nfunction View( playerTechData:table )\n\n\t-- Output the node states for the tree\n\tfor _,node in pairs(m_uiNodes) do\n\t\tlocal item\t\t:table = m_kItemDefaults[node.Type];\t\t\t\t\t\t-- static item data\n\t\tlocal live\t\t:table = playerTechData[DATA_FIELD_LIVEDATA][node.Type];\t-- live (changing) data\n\t\tlocal artInfo\t:table = STATUS_ART[live.Status];\t\t\t\t\t\t\t-- art\/styles for this state\n\n\t\tif(live.Status == ITEM_STATUS.RESEARCHED) then\n\t\t\tfor _,prereqId in pairs(item.Prereqs) do\n\t\t\t\tif(prereqId ~= PREREQ_ID_TREE_START) then\n\t\t\t\t\tlocal prereq\t\t:table = m_kItemDefaults[prereqId];\n\t\t\t\t\tlocal previousRow\t:number = prereq.UITreeRow;\n\t\t\t\t\tlocal previousColumn:number = m_kEras[prereq.EraType].PriorColumns;\n\n\t\t\t\t\tfor lineNum,line in pairs(m_uiConnectorSets[item.Type..\",\"..prereqId]) do\n\t\t\t\t\t\tif(lineNum == 1 or lineNum == 5) then\n\t\t\t\t\t\t\tline:SetTexture(\"Controls_TreePathEW\");\n\t\t\t\t\t\tend\n\t\t\t\t\t\tif( lineNum == 3) then\n\t\t\t\t\t\t\tline:SetTexture(\"Controls_TreePathNS\");\n\t\t\t\t\t\tend\n\n\t\t\t\t\t\tif(lineNum==2)then\n\t\t\t\t\t\t\tif previousRow < item.UITreeRow then\n\t\t\t\t\t\t\t\tline:SetTexture(\"Controls_TreePathSE\");\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tline:SetTexture(\"Controls_TreePathNE\");\n\t\t\t\t\t\t\tend\n\t\t\t\t\t\tend\n\n\t\t\t\t\t\tif(lineNum==4)then\n\t\t\t\t\t\t\tif previousRow < item.UITreeRow then\n\t\t\t\t\t\t\t\tline:SetTexture(\"Controls_TreePathES\");\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tline:SetTexture(\"Controls_TreePathEN\");\n\t\t\t\t\t\t\tend\n\t\t\t\t\t\tend\n\t\t\t\t\tend\n\t\t\t\tend\n\t\t\tend\n\t\tend\n\n\t\tnode.NodeName:SetColor( artInfo.TextColor0, 0 );\n\t\tnode.NodeName:SetColor( artInfo.TextColor1, 1 );\n\t\tif m_debugShowIDWithName then\n\t\t\tnode.NodeName:SetText( tostring(item.Index)..\" \"..Locale.Lookup(item.Name) );\t-- Debug output\n\t\telse\n\t\t\tnode.NodeName:SetText( Locale.ToUpper( Locale.Lookup(item.Name) ));\t\t\t\t-- Normal output\n\t\tend\n\n\t\tif live.Turns > 0 then \n\t\t\tnode.Turns:SetHide( false );\n\t\t\tnode.Turns:SetColor( artInfo.TextColor0, 0 );\n\t\t\tnode.Turns:SetColor( artInfo.TextColor1, 1 );\n\t\t\tnode.Turns:SetText( Locale.Lookup(\"LOC_TECH_TREE_TURNS\",live.Turns) );\n\t\telse\n\t\t\tnode.Turns:SetHide( true );\n\t\tend\n\n\t\tif item.IsBoostable and live.Status ~= ITEM_STATUS.RESEARCHED then\t\t\t\n\t\t\tnode.BoostIcon:SetHide( false );\n\t\t\tnode.BoostText:SetHide( false );\n\t\t\tnode.BoostText:SetColor( artInfo.TextColor0, 0 );\n\t\t\tnode.BoostText:SetColor( artInfo.TextColor1, 1 );\n\n\t\t\tlocal boostText:string;\n\t\t\tif live.IsBoosted then\n\t\t\t\tboostText = TXT_BOOSTED..\" \"..item.BoostText;\n\t\t\t\tnode.BoostIcon:SetTexture( PIC_BOOST_ON );\n\t\t\t\tnode.BoostMeter:SetHide( true );\n\t\t\t\tnode.BoostedBack:SetHide( false );\n\t\t\telse\n\t\t\t\tboostText = TXT_TO_BOOST..\" \"..item.BoostText;\n\t\t\t\tnode.BoostedBack:SetHide( true );\n\t\t\t\tnode.BoostIcon:SetTexture( PIC_BOOST_OFF );\n\t\t\t\tnode.BoostMeter:SetHide( false );\n\t\t\t\tlocal boostAmount = (item.BoostAmount*.01) + (live.Progress\/ live.Cost);\n\t\t\t\tnode.BoostMeter:SetPercent( boostAmount );\n\t\t\tend\n\t\t\tTruncateStringWithTooltip(node.BoostText, MAX_BEFORE_TRUNC_TO_BOOST, boostText); \n\t\telse\n\t\t\tnode.BoostIcon:SetHide( true );\n\t\t\tnode.BoostText:SetHide( true );\n\t\t\tnode.BoostedBack:SetHide( true );\n\t\t\tnode.BoostMeter:SetHide( true );\n\t\tend\n\t\t\n\t\tif live.Status == ITEM_STATUS.CURRENT then\n\t\t\tnode.GearAnim:SetHide( false );\n\t\telse \n\t\t\tnode.GearAnim:SetHide( true );\n\t\tend\n\n\t\tif live.Progress > 0 then\n\t\t\tnode.ProgressMeter:SetHide( false );\t\t\t\n\t\t\tnode.ProgressMeter:SetPercent(live.Progress \/ live.Cost);\n\t\telse\n\t\t\tnode.ProgressMeter:SetHide( true );\t\t\t\n\t\tend\n\n\t\t-- Show\/Hide Recommended Icon\n\t\tif live.IsRecommended and live.AdvisorType ~= nil then\n\t\t\tnode.RecommendedIcon:SetIcon(live.AdvisorType);\n\t\t\tnode.RecommendedIcon:SetHide(false);\n\t\telse\n\t\t\tnode.RecommendedIcon:SetHide(true);\n\t\tend\n\n\t\t-- Set art for icon area\n\t\tif(node.Type ~= nil) then\n\t\t\tlocal iconName :string = DATA_ICON_PREFIX .. node.Type;\n\t\t\tif (artInfo.Name == \"BLOCKED\") then\n\t\t\t\tnode.IconBacking:SetHide(true);\n\t\t\t\ticonName = iconName .. \"_FOW\";\n\t\t\t\tnode.BoostMeter:SetColor(0x66ffffff);\n\t\t\t\tnode.BoostIcon:SetColor(0x66000000);\n\t\t\telse\n\t\t\t\tnode.IconBacking:SetHide(false);\n\t\t\t\ticonName = iconName;\n\t\t\t\tnode.BoostMeter:SetColor(0xffffffff);\n\t\t\t\tnode.BoostIcon:SetColor(0xffffffff);\n\t\t\tend\n\t\t\tlocal textureOffsetX, textureOffsetY, textureSheet = IconManager:FindIconAtlas(iconName, 42);\t\n\t\t\tif (textureOffsetX ~= nil) then\n\t\t\t\tnode.Icon:SetTexture( textureOffsetX, textureOffsetY, textureSheet );\n\t\t\tend\n\t\tend\n\t\t\n\t\tif artInfo.IsButton then\n\t\t\tnode.OtherStates:SetHide( true );\n\t\t\tnode.NodeButton:SetTextureOffsetVal( artInfo.BGU, artInfo.BGV );\n\t\telse\n\t\t\tnode.OtherStates:SetHide( false );\n\t\t\tnode.OtherStates:SetTextureOffsetVal( artInfo.BGU, artInfo.BGV );\n\t\tend\n\n\t\tif artInfo.FillTexture ~= nil then\n\t\t\tnode.FillTexture:SetHide( false );\n\t\t\tnode.FillTexture:SetTexture( artInfo.FillTexture );\n\t\telse\n\t\t\tnode.FillTexture:SetHide( true );\n\t\tend\n\n\t\tif artInfo.BoltOn then\n\t\t\tnode.Bolt:SetTexture(PIC_BOLT_ON);\n\t\telse\n\t\t\tnode.Bolt:SetTexture(PIC_BOLT_OFF);\n\t\tend\n\n\t\tnode.NodeButton:SetToolTipString(ToolTipHelper.GetToolTip(item.Type, Game.GetLocalPlayer()));\n\t\tnode.IconBacking:SetTexture(artInfo.IconBacking);\n\n\t\t-- Darken items not making it past filter.\n\t\tlocal currentFilter:table = playerTechData[DATA_FIELD_UIOPTIONS].filter;\n\t\tif currentFilter == nil or currentFilter.Func == nil or currentFilter.Func( item.Type ) then\n\t\t\tnode.FilteredOut:SetHide( true );\n\t\telse\n\t\t\tnode.FilteredOut:SetHide( false );\n\t\tend\n\n\tend\n\n\t-- Fill in where the markers (representing players) are at:\n\tm_kMarkerIM:ResetInstances();\n\tlocal PADDING\t\t:number = 24;\n\tlocal thisPlayerID\t:number = Game.GetLocalPlayer();\n\tlocal markers\t\t:table\t= m_kCurrentData[DATA_FIELD_PLAYERINFO].Markers;\n\tfor _,markerStat in ipairs( markers ) do\n\n\t\t-- Only build a marker if a player has started researching...\n\t\tif markerStat.HighestColumn ~= -1 then\n\t\t\tlocal instance\t:table\t= m_kMarkerIM:GetInstance();\n\n\t\t\tif markerStat.IsPlayerHere then\n\t\t\t\t-- Representing the player viewing the tree\t\t\t\n\t\t\t\tinstance.Portrait:SetHide( true );\n\t\t\t\tinstance.TurnGrid:SetHide( false );\n\t\t\t\tinstance.TurnLabel:SetText( Locale.Lookup(\"LOC_TECH_TREE_TURN_NUM\" ));\n\t\t\t\t\n\t\t\t\t--instance.TurnNumber:SetText( tostring(Game.GetCurrentGameTurn()) );\n\t\t\t\tlocal turn = Game.GetCurrentGameTurn();\n\t\t\t\tinstance.TurnNumber:SetText(tostring(turn));\n\n\t\t\t\tlocal turnLabelWidth = PADDING + instance.TurnLabel:GetSizeX() + instance.TurnNumber:GetSizeX(); \n\t\t\t\tinstance.TurnGrid:SetSizeX( turnLabelWidth );\n\t\t\t\tinstance.Marker:SetTexture( PIC_MARKER_PLAYER );\n\t\t\t\tinstance.Marker:SetSizeVal( SIZE_MARKER_PLAYER_X, SIZE_MARKER_PLAYER_Y );\n\t\t\telse\n\t\t\t\t-- An other player\t\t\t\t\n\t\t\t\tinstance.TurnGrid:SetHide( true );\n\t\t\t\tinstance.Marker:SetTexture( PIC_MARKER_OTHER );\n\t\t\t\tinstance.Marker:SetSizeVal( SIZE_MARKER_OTHER_X, SIZE_MARKER_OTHER_Y );\n\t\t\tend\n\n\t\t\t-- Different content in marker based on if there is just 1 player in the column, or more than 1\n\t\t\tlocal tooltipString\t\t\t\t:string = Locale.Lookup(\"LOC_TREE_ERA\", Locale.Lookup(GameInfo.Eras[markerStat.HighestEra].Name) )..\"[NEWLINE]\";\n\t\t\tlocal numOfPlayersAtThisColumn\t:number = table.count(markerStat.PlayerNums);\n\t\t\tif numOfPlayersAtThisColumn < 2 then\n\t\t\t\tinstance.Num:SetHide( true );\t\t\t\n\t\t\t\tlocal playerNum\t\t:number = markerStat.PlayerNums[1];\n\t\t\t\tlocal pPlayerConfig :table = PlayerConfigurations[playerNum];\n\t\t\t\ttooltipString = tooltipString.. Locale.Lookup(pPlayerConfig:GetPlayerName());\t-- ??TRON: Temporary using player name until leaderame is fixed\n\n\t\t\t\tif not markerStat.IsPlayerHere then\n\t\t\t\t\tlocal iconName:string = \"ICON_\"..pPlayerConfig:GetLeaderTypeName();\n\t\t\t\t\tlocal textureOffsetX:number, textureOffsetY:number, textureSheet:string = IconManager:FindIconAtlas(iconName);\n\t\t\t\t\tinstance.Portrait:SetHide( false );\n\t\t\t\t\tinstance.Portrait:SetTexture( textureOffsetX, textureOffsetY, textureSheet );\n\t\t\t\tend\n\t\t\telse\n\t\t\t\tinstance.Portrait:SetHide( true );\n\t\t\t\tinstance.Num:SetHide( false );\n\t\t\t\tinstance.Num:SetText(tostring(numOfPlayersAtThisColumn));\n\t\t\t\tfor i,playerNum in ipairs(markerStat.PlayerNums) do\n\t\t\t\t\tlocal pPlayerConfig :table = PlayerConfigurations[playerNum];\n\t\t\t\t\t--[[ ??TRON debug: The human player, player 0, has whack values! No leader name coming from engine!\n\t\t\t\t\t\tlocal name = pPlayerConfig:GetPlayerName();\n\t\t\t\t\t\tlocal nick = pPlayerConfig:GetNickName();\n\t\t\t\t\t\tlocal leader = pPlayerConfig:GetLeaderName();\n\t\t\t\t\t\tlocal civ = pPlayerConfig:GetCivilizationTypeName();\n\t\t\t\t\t\tlocal isHuman = pPlayerConfig:IsHuman();\n\t\t\t\t\t\tprint(\"debug info:\",name,nick,leader,civ,isHuman);\n\t\t\t\t\t]]\n\t\t\t\t\t--tooltipString = tooltipString.. Locale.Lookup(pPlayerConfig:GetLeaderName()); \n\t\t\t\t\ttooltipString = tooltipString.. Locale.Lookup(pPlayerConfig:GetPlayerName());\t-- ??TRON: Temporary using player name until leaderame is fixed\n\t\t\t\t\tif i < numOfPlayersAtThisColumn then\n\t\t\t\t\t\ttooltipString = tooltipString..\"[NEWLINE]\";\n\t\t\t\t\tend\n\t\t\t\tend\n\t\t\tend\n\t\t\tinstance.Marker:SetToolTipString( tooltipString );\n\n\t\t\tlocal MARKER_OFFSET_START:number = 20;\n\t\t\tlocal markerPercent :number = math.clamp( markerStat.HighestColumn \/ m_maxColumns, 0, 1 );\n\t\t\tlocal markerX\t\t:number = MARKER_OFFSET_START + (markerPercent * m_scrollWidth );\n\t\t\tinstance.Top:SetOffsetVal(markerX ,0);\n\t\tend\n\tend\n\n\tRealizePathMarkers();\n\tRealizeFilterPulldown();\n\tRealizeKeyPanel();\n\tRealizeTutorialNodes();\nend\n\n\n-- ===========================================================================\n--\tLoad all the 'live' data for a player.\n-- ===========================================================================\nfunction GetLivePlayerData( ePlayer:number, eCompletedTech:number )\n\t\n\t-- If first time, initialize player data tables.\n\tlocal data\t:table = m_kAllPlayersTechData[ePlayer];\t\n\tif data == nil then\n\t\t-- Initialize player's top level tables:\n\t\tdata = {};\n\t\tdata[DATA_FIELD_LIVEDATA]\t\t\t= {};\n\t\tdata[DATA_FIELD_PLAYERINFO]\t\t\t= {};\n\t\tdata[DATA_FIELD_UIOPTIONS]\t\t\t= {};\n\t\t\n\t\t-- Initialize data, and sub tables within the top tables.\n\t\tdata[DATA_FIELD_PLAYERINFO].Player\t= ePlayer;\t-- Number of this player\n\t\tdata[DATA_FIELD_PLAYERINFO].Markers\t= {};\t\t-- Hold a condenced, UI-ready version of stats\n\t\tdata[DATA_FIELD_PLAYERINFO].Stats\t= {};\t\t-- Hold stats on where each player is (based on what this player can see)\n\tend\t\n\n\tlocal kPlayer\t\t:table\t= Players[ePlayer];\n\tlocal playerTechs\t:table\t= kPlayer:GetTechs();\n\tlocal currentTechID\t:number = playerTechs:GetResearchingTech();\n\n\t-- Get recommendations\n\tlocal techRecommendations:table = {};\n\tlocal kGrandAI:table = kPlayer:GetGrandStrategicAI();\n\tif kGrandAI then\n\t\tfor i,recommendation in pairs(kGrandAI:GetTechRecommendations()) do\n\t\t\ttechRecommendations[recommendation.TechHash] = recommendation.TechScore;\n\t\tend\n\tend\n\n\t-- DEBUG: Output header to console.\n\tif m_debugOutputTechInfo then\n\t\tprint(\" Item Id Status Progress $ Era Prereqs\");\n\t\tprint(\"------------------------------ --- ---------- --------- --- ---------------- --------------------------\");\n\tend\n\n\t-- Loop through all items and place in appropriate buckets as well\n\t-- read in the associated information for it.\n\tfor type,item in pairs(m_kItemDefaults) do\n\t\tlocal techID\t:number = GameInfo.Technologies[item.Type].Index;\n\t\tlocal status\t:number = ITEM_STATUS.BLOCKED;\n\t\tlocal turnsLeft\t:number = playerTechs:GetTurnsToResearch(techID);\n\t\tif playerTechs:HasTech(techID) or techID == eCompletedTech then\n\t\t\tstatus = ITEM_STATUS.RESEARCHED;\n\t\t\tturnsLeft = 0;\n\t\telseif techID == currentTechID then\n\t\t\tstatus = ITEM_STATUS.CURRENT;\n\t\t\tturnsLeft = playerTechs:GetTurnsLeft();\n\t\telseif playerTechs:CanResearch(techID) then\n\t\t\tstatus = ITEM_STATUS.READY;\n\t\tend\n\n\t\tdata[DATA_FIELD_LIVEDATA][type] = {\n\t\t\tCost\t\t= playerTechs:GetResearchCost(techID),\n\t\t\tIsBoosted\t= playerTechs:HasBoostBeenTriggered(techID),\n\t\t\tProgress\t= playerTechs:GetResearchProgress(techID),\n\t\t\tStatus\t\t= status,\n\t\t\tTurns\t\t= turnsLeft\n\t\t}\n\n\t\t-- Determine if tech is recommended\n\t\tif techRecommendations[item.Hash] then\n\t\t\tdata[DATA_FIELD_LIVEDATA][type].AdvisorType = GameInfo.Technologies[item.Type].AdvisorType;\n\t\t\tdata[DATA_FIELD_LIVEDATA][type].IsRecommended = true;\n\t\telse\n\t\t\tdata[DATA_FIELD_LIVEDATA][type].IsRecommended = false;\n\t\tend\n\n\t\t-- DEBUG: Output to console detailed information about the tech.\n\t\tif m_debugOutputTechInfo then\n\t\t\tlocal this:table = data[DATA_FIELD_LIVEDATA][type];\n\t\t\tprint( string.format(\"%30s %-3d %-10s %4d\/%-4d %3d %-16s %s\",\n\t\t\t\ttype,item.Index,\n\t\t\t\tSTATUS_ART[status].Name,\n\t\t\t\tthis.Progress,\n\t\t\t\tthis.Cost,\n\t\t\t\tthis.Turns,\n\t\t\t\titem.EraType,\n\t\t\t\tGetPrereqsString(item.Prereqs)\n\t\t\t));\n\t\tend\n\tend\n\n\tlocal players = Game.GetPlayers{Major = true};\n\n\t-- Determine where all players are.\n\tlocal playerVisibility = PlayersVisibility[ePlayer];\n\tif playerVisibility ~= nil then\n\t\tfor i, otherPlayer in ipairs(players) do\n\t\t\tlocal playerID\t\t:number = otherPlayer:GetID();\n\t\t\tlocal playerTech\t:table = players[i]:GetTechs();\n\t\t\tlocal currentTech\t:number = playerTech:GetResearchingTech();\n\t\t\tdata[DATA_FIELD_PLAYERINFO].Stats[playerID] = {\n\t\t\t\tCurrentID\t\t= currentTech,\t\t-- tech currently being researched\n\t\t\t\tHasMet\t\t\t= kPlayer:GetDiplomacy():HasMet(playerID) or playerID==ePlayer or m_debugShowAllMarkers;\n\t\t\t\tHighestColumn\t= -1,\t\t\t\t-- where they are in the timeline\n\t\t\t\tHighestEra\t\t= \"\"\n\t\t\t};\n\n\t\t\t-- The latest tech a player may be researching may not be the one\n\t\t\t-- furthest along in time; so go through ALL the techs and track\n\t\t\t-- the highest column of all researched tech.\n\t\t\tlocal highestColumn :number = -1;\n\t\t\tlocal highestEra\t:string = \"\";\n\t\t\tfor _,item in pairs(m_kItemDefaults) do\n\t\t\t\tlocal techID:number = GameInfo.Technologies[item.Type].Index;\n\t\t\t\tif playerTech:HasTech(techID) then\n\t\t\t\t\tlocal column:number = item.Column + m_kEras[item.EraType].PriorColumns;\n\t\t\t\t\tif column > highestColumn then\n\t\t\t\t\t\thighestColumn\t= column;\n\t\t\t\t\t\thighestEra\t\t= item.EraType;\n\t\t\t\t\tend\n\t\t\t\tend\n\t\t\tend\n\t\t\tdata[DATA_FIELD_PLAYERINFO].Stats[playerID].HighestColumn\t= highestColumn;\n\t\t\tdata[DATA_FIELD_PLAYERINFO].Stats[playerID].HighestEra\t\t= highestEra;\n\t\tend\n\tend\n\n\t-- All player data is added.. build markers data based on player data.\n\tlocal checkedID:table = {};\n\tdata[DATA_FIELD_PLAYERINFO].Markers\t= {};\n\tfor playerID:number, targetPlayer:table in pairs(data[DATA_FIELD_PLAYERINFO].Stats) do\n\t\t-- Only look for IDs that haven't already been merged into a marker.\n\t\tif checkedID[playerID] == nil and targetPlayer.HasMet then\n\t\t\tcheckedID[playerID] = true;\n\t\t\tlocal markerData:table = {};\n\t\t\tif data[DATA_FIELD_PLAYERINFO].Markers[playerID] ~= nil then\n\t\t\t\tmarkerData = data[DATA_FIELD_PLAYERINFO].Markers[playerID];\n\t\t\t\tmarkerData.HighestColumn = targetPlayer.HighestColumn;\n\t\t\t\tmarkerData.HighestEra = targetPlayer.HighestEra;\n\t\t\t\tmarkerData.IsPlayerHere = (playerID == ePlayer);\n\t\t\telse\n\t\t\t\tmarkerData = {\n\t\t\t\t\t\t\tHighestColumn\t= targetPlayer.HighestColumn,\t-- Which column this marker should be placed\n\t\t\t\t\t\t\tHighestEra\t\t= targetPlayer.HighestEra,\n\t\t\t\t\t\t\tIsPlayerHere\t= (playerID == ePlayer),\t\t\t\t\n\t\t\t\t\t\t\tPlayerNums\t\t= {playerID}}\t\t\t\t\t\t\t\t\t-- All players who share this marker spot\n\t\t\t\ttable.insert( data[DATA_FIELD_PLAYERINFO].Markers, markerData );\t\t\t\t\n\t\t\tend\n\n\t\t\t-- SPECIAL CASE: Current player starts at column 0 so it's immediately visible on timeline:\n\t\t\tif playerID == ePlayer and markerData.HighestColumn == -1 then\n\t\t\t\tmarkerData.HighestColumn = 0;\t\t\n\t\t\t\tlocal firstEra:table = nil;\n\t\t\t\tfor _,era in pairs(m_kEras) do\n\t\t\t\t\tif firstEra == nil or era.Index < firstEra.Index then\n\t\t\t\t\t\tfirstEra = era;\n\t\t\t\t\tend\n\t\t\t\tend\t\t\t\t\t\t\t\n\t\t\t\tmarkerData.HighestEra = firstEra.Index;\n\t\t\tend\n\n\t\t\t-- Traverse all the IDs and merge them with this one.\n\t\t\tfor anotherID:number, anotherPlayer:table in pairs(data[DATA_FIELD_PLAYERINFO].Stats) do\t\t\t\t\n\t\t\t\t-- Don't add if: it's ourself, if hasn't researched at least 1 tech, if we haven't met\n\t\t\t\tif playerID ~= anotherID and anotherPlayer.HighestColumn > -1 and anotherPlayer.HasMet then\t\t\n\t\t\t\t\tif markerData.HighestColumn == data[DATA_FIELD_PLAYERINFO].Stats[anotherID].HighestColumn then\n\t\t\t\t\t\tcheckedID[anotherID] = true;\n\t\t\t\t\t\t-- Need to do this check if player's ID didn't show up first in the list in creating the marker.\t\t\t\t\t\t\n\t\t\t\t\t\tif anotherID == ePlayer then\n\t\t\t\t\t\t\tmarkerData.IsPlayerHere\t= true;\n\t\t\t\t\t\tend\n\t\t\t\t\t\tlocal foundAnotherID:boolean = false;\n\n\t\t\t\t\t\tfor _, playernumsID in pairs(markerData.PlayerNums) do\n\t\t\t\t\t\t\tif not foundAnotherID and playernumsID == anotherID then\n\t\t\t\t\t\t\t\tfoundAnotherID = true;\n\t\t\t\t\t\t\tend\n\t\t\t\t\t\tend\n\n\t\t\t\t\t\tif not foundAnotherID then\n\t\t\t\t\t\t\ttable.insert( markerData.PlayerNums, anotherID );\n\t\t\t\t\t\tend\n\t\t\t\t\tend\n\t\t\t\tend\n\t\t\tend\n\t\tend\n\tend\n\t\n\treturn data;\nend\n\n\n\n-- ===========================================================================\nfunction OnLocalPlayerTurnBegin()\n\tlocal ePlayer :number = Game.GetLocalPlayer();\n\tif ePlayer ~= -1 then\n\t --local kPlayer :table = Players[ePlayer];\n\t if m_ePlayer ~= ePlayer then\n\t\t m_ePlayer = ePlayer;\n\t\t m_kCurrentData = GetLivePlayerData( ePlayer );\t\t \n\t end\n end\nend\n\n-- ===========================================================================\n--\tEVENT\n--\tPlayer turn is ending\n-- ===========================================================================\nfunction OnLocalPlayerTurnEnd()\n\t-- If current data set is for the player, save back any changes into\n\t-- the table of player tables.\n\tlocal ePlayer :number = Game.GetLocalPlayer();\n\tif ePlayer ~= -1 then\n\t\tif m_kCurrentData[DATA_FIELD_PLAYERINFO].Player == ePlayer then\n\t\t\tm_kAllPlayersTechData[ePlayer] = m_kCurrentData;\n\t\tend\n\tend\n\n\tif(GameConfiguration.IsHotseat()) then\n\t\tClose();\n\tend\nend\n\n-- ===========================================================================\nfunction OnResearchChanged( ePlayer:number, eTech:number )\n\tif ePlayer == Game.GetLocalPlayer() then\n\t\tm_ePlayer = ePlayer;\n\t\tm_kCurrentData = GetLivePlayerData( m_ePlayer, -1 );\n\t\tif not ContextPtr:IsHidden() then\n\t\t\tView( m_kCurrentData );\n\t\tend\n\tend\nend\n\n-- ===========================================================================\nfunction OnResearchComplete( ePlayer:number, eTech:number)\n\tif ePlayer == Game.GetLocalPlayer() then\n\t\tm_ePlayer = ePlayer;\n\t\tm_kCurrentData = GetLivePlayerData( m_ePlayer, eTech );\n\t\tif not ContextPtr:IsHidden() then\n\t\t\tView( m_kCurrentData );\n\t\tend\n\tend\nend\n\n-- ===========================================================================\n--\tInitially size static UI elements \n--\t(or re-size if screen resolution changed)\n-- ===========================================================================\nfunction Resize()\n\tm_width, m_height\t= UIManager:GetScreenSizeVal();\t\t-- Cache screen dimensions\n\tm_scrollWidth\t\t= m_width - 80;\t\t\t\t\t\t-- Scrollbar area (where markers are placed) slightly smaller than screen width\n\n\t-- Determine how far art will span.\n\t-- First obtain the size of the tree by taking the visible size and multiplying it by the ratio of the full content\n\tlocal scrollPanelX:number = (Controls.NodeScroller:GetSizeX() \/ Controls.NodeScroller:GetRatio());\n\n\tlocal artAndEraScrollWidth:number = scrollPanelX * (1\/PARALLAX_SPEED);\n\tControls.ArtParchmentDecoTop:SetSizeX( artAndEraScrollWidth );\n\tControls.ArtParchmentDecoBottom:SetSizeX( artAndEraScrollWidth );\n\tControls.ArtParchmentRippleTop:SetSizeX( artAndEraScrollWidth );\n\tControls.ArtParchmentRippleBottom:SetSizeX( artAndEraScrollWidth );\n\tControls.ForceSizeX:SetSizeX( artAndEraScrollWidth );\t\n\tControls.ArtScroller:CalculateSize();\n\tControls.ArtCornerGrungeTR:ReprocessAnchoring();\n\tControls.ArtCornerGrungeBR:ReprocessAnchoring();\n\n\n\tlocal PADDING_DUE_TO_LAST_BACKGROUND_ART_IMAGE:number = 100;\n\tlocal backArtScrollWidth:number = scrollPanelX * (1\/PARALLAX_ART_SPEED);\n\tControls.Background:SetSizeX( backArtScrollWidth + PADDING_DUE_TO_LAST_BACKGROUND_ART_IMAGE );\n\tControls.Background:SetSizeY( SIZE_WIDESCREEN_HEIGHT - (SIZE_TIMELINE_AREA_Y-8) );\t\n\tControls.FarBackArtScroller:CalculateSize();\nend\n\n-- ===========================================================================\nfunction OnUpdateUI( type:number, tag:string, iData1:number, iData2:number, strData1:string)\n\tif type == SystemUpdateUI.ScreenResize then\n\t\tResize();\n\tend\nend\n\n-- ===========================================================================\n--\tObtain the data from the DB that doesn't change\n--\tBase costs and relationships (prerequisites)\n--\tRETURN: A table of node data (techs\/civics\/etc...) with a prereq for each entry.\n-- ===========================================================================\nfunction PopulateItemData( tableName:string, tableColumn:string, prereqTableName:string, itemColumn:string, prereqColumn:string)\t\n\t-- Build main item table.\n\tm_kItemDefaults = {};\n\tlocal index\t\t\t:number\t\t= 0;\n\t\n\tfunction GetHash(t)\n\t\tlocal r = GameInfo.Types[t];\n\t\tif(r) then\n\t\t\treturn r.Hash;\n\t\telse\n\t\t\treturn 0;\n\t\tend\n\tend\n\n\tfor row:table in GameInfo[tableName]() do\n\n\t\tlocal entry:table\t= {};\n\t\tentry.Type\t\t\t= row[tableColumn];\n\t\tentry.Name\t\t\t= row.Name;\n\t\tentry.BoostText\t\t= \"\";\n\t\tentry.Column\t\t= -1;\n\t\tentry.Cost\t\t\t= row.Cost;\n\t\tentry.Description\t= row.Description and Locale.Lookup( row.Description );\n\t\tentry.EraType\t\t= row.EraType;\n\t\tentry.Hash\t\t\t= GetHash(entry.Type);\n\t\t--entry.Icon\t\t\t= row.Icon;\n\t\tentry.Index\t\t\t= index;\n\t\tentry.IsBoostable\t= false;\n\t\tentry.Prereqs\t\t= {};\n\t\tentry.UITreeRow\t\t= row.UITreeRow;\t\t\n\t\tentry.Unlocks\t\t= {};\t\t\t\t-- Each unlock has: unlockType, iconUnavail, iconAvail, tooltip\n\n\t\t-- Boost?\n\t\tfor boostRow in GameInfo.Boosts() do\n\t\t\tif boostRow.TechnologyType == entry.Type then\t\t\t\t\n\t\t\t\tentry.BoostText = Locale.Lookup( boostRow.TriggerDescription );\n\t\t\t\tentry.IsBoostable = true;\n\t\t\t\tentry.BoostAmount = boostRow.Boost;\n\t\t\t\tbreak;\n\t\t\tend\n\t\tend\n\n\t\tfor prereqRow in GameInfo[prereqTableName]() do\n\t\t\tif prereqRow[itemColumn] == entry.Type then\n\t\t\t\ttable.insert( entry.Prereqs, prereqRow[prereqColumn] );\n\t\t\tend\n\t\tend\n\t\t-- If no prereqs were found, set item to special tree start value\n\t\tif table.count(entry.Prereqs) == 0 then\n\t\t\ttable.insert(entry.Prereqs, PREREQ_ID_TREE_START);\n\t\tend\n\n\t\t-- Warn if DB has an out of bounds entry.\n\t\tif entry.UITreeRow < ROW_MIN or entry.UITreeRow > ROW_MAX then\n\t\t\tUI.DataError(\"UITreeRow for '\"..entry.Type..\"' has an out of bound UITreeRow=\"..tostring(entry.UITreeRow)..\" MIN=\"..tostring(ROW_MIN)..\" MAX=\"..tostring(ROW_MAX));\n\t\tend\n\n\t\t-- Only build up a limited number of eras if debug information is forcing a subset.\n\t\tif m_debugFilterEraMaxIndex < 1 or m_debugFilterEraMaxIndex ~= -1 then\n\t\t\tm_kItemDefaults[entry.Type] = entry;\n\t\t\tindex = index + 1;\n\t\tend\n\n\t\tif m_kEraCounter[entry.EraType] == nil then\n\t\t\tm_kEraCounter[entry.EraType] = 0;\n\t\tend\n\t\tm_kEraCounter[entry.EraType] = m_kEraCounter[entry.EraType] + 1;\n\tend\nend\n\n\n-- ===========================================================================\n--\tCreate a hash table of EraType to its chronological index.\n-- ===========================================================================\nfunction PopulateEraData()\n\tm_kEras = {};\n\tfor row:table in GameInfo.Eras() do\n\t\tif m_kEraCounter[row.EraType] and m_kEraCounter[row.EraType] > 0 and m_debugFilterEraMaxIndex < 1 or row.ChronologyIndex <= m_debugFilterEraMaxIndex then\t\t\t\n\t\t\tm_kEras[row.EraType] = { \n\t\t\t\tBGTexture\t= row.EraTechBackgroundTexture,\n\t\t\t\tNumColumns\t= 0,\n\t\t\t\tDescription\t= Locale.Lookup(row.Name),\n\t\t\t\tIndex\t\t= row.ChronologyIndex,\n\t\t\t\tPriorColumns= -1,\n\t\t\t\tColumns\t\t= {}\t\t-- column data\n\t\t\t}\n\t\tend\n\tend\t\nend\n\n\n-- ===========================================================================\n--\n-- ===========================================================================\nfunction PopulateFilterData()\n\n\t-- Hard coded\/special filters:\n\n\t-- Load entried into filter table from TechFilters XML data\n\t--[[ TODO: Only add filters based on what is in the game database. ??TRON\n\tfor row in GameInfo.TechFilters() do\n\t\ttable.insert( m_kFilters, { row.IconString, row.Description, g_TechFilters[row.Type] });\n\tend\n\t]]\n\tm_kFilters = {};\n\ttable.insert( m_kFilters, { Func=nil,\t\t\t\t\t\t\t\t\t\tDescription=\"LOC_TECH_FILTER_NONE\",\t\t\tIcon=nil } );\n\t--table.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_RECOMMENDED\"],\tDescription=\"LOC_TECH_FILTER_RECOMMENDED\",\tIcon=\"[ICON_Recommended]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_FOOD\"],\t\t\tDescription=\"LOC_TECH_FILTER_FOOD\",\t\t\tIcon=\"[ICON_Food]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_SCIENCE\"],\t\tDescription=\"LOC_TECH_FILTER_SCIENCE\",\t\tIcon=\"[ICON_Science]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_PRODUCTION\"],\tDescription=\"LOC_TECH_FILTER_PRODUCTION\",\tIcon=\"[ICON_Production]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_CULTURE\"],\t\tDescription=\"LOC_TECH_FILTER_CULTURE\",\t\tIcon=\"[ICON_Culture]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_GOLD\"],\t\t\tDescription=\"LOC_TECH_FILTER_GOLD\",\t\t\tIcon=\"[ICON_Gold]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_FAITH\"],\t\t\tDescription=\"LOC_TECH_FILTER_FAITH\",\t\tIcon=\"[ICON_Faith]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_HOUSING\"],\t\tDescription=\"LOC_TECH_FILTER_HOUSING\",\t\tIcon=\"[ICON_Housing]\" });\n\t--table.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_AMENITIES\"],\tDescription=\"LOC_TECH_FILTER_AMENITIES\",\tIcon=\"[ICON_Amenities]\" });\n\t--table.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_HEALTH\"],\t\tDescription=\"LOC_TECH_FILTER_HEALTH\",\t\tIcon=\"[ICON_Health]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_UNITS\"],\t\t\tDescription=\"LOC_TECH_FILTER_UNITS\",\t\tIcon=\"[ICON_Units]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_IMPROVEMENTS\"],\tDescription=\"LOC_TECH_FILTER_IMPROVEMENTS\",\tIcon=\"[ICON_Improvements]\" });\n\ttable.insert( m_kFilters, { Func=g_TechFilters[\"TECHFILTER_WONDERS\"],\t\tDescription=\"LOC_TECH_FILTER_WONDERS\",\t\tIcon=\"[ICON_Wonders]\" });\n\n\tfor i,filter in ipairs(m_kFilters) do\t\t\n\t\tlocal filterLabel\t = Locale.Lookup( filter.Description );\n\t\tlocal filterIconText = filter.Icon;\n\n\t\tlocal controlTable\t = {}; \n\t\tControls.FilterPulldown:BuildEntry( \"FilterItemInstance\", controlTable );\n\n\t\t-- If a text icon exists, use it and bump the label in the button over.\n\t\t--[[ TODO: Uncomment if icons are added.\n\t\tif filterIconText ~= nil and filterIconText ~= \"\" then\n\t\t\tcontrolTable.IconText:SetText( Locale.Lookup(filterIconText) );\n\t\t\tcontrolTable.DescriptionText:SetOffsetX(24);\n\t\telse\n\t\t\tcontrolTable.IconText:SetText( \"\" );\n\t\t\tcontrolTable.DescriptionText:SetOffsetX(4);\n\t\tend\n\t\t]]\n\t\tcontrolTable.DescriptionText:SetOffsetX(8);\n\t\tcontrolTable.DescriptionText:SetText( filterLabel );\n\n\t\t-- Callback\n\t\tcontrolTable.Button:RegisterCallback( Mouse.eLClick, function() OnFilterClicked(filter); end );\n\n\tend\n\tControls.FilterPulldown:CalculateInternals();\nend\n\n-- ===========================================================================\n-- Populate Full Text Search\n-- ===========================================================================\nfunction PopulateSearchData()\n\t-- Populate Full Text Search\n\tlocal searchContext = \"Technologies\";\n\tif(Search.CreateContext(searchContext, \"[COLOR_LIGHTBLUE]\", \"[ENDCOLOR]\", \"...\")) then\n\n\t\t-- Hash modifier types that grant envoys or spies.\n\t\tlocal envoyModifierTypes = {};\n\t\tlocal spyModifierTypes = {};\n\n\t\tfor row in GameInfo.DynamicModifiers() do\n\t\t\tlocal effect = row.EffectType;\n\t\t\tif(effect == \"EFFECT_GRANT_INFLUENCE_TOKEN\") then\n\t\t\t\tenvoyModifierTypes[row.ModifierType] = true;\n\t\t\telseif(effect == \"EFFECT_GRANT_SPY\") then\n\t\t\t\tspyModifierTypes[row.ModifierType] = true;\n\t\t\tend\n\t\tend\n\n\t\t-- Hash tech types that grant envoys or spies via modifiers.\n\t\tlocal envoyTechs = {};\n\t\tlocal spyTechs = {};\n\t\tfor row in GameInfo.TechnologyModifiers() do\t\t\t\n\t\t\tlocal modifier = GameInfo.Modifiers[row.ModifierId];\n\t\t\tif(modifier) then\n\t\t\t\tlocal modifierType = modifier.ModifierType;\n\t\t\t\tif(envoyModifierTypes[modifierType]) then\n\t\t\t\t\tenvoyTechs[row.TechnologyType] = true;\n\t\t\t\tend\n\n\t\t\t\tif(spyModifierTypes[modifierType]) then\n\t\t\t\t\tspyTechs[row.TechnologyType] = true;\n\t\t\t\tend\n\t\t\tend\n\t\tend\n\n\t\tlocal envoyTypeName = Locale.Lookup(\"LOC_ENVOY_NAME\");\n\t\tlocal spyTypeName = Locale.Lookup(\"LOC_SPY_NAME\");\n\n\t\tfor row in GameInfo.Technologies() do\n\t\t\tlocal techType = row.TechnologyType;\n\t\t\tlocal description = row.Description and Locale.Lookup(row.Description) or \"\";\n\t\t\tlocal tags = {};\n\t\t\tif(envoyTechs[techType]) then\n\t\t\t\ttable.insert(tags, envoyTypeName);\n\t\t\tend\n\n\t\t\tif(spyTechs[techType]) then\n\t\t\t\ttable.insert(tags, spyTypeName);\n\t\t\tend\n\n\t\t\tSearch.AddData(searchContext, row.TechnologyType, Locale.Lookup(row.Name), description, tags);\n\t\tend\n\t\n\t\tlocal buildingType = Locale.Lookup(\"LOC_BUILDING_NAME\");\n\t\tlocal wonderTypeName = Locale.Lookup(\"LOC_WONDER_NAME\");\n\t\tfor row in GameInfo.Buildings() do\n\t\t\tif(row.PrereqTech) then\n\t\t\t\tlocal tags = {buildingTypeName};\n\t\t\t\tif(row.IsWonder) then\n\t\t\t\t\ttable.insert(tags, wonderTypeName);\n\t\t\t\tend\n\t\t\t\tSearch.AddData(searchContext, row.PrereqTech, Locale.Lookup(GameInfo.Technologies[row.PrereqTech].Name), Locale.Lookup(row.Name), tags);\n\t\t\tend\n\t\tend\n\t\t\n\t\tlocal districtType = Locale.Lookup(\"LOC_DISTRICT_NAME\");\n\t\tfor row in GameInfo.Districts() do\n\t\t\tif(row.PrereqTech) then\n\t\t\t\tSearch.AddData(searchContext, row.PrereqTech, Locale.Lookup(GameInfo.Technologies[row.PrereqTech].Name), Locale.Lookup(row.Name), { districtType });\n\t\t\tend\n\t\tend\n\n\t\tlocal improvementType = Locale.Lookup(\"LOC_IMPROVEMENT_NAME\");\n\t\tfor row in GameInfo.Improvements() do\n\t\t\tif(row.PrereqTech) then\n\t\t\t\tSearch.AddData(searchContext, row.PrereqTech, Locale.Lookup(GameInfo.Technologies[row.PrereqTech].Name), Locale.Lookup(row.Name), { improvementType });\n\t\t\tend\n\t\tend\n\n\t\tlocal projectType = Locale.Lookup(\"LOC_PROJECT_NAME\");\n\t\tfor row in GameInfo.Projects() do\n\t\t\tif(row.PrereqTech) then\n\t\t\t\tSearch.AddData(searchContext, row.PrereqTech, Locale.Lookup(GameInfo.Technologies[row.PrereqTech].Name), Locale.Lookup(row.Name), { projectType });\n\t\t\tend\n\t\tend\n\n\t\tlocal resourceType = Locale.Lookup(\"LOC_RESOURCE_NAME\");\n\t\tfor row in GameInfo.Resources() do\n\t\t\tif(row.PrereqTech) then\n\t\t\t\tSearch.AddData(searchContext, row.PrereqTech, Locale.Lookup(GameInfo.Technologies[row.PrereqTech].Name), Locale.Lookup(row.Name), { resourceType });\n\t\t\tend\n\t\tend\n\n\t\tlocal unitType = Locale.Lookup(\"LOC_UNIT_NAME\");\n\t\tfor row in GameInfo.Units() do\n\t\t\tif(row.PrereqTech) then\n\t\t\t\tSearch.AddData(searchContext, row.PrereqTech, Locale.Lookup(GameInfo.Technologies[row.PrereqTech].Name), Locale.Lookup(row.Name), { unitType });\n\t\t\tend\n\t\tend\n\n\t\tSearch.Optimize(searchContext);\n\tend\nend\n\n-- ===========================================================================\n-- Update the Filter text with the current label.\n-- ===========================================================================\nfunction RealizeFilterPulldown()\n\tlocal pullDownButton = Controls.FilterPulldown:GetButton();\t\n\tif m_kCurrentData[DATA_FIELD_UIOPTIONS].filter == nil or m_kCurrentData[DATA_FIELD_UIOPTIONS].filter.Func== nil then\n\t\tpullDownButton:SetText( \" \"..Locale.Lookup(\"LOC_TREE_FILTER_W_DOTS\"));\n\telse\n\t\tlocal description:string = m_kCurrentData[DATA_FIELD_UIOPTIONS].filter.Description;\n\t\tpullDownButton:SetText( \" \"..Locale.Lookup( description ));\n\tend\nend\n\n-- ===========================================================================\n--\tfilterLabel,\tReadable lable of the current filter.\n--\tfilterFunc,\t\tThe funciton filter to apply to each node as it's built,\n--\t\t\t\t\tnil will reset the filters to none.\n-- ===========================================================================\nfunction OnFilterClicked( filter )\t\t\t\n\tm_kCurrentData[DATA_FIELD_UIOPTIONS].filter = filter;\n\tView( m_kCurrentData )\nend\n\n-- ===========================================================================\nfunction OnOpen()\n\tif (Game.GetLocalPlayer() == -1) then\n\t\treturn\n\tend\n\n\tUI.PlaySound(\"UI_Screen_Open\");\n\tView( m_kCurrentData );\n\tContextPtr:SetHide(false);\n\n\t-- From ModalScreen_PlayerYieldsHelper\n\tRefreshYields();\n\n\t-- From Civ6_styles: FullScreenVignetteConsumer\n\tControls.ScreenAnimIn:SetToBeginning();\n\tControls.ScreenAnimIn:Play();\n\n\tLuaEvents.TechTree_OpenTechTree();\nend\n\n-- ===========================================================================\n--\tShow the Key panel based on the state\n-- ===========================================================================\nfunction RealizeKeyPanel()\n\tif UserConfiguration.GetShowTechTreeKey() then\n\t\tControls.KeyPanel:SetHide( false );\t\t\n\t\tUI.PlaySound(\"UI_TechTree_Filter_Open\");\n\telse\n\t\tif(not ContextPtr:IsHidden()) then\n UI.PlaySound(\"UI_TechTree_Filter_Closed\");\n Controls.KeyPanel:SetHide( true );\n end\n\tend\n\n\tif Controls.KeyPanel:IsHidden() then\n\t\tControls.ToggleKeyButton:SetText(Locale.Lookup(\"LOC_TREE_SHOW_KEY\"));\n\t\tControls.ToggleKeyButton:SetSelected(false);\n\telse\n\t\tControls.ToggleKeyButton:SetText(Locale.Lookup(\"LOC_TREE_HIDE_KEY\"));\n\t\tControls.ToggleKeyButton:SetSelected(true);\n\tend\nend\n\n-- ===========================================================================\n--\tReparents all tutorial controls, guarantee they will be on top of the\n--\tnodes and lines dynamically added.\n-- ===========================================================================\nfunction RealizeTutorialNodes()\n\tControls.CompletedTechNodePointer:Reparent();\n\tControls.IncompleteTechNodePointer:Reparent();\n\tControls.UnavailableTechNodePointer:Reparent();\n\tControls.ChooseWritingPointer:Reparent();\n\tControls.ActiveTechNodePointer:Reparent();\n\tControls.TechUnlocksPointer:Reparent();\nend\n\n-- ===========================================================================\n--\tShow\/Hide key panel\n-- ===========================================================================\nfunction OnClickToggleKey()\n\tif Controls.KeyPanel:IsHidden() then\n\t\tUserConfiguration.SetShowTechTreeKey(true);\t\t\n\telse\n\t\tUserConfiguration.SetShowTechTreeKey(false);\t\t\n\tend\n\tRealizeKeyPanel();\nend\n\n-- ===========================================================================\nfunction OnClickFiltersPulldown()\n\tif Controls.FilterPulldown:IsOpen() then\n\t\tUI.PlaySound(\"UI_TechTree_Filter_Open\");\n\telse\n\t\tUI.PlaySound(\"UI_TechTree_Filter_Closed\");\n\tend\nend\n\n-- ===========================================================================\n--\tMain close function all exit points should call.\n-- ===========================================================================\nfunction Close()\n\tif not ContextPtr:IsHidden() then\n\t\tUI.PlaySound(\"UI_Screen_Close\");\n\tend\n\n\tContextPtr:SetHide(true);\n\tLuaEvents.TechTree_CloseTechTree();\n\tControls.SearchResultsPanelContainer:SetHide(true);\nend\n-- ===========================================================================\n--\tClose via click\n-- ===========================================================================\nfunction OnClose()\n\tClose();\nend\n\n-- ===========================================================================\n--\tInput\n--\tUI Event Handler\n-- ===========================================================================\nfunction KeyDownHandler( key:number )\n\tif key == Keys.VK_SHIFT then\n\t\tm_shiftDown = true;\n\t\t-- let it fall through\n\tend\n\treturn false;\nend\nfunction KeyUpHandler( key:number )\n\tif key == Keys.VK_SHIFT then\n\t\tm_shiftDown = false;\n\t\t-- let it fall through\n\tend\n if key == Keys.VK_ESCAPE then\n\t\tClose();\n\t\treturn true;\n end\n\tif key == Keys.VK_RETURN then\n\t\t-- Don't let enter propigate or it will hit action panel which will raise a screen (potentially this one again) tied to the action.\n\t\treturn true;\n\tend\n return false;\nend\nfunction OnInputHandler( pInputStruct:table )\n\tlocal uiMsg = pInputStruct:GetMessageType();\n\tif uiMsg == KeyEvents.KeyDown then return KeyDownHandler( pInputStruct:GetKey() ); end\n\tif uiMsg == KeyEvents.KeyUp then return KeyUpHandler( pInputStruct:GetKey() ); end\t\n\treturn false;\nend\n\n-- ===========================================================================\n--\tUI Event Handler\n-- ===========================================================================\nfunction OnShutdown()\n\t-- Clean up events\n\tLuaEvents.LaunchBar_CloseTechTree.Remove( OnClose );\n\tLuaEvents.LaunchBar_RaiseTechTree.Remove( OnOpen );\n\tLuaEvents.ResearchChooser_RaiseTechTree.Remove( OnOpen );\n\tLuaEvents.Tutorial_TechTreeScrollToNode.Remove( OnTutorialScrollToNode );\n\n\tEvents.LocalPlayerTurnBegin.Remove( OnLocalPlayerTurnBegin );\n\tEvents.LocalPlayerTurnEnd.Remove( OnLocalPlayerTurnEnd );\n\tEvents.ResearchChanged.Remove( OnResearchChanged );\n\tEvents.ResearchQueueChanged.Remove( OnResearchChanged );\n\tEvents.ResearchCompleted.Remove( OnResearchComplete );\n\tEvents.SystemUpdateUI.Remove( OnUpdateUI );\n\n\tSearch.DestroyContext(\"Technologies\");\nend\n\n-- ===========================================================================\n--\tCenters scroll panel (if possible) on a specfic type.\n-- ===========================================================================\nfunction ScrollToNode( typeName:string )\n\tlocal percent:number = 0;\n\tlocal x\t\t= m_uiNodes[typeName].x - ( m_width * 0.5);\n\tlocal size = (m_width \/ Controls.NodeScroller:GetRatio()) - m_width;\n\tpercent = math.clamp( x \/ size, 0, 1);\n\tControls.NodeScroller:SetScrollValue(percent);\n\tm_kSearchResultIM:DestroyInstances();\t\n\tControls.SearchResultsPanelContainer:SetHide(true);\nend\n\n-- ===========================================================================\n--\tLuaEvent\n-- ===========================================================================\nfunction OnTutorialScrollToNode( typeName:string )\n\tScrollToNode( typeName );\nend\n\n-- ===========================================================================\n--\tSearching\n-- ===========================================================================\nfunction OnSearchCharCallback()\n\tlocal str = Controls.SearchEditBox:GetText();\n\n\tlocal defaultText = Locale.Lookup(\"LOC_TREE_SEARCH_W_DOTS\")\n\tif(str == defaultText) then\n\t\t-- We cannot immediately clear the results..\n\t\t-- When the edit box loses focus, it resets the text which triggers this call back.\n\t\t-- if the user is in the process of clicking a result, wiping the results in this callback will make the user\n\t\t-- click whatever was underneath.\n\t\t-- Instead, trigger a timer will wipe the results.\n\t\tControls.SearchResultsTimer:SetToBeginning();\n\t\tControls.SearchResultsTimer:Play();\n\n\telseif(str == nil or #str == 0) then\n\t\t-- Clear results.\n\t\tm_kSearchResultIM:DestroyInstances();\n\t\tControls.SearchResultsStack:CalculateSize();\n\t\tControls.SearchResultsStack:ReprocessAnchoring();\n\t\tControls.SearchResultsPanel:CalculateSize();\n\t\tControls.SearchResultsPanelContainer:SetHide(true);\n\n\telseif(str and #str > 0) then\n\t\tlocal hasResults = false;\n\t\tm_kSearchResultIM:DestroyInstances();\n\t\tlocal results = Search.Search(\"Technologies\", str, 100);\n\t\tif (results and #results > 0) then\n\t\t\thasResults = true;\n\t\t\tlocal has_found = {};\n\t\t\tfor i, v in ipairs(results) do\n\t\t\t\tif has_found[v[1]] == nil then\n\t\t\t\t\t-- v[1] == Type\n\t\t\t\t\t-- v[2] == Name w\/ search term highlighted.\n\t\t\t\t\t-- v[3] == Snippet description w\/ search term highlighted.\n\t\t\t\t\tlocal instance = m_kSearchResultIM:GetInstance();\n\n\t\t\t\t\t-- Search results already localized.\n\t\t\t\t\tlocal name = v[2];\n\t\t\t\t\tinstance.Name:SetText(name);\n\t\t\t\t\tlocal iconName = DATA_ICON_PREFIX .. v[1];\n\t\t\t\t\tinstance.SearchIcon:SetIcon(iconName);\n\n\t\t\t\t\tinstance.Button:RegisterCallback(Mouse.eLClick, function() \n\t\t\t\t\t\tControls.SearchEditBox:SetText(defaultText);\n\t\t\t\t\t\tScrollToNode(v[1]); \n\t\t\t\t\tend);\n\n\t\t\t\t\tinstance.Button:SetToolTipString(ToolTipHelper.GetToolTip(v[1], Game.GetLocalPlayer()));\n\n\t\t\t\t\thas_found[v[1]] = true;\n\t\t\t\tend\n\t\t\tend\n\t\tend\n\t\t\n\t\tControls.SearchResultsStack:CalculateSize();\n\t\tControls.SearchResultsStack:ReprocessAnchoring();\n\t\tControls.SearchResultsPanel:CalculateSize();\n\t\tControls.SearchResultsPanelContainer:SetHide(not hasResults);\n\tend\nend\n\nfunction OnSearchCommitCallback()\n\tlocal str = Controls.SearchEditBox:GetText();\n\n\tlocal defaultText = Locale.Lookup(\"LOC_TREE_SEARCH_W_DOTS\")\n\tif(str and #str > 0 and str ~= defaultText) then\n\t\tlocal results = Search.Search(\"Technologies\", str, 1);\n\t\tif (results and #results > 0) then\n\t\t\tlocal result = results[1];\n\t\t\tif(result) then\n\t\t\t\tScrollToNode(result[1]); \n\t\t\tend\n\t\tend\n\n\t\tControls.SearchEditBox:SetText(defaultText);\n\tend\nend\n\nfunction OnSearchBarGainFocus()\n\tControls.SearchResultsTimer:Stop();\n\tControls.SearchEditBox:ClearString();\nend\n\nfunction OnSearchBarLoseFocus()\n\tControls.SearchEditBox:SetText(Locale.Lookup(\"LOC_TREE_SEARCH_W_DOTS\"));\nend\n\nfunction OnSearchResultsTimerEnd()\n\tm_kSearchResultIM:DestroyInstances();\n\tControls.SearchResultsStack:CalculateSize();\n\tControls.SearchResultsStack:ReprocessAnchoring();\n\tControls.SearchResultsPanel:CalculateSize();\n\tControls.SearchResultsPanelContainer:SetHide(true);\nend\n\nfunction OnSearchResultsPanelContainerMouseEnter()\n\tControls.SearchResultsTimer:Stop();\nend\n\nfunction OnSearchResultsPanelContainerMouseExit()\n\tif(not Controls.SearchEditBox:HasFocus()) then\n\t\tControls.SearchResultsTimer:SetToBeginning();\n\t\tControls.SearchResultsTimer:Play();\n\tend\nend\n\n-- ===========================================================================\n--\tLoad all static information as well as display information for the\n--\tcurrent local player.\n-- ===========================================================================\nfunction Initialize()\n\t--profile.runtime(\"start\");\n\t\n\tPopulateItemData(\"Technologies\",\"TechnologyType\",\"TechnologyPrereqs\",\"Technology\",\"PrereqTech\");\t\n\tPopulateEraData();\n\tPopulateFilterData();\n\tPopulateSearchData();\n\t\n\tAllocateUI();\n\n\t-- May be observation mode.\n\tm_ePlayer = Game.GetLocalPlayer();\n\tif (m_ePlayer == -1) then\n\t\treturn;\n\tend\n\n\tResize();\n\t\n\tm_kCurrentData = GetLivePlayerData( m_ePlayer );\n\tView( m_kCurrentData );\n\n\n\t-- UI Events\n\tContextPtr:SetInputHandler( OnInputHandler, true );\n\tContextPtr:SetShutdown( OnShutdown );\n\tControls.FilterPulldown:GetButton():RegisterCallback( Mouse.eLClick, OnClickFiltersPulldown );\n\tControls.FilterPulldown:RegisterSelectionCallback( OnClickFiltersPulldown );\t\n\tControls.SearchEditBox:RegisterStringChangedCallback(OnSearchCharCallback);\n\tControls.SearchEditBox:RegisterHasFocusCallback( OnSearchBarGainFocus);\n\tControls.SearchEditBox:RegisterCommitCallback( OnSearchBarLoseFocus);\n\tControls.SearchResultsTimer:RegisterEndCallback(OnSearchResultsTimerEnd);\n\tControls.SearchResultsPanelContainer:RegisterMouseEnterCallback(OnSearchResultsPanelContainerMouseEnter);\n\tControls.SearchResultsPanelContainer:RegisterMouseExitCallback(OnSearchResultsPanelContainerMouseExit);\n\tControls.ToggleKeyButton:RegisterCallback(Mouse.eLClick, OnClickToggleKey);\n\tControls.RClickClose:RegisterCallback(Mouse.eRClick, OnClose);\n\n\t-- LUA Events\n\tLuaEvents.LaunchBar_RaiseTechTree.Add( OnOpen );\n\tLuaEvents.ResearchChooser_RaiseTechTree.Add( OnOpen );\n\n\tLuaEvents.LaunchBar_CloseTechTree.Add( OnClose );\n\tLuaEvents.Tutorial_TechTreeScrollToNode.Add( OnTutorialScrollToNode );\n\n\t-- Game engine Event\n\tEvents.LocalPlayerTurnBegin.Add( OnLocalPlayerTurnBegin );\n\tEvents.LocalPlayerTurnEnd.Add( OnLocalPlayerTurnEnd );\n\tEvents.LocalPlayerChanged.Add(AllocateUI);\n\tEvents.ResearchChanged.Add( OnResearchChanged );\n\tEvents.ResearchQueueChanged.Add( OnResearchChanged );\n\tEvents.ResearchCompleted.Add( OnResearchComplete );\n\tEvents.SystemUpdateUI.Add( OnUpdateUI );\n\n\t-- Key Label Truncation to Tooltip\n\tTruncateStringWithTooltip(Controls.AvailableLabelKey, MAX_BEFORE_TRUNC_KEY_LABEL, Controls.AvailableLabelKey:GetText());\n\tTruncateStringWithTooltip(Controls.UnavailableLabelKey, MAX_BEFORE_TRUNC_KEY_LABEL, Controls.UnavailableLabelKey:GetText());\n\tTruncateStringWithTooltip(Controls.ResearchingLabelKey, MAX_BEFORE_TRUNC_KEY_LABEL, Controls.ResearchingLabelKey:GetText());\n\tTruncateStringWithTooltip(Controls.CompletedLabelKey, MAX_BEFORE_TRUNC_KEY_LABEL, Controls.CompletedLabelKey:GetText());\nend\n\nif HasCapability(\"CAPABILITY_TECH_TREE\") then\n\tInitialize();\nend\n","avg_line_length":39.5688385269,"max_line_length":243,"alphanum_fraction":0.6718882} +{"size":255,"ext":"lua","lang":"Lua","max_stars_count":6.0,"content":"-----------------------------------\n-- Area: Arrapago Reef\n-- Mob: Lamia Fatedealer\n-----------------------------------\nmixins = {require(\"scripts\/mixins\/weapon_break\")}\n-----------------------------------\n\nfunction onMobDeath(mob, player, isKiller)\nend\n","avg_line_length":25.5,"max_line_length":49,"alphanum_fraction":0.431372549} +{"size":2867,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"--- Makes transitions between states easier. Uses the `CameraStackService` to tween in and\n-- out a new camera state Call `:Show()` and `:Hide()` to do so, and make sure to\n-- call `:Destroy()` after usage\n-- @classmod CameraStateTweener\n\nlocal require = require(game:GetService(\"ReplicatedStorage\"):WaitForChild(\"Nevermore\"))\n\nlocal CameraStackService = require(\"CameraStackService\")\nlocal FadeBetweenCamera = require(\"FadeBetweenCamera\")\nlocal Maid = require(\"Maid\")\n\nlocal CameraStateTweener = {}\nCameraStateTweener.ClassName = \"CameraStateTweener\"\nCameraStateTweener.__index = CameraStateTweener\n\n--- Constructs a new camera state tweener\n-- @tparam ICameraEffect cameraEffect A camera effect\n-- @tparam[opt=20] number speed that the camera tweener tweens at\nfunction CameraStateTweener.new(cameraEffect, speed)\n\tlocal self = setmetatable({}, CameraStateTweener)\n\n\tself._maid = Maid.new()\n\n\tlocal cameraBelow, assign = CameraStackService:GetNewStateBelow()\n\n\tself._cameraEffect = cameraEffect\n\tself._cameraBelow = cameraBelow\n\tself._fadeBetween = FadeBetweenCamera.new(cameraBelow, cameraEffect)\n\tassign(self._fadeBetween)\n\n\tCameraStackService:Add(self._fadeBetween)\n\n\tself._fadeBetween.Speed = speed or 20\n\tself._fadeBetween.Target = 0\n\tself._fadeBetween.Value = 0\n\n\tself._maid:GiveTask(function()\n\t\tCameraStackService:Remove(self._fadeBetween)\n\tend)\n\n\treturn self\nend\n\nfunction CameraStateTweener:GetPercentVisible()\n\treturn self._fadeBetween.Value\nend\n\nfunction CameraStateTweener:Show(doNotAnimate)\n\tself:SetTarget(1, doNotAnimate)\nend\n\nfunction CameraStateTweener:Hide(doNotAnimate)\n\tself:SetTarget(0, doNotAnimate)\nend\n\nfunction CameraStateTweener:IsFinishedHiding()\n\treturn self._fadeBetween.HasReachedTarget and self._fadeBetween.Target == 0\nend\n\nfunction CameraStateTweener:Finish(doNotAnimate, callback)\n\tself:Hide(doNotAnimate)\n\n\tif self._fadeBetween.HasReachedTarget then\n\t\tcallback()\n\telse\n\t\tspawn(function()\n\t\t\twhile not self._fadeBetween.HasReachedTarget do\n\t\t\t\twait(0.05)\n\t\t\tend\n\t\t\tcallback()\n\t\tend)\n\tend\nend\n\nfunction CameraStateTweener:GetCameraEffect()\n\treturn self._cameraEffect\nend\n\nfunction CameraStateTweener:GetCameraBelow()\n\treturn self._cameraBelow\nend\n\nfunction CameraStateTweener:SetTarget(target, doNotAnimate)\n\tself._fadeBetween.Target = target or error(\"No target\")\n\tif doNotAnimate then\n\t\tself._fadeBetween.Value = self._fadeBetween.Target\n\t\tself._fadeBetween.Velocity = 0\n\tend\n\treturn self\nend\n\nfunction CameraStateTweener:SetSpeed(speed)\n\tself._fadeBetween.Speed = speed\n\n\treturn self\nend\n\nfunction CameraStateTweener:SetVisible(isVisible, doNotAnimate)\n\tif isVisible then\n\t\tself:Show(doNotAnimate)\n\telse\n\t\tself:Hide(doNotAnimate)\n\tend\nend\n\nfunction CameraStateTweener:GetFader()\n\treturn self._fadeBetween\nend\n\nfunction CameraStateTweener:Destroy()\n\tself._maid:DoCleaning()\n\tsetmetatable(self, nil)\nend\n\nreturn CameraStateTweener","avg_line_length":24.9304347826,"max_line_length":90,"alphanum_fraction":0.8004883153} +{"size":265,"ext":"lua","lang":"Lua","max_stars_count":18.0,"content":"object_building_mustafar_terrain_must_rock_smooth_11 = object_building_mustafar_terrain_shared_must_rock_smooth_11:new {\r}\rObjectTemplates:addTemplate(object_building_mustafar_terrain_must_rock_smooth_11, \"object\/building\/mustafar\/terrain\/must_rock_smooth_11.iff\")\r","avg_line_length":265.0,"max_line_length":265,"alphanum_fraction":0.9169811321} +{"size":1742,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local name = 'technical-item-powder-coal'\nlocal item = {\n type = 'item',\n name = name,\n\n icon = '__EnergyTechnology__\/graphics\/icons\/powder-coal.png',\n dark_background_icon = '__EnergyTechnology__\/graphics\/icons\/powder-coal-dark-background.png',\n icon_size = 32,\n\n stack_size = 100,\n\n flags = { 'goes-to-main-inventory' },\n subgroup = 'raw-material',\n order = 'c[technical-item-powder-coal]',\n\n fuel_value = '16MJ', --\u71c3\u6599\u70ed\u503c\n fuel_category = 'chemical', --\u71c3\u6599\u79cd\u7c7b\n fuel_acceleration_multiplier = 1.35, --\u71c3\u6599\u52a0\u901f\u4e58\u6570\n fuel_top_speed_multiplier = 1.10, --\u71c3\u6599\u6700\u9ad8\u901f\u5ea6\u4e58\u6570\n fuel_emissions_multiplier = 0.7, --\u71c3\u6599\u6c61\u67d3\u4e58\u6570,\n\n pictures = {\n {\n filename = \"__EnergyTechnology__\/graphics\/icons\/powder-coal.png\",\n width = 32,\n height = 32\n },\n {\n filename = \"__EnergyTechnology__\/graphics\/icons\/powder-coal-B.png\",\n width = 32,\n height = 32\n },\n {\n filename = \"__EnergyTechnology__\/graphics\/icons\/powder-coal-C.png\",\n width = 32,\n height = 32\n },\n {\n filename = \"__EnergyTechnology__\/graphics\/icons\/powder-coal-D.png\",\n width = 32,\n height = 32\n },\n }\n}\nlocal recipe = {\n type = 'recipe',\n name = name,\n\n category = 'milling',\n\n energy_required = 2, --\u5236\u4f5c\u65f6\u95f4\n emissions_multiplier = 0.5, --\u6c61\u67d3\u4e58\u6570\n\n normal =\n {\n ingredients = {\n { 'coal', 1 }\n },\n result = name,\n result_count = 2,\n },\n expensive =\n {\n ingredients = {\n { 'coal', 2 }\n },\n result = name,\n result_count = 1,\n },\n \n}\nreturn {\n item = item,\n recipe = recipe\n}","avg_line_length":23.2266666667,"max_line_length":97,"alphanum_fraction":0.5327210103} +{"size":1685,"ext":"lua","lang":"Lua","max_stars_count":43.0,"content":"-- Copyright 2021 SmartThings\n--\n-- Licensed under the Apache License, Version 2.0 (the \"License\");\n-- you may not use this file except in compliance with the License.\n-- You may obtain a copy of the License at\n--\n-- http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n--\n-- Unless required by applicable law or agreed to in writing, software\n-- distributed under the License is distributed on an \"AS IS\" BASIS,\n-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-- See the License for the specific language governing permissions and\n-- limitations under the License.\n\nlocal capabilities = require \"st.capabilities\"\n\nlocal Basic = (require \"st.zigbee.zcl.clusters\").Basic\nlocal ZigbeeDriver = require \"st.zigbee\"\n\nlocal do_refresh = function(self, device)\n device:send(Basic.attributes.ZCLVersion:read(device))\nend\n\nlocal zigbee_range_driver_template = {\n supported_capabilities = {\n capabilities.refresh\n },\n capability_handlers = {\n [capabilities.refresh.ID] = {\n [capabilities.refresh.commands.refresh.NAME] = do_refresh,\n }\n },\n}\n\nlocal zigbee_range_extender_driver = ZigbeeDriver(\"zigbee-range-extender\", zigbee_range_driver_template)\n\nfunction zigbee_range_extender_driver:device_health_check()\n local device_list = self.device_api.get_device_list()\n for _, device_id in ipairs(device_list) do\n local device = self:get_device_info(device_id, false)\n device:send(Basic.attributes.ZCLVersion:read(device))\n end\nend\nzigbee_range_extender_driver.device_health_timer = zigbee_range_extender_driver.call_on_schedule(zigbee_range_extender_driver, 300, zigbee_range_extender_driver.device_health_check)\n\nzigbee_range_extender_driver:run()\n","avg_line_length":35.8510638298,"max_line_length":181,"alphanum_fraction":0.7804154303} +{"size":5356,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"-- Autocommand that reloads neovim whenever you save the plugins.lua file\nvim.cmd [[\n augroup packer_user_config\n autocmd!\n autocmd BufWritePost plugins.lua source | PackerSync\n augroup end\n]]\n\n-- Use a protected call so we don't error out on first use\nlocal status_ok, packer = pcall(require, \"packer\")\nif not status_ok then\n return\nend\n\nreturn packer.startup(function()\n\tuse \"wbthomason\/packer.nvim\"\n\tuse \"nvim-lua\/popup.nvim\"\n\n\t-- colorscheme\n\t-- use 'vim-airline\/vim-airline'\n\t-- use 'vim-airline\/vim-airline-themes'\n\t-- use 'sainnhe\/gruvbox-material'\n\tuse \"lunarvim\/darkplus.nvim\"\n\t-- use { 'nvim-lualine\/lualine.nvim', requires = { 'kyazdani42\/nvim-web-devicons', opt = true } }\n\t-- require('lualine').setup { options = { theme = 'dracula' } }\n\t-- use { 'akinsho\/bufferline.nvim', tag = \"v2.*\", requires = 'kyazdani42\/nvim-web-devicons' }\n\tuse 'itchyny\/lightline.vim'\n\tuse 'mengelbrecht\/lightline-bufferline'\n\n\t-- cmp plugins\n\tuse { \"hrsh7th\/nvim-cmp\", branch = 'main'} -- The completion plugin\n\tuse \"hrsh7th\/cmp-nvim-lsp\"\n\tuse \"hrsh7th\/cmp-buffer\" -- buffer completions\n\tuse \"hrsh7th\/cmp-path\" -- path completions\n\tuse \"hrsh7th\/cmp-cmdline\" -- cmdline completions\n\t-- for luasnip\n\tuse \"L3MON4D3\/LuaSnip\"\n\tuse \"saadparwaiz1\/cmp_luasnip\"\n\tuse \"rafamadriz\/friendly-snippets\" -- a bunch of snippets to use\n\t-- For vsnip users.\n\t-- use 'hrsh7th\/cmp-vsnip'\n\t-- use 'hrsh7th\/vim-vsnip'-- snippets\n\n\t-- lsp\n\tuse 'neovim\/nvim-lspconfig'\n\tuse 'williamboman\/nvim-lsp-installer'\n\t-- run this command after: LspInstall clangd cssls html jsonls sumneko_lua pyright\n\t-- !! the following setup don't work and I don't know why!\n\t-- require'nvim-lsp-installer'.setup({\n\t-- \t-- ensure_installed = { \"clangd\", \"cssls\", \"html\", \"jsonls\", \"sumneko_lua\", \"pyright\" }, -- ensure these servers are always installed\n\t-- \tautomatic_installation = true, -- automatically detect which servers to install (based on which servers are set up via lspconfig)\n\t-- \tui = {\n\t-- \t\ticons = {\n\t-- \t\t\tserver_installed = \"\u2713\",\n\t-- \t\t\tserver_pending = \"\u279c\",\n\t-- \t\t\tserver_uninstalled = \"\u2717\"\n\t-- \t\t}\n\t-- \t}\n\t-- })\n\trequire'nvim-lsp-installer'.on_server_ready(function(server)\n\t\tlocal opts = {}\n\t\tif server.name == \"sumneko_lua\" then\n\t\t\topts = {\n\t\t\t\tsettings = {\n\t\t\t\t\tLua = {\n\t\t\t\t\t\tdiagnostics = {\n\t\t\t\t\t\t\tglobals = { 'vim', 'use' }\n\t\t\t\t\t\t},\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\tend\n\t\tserver:setup(opts)\n\tend)\n\n\tuse 'cohama\/lexima.vim'\n\tuse 'tpope\/vim-surround'\n\tuse 'tpope\/vim-unimpaired'\n\tuse 'tpope\/vim-commentary'\n\tuse 'christoomey\/vim-tmux-navigator'\n\tvim.g.tmux_navigator_disable_when_zoomed = 1\n\n\tuse {\n\t\t'vimwiki\/vimwiki',\n\t\tconfig = function()\n\t\t\tlocal opts = {}\n\t\t\tif vim.fn.has('win32') == 1 then\n\t\t\t\topts = { {\n\t\t\t\t\tpath = '~\/SynologyDrive\/Personal\/shkVimWiki\/',\n\t\t\t\t\tpath_html = '~\/SynologyDrive\/Personal\/shkVimWikiHTM\/',\n\t\t\t\t\t-- \"C:\\Users\\shk\\AppData\\Local\\nvim-data\\site\\pack\\packer\\start\\vimwiki\\autoload\\vimwiki\"\n\t\t\t\t\ttemplate_path = vim.fn.stdpath(\"data\") .. \"\/site\/pack\/packer\/start\/vimwiki\/autoload\/vimwiki\/\",\n\t\t\t\t\t-- syntax = \"markdown\", ext = \".md\"\n\t\t\t\t} }\n\t\t\telseif vim.fn.has('linux') == 1 then\n\t\t\t\topts = { {\n\t\t\t\t\tpath = '~\/SynologyDrive\/Personal\/shkVimWiki\/',\n\t\t\t\t\tpath_html = '~\/SynologyDrive\/Personal\/shkVimWikiHTM\/',\n\t\t\t\t\ttemplate_path = vim.fn.stdpath(\"data\") .. \"\/site\/pack\/packer\/start\/vimwiki\/autoload\/vimwiki\/\",\n\t\t\t\t\t-- syntax = \"markdown\", ext = \".md\"\n\t\t\t\t} }\n\t\t\telse opts = {} end\n\t\t\tvim.g.vimwiki_list = opts\n\t\t\tvim.g[\"vimwiki_global_ext\"] = 0\n\t\tend\n\t}\n\tuse {\n\t'goolord\/alpha-nvim',\n\trequires = { 'kyazdani42\/nvim-web-devicons' },\n\tconfig = function ()\n\t\trequire'alpha'.setup(require'alpha.themes.startify'.config)\n\t\tlocal startify = require('alpha.themes.startify')\n\t\tstartify.section.bottom_buttons.val = {\n\t\t\tstartify.button(\"vn\", \"neovim config\", \":e ~\/.config\/nvim\/init.lua\"),\n\t\t\tstartify.button(\"vv\", \".vimrc config\", \":e ~\/.vimrc\"),\n\t\t\tstartify.button(\"vq\", \"qt-config\", \":e ~\/.config\/nvim\/ginit.vim\"),\n\t\t\tstartify.button(\"vg\", \"goneovim config\", \":e ~\/.goneovim\/settings.toml\"),\n\t\t\tstartify.button(\"va\", \"AutoHotKey Script\", \":e C:\/Users\/shk\/AppData\/Roaming\/Microsoft\/Windows\/Start Menu\/Programs\/Startup\/myScript.ahk\"),\n\t\t\tstartify.button(\"vw\", \"wezterm config\", \":e C:\/Users\/shk\/.config\/wezterm\/wezterm.lua \"),\n\t\t\tstartify.button(\"ai\", \"app installs quick note\", \":e ~\/app_installs.md\"),\n\t\t\tstartify.button(\"q\", \"quit nvim\", \":qa\")\n\t\t}\n\t\tvim.api.nvim_set_keymap('n', '', ':Alpha', { noremap = true })\n\tend\n\t}\n\n\t-- IDE\n\tuse {\n\t\t'nvim-treesitter\/nvim-treesitter',\n\t\trun = ':TSUpdate'\n\t}\n\trequire'nvim-treesitter.configs'.setup {\n\t\tensure_installed = { \"bash\", \"c\", \"cpp\", \"c_sharp\", \"lua\", \"css\", \"hjson\", \"help\", \"javascript\", \"java\", \"json\", \"latex\", \"markdown\", \"php\", \"python\", \"ruby\", \"tsx\", \"typescript\", \"vim\", \"markdown\" },\n\t\t-- ensure_installed = \"all\",\n\t\thighlight = {\n\t\t\tenable = true,\n\t\t},\n\t\tindent = {\n\t\t\tenable = true,\n\t\t}\n\t}\n\tvim.opt.foldmethod = 'expr'\n\tvim.opt.foldexpr = 'nvim_treesitter#foldexpr()'\n\tuse {\n\t\t'nvim-telescope\/telescope.nvim',\n\t\trequires = { {'nvim-lua\/plenary.nvim'} }\n\t}\n\tuse 'tpope\/vim-obsession'\n\tuse { 'kyazdani42\/nvim-tree.lua', requires = { 'kyazdani42\/nvim-web-devicons', } }\n\tuse 'moll\/vim-bbye'\n\t-- Automatically set up your configuration after cloning packer.nvim\n\t-- Put this at the end after all plugins\n\tif PACKER_BOOTSTRAP then\n\t\trequire(\"packer\").sync()\n\tend\nend)\n","avg_line_length":34.1146496815,"max_line_length":202,"alphanum_fraction":0.6624346527} +{"size":942,"ext":"lua","lang":"Lua","max_stars_count":1.0,"content":"if AkDebugLoad then print(\"Loading ak.core.VersionJsonCollector ...\") end\nVersionJsonCollector = {}\nlocal ServerController = require(\"ak.io.ServerController\")\nlocal enabled = true\nlocal data = {}\nlocal initialized = false\nVersionJsonCollector.name = \"ak.core.VersionJsonCollector\"\n\nfunction VersionJsonCollector.initialize()\n if not enabled or initialized then\n return\n end\n\n local versions = {\n versionInfo = {\n -- EEP-Web expects a named entry here\n name = \"versionInfo\", -- EEP-Web requires that data entries have an id or name tag\n eepVersion = string.format(\"%.1f\", EEPVer), -- show string instead of float\n luaVersion = _VERSION,\n singleVersion = ServerController.programVersion,\n }\n }\n\n data = {[\"eep-version\"] = versions}\n initialized = true\nend\n\nfunction VersionJsonCollector.collectData()\n return data\nend\n\nreturn VersionJsonCollector\n","avg_line_length":28.5454545455,"max_line_length":94,"alphanum_fraction":0.6836518047} +{"size":985,"ext":"lua","lang":"Lua","max_stars_count":20.0,"content":"local _M = {}\n\n--\u8bf7\u4f7f\u7528\u548cnginx_log_analysis \u4fdd\u6301\u4e00\u81f4\u7684\u914d\u7f6e\n_M.influx_config = {\n host = \"\",\n database = \"\",\n port = , --influxdb\u7684HTTP API\u7aef\u53e3\uff0c\u9ed8\u8ba4\u662f8086\n }\n\n--\u662f\u4e2a\u53ef\u8bfb\u5199\u7684redis\u5373\u53ef\uff0c qps\u7684\u5927\u5c0f\u662f\u6839\u636e\u4f60\u6bcf\u4e2a\u65f6\u95f4\u7248\u672c\u9700\u8981\u722c\u53d6\u7684url\uff08\u5305\u542b\u53c2\u6570\uff0c\u6bcf\u4e2a\u7248\u672c\u7684url\u4f1a\u5148 \u8fdb\u884c\u53bb\u91cd\u5728\u722c\u53d6\uff09\u6709\u5173\u3002 \n_M.redis_conf = {\n host = '',\n port = ,\n}\n\n-- \u914d\u7f6e\u722c\u53d6\u8bbf\u95ee\u7684Nginx\u5730\u5740\uff0c\u6b64Nginx\u662f\u5bb9\u707e\u7cfb\u7edf\u7684\u53cd\u5411\u4ee3\u7406\n_M.proxy_crash_nginx_servers = {\n {\n host = \"\",\n port = \n } ,\n}\n\n--\u8bf7\u914d\u7f6e\u7684\u548ccache_proxy\u4e2d\u7684config\u7684\u4e00\u81f4\uff0c \u4f5c\u7528\u662f\u66f4\u52a0\u7248\u672c\u7684\u65f6\u95f4\uff0c\u6765\u5b9a\u65f6\u722c\u53d6\uff0c\u5982\u679c20\u5206\u949f\u4e00\u4e2a\u7248\u672c\uff0c\u90a3\u4e48\u5c31\u662f20\u5206\u949f\u722c\u53d6\u4e00\u6b21\u5168\u91cf\u6570\u636e\n_M.cache_version_updatetime = 20 -- number\n\n--\u5982\u679c\u4f60\u9700\u8981\u591a\u4e2a\u722c\u866b\u670d\u52a1\uff0c\u8bf7\u5c06\u5176\u4e2d\u4e00\u53f0\u7684hostname\u914d\u7f6e\u5230\u6b64\u5904\uff0c\u5b83\u662f\u7528\u6765\u68c0\u67e5\u548c\u66f4\u65b0influxdb\u7684\u5b9a\u65f6\u4efb\u52a1\u7684\n_M.hostname_crond = ''\n\n--\u914d\u7f6e\u6bcf\u6b21\u53d6\u51fa\u7684URL\u6570\u91cf\uff0c\u53d6\u591a\u5c11\u5c31\u722c\u53d6\u591a\u5c11\u3002 \u9ed8\u8ba4\u662f10\u79d2\u83b7\u53d6\u4e00\u6b21url\u8fdb\u884c\u722c\u53d6\uff0c\u5982\u679c\u4e0b\u9762\u914d\u7f6e\u7684\u662f1500\uff0c\u5c31\u662f\u630710\u79d2\u5185\u4f1a\u722c\u53d61500\u6b21URL,\n--\u5982\u679c\u4f60\u7684\u722c\u53d6\u7684\u6570\u91cf\u975e\u5e38\u591a\uff0c\u8bf7\u9002\u5f53\u52a0\u5927\u4f60\u7684\u722c\u53d6\u6b21\u6570\uff0c\u8fd9\u6837\u53ef\u4ee5\u786e\u4fdd\u6bcf\u4e2a\u7248\u672c\u7684\u6570\u636e\u90fd\u662f\u5168\u7684\u3002\u5982\u679c\u89c4\u5b9a\u65f6\u95f4\u5185\u6ca1\u6709\u722c\u53d6\u5b8c\u6240\u6709\u7684url\uff0c\u90a3\u4e48\u8bf7\u6c42\u4f1a\u8fdb\u5165\u4e0b\u4e00\u4e2a\u65f6\u95f4\u7248\u672c\u7ee7\u7eed\u722c\u53d6\n_M.rpop_once_total = 1500\n\n-- \u8bf7\u914d\u7f6e\u7684\u548ccache_proxy\u4e2d\u7684config\u7684\u4e00\u81f4, \u6307\u5b9a\u722c\u866b\u7684user-agent\uff0c \u722c\u866b\u662f\u7528\u6765\u66f4\u65b0\u9759\u6001\u5bb9\u707e\u7684\u7f13\u5b58\u6570\u636e\n_M.spider_user_agent = 'static_dt_spider'\n\n--\u4e34\u65f6\u6587\u4ef6\uff0c\u7528\u6765\u5b58\u653e\u4eceinfluxdb\u5bfc\u51fajson\u6570\u636e\uff0c\u6570\u636e\u662fURL\uff0c\u4f9b\u722c\u53d6\u4f7f\u7528\n_M.tmp_url_file = '\/tmp\/ngx_org_url.json'\n\nreturn _M\n\n","avg_line_length":23.4523809524,"max_line_length":82,"alphanum_fraction":0.752284264} +{"size":2276,"ext":"lua","lang":"Lua","max_stars_count":18.0,"content":"--Copyright (C) 2010 \n\n\n--This File is part of Core3.\n\n--This program is free software; you can redistribute \n--it and\/or modify it under the terms of the GNU Lesser \n--General Public License as published by the Free Software\n--Foundation; either version 2 of the License, \n--or (at your option) any later version.\n\n--This program is distributed in the hope that it will be useful, \n--but WITHOUT ANY WARRANTY; without even the implied warranty of \n--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \n--See the GNU Lesser General Public License for\n--more details.\n\n--You should have received a copy of the GNU Lesser General \n--Public License along with this program; if not, write to\n--the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\n--Linking Engine3 statically or dynamically with other modules \n--is making a combined work based on Engine3. \n--Thus, the terms and conditions of the GNU Lesser General Public License \n--cover the whole combination.\n\n--In addition, as a special exception, the copyright holders of Engine3 \n--give you permission to combine Engine3 program with free software \n--programs or libraries that are released under the GNU LGPL and with \n--code included in the standard release of Core3 under the GNU LGPL \n--license (or modified versions of such code, with unchanged license). \n--You may copy and distribute such a system following the terms of the \n--GNU LGPL for Engine3 and the licenses of the other code concerned, \n--provided that you include the source code of that other code when \n--and as the GNU LGPL requires distribution of source code.\n\n--Note that people who make modified versions of Engine3 are not obligated \n--to grant this special exception for their modified versions; \n--it is their choice whether to do so. The GNU Lesser General Public License \n--gives permission to release a modified version without this exception; \n--this exception also makes it possible to release a modified version \n\n\nobject_mobile_dressed_liberation_loyalist_bith_male_01 = object_mobile_shared_dressed_liberation_loyalist_bith_male_01:new {\n\n}\n\nObjectTemplates:addTemplate(object_mobile_dressed_liberation_loyalist_bith_male_01, \"object\/mobile\/dressed_liberation_loyalist_bith_male_01.iff\")\n","avg_line_length":46.4489795918,"max_line_length":145,"alphanum_fraction":0.7908611599} +{"size":2146,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local pathm = require \"nvim-lsp-installer.path\"\nlocal log = require \"nvim-lsp-installer.log\"\nlocal settings = require \"nvim-lsp-installer.settings\"\n\nlocal uv = vim.loop\nlocal M = {}\n\nlocal function assert_ownership(path)\n if not pathm.is_subdirectory(settings.current.install_root_dir, path) then\n error(\n (\"Refusing to operate on path (%s) outside of the servers root dir (%s).\"):format(\n path,\n settings.current.install_root_dir\n )\n )\n end\nend\n\nfunction M.rmrf(path)\n log.debug(\"fs: rmrf\", path)\n assert_ownership(path)\n if vim.fn.delete(path, \"rf\") ~= 0 then\n log.debug \"fs: rmrf failed\"\n error((\"rmrf: Could not remove directory %q.\"):format(path))\n end\nend\n\nfunction M.rename(path, new_path)\n log.debug(\"fs: rename\", path, new_path)\n assert_ownership(path)\n assert_ownership(new_path)\n uv.fs_rename(path, new_path)\nend\n\nfunction M.mkdirp(path)\n log.debug(\"fs: mkdirp\", path)\n assert_ownership(path)\n if vim.fn.mkdir(path, \"p\") ~= 1 then\n log.debug \"fs: mkdirp failed\"\n error((\"mkdirp: Could not create directory %q.\"):format(path))\n end\nend\n\nfunction M.dir_exists(path)\n local ok, stat = pcall(M.fstat, path)\n if not ok then\n return false\n end\n return stat.type == \"directory\"\nend\n\nfunction M.file_exists(path)\n local ok, stat = pcall(M.fstat, path)\n if not ok then\n return false\n end\n return stat.type == \"file\"\nend\n\nfunction M.fstat(path)\n local fd = assert(uv.fs_open(path, \"r\", 438))\n local fstat = assert(uv.fs_fstat(fd))\n assert(uv.fs_close(fd))\n return fstat\nend\n\nfunction M.readdir(path)\n local dir = assert(uv.fs_opendir(path, nil, 25))\n local all_entries = {}\n local exhausted = false\n\n repeat\n local entries = uv.fs_readdir(dir)\n if entries and #entries > 0 then\n for i = 1, #entries do\n all_entries[#all_entries + 1] = entries[i]\n end\n else\n exhausted = true\n end\n until exhausted\n\n assert(uv.fs_closedir(dir))\n\n return all_entries\nend\n\nreturn M\n","avg_line_length":24.1123595506,"max_line_length":94,"alphanum_fraction":0.6262814539} +{"size":2093,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"SCREEN_WIDTH = love.graphics.getWidth()\nSCREEN_HEIGHT = love.graphics.getHeight()\n\nfunction level3_load_images()\n\timages = {}\n\timages.background = love.graphics.newImage(\"assets\/images\/ground.png\")\n\timages.goal = love.graphics.newImage(\"assets\/images\/doors.png\")\n\timages.background = love.graphics.newImage(\"assets\/images\/stone.png\")\n\timages.road = love.graphics.newImage(\"assets\/images\/road.png\")\n\timages.player_right = love.graphics.newImage(\"assets\/images\/bikeman_nowork_right.png\")\n\timages.player_left = love.graphics.newImage(\"assets\/images\/bikeman_nowork_left.png\")\n\timages.marcelo = love.graphics.newImage(\"assets\/images\/marcelo.png\")\n\timages.john = love.graphics.newImage(\"assets\/images\/john.png\")\n\timages.larry = love.graphics.newImage(\"assets\/images\/larry.png\")\n\timages.harle = love.graphics.newImage(\"assets\/images\/harle.png\")\n\timages.andrew = love.graphics.newImage(\"assets\/images\/andrew.png\")\n\timages.tree = love.graphics.newImage(\"assets\/images\/trees.png\")\n\timages.stone = love.graphics.newImage(\"assets\/images\/stone.png\")\n\timages.water = love.graphics.newImage(\"assets\/images\/tables.png\")\n\n\timages.plant = love.graphics.newImage(\"assets\/images\/plant.png\")\n\timages.pool_table = love.graphics.newImage(\"assets\/images\/pool-table.png\")\n\n\treturn images\nend\n\nfunction level3_load_lanes()\n\tlane1 = {timerMax = 5, timer = 0, speed = -250, x = laneSpacing*2, image = images.andrew}\n\tlane1.obstacles = {}\n\tlane2 = {timerMax = 6, timer = 0, speed = 250, x = laneSpacing*3, image = images.harle}\n\tlane2.obstacles = {}\n\tlane3 = {timerMax = 6, timer = 0, speed = 50, x = laneSpacing*5, image = images.larry}\n\tlane3.obstacles = {}\n\tlane4 = {timerMax = 5, timer = 0, speed = 70, x = laneSpacing*7, image = images.john}\n\tlane4.obstacles = {}\n\tlane5 = {timerMax = 4, timer = 0, speed = -80, x = laneSpacing*8, image = images.marcelo}\n\tlane5.obstacles = {}\n\tlanes = {lane1, lane2, lane3, lane4, lane5}\n\n\treturn lanes\nend\n\nfunction level3_load_player_goal()\n\tplayer = {x = SCREEN_WIDTH - 150, y = SCREEN_HEIGHT\/2 - 64, w = 100, h = 100}\n\tgoal = {x = 10, y = SCREEN_HEIGHT\/2-100, w = 40, h = 40}\nend","avg_line_length":45.5,"max_line_length":90,"alphanum_fraction":0.7295747731} +{"size":3104,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"-- \u529f\u80fd\uff1a\u7f16\u7801 HTTP \u8fd4\u56de\u5934\n-- \u9636\u6bb5\uff1aheader_filter_by_lua\n-- \u5907\u6ce8\uff1a\n-- aceh = HTTP \u8fd4\u56de\u5934\u7684 access-control-expose-headers \u5b57\u6bb5\n\n-- \u65e0\u8bba\u6d4f\u89c8\u5668\u662f\u5426\u652f\u6301\uff0caceh \u59cb\u7ec8\u5305\u542b *\nlocal expose = '*'\n\n-- \u8be5\u503c\u4e3a true \u8868\u793a\u6d4f\u89c8\u5668\u4e0d\u652f\u6301 aceh: *\uff0c\u9700\u8fd4\u56de\u8be6\u7ec6\u7684\u5934\u90e8\u5217\u8868\nlocal detail = ngx.ctx._acehOld\n\n\nlocal function addHdr(k, v)\n ngx.header[k] = v\n if detail then\n expose = expose .. ',' .. k\n end\nend\n\n\nlocal function flushHdr()\n if detail then\n if status ~= 200 then\n expose = expose .. ',--s'\n end\n -- \u8be5\u5b57\u6bb5\u4e0d\u5728 aceh \u4e2d\uff0c\u5982\u679c\u6d4f\u89c8\u5668\u80fd\u8bfb\u53d6\u5230\uff0c\u8bf4\u660e\u652f\u6301 * \u901a\u914d\n ngx.header['--t'] = '1'\n end\n\n ngx.header['access-control-expose-headers'] = expose\n ngx.header['access-control-allow-origin'] = '*'\n\n local status = ngx.status\n\n -- \u524d\u7aef\u4f18\u5148\u4f7f\u7528\u8be5\u5b57\u6bb5\u4f5c\u4e3a\u72b6\u6001\u7801\n if status ~= 200 then\n ngx.header['--s'] = status\n end\n\n -- \u4fdd\u7559\u539f\u59cb\u72b6\u6001\u7801\uff0c\u4fbf\u4e8e\u63a7\u5236\u53f0\u8c03\u8bd5\n -- \u4f8b\u5982 404 \u663e\u793a\u7ea2\u8272\uff0c\u5982\u679c\u7edf\u4e00\u8bbe\u7f6e\u6210 200 \u5219\u6ca1\u6709\u989c\u8272\u533a\u5206\n -- \u9700\u8981\u8f6c\u4e49 30X \u91cd\u5b9a\u5411\uff0c\u5426\u5219\u4e0d\u7b26\u5408 cors \u6807\u51c6\n if\n status == 301 or\n status == 302 or\n status == 303 or\n status == 307 or\n status == 308\n then\n status = status + 10\n end\n ngx.status = status\nend\n\n\nlocal function nodeSwitched()\n local status = ngx.status\n if status ~= 200 and status ~= 206 then\n return false\n end\n\n local level = ngx.ctx._level\n if level == nil or level == 0 then\n return false\n end\n\n if ngx.req.get_method() ~= 'GET' then\n return false\n end\n\n if ngx.header['set-cookie'] ~= nil then\n return false\n end\n\n local resLenStr = ngx.header['content-length']\n if resLenStr == nil then\n return false\n end\n\n -- \u5c0f\u4e8e 400KB \u7684\u8d44\u6e90\u4e0d\u8d70\u52a0\u901f\n local resLenNum = tonumber(resLenStr)\n if resLenNum == nil or resLenNum < 1000 * 400 then\n return false\n end\n\n\n local addr = ngx.var.upstream_addr or ''\n local etag = ngx.header['etag'] or ''\n local last = ngx.header['last-modified'] or ''\n\n local info = addr .. '|' .. resLenStr .. '|' .. etag .. '|' .. last\n\n -- clear all res headers\n local h, err = ngx.resp.get_headers()\n for k, v in pairs(h) do\n ngx.header[k] = nil\n end\n\n addHdr('--raw-info', info)\n addHdr('--switched', '1')\n\n ngx.header['cache-control'] = 'no-cache'\n ngx.var._switched = resLenStr\n ngx.ctx._switched = true\n\n flushHdr()\n return true\nend\n\n-- \u8282\u70b9\u5207\u6362\u529f\u80fd\uff0c\u76ee\u524d\u8fd8\u5728\u6d4b\u8bd5\u4e2d\uff08demo \u4e2d\u5df2\u5f00\u542f\uff09\nif nodeSwitched() then\n return\nend\n\n\nlocal h, err = ngx.resp.get_headers()\nfor k, v in pairs(h) do\n if\n -- \u8fd9\u4e9b\u5934\u6709\u7279\u6b8a\u610f\u4e49\uff0c\u9700\u8981\u8f6c\u4e49 --\n k == 'access-control-allow-origin' or\n k == 'access-control-expose-headers' or\n k == 'location' or\n k == 'set-cookie'\n then\n if type(v) == 'table' then\n -- \u91cd\u590d\u7684\u5b57\u6bb5\uff0c\u4f8b\u5982 Set-Cookie\n -- \u8f6c\u6362\u6210 1-Set-Cookie, 2-Set-Cookie, ...\n for i = 1, #v do\n addHdr(i .. '-' .. k, v[i])\n end\n else\n addHdr('--' .. k, v)\n end\n ngx.header[k] = nil\n\n elseif detail and\n -- \u975e\u7b80\u5355\u5934\u65e0\u6cd5\u88ab fetch \u8bfb\u53d6\uff0c\u9700\u6dfb\u52a0\u5230 aceh \u5217\u8868 --\n -- https:\/\/developer.mozilla.org\/en-US\/docs\/Glossary\/Simple_response_header\n k ~= 'cache-control' and\n k ~= 'content-language' and\n k ~= 'content-type' and\n k ~= 'expires' and\n k ~= 'last-modified' and\n k ~= 'pragma'\n then\n expose = expose .. ',' .. k\n end\nend\n\n-- \u4e0d\u7f13\u5b58\u975e GET \u8bf7\u6c42\nif ngx.req.get_method() ~= 'GET' then\n ngx.header['cache-control'] = 'no-cache'\nend\n\nflushHdr()\n","avg_line_length":19.8974358974,"max_line_length":79,"alphanum_fraction":0.6098582474} +{"size":110,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local key = require(\"lib\/keybindings\")\n\nkey.map('n', '', \":w exec '!make'\", { noremap = true })\n","avg_line_length":27.5,"max_line_length":69,"alphanum_fraction":0.5727272727} +{"size":10469,"ext":"lua","lang":"Lua","max_stars_count":1.0,"content":"require(\"common\/commonGameLayer\");\r\nrequire(\"common\/uiFactory\");\r\nrequire(\"hall\/hallConfig\");\r\nrequire(\"common\/IBaseDialog\");\r\nlocal updateDialog = require(HallViewPath .. \"update\/updateDialog\")\r\n-- update \u754c\u9762\u5c5e\u4e8e\u5927\u5385 \uff0c\u6682\u65f6\u5148\u653e\u8fd9\u91cc\u5427\r\nUpdateDialog = class(IBaseDialog,false);\r\n\r\nUpdateDialog.s_width = 670;\r\nUpdateDialog.s_height = 253;\r\nUpdateDialog.s_level = 15;\r\n\r\nUpdateDialog.s_controls = \r\n{\r\n\tTitle = 1;\r\n\tarea_newVersion_desc = 3;\r\n\tdescText=4;\r\n\r\n\tarea_bottom_twoBtnsView = 5;\r\n\tconfirmBtn = 6;\r\n\tcancelBtn = 7;\r\n\tconfirmBtnText = 8;\r\n\tcancelBtnText = 9;\r\n\r\n\tarea_bottom_singleBtnView = 10;\r\n\tsingleConfirmBtn = 11;\r\n\tsingleConfirmBtnText = 12;\r\n\r\n\tarea_bottom_completeView = 13;\r\n\tcompleteBtn = 14;\r\n\t\r\n\tarea_bottom_progressView = 15;\r\n\tprogressText = 16;\r\n\tprogressSlider = 17;\r\n\tCloseButton = 18;\r\n\tcompleteText=19;\r\n};\r\n\r\n\r\nUpdateDialog.s_localConfig = \r\n{\r\n\tbgImage = \"hall\/common\/progress_bg_l15_r15_t15_b15.png\";\r\n\tfgImage = \"hall\/common\/progress_fg_l15_r15_t15_b15.png\";\r\n\tbuttonImage = \"\";\r\n};\r\n\r\n\r\nUpdateDialog.ctor = function(self, token,level,version ,desc , update_type,size)\r\n\tsuper(self,updateDialog,token,level);\r\n\tself:initView(version ,desc , update_type ,size);\r\n\tself:setCancelable(false);\r\nend\r\n\r\nUpdateDialog.initView = function(self , version , desc , update_type,size)\r\n\tself.m_root:setAlign(kAlignCenter);\r\n\tself:setLevel(UpdateDialog.s_level);\r\n\t\r\n\tself.m_ctrls = UpdateDialog.s_controls;\r\n\r\n\tself:findViewById(self.m_ctrls.descText):setText(desc or \"\u5347\u7ea7\u65b0\u7279\u6027\uff01\");\r\n\r\n\tself.m_completeText = self:findViewById(self.m_ctrls.completeText);\r\n\tself.m_completeBtn = self:findViewById(self.m_ctrls.completeBtn);\r\n\tself.m_closeButton = self:findViewById(self.m_ctrls.CloseButton);\r\n\tself.m_area_bottom_twoBtnsView = self:findViewById(self.m_ctrls.area_bottom_twoBtnsView);\r\n\tself.m_area_bottom_singleBtnView = self:findViewById(self.m_ctrls.area_bottom_singleBtnView);\r\n\tself.m_area_bottom_progressView = self:findViewById(self.m_ctrls.area_bottom_progressView);\r\n\tself.m_area_bottom_completeView = self:findViewById(self.m_ctrls.area_bottom_completeView);\r\n\r\n\r\n\tself.m_closeButton:setVisible(update_type~=2);\r\n\tself.m_progressSlider = self:findViewById(self.m_ctrls.progressSlider);\r\n\tself.m_progressSlider:setImages(UpdateDialog.s_localConfig.bgImage,\r\n\t\t\t\t\t UpdateDialog.s_localConfig.fgImage,\r\n\t\t\t\t\t UpdateDialog.s_localConfig.buttonImage);\r\n\tself.m_progressSlider:setProgress(0);\r\n self.m_progressSlider:setButtonVisible(false);\r\n\tif update_type==2 then\r\n\t\tself:initsingleConfirmBtnsView(size);\r\n\telse\r\n\t\tself:initTwoButtonsView(size);\r\n\tend\r\n \r\n\tself:setEventTouch(self,UpdateDialog.onShadeBgClick);\r\n\tself:setEventDrag(self,UpdateDialog.onShadeBgClick);\r\nend\r\n\r\n\r\n-- UpdateDialog.show = function(version ,desc , update_type,size) --FIXME \u4e3a\u4f55\u4e0d\u52a0self\uff1f\r\n\t\r\n-- \tUpdateDialog.hide(true);\r\n\t\r\n-- \tUpdateDialog.s_instance = new(UpdateDialog,version ,desc , update_type,size);\r\n-- \tUpdateDialog.s_instance:addToRoot();\r\n-- \tUpdateDialog.s_instance:setFillParent(true,true);\r\n\r\n-- \treturn UpdateDialog.s_instance;\r\n-- end\r\n\r\n-- UpdateDialog.hide = function(isShowing) --FIXME isShowing \u6709\u7528\uff1f\r\n-- \tif not isShowing then\r\n-- \t\tHallPopupManager.getInstance():closeWindow(HallPopupManager.UpdateState);\t\r\n-- \t\tHallPopupManager.getInstance():popWindow();\r\n-- \tend \r\n\t\r\n-- \tdelete(UpdateDialog.s_instance);\r\n-- \tUpdateDialog.s_instance = nil;\r\n-- end\r\n\r\n\r\nUpdateDialog.dtor = function(self)\r\n\r\n\tself.data = nil;\r\n\r\n\tself.m_okFunc = nil;\r\n\tself.m_okObj = nil;\r\n\tself.m_cancleFunc = nil;\r\n\tself.m_cancleObj = nil;\r\n\r\n\tself.m_closeFunc = nil;\r\n\tself.m_closeObj = nil;\r\n\r\n\tself.m_singleObj=nil;\r\n\tself.m_singleFunc=nil;\r\nend\r\n\r\nUpdateDialog.setOnClickListener = function(self,okObj, okFunc, cancleObj, cancleFunc)\r\n\tself.m_okFunc = okFunc;\r\n\tself.m_okObj = okObj;\r\n\tself.m_cancleFunc = cancleFunc;\r\n\tself.m_cancleObj = cancleObj;\r\n\r\nend\r\n\r\nUpdateDialog.setOnCloseListener = function(self,closeObj, closeFunc)\r\n\tself.m_closeFunc = closeFunc;\r\n\tself.m_closeObj = closeObj;\r\nend\r\n\r\n\r\nUpdateDialog.onShadeBgClick = function(self)\r\n\t--\u5c4f\u853d\u4f5c\u7528\r\n\t-- Log.d(\"UpdateDialog.onShadeBgClick\");\r\nend\r\n\r\nUpdateDialog.onSingleConfirmBtnClicked = function(self)\r\n\t\r\n\tif self.m_okObj and self.m_okFunc then\r\n\t\tself.m_okFunc(self.m_okObj);\r\n\tend\r\n\t-- UpdateDialog.hide();\r\nend\r\n\r\nUpdateDialog.onOkButtonClicked = function(self)\r\n\tif self.m_okObj and self.m_okFunc then\r\n\t\tself.m_okFunc(self.m_okObj);\r\n\tend\r\n\t-- UpdateDialog.hide();\r\nend\r\n\r\nUpdateDialog.onCancleButtonClicked = function(self)\r\n\t\r\n\tif self.m_cancleObj and self.m_cancleFunc then\r\n\t\tself.m_cancleFunc(self.m_cancleObj);\r\n\tend\r\n\tUpdateDialog.hide();\r\nend\r\n\r\nUpdateDialog.onCloseButtonClicked = function(self)\r\n\tif self.m_closeObj and self.m_closeFunc then\r\n\t\tself.m_closeFunc(self.m_closeObj);\r\n\tend\r\n\tUpdateDialog.hide();\r\nend\r\n\r\nUpdateDialog.hideCloseBtn = function(self)\r\n\tself.m_closeButton:setVisible(false);\r\nend\r\n\r\nUpdateDialog.initTwoButtonsView = function(self,size)\r\n\tself:reFreshView(self.m_ctrls.area_bottom_twoBtnsView);\r\n\tsize = size or -1;\r\n\tlocal text = \"\u66f4\u65b0\";\r\n\tif size >= 0 then\r\n\t\ttext=string.format(\"\u66f4\u65b0(%.2fM)\",math.max(size\/1024\/1024,0.01)) or \"\u66f4\u65b0\";\r\n\tend \r\n\tself:findViewById(self.m_ctrls.confirmBtnText):setText(text);\r\nend\r\n\r\nUpdateDialog.initsingleConfirmBtnsView = function(self,size)\r\n\tself:reFreshView(self.m_ctrls.area_bottom_singleBtnView);\r\n\tsize = size or -1;\r\n\tlocal text = \"\u66f4\u65b0\";\r\n\tif size >= 0 then\r\n\t\ttext=string.format(\"\u66f4\u65b0(%.2fM)\",math.max(size\/1024\/1024,0.01)) or \"\u66f4\u65b0\";\r\n\tend \r\n\tself:findViewById(self.m_ctrls.singleConfirmBtnText):setText(text);\r\nend\r\n\r\nUpdateDialog.initProgressView = function(self)\r\n\tself:reFreshView(self.m_ctrls.area_bottom_progressView);\r\nend\r\n\r\nUpdateDialog.initCompleteView = function(self)\r\n\tself:reFreshView(self.m_ctrls.area_bottom_completeView);\r\nend\r\n\r\nUpdateDialog.reFreshView = function(self,s_controlsID)\r\n\r\n\tlocal ids=\r\n\t{\t\r\n\t\t{self.m_ctrls.area_bottom_twoBtnsView , self.m_area_bottom_twoBtnsView},\r\n\t\t{self.m_ctrls.area_bottom_singleBtnView, self.m_area_bottom_singleBtnView},\r\n\t\t{self.m_ctrls.area_bottom_progressView, self.m_area_bottom_progressView},\r\n\t\t{self.m_ctrls.area_bottom_completeView, self.m_area_bottom_completeView},\r\n\t};\r\n\tfor k,v in pairs(ids) do\r\n\t\tif v[1] and v[2] then\r\n\t\t\tv[2]:setVisible(v[1]==s_controlsID);\r\n\t\tend\r\n\tend\r\nend\r\n\r\nUpdateDialog.setTexts = function(self,ctrls,texts)\r\n\tfor k,v in ipairs(ctrls) do\r\n\t\tself:findViewById(v):setText(texts[k] or \"\");\r\n\tend\r\nend\r\n\r\nUpdateDialog.updateProgress = function(self, progress)\r\n\tLog.v(\"UpdateDialog.updateProgress\");\r\n\tprogress = progress or 0 ;\r\n\tlocal len = 100;\r\n\tself:findViewById(self.m_ctrls.area_bottom_progressView):setVisible(true);\r\n\tself.m_progressSlider:setProgress(progress\/len);\r\n\tlocal text=string.format(\"\u5df2\u4e0b\u8f7d:%d%%\",math.min(progress or 0,100));\r\n\tself.m_progressText = self:findViewById(self.m_ctrls.progressText);\r\n\tif self.m_progressText then\r\n\t\tself.m_progressText:setText(text);\r\n\t\tif progress == 100 then\r\n\t\t\tself.m_progressText:setText(\"\u6b63\u5728\u9a8c\u8bc1\u4e2d\");\r\n\t\tend\r\n\tend\r\nend\r\n\r\nUpdateDialog.updateDownloadSuccessClick = function(self, singleObj ,singleFunc)\r\n\tLog.v(\"UpdateDialog.updateDownloadSuccessClick\");\r\n\tself.m_completeText:setText(\"\u5b89 \u88c5\");\r\n\tself:initCompleteView();\r\n\tself.m_singleObj=singleObj;\r\n\tself.m_singleFunc=singleFunc;\r\n\tself.m_completeBtn:setOnClick(self,UpdateDialog.onDownloadSuccess);\r\nend\r\n\r\nUpdateDialog.onDownloadSuccess = function(self)\r\n\tLog.v(\"UpdateDialog.onDownloadSuccess\");\r\n\tLog.v(self.m_singleFunc and \"full\" or \"empty\");\r\n\tif self.m_singleFunc then\r\n\t\tself.m_singleFunc(self.m_singleObj);\r\n\tend\r\n\tUpdateDialog.hide();\r\nend\r\n\r\nUpdateDialog.updateDownloadFaildClick = function(self, singleObj ,singleFunc)\r\n\tLog.v(\"UpdateDialog.updateDownloadFaildClick\");\r\n\tself.m_completeText:setText(\"\u91cd\u65b0\u4e0b\u8f7d\");\r\n\tself:initCompleteView();\r\n\tself.m_closeButton:setVisible(true);\r\n\tself.m_singleObj=singleObj;\r\n\tself.m_singleFunc=singleFunc;\r\n\tself.m_completeBtn:setOnClick(self,UpdateDialog.onDownloadFailed);\r\nend\r\n\r\nUpdateDialog.onDownloadFailed = function(self, singleObj ,singleFunc)\r\n\tLog.v(\"UpdateDialog.onDownloadFailed\");\r\n\tLog.v(self.m_singleFunc and \"full\" or \"empty\");\r\n\tif self.m_singleFunc then\r\n\t\tself.m_singleFunc(self.m_singleObj);\r\n\tend\r\nend\r\n\r\n\r\nUpdateDialog.s_controlConfig = \r\n{\r\n\t[UpdateDialog.s_controls.Title] = {\"contentView\" , \"title\"};\r\n\t[UpdateDialog.s_controls.area_newVersion_desc] = {\"contentView\" , \"area_newVersion_desc\"};\r\n\t[UpdateDialog.s_controls.descText] = {\"contentView\" , \"area_newVersion_desc\",\"descText\"};\r\n\r\n\t[UpdateDialog.s_controls.area_bottom_twoBtnsView] = {\"contentView\" , \"area_bottom_twoBtnsView\"};\r\n\t[UpdateDialog.s_controls.confirmBtn] = {\"contentView\" , \"area_bottom_twoBtnsView\",\"confirmBtn\"};\r\n\t[UpdateDialog.s_controls.cancelBtn] = {\"contentView\" , \"area_bottom_twoBtnsView\",\"cancelBtn\"};\r\n\t[UpdateDialog.s_controls.confirmBtnText] = {\"contentView\" , \"area_bottom_twoBtnsView\",\"confirmBtn\",\"confirmBtnText\"};\r\n\t[UpdateDialog.s_controls.cancelBtnText] = {\"contentView\" , \"area_bottom_twoBtnsView\",\"cancelBtn\",\"cancelBtnText\"};\r\n\r\n\t[UpdateDialog.s_controls.area_bottom_singleBtnView] = {\"contentView\" , \"area_bottom_singleBtnView\"};\r\n\t[UpdateDialog.s_controls.singleConfirmBtn] = {\"contentView\" , \"area_bottom_singleBtnView\",\"singleConfirmBtn\"};\r\n\t[UpdateDialog.s_controls.singleConfirmBtnText] = {\"contentView\" , \"area_bottom_singleBtnView\",\"singleConfirmBtn\",\"singleConfirmBtnText\"};\r\n\r\n\t[UpdateDialog.s_controls.area_bottom_completeView] = {\"contentView\" , \"area_bottom_completeView\"};\r\n\t[UpdateDialog.s_controls.completeBtn] = {\"contentView\" , \"area_bottom_completeView\",\"completeBtn\"};\r\n\t[UpdateDialog.s_controls.completeText] = {\"contentView\", \"area_bottom_completeView\",\"completeBtn\",\"completeText\"};\r\n\r\n\t[UpdateDialog.s_controls.area_bottom_progressView] = {\"contentView\" ,\"area_bottom_progressView\" };\r\n\t[UpdateDialog.s_controls.progressText] = {\"contentView\" ,\"area_bottom_progressView\" , \"progressText\"};\r\n\t[UpdateDialog.s_controls.progressSlider] = {\"contentView\" ,\"area_bottom_progressView\" , \"progressSlider\"};\r\n\t[UpdateDialog.s_controls.CloseButton] = {\"contentView\" , \"closeBtn\"};\r\n};\r\n\r\nUpdateDialog.s_controlFuncMap = \r\n{\r\n\t[UpdateDialog.s_controls.confirmBtn] = UpdateDialog.onOkButtonClicked;\r\n\t[UpdateDialog.s_controls.cancelBtn] = UpdateDialog.onCancleButtonClicked;\r\n\t[UpdateDialog.s_controls.singleConfirmBtn] = UpdateDialog.onSingleConfirmBtnClicked;\r\n\t[UpdateDialog.s_controls.CloseButton]= UpdateDialog.onCloseButtonClicked;\r\n};","avg_line_length":33.2349206349,"max_line_length":140,"alphanum_fraction":0.7551819658} +{"size":484,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"-----------------------------------\n-- Area: Zeruhn Mines\n-- NPC: Mining Point\n-----------------------------------\nrequire(\"scripts\/globals\/helm\")\n-----------------------------------\n\nfunction onTrade(player, npc, trade)\n tpz.helm.onTrade(player, npc, trade, tpz.helm.type.MINING, 165)\nend\n\nfunction onTrigger(player, npc)\n tpz.helm.onTrigger(player, tpz.helm.type.MINING)\nend\n\nfunction onEventUpdate(player, csid, option)\nend\n\nfunction onEventFinish(player, csid, option)\nend\n","avg_line_length":23.0476190476,"max_line_length":67,"alphanum_fraction":0.5826446281} +{"size":3537,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local _zlib = require \"zlib\"\nlocal _util = require \"eli.util\"\n\nlocal lz = {}\n\n---@class LzExtractOptions\n---#DES 'LzExtractOptions.chunkSize'\n---@field chunkSize nil|integer\n---#DES 'LzExtractOptions.open_file'\n---@field open_file nil|fun(path: string, mode: string): file*\n---#DES 'LzExtractOptions.write'\n---@field write nil|fun(path: string, data: string)\n---#DES 'LzExtractOptions.close_file'\n---@field close_file nil|fun(f: file*)\n\n---#DES 'lz.extract'\n---\n---Extracts z compressed stream from source into destination\n---@param source string\n---@param destination string\n---@param options LzExtractOptions\nfunction lz.extract(source, destination, options)\n local _sf = io.open(source)\n assert(_sf, \"lz: Failed to open source file \" .. tostring(source) .. \"!\")\n\n if type(options) ~= \"table\" then options = {} end\n local _open_file = type(options.open_file) == \"function\" and\n options.open_file or\n function(path, mode)\n return io.open(path, mode)\n end\n local _write = type(options.write) == \"function\" and options.write or\n function(file, data) return file:write(data) end\n local _close_file = type(options.close_file) == \"function\" and\n options.close_file or\n function(file) return file:close() end\n\n local _df = _open_file(destination, \"w\")\n assert(_df,\n \"lz: Failed to open destination file \" .. tostring(source) .. \"!\")\n\n local _chunkSize =\n type(options.chunkSize) == \"number\" and options.chunkSize or 2 ^ 13 -- 8K\n\n local _inflate = _zlib.inflate()\n local _shift = 0\n while true do\n local _data = _sf:read(_chunkSize)\n if not _data then break end\n local _inflated, eof, bytes_in, _ = _inflate(_data)\n if type(_inflated) == \"string\" then _write(_df, _inflated) end\n if eof then -- we got end of gzip stream we return to bytes_in pos in case there are multiple stream embedded\n _sf:seek(\"set\", _shift + bytes_in)\n _shift = _shift + bytes_in\n _inflate = _zlib.inflate()\n end\n end\n _sf:close()\n _close_file(_df)\nend\n\n---#DES 'lz.extract_from_string'\n---\n---Extracts z compressed stream from binary like string variable\n---@param data string\n---@return string\nfunction lz.extract_from_string(data)\n if type(data) ~= \"string\" then\n error(\"lz: Unsupported compressed data type: \" .. type(data) .. \"!\")\n end\n local shift = 1\n local result = \"\"\n while (shift < #data) do\n local inflate = _zlib.inflate()\n local inflated, eof, bytes_in, _ = inflate(data:sub(shift))\n assert(eof, \"lz: Compressed stream is not complete!\")\n shift = shift + bytes_in\n result = result .. inflated -- merge streams for cases when input is multi stream\n end\n return result\nend\n\n---#DES lz.extract_string\n---\n--- extracts string from z compressed archive from path source\n---@param source string\n---@param options LzExtractOptions\n---@return string\nfunction lz.extract_string(source, options)\n local _result = \"\"\n local _options = _util.merge_tables(type(options) == \"table\" and options or\n {}, {\n open_file = function() return _result end,\n write = function(_, data) _result = _result .. data end,\n close_file = function() end\n }, true)\n\n lz.extract(source, nil, _options)\n return _result\nend\n\nreturn _util.generate_safe_functions(lz)\n","avg_line_length":34.3398058252,"max_line_length":117,"alphanum_fraction":0.6330223353} +{"size":179,"ext":"lua","lang":"Lua","max_stars_count":4.0,"content":"vim.cmd 'filetype plugin indent on'\nvim.cmd [[au BufReadPost * if line(\"'\\\"\") > 1 && line(\"'\\\"\") <= line(\"$\") | exe \"normal! g'\\\"\" | endif]]\nvim.cmd [[au CmdlineLeave : echo '']]\n","avg_line_length":44.75,"max_line_length":104,"alphanum_fraction":0.5642458101} +{"size":3991,"ext":"lua","lang":"Lua","max_stars_count":5.0,"content":"-- Copyright 2006-2017 Mitchell mitchell.att.foicica.com. See LICENSE.\n-- Rexx LPeg lexer.\n\nlocal l = require('lexer')\nlocal token, word_match = l.token, l.word_match\nlocal P, R, S = lpeg.P, lpeg.R, lpeg.S\n\nlocal M = {_NAME = 'rexx'}\n\n-- Whitespace.\nlocal ws = token(l.WHITESPACE, l.space^1)\n\n-- Comments.\nlocal line_comment = '--' * l.nonnewline_esc^0\nlocal block_comment = l.nested_pair('\/*', '*\/')\nlocal comment = token(l.COMMENT, line_comment + block_comment)\n\n-- Strings.\nlocal sq_str = l.delimited_range(\"'\", true, true)\nlocal dq_str = l.delimited_range('\"', true, true)\nlocal string = token(l.STRING, sq_str + dq_str)\n\n-- Numbers.\nlocal number = token(l.NUMBER, l.float + l.integer)\n\n-- Preprocessor.\nlocal preproc = token(l.PREPROCESSOR, l.starts_line('#') * l.nonnewline^0)\n\n-- Keywords.\nlocal keyword = token(l.KEYWORD, word_match({\n 'address', 'arg', 'by', 'call', 'class', 'do', 'drop', 'else', 'end', 'exit',\n 'expose', 'forever', 'forward', 'guard', 'if', 'interpret', 'iterate',\n 'leave', 'method', 'nop', 'numeric', 'otherwise', 'parse', 'procedure',\n 'pull', 'push', 'queue', 'raise', 'reply', 'requires', 'return', 'routine',\n 'result', 'rc', 'say', 'select', 'self', 'sigl', 'signal', 'super', 'then',\n 'to', 'trace', 'use', 'when', 'while', 'until'\n}, nil, true))\n\n-- Functions.\nlocal func = token(l.FUNCTION, word_match({\n 'abbrev', 'abs', 'address', 'arg', 'beep', 'bitand', 'bitor', 'bitxor', 'b2x',\n 'center', 'changestr', 'charin', 'charout', 'chars', 'compare', 'consition',\n 'copies', 'countstr', 'c2d', 'c2x', 'datatype', 'date', 'delstr', 'delword',\n 'digits', 'directory', 'd2c', 'd2x', 'errortext', 'filespec', 'form',\n 'format', 'fuzz', 'insert', 'lastpos', 'left', 'length', 'linein', 'lineout',\n 'lines', 'max', 'min', 'overlay', 'pos', 'queued', 'random', 'reverse',\n 'right', 'sign', 'sourceline', 'space', 'stream', 'strip', 'substr',\n 'subword', 'symbol', 'time', 'trace', 'translate', 'trunc', 'value', 'var',\n 'verify', 'word', 'wordindex', 'wordlength', 'wordpos', 'words', 'xrange',\n 'x2b', 'x2c', 'x2d', 'rxfuncadd', 'rxfuncdrop', 'rxfuncquery', 'rxmessagebox',\n 'rxwinexec', 'sysaddrexxmacro', 'sysbootdrive', 'sysclearrexxmacrospace',\n 'syscloseeventsem', 'sysclosemutexsem', 'syscls', 'syscreateeventsem',\n 'syscreatemutexsem', 'syscurpos', 'syscurstate', 'sysdriveinfo',\n 'sysdrivemap', 'sysdropfuncs', 'sysdroprexxmacro', 'sysdumpvariables',\n 'sysfiledelete', 'sysfilesearch', 'sysfilesystemtype', 'sysfiletree',\n 'sysfromunicode', 'systounicode', 'sysgeterrortext', 'sysgetfiledatetime',\n 'sysgetkey', 'sysini', 'sysloadfuncs', 'sysloadrexxmacrospace', 'sysmkdir',\n 'sysopeneventsem', 'sysopenmutexsem', 'sysposteventsem', 'syspulseeventsem',\n 'sysqueryprocess', 'sysqueryrexxmacro', 'sysreleasemutexsem',\n 'sysreorderrexxmacro', 'sysrequestmutexsem', 'sysreseteventsem', 'sysrmdir',\n 'syssaverexxmacrospace', 'syssearchpath', 'syssetfiledatetime',\n 'syssetpriority', 'syssleep', 'sysstemcopy', 'sysstemdelete', 'syssteminsert',\n 'sysstemsort', 'sysswitchsession', 'syssystemdirectory', 'systempfilename',\n 'systextscreenread', 'systextscreensize', 'sysutilversion', 'sysversion',\n 'sysvolumelabel', 'syswaiteventsem', 'syswaitnamedpipe', 'syswindecryptfile',\n 'syswinencryptfile', 'syswinver'\n}, '2', true))\n\n-- Identifiers.\nlocal word = l.alpha * (l.alnum + S('@#$\\\\.!?_'))^0\nlocal identifier = token(l.IDENTIFIER, word)\n\n-- Operators.\nlocal operator = token(l.OPERATOR, S('=!<>+-\/\\\\*%&|^~.,:;(){}'))\n\nM._rules = {\n {'whitespace', ws},\n {'keyword', keyword},\n {'function', func},\n {'identifier', identifier},\n {'string', string},\n {'comment', comment},\n {'number', number},\n {'preproc', preproc},\n {'operator', operator},\n}\n\nM._foldsymbols = {\n _patterns = {'[a-z]+', '\/%*', '%*\/', '%-%-', ':'},\n [l.KEYWORD] = {['do'] = 1, select = 1, ['end'] = -1, ['return'] = -1},\n [l.COMMENT] = {\n ['\/*'] = 1, ['*\/'] = -1, ['--'] = l.fold_line_comments('--')\n },\n [l.OPERATOR] = {[':'] = 1}\n}\n\nreturn M\n","avg_line_length":40.7244897959,"max_line_length":80,"alphanum_fraction":0.6356802806} +{"size":2449,"ext":"lua","lang":"Lua","max_stars_count":1.0,"content":"Locales['fr'] = {\n -- cloakroom\n ['cloakroom_menu'] = 'Vestiaire',\n ['cloakroom_prompt'] = 'Appuyez sur ~INPUT_CONTEXT~ pour vous changer',\n ['wear_citizen'] = 'Tenue Civil',\n ['wear_work'] = 'Tenue de travail',\n\n -- garage\n ['spawner_prompt'] = 'Appuyez sur ~INPUT_CONTEXT~ pour acceder au garage',\n ['store_veh'] = 'Appuyez sur ~INPUT_CONTEXT~ pour ranger le vehicule',\n ['spawn_veh'] = 'Sortir vehicule',\n ['spawnpoint_blocked'] = 'Un vehicule bloque le point de sortie!',\n ['only_taxi'] = 'Vous ne pouvez ranger que les taxi',\n\n ['taking_service'] = 'Prise de service : ',\n ['full_service'] = 'Service complet : ',\n ['amount_invalid'] = 'Montant invalide',\n ['press_to_open'] = 'Appuyez sur ~INPUT_CONTEXT~ pour acceder au menu',\n ['billing'] = 'Facuration',\n ['billing_sent'] = 'La facture a ete enregistree!',\n ['invoice_amount'] = 'Montant de la facture',\n ['no_players_near'] = 'Aucun joueur a proximite',\n ['start_job'] = 'Demarrer \/ Arreter les mission Civil',\n ['drive_search_pass'] = 'Conduisez a la recherche de ~y~passagers',\n ['customer_found'] = 'Vous avez ~g~trouve~s~ un client, conduisez jusqu\\'a ce dernier',\n ['client_unconcious'] = 'Votre client est ~r~inconscient~w~. Cherchez-en un autre.',\n ['arrive_dest'] = 'Vous etes ~g~arrive~s~ a destination',\n ['take_me_to_near'] = '~w~Emmenez-moi a~y~ %s~w~, pres de~y~ %s',\n ['take_me_to'] = '~w~Emmenez-moi a~y~ %s',\n ['close_to_client'] = 'Vous etes a proximite du client, approchez-vous de lui',\n ['return_to_veh'] = 'Veuillez remonter dans votre vehicule pour continuer la mission',\n ['must_in_taxi'] = 'Vous devez etre dans un taxi pour commencer la mission',\n ['must_in_vehicle'] = 'Vous devez etre dans un vehicule pour commencer la mission',\n ['have_earned'] = 'Vous avez gagne ~g~$%s~s~',\n ['comp_earned'] = '- Votre societe a gagne ~g~$%s~s~\\n- Vous avez gagne ~g~$%s~s~',\n ['deposit_stock'] = 'Deposer Stock',\n ['take_stock'] = 'Prendre Stock',\n ['boss_actions'] = 'Action Patron',\n ['mission_complete'] = 'Mission terminee',\n ['quantity'] = 'Quantite',\n ['quantity_invalid'] = 'Quantite invalide',\n ['inventory'] = 'Inventaire',\n ['taxi_client'] = 'Client Taxi',\n ['have_withdrawn'] = 'Vous avez pris ~y~x%s~s~ ~b~%s~s~',\n ['have_deposited'] = 'Vous avez depose ~y~x%s~s~ ~b~%s~s~',\n ['player_cannot_hold'] = 'Vous n\\'avez pas assez ~y~de place~s~ dans votre inventaire!',\n ['blip_taxi'] = 'Taxi',\n ['phone_taxi'] = 'Taxi',\n}","avg_line_length":49.9795918367,"max_line_length":90,"alphanum_fraction":0.6553695386} +{"size":1844,"ext":"lua","lang":"Lua","max_stars_count":397.0,"content":"--\n-- Copyright 2010-2021 Branimir Karadzic. All rights reserved.\n-- License: https:\/\/github.com\/bkaradzic\/bx#license-bsd-2-clause\n--\n\nlocal function userdefines()\n\tlocal defines = {}\n\tlocal BX_CONFIG = os.getenv(\"BX_CONFIG\")\n\tif BX_CONFIG then\n\t\tfor def in BX_CONFIG:gmatch \"[^%s:]+\" do\n\t\t\ttable.insert(defines, \"BX_CONFIG_\" .. def)\n\t\tend\n\tend\n\n\treturn defines\nend\n\nproject \"bx\"\n\tkind \"StaticLib\"\n\n\tincludedirs {\n\t\tpath.join(BX_DIR, \"include\"),\n\t\tpath.join(BX_DIR, \"3rdparty\"),\n\t}\n\n\tfiles {\n\t\tpath.join(BX_DIR, \"include\/**.h\"),\n\t\tpath.join(BX_DIR, \"include\/**.inl\"),\n\t\tpath.join(BX_DIR, \"src\/**.cpp\"),\n\t\tpath.join(BX_DIR, \"scripts\/**.natvis\"),\n\t}\n\n\tdefines (userdefines())\n\n\tconfiguration { \"Debug\" }\n\t\tdefines {\n\t\t\t\"BX_CONFIG_DEBUG=1\",\n\t\t}\n\n\tconfiguration { \"linux-*\" }\n\t\tbuildoptions {\n\t\t\t\"-fPIC\",\n\t\t}\n\n\tconfiguration {}\n\n\tif _OPTIONS[\"with-amalgamated\"] then\n\t\texcludes {\n\t\t\tpath.join(BX_DIR, \"src\/allocator.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/bounds.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/bx.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/commandline.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/crtnone.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/debug.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/dtoa.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/easing.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/file.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/filepath.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/hash.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/math.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/mutex.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/os.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/process.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/semaphore.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/settings.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/sort.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/string.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/thread.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/timer.cpp\"),\n\t\t\tpath.join(BX_DIR, \"src\/url.cpp\"),\n\t\t}\n\telse\n\t\texcludes {\n\t\t\tpath.join(BX_DIR, \"src\/amalgamated.**\"),\n\t\t}\n\tend\n\n\tconfiguration {}\n","avg_line_length":23.3417721519,"max_line_length":64,"alphanum_fraction":0.6496746204} +{"size":30780,"ext":"lua","lang":"Lua","max_stars_count":26.0,"content":"ENT.Type = \"anim\"\nENT.Base = \"gmod_subway_base\"\n\nENT.PrintName = \"Ema (81-502)\"\nENT.Author = \"\"\nENT.Contact = \"\"\nENT.Purpose = \"\"\nENT.Instructions = \"\"\nENT.Category = \"Metrostroi (trains)\"\nENT.SkinsType = \"81-502\"\nENT.Model = \"models\/metrostroi_train\/81-502\/81-502.mdl\"\n\nENT.Spawnable = true\nENT.AdminSpawnable = false\nENT.DontAccelerateSimulation = false\n\nfunction ENT:PassengerCapacity()\n return 300\nend\n\nfunction ENT:GetStandingArea()\n return Vector(-450,-30,-55),Vector(380,30,-55)\nend\n\nlocal function GetDoorPosition(i,k)\n return Vector(359.0 - 35\/2 - 229.5*i,-65*(1-2*k),7.5)\nend\n\n-- Setup door positions\nENT.LeftDoorPositions = {}\nENT.RightDoorPositions = {}\nfor i=0,3 do\n table.insert(ENT.LeftDoorPositions,GetDoorPosition(i,1))\n table.insert(ENT.RightDoorPositions,GetDoorPosition(i,0))\nend\n\nENT.AnnouncerPositions = {\n {Vector(412,-49 ,61),80,0.6},\n {Vector(-3,-60, 62),300,0.6},\n {Vector(-3,60 ,62),300,0.6},\n}\n\nENT.Cameras = {\n {Vector(407.5+18,32,21),Angle(0,180,0),\"Train.703.Breakers1\"},\n {Vector(407.5+18,50,24),Angle(5,180,0),\"Train.703.Breakers2\"},\n {Vector(407.5+20,-40,25),Angle(0,180,0),\"Train.502.AV\"},\n {Vector(407.5+10,-35,9),Angle(20,180,0),\"Train.502.VBA\",\"VBA\"},\n {Vector(407.5+10,-28,5),Angle(20,180,0),\"Train.502.VRD\",\"VRD\"},\n {Vector(407.5+13,-46,10),Angle(10,200,0),\"Train.502.RCARS\",\"RCARS\"},\n {Vector(407.5+13,-46,10),Angle(10,200,0),\"Train.502.RCAV5\",\"RCAV5\"},\n {Vector(407.5+3,-37,-20),Angle(-20,180+40,0),\"Train.502.RCBPS\",\"RCBPS\"},\n {Vector(407.5+3,-37,-20),Angle(-20,180+40,0),\"Train.502.RCAV3\",\"RCAV3\"},\n {Vector(407.5+3,-33,-20),Angle(-20,180-40,0),\"Train.502.RCAV4\",\"RCAV4\"},\n {Vector(407.5+34,48,16),Angle(0,37,0),\"Train.Common.HelpersPanel\"},\n {Vector(407.5+30,40,5) ,Angle(30,10,0),\"Train.703.Parking\"},\n {Vector(407.5+75,48,1),Angle(0,190,0),\"Train.Common.RouteNumber\"},\n {Vector(450+13,0,26),Angle(60,0,0),\"Train.Common.CouplerCamera\"},\n}\n\nfunction ENT:InitializeSounds()\n self.BaseClass.InitializeSounds(self)\n self.SoundNames[\"rolling_5\"] = {loop=true,\"subway_trains\/common\/junk\/junk_background3.wav\"}\n self.SoundNames[\"rolling_10\"] = {loop=true,\"subway_trains\/717\/rolling\/10_rolling.wav\"}\n self.SoundNames[\"rolling_40\"] = {loop=true,\"subway_trains\/717\/rolling\/40_rolling.wav\"}\n self.SoundNames[\"rolling_70\"] = {loop=true,\"subway_trains\/717\/rolling\/70_rolling.wav\"}\n self.SoundNames[\"rolling_80\"] = {loop=true,\"subway_trains\/717\/rolling\/80_rolling.wav\"}\n self.SoundPositions[\"rolling_5\"] = {480,1e12,Vector(0,0,0),0.15}\n self.SoundPositions[\"rolling_10\"] = {480,1e12,Vector(0,0,0),0.20}\n self.SoundPositions[\"rolling_40\"] = {480,1e12,Vector(0,0,0),0.55}\n self.SoundPositions[\"rolling_70\"] = {480,1e12,Vector(0,0,0),0.60}\n self.SoundPositions[\"rolling_80\"] = {480,1e12,Vector(0,0,0),0.75}\n\n self.SoundNames[\"rolling_motors\"] = {loop=true,\"subway_trains\/ezh\/rolling\/rolling_motors.wav\"}\n self.SoundPositions[\"rolling_motors\"] = {480,1e12,Vector(0,0,0),.4}\n\n self.SoundNames[\"rolling_low\"] = {loop=true,\"subway_trains\/717\/rolling\/rolling_outside_low.wav\"}\n self.SoundNames[\"rolling_medium1\"] = {loop=true,\"subway_trains\/717\/rolling\/rolling_outside_medium1.wav\"}\n self.SoundNames[\"rolling_medium2\"] = {loop=true,\"subway_trains\/717\/rolling\/rolling_outside_medium2.wav\"}\n self.SoundNames[\"rolling_high2\"] = {loop=true,\"subway_trains\/717\/rolling\/rolling_outside_high2.wav\"}\n self.SoundPositions[\"rolling_low\"] = {480,1e12,Vector(0,0,0),0.6}\n self.SoundPositions[\"rolling_medium1\"] = {480,1e12,Vector(0,0,0),0.90}\n self.SoundPositions[\"rolling_medium2\"] = {480,1e12,Vector(0,0,0),0.90}\n self.SoundPositions[\"rolling_high2\"] = {480,1e12,Vector(0,0,0),1.00}\n\n self.SoundNames[\"pneumo_disconnect2\"] = \"subway_trains\/common\/pneumatic\/pneumo_close.mp3\"\n self.SoundNames[\"pneumo_disconnect1\"] = {\n \"subway_trains\/common\/pneumatic\/pneumo_open.mp3\",\n \"subway_trains\/common\/pneumatic\/pneumo_open2.mp3\",\n }\n self.SoundPositions[\"pneumo_disconnect2\"] = {60,1e9,Vector(431.8,-50.1+1.5,-33.7),1}\n self.SoundPositions[\"pneumo_disconnect1\"] = {60,1e9,Vector(431.8,-50.1+1.5,-33.7),1}\n\n -- \u0420\u0435\u043b\u044e\u0448\u043a\u0438\n self.SoundNames[\"rpb_off\"] = \"subway_trains\/717\/relays\/lsd_2.mp3\"\n self.SoundNames[\"rpb_on\"] = \"subway_trains\/717\/relays\/relay_on.mp3\"\n self.SoundPositions[\"rpb_on\"] = {100,1e9,Vector(400,25,-35),1}\n self.SoundPositions[\"rpb_off\"] = {100,1e9,Vector(400,25,-35),1}\n\n self.SoundNames[\"kd_off\"] = \"subway_trains\/717\/relays\/lsd_2.mp3\"\n self.SoundNames[\"kd_on\"] = \"subway_trains\/717\/relays\/new\/kd_on.mp3\"\n self.SoundPositions[\"kd_on\"] = {100,1e9,Vector(400,25,-35),1}\n self.SoundPositions[\"kd_off\"] = {100,1e9,Vector(400,25,-35),1}\n\n self.SoundNames[\"avu_off\"] = \"subway_trains\/common\/pneumatic\/ak11b_off.mp3\"\n self.SoundNames[\"avu_on\"] = \"subway_trains\/common\/pneumatic\/ak11b_on.mp3\"\n self.SoundPositions[\"avu_on\"] = {60,1e9, Vector(400,-40,-45),0.5}\n self.SoundPositions[\"avu_off\"] = {60,1e9, Vector(400,-40,-45),0.5}\n --\u041f\u043e\u0434\u0432\u0430\u0433\u043e\u043d\u043a\u0430\n self.SoundNames[\"lk2_on\"] = \"subway_trains\/717\/pneumo\/lk1_on.mp3\"\n self.SoundNames[\"lk2_off\"] = \"subway_trains\/717\/pneumo\/lk2_off.mp3\"\n self.SoundNames[\"lk5_on\"] = \"subway_trains\/717\/pneumo\/lk2_on.mp3\"\n self.SoundNames[\"lk5_off\"] = \"subway_trains\/717\/pneumo\/lk2_off.mp3\"\n self.SoundNames[\"lk4_on\"] = \"subway_trains\/717\/pneumo\/lk3_on.mp3\"\n self.SoundNames[\"lk4_off\"] = \"subway_trains\/717\/pneumo\/lk3_off.mp3\"\n self.SoundPositions[\"lk2_on\"] = {440,1e9,Vector(-60,-40,-66),0.22}\n self.SoundPositions[\"lk2_off\"] = {440,1e9,Vector(-60,-40,-66),0.3}\n self.SoundPositions[\"lk5_on\"] = self.SoundPositions[\"lk2_on\"]\n self.SoundPositions[\"lk5_off\"] = self.SoundPositions[\"lk2_off\"]\n self.SoundPositions[\"lk4_on\"] = self.SoundPositions[\"lk2_on\"]\n self.SoundPositions[\"lk4_off\"] = self.SoundPositions[\"lk2_off\"]\n\n self.SoundNames[\"compressor\"] = {loop=1.79,\"subway_trains\/ezh\/compressor\/ezh_compressor_start.wav\",\"subway_trains\/ezh\/compressor\/ezh_compressor_loop.wav\", \"subway_trains\/ezh\/compressor\/ezh_compressor_end.wav\"}\n self.SoundPositions[\"compressor\"] = {485,1e9,Vector(-118,-40,-66),0.80}\n self.SoundNames[\"compressor_reflection\"] = {\"subway_trains\/common\/junk\/junk_background2.wav\"}\n self.SoundPositions[\"compressor_reflection\"] = {150,1e9,Vector(300,0,0)}\n self.SoundPositions[\"compressor_reflection\"] = {150,1e9,Vector(-300,0,0)}\n self.SoundNames[\"rk\"] = {\"subway_trains\/ezh\/rk\/rk_start.wav\",\"subway_trains\/ezh\/rk\/rk_spin.wav\",\"subway_trains\/ezh\/rk\/rk_stop.wav\"}\n self.SoundPositions[\"rk\"] = {50,1e9,Vector(110,-40,-75),0.22}\n\n self.SoundNames[\"ezh3_revers_0-f\"] = {\"subway_trains\/717\/kv70\/reverser_0-f_1.mp3\",\"subway_trains\/717\/kv70\/reverser_0-f_2.mp3\"}\n self.SoundNames[\"ezh3_revers_f-0\"] = {\"subway_trains\/717\/kv70\/reverser_f-0_1.mp3\",\"subway_trains\/717\/kv70\/reverser_f-0_2.mp3\"}\n self.SoundNames[\"ezh3_revers_0-b\"] = {\"subway_trains\/717\/kv70\/reverser_0-b_1.mp3\",\"subway_trains\/717\/kv70\/reverser_0-b_2.mp3\"}\n self.SoundNames[\"ezh3_revers_b-0\"] = {\"subway_trains\/717\/kv70\/reverser_b-0_1.mp3\",\"subway_trains\/717\/kv70\/reverser_b-0_2.mp3\"}\n self.SoundNames[\"revers_in\"] = {\"subway_trains\/ezh3\/kv66\/revers_in.mp3\"}\n self.SoundNames[\"revers_out\"] = {\"subway_trains\/ezh3\/kv66\/revers_out.mp3\"}\n self.SoundNames[\"rcu_in\"] = {\"subway_trains\/ezh3\/kv66\/revers_in.mp3\"}\n self.SoundNames[\"rcu_out\"] = {\"subway_trains\/ezh3\/kv66\/revers_out.mp3\"}\n self.SoundNames[\"rcu_on\"] = {\"subway_trains\/ezh3\/kv66\/rcu_on.mp3\",\"subway_trains\/ezh3\/kv66\/rcu_on2.mp3\"}\n self.SoundNames[\"rcu_off\"] = \"subway_trains\/ezh3\/kv66\/rcu_off.mp3\"\n self.SoundPositions[\"ezh3_revers_0-f\"] = {80,1e9,Vector(458.00,-23,-6.40)}\n self.SoundPositions[\"ezh3_revers_f-0\"] = self.SoundPositions[\"ezh3_revers_0-f\"]\n self.SoundPositions[\"ezh3_revers_0-b\"] = self.SoundPositions[\"ezh3_revers_0-f\"]\n self.SoundPositions[\"ezh3_revers_b-0\"] = self.SoundPositions[\"ezh3_revers_0-f\"]\n self.SoundPositions[\"revers_in\"] = self.SoundPositions[\"ezh3_revers_0-f\"]\n self.SoundPositions[\"revers_out\"] = self.SoundPositions[\"ezh3_revers_0-f\"]\n self.SoundPositions[\"rcu_on\"] = self.SoundPositions[\"ezh3_revers_0-f\"]\n self.SoundPositions[\"rcu_off\"] = self.SoundPositions[\"rcu_on\"]\n self.SoundPositions[\"rcu_in\"] = self.SoundPositions[\"rcu_on\"]\n self.SoundPositions[\"rcu_out\"] = self.SoundPositions[\"rcu_on\"]\n\n self.SoundNames[\"kr_left\"] = \"subway_trains\/ezh3\/controller\/krishechka_left.mp3\"\n self.SoundNames[\"kr_right\"] = \"subway_trains\/ezh3\/controller\/krishechka_right.mp3\"\n\n self.SoundNames[\"switch_off\"] = {\n \"subway_trains\/717\/switches\/tumbler_slim_off1.mp3\",\n \"subway_trains\/717\/switches\/tumbler_slim_off2.mp3\",\n \"subway_trains\/717\/switches\/tumbler_slim_off3.mp3\",\n \"subway_trains\/717\/switches\/tumbler_slim_off4.mp3\",\n }\n self.SoundNames[\"switch_on\"] = {\n \"subway_trains\/717\/switches\/tumbler_slim_on1.mp3\",\n \"subway_trains\/717\/switches\/tumbler_slim_on2.mp3\",\n \"subway_trains\/717\/switches\/tumbler_slim_on3.mp3\",\n \"subway_trains\/717\/switches\/tumbler_slim_on4.mp3\",\n }\n\n self.SoundNames[\"switchbl_off\"] = {\n \"subway_trains\/717\/switches\/tumbler_fatb_off1.mp3\",\n \"subway_trains\/717\/switches\/tumbler_fatb_off2.mp3\",\n \"subway_trains\/717\/switches\/tumbler_fatb_off3.mp3\",\n }\n self.SoundNames[\"switchbl_on\"] = {\n \"subway_trains\/717\/switches\/tumbler_fatb_on1.mp3\",\n \"subway_trains\/717\/switches\/tumbler_fatb_on2.mp3\",\n \"subway_trains\/717\/switches\/tumbler_fatb_on3.mp3\",\n }\n\n self.SoundNames[\"button1_off\"] = {\n \"subway_trains\/ezh3\/switches\/button_off1.mp3\",\n \"subway_trains\/ezh3\/switches\/button_off2.mp3\",\n }\n self.SoundNames[\"button1_on\"] = {\n \"subway_trains\/ezh3\/switches\/button_on1.mp3\",\n \"subway_trains\/ezh3\/switches\/button_on2.mp3\",\n }\n self.SoundNames[\"button2_off\"] = {\n \"subway_trains\/ezh3\/switches\/button_off3.mp3\",\n \"subway_trains\/ezh3\/switches\/button_off4.mp3\",\n }\n self.SoundNames[\"button2_on\"] = {\n \"subway_trains\/ezh3\/switches\/button_on3.mp3\",\n \"subway_trains\/ezh3\/switches\/button_on4.mp3\",\n }\n self.SoundNames[\"button3_off\"] = {\n \"subway_trains\/ezh3\/switches\/button_off6.mp3\",\n \"subway_trains\/ezh3\/switches\/button_off5.mp3\",\n }\n self.SoundNames[\"button3_on\"] = {\n \"subway_trains\/ezh3\/switches\/button_on5.mp3\",\n \"subway_trains\/ezh3\/switches\/button_on6.mp3\",\n }\n\n self.SoundNames[\"uava_reset\"] = {\n \"subway_trains\/common\/uava\/uava_reset1.mp3\",\n \"subway_trains\/common\/uava\/uava_reset2.mp3\",\n \"subway_trains\/common\/uava\/uava_reset4.mp3\",\n }\n self.SoundPositions[\"uava_reset\"] = {80,1e9,Vector(449+7.7,56.0,-10.24349),0.6}\n self.SoundNames[\"gv_f\"] = {\"subway_trains\/ezh3\/kv66\/rcu_on.mp3\",\"subway_trains\/ezh3\/kv66\/rcu_on2.mp3\"}\n self.SoundNames[\"gv_b\"] = \"subway_trains\/ezh3\/kv66\/rcu_off.mp3\"\n self.SoundPositions[\"gv_f\"] = {80,1e2,Vector(120,62.0+0.0,-60),0.5}\n self.SoundPositions[\"gv_b\"] = {80,1e2,Vector(120,62.0+0.0,-60),0.5}\n\n self.SoundNames[\"disconnect_valve\"] = \"subway_trains\/common\/switches\/pneumo_disconnect_switch.mp3\"\n\n\n\n self.SoundNames[\"kv70_fix_on\"] = {\"subway_trains\/717\/kv70\/kv70_fix_on1.mp3\",\"subway_trains\/717\/kv70\/kv70_fix_on2.mp3\"}\n self.SoundNames[\"kv70_fix_off\"] = {\"subway_trains\/717\/kv70\/kv70_fix_off1.mp3\",\"subway_trains\/717\/kv70\/kv70_fix_off2.mp3\"}\n self.SoundNames[\"kv40_0_t1\"] = {\"subway_trains\/ezh\/kv40_2\/0_t1.mp3\"}\n self.SoundNames[\"kv40_t1_0\"] = {\"subway_trains\/ezh\/kv40_2\/t1_0.mp3\"}\n self.SoundNames[\"kv40_t1_t1a\"] = {\"subway_trains\/ezh\/kv40_2\/t1_t1a.mp3\"}\n self.SoundNames[\"kv40_t1a_t1\"] = {\"subway_trains\/ezh\/kv40_2\/t1a_t1.mp3\"}\n self.SoundNames[\"kv40_t1a_t2\"] = {\"subway_trains\/ezh\/kv40_2\/t1a_t2.mp3\"}\n self.SoundNames[\"kv40_t2_t1a\"] = {\"subway_trains\/ezh\/kv40_2\/t2_t1a.mp3\"}\n self.SoundNames[\"kv40_0_x1\"] = {\"subway_trains\/ezh\/kv40_2\/0_x1_2.mp3\"}\n self.SoundNames[\"kv40_x1_0\"] = {\"subway_trains\/ezh\/kv40_2\/x1_0.mp3\"}\n self.SoundNames[\"kv40_x1_x2\"] = {\"subway_trains\/ezh\/kv40_2\/x1_x2.mp3\"}\n self.SoundNames[\"kv40_x2_x1\"] = {\"subway_trains\/ezh\/kv40_2\/x2_x1.mp3\"}\n self.SoundNames[\"kv40_x2_x3\"] = {\"subway_trains\/ezh\/kv40_2\/x2_x3.mp3\"}\n self.SoundNames[\"kv40_x3_x2\"] = {\"subway_trains\/ezh\/kv40_2\/x3_x2.mp3\"}\n self.SoundPositions[\"kv70_fix_on\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv70_fix_off\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_0_t1\"] = \t\t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv70_t1_0_fix\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_t1_0\"] = \t\t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_t1_t1a\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_t1a_t1\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_t1a_t2\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_t2_t1a\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_0_x1\"] = \t\t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_x1_0\"] = \t\t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_x1_x2\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_x2_x1\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_x2_x3\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n self.SoundPositions[\"kv40_x3_x2\"] = \t{100,1e9,Vector(458.00,-23,-6),1}\n\n self.SoundNames[\"rcav_0-2\"] = {\"subway_trains\/ezh3\/rc_ars\/0-2.mp3\"}\n self.SoundNames[\"rcav_2-0\"] = {\"subway_trains\/ezh3\/rc_ars\/2-0.mp3\"}\n\n self.SoundNames[\"ring\"] = {loop=0.05,\"subway_trains\/502\/ring_ksaup.wav\"}\n self.SoundPositions[\"ring\"] = {120,1e9,Vector(410,-40,35),0.35}\n\n self.SoundNames[\"ring2\"] = {\"subway_trains\/717\/ring\/ring_start.wav\",\"subway_trains\/717\/ring\/ring_loop.wav\",\"subway_trains\/717\/ring\/ring_end.wav\"}\n self.SoundPositions[\"ring2\"] = self.SoundPositions[\"ring\"]\n\n self.SoundNames[\"vpr\"] = {loop=0.8,\"subway_trains\/common\/other\/radio\/vpr_start.wav\",\"subway_trains\/common\/other\/radio\/vpr_loop.wav\",\"subway_trains\/common\/other\/radio\/vpr_off.wav\"}\n self.SoundPositions[\"vpr\"] = {60,1e9,Vector(412,-49 ,61),0.05}\n\n self.SoundNames[\"cab_door_open\"] = \"subway_trains\/common\/door\/cab\/door_open.mp3\"\n self.SoundNames[\"cab_door_close\"] = \"subway_trains\/common\/door\/cab\/door_close.mp3\"\n\n self.SoundNames[\"parking_brake_rolling\"] = {\"subway_trains\/ezh3\/parking_brake_rolling1.mp3\",\"subway_trains\/ezh3\/parking_brake_rolling2.mp3\",\"subway_trains\/ezh3\/parking_brake_rolling3.mp3\",\"subway_trains\/ezh3\/parking_brake_rolling4.mp3\"}\n self.SoundPositions[\"parking_brake_rolling\"] = {65,1e9,Vector(449.118378+7.6,33.493385,-14.713276),0.1}\n self.SoundNames[\"av8_on\"] = {\"subway_trains\/common\/switches\/av8\/av8_on.mp3\",\"subway_trains\/common\/switches\/av8\/av8_on2.mp3\"}\n self.SoundNames[\"av8_off\"] = {\"subway_trains\/common\/switches\/av8\/av8_off.mp3\",\"subway_trains\/common\/switches\/av8\/av8_off2.mp3\"}\n self.SoundPositions[\"av8_on\"] = {100,1e9,Vector(405,40,30)}\n self.SoundPositions[\"av8_off\"] = {100,1e9,Vector(405,40,30)}\n\n self.SoundNames[\"vu22_on\"] = {\"subway_trains\/ezh3\/vu\/vu22_on1.mp3\", \"subway_trains\/ezh3\/vu\/vu22_on2.mp3\", \"subway_trains\/ezh3\/vu\/vu22_on3.mp3\"}\n self.SoundNames[\"vu22_off\"] = {\"subway_trains\/ezh3\/vu\/vu22_off1.mp3\", \"subway_trains\/ezh3\/vu\/vu22_off2.mp3\", \"subway_trains\/ezh3\/vu\/vu22_off3.mp3\"}\n self.SoundNames[\"vu223_on\"] = {\"subway_trains\/common\/switches\/vu22\/vu22_3_on.mp3\"}\n self.SoundNames[\"vu223_off\"] = {\"subway_trains\/common\/switches\/vu22\/vu22_3_off.mp3\"}\n\n --\u041a\u0440\u0430\u043d\u044b\n --\u041a\u0440\u0430\u043d\u044b\n self.SoundNames[\"brake_f\"] = {\"subway_trains\/common\/pneumatic\/vz_brake_on2.mp3\",\"subway_trains\/common\/pneumatic\/vz_brake_on3.mp3\",\"subway_trains\/common\/pneumatic\/vz_brake_on4.mp3\"}\n self.SoundPositions[\"brake_f\"] = {50,1e9,Vector(317-8,0,-82),0.13}\n self.SoundNames[\"brake_b\"] = self.SoundNames[\"brake_f\"]\n self.SoundPositions[\"brake_b\"] = {50,1e9,Vector(-317+0,0,-82),0.13}\n self.SoundNames[\"release1\"] = {loop=true,\"subway_trains\/common\/pneumatic\/release_0.wav\"}\n self.SoundPositions[\"release1\"] = {350,1e9,Vector(-183,0,-70),1}\n self.SoundNames[\"release2\"] = {loop=true,\"subway_trains\/common\/pneumatic\/release_low.wav\"}\n self.SoundPositions[\"release2\"] = {350,1e9,Vector(-183,0,-70),0.4}\n\n self.SoundNames[\"front_isolation\"] = {loop=true,\"subway_trains\/common\/pneumatic\/isolation_leak.wav\"}\n self.SoundPositions[\"front_isolation\"] = {300,1e9,Vector(452, 0,-63),1}\n self.SoundNames[\"rear_isolation\"] = {loop=true,\"subway_trains\/common\/pneumatic\/isolation_leak.wav\"}\n self.SoundPositions[\"rear_isolation\"] = {300,1e9,Vector(-456, 0,-63),1}\n\n self.SoundNames[\"crane013_brake2\"] = {loop=true,\"subway_trains\/common\/pneumatic\/013_brake2.wav\"}\n self.SoundPositions[\"crane013_brake2\"] = {80,1e9,Vector(456.55,-52.55,-4.5),0.86}\n self.SoundNames[\"crane334_brake_high\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_brake.wav\"}\n self.SoundPositions[\"crane334_brake_high\"] = {80,1e9,Vector(456.55,-52.55,-4.5),0.85}\n self.SoundNames[\"crane334_brake_low\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_brake_slow.wav\"}\n self.SoundPositions[\"crane334_brake_low\"] = {80,1e9,Vector(456.55,-52.55,-4.5),0.75}\n self.SoundNames[\"crane334_brake_2\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_brake_slow.wav\"}\n self.SoundPositions[\"crane334_brake_2\"] = {80,1e9,Vector(456.55,-52.55,-4.5),0.85}\n self.SoundNames[\"crane334_brake_eq_high\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_release_reservuar.wav\"}\n self.SoundPositions[\"crane334_brake_eq_high\"] = {80,1e9,Vector(456.55,-52.55,-70),0.45}\n self.SoundNames[\"crane334_brake_eq_low\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_brake_slow2.wav\"}\n self.SoundPositions[\"crane334_brake_eq_low\"] = {80,1e9,Vector(456.55,-52.55,-70),0.45}\n self.SoundNames[\"crane334_release\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_release3.wav\"}\n self.SoundPositions[\"crane334_release\"] = {80,1e9,Vector(456.55,-52.55,-4.5),0.2}\n self.SoundNames[\"crane334_release_2\"] = {loop=true,\"subway_trains\/common\/pneumatic\/334_release2.wav\"}\n self.SoundPositions[\"crane334_release_2\"] = {80,1e9,Vector(456.55,-52.55,-4.5),0.2}\n\n self.SoundNames[\"valve_brake\"] = {loop=true,\"subway_trains\/common\/pneumatic\/epv_loop.wav\"}\n self.SoundPositions[\"valve_brake\"] = {400,1e9,Vector(464.40,24.4,-50),1}\n\n --self.SoundNames[\"emer_brake\"] = {loop=0.8,\"subway_trains\/common\/pneumatic\/autostop_start.wav\",\"subway_trains\/common\/pneumatic\/autostop_loop.wav\", \"subway_trains\/common\/pneumatic\/autostop_end.wav\"}\n self.SoundNames[\"emer_brake\"] = {loop=true,\"subway_trains\/common\/pneumatic\/autostop_loop.wav\"}\n self.SoundNames[\"emer_brake2\"] = {loop=true,\"subway_trains\/common\/pneumatic\/autostop_loop_2.wav\"}\n self.SoundPositions[\"emer_brake\"] = {600,1e9,Vector(380,-65,-75)}\n self.SoundPositions[\"emer_brake2\"] = self.SoundPositions[\"emer_brake\"]\n\n self.SoundNames[\"pneumo_TL_open\"] = {\n \"subway_trains\/common\/334\/334_open.mp3\",\n }\n self.SoundNames[\"pneumo_TL_open_background\"] = {\n \"subway_trains\/common\/334\/334_open_pipeinside.mp3\",\n }\n self.SoundPositions[\"pneumo_TL_open_background\"] = {180,1e9,Vector(456.55,-52.57,-55),0.2}\n\n self.SoundNames[\"pneumo_TL_disconnect\"] = {\n \"subway_trains\/common\/334\/334_close.mp3\",\n }\n self.SoundNames[\"pneumo_BL_disconnect\"] = {\n \"subway_trains\/common\/334\/334_close.mp3\",\n }\n\n self.SoundNames[\"horn\"] = {loop=0.8,\"subway_trains\/common\/pneumatic\/horn\/horn3_start.wav\",\"subway_trains\/common\/pneumatic\/horn\/horn3_loop.wav\", \"subway_trains\/common\/pneumatic\/horn\/horn3_end.wav\"}\n self.SoundPositions[\"horn\"] = {1100,1e9,Vector(450,-20,-55)}\n\n --DOORS\n self.SoundNames[\"vdol_on\"] = {\n \"subway_trains\/common\/pneumatic\/door_valve\/VDO_on.mp3\",\n \"subway_trains\/common\/pneumatic\/door_valve\/VDO2_on.mp3\",\n }\n self.SoundNames[\"vdol_off\"] = {\n \"subway_trains\/common\/pneumatic\/door_valve\/VDO_off.mp3\",\n \"subway_trains\/common\/pneumatic\/door_valve\/VDO2_off.mp3\",\n }\n self.SoundPositions[\"vdol_on\"] = {100,1e9,Vector(410,20,-45)}\n self.SoundPositions[\"vdol_off\"] = {100,1e9,Vector(410,20,-45)}\n self.SoundNames[\"vdor_on\"] = self.SoundNames[\"vdol_on\"]\n self.SoundNames[\"vdor_off\"] = self.SoundNames[\"vdol_off\"]\n self.SoundPositions[\"vdor_on\"] = self.SoundPositions[\"vdol_on\"]\n self.SoundPositions[\"vdor_off\"] = self.SoundPositions[\"vdol_off\"]\n self.SoundNames[\"vdz_on\"] = {\n \"subway_trains\/common\/pneumatic\/door_valve\/VDZ_on.mp3\",\n \"subway_trains\/common\/pneumatic\/door_valve\/VDZ2_on.mp3\",\n \"subway_trains\/common\/pneumatic\/door_valve\/VDZ3_on.mp3\",\n }\n self.SoundNames[\"vdz_off\"] = {\n \"subway_trains\/common\/pneumatic\/door_valve\/VDZ_off.mp3\",\n \"subway_trains\/common\/pneumatic\/door_valve\/VDZ2_off.mp3\",\n \"subway_trains\/common\/pneumatic\/door_valve\/VDZ3_off.mp3\",\n }\n self.SoundPositions[\"vdz_on\"] = {100,1e9,Vector(410,20,-45)}\n self.SoundPositions[\"vdz_off\"] = {100,1e9,Vector(410,20,-45)}\n\n self.SoundNames[\"kk_off\"] = \"subway_trains\/common\/pneumatic\/ak11b_off2.mp3\"\n self.SoundNames[\"kk_on\"] = \"subway_trains\/common\/pneumatic\/ak11b_on2.mp3\"\n self.SoundPositions[\"kk_on\"] = {100,1e9,Vector(407,-55,-5),0.3}\n self.SoundPositions[\"kk_off\"] = {100,1e9,Vector(407,-55,-5),0.3}\n for i=0,3 do\n for k=0,1 do\n self.SoundNames[\"door\"..i..\"x\"..k..\"r\"] = {\"subway_trains\/common\/door\/door_roll.wav\",loop=true}\n self.SoundPositions[\"door\"..i..\"x\"..k..\"r\"] = {150,1e9,GetDoorPosition(i,k),0.11}\n self.SoundNames[\"door\"..i..\"x\"..k..\"o\"] = {\"subway_trains\/common\/door\/door_open_end5.mp3\",\"subway_trains\/common\/door\/door_open_end6.mp3\",\"subway_trains\/common\/door\/door_open_end7.mp3\"}\n self.SoundPositions[\"door\"..i..\"x\"..k..\"o\"] = {350,1e9,GetDoorPosition(i,k),2}\n self.SoundNames[\"door\"..i..\"x\"..k..\"c\"] = {\"subway_trains\/common\/door\/door_close_end.mp3\",\"subway_trains\/common\/door\/door_close_end2.mp3\",\"subway_trains\/common\/door\/door_close_end3.mp3\",\"subway_trains\/common\/door\/door_close_end4.mp3\",\"subway_trains\/common\/door\/door_close_end5.mp3\"}\n self.SoundPositions[\"door\"..i..\"x\"..k..\"c\"] = {400,1e9,GetDoorPosition(i,k),2}\n end\n end\n for k,v in ipairs(self.AnnouncerPositions) do\n self.SoundNames[\"announcer_noise1_\"..k] = {loop=true,\"subway_announcers\/upo\/noiseS1.wav\"}\n self.SoundPositions[\"announcer_noise1_\"..k] = {v[2] or 300,1e9,v[1],v[3]*0.2}\n self.SoundNames[\"announcer_noise2_\"..k] = {loop=true,\"subway_announcers\/upo\/noiseS2.wav\"}\n self.SoundPositions[\"announcer_noise2_\"..k] = {v[2] or 300,1e9,v[1],v[3]*0.2}\n self.SoundNames[\"announcer_noise3_\"..k] = {loop=true,\"subway_announcers\/upo\/noiseS3.wav\"}\n self.SoundPositions[\"announcer_noise3_\"..k] = {v[2] or 300,1e9,v[1],v[3]*0.2}\n self.SoundNames[\"announcer_noiseW\"..k] = {loop=true,\"subway_announcers\/upo\/noiseW.wav\"}\n self.SoundPositions[\"announcer_noiseW\"..k] = {v[2] or 300,1e9,v[1],v[3]*0.2}\n end\n\n self.SoundNames[\"RKR\"] = \"subway_trains\/common\/pneumatic\/rkr2.mp3\"\n self.SoundPositions[\"RKR\"] = {330,1e9,Vector(-27,-40,-66),0.22}\n self.SoundNames[\"PN2end\"] = {\"subway_trains\/common\/pneumatic\/vz2_end.mp3\",\"subway_trains\/common\/pneumatic\/vz2_end_2.mp3\",\"subway_trains\/common\/pneumatic\/vz2_end_3.mp3\",\"subway_trains\/common\/pneumatic\/vz2_end_4.mp3\"}\n self.SoundPositions[\"PN2end\"] = {350,1e9,Vector(-183,0,-70),0.3}\nend\n\nfunction ENT:InitializeSystems()\n\n -- \u042d\u043b\u0435\u043a\u0442\u0440\u043e\u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0415 (\u0410\u0420\u0421)\n self:LoadSystem(\"Electric\",\"81_502_Electric\")\n self.Electric:TriggerInput(\"Type\",self.Electric.NVL)\n\n -- \u0422\u043e\u043a\u043e\u043f\u0440\u0438\u0451\u043c\u043d\u0438\u043a\n self:LoadSystem(\"TR\",\"TR_3B\")\n -- \u042d\u043b\u0435\u043a\u0442\u0440\u043e\u0442\u044f\u0433\u043e\u0432\u044b\u0435 \u0434\u0432\u0438\u0433\u0430\u0442\u0435\u043b\u0438\n self:LoadSystem(\"Engines\",\"DK_108D\")\n\n -- \u0420\u0435\u0437\u0438\u0441\u0442\u043e\u0440\u044b \u0434\u043b\u044f \u0440\u0435\u043e\u0441\u0442\u0430\u0442\u0430\/\u043f\u0443\u0441\u043a\u043e\u0432\u044b\u0445 \u0441\u043e\u043f\u0440\u043e\u0442\u0438\u0432\u043b\u0435\u043d\u0438\u0439\n self:LoadSystem(\"KF_47A\",\"81_703_KF_47A\")\n -- \u0420\u0435\u0437\u0438\u0441\u0442\u043e\u0440\u044b \u0434\u043b\u044f \u043e\u0441\u043b\u0430\u0431\u043b\u0435\u043d\u0438\u044f \u0432\u043e\u0437\u0431\u0443\u0436\u0434\u0435\u043d\u0438\u044f\n self:LoadSystem(\"KF_50A\")\n -- \u042f\u0449\u0438\u043a \u0441 \u043f\u0440\u0435\u0434\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u0435\u043b\u044f\u043c\u0438\n self:LoadSystem(\"YAP_57\")\n\n -- \u0420\u0435\u0437\u0438\u0441\u0442\u043e\u0440\u044b \u0434\u043b\u044f \u0446\u0435\u043f\u0435\u0439 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\n --self:LoadSystem(\"YAS_44V\")\n self:LoadSystem(\"Reverser\",\"PR_722D\")\n -- \u0420\u0435\u043e\u0441\u0442\u0430\u0442\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440 \u0434\u043b\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0443\u0441\u043a\u043e\u0432\u044b\u043c\u0438 \u0441\u043e\u043f\u0440\u043e\u0442\u0438\u0432\u043b\u0435\u043d\u0438\u044f\n self:LoadSystem(\"RheostatController\",\"EKG_17A\")\n -- \u0413\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b\u044c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0439\n self:LoadSystem(\"PositionSwitch\",\"EKG_18A\")\n -- \u041a\u0443\u043b\u0430\u0447\u043a\u043e\u0432\u044b\u0439 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440\n self:LoadSystem(\"KV\",\"KV_55\")\n -- \u041f\u0430\u043d\u0435\u043b\u044c \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\n self:LoadSystem(\"PRU_502\")\n\n\n -- \u042f\u0449\u0438\u043a\u0438 \u0441 \u0440\u0435\u043b\u0435 \u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0440\u0430\u043c\u0438\n self:LoadSystem(\"LK_755A\")\n self:LoadSystem(\"YAR_13A\")\n --self:LoadSystem(\"YAR_27\")\n self:LoadSystem(\"YAK_36\")\n self:LoadSystem(\"YAK_31A\")\n self:LoadSystem(\"YAS_44V\")\n self:LoadSystem(\"YARD_2\")\n self:LoadSystem(\"PR_109A\")\n\n -- \u041f\u043d\u0435\u0432\u043c\u043e\u0441\u0438\u0441\u0442\u0435\u043c\u0430 81-703\n self:LoadSystem(\"Pneumatic\",\"81_703_Pneumatic\")\n self:LoadSystem(\"BD2\",\"Relay\",\"\")\n -- \u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0415\n self:LoadSystem(\"Panel\",\"81_502_Panel\")\n -- Everything else\n self:LoadSystem(\"Battery\")\n self:LoadSystem(\"Horn\")\n\n self:LoadSystem(\"Announcer\",\"81_71_Announcer\", \"AnnouncementsUPO\")\n self:LoadSystem(\"UPO\",\"81_71_UPO\")\n\n self:LoadSystem(\"ALSCoil\")\n self:LoadSystem(\"KSAUP\",\"81_502_KSAUP\")\n self:LoadSystem(\"IPAV\")\n self:LoadSystem(\"MARS\",\"81_502_ARS\")\n self:LoadSystem(\"BPS\",\"81_502_BPS\")\n\n self:LoadSystem(\"RouteNumber\",\"81_71_RouteNumber\",3)\n\n --self:LoadSystem(\"ALS_ARS\",\"ARS_MP\")\n\n --self:LoadSystem(\"IGLA_CBKI\",\"IGLA_CBKI2\")\n --self:LoadSystem(\"IGLA_PCBK\")\nend\n\nfunction ENT:PostInitializeSystems()\n self.Electric:TriggerInput(\"Type\",self.Electric.NVL)\n if SERVER and (not Metrostroi.MapHasFullSupport or not Metrostroi.MapHasFullSupport(\"auto\")) then\n self.KSAUP:TriggerInput(\"CommandDoorsLeft\",1)\n self.KSAUP:TriggerInput(\"CommandDoorsRight\",1)\n end\nend\n\nENT.SubwayTrain = {\n Type = \"E\",\n Name = \"Ema\",\n Manufacturer = \"LVZ\",\n WagType = 0,\n ALS = {\n NoEPK = true,\n HaveAutostop = true,\n TwoToSix = false,\n RSAs325Hz = false,\n Aproove0As325Hz = true,\n },\n IPAV = {\n Systems = {\"KSAUP\"}\n },\n EKKType = 703,\n NoFrontEKK=true,\n}\nENT.NumberRanges = {{6047,6065},{6338,6397},{6558,6632},{6966,7201}}\n---[[\nENT.Spawner = {\n model = {\n \"models\/metrostroi_train\/81-502\/81-502.mdl\",\n \"models\/metrostroi_train\/81-502\/ema_salon.mdl\",\n \"models\/metrostroi_train\/81-502\/mirrors_ema.mdl\",\n \"models\/metrostroi_train\/81-502\/ema502_cabine.mdl\",\n \"models\/metrostroi_train\/81-502\/sun_protectors.mdl\",\n \"models\/metrostroi_train\/81-502\/controller_a.mdl\",\n \"models\/metrostroi_train\/81-502\/panel_b.mdl\",\n {\"models\/metrostroi_train\/81-508\/81-508_underwagon.mdl\",pos=Vector(0,1,-18)}\n },\n spawnfunc = function(i,tbls,tblt)\n local WagNum = tbls.WagNum\n if tbls.EWagons and i==1 then\n tbls.EID = 2+math.floor(math.random()*(WagNum-2))\n end\n if 11 and (tbls.EID==i or math.random()>0.9)) and \"gmod_subway_81-703_int\" or \"gmod_subway_81-501\"\n else\n return \"gmod_subway_81-502\"\n end\n end,\n interim = \"gmod_subway_81-501\",\n func = function(ent,i,maxi)\n if ent:GetClass() == \"gmod_subway_81-502\" then\n ent.VU:TriggerInput(\"Set\",1)\n ent.UAVA:TriggerInput(\"Set\",0)\n ent.Plombs.VU = nil\n ent.Plombs.UAVA = true\n else\n ent.VU:TriggerInput(\"Set\",0)\n ent.UAVA:TriggerInput(\"Set\",1)\n ent.Plombs.VU = true\n ent.Plombs.UAVA = nil\n end\n end,\n Metrostroi.Skins.GetTable(\"Texture\",\"Texture\",Texture,\"train\"),\n Metrostroi.Skins.GetTable(\"PassTexture\",\"PassTexture\",PassTexture,\"pass\"),\n Metrostroi.Skins.GetTable(\"CabTexture\",\"CabTexture\",CabTexture,\"cab\"),\n {\"EMAType\",\"Spawner.502.EMAType\",\"List\",{\"Spawner.502.EMAType.NVL\",\"Spawner.502.EMAType.KVLOld\",\"Spawner.502.EMAType.KVLNew\"},nil,function(ent,val,rot)\n if ent:GetClass():find(\"703\") then\n -- Cross connections in train wires\n ent.TrainWireInverts = {\n [15] = true,\n }\n ent:SetNW2String(\"Texture\",\"Def_703SPB\")\n end\n if val == 1 then ent.Electric:TriggerInput(\"Type\",ent.Electric.NVL) end\n if val > 1 then ent.Electric:TriggerInput(\"Type\",ent.Electric.KVL) end\n ent.EMAType = val\n ent:SetNW2Int(\"EMAType\",ent.EMAType)\n end},\n {\"SpawnMode\",\"Spawner.Common.SpawnMode\",\"List\",{\"Spawner.Common.SpawnMode.Full\",\"Spawner.Common.SpawnMode.Deadlock\",\"Spawner.Common.SpawnMode.NightDeadlock\",\"Spawner.Common.SpawnMode.Depot\"}, nil,function(ent,val,rot,i,wagnum,rclk)\n if rclk then return end\n if ent._SpawnerStarted~=val then\n ent.VB:TriggerInput(\"Set\",val<=2 and 1 or 0)\n ent.AV:TriggerInput(\"Set\",val<=2 and 1 or 0)\n if ent.KSAUP then\n local first = i==1 or _LastSpawner~=CurTime()\n\n ent.VU2:TriggerInput(\"Set\",(val<=2 and first) and 1 or 0)\n --ent.VR:TriggerInput(\"Set\",val<=2 and 1 or 0)\n ent.R_UPO:TriggerInput(\"Set\",val<=2 and 1 or 0)\n ent.VMK:TriggerInput(\"Set\",(val==1 and first) and 1 or 0)\n ent.ARS:TriggerInput(\"Set\",(val==1 and ent.Plombs.RCARS) and 1 or 0)\n ent.VBA:TriggerInput(\"Set\",(val==1 and ent.Plombs.RCAV3) and 1 or 0)\n ent.ALS:TriggerInput(\"Set\",val==1 and 1 or 0)\n ent.VKF:TriggerInput(\"Set\",val==3 and 1 or 0)\n ent.VSOSD:TriggerInput(\"Set\",(val==1 and first) and 1 or 0)\n ent.Headlights:TriggerInput(\"Set\",val==1 and 1 or 0)\n _LastSpawner=CurTime()\n ent.CabinDoor = val==4 and first\n ent.PassengerDoor = val==4\n ent.RearDoor = val==4\n else\n ent.VU2:TriggerInput(\"Set\",0)\n ent.FrontDoor = val==4\n ent.RearDoor = val==4\n end\n ent.GV:TriggerInput(\"Set\",val<4 and 1 or 0)\n ent._SpawnerStarted = val\n end\n if val==1 then ent.KO:TriggerInput(\"Close\",1) else ent.KO:TriggerInput(\"Open\",1) end\n ent.Pneumatic.TrainLinePressure = val==3 and math.random()*4 or val==2 and 4.5+math.random()*3 or 7.6+math.random()*0.6\n if val==4 then ent.Pneumatic.BrakeLinePressure = 5.2 end\n end},\n {\"EWagons\",\"Spawner.502.EWagons\",\"Boolean\"},\n}\n--]]","avg_line_length":53.3448873484,"max_line_length":294,"alphanum_fraction":0.6866146849} +{"size":2749,"ext":"lua","lang":"Lua","max_stars_count":51.0,"content":"--[[\n\t\u00a9 CloudSixteen.com do not share, re-distribute or modify\n\twithout permission of its author (kurozael@gmail.com).\n\n\tClockwork was created by Conna Wiles (also known as kurozael.)\n\thttp:\/\/cloudsixteen.com\/license\/clockwork.html\n--]]\n\nDEFINE_BASECLASS(\"base_gmodentity\");\n\nENT.Type = \"anim\";\nENT.Author = \"kurozael\";\nENT.PrintName = \"Gear\";\nENT.Spawnable = false;\nENT.AdminSpawnable = false;\nENT.UsableInVehicle = true;\n\n-- Called when the data tables are setup.\nfunction ENT:SetupDataTables()\n\tself:DTVar(\"Int\", 0, \"Index\");\nend;\n\n-- A function to get the entity's real position.\nfunction ENT:GetRealPosition()\n\tlocal offsetVector = self:GetOffsetVector();\n\tlocal offsetAngle = self:GetOffsetAngle();\n\tlocal itemTable = self:GetItemTable();\n\tlocal player = self:GetPlayer();\n\tlocal bone = player:LookupBone(self:GetBone());\n\t\n\tif (offsetVector and offsetAngle and player and bone) then\n\t\tlocal position, angles = player:GetBonePosition(bone);\n\t\tlocal ragdollEntity = player:GetRagdollEntity();\n\t\t\n\t\tif (itemTable.AdjustAttachmentOffsetInfo) then\n\t\t\tlocal info = {\n\t\t\t\toffsetVector = offsetVector,\n\t\t\t\toffsetAngle = offsetAngle\n\t\t\t};\n\t\t\t\n\t\t\titemTable:AdjustAttachmentOffsetInfo(player, self, info);\n\t\t\toffsetVector = info.offsetVector;\n\t\t\toffsetAngle = info.offsetAngle;\n\t\tend;\n\t\t\n\t\tif (ragdollEntity) then\n\t\t\tposition, angles = ragdollEntity:GetBonePosition(bone);\n\t\tend;\n\t\t\n\t\tlocal x = angles:Up() * offsetVector.x;\n\t\tlocal y = angles:Right() * offsetVector.y;\n\t\tlocal z = angles:Forward() * offsetVector.z;\n\t\t\n\t\tangles:RotateAroundAxis(angles:Forward(), offsetAngle.p);\n\t\tangles:RotateAroundAxis(angles:Right(), offsetAngle.y);\n\t\tangles:RotateAroundAxis(angles:Up(), offsetAngle.r);\n\t\t\n\t\treturn position + x + y + z, angles;\n\tend;\nend;\n\n-- A function to get the entity's bone.\nfunction ENT:GetBone()\n\tlocal itemTable = self:GetItemTable();\n\treturn itemTable(\"attachmentBone\", \"\");\nend;\n\n-- A function to get the entity's item table.\nfunction ENT:GetItemTable()\n\tif (CLIENT) then\n\t\tlocal itemTable = Clockwork.entity:FetchItemTable(self);\n\t\t\n\t\tif (!itemTable) then\n\t\t\treturn Clockwork.item:FindByID(self:GetDTInt(0));\n\t\telse\n\t\t\treturn itemTable;\n\t\tend;\n\tend;\n\t\n\treturn self.cwItemTable;\nend;\n\n-- A function to get the entity's player.\nfunction ENT:GetPlayer()\n\tlocal player = self:GetOwner();\n\t\n\tif (IsValid(player) and player:IsPlayer()) then\n\t\treturn player;\n\tend;\nend;\n\n-- A function to get the entity's offset vector.\nfunction ENT:GetOffsetVector()\n\tlocal itemTable = self:GetItemTable();\n\treturn itemTable(\"attachmentOffsetVector\", Vector(0, 0, 0));\nend;\n\n-- A function to get the entity's offset angle.\nfunction ENT:GetOffsetAngle()\n\tlocal itemTable = self:GetItemTable();\n\treturn itemTable(\"attachmentOffsetAngles\", Angle(0, 0, 0));\nend;","avg_line_length":26.9509803922,"max_line_length":63,"alphanum_fraction":0.7279010549} +{"size":836,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"---\n-- CollectionSubscriber.lua - Interface to CollectionService\n--\n\nlocal CollectionService = game:GetService(\"CollectionService\")\n\nlocal CollectionSubscriber = {}\nCollectionSubscriber.__index = CollectionSubscriber\n\nfunction CollectionSubscriber.new(name)\n\tlocal self = setmetatable({}, CollectionSubscriber)\n\n\tself.Collection = name\n\n\treturn self\nend\n\nfunction CollectionSubscriber:init()\n\tif self.HandleItem then\n\t\tfor _, inst in pairs(self:get()) do\n\t\t\tself.HandleItem(inst)\n\t\tend\n\n\t\tCollectionService:GetInstanceAddedSignal(self.Collection):Connect(self.HandleItem)\n\tend\n\n\tif self.HandleItemRemoved then\n\t\tCollectionService:GetInstanceRemovedSignal(self.Collection):Connect(self.HandleItemRemoved)\n\tend\nend\n\nfunction CollectionSubscriber:get()\n\treturn CollectionService:GetTagged(self.Collection)\nend\n\nreturn CollectionSubscriber\n","avg_line_length":22.5945945946,"max_line_length":93,"alphanum_fraction":0.8122009569} +{"size":1956,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"\n--- Build back-end for CMake-based modules.\n--module(\"luarocks.build.cmake\", package.seeall)\nlocal cmake = {}\n\nlocal fs = require(\"luarocks.fs\")\nlocal util = require(\"luarocks.util\")\nlocal cfg = require(\"luarocks.cfg\")\n\n--- Driver function for the \"cmake\" build back-end.\n-- @param rockspec table: the loaded rockspec.\n-- @return boolean or (nil, string): true if no errors ocurred,\n-- nil and an error message otherwise.\nfunction cmake.run(rockspec)\n assert(type(rockspec) == \"table\")\n local build = rockspec.build\n local variables = build.variables or {}\n \n -- Pass Env variables\n variables.CMAKE_MODULE_PATH=os.getenv(\"CMAKE_MODULE_PATH\")\n variables.CMAKE_LIBRARY_PATH=os.getenv(\"CMAKE_LIBRARY_PATH\")\n variables.CMAKE_INCLUDE_PATH=os.getenv(\"CMAKE_INCLUDE_PATH\")\n\n util.variable_substitutions(variables, rockspec.variables)\n\n if not fs.execute_quiet(rockspec.variables.CMAKE, \"--help\") then\n return nil, \"'\"..rockspec.variables.CMAKE..\"' program not found. Is cmake installed? You may want to edit variables.CMAKE\"\n end\n \n -- If inline cmake is present create CMakeLists.txt from it.\n if type(build.cmake) == \"string\" then\n local cmake_handler = assert(io.open(fs.current_dir()..\"\/CMakeLists.txt\", \"w\"))\n cmake_handler:write(build.cmake)\n cmake_handler:close()\n end\n\n\n -- Execute cmake with variables.\n local args = \"\"\n if cfg.cmake_generator then\n args = args .. ' -G\"'..cfg.cmake_generator.. '\"'\n end\n for k,v in pairs(variables) do\n args = args .. ' -D' ..k.. '=\"' ..v.. '\"'\n end\n\n if not fs.execute_string(rockspec.variables.CMAKE..\" . \" ..args) then\n return nil, \"Failed cmake.\"\n end\n \n if not fs.execute_string(rockspec.variables.MAKE..\" -fMakefile\") then\n return nil, \"Failed building.\"\n end\n\n if not fs.execute_string(rockspec.variables.MAKE..\" -fMakefile install\") then\n return nil, \"Failed installing.\"\n end\n return true\nend\n\nreturn cmake\n","avg_line_length":31.5483870968,"max_line_length":128,"alphanum_fraction":0.6881390593} +{"size":6668,"ext":"lua","lang":"Lua","max_stars_count":null,"content":"local M = {}\nlocal api = vim.api\nlocal fn = vim.fn\nlocal cmd = vim.cmd\n\nlocal border_chars, win_height, win_vheight\n\nlocal preview_winid = -1\nlocal border_winid = -1\n\nlocal qfpos = require('bqf.qfpos')\n\nlocal function get_opts(qf_winid, file_winid)\n local rel_pos, abs_pos = unpack(qfpos.get_pos(qf_winid, file_winid))\n\n local qf_info = fn.getwininfo(qf_winid)[1]\n local opts = {relative = 'win', win = qf_winid, focusable = false, style = 'minimal'}\n local width, height, col, row, anchor\n if rel_pos == 'above' or rel_pos == 'below' or abs_pos == 'top' or abs_pos == 'bottom' then\n local row_pos = qf_info.winrow\n width = qf_info.width - 2\n col = 1\n if rel_pos == 'above' or abs_pos == 'top' then\n anchor = 'NW'\n height = math.min(win_height, vim.o.lines - 4 - row_pos - qf_info.height)\n row = qf_info.height + 2\n else\n anchor = 'SW'\n height = math.min(win_height, row_pos - 4)\n row = -2\n end\n elseif rel_pos == 'left' or rel_pos == 'right' or abs_pos == 'left_far' or abs_pos ==\n 'right_far' then\n if abs_pos == 'left_far' then\n width = vim.o.columns - fn.win_screenpos(2)[2] - 1\n elseif abs_pos == 'right_far' then\n width = qf_info.wincol - 4\n else\n width = api.nvim_win_get_width(file_winid) - 2\n end\n height = math.min(win_vheight, qf_info.height - 2)\n local winline = fn.winline()\n row = height >= winline and 1 or winline - height - 1\n if rel_pos == 'left' or abs_pos == 'left_far' then\n anchor = 'NW'\n col = qf_info.width + 2\n else\n anchor = 'NE'\n col = -2\n end\n else\n return {}, {}\n end\n\n if width < 1 or height < 1 then\n return {}, {}\n end\n\n local preview_opts = vim.tbl_extend('force', opts, {\n anchor = anchor,\n width = width,\n height = height,\n col = col,\n row = row\n })\n local border_opts = vim.tbl_extend('force', opts, {\n anchor = anchor,\n width = width + 2,\n height = height + 2,\n col = anchor:match('W') and col - 1 or col + 1,\n row = anchor:match('N') and row - 1 or row + 1\n })\n return preview_opts, border_opts\nend\n\nlocal function update_border_buf(border_opts, border_buf)\n local width, height = border_opts.width, border_opts.height\n local top = border_chars[5] .. border_chars[3]:rep(width - 2) .. border_chars[6]\n local mid = border_chars[1] .. (' '):rep(width - 2) .. border_chars[2]\n local bot = border_chars[7] .. border_chars[4]:rep(width - 2) .. border_chars[8]\n local lines = {top}\n for _ = 1, height - 2 do\n table.insert(lines, mid)\n end\n table.insert(lines, bot)\n if not border_buf then\n border_buf = api.nvim_create_buf(false, true)\n -- run nvim with `-M` will reset modifiable's default value to false\n vim.bo[border_buf].modifiable = true\n vim.bo[border_buf].bufhidden = 'wipe'\n end\n api.nvim_buf_set_lines(border_buf, 0, -1, 1, lines)\n return border_buf\nend\n\nfunction M.set_win_height(p_hei, p_vhei)\n win_height, win_vheight = p_hei, p_vhei\nend\n\nfunction M.update_scrollbar()\n local buf = api.nvim_win_get_buf(preview_winid)\n local border_buf = api.nvim_win_get_buf(border_winid)\n local line_count = api.nvim_buf_line_count(buf)\n\n local win_info = fn.getwininfo(preview_winid)[1]\n local topline, height = win_info.topline, win_info.height\n\n local bar_size = math.min(height, math.ceil(height * height \/ line_count))\n\n local bar_pos = math.ceil(height * topline \/ line_count)\n if bar_pos + bar_size > height then\n bar_pos = height - bar_size + 1\n end\n\n local lines = api.nvim_buf_get_lines(border_buf, 1, -2, true)\n for i = 1, #lines do\n local bar_char\n if i >= bar_pos and i < bar_pos + bar_size then\n bar_char = border_chars[#border_chars]\n else\n bar_char = border_chars[2]\n end\n local line = lines[i]\n lines[i] = fn.strcharpart(line, 0, fn.strwidth(line) - 1) .. bar_char\n end\n api.nvim_buf_set_lines(border_buf, 1, -2, 0, lines)\nend\n\nfunction M.update_title(title)\n local border_buf = api.nvim_win_get_buf(border_winid)\n local top = api.nvim_buf_get_lines(border_buf, 0, 1, 0)[1]\n local prefix = fn.strcharpart(top, 0, 3)\n local suffix = fn.strcharpart(top, fn.strwidth(title) + 3, fn.strwidth(top))\n title = ('%s%s%s'):format(prefix, title, suffix)\n api.nvim_buf_set_lines(border_buf, 0, 1, 1, {title})\nend\n\nfunction M.validate_window()\n return preview_winid > 0 and api.nvim_win_is_valid(preview_winid) and border_winid > 0 and\n api.nvim_win_is_valid(border_winid)\nend\n\nfunction M.winid()\n return preview_winid, border_winid\nend\n\nfunction M.close()\n if M.validate_window() then\n api.nvim_win_close(preview_winid, true)\n api.nvim_win_close(border_winid, true)\n end\nend\n\nfunction M.setup(opts)\n vim.validate({opts = {opts, 'table'}})\n border_chars = opts.border_chars\n win_height = tonumber(opts.win_height)\n win_vheight = tonumber(opts.win_vheight or win_height)\n vim.validate({\n border_chars = {\n border_chars, function(chars)\n return type(chars) == 'table' and #chars == 9\n end, 'a table with 9 chars'\n },\n win_height = {win_height, 'number'},\n win_vheight = {win_vheight, 'number'}\n })\n cmd('hi default link BqfPreviewFloat Normal')\n cmd('hi default link BqfPreviewBorder Normal')\nend\n\nfunction M.open(bufnr, qf_winid, file_winid)\n local preview_opts, border_opts = get_opts(qf_winid, file_winid)\n if vim.tbl_isempty(preview_opts) or vim.tbl_isempty(border_opts) then\n return -1, -1\n end\n\n local border_buf\n if M.validate_window() then\n border_buf = api.nvim_win_get_buf(border_winid)\n update_border_buf(border_opts, border_buf)\n api.nvim_win_set_config(border_winid, border_opts)\n api.nvim_win_set_config(preview_winid, preview_opts)\n else\n border_buf = update_border_buf(border_opts)\n preview_winid = api.nvim_open_win(border_buf, false, preview_opts)\n border_winid = api.nvim_open_win(border_buf, false, border_opts)\n end\n cmd(('noa call nvim_win_set_buf(%d, %d)'):format(preview_winid, bufnr))\n api.nvim_win_set_option(border_winid, 'winhighlight', 'Normal:BqfPreviewBorder')\n api.nvim_win_set_option(preview_winid, 'winhighlight', 'Normal:BqfPreviewFloat')\n return preview_winid, border_winid\nend\n\nreturn M\n","avg_line_length":34.0204081633,"max_line_length":95,"alphanum_fraction":0.6399220156} +{"size":137,"ext":"lua","lang":"Lua","max_stars_count":39.0,"content":"local lsp_config = require('lspconfig')\nlocal on_attach = require('lsp\/on_attach')\n\nlsp_config.bashls.setup({\n on_attach = on_attach\n})\n","avg_line_length":19.5714285714,"max_line_length":42,"alphanum_fraction":0.7518248175} +{"size":45327,"ext":"lua","lang":"Lua","max_stars_count":7.0,"content":"local source_doc_root=[[j:\\BM\\E66230_01\\]]\nlocal target_doc_root=[[j:\\BM\\newdoc12\\]]\n\n--[[--FOR 11g\nlocal source_doc_root='j:\\\\BM\\\\E11882_01\\\\'\nlocal target_doc_root='j:\\\\BM\\\\newdoc11\\\\'\n--]]\n\n--[[\n (c)2016-2017 by hyee, MIT license, https:\/\/github.com\/hyee\/Oracle-DB-Document-CHM-builder\n\n .hhc\/.hhk\/.hhp files are all created under the root path\n\n .hhc => Content rules(buildJson): target.db\/target.json\n .hhk => Index rules(buildIdx):\n 1. Common books => index.htm:\n
-> content,\n
->