Module:Datatable/Icons

From Dead by Daylight Wiki
Jump to navigation Jump to search
Template-info.svg Documentation

Example of adding a new Icon:

p.icons = {
	...
	["Mint Rag"] = {iconFile = "FulliconAddon mintRag.png"},
	...
}

Attention! Do not move the first item in list!
Attention 2! Use the Spacebar for padding a new line!

Retrieving Icon Filename

  • {{#Invoke:Utils|getIcon|Mint Rag}} Will simply provide the iconFile value of Mint Rag. The first parameter is the name of icon you're looking for. After calling the function you get this:

IconAddon mintRag.png


  • After entering it instead of filename like that [[File:{{#Invoke:Utils|getIcon|Mint Rag}}|128px|thumb|center]] Will result into this:
IconAddon mintRag.png
  • Since the new Assembly system to get the background along with addon icon we call assembleImage function like this: {{#Invoke:Utils|assembleImage|addon|Mint Rag|rarity=5}}
IconAddon mintRag.png


Parameters

  • iconFile - [Mandatory] property keeping the name of file and used to this purpose, right now.
  • category - [Optional] is a categorisation of game element, that can be used for various purposes. Currently there are these categories:
    • Addon
    • Item
    • Offering
    • PEBuff - Player Effect Buff
    • PEDebuff - Player Effect Debuff
    • Perk
    • SEBuff - Status Effect Buff
    • SEDebuff - Status Effect Debuff
  • padding[Top/Right/Bottom/Left] - [Optional] allows to adjust the padding around the image to avoid being too close or too far from the link.
    • Example: paddingLeft = "5px"
  • ilRes - [Optional] allows to adjust the resolution of the image (default resolution is 32px).
    • Example: ilRes = "24px"
  • assemble - [Optional] Indicates that the icon is part of icon with background.
Template-info.svg Documentation

This documentation explains how the IconLink Template works and is to be used:

Formatting

{{#Invoke:Utils|IconLink|Parameter 1}}

or

{{#Invoke:Utils|IconLink|Parameter 1|Parameter 2}}

or

{{#Invoke:Utils|IconLink|Parameter 1|Parameter 2|Parameter 3}}


Parameters

  • Parameter 1 - [Mandatory] - Name of the Icon
    • e.g. Amanita Toxin / Iridescent King / New Moon Bouquet / Chainsaw
  • Parameter 2 - [Optional] - Name of Page link
    • e.g. IconPerks / IconFavors / FulliconAddon / FulliconItems / IconHelp / IconHelpLoading / IconItems
    • Value: img - [Optional] - shows only image
    • Value: linkless - [Optional] - gives the link away and leave the icon after simple text (used for expressions that have the icon but not the dedicated page that can be redirected to)
  • Parameter 3 - [Optional] - Displayed text
    • e.g. amanitaToxin / iridescentKing / newMoonBouquet / chainsaw
  • Parameter 4 or bg - [Optional] If the icon has background option it can be set whether it should be retrieved or not
    • default value is set to true so if the icon has assembly = true set the background will be also retrieved

I.E.

  • 1-parameter version uses the variable for all three parts
  • 2-parameter version uses the second parameter is used to Page link and will display the same
    • If the second parameter is img the template shows only the image itself

Example

Formatting the Template like this

{{#Invoke:Utils|IconLink|Killer|Killers|Killer's}}

will return Killer'sIconHelpLoading killer.pngIconHelpLoading killer.pngIconHelpLoading killer.png.

{{#Invoke:Utils|IconLink|Entity}}

will return EntityIconHelp entity.pngIconHelp entity.pngIconHelp entity.png.

{{#Invoke:Utils|IconLink|Survivor|img}}

will return IconHelpLoading survivor.pngIconHelpLoading survivor.pngIconHelpLoading survivor.png.

{{#Invoke:Utils|IconLink|Survivors|Dwight Fairfield}}

will return SurvivorsIconHelpLoading survivor.pngIconHelpLoading survivor.pngIconHelpLoading survivor.png. IconLink will use Survivors as a reference to lookup the image. The link will display redirect to Dwight Fairfield page.

{{#Invoke:Utils|IconLink|Nemesis T-Type|The Nemesis|Nemesis}}

will return NemesisIconHelpLoading nemesis.pngIconHelpLoading nemesis.pngIconHelpLoading nemesis.png. The link will redirect to the second parameter, but display the third parameter.

{{#Invoke:Utils|IconLink|Movement Speed|linkless=1}}

will return Movement SpeedIconHelp movementSpeed.pngIconHelp movementSpeed.pngIconHelp movementSpeed.png.

{{#Invoke:Utils|IconLink|Iridescent Amulet}}

will return Iridescent AmuletIconAddon iridescentAmulet.pngIconAddon iridescentAmulet.pngIconAddon iridescentAmulet.png

{{#Invoke:Utils|IconLink|Iridescent Amulet|bg=false}}

will return Iridescent AmuletIconAddon iridescentAmulet.pngIconAddon iridescentAmulet.pngIconAddon iridescentAmulet.png


--BEFORE EDITTING THE PAGE:
--Use the Spacebar for padding the record, not the TABulator - fandom has visual glitch on "view" page not rendering whitespaces correctly
local p = {}
p.icons = {
    ----- Generic -----
    ["Unknown QuestionMark"] = {iconFile = "Unknown QuestionMark.png"},
    ["notFound"] =             {iconFile = "Unknown QuestionMark.png"},

    ----- Archives / Quests -----
    ["Archive"]    = {iconFile = "IconHelp archivesGeneral.png", paddingLeft = "4px"},
    ["Collection"] = {iconFile = "IconHelp archivesCollection.png", paddingLeft = "4px"},
    ["Daily"]      = {iconFile = "Umg_icons_Daily.png"},
    ["Milestone"]  = {iconFile = "Umg_icons_Milestones.png"},
    ["Quests"]     = {iconFile = "T_UI_icon_Quests.png"},
    ["Rift"]       = {iconFile = "T_UI_icon_Rift.png"},
    ["Rift Pass"]  = {iconFile = "T_UI_icon_Rift_Premium.png"},
    ["Tomes"]      = {iconFile = "T_UI_icon_Archives_Tome.png"},
    
    ----- 2v8 Classes -----
    ["Brute"]       = {iconFile = "IconClass_Brute.png"     , assembly = true},
    ["Enforcer"]    = {iconFile = "IconClass_Assassin.png"  , assembly = true},
    ["Escapist"]    = {iconFile = "IconClass_Runner.png"    , assembly = true},
    ["Fearmonger"]  = {iconFile = "IconClass_Fearmonger.png", assembly = true},
    ["Guide"]       = {iconFile = "IconClass_Mechanic.png"  , assembly = true},
    --["Meat Shield"] = {iconFile = "IconClass_MeatShield.png", assembly = true},
    ["Medic"]       = {iconFile = "IconClass_Medic.png"     , assembly = true},
    ["Scout"]       = {iconFile = "IconClass_Scout.png"     , assembly = true},
    ["Shadow"]      = {iconFile = "IconClass_Stalker.png"   , assembly = true},
    
    
    ----- 2v8 Skills -----
    ["Innate Skill (Trapper)"]      = {iconFile = "IconSkills TrapperPassive.png", assembly = true},
    ["Innate Skill (Wraith)"]       = {iconFile = "IconSkills WraithPassive.png", assembly = true},
    ["Innate Skill (Hillbilly)"]    = {iconFile = "IconSkills HillbillyPassive.png", assembly = true},
    ["Innate Skill (Nurse)"]        = {iconFile = "IconSkills NursePassive.png", assembly = true},
    ["Innate Skill (Huntress)"]     = {iconFile = "IconSkills HuntressPassive.png", assembly = true},
    ["Innate Skill (Spirit)"]       = {iconFile = "IconPowers yamaokasHaunting.png", assembly = true},
    ["Innate Skill (Legion)"]       = {iconFile = "IconPowers feralFrenzy.png", assembly = true},
    ["Innate Skill (Ghost Face)"]   = {iconFile = "IconPowers nightShroud.png", assembly = true},
    ["Innate Skill (Oni)"]          = {iconFile = "IconPowers yamaokasWrath.png", assembly = true},
    ["Innate Skill (Deathslinger)"] = {iconFile = "IconPowers theRedeemer.png", assembly = true},
    ["Innate Skill (Blight)"]       = {iconFile = "IconPowers blightedCorruption.png", assembly = true},
    ["Innate Skill (Nemesis)"]      = {iconFile = "IconPowers t-Virus.png", assembly = true},
    ["Innate Skill (Mastermind)"]   = {iconFile = "IconPowers virulentBound.png", assembly = true},
    ["Reveal Skill (Brute)"]        = {iconFile = "IconSkills RelentlessPursuit.png", assembly = true},
    ["Reveal Skill (Enforcer)"]     = {iconFile = "IconSkills RemoteRevelation.png", assembly = true},
    ["Reveal Skill (Escapist)"]     = {iconFile = "IconSkills RunnerAura.png", assembly = true},
    ["Reveal Skill (Fearmonger)"]   = {iconFile = "IconSkills HauntingPresence.png", assembly = true},
    ["Reveal Skill (Guide)"]        = {iconFile = "IconSkills MechanicAura.png", assembly = true},
    ["Reveal Skill (Medic)"]        = {iconFile = "IconSkills MedicAura.png", assembly = true},
    ["Reveal Skill (Scout)"]        = {iconFile = "IconSkills ScoutAura.png", assembly = true},
    ["Reveal Skill (Shadow)"]       = {iconFile = "IconSkills DetectPrey.png", assembly = true},
    ["Team Skill (Brute)"]          = {iconFile = "IconSkills BloodyRampage.png", assembly = true},
    ["Team Skill (Enforcer)"]       = {iconFile = "IconSkills DeadlyMark.png", assembly = true},
    ["Team Skill (Escapist)"]       = {iconFile = "IconSkills RunnerInnate.png", assembly = true},
    ["Team Skill (Fearmonger)"]     = {iconFile = "IconSkills SeparationAnxiety.png", assembly = true},
    ["Team Skill (Guide)"]          = {iconFile = "IconSkills MechanicInnate.png", assembly = true},
    ["Team Skill (Medic)"]          = {iconFile = "IconSkills MedicInnate.png", assembly = true},
    ["Team Skill (Scout)"]          = {iconFile = "IconSkills ScoutInnate.png", assembly = true},
    ["Team Skill (Shadow)"]         = {iconFile = "IconSkills SilentStrike.png", assembly = true},
    ["Unlockable Skill (Escapist)"] = {iconFile = "IconSkills SelfSufficient.png", assembly = true},
    ["Unlockable Skill (Guide)"]    = {iconFile = "IconSkills MechanicTeam.png", assembly = true},
    ["Unlockable Skill (Medic)"]    = {iconFile = "IconSkills MedicUnlock.png", assembly = true},
    ["Unlockable Skill (Scout)"]    = {iconFile = "IconSkills DoubleDipping.png", assembly = true},
    
    ----- Cosmetics -----
    ["Badge"] =                              {iconFile = "Icon badge.png"},
    ["Banner"] =                             {iconFile = "Icon banner.png"},
    ["Charm"] =                              {iconFile = "Icon charm.png"},
    
    ----- Modifiers -----
    ["Lights Out"] =                         {iconFile = "IconModifier lightsOut.png"},
    ["Lights Out (Castlevania)"] =           {iconFile = "IconModifier lightsOutCastlevania.png"},
    ["My Little Oni"] =                      {iconFile = "IconModifier myLittleOni.png"},
    ["Chaos Shuffle"] =						 {iconFile = "IconModifier chaosShuffle.png"},
    ["2v8"] =                                {iconFile = "IconModifier 2v8.png"},
    ["2v8 (Resident Evil)"] =                {iconFile = "IconModifier_2V8_RE.png"},
    
    ----- Magic Items (HUD) -----
    ["Boots"] =                              {iconFile = "T_UI_hud_umg_survivorMagicItems_Boots.png"},
    ["Bracers"] =                            {iconFile = "T_UI_hud_umg_survivorMagicItems_Bracers.png"},
    ["Dispelling Sphere"] =                  {iconFile = "T_UI_hud_umg_survivorMagicItems_DispellingSphere.png"},
    ["Flight of the Damned"] =               {iconFile = "T_UI_hud_umg_survivorMagicItems_FlightoftheDamned.png"},
    ["Fly"] =                                {iconFile = "T_UI_hud_umg_survivorMagicItems_Fly.png"},
    ["Gauntlets"] =                          "Bracers",
    ["Mage Hand"] =                          {iconFile = "T_UI_hud_umg_survivorMagicItems_MageHand.png"},
    ["Vecna Eye"] =                          {iconFile = "T_UI_hud_umg_survivorMagicItems_VecnaEye.png"},
    ["Vecna Hand"] =                         {iconFile = "T_UI_hud_umg_survivorMagicItems_VecnaHand.png"},
    
     ----- Glyphs ------
    ["Glyphs"] =                             {iconFile = "QuestIcons glyph.png"},
    ["Red Glyph"] =                          {iconFile = "ChallengeIcon_redGlyph.png"},
    ["Blue Glyph"] =                         {iconFile = "ChallengeIcon_blueGlyph.png"},
    ["Yellow Glyph"] =                       {iconFile = "ChallengeIcon_yellowGlyph.png"},
    ["Purple Glyph"] =                       {iconFile = "ChallengeIcon_purpleGlyph.png"},
    ["White Glyph"] =                        {iconFile = "ChallengeIcon_whiteGlyph.png"},
    ["Green Glyph"] =                        {iconFile = "ChallengeIcon_greenGlyph.png"},
    ["Orange Glyph"] =                       {iconFile = "ChallengeIcon_orangeGlyph.png"},
    ["Pink Glyph"] =                         {iconFile = "ChallengeIcon_pinkGlyph.png"},
    
    ----- Alternate Icons -----
    ["Absorption Mode"] =                    {iconFile = "Atl Hud PB IconAbsorb.png"},
    ["Adaptation"] =                         {iconFile = "Atl Loadout Icon Adaption.png"},
    ["Ambush"] =                             {iconFile = "Atl Hud AB IconAmbush.png"},
    ["Ambush Dash"] =                        {iconFile = "Atl Hud AB IconAmbush.png"},
    ["Bonus Bloodpoints"] =                  {iconFile = "Atl Loadout Icon BonusBloodpoints.png"},
    ["Bottle Reload"] =                      {iconFile = "Atl Hud AB IconBottleReload.png"},
    ["Break Chains"] =                       {iconFile = "Atl_Hud_Icon_BreakChains.png"},
    ["Carry"] =                              {iconFile = "IconAction carriedBody.png"},
    ["Carrying"] =                           {iconFile = "IconAction carriedBody.png"},
    ["Catching Survivors"] =				 {iconFile = "statusIcon_trap.png"},
    ["Chasing"] =                            {iconFile = "Atl Loadout Icon Chasing.png"},
    ["Concealment"] =                        {iconFile = "Atl Loadout Icon Concealment.png"},
    ["Create Gateway"] =                     {iconFile = "Atl_Hud_PB_CreateGateway.png"},
    ["Cruelty"] =                            {iconFile = "Atl Loadout Icon Cruelty.png"},
    ["Demon Dash"] =                         {iconFile = "Atl Hud PB IconDash.png"},
    ["Demon Strike"] =                       {iconFile = "Atl Hud PB IconDemonStrike.png"},
    ["Dream Pallet"] =                       {iconFile = "IconPowers BloodyPallet.png"},
    ["Dream Snare"] =                        {iconFile = "IconPowers Snare.png"},
    ["Dream Projection"] =                   {iconFile = "IconPowers SnareTeleport.png"},
    ["Drop"] =                               {iconFile = "Atl Hud PB Drop.png"},
    ["Dropping"] =                           {iconFile = "Atl Hud PB Drop.png"},
    ["Enhancement"] =                        {iconFile = "Atl Loadout Icon Enhancement.png"},
    ["Experience Points"] =                  {iconFile = "Atl Loadout Icon XP.png"},
    ["Hinderance"] =                         {iconFile = "Atl Loadout Icon Hinderance.png"},
    ["Kill"] =                               {iconFile = "Atl Hud PB Kill.png"},
    ["Killing"] =                            {iconFile = "Atl Hud PB Kill.png"},
    ["Luck (alt)"] =                         {iconFile = "Atl Loadout Icon Luck.png"},
    ["Map Modification"] =                   {iconFile = "Atl Loadout Icon MapModifications.png"},
    ["Mini-Mori"] =                          {iconFile = "Atl Loadout Icon MementoMoris.png"},
    ["Navigation"] =                         {iconFile = "Atl Loadout Icon Navigation.png"},
    ["Obstruction"] =                        {iconFile = "Atl Loadout Icon Obstruction.png"},
    ["Patch"] =                              {iconFile = "Icon publicTestBuild.png"},
    ["Perception"] =                         {iconFile = "Atl Loadout Icon Perception.png"},
    ["Pounce (Victor)"] =                    {iconFile = "Atl Hud ATK Pounce.png"},
    ["Pounce Charging (Victor)"] =           {iconFile = "Atl Hud AB PounceCharging.png"},
    ["Punishment Mode"] =                    {iconFile = "Atl Hud PB IconPunishment.png"},
    ["Punishment of the Damned"] =           {iconFile = "Atl Hud PB punishmentOfTheDamned.png"},
    ["Realms (alt)"] =                       {iconFile = "Atl Loadout Icon Realms.png"},
    ["Recall Victor"] =                      {iconFile = "Atl Hud AB RecallVictor.png"},
    ["Reset Bear Trap"] =                    {iconFile = "Atl Hud PB IconResetBearTrap.png"},
    ["Rupture"] =                            {iconFile = "IconPowers ExplodePallet.png"},
    ["Safeguard"] =                          {iconFile = "Atl Loadout Icon Safeguard.png"},
    ["Shock Therapy Attack"] =               {iconFile = "Atl Hud AB IconShockTherapy.png"},
    ["Shred"] =                              {iconFile = "Atl Hud PB Shred.png"},
    ["Shrouds"] =                            {iconFile = "Atl Loadout Icon Shrouds.png"},
    ["Solve Lament Configuration"] =         {iconFile = "Icons_Hud_Icon_Solve.png"},
    ["Strategy"] =                           {iconFile = "Atl Loadout Icon Strategy.png"},
    ["Summon Chain"] =                       {iconFile = "Atl_Hud_AB_SummonChain.png"},
    ["Support"] =                            {iconFile = "Atl Loadout Icon Support.png"},
    ["Switch to Charlotte"] =                {iconFile = "Atl Hud PB SwitchToCharlotte.png"},
    ["Switch to Victor"] =                   {iconFile = "Atl Hud PB SwitchToVictor.png"},
    ["Teleport"] =                           {iconFile = "Atl Hud AB IconTeleport.png"},
    ["Teleport to Lament Configuration"] =   {iconFile = "Atl_Hud_AB_Teleport.png"},
    ["Teleportation"] =                      {iconFile = "Atl Hud AB IconTeleport.png"},
    ["Tracking"] =                           {iconFile = "Atl Loadout Icon Tracking.png"},
    ["Traverse"] =                           {iconFile = "Atl Hud PB traverseUpsideDown.png"},
    ["Traversing"] =                         {iconFile = "Atl Hud PB traverseUpsideDown.png"},
    ["Traverse Upside Down"] =               {iconFile = "Atl Hud PB traverseUpsideDown.png"},
    ["Trickery"] =                           {iconFile = "Atl Loadout Icon Trickery.png"},
    ["Unbind Victor"] =                      {iconFile = "Atl Hud PB UnbindVictor.png"},
    ["UVX (Projectile Mobile)"] =            {iconFile = "IconPowers AOE Projectile.png"},
    ["UVX (Teleport Mobile)"] =              {iconFile = "IconPowers K35 Teleport.png"},
    ["Wailing Bell (cloaked)"] =             {iconFile = "Atl Hud PB IconInvisibilityBell 02.png"},
    ["Wards"] =                              {iconFile = "Atl Loadout Icon Wards.png"},
    ["XP"] =                                 {iconFile = "Atl Loadout Icon XP.png"},
    

    --------------------------- Achievements ---------------------------
    ["A Bite for The Entity"] =              {iconFile = "Ach aBiteForTheEntity.jpg"},
    ["A Fast Death"] =                       {iconFile = "Ach aFastDeath.jpg"},
    ["A Feast for The Entity"] =             {iconFile = "Ach aFeastForTheEntity.jpg"},
    ["Adept Ace"] =                          {iconFile = "Ach adeptAce.jpg"},
    ["Adept Ada"] =                          {iconFile = "Ach adeptAda.jpg"},
    ["Adept Adam"] =                         {iconFile = "Ach adeptAdam.jpg"},
    ["Adept Ash"] =                          {iconFile = "Ach adeptAsh.jpg"},
    ["Adept Bill"] =                         {iconFile = "Ach adeptBill.jpg"},
    ["Adept Cage"] =                         {iconFile = "Ach adeptCage.jpg"},
    ["Adept Cheryl"] =                       {iconFile = "Ach adeptCheryl.jpg"},
    ["Adept Claudette"] =                    {iconFile = "Ach adeptClaudette.jpg"},
    ["Adept David"] =                        {iconFile = "Ach adeptDavid.jpg"},
    ["Adept Dwight"] =                       {iconFile = "Ach adeptDwight.jpg"},
    ["Adept Élodie"] =                       {iconFile = "Ach adeptÉlodie.jpg"},
    ["Adept Felix"] =                        {iconFile = "Ach adeptFelix.jpg"},
    ["Adept Gabriel"] =                      {iconFile = "Ach adeptGabriel.jpg"},
    ["Adept Haddie"] =                       {iconFile = "Ach adeptHaddie.jpg"},
    ["Adept Jake"] =                         {iconFile = "Ach adeptJake.jpg"},
    ["Adept Jane"] =                         {iconFile = "Ach adeptJane.jpg"},
    ["Adept Jeff"] =                         {iconFile = "Ach adeptJeff.jpg"},
    ["Adept Jill"] =                         {iconFile = "Ach adeptJill.jpg"},
    ["Adept Jonah"] =                        {iconFile = "Ach adeptJonah.jpg"},
    ["Adept Kate"] =                         {iconFile = "Ach adeptKate.jpg"},
    ["Adept Lara"] =                         {iconFile = "Ach adeptLara.jpg"},
    ["Adept Laurie"] =                       {iconFile = "Ach adeptLaurie.jpg"},
    ["Adept Leon"] =                         {iconFile = "Ach adeptLeon.jpg"},
    ["Adept Meg"] =                          {iconFile = "Ach adeptMeg.jpg"},
    ["Adept Mikaela"] =                      {iconFile = "Ach adeptMikaela.jpg"},
    ["Adept Min"] =                          {iconFile = "Ach adeptMin.jpg"},
    ["Adept Nea"] =                          {iconFile = "Ach adeptNea.jpg"},
    ["Adept Nancy"] =                        {iconFile = "Ach adeptNancy.jpg"},
    ["Adept Orela"] =                        {iconFile = "Ach adeptOrela.jpg"},
    ["Adept Quentin"] =                      {iconFile = "Ach adeptQuentin.jpg"},
    ["Adept Rebecca"] =                      {iconFile = "Ach adeptRebecca.jpg"},
    ["Adept Renato"] =                       {iconFile = "Ach adeptRenato.jpg"},
    ["Adept Ripley"] =                       {iconFile = "Ach adeptRipley.jpg"},
    ["Adept Steve"] =                        {iconFile = "Ach adeptSteve.jpg"},
    ["Adept Tapp"] =                         {iconFile = "Ach adeptTapp.jpg"},
    ["Adept Thalita"] =                      {iconFile = "Ach adeptThalita.jpg"},
    ["Adept Vittorio"] =                     {iconFile = "Ach adeptVittorio.jpg"},
    ["Adept Yui"] =                          {iconFile = "Ach adeptYui.jpg"},
    ["Adept Yun-Jin"] =                      {iconFile = "Ach adeptYun-Jin.jpg"},
    ["Adept Yoichi"] =                       {iconFile = "Ach adeptYoichi.jpg"},
    ["Adept Zarina"] =                       {iconFile = "Ach adeptZarina.jpg"},

    ["Adept Artist"] =                       {iconFile = "Ach adeptArtist.jpg"},
    ["Adept Blight"] =                       {iconFile = "Ach adeptBlight.jpg"},
    ["Adept Cannibal"] =                     {iconFile = "Ach adeptCannibal.jpg"},
    ["Adept Cenobite"] =                     {iconFile = "Ach adeptCenobite.jpg"},
    ["Adept Clown"] =                        {iconFile = "Ach adeptClown.jpg"},
    ["Adept Deathslinger"] =                 {iconFile = "Ach adeptDeathslinger.jpg"},
    ["Adept Demogorgon"] =                   {iconFile = "Ach adeptDemogorgon.jpg"},
    ["Adept Doctor"] =                       {iconFile = "Ach adeptDoctor.jpg"},
    ["Adept Dredge"] =                       {iconFile = "Ach adeptDredge.jpg"},
    ["Adept Executioner"] =                  {iconFile = "Ach adeptExecutioner.jpg"},
    ["Adept Ghost Face"] =                   {iconFile = "Ach adeptGhostFace.jpg"},
    ["Adept Ghoul"] =                        {iconFile = "Ach adeptGhoul.jpg"},
    ["Adept Hag"] =                          {iconFile = "Ach adeptHag.jpg"},
    ["Adept Hillbilly"] =                    {iconFile = "Ach adeptHillbilly.jpg"},
    ["Adept Houndmaster"] =                  {iconFile = "Ach adeptHoundmaster.jpg"},
    ["Adept Huntress"] =                     {iconFile = "Ach adeptHuntress.jpg"},
    ["Adept Knight"] =                       {iconFile = "Ach adeptKnight.jpg"},
    ["Adept Legion"] =                       {iconFile = "Ach adeptLegion.jpg"},
    ["Adept Mastermind"] =                   {iconFile = "Ach adeptMastermind.jpg"},
    ["Adept Nemesis"] =                      {iconFile = "Ach adeptNemesis.jpg"},
    ["Adept Nightmare"] =                    {iconFile = "Ach adeptNightmare.jpg"},
    ["Adept Nurse"] =                        {iconFile = "Ach adeptNurse.jpg"},
    ["Adept Oni"] =                          {iconFile = "Ach adeptOni.jpg"},
    ["Adept Onryō"] =                        {iconFile = "Ach adeptOnryo.jpg"},
    ["Adept Pig"] =                          {iconFile = "Ach adeptPig.jpg"},
    ["Adept Plague"] =                       {iconFile = "Ach adeptPlague.jpg"},
    ["Adept Shape"] =                        {iconFile = "Ach adeptShape.jpg"},
    ["Adept Singularity"] =                  {iconFile = "Ach adeptSingularity.jpg"},
    ["Adept Skull Merchant"] =               {iconFile = "Ach adeptSkullMerchant.jpg"},
    ["Adept Spirit"] =                       {iconFile = "Ach adeptSpirit.jpg"},
    ["Adept Trapper"] =                      {iconFile = "Ach adeptTrapper.jpg"},
    ["Adept Trickster"] =                    {iconFile = "Ach adeptTrickster.jpg"},
    ["Adept Twins"] =                        {iconFile = "Ach adeptTwins.jpg"},
    ["Adept Wraith"] =                       {iconFile = "Ach adeptWraith.jpg"},
    ["Adept Xenomorph"] =                    {iconFile = "Ach adeptXenomorph.jpg"},

    ["Agonising Escape"] =                   {iconFile = "Ach agonisingEscape.jpg"},
    ["All Aboard"] =                         {iconFile = "Ach allAboard.jpg"},
    ["Ancestor's Rite"] =                    {iconFile = "Ach ancestorsRite.jpg"},
    ["Apt Killer"] =                         {iconFile = "Ach aptKiller.jpg"},
    ["Apt Survivor"] =                       {iconFile = "Ach aptSurvivor.jpg"},
    ["Awakened Anger"] =                     {iconFile = "Ach awakenedAnger.jpg"},
    ["Backdoor Escape"] =                    {iconFile = "Ach backdoorEscape.jpg"},
    ["Bless You"] =                          {iconFile = "Ach blessYou.jpg"},
    ["Blood on Your Hands"] =                {iconFile = "Ach bloodOnYourHands.jpg"},
    ["Blood on Your Face"] =                 {iconFile = "Ach bloodOnYourFace.jpg"},
    ["Blood in Your Mouth"] =                {iconFile = "Ach bloodInYourMouth.jpg"},
    ["Bloody Millionaire"] =                 {iconFile = "Ach bloodyMillionaire.jpg"},
    ["Bloodbath"] =                          {iconFile = "Ach bloodbath.jpg"},
    ["Bodyguard"] =                          {iconFile = "Ach bodyguard.jpg"},
    ["Bound and Downed"] =                   {iconFile = "Ach boundAndDowned.jpg"},
    ["Broken Bodies"] =                      {iconFile = "Ach brokenBodies.jpg"},
    ["Bump in the Night"] =                  {iconFile = "Ach bumpInTheNight.jpg"},
    ["Butcherin'"] =                         {iconFile = "Ach butcherin.jpg"},
    ["Biological Weaponry"] =                {iconFile = "Ach biologicalWeaponry.jpg"},
    ["Campbell's Chapel Legacy"] =           {iconFile = "Ach campbellsChapelLegacy.jpg"},
    ["Caws of Death"] =                      {iconFile = "Ach cawsOfDeath.jpg"},
    ["Cherish Your Life"] =                  {iconFile = "Ach cherishYourLife.jpg"},
    ["Chorus of Chaos"] =                    {iconFile = "Ach chorusOfChaos.jpg"},
    ["Classy Act"] =                         {iconFile = "Ach classyAct.jpg"},
    ["Cleansed in Agony"] =                  {iconFile = "Ach cleansedInAgony.jpg"},
    ["Close Shave"] =                        {iconFile = "Ach closeShave.jpg"},
    ["Collision Course"] =                   {iconFile = "Ach collisionCourse.jpg"},
    ["Complete the Evolution"] =             {iconFile = "Ach completeTheEvolution.jpg"},
    ["Conniption"] =                         {iconFile = "Ach conniption.jpg"},
    ["Cottage Owner"] =                      {iconFile = "Ach cottageOwner.jpg"},
    ["Cripple Them All"] =                   {iconFile = "Ach crippleThemAll.jpg"},
    ["Cruelty Loves Company"] =              {iconFile = "Ach crueltyLovesCompany.jpg"},
    ["Cutting Out"] =                        {iconFile = "Ach cuttingOut.jpg"},
    ["Death of Ignorance"] =                 {iconFile = "Ach deathOfIgnorance.jpg"},
    ["Deep Cleansing"] =                     {iconFile = "Ach deepCleansing.jpg"},
    ["Denied!"] =                            {iconFile = "Ach denied.jpg"},
    ["Deranged Pursuit"] =                   {iconFile = "Ach derangedPursuit.jpg"},
    ["Desperate Escape"] =                   {iconFile = "Ach desperateEscape.jpg"},
    ["Devoted Gatekeeping"] =                {iconFile = "Ach devotedGatekeeping.jpg"},
    ["Disarm and Dismember"] =               {iconFile = "Ach disarmAndDismember.jpg"},
    ["Dismantle"] =                          {iconFile = "Ach dismantle.jpg"},
    ["Dream Demon"] =                        {iconFile = "Ach dreamDemon.jpg"},
    ["End of Days"] =                        {iconFile = "Ach endOfDays.jpg"},
    ["Engineer"] =                           {iconFile = "Ach engineer.jpg"},
    ["Escape Artist"] =                      {iconFile = "Ach escapeArtist.jpg"},
    ["Escaping the Nightmare"] =             {iconFile = "Ach escapingTheNightmare.jpg"},
    ["Evil Incarnate"] =                     {iconFile = "Ach evilIncarnate.jpg"},
    ["Even Punishment"] =                    {iconFile = "Ach evenPunishment.jpg"},
    ["Ever Vigilant"] =                      {iconFile = "Ach everVigilant.jpg"},
    ["Every Last Drop"] =                    {iconFile = "Ach everyLastDrop.jpg"},
    ["Expert Killer"] =                      {iconFile = "Ach expertKiller.jpg"},
    ["Expert Survivor"] =                    {iconFile = "Ach expertSurvivor.jpg"},
    ["Expert Generalist"] =                  {iconFile = "Ach expertGeneralist.jpg"},
    ["Extraterrestrial"] =                   {iconFile = "Ach extraterrestrial.jpg"},
    ["Flight to Freedom"] =                  {iconFile = "Ach flightToFreedom.jpg"},
    ["Fleet of Foot"] =                      {iconFile = "Ach fleetOfFoot.jpg"},
    ["From the Deep"] =                      {iconFile = "ACH FromTheDeep.jpg"},
    ["From the Void She Kills"] =            {iconFile = "Ach fromTheVoidSheKills.jpg"},
    ["Final Days"] =                         {iconFile = "Ach finalDays.jpg"},
    ["First to the Punch"] =                 {iconFile = "Ach firstToThePunch.jpg"},
    ["Game Over"] =                          {iconFile = "Ach gameOver.jpg"},
    ["Getting the Hang of It"] =             {iconFile = "Ach gettingTheHangOfIt.jpg"},
    ["Gifts for The Fog"] =                  {iconFile = "Ach giftsForTheFog.jpg"},
    ["Grim Pilgrimage"] =                    {iconFile = "Ach grimPilgrimage.jpg"},
    ["Ghost in the Machine"] =               {iconFile = "Ach ghostInTheMachine.jpg"},
    ["Hack the Mainframe"] =                 {iconFile = "Ach hackTheMainframe.jpg"},
    ["Haemophobia"] =                        {iconFile = "Ach haemophobia.jpg"},
    ["Handyman"] =                           {iconFile = "Ach handyman.jpg"},
    ["Happy Holidays"] =                     {iconFile = "Ach happyHolidays.jpg"},
    ["Healthy Obsession"] =                  {iconFile = "Ach healthyObsession.jpg"},
    ["Heavy Burden"] =                       {iconFile = "Ach heavyBurden.jpg"},
    ["Hiding Seeker"] =                      {iconFile = "ACH HidingSeeker.jpg"},
    ["High Speed Pursuit"] =                 {iconFile = "Ach highSpeedPursuit.jpg"},
    ["Holiday Get-Together"] =               {iconFile = "Ach holidayGet-Together.jpg"},
    ["House of Pain"] =                      {iconFile = "Ach houseOfPain.jpg"},
    ["Humanitarian"] =                       {iconFile = "Ach humanitarian.jpg"},
    ["I"] =                                  {iconFile = "Ach i.jpg"},
    ["II"] =                                 {iconFile = "Ach ii.jpg"},
    ["III"] =                                {iconFile = "Ach iii.jpg"},
    ["III-50"] =                             {iconFile = "Ach iii-50.jpg"},
    ["I See You"] =                          {iconFile = "Ach iSeeYou.jpg"},
    ["In the Void She Walks"] =              {iconFile = "Ach inTheVoidSheWalks.jpg"},
    ["Insult and Injury"] =                  {iconFile = "Ach insultAndInjury.jpg"},
    ["It Wakes"] =                           {iconFile = "Ach itWakes.jpg"},
    ["Item of Obsession"] =                  {iconFile = "Ach itemOfObsession.jpg"},
    ["I've Got Your Back"] =                 {iconFile = "Ach iveGotYourBack.jpg"},
    ["I Want to Play a Game"] =              {iconFile = "Ach iWantToPlayAGame.jpg"},
    ["Jump Scares"] =                        {iconFile = "Ach jumpScares.jpg"},
    ["Kitted Out"] =                         {iconFile = "Ach kittedOut.jpg"},
    ["Leapfrog"] =                           {iconFile = "Ach leapfrog.jpg"},
    ["Left for Dead"] =                      {iconFile = "Ach leftForDead.jpg"},
    ["Legendary Killer"] =                   {iconFile = "Ach legendaryKiller.jpg"},
    ["Legendary Survivor"] =                 {iconFile = "Ach legendarySurvivor.jpg"},
    ["Lifting The Fog"] =                    {iconFile = "Ach liftingTheFog.jpg"},
    ["Looter"] =                             {iconFile = "Ach looter.jpg"},
    ["Mad House"] =                          {iconFile = "Ach madHouse.jpg"},
    ["Made It Out Alive!"] =                 {iconFile = "Ach madeItOutAlive.jpg"},
    ["Make Some Noise"] =                    {iconFile = "Ach makeSomeNoise.jpg"},
    ["Master Killer"] =                      {iconFile = "Ach masterKiller.jpg"},
    ["Master Survivor"] =                    {iconFile = "Ach masterSurvivor.jpg"},
    ["Medic (Ach)"] =                        {iconFile = "Ach medic.jpg"},
    ["Milk 'n' Cookies"] =                   {iconFile = "Ach milkNCookies.jpg"},
    ["MU/TH/UR Dearest"] =                   {iconFile = "Ach muthurDearest.jpg"},
    ["Multi-Tasker"] =                       {iconFile = "Ach multi-Tasker.jpg"},
    ["Near-Death Experience"] =              {iconFile = "Ach near-DeathExperience.jpg"},
    ["Nerves of Steel"] =                    {iconFile = "Ach nervesOfSteel.jpg"},
    ["No One Left Behind (Ach)"] =           {iconFile = "Ach noOneLeftBehind.jpg"},
    ["Not Half Bad"] =                       {iconFile = "Ach notHalfBad.jpg"},
    ["Not Today"] =                          {iconFile = "Ach notToday.jpg"},
    ["Old West Oasis"] =                     {iconFile = "Ach oldWestOasis.jpg"},
    ["One More Step"] =                      {iconFile = "Ach oneMoreStep.jpg"},
    ["One Thousand Cuts"] =                  {iconFile = "Ach oneThousandCuts.jpg"},
    ["Outbreak Breakout"] =                  {iconFile = "Ach outbreakBreakout.jpg"},
    ["Outrage"] =                            {iconFile = "Ach outrage.jpg"},
    ["Outrun Evil"] =                        {iconFile = "Ach outrunEvil.jpg"},
    ["Outrun the Overlap"] =                 {iconFile = "Ach outrunTheOverlap.jpg"},
    ["Operation: Survival"] =                {iconFile = "Ach operationSurvival.jpg"},
    ["Party Crasher"] =                      {iconFile = "Ach partyCrasher.jpg"},
    ["Perfect Escape"] =                     {iconFile = "Ach perfectEscape.jpg"},
    ["Perfect Killing"] =                    {iconFile = "Ach perfectKilling.jpg"},
    ["Power Moves"] =                        {iconFile = "Ach powerMoves.jpg"},
    ["Pre-emptive Strike"] =                 {iconFile = "Ach pre-EmptiveStrike.jpg"},
    ["Prowler"] =                            {iconFile = "Ach prowler.jpg"},
    ["Punch Drunk"] =                        {iconFile = "Ach punchDrunk.jpg"},
    ["Quick Draw"] =                         {iconFile = "Ach quickDraw.jpg"},
    ["Rebuilding the Borgo"] =               {iconFile = "Ach rebuildingTheBorgo.jpg"},
    ["Remember Who I Am"] =                  {iconFile = "Ach rememberWhoIAm.jpg"},
    ["Rescue Mission"] =                     {iconFile = "Ach rescueMission.jpg"},
    ["Resourceful"] =                        {iconFile = "Ach resourceful.jpg"},
    ["Resurgence (Ach)"] =                   {iconFile = "Ach resurgence.jpg"},
    ["Risk It All"] =                        {iconFile = "Ach riskItAll.jpg"},
    ["Raccoon City Recruit"] =               {iconFile = "Ach raccoonCityRecruit.jpg"},
    ["Savage Take-Down"] =                   {iconFile = "Ach savageTake-Down.jpg"},
    ["Second Act"] =                         {iconFile = "Ach secondAct.jpg"},
    ["Selfless Survival"] =                  {iconFile = "Ach selflessSurvival.jpg"},
    ["Serial Killer"] =                      {iconFile = "Ach serialKiller.jpg"},
    ["Shock Therapy"] =                      {iconFile = "Ach shockTherapy.jpg"},
    ["Shocking Treatment"] =                 {iconFile = "Ach shockingTreatment.jpg"},
    ["Shrine Apparatus"] =                   {iconFile = "Ach shrineApparatus.jpg"},
    ["Silent Approach"] =                    {iconFile = "Ach silentApproach.jpg"},
    ["Skilled Huntress"] =                   {iconFile = "Ach skilledHuntress.jpg"},
    ["Skilled Generalist"] =                 {iconFile = "Ach skilledGeneralist.jpg"},
    ["Skilful"] =                            {iconFile = "Ach skilful.jpg"},
    ["Slip into the Stream"] =               {iconFile = "Ach slipIntoTheStream.jpg"},
    ["Smoked"] =                             {iconFile = "Ach smoked.jpg"},
    ["So Alone"] =                           {iconFile = "Ach soAlone.jpg"},
    ["Sorted"] =                             {iconFile = "Ach sorted.jpg"},
    ["Speed Kills"] =                        {iconFile = "Ach speedKills.jpg"},
    ["Survival Treasures"] =                 {iconFile = "Ach survivalTreasures.jpg"},
    ["Swirling Death"] =                     {iconFile = "Ach swirlingDeath.jpg"},
    ["Tag Team"] =                           {iconFile = "Ach tagTeam.jpg"},
    ["Taking One for the Team"] =            {iconFile = "Ach takingOneForTheTeam.jpg"},
    ["Tear Their Soul Apart"] =              {iconFile = "Ach tearTheirSoulApart.jpg"},
    ["Terminal Illness"] =                   {iconFile = "Ach terminalIllness.jpg"},
    ["Terror of LV-426"] =                   {iconFile = "Ach terrorOfLv-426.jpg"},
    ["Texas BBQ"] =                          {iconFile = "Ach texasBbq.jpg"},
    ["The Grand Sacrifice"] =                {iconFile = "Ach theGrandSacrifice.jpg"},
    ["The Grind"] =                          {iconFile = "Ach theGrind.jpg"},
    ["The Man Behind the Bush"] =            {iconFile = "Ach theManBehindTheBush.jpg"},
    ["The Key to Escape"] =                  {iconFile = "Ach theKeyToEscape.jpg"},
    ["Thrill of the Chase"] =                {iconFile = "Ach thrillOfTheChase.jpg"},
    ["Totally Vulnerable"] =                 {iconFile = "Ach totallyVulnerable.jpg"},
    ["Tools of the Trade"] =                 {iconFile = "Ach toolsOfTheTrade.jpg"},
    ["Triggered"] =                          {iconFile = "Ach triggered.jpg"},
    ["Triage"] =                             {iconFile = "Ach triage.jpg"},
    ["Unforgettable Getaway"] =              {iconFile = "Ach unforgettableGetaway.jpg"},
    ["Vulture"] =                            {iconFile = "Ach vulture.jpg"},
    ["Viral Video"] =                        {iconFile = "Ach viralVideo.jpg"},
    ["What Lurks Beneath"] =                 {iconFile = "Ach whatLurksBeneath.jpg"},
    ["Where Did They Go!?"] =                {iconFile = "Ach whereDidTheyGo.jpg"},
    ["Whiffing to Success"] =                {iconFile = "Ach whiffingToSuccess.jpg"},
    ["With Scars to Show"] =                 {iconFile = "Ach withScarsToShow.jpg"},
    ["Wounded Healer"] =                     {iconFile = "Ach woundedHealer.jpg"},
    ["Zealous"] =                            {iconFile = "Ach zealous.jpg"},


    --------------------------- Add-ons ---------------------------
    --------------------------- All Killers ---------------------------
    ["Blight Serum"] =                       {iconFile = "IconAddon blightSerum.png", assembly = true},


    --------------------------- The Afterpiece Tonic ---------------------------
    ["Bottle of Chloroform"] =               {iconFile = "IconAddon bottleOfChloroform.png", assembly = true},
    ["Cheap Gin Bottle"] =                   {iconFile = "IconAddon cheapGinBottle.png", assembly = true},
    ["Cigar Box"] =                          {iconFile = "IconAddon cigarBox.png", assembly = true},
    ["Ether 5 Vol%"] =                       {iconFile = "IconAddon ether5Vol.png", assembly = true},
    ["Ether 10 Vol%"] =                      {iconFile = "IconAddon ether10Vol.png", assembly = true},
    ["Ether 15 Vol%"] =                      {iconFile = "IconAddon ether15Vol.png", assembly = true},
    ["Fingerless Parade Gloves"] =           {iconFile = "IconAddon fingerlessParadeGloves.png", assembly = true},
    ["Flask of Bleach"] =                    {iconFile = "IconAddon flaskOfBleach.png", assembly = true},
    ["Garish Make-Up Kit"] =                 {iconFile = "IconAddon garishMake-UpKit.png", assembly = true},
    ["Kerosene Can"] =                       {iconFile = "IconAddon keroseneCan.png", assembly = true},
    ["Party Bottle"] =                       {iconFile = "IconAddon partyBottle.png", assembly = true},
    ["Redhead's Pinkie Finger"] =            {iconFile = "IconAddon redheadsPinkieFinger.png", assembly = true},
    ["Robin Feather"] =                      {iconFile = "IconAddon robinFeather.png", assembly = true},
    ["Smelly Inner Soles"] =                 {iconFile = "IconAddon smellyInnerSoles.png", assembly = true},
    ["Solvent Jug"] =                        {iconFile = "IconAddon solventJug.png", assembly = true},
    ["Spirit of Hartshorn"] =                {iconFile = "IconAddon spiritOfHartshorn.png", assembly = true},
    ["Starling Feather"] =                   {iconFile = "IconAddon starlingFeather.png", assembly = true},
    ["Sticky Soda Bottle"] =                 {iconFile = "IconAddon stickySodaBottle.png", assembly = true},
    ["Sulphuric Acid Vial"] =                {iconFile = "IconAddon sulphuricAcidVial.png", assembly = true},
    ["Tattoo's Middle Finger"] =             {iconFile = "IconAddon tattoosMiddleFinger.png", assembly = true},
    ["Thick Cork Stopper"] =                 {iconFile = "IconAddon thickCorkStopper.png", assembly = true},
    ["VHS Porn"] =                           {iconFile = "IconAddon vhsPorn.png", assembly = true},
    
    
    --------------------------- Bear Trap ---------------------------
    ["Bear Oil"] =                           {iconFile = "IconAddon bearOil.png", assembly = true},
    ["Coffee Grounds"] =                     {iconFile = "IconAddon coffeeGrounds.png", assembly = true},
    ["Tension Spring"] =                     {iconFile = "IconAddon tensionSpring.png", assembly = true},
    ["Lengthened Jaws"] =                    {iconFile = "IconAddon lengthenedJaws.png", assembly = true},
    ["Makeshift Wrap"] =                     {iconFile = "IconAddon makeshiftWrap.png", assembly = true},
    ["4-Coil Spring Kit"] =                  {iconFile = "IconAddon 4-coilSpringKit.png", assembly = true},
    ["Bloody Coil"] =                        {iconFile = "IconAddon bloodyCoil.png", assembly = true},
    ["Diamond Stone"] =                      {iconFile = "IconAddon diamondStone.png", assembly = true},
    ["Fastening Tools"] =                    {iconFile = "IconAddon fasteningTools.png", assembly = true},
    ["Honing Stone"] =                       {iconFile = "IconAddon honingStone.png", assembly = true},
    ["Iridescent Stone"] =                   {iconFile = "IconAddon iridescentStone.png", assembly = true},
    ["Oily Coil"] =                          {iconFile = "IconAddon oilyCoil.png", assembly = true},
    ["Logwood Dye"] =                        {iconFile = "IconAddon logwoodDye.png", assembly = true},
    ["Padded Jaws"] =                        {iconFile = "IconAddon paddedJaws.png", assembly = true},
    ["Rusted Jaws"] =                        {iconFile = "IconAddon rustedJaws.png", assembly = true},
    ["Secondary Coil"] =                     {iconFile = "IconAddon secondaryCoil.png", assembly = true},
    ["Serrated Jaws"] =                      {iconFile = "IconAddon serratedJaws.png", assembly = true},
    ["Setting Tools"] =                      {iconFile = "IconAddon settingTools.png", assembly = true},
    ["Stitched Bag"] =                       {iconFile = "IconAddon stitchedBag.png", assembly = true},
    ["Strong Coil Spring"] =                 {iconFile = "IconAddon strongCoilSpring.png", assembly = true},
    ["Tar Bottle"] =                         {iconFile = "IconAddon tarBottle.png", assembly = true},
    ["Trap Setters"] =                       {iconFile = "IconAddon trapSetters.png", assembly = true},
    ["Trapper Bag"] =                        {iconFile = "IconAddon trapperBag.png", assembly = true},
    ["Trapper Gloves"] =                     {iconFile = "IconAddon trapperGloves.png", assembly = true},
    ["Trapper Sack"] =                       {iconFile = "IconAddon trapperSack.png", assembly = true},
    ["Trapper Sack (Decommissioned)"] =      {iconFile = "IconAddon trapperSackDecommissioned.png", assembly = true},
    ["Wax Brick"] =                          {iconFile = "IconAddon waxBrick.png", assembly = true},


    --------------------------- Birds of Torment ---------------------------
    ["Automatic Drawing"] =                  {iconFile = "IconAddon automaticDrawing.png", assembly = true},
    ["Charcoal Stick"] =                     {iconFile = "IconAddon charcoalStick.png", assembly = true},
    ["Choclo Corn"] =                        {iconFile = "IconAddon chocloCorn.png", assembly = true},
    ["Darkest Ink"] =                        {iconFile = "IconAddon darkestInk.png", assembly = true},
    ["Festering Carrion"] =                  {iconFile = "IconAddon festeringCarrion.png", assembly = true},
    ["Garden of Rot"] =                      {iconFile = "IconAddon gardenOfRot.png", assembly = true},
    ["Ink Egg"] =                            {iconFile = "IconAddon inkEgg.png", assembly = true},
    ["Iridescent Feather"] =                 {iconFile = "IconAddon iridescentFeather.png", assembly = true},
    ["Matias' Baby Shoes"] =                 {iconFile = "IconAddon matiasBabyShoes.png", assembly = true},
    ["O Grief, O Lover"] =                   {iconFile = "IconAddon oGriefOLover.png", assembly = true},
    ["Oil Paints"] =                         {iconFile = "IconAddon oilPaints.png", assembly = true},
    ["Severed Hands"] =                      {iconFile = "IconAddon severedHands.png", assembly = true},
    ["Severed Tongue"] =                     {iconFile = "IconAddon severedTongue.png", assembly = true},
    ["Silver Bell"] =                        {iconFile = "IconAddon silverBell.png", assembly = true},
    ["Still Life Crow"] =                    {iconFile = "IconAddon stillLifeCrow.png", assembly = true},
    ["Thick Tar"] =                          {iconFile = "IconAddon thickTar.png", assembly = true},
    ["Thorny Nest"] =                        {iconFile = "IconAddon thornyNest.png", assembly = true},
    ["Untitled Agony"] =                     {iconFile = "IconAddon untitledAgony.png", assembly = true},
    ["Velvet Fabric"] =                      {iconFile = "IconAddon velvetFabric.png", assembly = true},
    ["Vibrant Obituary"] =                   {iconFile = "IconAddon vibrantObituary.png", assembly = true},
    
    
    --------------------------- Blackened Catalyst ---------------------------
    ["Bloodied Mud"] =                       {iconFile = "IconAddon bloodiedMud.png", assembly = true},
    ["Bloodied Water"] =                     {iconFile = "IconAddon bloodiedWater.png", assembly = true},
    ["Bog Water"] =                          {iconFile = "IconAddon bogWater.png", assembly = true},
    ["Cracked Turtle Egg"] =                 {iconFile = "IconAddon crackedTurtleEgg.png", assembly = true},
    ["Cypress Necklet"] =                    {iconFile = "IconAddon cypressNecklet.png", assembly = true},
    ["Dead Fly Mud"] =                       {iconFile = "IconAddon deadFlyMud.png", assembly = true},
    ["Disfigured Ear"] =                     {iconFile = "IconAddon disfiguredEar.png", assembly = true},
    ["Dragonfly Wings"] =                    {iconFile = "IconAddon dragonflyWings.png", assembly = true},
    ["Dried Cicada"] =                       {iconFile = "IconAddon driedCicada.png", assembly = true},
    ["Grandma's Heart"] =                    {iconFile = "IconAddon granmasHeart.png", assembly = true},
    ["Half Eggshell"] =                      {iconFile = "IconAddon halfEggshell.png", assembly = true},
    ["Mint Rag"] =                           {iconFile = "IconAddon mintRag.png", assembly = true},
    ["Powdered Eggshell"] =                  {iconFile = "IconAddon powderedEggshell.png", assembly = true},
    ["Pussy Willow Catkins"] =               {iconFile = "IconAddon pussyWillowCatkins.png", assembly = true},
    ["Rope Necklet"] =                       {iconFile = "IconAddon ropeNecklet.png", assembly = true},
    ["Rusty Shackles"] =                     {iconFile = "IconAddon rustyShackles.png", assembly = true},
    ["Scarred Hand"] =                       {iconFile = "IconAddon scarredHand.png", assembly = true},
    ["Swamp Orchid Necklet"] =               {iconFile = "IconAddon swampOrchidNecklet.png", assembly = true},
    ["Waterlogged Shoe"] =                   {iconFile = "IconAddon waterloggedShoe.png", assembly = true},
    ["Willow Wreath"] =                      {iconFile = "IconAddon willowWreath.png", assembly = true},


    --------------------------- Blighted Corruption ---------------------------
    ["Adrenaline Vial"] =                    {iconFile = "IconAddon adrenalineVial.png", assembly = true},
    ["Alchemist's Ring"] =                   {iconFile = "IconAddon alchemistsRing.png", assembly = true},
    ["Blighted Crow"] =                      {iconFile = "IconAddon blightedCrow.png", assembly = true},
    ["Blighted Rat"] =                       {iconFile = "IconAddon blightedRat.png", assembly = true},
    ["Canker Thorn"] =                       {iconFile = "IconAddon cankerThorn.png", assembly = true},
    ["Chipped Monocle"] =                    {iconFile = "IconAddon chippedMonocle.png", assembly = true},
    ["Compound Seven"] =                     {iconFile = "IconAddon compoundSeven.png", assembly = true},
    ["Compound Thirty-Three"] =              {iconFile = "IconAddon compoundThirtyThree.png", assembly = true},
    ["Compound Twenty-One"] =                {iconFile = "IconAddon compoundTwentyOne.png", assembly = true},
    ["Foxglove"] =                           {iconFile = "IconAddon foxglove.png", assembly = true},
    ["Iridescent Blight Tag"] =              {iconFile = "IconAddon iridescentBlightTag.png", assembly = true},
    ["Placebo Tablet"] =                     {iconFile = "IconAddon placeboTablet.png", assembly = true},
    ["Plague Bile"] =                        {iconFile = "IconAddon plagueBile.png", assembly = true},
    ["Pustula Dust"] =                       {iconFile = "IconAddon pustulaDust.png", assembly = true},
    ["Rose Tonic"] =                         {iconFile = "IconAddon roseTonic.png", assembly = true},
    ["Shredded Notes"] =                     {iconFile = "IconAddon shreddedNotes.png", assembly = true},
    ["Soul Chemical"] =                      {iconFile = "IconAddon soulChemical.png", assembly = true},
    ["Summoning Stone"] =                    {iconFile = "IconAddon summoningStone.png", assembly = true},
    ["Umbra Salts"] =                        {iconFile = "IconAddon umbraSalts.png", assembly = true},
    ["Vigo's Journal"] =                     {iconFile = "IconAddon vigosJournal.png", assembly = true},


    --------------------------- Blood Bond ---------------------------
    ["Baby Teeth"] =                         {iconFile = "IconAddon babyTeeth.png", assembly = true},
    ["Bloody Black Hood"] =                  {iconFile = "IconAddon bloodyBlackHood.png", assembly = true},
    ["Cat Figurine"] =                       {iconFile = "IconAddon catFigurine.png", assembly = true},
    ["Cat's Eye"] =                          {iconFile = "IconAddon catsEye.png", assembly = true},
    ["Ceremonial Candelabrum"] =             {iconFile = "IconAddon ceremonialCandelabrum.png", assembly = true},
    ["Drop of Perfume"] =                    {iconFile = "IconAddon dropOfPerfume.png", assembly = true},
    ["Forest Stew"] =                        {iconFile = "IconAddon forestStew.png", assembly = true},
    ["Iridescent Pendant"] =                 {iconFile = "IconAddon iridescentPendant.png", assembly = true},
    ["Madeleine's Glove"] =                  {iconFile = "IconAddon madeleinesGlove.png", assembly = true},
    ["Madeleine's Scarf"] =                  {iconFile = "IconAddon madeleinesScarf.png", assembly = true},
    ["Rusted Needle"] =                      {iconFile = "IconAddon rustedNeedle.png", assembly = true},
    ["Sewer Sludge"] =                       {iconFile = "IconAddon sewerSludge.png", assembly = true},
    ["Silencing Cloth"] =                    {iconFile = "IconAddon silencingCloth.png", assembly = true},
    ["Soured Milk"] =                        {iconFile = "IconAddon souredMilk.png", assembly = true},
    ["Spinning Top"] =                       {iconFile = "IconAddon spinningTop.png", assembly = true},
    ["Stale Biscuit"] =                      {iconFile = "IconAddon staleBiscuit.png", assembly = true},
    ["Tiny Fingernail"] =                    {iconFile = "IconAddon tinyFingernail.png", assembly = true},
    ["Toy Sword"] =                          {iconFile = "IconAddon toySword.png", assembly = true},
    ["Victor's Soldier"] =                   {iconFile = "IconAddon victorsSoldier.png", assembly = true},
    ["Weighty Rattle"] =                     {iconFile = "IconAddon weightyRattle.png", assembly = true},
    
    
    --------------------------- Carter's Spark ---------------------------
    ['"Calm" - Carter\'s Notes'] =           {iconFile = "IconAddon calmCartersNotes.png", assembly = true},
    ['"Calm" - Class I'] =                   {iconFile = "IconAddon calmClassI.png", assembly = true},
    ['"Calm" - Class II'] =                  {iconFile = "IconAddon calmClassII.png", assembly = true},
    ['"Discipline" - Carter\'s Notes'] =     {iconFile = "IconAddon disciplineCartersNotes.png", assembly = true},
    ['"Discipline" - Class II'] =            {iconFile = "IconAddon disciplineClassII.png", assembly = true},
    ['"Discipline" - Class III'] =           {iconFile = "IconAddon disciplineClassIII.png", assembly = true},
    ["High Stimulus Electrode"] =            {iconFile = "IconAddon highStimulusElectrode.png", assembly = true},
    ["Interview Tape"] =                     {iconFile = "IconAddon interviewTape.png", assembly = true},
    ["Iridescent King"] =                    {iconFile = "IconAddon iridescentKing.png", assembly = true},
    ["Iridescent Queen"] =                   {iconFile = "IconAddon iridescentQueen.png", assembly = true},
    ["Maple Knight"] =                       {iconFile = "IconAddon mapleKnight.png", assembly = true},
    ["Mouldy Electrode"] =                   {iconFile = "IconAddon mouldyElectrode.png", assembly = true},
    ['"Obedience" - Carter\'s Notes'] =      {iconFile = "IconAddon obedienceCartersNotes.png", assembly = true},
    ['"Obedience" - Class III'] =            {iconFile = "IconAddon obedienceClassIII.png", assembly = true},
    ['"Order" - Carter\'s Notes'] =          {iconFile = "IconAddon orderCartersNotes.png", assembly = true},
    ['"Order" - Class I'] =                  {iconFile = "IconAddon orderClassI.png", assembly = true},
    ['"Order" - Class II'] =                 {iconFile = "IconAddon orderClassII.png", assembly = true},
    ["Polished Electrode"] =                 {iconFile = "IconAddon polishedElectrode.png", assembly = true},
    ['"Restraint" - Carter\'s Notes'] =      {iconFile = "IconAddon restraintCartersNotes.png", assembly = true},
    ['"Restraint" - Class II'] =             {iconFile = "IconAddon restraintClassII.png", assembly = true},
    ['"Restraint" - Class III'] =            {iconFile = "IconAddon restraintClassIII.png", assembly = true},
    ["Scrapped Tape"] =                      {iconFile = "IconAddon scrappedTape.png", assembly = true},

    --------------------------- Chainsaws ---------------------------
    ["Apex Muffler"] =                       {iconFile = "IconAddon apexMuffler.png", assembly = true},
    ["Award-winning Chilli"] =               {iconFile = "IconAddon award-winningChilli.png", assembly = true},
    ["Begrimed Chains (Bubba's Chainsaw)"] =  {iconFile = "IconAddon begrimedChains.png", assembly = true},
    ["Begrimed Chains (Chainsaw)"] =          {iconFile = "IconAddon begrimedChains.png", assembly = true},
    ["Big Buckle"] =                         {iconFile = "IconAddon bigBuckle.png", assembly = true},
    ["Black Grease"] =                       {iconFile = "IconAddon blackGrease.png", assembly = true},
    ["Carburettor Tuning Guide"] =           {iconFile = "IconAddon carburettorTuningGuide.png", assembly = true},
    ["Chainsaw File"] =                      {iconFile = "IconAddon chainsawFile.png", assembly = true},
    ["Chilli"] =                             {iconFile = "IconAddon chilli.png", assembly = true},
    ["Clogged Intake"] =                     {iconFile = "IconAddon cloggedIntake.png", assembly = true},
    ["Counterweight"] =                      {iconFile = "IconAddon counterweight.png", assembly = true},
    ["Cracked Primer Bulb"] =                {iconFile = "IconAddon crackedPrimerBulb.png", assembly = true},
    ["Dad's Boots"] =                        {iconFile = "IconAddon dadsBoots.png", assembly = true},
    ["Depth Gauge Rake"] =                   {iconFile = "IconAddon depthGaugeRake.png", assembly = true},
    ["Death Engravings"] =                   {iconFile = "IconAddon deathEngravings.png", assembly = true},
    ["Discarded Air Filter"] =               {iconFile = "IconAddon discardedAirFilter.png", assembly = true},
    ["Doom Engravings"] =                    {iconFile = "IconAddon doomEngravings.png", assembly = true},
    ["Filthy Slippers"] =                    {iconFile = "IconAddon filthySlippers.png", assembly = true},
    ["Greased Throttle"] =                   {iconFile = "IconAddon greasedThrottle.png", assembly = true},
    ["Grisly Chains"] =                      {iconFile = "IconAddon grislyChains.png", assembly = true},
    ["Heavy Clutch"] =                       {iconFile = "IconAddon heavyClutch.png", assembly = true},
    ["High-Speed Idler Screw"] =             {iconFile = "IconAddon highSpeedIdlerScrew.png", assembly = true},
    ["Homemade Muffler"] =                   {iconFile = "IconAddon homemadeMuffler.png", assembly = true},
    ["Iridescent Brick"] =                   {iconFile = "IconAddon iridescentBrick.png", assembly = true},
    ["Iridescent Engravings"] =              {iconFile = "IconAddon iridescentEngravings.png", assembly = true},
    ["Iridescent Flesh"] =                   {iconFile = "IconAddon iridescentFlesh.png", assembly = true},
    ["Junkyard Air Filter"] =                {iconFile = "IconAddon junkyardAirFilter.png", assembly = true},
    ["Knife Scratches"] =                    {iconFile = "IconAddon knifeScratches.png", assembly = true},
    ["Leafy Mash"] =                         {iconFile = "IconAddon leafyMash.png", assembly = true},
    ["Light Chassis"] =                      {iconFile = "IconAddon lightChassis.png", assembly = true},
    ["Long Guide Bar"] =                     {iconFile = "IconAddon longGuideBar.png", assembly = true},
    ["LoPro Chains"] =                       {iconFile = "IconAddon loProChains.png", assembly = true},
    ["Low Kickback Chains"] =                {iconFile = "IconAddon lowKickbackChains.png", assembly = true},
    ["Mother's Helpers"] =                   {iconFile = "IconAddon mothersHelpers.png", assembly = true},
    ["Off-Brand Motor Oil"] =                {iconFile = "IconAddon off-brandMotorOil.png", assembly = true},
    ["Pighouse Gloves"] =                    {iconFile = "IconAddon pighouseGloves.png", assembly = true},
    ["Primer Bulb"] =                        {iconFile = "IconAddon primerBulb.png", assembly = true},
    ["Punctured Muffler"] =                  {iconFile = "IconAddon puncturedMuffler.png", assembly = true},
    ["Ragged Engine"] =                      {iconFile = "IconAddon raggedEngine.png", assembly = true},
    ["Rusted Chains"] =                      {iconFile = "IconAddon rustedChains.png", assembly = true},
    ["Shop Lubricant"] =                     {iconFile = "IconAddon shopLubricant.png", assembly = true},
    ["Spark Plug"] =                         {iconFile = "IconAddon sparkPlug.png", assembly = true},
    ["Speed Limiter"] =                      {iconFile = "IconAddon speedLimiter.png", assembly = true},
    ["Spiked Boots"] =                       {iconFile = "IconAddon spikedBoots.png", assembly = true},
    ["Steel Toe Boots"] =                    {iconFile = "IconAddon steelToeBoots.png", assembly = true},
    ["The Beast's Marks"] =                  {iconFile = "IconAddon theBeastsMarks.png", assembly = true},
    ["The Grease"] =                         {iconFile = "IconAddon theGrease.png", assembly = true},
    ["The Thompsons' Mix"] =                 {iconFile = "IconAddon theThompsonsMix.png", assembly = true},
    ["Thermal Casing"] =                     {iconFile = "IconAddon thermalCasing.png", assembly = true},
    ["Thompson's Moonshine"] =               {iconFile = "IconAddon thompsonsMoonshine.png", assembly = true},
    ["Tuned Carburettor"] =                  {iconFile = "IconAddon tunedCarburettor.png", assembly = true},
    ["Vegetable Oil"] =                      {iconFile = "IconAddon vegetableOil.png", assembly = true},


    --------------------------- Deluge of Fear ---------------------------
    ["Bloody Fingernails"] =                 {iconFile = "IconAddon bloodyFingernails.png", assembly = true},
    ["Cabin Sign"] =                         {iconFile = "IconAddon cabinSign.png", assembly = true},
    ["Clump of Hair"] =                      {iconFile = "IconAddon clumpOfHair.png", assembly = true},
    ["Distorted Photo"] =                    {iconFile = "IconAddon distortedPhoto.png", assembly = true},
    ["Iridescent Videotape"] =               {iconFile = "IconAddon iridescentVideotape.png", assembly = true},
    ["Mother's Comb"] =                      {iconFile = "IconAddon mothersComb.png", assembly = true},
    ["Mother's Mirror"] =                    {iconFile = "IconAddon mothersMirror.png", assembly = true},
    ["Old Newspaper"] =                      {iconFile = "IconAddon oldNewspaper.png", assembly = true},
    ["Reiko's Watch"] =                      {iconFile = "IconAddon reikosWatch.png", assembly = true},
    ["Remote Control"] =                     {iconFile = "IconAddon remoteControl.png", assembly = true},
    ["Rickety Pinwheel"] =                   {iconFile = "IconAddon ricketyPinwheel.png", assembly = true},
    ["Ring Drawing"] =                       {iconFile = "IconAddon ringDrawing.png", assembly = true},
    ["Sea-Soaked Cloth"] =                   {iconFile = "IconAddon seaSoakedCloth.png", assembly = true},
    ["Tape Editing Deck"] =                  {iconFile = "IconAddon tapeEditingDeck.png", assembly = true},
    ["Telephone"] =                          {iconFile = "IconAddon telephone.png", assembly = true},
    ["VCR"] =                                {iconFile = "IconAddon vcr.png", assembly = true},
    ["Videotape Copy"] =                     {iconFile = "IconAddon videotapeCopy.png", assembly = true},
    ["Well Stone"] =                         {iconFile = "IconAddon wellStone.png", assembly = true},
    ["Well Water"] =                         {iconFile = "IconAddon wellWater.png", assembly = true},
    ["Yoichi's Fishing Net"] =               {iconFile = "IconAddon yoichisFishingNet.png", assembly = true},


    --------------------------- Dream Demon ---------------------------
    ["Black Box"] =                          {iconFile = "IconAddon blackBox.png", assembly = true},
    ["Blue Dress"] =                         {iconFile = "IconAddon blueDress.png", assembly = true},
    ["Cat Block"] =                          {iconFile = "IconAddon catBlock.png", assembly = true},
    ["Class Photo"] =                        {iconFile = "IconAddon classPhoto.png", assembly = true},
    ["Garden Rake"] =                        {iconFile = "IconAddon gardenRake.png", assembly = true},
    ["Green Dress"] =                        {iconFile = "IconAddon greenDress.png", assembly = true},
    ["Jump Rope (Dream Demon)"] =            {iconFile = "IconAddon jumpRopeDreamDemon.png", assembly = true},
    ["Kid's Drawing"] =                      {iconFile = "IconAddon kidsDrawing.png", assembly = true},
    ["Nancy's Masterpiece"] =                {iconFile = "IconAddon nancysMasterpiece.png", assembly = true},
    ["Nancy's Sketch"] =                     {iconFile = "IconAddon nancysSketch.png", assembly = true},
    ["Outdoor Rope"] =                       {iconFile = "IconAddon outdoorRope.png", assembly = true},
    ["Paint Thinner"] =                      {iconFile = "IconAddon paintThinner.png", assembly = true},
    ["Pill Bottle"] =                        {iconFile = "IconAddon pillBottle.png", assembly = true},
    ["Prototype Claws"] =                    {iconFile = "IconAddon prototypeClaws.png", assembly = true},
    ["Red Paint Brush"] =                    {iconFile = "IconAddon redPaintBrush.png", assembly = true},
    ["Sheep Block"] =                        {iconFile = "IconAddon sheepBlock.png", assembly = true},
    ["Swing Chains"] =                       {iconFile = "IconAddon swingChains.png", assembly = true},
    ["Unicorn Block"] =                      {iconFile = "IconAddon unicornBlock.png", assembly = true},
    ["Wool Shirt"] =                         {iconFile = "IconAddon woolShirt.png", assembly = true},
    ['"Z" Block'] =                          {iconFile = "IconAddon zBlock.png", assembly = true},


    --------------------------- Evil Within ---------------------------
    ["Boyfriend's Memo"] =                   {iconFile = "IconAddon boyfriendsMemo.png", assembly = true},
    ["Blond Hair"] =                         {iconFile = "IconAddon blondHair.png", assembly = true},
    ["Dead Rabbit"] =                        {iconFile = "IconAddon deadRabbit.png", assembly = true},
    ["Fragrant Tuft of Hair"] =              {iconFile = "IconAddon fragrantTuftOfHair.png", assembly = true},
    ["Glass Fragment"] =                     {iconFile = "IconAddon glassFragment.png", assembly = true},
    ["Hair Bow"] =                           {iconFile = "IconAddon hairBow.png", assembly = true},
    ["Hair Brush"] =                         {iconFile = "IconAddon hairBrush.png", assembly = true},
    ["J. Myers Memorial"] =                  {iconFile = "IconAddon jMyersMemorial.png", assembly = true},
    ["Jewellery"] =                          {iconFile = "IconAddon jewellery.png", assembly = true},
    ["Jewellery Box"] =                      {iconFile = "IconAddon jewelleryBox.png", assembly = true},
    ["Judith's Journal"] =                   {iconFile = "IconAddon judithsJournal.png", assembly = true},
    ["Judith's Tombstone"] =                 {iconFile = "IconAddon judithsTombstone.png", assembly = true},
    ["Lock of Hair"] =                       {iconFile = "IconAddon lockOfHair.png", assembly = true},
    ["Memorial Flower"] =                    {iconFile = "IconAddon memorialFlower.png", assembly = true},
    ["Mirror Shard"] =                       {iconFile = "IconAddon mirrorShard.png", assembly = true},
    ["Reflective Fragment"] =                {iconFile = "IconAddon reflectiveFragment.png", assembly = true},
    ["Scratched Mirror"] =                   {iconFile = "IconAddon scratchedMirror.png", assembly = true},
    ["Tacky Earrings"] =                     {iconFile = "IconAddon tackyEarrings.png", assembly = true},
    ["Tombstone Piece"] =                    {iconFile = "IconAddon tombstonePiece.png", assembly = true},
    ["Vanity Mirror"] =                      {iconFile = "IconAddon vanityMirror.png", assembly = true},


    --------------------------- Eyes in the Sky ---------------------------
    ["Adaptive Lighting"] =                  {iconFile = "IconAddon adaptiveLighting.png", assembly = true},
    ["Adi Valente Issue 1"] =                {iconFile = "IconAddon adiValenteIssue1.png", assembly = true},
    ["Advanced Movement Prediction"] =       {iconFile = "IconAddon advancedMovementPrediction.png", assembly = true},
    ["Brown Noise Generator"] =              {iconFile = "IconAddon brownNoiseGenerator.png", assembly = true},
    ["Expired Batteries"] =                  {iconFile = "IconAddon expiredBatteries.png", assembly = true},
    ["Geographical Readout"] =               {iconFile = "IconAddon geographicalReadout.png", assembly = true},
    ["High-Current Upgrade"] =               {iconFile = "IconAddon high-CurrentUpgrade.png", assembly = true},
    ["High-Power Floodlight"] =              {iconFile = "IconAddon high-PowerFloodlight.png", assembly = true},
    ["Infrared Upgrade"] =                   {iconFile = "IconAddon infraredUpgrade.png", assembly = true},
    ["Iridescent Unpublished Manuscript"] =  {iconFile = "IconAddon iridescentUnpublishedManuscript.png", assembly = true},
    ["Loose Screw"] =                        {iconFile = "IconAddon looseScrew.png", assembly = true},
    ["Low-Power Mode"] =                     {iconFile = "IconAddon low-PowerMode.png", assembly = true},
    ["Powdered Glass"] =                     {iconFile = "IconAddon powderedGlass.png", assembly = true},
    ["Prototype Rotor"] =                    {iconFile = "IconAddon prototypeRotor.png", assembly = true},
    ["Randomised Strobes"] =                 {iconFile = "IconAddon randomisedStrobes.png", assembly = true},
    ["Shotgun Speakers"] =                   {iconFile = "IconAddon shotgunSpeakers.png", assembly = true},
    ["Stereo Remote Mic"] =                  {iconFile = "IconAddon stereoRemoteMic.png", assembly = true},
    ["Supercharge"] =                        {iconFile = "IconAddon supercharge.png", assembly = true},
    ["Ultrasonic Speaker"] =                 {iconFile = "IconAddon ultrasonicSpeaker.png", assembly = true},    
    ["Vital Targeting Processor"] =          {iconFile = "IconAddon vitalTargetingProcessor.png", assembly = true},
    
    
    --------------------------- Feral Frenzy ---------------------------
    ["BFFs"] =                               {iconFile = "IconAddon bffs.png", assembly = true},
    ["Cold Dirt"] =                          {iconFile = "IconAddon coldDirt.png", assembly = true},
    ["Defaced Smiley Pin"] =                 {iconFile = "IconAddon defacedSmileyPin.png", assembly = true},
    ["Etched Ruler"] =                       {iconFile = "IconAddon etchedRuler.png", assembly = true},
    ["Filthy Blade"] =                       {iconFile = "IconAddon filthyBlade.png", assembly = true},
    ["Frank's Mix Tape"] =                   {iconFile = "IconAddon franksMixTape.png", assembly = true},
    ["Friendship Bracelet"] =                {iconFile = "IconAddon friendshipBracelet.png", assembly = true},
    ["Fuming Mix Tape"] =                    {iconFile = "IconAddon fumingMixTape.png", assembly = true},
    ["Iridescent Button"] =                  {iconFile = "IconAddon iridescentButton.png", assembly = true},
    ["Joey's Mix Tape"] =                    {iconFile = "IconAddon joeysMixTape.png", assembly = true},
    ["Julie's Mix Tape"] =                   {iconFile = "IconAddon juliesMixTape.png", assembly = true},
    ["Mischief List"] =                      {iconFile = "IconAddon mischiefList.png", assembly = true},
    ["Mural Sketch"] =                       {iconFile = "IconAddon muralSketch.png", assembly = true},
    ["Nasty Blade"] =                        {iconFile = "IconAddon nastyBlade.png", assembly = true},
    ["Never-Sleep Pills"] =                  {iconFile = "IconAddon never-SleepPills.png", assembly = true},
    ["Scratched Ruler"] =                    {iconFile = "IconAddon scratchedRuler.png", assembly = true},
    ["Smiley Face Pin"] =                    {iconFile = "IconAddon smileyFacePin.png", assembly = true},
    ["Stab Wounds Study"] =                  {iconFile = "IconAddon stabWoundsStudy.png", assembly = true},
    ["Stolen Sketch Book"] =                 {iconFile = "IconAddon stolenSketchBook.png", assembly = true},
    ["Stylish Sunglasses"] =                 {iconFile = "IconAddon stylishSunglasses.png", assembly = true},
    ["Susie's Mix Tape"] =                   {iconFile = "IconAddon susiesMixTape.png", assembly = true},
    ["The Legion Pin"] =                     {iconFile = "IconAddon theLegionPin.png", assembly = true},


    --------------------------- Flashlight ---------------------------
    ["Battery"] =                            {iconFile = "IconAddon battery.png", assembly = true},
    ["Broken Bulb"] =                        {iconFile = "IconAddon brokenBulb.png", assembly = true},
    ["Focus Lens"] =                         {iconFile = "IconAddon focusLens.png", assembly = true},
    ["Heavy Duty Battery"] =                 {iconFile = "IconAddon heavyDutyBattery.png", assembly = true},
    ["High-End Sapphire Lens"] =             {iconFile = "IconAddon high-EndSapphireLens.png", assembly = true},
    ["Intense Halogen"] =                    {iconFile = "IconAddon intenseHalogen.png", assembly = true},
    ["Leather Grip"] =                       {iconFile = "IconAddon leatherGrip.png", assembly = true},
    ["Long Life Battery"] =                  {iconFile = "IconAddon longLifeBattery.png", assembly = true},
    ["Low Amp Filament"] =                   {iconFile = "IconAddon lowAmpFilament.png", assembly = true},
    ["Odd Bulb"] =                           {iconFile = "IconAddon oddBulb.png", assembly = true},
    ["Power Bulb"] =                         {iconFile = "IconAddon powerBulb.png", assembly = true},
    ["Rubber Grip"] =                        {iconFile = "IconAddon rubberGrip.png", assembly = true},
    ["TIR Optic"] =                          {iconFile = "IconAddon tirOptic.png", assembly = true},
    ["Wide Lens"] =                          {iconFile = "IconAddon wideLens.png", assembly = true},


    --------------------------- Guardia Compagnia ---------------------------
    ["Battle Axe Head"] =                    {iconFile = "IconAddon battleAxeHead.png", assembly = true},
    ["Blacksmith's Hammer"] =                {iconFile = "IconAddon blacksmithsHammer.png", assembly = true},
    ["Broken Hilt"] =                        {iconFile = "IconAddon brokenHilt.png", assembly = true},
    ["Call to Arms"] =                       {iconFile = "IconAddon callToArms.png", assembly = true},
    ["Chain Mail Fragment"] =                {iconFile = "IconAddon chainMailFragment.png", assembly = true},
    ["Cold Steel Manacles"] =                {iconFile = "IconAddon coldSteelManacles.png", assembly = true},
    ["Dried Horsemeat"] =                    {iconFile = "IconAddon driedHorsemeat.png", assembly = true},
    ["Flint and Steel"] =                    {iconFile = "IconAddon flintAndSteel.png", assembly = true},
    ["Grim Iron Mask"] =                     {iconFile = "IconAddon grimIronMask.png", assembly = true},
    ["Gritty Lump"] =                        {iconFile = "IconAddon grittyLump.png", assembly = true},
    ["Healing Poultice"] =                   {iconFile = "IconAddon healingPoultice.png", assembly = true},
    ["Iridescent Company Banner"] =          {iconFile = "IconAddon iridescentCompanyBanner.png", assembly = true},
    ["Ironworker's Tongs"] =                 {iconFile = "IconAddon ironworkersTongs.png", assembly = true},
    ["Jailer's Chimes"] =                    {iconFile = "IconAddon jailersChimes.png", assembly = true},
    ["Knight's Contract"] =                  {iconFile = "IconAddon knightsContract.png", assembly = true},
    ["Lightweight Greaves"] =                {iconFile = "IconAddon lightweightGreaves.png", assembly = true},
    ["Map of the Realm"] =                   {iconFile = "IconAddon mapOfTheRealm.png", assembly = true},
    ["Pillaged Mead"] =                      {iconFile = "IconAddon pillagedMead.png", assembly = true},
    ["Sharpened Mount"] =                    {iconFile = "IconAddon sharpenedMount.png", assembly = true},
    ["Tattered Tabard"] =                    {iconFile = "IconAddon tatteredTabard.png", assembly = true},
    ["Town Watch's Torch"] =                 {iconFile = "IconAddon townWatchsTorch.png", assembly = true},
    ["Treated Blade"] =                      {iconFile = "IconAddon treatedBlade.png", assembly = true},
    
    
    --------------------------- Hidden Pursuit ---------------------------
    ["Acidic Blood"] =                       {iconFile = "IconAddon acidicBlood.png", assembly = true},
    ["Ash's Innards"] =                      {iconFile = "IconAddon ashsInnards.png", assembly = true},
    ["Brett's Cap"] =                        {iconFile = "IconAddon brettsCap.png", assembly = true},
    ["Cat Carrier"] =                        {iconFile = "IconAddon catCarrier.png", assembly = true},
    ["Cereal Rations"] =                     {iconFile = "IconAddon cerealRations.png", assembly = true},
    ["Crew Headset"] =                       {iconFile = "IconAddon crewHeadset.png", assembly = true},
    ["Drinking Bird"] =                      {iconFile = "IconAddon drinkingBird.png", assembly = true},
    ["Emergency Helmet"] =                   {iconFile = "IconAddon emergencyHelmet.png", assembly = true},
    ["Harpoon Gun"] =                        {iconFile = "IconAddon harpoonGun.png", assembly = true},
    ["Improvised Cattle Prod"] =             {iconFile = "IconAddon improvisedCattleProd.png", assembly = true},
    ["Kane's Helmet"] =                      {iconFile = "IconAddon kanesHelmet.png", assembly = true},
    ["Lambert's Star Map"] =                 {iconFile = "IconAddon lambertsStarMap.png", assembly = true},
    ["Light Wand"] =                         {iconFile = "IconAddon lightWand.png", assembly = true},
    ["Moulted Skin"] =                       {iconFile = "IconAddon moultedSkin.png", assembly = true},
    ["Multipurpose Hatchet"] =               {iconFile = "IconAddon multipurposeHatchet.png", assembly = true},
    ["Ovomorph"] =                           {iconFile = "IconAddon ovomorph.png", assembly = true},
    ["Parker's Headband"] =                  {iconFile = "IconAddon parkersHeadband.png", assembly = true},
    ["Ripley's Watch"] =                     {iconFile = "IconAddon ripleysWatch.png", assembly = true},
    ["Self-Destruct Bolt"] =                 {iconFile = "IconAddon selfDestructBolt.png", assembly = true},
    ["Semiotic Keyboard"] =                  {iconFile = "IconAddon semioticKeyboard.png", assembly = true},
    
    
    --------------------------- Hunting Hatchets ---------------------------
    ["Amanita Toxin"] =                      {iconFile = "IconAddon amanitaToxin.png", assembly = true},
    ["Bandaged Haft"] =                      {iconFile = "IconAddon bandagedHaft.png", assembly = true},
    ["Begrimed Head"] =                      {iconFile = "IconAddon begrimedHead.png", assembly = true},
    ["Berus Toxin"] =                        {iconFile = "IconAddon berusToxin.png", assembly = true},
    ["Coarse Stone"] =                       {iconFile = "IconAddon coarseStone.png", assembly = true},
    ["Deerskin Gloves"] =                    {iconFile = "IconAddon deerskinGloves.png", assembly = true},
    ["Fine Stone"] =                         {iconFile = "IconAddon fineStone.png", assembly = true},
    ["Flower Babushka"] =                    {iconFile = "IconAddon flowerBabushka.png", assembly = true},
    ["Glowing Concoction"] =                 {iconFile = "IconAddon glowingConcoction.png", assembly = true},
    ["Infantry Belt"] =                      {iconFile = "IconAddon infantryBelt.png", assembly = true},
    ["Iridescent Head"] =                    {iconFile = "IconAddon iridescentHead.png", assembly = true},
    ["Leather Loop"] =                       {iconFile = "IconAddon leatherLoop.png", assembly = true},
    ["Manna Grass Braid"] =                  {iconFile = "IconAddon mannaGrassBraid.png", assembly = true},
    ["Oak Haft"] =                           {iconFile = "IconAddon oakHaft.png", assembly = true},
    ["Pungent Phial"] =                      {iconFile = "IconAddon pungentPhial.png", assembly = true},
    ["Rose Root"] =                          {iconFile = "IconAddon roseRoot.png", assembly = true},
    ["Rusty Head"] =                         {iconFile = "IconAddon rustyHead.png", assembly = true},
    ["Shiny Pin"] =                          {iconFile = "IconAddon shinyPin.png", assembly = true},
    ["Soldier's Puttee"] =                   {iconFile = "IconAddon soldiersPuttee.png", assembly = true},
    ["Venomous Concoction"] =                {iconFile = "IconAddon venomousConcoction.png", assembly = true},
    ["Weighted Head"] =                      {iconFile = "IconAddon weightedHead.png", assembly = true},
    ["Wooden Fox"] =                         {iconFile = "IconAddon woodenFox.png", assembly = true},
    ["Yellowed Cloth"] =                     {iconFile = "IconAddon yellowedCloth.png", assembly = true},
    ["Yew Seed Brew"] =                      {iconFile = "IconAddon yewSeedBrew.png", assembly = true},
    ["Yew Seed Concoction"] =                {iconFile = "IconAddon yewSeedConcoction.png", assembly = true},
    

    --------------------------- Jigsaw's Baptism ---------------------------
    ["Amanda's Letter"] =                    {iconFile = "IconAddon amandasLetter.png", assembly = true},
    ["Amanda's Secret"] =                    {iconFile = "IconAddon amandasSecret.png", assembly = true},
    ["Bag of Gears"] =                       {iconFile = "IconAddon bagOfGears.png", assembly = true},
    ["Combat Straps"] =                      {iconFile = "IconAddon combatStraps.png", assembly = true},
    ["Crate of Gears"] =                     {iconFile = "IconAddon crateOfGears.png", assembly = true},
    ["Face Mask"] =                          {iconFile = "IconAddon faceMask.png", assembly = true},
    ["Interlocking Razor"] =                 {iconFile = "IconAddon interlockingRazor.png", assembly = true},
    ["Jigsaw's Annotated Plan"] =            {iconFile = "IconAddon jigsawsAnnotatedPlan.png", assembly = true},
    ["Jigsaw's Sketch"] =                    {iconFile = "IconAddon jigsawsSketch.png", assembly = true},
    ["John's Medical File"] =                {iconFile = "IconAddon johnsMedicalFile.png", assembly = true},
    ["Last Will"] =                          {iconFile = "IconAddon lastWill.png", assembly = true},
    ["Razor Wires"] =                        {iconFile = "IconAddon razorWires.png", assembly = true},
    ["Rules Set No.2"] =                     {iconFile = "IconAddon rulesSetNo.2.png", assembly = true},
    ["Rusty Attachments"] =                  {iconFile = "IconAddon rustyAttachments.png", assembly = true},
    ["Shattered Syringe"] =                  {iconFile = "IconAddon shatteredSyringe.png", assembly = true},
    ["Slow-Release Toxin"] =                 {iconFile = "IconAddon slow-ReleaseToxin.png", assembly = true},
    ["Tampered Timer"] =                     {iconFile = "IconAddon tamperedTimer.png", assembly = true},
    ["Utility Blades"] =                     {iconFile = "IconAddon utilityBlades.png", assembly = true},
    ["Video Tape"] =                         {iconFile = "IconAddon videoTape.png", assembly = true},
    ["Workshop Grease"] =                    {iconFile = "IconAddon workshopGrease.png", assembly = true},


    --------------------------- Map ---------------------------
    ["Black Silk Cord"] =                    {iconFile = "IconAddon blackSilkCord.png", assembly = true},
    ["Crystal Bead"] =                       {iconFile = "IconAddon crystalBead.png", assembly = true},
    ["Map Addendum"] =                       {iconFile = "IconAddon mapAddendum.png", assembly = true},
    ["Glass Bead"] =                         {iconFile = "IconAddon glassBead.png", assembly = true},
    ["Odd Stamp"] =                          {iconFile = "IconAddon oddStamp.png", assembly = true},
    ["Red Twine"] =                          {iconFile = "IconAddon redTwine.png", assembly = true},
    ["Retardant Jelly"] =                    {iconFile = "IconAddon retardantJelly.png", assembly = true},
    ["Unusual Stamp"] =                      {iconFile = "IconAddon unusualStamp.png", assembly = true},
    ["Yellow Wire"] =                        {iconFile = "IconAddon yellowWire.png", assembly = true},


    --------------------------- Med-Kit ---------------------------
    ["Abdominal Dressing"] =                 {iconFile = "IconAddon abdominalDressing.png", assembly = true},
    ["Anti-Haemorrhagic Syringe"] =          {iconFile = "IconAddon anti-haemorrhagicSyringe.png", assembly = true},
    ["Bandages"] =                           {iconFile = "IconAddon bandages.png", assembly = true},
    ["Butterfly Tape"] =                     {iconFile = "IconAddon butterflyTape.png", assembly = true},
    ["Gauze Roll"] =                         {iconFile = "IconAddon gauzeRoll.png", assembly = true},
    ["Gel Dressings"] =                      {iconFile = "IconAddon gelDressings.png", assembly = true},
    ["Medical Scissors"] =                   {iconFile = "IconAddon medicalScissors.png", assembly = true},
    ["Needle & Thread"] =                    {iconFile = "IconAddon needle&Thread.png", assembly = true},
    ["Refined Serum"] =                      {iconFile = "IconAddon refinedSerum.png", assembly = true},
    ["Rubber Gloves"] =                      {iconFile = "IconAddon rubberGloves.png", assembly = true},
    ["Self Adherent Wrap"] =                 {iconFile = "IconAddon selfAdherentWrap.png", assembly = true},
    ["Sponge"] =                             {iconFile = "IconAddon sponge.png", assembly = true},
    ["Styptic Agent"] =                      {iconFile = "IconAddon stypticAgent.png", assembly = true},
    ["Surgical Suture"] =                    {iconFile = "IconAddon surgicalSuture.png", assembly = true},


    --------------------------- Night Shroud ---------------------------
    ["Cheap Cologne"] =                      {iconFile = "IconAddon cheapCologne.png", assembly = true},
    ["Chewed Pen"] =                         {iconFile = "IconAddon chewedPen.png", assembly = true},
    ["Cinch Straps"] =                       {iconFile = "IconAddon cinchStraps.png", assembly = true},
    ["Driver's License"] =                   {iconFile = "IconAddon driversLicense.png", assembly = true},
    ["Drop-Leg Knife Sheath"] =              {iconFile = "IconAddon drop-LegKnifeSheath.png", assembly = true},
    ['"Ghost Face Caught on Tape"'] =        {iconFile = "IconAddon caughtOnTape.png", assembly = true},
    ["Headline Cut-Outs"] =                  {iconFile = "IconAddon headlineCut-Outs.png", assembly = true},
    ["Knife Belt Clip"] =                    {iconFile = "IconAddon knifeBeltClip.png", assembly = true},
    ["Lasting Perfume"] =                    {iconFile = "IconAddon lastingPerfume.png", assembly = true},
    ["Leather Knife Sheath"] =               {iconFile = "IconAddon leatherKnifeSheath.png", assembly = true},
    ["Marked Map"] =                         {iconFile = "IconAddon markedMap.png", assembly = true},
    ["Night Vision Monocular"] =             {iconFile = "IconAddon nightVisionMonocular.png", assembly = true},
    ["Olsen's Address Book"] =               {iconFile = "IconAddon olsensAddressBook.png", assembly = true},
    ["Olsen's Journal"] =                    {iconFile = "IconAddon olsensJournal.png", assembly = true},
    ["Olsen's Wallet"] =                     {iconFile = "IconAddon olsensWallet.png", assembly = true},
    ["Outdoor Security Camera"] =            {iconFile = "IconAddon outdoorSecurityCamera.png", assembly = true},
    ['"Philly"'] =                           {iconFile = "IconAddon philly.png", assembly = true},
    ["Telephoto Lens"] =                     {iconFile = "IconAddon telephotoLens.png", assembly = true},
    ["Victim's Detailed Routine"] =          {iconFile = "IconAddon victimsDetailedRoutine.png", assembly = true},
    ["Walleye's Matchbook"] =                {iconFile = "IconAddon walleyesMatchbook.png", assembly = true},


    --------------------------- Of the Abyss ---------------------------
    ["Barb's Glasses"] =                     {iconFile = "IconAddon barbsGlasses.png", assembly = true},
    ["Black Heart"] =                        {iconFile = "IconAddon blackHeart.png", assembly = true},
    ["Brass Case Lighter"] =                 {iconFile = "IconAddon brassCaseLighter.png", assembly = true},
    ["Deer Lung"] =                          {iconFile = "IconAddon deerLung.png", assembly = true},
    ["Eleven's Soda"] =                      {iconFile = "IconAddon elevensSoda.png", assembly = true},
    ["Leprose Lichen"] =                     {iconFile = "IconAddon leproseLichen.png", assembly = true},
    ["Lifeguard Whistle"] =                  {iconFile = "IconAddon lifeguardWhistle.png", assembly = true},
    ["Mews' Guts"] =                         {iconFile = "IconAddon mewsGuts.png", assembly = true},
    ["Rat Liver"] =                          {iconFile = "IconAddon ratLiver.png", assembly = true},
    ["Rat Tail"] =                           {iconFile = "IconAddon ratTail.png", assembly = true},
    ["Red Moss"] =                           {iconFile = "IconAddon redMoss.png", assembly = true},
    ["Rotten Green Tripe"] =                 {iconFile = "IconAddon rottenGreenTripe.png", assembly = true},
    ["Rotten Pumpkin"] =                     {iconFile = "IconAddon rottenPumpkin.png", assembly = true},
    ["Sticky Lining"] =                      {iconFile = "IconAddon stickyLining.png", assembly = true},
    ["Thorny Vines"] =                       {iconFile = "IconAddon thornyVines.png", assembly = true},
    ["Unknown Egg"] =                        {iconFile = "IconAddon unknownEgg.png", assembly = true},
    ["Upside Down Resin"] =                  {iconFile = "IconAddon upsideDownResin.png", assembly = true},
    ["Vermilion Webcap"] =                   {iconFile = "IconAddon vermilionWebcap.png", assembly = true},
    ["Violet Waxcap"] =                      {iconFile = "IconAddon violetWaxcap.png", assembly = true},
    ["Viscous Webbing"] =                    {iconFile = "IconAddon viscousWebbing.png", assembly = true},


    --------------------------- Key ---------------------------
    ["Blood Amber"] =                        {iconFile = "IconAddon bloodAmber.png", assembly = true},
    ["Eroded Token"] =                       {iconFile = "IconAddon erodedToken.png", assembly = true},
    ["Gold Token"] =                         {iconFile = "IconAddon goldToken.png", assembly = true},
    ["Milky Glass"] =                        {iconFile = "IconAddon milkyGlass.png", assembly = true},
    ["Prayer Beads"] =                       {iconFile = "IconAddon prayerBeads.png", assembly = true},
    ["Prayer Rope"] =                        {iconFile = "IconAddon prayerRope.png", assembly = true},
    ["Scratched Pearl"] =                    {iconFile = "IconAddon scratchedPearl.png", assembly = true},
    ["Unique Wedding Ring"] =                {iconFile = "IconAddon uniqueWeddingRing.png", assembly = true},
    ["Weaved Ring"] =                        {iconFile = "IconAddon weavedRing.png", assembly = true},


	--------------------------- One-Eyed Terror ---------------------------
    ["Amon's Necktie"]                    = {iconFile = "T UI iconAddon AmonsNecktie.png", assembly = true},
    ["Anteiku Apron"]                     = {iconFile = "T UI iconAddon AnteikuApron.png", assembly = true},
    ["Aogiri Tree Robe"]                  = {iconFile = "T UI iconAddon AogiriTreeRobe.png", assembly = true},
    ["Blood-Stained Handkerchief"]        = {iconFile = "T UI iconAddon bloodStainedHandkerchief.png", assembly = true},
    ["Broken Chain"]                      = {iconFile = "T UI iconAddon brokenChain.png", assembly = true},
    ["CCG ID Card"]                       = {iconFile = "T UI iconAddon CCGIDCard.png", assembly = true},
    ["Fresh Coffee"]                      = {iconFile = "T UI iconAddon freshCoffee.png", assembly = true},
    ["Hide's Headphones"]                 = {iconFile = "T UI iconAddon HidesHeadphones.png", assembly = true},
    ["Hinami's Umbrella"]                 = {iconFile = "T UI iconAddon HinamisUmbrella.png", assembly = true},
    ["Iridescent Eye Patch"]              = {iconFile = "T UI iconAddon iridescentEyePatch.png", assembly = true},
    ["Kaneki's Satchel"]                  = {iconFile = "T UI iconAddon satchel.png", assembly = true},
    ["Kaneki's Wallet"]                   = {iconFile = "T UI iconAddon KanekisWallet.png", assembly = true},
    ["Mado's Glove"]                      = {iconFile = "T UI iconAddon MadosGlove.png", assembly = true},
    ["Red Spider Lily"]                   = {iconFile = "T UI iconAddon redSpiderLily.png", assembly = true},
    ["Red-Headed Centipede"]              = {iconFile = "T UI iconAddon redHeadedCentipede.png", assembly = true},
    ["Rize's Glasses"]                    = {iconFile = "T UI iconAddon RizesGlasses.png", assembly = true},
    ["Taiyaki"]                           = {iconFile = "T UI iconAddon taiyaki.png", assembly = true},
    ["The Black Goat's Egg"]              = {iconFile = "T UI iconAddon TheBlackGoatsEgg.png", assembly = true},
    ["Torture Apparatus"]                 = {iconFile = "T UI iconAddon medicalApparatus.png", assembly = true},
    ["Yamori's Mask"]                     = {iconFile = "T UI iconAddon YamorisMask.png", assembly = true},
    
    
    --------------------------- Playtime's Over ---------------------------
    ["Automatic Screwdriver"] =              {iconFile = "IconAddon automaticScrewdriver.png", assembly = true},
    ["Doll Eyes"] =                          {iconFile = "IconAddon dollEyes.png", assembly = true},
    ["Electric Carving Knife"] =             {iconFile = "IconAddon electricCarvingKnife.png", assembly = true},
    ["Good Guy Box"] =                       {iconFile = "IconAddon goodGuyBox.png", assembly = true},
    ["Hair Spray & Candle"] =                {iconFile = "IconAddon hairSprayCandle.png", assembly = true},
    ["Hard Hat"] =                           {iconFile = "IconAddon hardHat.png", assembly = true},
    ["Iridescent Amulet"] =                  {iconFile = "IconAddon iridescentAmulet.png", assembly = true},
    ["Jump Rope (Playtime's Over)"] =        {iconFile = "IconAddon jumpRopePlaytimesOver.png", assembly = true},
    ["Mirror Shards"] =                      {iconFile = "IconAddon mirrorShards.png", assembly = true},
    ["Pile of Nails"] =                      {iconFile = "IconAddon pileOfNails.png", assembly = true},
    ["Plastic Bag"] =                        {iconFile = "IconAddon plasticBag.png", assembly = true},
    ["Portable TV"] =                        {iconFile = "IconAddon portableTv.png", assembly = true},
    ["Power Drill"] =                        {iconFile = "IconAddon powerDrill.png", assembly = true},
    ["Rat Poison"] =                         {iconFile = "IconAddon ratPoison.png", assembly = true},
    ["Running Shoes"] =                      {iconFile = "IconAddon runningShoes.png", assembly = true},
    ["Silk Pillow"] =                        {iconFile = "IconAddon silkPillow.png", assembly = true},
    ["Straight Razor"] =                     {iconFile = "IconAddon straightRazor.png", assembly = true},
    ["Strobing Light"] =                     {iconFile = "IconAddon strobingLight.png", assembly = true},
    ["Tiny Scalpel"] =                       {iconFile = "IconAddon tinyScalpel.png", assembly = true},
    ["Yardstick"] =                          {iconFile = "IconAddon yardstick.png", assembly = true},

    
    --------------------------- Quantum Instantiation ---------------------------
    ["Android Arm"] =                        {iconFile = "IconAddon androidArm.png", assembly = true},
    ["Broken Security Key"] =                {iconFile = "IconAddon brokenSecurityKey.png", assembly = true},
    ["Cremated Remains"] =                   {iconFile = "IconAddon crematedRemains.png", assembly = true},
    ["Crew Manifest"] =                      {iconFile = "IconAddon crewManifest.png", assembly = true},
    ["Cryo Gel"] =                           {iconFile = "IconAddon cryoGel.png", assembly = true},
    ["Denied Requisition Form"] =            {iconFile = "IconAddon deniedRequisitionForm.png", assembly = true},
    ["Diagnostic Tool (Construction)"] =     {iconFile = "IconAddon diagnosticToolConstruction.png", assembly = true},
    ["Diagnostic Tool (Repair)"] =           {iconFile = "IconAddon diagnosticToolRepair.png", assembly = true},
    ["Foreign Plant Fibres"] =               {iconFile = "IconAddon foreignPlantFibres.png", assembly = true},
    ["Heavy Water"] =                        {iconFile = "IconAddon heavyWater.png", assembly = true},
    ["Hologram Generator"] =                 {iconFile = "IconAddon hologramGenerator.png", assembly = true},
    ["Hyperawareness Spray"] =               {iconFile = "IconAddon hyperawarenessSpray.png", assembly = true},
    ["Iridescent Crystal Shard"] =           {iconFile = "IconAddon iridescentCrystalShard.png", assembly = true},
    ["Kid's Ball Glove"] =                   {iconFile = "IconAddon kidsBallGlove.png", assembly = true},
    ["Live Wires"] =                         {iconFile = "IconAddon liveWires.png", assembly = true},
    ["Nanomachine Gel"] =                    {iconFile = "IconAddon nanomachineGel.png", assembly = true},
    ["Nutritional Slurry"] =                 {iconFile = "IconAddon nutritionalSlurry.png", assembly = true},
    ["Soma Family Photo"] =                  {iconFile = "IconAddon somaFamilyPhoto.png", assembly = true},
    ["Spent Oxygen Tank"] =                  {iconFile = "IconAddon spentOxygenTank.png", assembly = true},
    ["Ultrasonic Sensor"] =                  {iconFile = "IconAddon ultrasonicSensor.png", assembly = true},
    
    
    --------------------------- The Redeemer ---------------------------
    ["Barbed Wire"] =                        {iconFile = "IconAddon barbedWire.png", assembly = true},
    ["Bayshore's Cigar"] =                   {iconFile = "IconAddon bayshoresCigar.png", assembly = true},
    ["Bayshore's Gold Tooth"] =              {iconFile = "IconAddon bayshoresGoldTooth.png", assembly = true},
    ["Chewing Tobacco"] =                    {iconFile = "IconAddon chewingTobacco.png", assembly = true},
    ["Gold Creek Whiskey"] =                 {iconFile = "IconAddon goldCreekWhiskey.png", assembly = true},
    ["Hellshire Iron"] =                     {iconFile = "IconAddon hellshireIron.png", assembly = true},
    ["Honey Locust Thorn"] =                 {iconFile = "IconAddon honeyLocustThorn.png", assembly = true},
    ["Iridescent Coin"] =                    {iconFile = "IconAddon iridescentCoin.png", assembly = true},
    ["Jaw Smasher"] =                        {iconFile = "IconAddon jawSmasher.png", assembly = true},
    ["Marshal's Badge"] =                    {iconFile = "IconAddon marshalsBadge.png", assembly = true},
    ["Modified Ammo Belt"] =                 {iconFile = "IconAddon modifiedAmmoBelt.png", assembly = true},
    ["Poison Oak Leaves"] =                  {iconFile = "IconAddon poisonOakLeaves.png", assembly = true},
    ["Prison Chain"] =                       {iconFile = "IconAddon prisonChain.png", assembly = true},
    ["Rickety Chain"] =                      {iconFile = "IconAddon ricketyChain.png", assembly = true},
    ["Rusted Spike"] =                       {iconFile = "IconAddon rustedSpike.png", assembly = true},
    ["Snake Oil"] =                          {iconFile = "IconAddon snakeOil.png", assembly = true},
    ["Spit Polish Rag"] =                    {iconFile = "IconAddon spitPolishRag.png", assembly = true},
    ["Tin Oil Can"] =                        {iconFile = "IconAddon tinOilCan.png", assembly = true},
    ["Wanted Poster"] =                      {iconFile = "IconAddon wantedPoster.png", assembly = true},
    ["Warden's Keys"] =                      {iconFile = "IconAddon wardensKeys.png", assembly = true},
    
    
    --------------------------- Reign of Darkness ---------------------------
    ["Air Freshener"] =                      {iconFile = "IconAddon airFreshener.png", assembly = true},
    ["Boat Key"] =                           {iconFile = "IconAddon boatKey.png", assembly = true},
    ["Broken Doll"] =                        {iconFile = "IconAddon brokenDoll.png", assembly = true},
    ["Burnt Letters"] =                      {iconFile = "IconAddon burntLetters.png", assembly = true},
    ["Caffeine Tablets"] =                   {iconFile = "IconAddon caffeineTablets.png", assembly = true},
    ["Destroyed Pillow"] =                   {iconFile = "IconAddon destroyedPillow.png", assembly = true},
    ["Fallen Shingle"] =                     {iconFile = "IconAddon fallenShingle.png", assembly = true},
    ["Field Recorder"] =                     {iconFile = "IconAddon fieldRecorder.png", assembly = true},
    ["Follower's Cowl"] =                    {iconFile = "IconAddon followersCowl.png", assembly = true},
    ["Haddie's Calendar"] =                  {iconFile = "IconAddon haddiesCalendar.png", assembly = true},
    ["Iridescent Wooden Plank"] =            {iconFile = "IconAddon iridescentWoodenPlank.png", assembly = true},
    ["Lavalier Microphone"] =                {iconFile = "IconAddon lavalierMicrophone.png", assembly = true},
    ["Malthinker's Skull"] =                 {iconFile = "IconAddon malthinkersSkull.png", assembly = true},
    ["Mortar and Pestle"] =                  {iconFile = "IconAddon mortarAndPestle.png", assembly = true},
    ["Ottomarian Writing"] =                 {iconFile = "IconAddon ottomarianWriting.png", assembly = true},
    ["Sacrificial Knife"] =                  {iconFile = "IconAddon sacrificialKnife.png", assembly = true},
    ["Tilling Blade"] =                      {iconFile = "IconAddon tillingBlade.png", assembly = true},
    ["War Helmet"] =                         {iconFile = "IconAddon warHelmet.png", assembly = true},
    ["Wooden Plank"] =                       {iconFile = "IconAddon woodenPlank.png", assembly = true},
    ["Worry Stone"] =                        {iconFile = "IconAddon worryStone.png", assembly = true},
    

    --------------------------- Rites of Judgement ---------------------------
    ["Black Strap"] =                        {iconFile = "IconAddon blackStrap.png", assembly = true},
    ["Burning Man Painting"] =               {iconFile = "IconAddon burningManPainting.png", assembly = true},
    ["Cinderella Music Box"] =               {iconFile = "IconAddon cinderellaMusicBox.png", assembly = true},
    ["Copper Ring"] =                        {iconFile = "IconAddon copperRing.png", assembly = true},
    ["Crimson Ceremony Book"] =              {iconFile = "IconAddon crimsonCeremonyBook.png", assembly = true},
    ["Dead Butterfly"] =                     {iconFile = "IconAddon deadButterfly.png", assembly = true},
    ["Forgotten Videotape"] =                {iconFile = "IconAddon forgottenVideotape.png", assembly = true},
    ["Iridescent Seal of Metatron"] =        {iconFile = "IconAddon iridescentSealOfMetatron.png", assembly = true},
    ["Lead Ring"] =                          {iconFile = "IconAddon leadRing.png", assembly = true},
    ["Leopard-Print Fabric"] =               {iconFile = "IconAddon leopardprintFabric.png", assembly = true},
    ["Lost Memories Book"] =                 {iconFile = "IconAddon lostMemoriesBook.png", assembly = true},
    ["Mannequin Foot"] =                     {iconFile = "IconAddon mannequinFoot.png", assembly = true},
    ["Misty Day, Remains of Judgement"] =    {iconFile = "IconAddon mistyDay.png", assembly = true},
    ["Obsidian Goblet"] =                    {iconFile = "IconAddon obsidianGoblet.png", assembly = true},
    ["Rust-Coloured Egg"] =                  {iconFile = "IconAddon rustColoredEgg.png", assembly = true},
    ["Scarlet Egg"] =                        {iconFile = "IconAddon scarletEgg.png", assembly = true},
    ["Spearhead"] =                          {iconFile = "IconAddon spearhead.png", assembly = true},
    ["Tablet of the Oppressor"] =            {iconFile = "IconAddon tabletOfTheOppressor.png", assembly = true},
    ["Valtiel Sect Photograph"] =            {iconFile = "IconAddon valtielSectPhotograph.png", assembly = true},
    ["Wax Doll"] =                           {iconFile = "IconAddon waxDoll.png", assembly = true},
	
	--------------------------- Scent of Blood ------------------------
    ["Barley Meal"] =                        {iconFile = "IconAddon barleyMeal.png", assembly = true},
    ["Belaying Pins"] =                      {iconFile = "IconAddon belayingPins.png", assembly = true},
    ["Creature's Bone"] =                    {iconFile = "IconAddon creaturesBone.png", assembly = true},
    ["Fatty Meat"] =                         {iconFile = "IconAddon fattyMeat.png", assembly = true},
    ["Gunpowder Tin"] =                      {iconFile = "IconAddon gunpowderTin.png", assembly = true},
    ["Iridescent Wheel Handle"] =            {iconFile = "IconAddon iridescentWheelHandle.png", assembly = true},
    ["Knotted Rope"] =                       {iconFile = "IconAddon knottedRope.png", assembly = true},
    ["Leather Harness"] =                    {iconFile = "IconAddon leatherHarness.png", assembly = true},
    ["Marlinspike"] =                        {iconFile = "IconAddon marlinspike.png", assembly = true},
    ["Ship Figurehead"] =                    {iconFile = "IconAddon shipFigurehead.png", assembly = true},
    ["Smoked Snapper"] =                     {iconFile = "IconAddon smokedSnapper.png", assembly = true},
    ["Spiked Collar"] =                      {iconFile = "IconAddon spikedCollar.png", assembly = true},
    ["Spyglass"] =                           {iconFile = "IconAddon spyglass.png", assembly = true},
    ["Sticky Pitch"] =                       {iconFile = "IconAddon stickyPitch.png", assembly = true},
    ["Torn Novel"] =                         {iconFile = "IconAddon tornNovel.png", assembly = true},
    ["Trainer's Book"] =                     {iconFile = "IconAddon trainersBook.png", assembly = true},
    ["Training Bell"] =                      {iconFile = "IconAddon trainingBell.png", assembly = true},
    ["Unfinished Map"] =                     {iconFile = "IconAddon unfinishedMap.png", assembly = true},
    ["Waterskin"] =                          {iconFile = "IconAddon waterskin.png", assembly = true},
    ["Young Coconut"] =                      {iconFile = "IconAddon youngCoconut.png", assembly = true},

    --------------------------- Showstopper ---------------------------
    ["Bloody Boa"] =                         {iconFile = "IconAddon bloodyBoa.png", assembly = true},
    ["Caged Heart Shoes"] =                  {iconFile = "IconAddon cagedHeartShoes.png", assembly = true},
    ["Cut Thru U Single"] =                  {iconFile = "IconAddon cutThruUSingle.png", assembly = true},
    ["Death Throes Compilation"] =           {iconFile = "IconAddon deathThroesCompilation.png", assembly = true},
    ["Diamond Cufflinks"] =                  {iconFile = "IconAddon diamondCufflinks.png", assembly = true},
    ["Edge of Revival Album"] =              {iconFile = "IconAddon edgeOfRevivalAlbum.png", assembly = true},
    ["Fizz-Spin Soda"] =                     {iconFile = "IconAddon fizz-SpinSoda.png", assembly = true},
    ["Inferno Wires"] =                      {iconFile = "IconAddon infernoWires.png", assembly = true},
    ["Iridescent Photocard"] =               {iconFile = "IconAddon iridescentPhotocard.png", assembly = true},    
    ["Ji-Woon's Autograph"] =                {iconFile = "IconAddon ji-WoonsAutograph.png", assembly = true},
    ["Killing Part Chords"] =                {iconFile = "IconAddon killingPartChords.png", assembly = true},
    ["Lucky Blade"] =                        {iconFile = "IconAddon luckyBlade.png", assembly = true},
    ["Memento Blades"] =                     {iconFile = "IconAddon mementoBlades.png", assembly = true},
    ["On Target Single"] =                   {iconFile = "IconAddon onTargetSingle.png", assembly = true},
    ["Ripper Brace"] =                       {iconFile = "IconAddon ripperBrace.png", assembly = true},
    ["Tequila Moonrock"] =                   {iconFile = "IconAddon tequilaMoonrock.png", assembly = true},
    ["Trick Blades"] =                       {iconFile = "IconAddon trickBlades.png", assembly = true},
    ["Trick Pouch"] =                        {iconFile = "IconAddon trickPouch.png", assembly = true},
    ["Waiting For You Watch"] =              {iconFile = "IconAddon waitingForYouWatch.png", assembly = true},
    ["Melodious Murder"] =                   {iconFile = "IconAddon melodiousMurder.png", assembly = true},    
    
    
    --------------------------- Spencer's Last Breath ---------------------------
    ["Anxious Gasp"] =                         {iconFile = "IconAddon anxiousGasp.png", assembly = true},
    ["Ataxic Respiration"] =                   {iconFile = "IconAddon ataxicRespiration.png", assembly = true},
    ["Bad Man Keepsake"] =                     {iconFile = "IconAddon badManKeepsake.png", assembly = true},
    ['"Bad Man\'s" Last Breath'] =             {iconFile = "IconAddon badMansLastBreath.png", assembly = true},
    ["Campbell's Last Breath"] =               {iconFile = "IconAddon campbellsLastBreath.png", assembly = true},
    ["Catatonic Boy's Treasure"] =             {iconFile = "IconAddon catatonicBoysTreasure.png", assembly = true},
    ["Dark Cincture"] =                        {iconFile = "IconAddon darkCincture.png", assembly = true},
    ["Dull Bracelet"] =                        {iconFile = "IconAddon dullBracelet.png", assembly = true},
    ["Fragile Wheeze"] =                       {iconFile = "IconAddon fragileWheeze.png", assembly = true},
    ["Heavy Panting"] =                        {iconFile = "IconAddon heavyPanting.png", assembly = true},
    ["Jenner's Last Breath"] =                 {iconFile = "IconAddon jennersLastBreath.png", assembly = true},
    ["Kavanagh's Last Breath"] =               {iconFile = "IconAddon kavanaghsLastBreath.png", assembly = true},
    ["Matchbox"] =                             {iconFile = "IconAddon matchbox.png", assembly = true},
    ["Metal Spoon"] =                          {iconFile = "IconAddon metalSpoon.png", assembly = true},
    ["Plaid Flannel"] =                        {iconFile = "IconAddon plaidFlannel.png", assembly = true},
    ["Pocket Watch (Spencer's Last Breath)"] = {iconFile = "IconAddon pocketWatchSpencersLastBreath.png", assembly = true},
    ["Spasmodic Breath"] =                     {iconFile = "IconAddon spasmodicBreath.png", assembly = true},
    ["Torn Bookmark"] =                        {iconFile = "IconAddon tornBookmark.png", assembly = true},
    ["White Nit Comb"] =                       {iconFile = "IconAddon whiteNitComb.png", assembly = true},
    ["Wooden Horse"] =                         {iconFile = "IconAddon woodenHorse.png", assembly = true},


    --------------------------- Summons of Pain ---------------------------
    ["Bent Nail"] =                          {iconFile = "IconAddon bentNail.png", assembly = true},
    ["Burning Candle"] =                     {iconFile = "IconAddon burningCandle.png", assembly = true},
    ["Chatterer's Tooth"] =                  {iconFile = "IconAddon chatterersTooth.png", assembly = true},
    ["Engineer's Fang"] =                    {iconFile = "IconAddon engineersFang.png", assembly = true},
    ["Flickering Television"] =              {iconFile = "IconAddon flickeringTelevision.png", assembly = true},
    ["Frank's Heart"] =                      {iconFile = "IconAddon franksHeart.png", assembly = true},
    ["Greasy Black Lens"] =                  {iconFile = "IconAddon greasyBlackLens.png", assembly = true},
    ["Impaling Wire"] =                      {iconFile = "IconAddon impalingWire.png", assembly = true},
    ["Iridescent Lament Configuration"] =    {iconFile = "IconAddon iridescentLamentConfiguration.png", assembly = true},
    ["Larry's Blood"] =                      {iconFile = "IconAddon larrysBlood.png", assembly = true},
    ["Larry's Remains"] =                    {iconFile = "IconAddon larrysRemains.png", assembly = true},
    ["Leather Strip"] =                      {iconFile = "IconAddon leatherStrip.png", assembly = true},
    ["Liquified Gore"] =                     {iconFile = "IconAddon liquifiedGore.png", assembly = true},
    ["Lively Crickets"] =                    {iconFile = "IconAddon livelyCrickets.png", assembly = true},
    ["Original Pain"] =                      {iconFile = "IconAddon originalPain.png", assembly = true},
    ["Skewered Rat"] =                       {iconFile = "IconAddon skeweredRat.png", assembly = true},
    ["Slice of Frank"] =                     {iconFile = "IconAddon sliceOfFrank.png", assembly = true},
    ["Spoiled Meal"] =                       {iconFile = "IconAddon spoiledMeal.png", assembly = true},
    ["Torture Pillar"] =                     {iconFile = "IconAddon torturePillar.png", assembly = true},
    ["Wriggling Maggots"] =                  {iconFile = "IconAddon wrigglingMaggots.png", assembly = true},
    

    --------------------------- T-Virus ---------------------------
    ["Admin Wristband"] =                    {iconFile = "IconAddon adminWristband.png", assembly = true},
    ["Adrenaline Injector"] =                {iconFile = "IconAddon adrenalineInjector.png", assembly = true},
    ["Brian's Intestine"] =                  {iconFile = "IconAddon briansIntestine.png", assembly = true},
    ["Broken Recovery Coin"] =               {iconFile = "IconAddon brokenRecoveryCoin.png", assembly = true},
    ["Damaged Syringe"] =                    {iconFile = "IconAddon damagedSyringe.png", assembly = true},
    ["Depleted Ink Ribbon"] =                {iconFile = "IconAddon depletedInkRibbon.png", assembly = true},
    ["Iridescent Umbrella Badge"] =          {iconFile = "IconAddon iridescentUmbrellaBadge.png", assembly = true},
    ["Jill's Sandwich"] =                    {iconFile = "IconAddon jillsSandwich.png", assembly = true},
    ["Licker Tongue"] =                      {iconFile = "IconAddon lickerTongue.png", assembly = true},
    ["Marvin's Blood"] =                     {iconFile = "IconAddon marvinsBlood.png", assembly = true},
    ["Mikhail's Eye"] =                      {iconFile = "IconAddon mikhailsEye.png", assembly = true},
    ["NE-a Parasite"] =                      {iconFile = "IconAddon ne-AParasite.png", assembly = true},
    ["NE-α Parasite"] =                      {iconFile = "IconAddon ne-AParasite.png", assembly = true},
    ["Plant 43 Vines"] =                     {iconFile = "IconAddon plant43Vines.png", assembly = true},
    ["Serotonin Injector"] =                 {iconFile = "IconAddon serotoninInjector.png", assembly = true},
    ["Shattered S.T.A.R.S. Badge"] =         {iconFile = "IconAddon shatteredSTARSBadge.png", assembly = true},
    ["S.T.A.R.S. Field Combat Manual"] =     {iconFile = "IconAddon starsFieldCombatManual.png", assembly = true},
    ["T-Virus Sample"] =                     {iconFile = "IconAddon t-VirusSample.png", assembly = true},
    ["Tyrant Gore"] =                        {iconFile = "IconAddon tyrantGore.png", assembly = true},
    ["Visitor Wristband"] =                  {iconFile = "IconAddon visitorWristband.png", assembly = true},
    ["Zombie Heart"] =                       {iconFile = "IconAddon zombieHeart.png", assembly = true},


    --------------------------- Toolbox ---------------------------
    ["Brand New Part"] =                     {iconFile = "IconAddon brandNewPart.png", assembly = true},
    ["Clean Rag"] =                          {iconFile = "IconAddon cleanRag.png", assembly = true},
    ["Cutting Wire"] =                       {iconFile = "IconAddon cuttingWire.png", assembly = true},
    ["Grip Wrench"] =                        {iconFile = "IconAddon gripWrench.png", assembly = true},
    ["Hacksaw"] =                            {iconFile = "IconAddon hacksaw.png", assembly = true},
    ["Instructions"] =                       {iconFile = "IconAddon instructions.png", assembly = true},
    ["Protective Gloves"] =                  {iconFile = "IconAddon protectiveGloves.png", assembly = true},
    ["Scraps"] =                             {iconFile = "IconAddon scraps.png", assembly = true},
    ["Socket Swivels"] =                     {iconFile = "IconAddon socketSwivels.png", assembly = true},
    ["Spring Clamp"] =                       {iconFile = "IconAddon springClamp.png", assembly = true},
    ["Wire Spool"] =                         {iconFile = "IconAddon wireSpool.png", assembly = true},


    --------------------------- Unusued ---------------------------
    ["ArtefactER"] =                         {iconFile = "FulliconAddon artefactER.png", assembly = false},
    ["Gum"] =                                {iconFile = "IconAddon gum.png", assembly = true},
    ["Inhaler"] =                            {iconFile = "IconAddon inhaler.png", assembly = true},
    ["Smash 'n' Run Gloves"] =               {iconFile = "IconAddon smashNRunGloves.png", assembly = true},
    ["Shredded Fedora"] =                    {iconFile = "IconAddon shreddedFedora.png", assembly = true},


    --------------------------- UVX ---------------------------
    ["Blurry Photo"] =                       {iconFile = "IconAddon blurryPhoto.png", assembly = true},
    ["B-Movie Poster"] =                     {iconFile = "IconAddon b-moviePoster.png", assembly = true},
    ["Captured by the Dark"] =               {iconFile = "IconAddon capturedByTheDark.png", assembly = true},
    ["Device of Undisclosed Origin"] =       {iconFile = "IconAddon deviceOfUndisclosedOrigin.png", assembly = true},
    ["Discarded Milk Carton"] =              {iconFile = "IconAddon discardedMilkCarton.png", assembly = true},
    ["Footprint Cast"] =                     {iconFile = "IconAddon footprintCast.png", assembly = true},
    ["Front-Page Article"] =                 {iconFile = "IconAddon frontPageArticle.png", assembly = true},
    ["Homemade Mask"] =                      {iconFile = "IconAddon homemadeMask.png", assembly = true},
    ["Hypnotist's Watch"] =                  {iconFile = "IconAddon hypnotistsWatch.png", assembly = true},
    ["Iridescent OSS Report"] =              {iconFile = "IconAddon iridescentOSSReport.png", assembly = true},
    ["Last Known Recording"] =               {iconFile = "IconAddon lastKnownRecording.png", assembly = true},
    ["Notebook of Theories"] =               {iconFile = "IconAddon notebookOfTheories.png", assembly = true},
    ["Obscure Game Cartridge"] =             {iconFile = "IconAddon obscureGameCartridge.png", assembly = true},
    ["Punctured Eyeball"] =                  {iconFile = "IconAddon puncturedEyeball.png", assembly = true},
    ["Rabbit's Foot"] =                      {iconFile = "IconAddon rabbitsFoot.png", assembly = true},
    ["Serum Vial"] =                         {iconFile = "IconAddon serumVial.png", assembly = true},
    ["Sketch Attempt"] =                     {iconFile = "IconAddon sketchAttempt.png", assembly = true},
    ["Slashed Backpack"] =                   {iconFile = "IconAddon slashedBackpack.png", assembly = true},
    ["Vanishing Box"] =                      {iconFile = "IconAddon vanishingBox.png", assembly = true},
    ["Victim's Map"] =                       {iconFile = "IconAddon victimsMap.png", assembly = true},
    
    --------------------------- Vampiric Shift ---------------------------
    ["Alucard's Shield"] =                  {iconFile = "IconAddon AlucardsShield.png", assembly = true},
    ["Blood-Filled Goblet"] =               {iconFile = "IconAddon BloodFilledGoblet.png", assembly = true},
    ["Cerberus Talon"] =                    {iconFile = "IconAddon CerberusTalon.png", assembly = true},
    ["Clock Tower Gear"] =                  {iconFile = "IconAddon ClockTowerGear.png", assembly = true},
    ["Cube of Zoe"] =                       {iconFile = "IconAddon CubeOfZoe.png", assembly = true},
    ["Force of Echo"] =                     {iconFile = "IconAddon ForceOfEcho.png", assembly = true},
    ["Iridescent Ring of Vlad"] =           {iconFile = "IconAddon IridescentRingOfVlad.png", assembly = true},
    ["Killer Doll"] =                       {iconFile = "IconAddon KillerDoll.png", assembly = true},
    ["Lapis Lazuli"] =                      {iconFile = "IconAddon LapisLazuli.png", assembly = true},
    ["Magical Ticket"] =                    {iconFile = "IconAddon MagicalTicket.png", assembly = true},
    ["Medusa's Hair"] =                     {iconFile = "IconAddon MedusasHair.png", assembly = true},
    ["Moonstone Necklace"] =                {iconFile = "IconAddon MoonstoneNecklace.png", assembly = true},
    ["Pocket Watch (Vampiric Shift)"] =     {iconFile = "IconAddon PocketWatchVampiricShift.png", assembly = true},
    ["Ruby Circlet"] =                      {iconFile = "IconAddon RubyCirclet.png", assembly = true},
    ["Sunglasses"] =                        {iconFile = "IconAddon Sunglasses.png", assembly = true},
    ["Sylph Feather"] =                     {iconFile = "IconAddon SylphFeather.png", assembly = true},
    ["Traveller's Hat"] =                   {iconFile = "IconAddon TravelersHat.png", assembly = true},
    ["Warg's Fang"] =                       {iconFile = "IconAddon WargsFang.png", assembly = true},
    ["White Wolf Medallion"] =              {iconFile = "IconAddon WhiteWolfMedallion.png", assembly = true},
    ["Winged Boots"] =                      {iconFile = "IconAddon WingedBoots.png", assembly = true},

    --------------------------- Vile Darkness ---------------------------    
    ["Bag of Holding"] =                     {iconFile = "IconAddon BagOfHolding.png", assembly = true},
    ["Boots of Speed"] =                     {iconFile = "IconAddon BootsOfSpeed.png", assembly = true},
    ["Cloak of Elvenkind"] =                 {iconFile = "IconAddon CloakOfElvenkind.png", assembly = true},
    ["Cloak of Invisibility"] =              {iconFile = "IconAddon CloakOfInvisibility.png", assembly = true},
    ["Crystal Ball"] =                       {iconFile = "IconAddon CrystalBall.png", assembly = true},
    ["Dragontooth Dagger"] =                 {iconFile = "IconAddon DragontoothDagger.png", assembly = true},
    ["Glass Eye"] =                          {iconFile = "IconAddon GlassEye.png", assembly = true},
    ["Iridescent Book of Vile Darkness"] =   {iconFile = "IconAddon IridescentBookOfVileDarkness.png", assembly = true},
    ["Lantern of Revealing"] =               {iconFile = "IconAddon LanternOfRevealing.png", assembly = true},
    ["Ornate Horn"] =                        {iconFile = "IconAddon OrnateHorn.png", assembly = true},
    ["Pearl of Power"] =                     {iconFile = "IconAddon PearlOfPower.png", assembly = true},
    ["Potion of Speed"] =                    {iconFile = "IconAddon PotionOfSpeed.png", assembly = true},
    ["Raven's Feather"] =                    {iconFile = "IconAddon RavensFeather.png", assembly = true},
    ["Ring of Spell Storing"] =              {iconFile = "IconAddon RingOfSpellStoring.png", assembly = true},
    ["Ring of Telekinesis"] =                {iconFile = "IconAddon RingOfTelekinesis.png", assembly = true},
    ["Robe of Eyes"] =                       {iconFile = "IconAddon RobeOfEyes.png", assembly = true},
    ["Staff of Withering"] =                 {iconFile = "IconAddon StaffOfWithering.png", assembly = true},
    ["Tattered Headband"] =                  {iconFile = "IconAddon TatteredHeadband.png", assembly = true},
    ["Trickster's Glove"] =                  {iconFile = "IconAddon TrickstersGlove.png", assembly = true},
    ["Vorpal Sword"] =                       {iconFile = "IconAddon SwordOfKass.png", assembly = true},
    
    
    --------------------------- Vile Purge ---------------------------
    ["Ashen Apple"] =                        {iconFile = "IconAddon ashenApple.png", assembly = true},
    ["Black Incense"] =                      {iconFile = "IconAddon blackIncense.png", assembly = true},
    ["Blessed Apple"] =                      {iconFile = "IconAddon blessedApple.png", assembly = true},
    ["Devotee's Amulet"] =                   {iconFile = "IconAddon devoteesAmulet.png", assembly = true},
    ["Emetic Potion"] =                      {iconFile = "IconAddon emeticPotion.png", assembly = true},
    ["Exorcism Amulet"] =                    {iconFile = "IconAddon exorcismAmulet.png", assembly = true},
    ["Haematite Seal"] =                     {iconFile = "IconAddon haematiteSeal.png", assembly = true},
    ["Healing Salve"] =                      {iconFile = "IconAddon healingSalve.png", assembly = true},
    ["Incensed Ointment"] =                  {iconFile = "IconAddon incensedOintment.png", assembly = true},
    ["Infected Emetic"] =                    {iconFile = "IconAddon infectedEmetic.png", assembly = true},
    ["Iridescent Seal"] =                    {iconFile = "IconAddon iridescentSeal.png", assembly = true},
    ["Limestone Seal"] =                     {iconFile = "IconAddon limestoneSeal.png", assembly = true},
    ["Olibanum Incense"] =                   {iconFile = "IconAddon olibanumIncense.png", assembly = true},
    ["Potent Tincture"] =                    {iconFile = "IconAddon potentTincture.png", assembly = true},
    ["Prayer Tablet Fragment"] =             {iconFile = "IconAddon prayerTabletFragment.png", assembly = true},
    ["Prophylactic Amulet"] =                {iconFile = "IconAddon prophylacticAmulet.png", assembly = true},
    ["Rubbing Oil"] =                        {iconFile = "IconAddon rubbingOil.png", assembly = true},
    ["Severed Toe"] =                        {iconFile = "IconAddon severedToe.png", assembly = true},
    ["Vile Emetic"] =                        {iconFile = "IconAddon vileEmetic.png", assembly = true},
    ["Worship Tablet"] =                     {iconFile = "IconAddon worshipTablet.png", assembly = true},


    --------------------------- Virulent Bound ---------------------------
    ["Bullhorn"] =                           {iconFile = "IconAddon bullhorn.png", assembly = true},
    ["Chalice (Gold)"] =                     {iconFile = "IconAddon chaliceGold.png", assembly = true},
    ["Dark Sunglasses"] =                    {iconFile = "IconAddon darkSunglasses.png", assembly = true},
    ["Egg (Gold)"] =                         {iconFile = "IconAddon eggGold.png", assembly = true},
    ["Green Herb"] =                         {iconFile = "IconAddon greenHerb.png", assembly = true},
    ["Helicopter Stick"] =                   {iconFile = "IconAddon helicopterStick.png", assembly = true},
    ["Iridescent Uroboros Vial"] =           {iconFile = "IconAddon iridescentUroborosVial.png", assembly = true},
    ["Jewel Beetle"] =                       {iconFile = "IconAddon jewelBeetle.png", assembly = true},
    ["Lab Photo"] =                          {iconFile = "IconAddon labPhoto.png", assembly = true},
    ["Leather Gloves"] =                     {iconFile = "IconAddon leatherGloves.png", assembly = true},
    ["Lion Medallion"] =                     {iconFile = "IconAddon lionMedallion.png", assembly = true},
    ["Loose Crank"] =                        {iconFile = "IconAddon looseCrank.png", assembly = true},
    ["Maiden Medallion"] =                   {iconFile = "IconAddon maidenMedallion.png", assembly = true},
    ["Portable Safe"] =                      {iconFile = "IconAddon portableSafe.png", assembly = true},
    ["Red Herb"] =                           {iconFile = "IconAddon redHerb.png", assembly = true},
    ["R.P.D. Shoulder Walkie"] =             {iconFile = "IconAddon RPDShoulderWalkie.png", assembly = true},
    ["Unicorn Medallion"] =                  {iconFile = "IconAddon unicornMedallion.png", assembly = true},
    ["Uroboros Tendril"] =                   {iconFile = "IconAddon uroborosTendril.png", assembly = true},
    ["Uroboros Virus"] =                     {iconFile = "IconAddon uroborosVirus.png", assembly = true},
    ["Video Conference Device"] =            {iconFile = "IconAddon videoConferenceDevice.png", assembly = true},
    
    
    --------------------------- Wailing Bell ---------------------------
    ['"All Seeing"'] =                       {iconFile = "IconAddon spiritAllSeeing.png"},
    ['"All Seeing" - Blood'] =               {iconFile = "IconAddon allSeeing-Blood.png", assembly = true},
    ['"All Seeing" - Mud'] =                 {iconFile = "IconAddon allSeeing-Mud.png", assembly = true},
    ['"All Seeing" - Spirit'] =              {iconFile = "IconAddon allSeeing-Spirit.png", assembly = true},
    ['"All Seeing" - White'] =               {iconFile = "IconAddon allSeeing-White.png", assembly = true},
    ['"Blind Warrior"'] =                    {iconFile = "IconAddon spiritBlindWarrior.png"},
    ['"Blind Warrior" - Blood'] =            {iconFile = "IconAddon blindWarrior-Blood.png", assembly = true},
    ['"Blind Warrior" - Mud'] =              {iconFile = "IconAddon blindWarrior-Mud.png", assembly = true},
    ['"Blind Warrior" - Mud (1.0.0)'] =      {iconFile = "IconAddon blindWarriorMud_1-0-0.png", assembly = true},
    ['"Blind Warrior" - Soot'] =             {iconFile = "IconAddon blindWarrior-Soot.png", assembly = true},
    ['"Blind Warrior" - Spirit'] =           {iconFile = "IconAddon blindWarrior-Spirit.png", assembly = true},
    ['"Blind Warrior" - White'] =            {iconFile = "IconAddon blindWarrior-White.png", assembly = true},
    ['"Blink" - Blood'] =                    {iconFile = "IconAddon blink-Blood.png", assembly = true},
    ['"Blink" - Mud'] =                      {iconFile = "IconAddon blink-Mud.png", assembly = true},
    ['"Blink" - Soot'] =                     {iconFile = "IconAddon blink-Soot.png", assembly = true},
    ['"Blink" - White'] =                    {iconFile = "IconAddon blink-White.png", assembly = true},
    ["Bone Clapper"] =                       {iconFile = "IconAddon boneClapper.png", assembly = true},
    ["Coxcombed Clapper"] =                  {iconFile = "IconAddon coxcombedClapper.png", assembly = true},
    ['"Shadow Dance" - Blood'] =             {iconFile = "IconAddon shadowDance-Blood.png", assembly = true},
    ['"Shadow Dance" - Soot'] =              {iconFile = "IconAddon shadowDance-Soot.png", assembly = true},
    ['"Shadow Dance" - White'] =             {iconFile = "IconAddon shadowDance-White.png", assembly = true},
    ['"Swift Hunt" - Blood'] =               {iconFile = "IconAddon swiftHunt-Blood.png", assembly = true},
    ['"Swift Hunt" - Mud'] =                 {iconFile = "IconAddon swiftHunt-Mud.png", assembly = true},
    ['"Swift Hunt" - Soot'] =                {iconFile = "IconAddon swiftHunt-Soot.png", assembly = true},
    ['"Swift Hunt" - White'] =               {iconFile = "IconAddon swiftHunt-White.png", assembly = true},
    ['"The Beast" - Soot'] =                 {iconFile = "IconAddon theBeast-Soot.png", assembly = true},
    ['"The Hound" - Soot'] =                 {iconFile = "IconAddon theHound-Soot.png", assembly = true},
    ['"The Ghost" - Soot'] =                 {iconFile = "IconAddon theGhost-Soot.png", assembly = true},
    ['"The Ghost" - White'] =                {iconFile = "IconAddon theGhost-White.png", assembly = true},
    ['"The Serpent" - Soot'] =               {iconFile = "IconAddon theSerpent-Soot.png", assembly = true},
    ['"Windstorm" - White'] =                {iconFile = "IconAddon windstorm-White.png", assembly = true},
    ['"Windstorm" - Mud'] =                  {iconFile = "IconAddon windstorm-Mud.png", assembly = true},
    ['"Windstorm" - Blood'] =                {iconFile = "IconAddon windstorm-Blood.png", assembly = true},


    --------------------------- Yamaoka's Haunting ---------------------------
    ["Bloody Hair Brooch"] =                 {iconFile = "IconAddon bloodyHairBrooch.png", assembly = true},
    ["Dirty Uwabaki"] =                      {iconFile = "IconAddon dirtyUwabaki.png", assembly = true},
    ["Dried Cherry Blossom"] =               {iconFile = "IconAddon driedCherryBlossom.png", assembly = true},
    ["Father's Glasses"] =                   {iconFile = "IconAddon fathersGlasses.png", assembly = true},
    ["Furin"] =                              {iconFile = "IconAddon furin.png", assembly = true},
    ["Gifted Bamboo Comb"] =                 {iconFile = "IconAddon giftedBambooComb.png", assembly = true},
    ["Juniper Bonsai"] =                     {iconFile = "IconAddon juniperBonsai.png", assembly = true},
    ["Kaiun Talisman"] =                     {iconFile = "IconAddon kaiunTalisman.png", assembly = true},
    ["Katana Tsuba"] =                       {iconFile = "IconAddon katanaTsuba.png", assembly = true},
    ["Katsumori Talisman"] =                 {iconFile = "IconAddon katsumoriTalisman.png", assembly = true},
    ["Kintsugi Teacup"] =                    {iconFile = "IconAddon kintsugiTeacup.png", assembly = true},
    ["Mother-Daughter Ring"] =               {iconFile = "IconAddon mother-DaughterRing.png", assembly = true},
    ["Mother's Glasses"] =                   {iconFile = "IconAddon mothersGlasses.png", assembly = true},
    ["Muddy Sports Day Cap"] =               {iconFile = "IconAddon muddySportsDayCap.png", assembly = true},
    ["Origami Crane"] =                      {iconFile = "IconAddon origamiCrane.png", assembly = true},
    ["Prayer Beads Bracelet"] =              {iconFile = "IconAddon prayerBeadsBracelet.png", assembly = true},
    ["Rin's Broken Watch"] =                 {iconFile = "IconAddon rinsBrokenWatch.png", assembly = true},
    ["Rusty Flute"] =                        {iconFile = "IconAddon rustyFlute.png", assembly = true},
    ["Senko Hanabi"] =                       {iconFile = "IconAddon senkoHanabi.png", assembly = true},
    ["Shiawase Amulet"] =                    {iconFile = "IconAddon shiawaseAmulet.png", assembly = true},
    ["Uchiwa"] =                             {iconFile = "IconAddon uchiwa.png", assembly = true},
    ["Wakizashi Saya"] =                     {iconFile = "IconAddon wakizashiSaya.png", assembly = true},
    ["White Hair Ribbon"] =                  {iconFile = "IconAddon whiteHairRibbon.png", assembly = true},
    ["Yakuyoke Amulet"] =                    {iconFile = "IconAddon yakuyokeAmulet.png", assembly = true},
    ["Zōri"] =                               {iconFile = "IconAddon zori.png", assembly = true},


    --------------------------- Yamaoka's Wrath ---------------------------
    ["Akito's Crutch"] =                     {iconFile = "IconAddon akitosCrutch.png", assembly = true},
    ["Blackened Toenail"] =                  {iconFile = "IconAddon blackenedToenail.png", assembly = true},
    ["Bloody Sash"] =                        {iconFile = "IconAddon bloodySash.png", assembly = true},
    ["Child's Wooden Sword"] =               {iconFile = "IconAddon childsWoodenSword.png", assembly = true},
    ["Chipped Saihai"] =                     {iconFile = "IconAddon chippedSaihai.png", assembly = true},
    ["Cracked Sakazuki"] =                   {iconFile = "IconAddon crackedSakazuki.png", assembly = true},
    ["Ink Lion"] =                           {iconFile = "IconAddon inkLion.png", assembly = true},
    ["Iridescent Family Crest"] =            {iconFile = "IconAddon iridescentFamilyCrest.png", assembly = true},
    ["Kanai-Anzen Talisman"] =               {iconFile = "IconAddon kanai-AnzenTalisman.png", assembly = true},
    ["Lion Fang"] =                          {iconFile = "IconAddon lionFang.png", assembly = true},
    ["Paper Lantern"] =                      {iconFile = "IconAddon paperLantern.png", assembly = true},
    ["Polished Maedate"] =                   {iconFile = "IconAddon polishedMaedate.png", assembly = true},
    ["Renjiro's Bloody Glove"] =             {iconFile = "IconAddon renjirosBloodyGlove.png", assembly = true},
    ["Rotting Rope"] =                       {iconFile = "IconAddon rottingRope.png", assembly = true},
    ["Scalped Topknot"] =                    {iconFile = "IconAddon scalpedTopknot.png", assembly = true},
    ["Shattered Wakizashi"] =                {iconFile = "IconAddon shatteredWakizashi.png", assembly = true},
    ["Splintered Hull"] =                    {iconFile = "IconAddon splinteredHull.png", assembly = true},
    ["Tear-Soaked Tenugui"] =                {iconFile = "IconAddon tearSoakedTenugui.png", assembly = true},
    ["Wooden Oni Mask"] =                    {iconFile = "IconAddon woodenOniMask.png", assembly = true},
    ["Yamaoka Sashimono"] =                  {iconFile = "IconAddon yamaokaSashimono.png", assembly = true},


    --------------------------- Emblems ---------------------------
    ["Benevolent"] =                         {iconFile = "EmblemIcon benevolent silver.png"},
    ["Chaser"] =                             {iconFile = "EmblemIcon chaser silver.png"},
    ["Devout"] =                             {iconFile = "EmblemIcon devout silver.png"},
    ["Evader"] =                             {iconFile = "EmblemIcon evader silver.png"},
    ["Gatekeeper"] =                         {iconFile = "EmblemIcon gatekeeper silver.png"},
    ["Unbroken"] =                           {iconFile = "EmblemIcon unbroken silver.png"},
    ["Lightbringer"] =                       {iconFile = "EmblemIcon lightbringer silver.png"},
    ["Malicious"] =                          {iconFile = "EmblemIcon malicious silver.png"},


    --------------------------- Items ---------------------------
    ["Alex's Toolbox"] =                     {iconFile = "iconItems alexsToolbox.png", assembly = true},
    ["All Hallows' Eve Lunchbox"] =          {iconFile = "iconItems allHallowsEveLunchbox.png", assembly = true},
    ["Anniversary Flashlight"] =             {iconFile = "iconItems anniversaryFlashlight.png", assembly = true},
    ["Anniversary Med-Kit"] =                {iconFile = "iconItems anniversaryMedKit.png", assembly = true},
    ["Anniversary Toolbox"] =                {iconFile = "iconItems anniversaryToolbox.png", assembly = true},
    ["Antidote"] =                           "First Aid Spray",
    ["Blood Can"] =                          {iconFile = "T_UI_iconItems_LimitedJerryCan.png", paddingLeft = "4px", assembly = true},
    ["Bloodsense Map"] =                     {iconFile = "IconItems bloodsenseMap.png", assembly = true},
    ["Broken Key"] =                         {iconFile = "iconItems brokenKey.png", assembly = true},
    ["Camping Aid Kit"] =                    {iconFile = "iconItems campingAidKit.png", assembly = true},
    ["Candelabra"] =                         {iconFile = "iconItems fireflyLantern.png", paddingLeft = "4px", assembly = true},
    ["Chinese Firecracker"] =                {iconFile = "iconItems chineseFirecracker.png", assembly = true},
    ["Commodious Toolbox"] =                 {iconFile = "iconItems commodiousToolbox.png", assembly = true},
    ["Dull Key"] =                           {iconFile = "iconItems dullKey.png", assembly = true},
    ["Emergency Med-Kit"] =                  {iconFile = "iconItems emergencyMedKit.png", assembly = true},
    ["EMP"] =                                {iconFile = "iconItems emp.png", paddingLeft = "4px", assembly = true},
    ["Engineer's Toolbox"] =                 {iconFile = "iconItems engineersToolbox.png", assembly = true},
    ["Eye of Vecna"] =                       {iconFile = "iconItems_LimitedVecnaEye.png", paddingLeft = "4px", assembly = true},
    ["Festive Toolbox"] =                    {iconFile = "iconItems festiveToolbox.png", assembly = true},
    ["Firecracker"] =                        {iconFile = "iconItems chineseFirecracker.png"},
    ["First Aid Kit"] =                      {iconFile = "iconItems firstAidKit.png", assembly = true},
    ["First Aid Spray"] =                    {iconFile = "iconItems firstAidSpray.png", paddingLeft = "4px", assembly = true},
    ["Flash Grenade"] =                      {iconFile = "iconItems flashGrenade.png", paddingLeft = "4px", assembly = true},
    ["Flashlight"] =                         {iconFile = "iconItems flashlight.png", assembly = true},
    ["Flashlights"] =                        {iconFile = "iconItems flashlight.png"},
    ["Fog Crystal"] =                        {iconFile = "IconItems calamariSmokeBomb.png", paddingLeft = "4px", assembly = true},
    ["Fourth Year Flashlight"] =             "Anniversary Flashlight", --Used on Fourth Year Anniversary page
    ["Fourth Year Med-Kit"] =                "Anniversary Med-Kit",
    ["Fragile Mirror"] =                     {iconFile = "iconItems fragileMirror.png", paddingLeft = "4px", assembly = true},
    ["Hand of Vecna"] =                      {iconFile = "iconItems_LimitedVecnaHand.png", paddingLeft = "4px", assembly = true},
    ["Key"] =                                {iconFile = "iconItems key.png"},
    ["Keycard"] =                            {iconFile = "iconItems keycard.png", paddingLeft = "4px", assembly = true},
    ["Lament Configuration"] =               {iconFile = "iconItems lamentConfiguration.png", paddingLeft = "4px", assembly = true},
    ["Lantern"] =                            {iconFile = "iconItems modifierLantern.png", paddingLeft = "4px", assembly = true},
    ["Map"] =                                {iconFile = "iconItems map.png", assembly = true},
    ["Maps"] =                               {iconFile = "iconItems map.png"},
    ["Masquerade Flashlight"] =              {iconFile = "iconItems masqueradeFlashlight.png", assembly = true},
    ["Masquerade Med-Kit"] =                 {iconFile = "iconItems masqueradeMedKit.png", assembly = true},
    ["Masquerade Toolbox"] =                 {iconFile = "iconItems masqueradeToolbox.png", assembly = true},
    ["Mechanic's Toolbox"] =                 {iconFile = "iconItems mechanicsToolbox.png", assembly = true},
    ["Med-Kit"] =                            {iconFile = "iconItems firstAidKit.png"},
    ["Pocket Mirror"] =                      {iconFile = "iconItems pocketMirror.png", paddingLeft = "4px", assembly = true},
    ["Rainbow Map"] =                        {iconFile = "iconItems rainbowMap.png", assembly = true},
    ["Ranger Med-Kit"] =                     {iconFile = "iconItems rangerMedKit.png", assembly = true},
    ["Remote Flame Turret"] =                {iconFile = "iconItems remoteFlameTurret.png", paddingLeft = "4px", assembly = true},
    ["Turret"] =                             "Remote Flame Turret",
    ["Skeleton Key"] =                       {iconFile = "iconItems skeletonKey.png", assembly = true},
    ["Sport Flashlight"] =                   {iconFile = "iconItems sportFlashlight.png", assembly = true},
    ["Third Year Party Starter"] =           {iconFile = "iconItems thirdYearPartyStarter.png", assembly = true},
    ["Toolbox"] =                            {iconFile = "iconItems toolbox.png", assembly = true},
    ["Toolboxes"] =                          {iconFile = "iconItems toolbox.png"},
    ["Trapple"] =                            {iconFile = "iconItems trapple.png", assembly = true},
    ["Utility Flashlight"] =                 {iconFile = "iconItems utilityFlashlight.png", assembly = true},
    ["Vaccine"] =                            {iconFile = "iconItems vaccine.png", paddingLeft = "4px", assembly = true},
    ["VHS Tape"] =                           {iconFile = "iconItems vhsTape.png", paddingLeft = "4px", assembly = true},
    ["Void Crystal"] =                       {iconFile = "iconItems_voidCrystal.png", paddingLeft = "4px", assembly = true},
    ["Will O' Wisp"] =                       {iconFile = "iconItems willOWisp.png", assembly = true},
    ["Winter Party Starter"] =               {iconFile = "iconItems winterPartyStarter.png", assembly = true},
    ["Worn-Out Tools"] =                     {iconFile = "iconItems wornOutTools.png", assembly = true},

--------------------------- Offerings ---------------------------
    ["Airlock Doors"] =                      {iconFile = "iconFavors airlockDoors.png", assembly = true},
    ["Alien Flora"] =                        {iconFile = "iconFavors alienFlora.png", assembly = true},
    ["Annotated Blueprint"] =                {iconFile = "iconFavors annotatedBlueprint.png", assembly = true},
    ["Ardent Raven Wreath"] =                {iconFile = "iconFavors ardentRavenWreath.png", assembly = true},
    ["Ardent Shrike Wreath"] =               {iconFile = "iconFavors ardentShrikeWreath.png", assembly = true},
    ["Ardent Spotted Owl Wreath"] =          {iconFile = "iconFavors ardentSpottedOwlWreath.png", assembly = true},
    ["Ardent Tanager Wreath"] =              {iconFile = "iconFavors ardentTanagerWreath.png", assembly = true},
    ["Arcane Dousing Rod"] =                 {iconFile = "iconFavors arcaneDousingRod.png", assembly = true},
    ["Azarov's Key"] =                       {iconFile = "iconFavors azarovsKey.png", assembly = true},
    ["BBQ Invitation"] =                     {iconFile = "iconFavors bbqInvitation.png", assembly = true},
    ["Beef Tallow Mixture"] =                {iconFile = "iconFavors beefTallowMixture.png", assembly = true},
    ["Black Salt Statuette"] =               {iconFile = "iconFavors blackSaltStatuette.png", assembly = true},
    ["Black Splinter"] =                     {iconFile = "iconFavors blackSplinter.png", assembly = true},
    ["Black Ward"] =                         {iconFile = "iconFavors blackWard.png", assembly = true},
    ["Bloodied Blueprint"] =                 {iconFile = "iconFavors bloodiedBlueprint.png", assembly = true},
    ["Bloodshot Eye"] =                      {iconFile = "iconFavors bloodshotEye.png", assembly = true},
    ["Bloody Party Streamers"] =             {iconFile = "iconFavors bloodyPartyStreamers.png", assembly = true},
    ["Bound Envelope"] =                     {iconFile = "iconFavors boundEnvelope.png", assembly = true},
    ["Bog Laurel Sachet"] =                  {iconFile = "iconFavors bogLaurelSachet.png", assembly = true},
    ["Bone Splinter"] =                      {iconFile = "iconFavors boneSplinter.png", assembly = true},
    ["Cattle Tag 28"] =                      {iconFile = "iconFavors cattleTag28.png", assembly = true},
    ["Cattle Tag 81"] =                      {iconFile = "iconFavors cattleTag81.png", assembly = true},
    ["Chalk Pouch"] =                        {iconFile = "iconFavors chalkPouch.png", assembly = true},
    ["Charred Wedding Photograph"] =         {iconFile = "iconFavors charredWeddingPhotograph.png", assembly = true},
    ["Children's Book"] =                    {iconFile = "iconFavors childrensBook.png", assembly = true},
    ["Clear Reagent"] =                      {iconFile = "iconFavors clearReagent.png", assembly = true},
    ["Cream Chalk Pouch"] =                  {iconFile = "iconFavors creamChalkPouch.png", assembly = true},
    ["Crescent Moon Bouquet"] =              {iconFile = "iconFavors crescentMoonBouquet.png", assembly = true},
    ["Crispleaf Amaranth Sachet"] =          {iconFile = "iconFavors crispleafAmaranthSachet.png", assembly = true},
    ["Crow's Eye"] =                         {iconFile = "iconFavors crowsEye.png", assembly = true},
    ["Cursed Seed"] =                        {iconFile = "iconFavors cursedSeed.png", assembly = true},
    ["Cut Coin"] =                           {iconFile = "iconFavors cutCoin.png", assembly = true},
    ["Cypress Memento Mori"] =               {iconFile = "iconFavors cypressMementoMori.png", assembly = true},
    ["Damaged Photo"] =                      {iconFile = "iconFavors damagedPhoto.png", assembly = true},
    ["Decrepit Clapboard"] =                 {iconFile = "iconFavors decrepitClapboard.png", assembly = true},
    ["Devout Raven Wreath"] =                {iconFile = "iconFavors devoutRavenWreath.png", assembly = true},
    ["Devout Shrike Wreath"] =               {iconFile = "iconFavors devoutShrikeWreath.png", assembly = true},
    ["Devout Spotted Owl Wreath"] =          {iconFile = "iconFavors devoutSpottedOwlWreath.png", assembly = true},
    ["Devout Tanager Wreath"] =              {iconFile = "iconFavors devoutTanagerWreath.png", assembly = true},
    ["Dusty Noose"] =                        {iconFile = "iconFavors dustyNoose.png", assembly = true},
    ["Ebony Memento Mori"] =                 {iconFile = "iconFavors ebonyMementoMori.png", assembly = true},
    ["Emergency Certificate"] =              {iconFile = "iconFavors emergencyCertificate.png", assembly = true},
    ["Escape! Cake"] =                       {iconFile = "iconFavors escapeCake.png", assembly = true},
    ["Faint Reagent"] =                      {iconFile = "iconFavors faintReagent.png", assembly = true},
    ["Fragrant Bog Laurel"] =                {iconFile = "iconFavors fragrantBogLaurel.png", assembly = true},
    ["Fragrant Crispleaf Amaranth"] =        {iconFile = "iconFavors fragrantCrispleafAmaranth.png", assembly = true},
    ["Fragrant Primrose Blossom"] =          {iconFile = "iconFavors fragrantPrimroseBlossom.png", assembly = true},
    ["Fragrant Sweet William"] =             {iconFile = "iconFavors fragrantSweetWilliam.png", assembly = true},
    ["Fresh Bog Laurel"] =                   {iconFile = "iconFavors freshBogLaurel.png", assembly = true},
    ["Fresh Crispleaf Amaranth"] =           {iconFile = "iconFavors freshCrispleafAmaranth.png", assembly = true},
    ["Fresh Primrose Blossom"] =             {iconFile = "iconFavors freshPrimroseBlossom.png", assembly = true},
    ["Fresh Sweet William"] =                {iconFile = "iconFavors freshSweetWilliam.png", assembly = true},
    ["Frightful Flan"] =                     {iconFile = "iconFavors frightfulFlan.png", assembly = true},
    ["Full Moon Bouquet"] =                  {iconFile = "iconFavors fullMoonBouquet.png", assembly = true},
    ["Fuming Cordage"] =                     {iconFile = "iconFavors fumingCordage.png", assembly = true},
    ["Fuming Welcome Sign"] =                {iconFile = "iconFavors fumingWelcomeSign.png", assembly = true},
    ["Ghastly Gateau"] =                     {iconFile = "iconFavors ghastlyGateau.png", assembly = true},
    ["Glass Splinter"] =                     {iconFile = "iconFavors glassSplinter.png", assembly = true},
    ["Grandma's Cookbook"] =                 {iconFile = "iconFavors granmasCookbook.png", assembly = true},
    ["Gruesome Gateau"] =                    {iconFile = "iconFavors gruesomeGateau.png", assembly = true},
    ["Harvest Festival Leaflet"] =           {iconFile = "iconFavors harvestFestivalLeaflet.png", assembly = true},
    ["Hawkins National Laboratory ID"] =     {iconFile = "iconFavors hawkinsNationalLaboratoryID.png", assembly = true},
    ["Hazy Reagent"] =                       {iconFile = "iconFavors hazyReagent.png", assembly = true},
    ["Heart Locket"] =                       {iconFile = "iconFavors heartLocket.png", assembly = true},
    ["Hollow Shell"] =                       {iconFile = "iconFavors hollowShell.png", assembly = true},
    ["Ichorous Loam"] =                      {iconFile = "iconFavors ichorousLoam.png", assembly = true},
    ["Ivory Chalk Pouch"] =                  {iconFile = "iconFavors ivoryChalkPouch.png", assembly = true},
    ["Ivory Memento Mori"] =                 {iconFile = "iconFavors ivoryMementoMori.png", assembly = true},
    ["Jigsaw Piece"] =                       {iconFile = "iconFavors jigsawPiece.png", assembly = true},
    ["Lunacy Ticket"] =                      {iconFile = "iconFavors lunacyTicket.png", assembly = true},
    ["MacMillan Ledger Page"] =              {iconFile = "iconFavors macMillanLedgerPage.png", assembly = true},
    ["MacMillan's Phalanx Bone"] =           {iconFile = "iconFavors macMillansPhalanxBone.png", assembly = true},
    ["Mary's Letter"] =                      {iconFile = "iconFavors marysLetter.png", assembly = true},
    ["Mistle Toes"] =                        {iconFile = "iconsFavors Winter.png", assembly = true},
    ["Moonlight"] =                          {iconFile = "IconFavors quarterMoonBouquet.png"},
    ["Mouldy Oak"] =                         {iconFile = "iconFavors moldyOak.png", assembly = true},
    ["Muddy Splinter"] =                     {iconFile = "iconFavors muddySplinter.png", assembly = true},
    ["Murky Reagent"] =                      {iconFile = "iconFavors murkyReagent.png", assembly = true},
    ["New Moon Bouquet"] =                   {iconFile = "iconFavors newMoonBouquet.png", assembly = true},
    ["P. Elliott Lunacy Ticket"] =           {iconFile = "iconFavors pElliottLunacyTicket.png", assembly = true},
    ["Painted River Rock"] =                 {iconFile = "iconFavors paintedRiverRock.png", assembly = true},
    ["Petrified Oak"] =                      {iconFile = "iconFavors petrifiedOak.png", assembly = true},
    ["Petrified Oak (Old Icon)"] =           {iconFile = "iconFavors petrifiedOak_old.png", assembly = true},
    ["Primrose Blossom Sachet"] =            {iconFile = "iconFavors primroseBlossomSachet.png", assembly = true},
    ["Psychiatric Assessment Report"] =      {iconFile = "iconFavors psychiatricAssessmentReport.png", assembly = true},
    ["Pustula Petals"] =                     {iconFile = "iconFavors pustulaPetals.png", assembly = true},
    ["Putrid Oak"] =                         {iconFile = "iconFavors putridOak.png", assembly = true},
    ["Quarter Moon Bouquet"] =               {iconFile = "iconFavors quarterMoonBouquet.png", assembly = true},
    ["Raven Wreath"] =                       {iconFile = "iconFavors ravenWreath.png", assembly = true},
    ["Red Envelope"] =                       {iconFile = "iconFavors redEnvelope.png", assembly = true},
    ["Rotten Oak"] =                         {iconFile = "iconFavors rottenOak.png", assembly = true},
    ["RPD Badge"] =                          {iconFile = "iconFavors rpdBadge.png", assembly = true},
    ["Sacrificial Cake"] =                   {iconFile = "iconFavors sacrificialCake.png", assembly = true},
    ["Sacrificial Ward"] =                   {iconFile = "iconFavors sacrificialWard.png", assembly = true},
    ["Salt Pouch"] =                         {iconFile = "iconFavors saltPouch.png", assembly = true},
    ["Scratched Coin"] =                     {iconFile = "iconFavors scratchedCoin.png", assembly = true},
    ["Screech Cobbler"] =                    {iconFile = "iconFavors screechCobbler.png", assembly = true},
    ["Sealed Envelope"] =                    {iconFile = "iconFavors sealedEnvelope.png", assembly = true},
    ["Shattered Bottle"] =                   {iconFile = "iconFavors shatteredBottle.png", assembly = true},
    ["Shattered Glasses"] =                  {iconFile = "iconFavors shatteredGlasses.png", assembly = true},
    ["Shiny Coin"] =                         {iconFile = "iconFavors shinyCoin.png", assembly = true},
    ["Shock Splinter"] =                     {iconFile = "iconFavors shockSplinter.png", assembly = true},
    ["Shredded Plate"] =                     {iconFile = "iconFavors shreddedPlate.png", assembly = true},
    ["Shrike Wreath"] =                      {iconFile = "iconFavors shrikeWreath.png", assembly = true},
    ["Shroud of Binding"] =                  {iconFile = "iconFavors shroudOfBinding.png", assembly = true},
    ["Shroud of Separation"] =               {iconFile = "iconFavors shroudOfSeparation.png", assembly = true},
    ["Shroud of Union"] =                    {iconFile = "iconFavors shroudOfUnion.png", assembly = true},
    ["Signed Ledger Page"] =                 {iconFile = "iconFavors signedLedgerPage.png", assembly = true},
    ["Smoking Splinter"] =                   {iconFile = "iconFavors smokingSplinter.png", assembly = true},
    ["Spotted Owl Wreath"] =                 {iconFile = "iconFavors spottedOwlWreath.png", assembly = true},
    ["Strode Realty Key"] =                  {iconFile = "iconFavors strodeRealtyKey.png", assembly = true},
    ["Survivor Pudding"] =                   {iconFile = "iconFavors survivorPudding.png", assembly = true},
    ["Sweet William Sachet"] =               {iconFile = "iconFavors sweetWilliamSachet.png", assembly = true},
    ["Tanager Wreath"] =                     {iconFile = "iconFavors tanagerWreath.png", assembly = true},
    ["Tarnished Coin"] =                     {iconFile = "iconFavors tarnishedCoin.png", assembly = true},
    ["Terrormisu"] =                         {iconFile = "iconFavors terrormisu.png", assembly = true},
    ["The Last Mask"] =                      {iconFile = "iconFavors theLastMask.png", assembly = true},
    ["The Pied Piper"] =                     {iconFile = "iconFavors thePiedPiper.png", assembly = true},
    ["Torn Blueprint"] =                     {iconFile = "iconFavors tornBlueprint.png", assembly = true},
    ["Vigo's Blueprint"] =                   {iconFile = "iconFavors vigosBlueprint.png", assembly = true},
    ["Vigo's Jar of Salty Lips"] =           {iconFile = "iconFavors vigosJarOfSaltyLips.png", assembly = true},
    ["Vigo's Shroud"] =                      {iconFile = "iconFavors vigosShroud.png", assembly = true},
    ["Virginia Plate"] =                     {iconFile = "iconFavors virginiaPlate.png", assembly = true},
    ["White Ward"] =                         {iconFile = "iconFavors whiteWard.png", assembly = true},
    ["Yamaoka Family Crest"] =               {iconFile = "iconFavors yamaokaFamilyCrest.png", assembly = true},
    

    --------------------------- Mobile Offerings ---------------------------
    ["Black Tea"] =                          {iconFile = "iconFavors BlackTea.png", assembly = true},
    ["Blank Postcard"] =                     {iconFile = "iconFavors BlankPostcard.png", assembly = true},
    ["Bloodstone Chalice"] =                 {iconFile = "iconFavors BloodstoneChalice.png", assembly = true},
    ["Bone Doll"] =                          {iconFile = "iconFavors BoneDoll.png", assembly = true},
    ["Burdock Tea"] =                        {iconFile = "iconFavors BurdockTea.png", assembly = true},
    ["Ceramic Chalice"] =                    {iconFile = "iconFavors CeramicChalice.png", assembly = true},
    ["Clay Doll"] =                          {iconFile = "iconFavors ClayDoll.png", assembly = true},
    ["Copper Chalice"] =                     {iconFile = "iconFavors CopperChalice.png", assembly = true},
    ["Crumpled Postcard"] =                  {iconFile = "iconFavors CrumpledPostcard.png", assembly = true},
    ["Flesh Doll"] =                         {iconFile = "iconFavors FleshDoll.png", assembly = true},
    ["Lotus Leaf Tea"] =                     {iconFile = "iconFavors LotusLeafTea.png", assembly = true},
    ["Lovers' Postcard"] =                   {iconFile = "iconFavors LoversPostcard.png", assembly = true},
    ["Milk Tea"] =                           {iconFile = "iconFavors MilkTea.png", assembly = true},
    ["Stamped Postcard"] =                   {iconFile = "iconFavors StampedPostcard.png", assembly = true},
    ["Thorn Doll"] =                         {iconFile = "iconFavors ThornDoll.png", assembly = true},
    ["Wooden Chalice"] =                     {iconFile = "iconFavors WoodenChalice.png", assembly = true},


    --------------------------- Perks ---------------------------
    ["A Nurse's Calling"] =                  {iconFile = "IconPerks aNursesCalling.png"},
    ["Ace in the Hole"] =                    {iconFile = "IconPerks aceInTheHole.png"},
    ["Adrenaline"] =                         {iconFile = "IconPerks adrenaline.png"},
    ["Aftercare"] =                          {iconFile = "IconPerks aftercare.png"},
    ["Agitation"] =                          {iconFile = "IconPerks agitation.png"},
    ["Alert"] =                              {iconFile = "IconPerks alert.png"},
    ["Alien Instinct"] =                     {iconFile = "IconPerks alienInstinct.png"},
    ["All-Shaking Thunder"] =                {iconFile = "IconPerks allShakingThunder.png"},
    ["Any Means Necessary"] =                {iconFile = "IconPerks anyMeansNecessary.png"},
    ["Appraisal"] =                          {iconFile = "IconPerks appraisal.png"},
    ["Artefact Hunter"] =                    {iconFile = "IconPerks artefactHunter.png"},
    ["Autodidact"] =                         {iconFile = "IconPerks autodidact.png"},
    ["Awakened Awareness"] =                 {iconFile = "IconPerks awakenedAwareness.png"},
    ["Babysitter"] =                         {iconFile = "IconPerks babysitter.png"},
    ["Background Player"] =                  {iconFile = "IconPerks backgroundPlayer.png"},
    ["Balanced Landing"] =                   {iconFile = "IconPerks balancedLanding.png"},
    ["Bamboozle"] =                          {iconFile = "IconPerks bamboozle.png"},
    ["Barbecue & Chilli"] =                  {iconFile = "IconPerks barbecueAndChilli.png"},
    ["Bardic Inspiration"] =                 {iconFile = "IconPerks bardicInspiration.png"},
    ["Batteries Included"] =                 {iconFile = "IconPerks batteriesIncluded.png"},
    ["Beast of Prey"] =                      {iconFile = "IconPerks beastOfPrey.png"},
    ["Better than New"] =                    {iconFile = "IconPerks betterThanNew.png"},
    ["Better Together"] =                    {iconFile = "IconPerks betterTogether.png"},
    ["Bite the Bullet"] =                    {iconFile = "IconPerks biteTheBullet.png"},
    ["Bitter Murmur"] =                      {iconFile = "IconPerks bitterMurmur.png"},
    ["Blast Mine"] =                         {iconFile = "IconPerks blastMine.png"},
    ["Bloodhound"] =                         {iconFile = "IconPerks bloodhound.png"},
    ["Blood Echo"] =                         {iconFile = "IconPerks bloodEcho.png"},
    ["Blood Pact"] =                         {iconFile = "IconPerks bloodPact.png"},
    ["Blood Rush"] =                         {iconFile = "IconPerks bloodRush.png"},
    ["Blood Warden"] =                       {iconFile = "IconPerks bloodWarden.png"},
    ["Boil Over"] =                          {iconFile = "IconPerks boilOver.png"},
    ["Boon: Circle of Healing"] =            {iconFile = "IconPerks boonCircleOfHealing.png"},
    ["Boon: Dark Theory"] =                  {iconFile = "IconPerks boonDarkTheory.png"},
    ["Boon: Exponential"] =                  {iconFile = "IconPerks boonExponential.png"},
    ["Boon: Illumination"] =                 {iconFile = "IconPerks boonIllumination.png"},
    ["Boon: Shadow Step"] =                  {iconFile = "IconPerks boonShadowStep.png"},
    ["Bond"] =                               {iconFile = "IconPerks bond.png"},
    ["Borrowed Time"] =                      {iconFile = "IconPerks borrowedTime.png"},
    ["Botany Knowledge"] =                   {iconFile = "IconPerks botanyKnowledge.png"},
    ["Breakdown"] =                          {iconFile = "IconPerks breakdown.png"},
    ["Breakout"] =                           {iconFile = "IconPerks breakout.png"},
    ["Brutal Strength"] =                    {iconFile = "IconPerks brutalStrength.png"},
    ["Buckle Up"] =                          {iconFile = "IconPerks buckleUp.png"},
    ["Built to Last"] =                      {iconFile = "IconPerks builtToLast.png"},
    ["Call of Brine"] =                      {iconFile = "IconPerks callOfBrine.png"},
    ["Calm Spirit"] =                        {iconFile = "IconPerks calmSpirit.png"},
    ["Camaraderie"] =                        {iconFile = "IconPerks camaraderie.png"},
    ["Champion of Light"] =                  {iconFile = "IconPerks championOfLight.png"},
    ["Chemical Trap"] =                      {iconFile = "IconPerks chemicalTrap.png"},
    ["Corrective Action"] =                  {iconFile = "IconPerks correctiveAction.png"},
    ["Corrective Action (Original Icon)"] =  {iconFile = "IconPerks correctiveAction_originalIcon.png"},
    ["Corrupt Intervention"] =               {iconFile = "IconPerks corruptIntervention.png"},
    ["Coulrophobia"] =                       {iconFile = "IconPerks coulrophobia.png"},
    ["Counterforce"] =                       {iconFile = "IconPerks counterforce.png"},
    ["Coup de Grâce"] =                      {iconFile = "IconPerks coupDeGrâce.png"},
    ["Cruel Limits"] =                       {iconFile = "IconPerks cruelLimits.png"},
    ["Clairvoyance"] =                       {iconFile = "IconPerks clairvoyance.png"},
    ["Clean Break"] =                        {iconFile = "IconPerks cleanBreak.png"},
    ["Claustrophobia"] =                     {iconFile = "IconPerks cruelLimits.png"},
    ["Cut Loose"] =                          {iconFile = "IconPerks cutLoose.png"},
    ["Dance With Me"] =                      {iconFile = "IconPerks danceWithMe.png"},
    ["Dark Arrogance"] =                     {iconFile = "IconPerks darkArrogance.png"},
    ["Dark Devotion"] =                      {iconFile = "IconPerks darkDevotion.png"},
    ["Dark Sense"] =                         {iconFile = "IconPerks darkSense.png"},
    ["Darkness Revealed"] =                  {iconFile = "IconPerks darknessRevealed.png"},
    ["Dead Hard"] =                          {iconFile = "IconPerks deadHard.png"},
    ["Dead Man's Switch"] =                  {iconFile = "IconPerks deadMansSwitch.png"},
	["Deadline"] =                           {iconFile = "IconPerks deadline.png"},
    ["Deadlock"] =                           {iconFile = "IconPerks deadlock.png"},
    ["Deathbound"] =                         {iconFile = "IconPerks deathbound.png"},
    ["Deception"] =                          {iconFile = "IconPerks deception.png"},
    ["Decisive Strike"] =                    {iconFile = "IconPerks decisiveStrike.png"},
    ["Deerstalker"] =                        {iconFile = "IconPerks deerstalker.png"},
    ["Déjà Vu"] =                            {iconFile = "IconPerks dejaVu.png"},
    ["Deliverance"] =                        {iconFile = "IconPerks deliverance.png"},
    ["Desperate Measures"] =                 {iconFile = "IconPerks desperateMeasures.png"},
    ["Detective's Hunch"] =                  {iconFile = "IconPerks detectivesHunch.png"},
    ["Discordance"] =                        {iconFile = "IconPerks discordance.png"},
    ["Dissolution"] =                        {iconFile = "IconPerks dissolution.png"},
    ["Distortion"] =                         {iconFile = "IconPerks distortion.png"},
    ["Distressing"] =                        {iconFile = "IconPerks distressing.png"},
    ["Diversion"] =                          {iconFile = "IconPerks diversion.png"},
    ["Do No Harm"] =                         {iconFile = "T_UI_iconsPerks_DoNoHarm.png"},
    ["Dominance"] =                          {iconFile = "IconPerks Dominance.png"},
    ["Dragon's Grip"] =                      {iconFile = "IconPerks dragonsGrip.png"},
    ["Dramaturgy"] =                         {iconFile = "IconPerks dramaturgy.png"},
    ["Duty of Care"] =                       {iconFile = "T_UI_iconsPerks_DutyOfCare.png"},
    ["Dying Light"] =                        {iconFile = "IconPerks dyingLight.png"},
    ["Empathic Connection"] =                {iconFile = "IconPerks empathicConnection.png"},
    ["Empathy"] =                            {iconFile = "IconPerks empathy.png"},
    ["Enduring"] =                           {iconFile = "IconPerks enduring.png"},
    ["Eruption"] =                           {iconFile = "IconPerks eruption.png"},
    ["Eyes of Belmont"] =                    {iconFile = "IconPerks EyesOfBelmont.png"},
    ["Exultation"] =                         {iconFile = "IconPerks Exultation.png"},
    ["Fast Track"] =                         {iconFile = "IconPerks fastTrack.png"},
    ["Fearmonger"] =                         {iconFile = "IconPerks mindbreaker.png"},
    ["Finesse"] =                            {iconFile = "IconPerks finesse.png"},
    ["Fire Up"] =                            {iconFile = "IconPerks fireUp.png"},
    ["Fixated"] =                            {iconFile = "IconPerks fixated.png"},
    ["Flashbang"] =                          {iconFile = "IconPerks flashbang.png"},
    ["Flip-Flop"] =                          {iconFile = "IconPerks flip-Flop.png"},
    ["Fogwise"] =                            {iconFile = "IconPerks fogwise.png"},
    ["For the People"] =                     {iconFile = "IconPerks forThePeople.png"},
    ["Forced Hesitation"] =                  {iconFile = "IconPerks forcedHesitation.png"},
    ["Forced Penance"] =                     {iconFile = "IconPerks forcedPenance.png"},
    ["Forever Entwined"] =                   {iconFile = "T_UI_iconPerks_ForeverEntwined.png"},
    ["Franklin's Demise"] =                  {iconFile = "IconPerks franklinsDemise.png"},
    ["Friendly Competition"] =               {iconFile = "IconPerks friendlyCompetition.png"},
    ["Friends 'til the End"] =               {iconFile = "IconPerks friendsTilTheEnd.png"},
    ["Furtive Chase"] =                      {iconFile = "IconPerks furtiveChase.png"},
    ["Game Afoot"] =                         {iconFile = "IconPerks gameAfoot.png"},
    ["Gearhead"] =                           {iconFile = "IconPerks gearhead.png"},
    ["Genetic Limits"] =                     {iconFile = "IconPerks geneticLimits.png"},
    ["Grim Embrace"] =                       {iconFile = "IconPerks grimEmbrace.png"},
    ["Guardian"] =                           {iconFile = "IconPerks guardian.png"},
    ["Hardened"] =                           {iconFile = "IconPerks hardened.png"},
    ["Head On"] =                            {iconFile = "IconPerks headOn.png"},
    ["Hex: Blood Favour"] =                  {iconFile = "IconPerks hexBloodFavour.png"},
    ["Hex: Crowd Control"] =                 {iconFile = "IconPerks hexCrowdControl.png"},
    ["Hex: Devour Hope"] =                   {iconFile = "IconPerks hexDevourHope.png"},
    ["Hex: Face the Darkness"] =             {iconFile = "IconPerks hexFaceTheDarkness.png"},
    ["Hex: Fortune's Fool"] =                "Hex: Plaything",
    ["Hex: Haunted Ground"] =                {iconFile = "IconPerks hexHauntedGround.png"},
    ["Hex: Huntress Lullaby"] =              {iconFile = "IconPerks hexHuntressLullaby.png"},
    ["Hex: No One Escapes Death"] =          {iconFile = "IconPerks hexNoOneEscapesDeath.png"},
    ["Hex: Nothing but Misery"] =            {iconFile = "T_UI_iconPerks_NothingButMisery.png"},
    ["Hex: Pentimento"] =                    {iconFile = "IconPerks hexPentimento.png"},
    ["Hex: Plaything"] =                     {iconFile = "IconPerks hexPlaything.png"},
    ["Hex: Retribution"] =                   {iconFile = "IconPerks hexRetribution.png"},
    ["Hex: Ruin"] =                          {iconFile = "IconPerks hexRuin.png"},
    ["Hex: The Third Seal"] =                {iconFile = "IconPerks hexTheThirdSeal.png"},
    ["Hex: Thrill of the Hunt"] =            {iconFile = "IconPerks hexThrillOfTheHunt.png"},
    ["Hex: Two Can Play"] =                  {iconFile = "IconPerks hexTwoCanPlay.png"},
    ["Hex: Undying"] =                       {iconFile = "IconPerks hexUndying.png"},
    ["Hex: Wretched Fate"] =                 {iconFile = "IconPerks HexWretchedFate.png"},
    ["Hidden Perk"] =                        {iconFile = "IconPerks hiddenPerk.png"},
    ["Hoarder"] =                            {iconFile = "IconPerks hoarder.png"},
    ["Hope"] =                               {iconFile = "IconPerks hope.png"},
    ["Hubris"] =                             {iconFile = "IconPerks hubris.png"},
    ["Human Greed"] =                        {iconFile = "IconPerks HumanGreed.png"},
    ["Hyperfocus"] =                         {iconFile = "IconPerks hyperfocus.png"},
    ["Hysteria"] =                           {iconFile = "IconPerks hysteria.png"},
    ["I'm All Ears"] =                       {iconFile = "IconPerks imAllEars.png"},
    ["Infectious Fright"] =                  {iconFile = "IconPerks infectiousFright.png"},
    ["Inner Focus"] =                        {iconFile = "IconPerks innerFocus.png"},
    ["Inner Healing"] =                      {iconFile = "IconPerks innerHealing.png"},
    ["Inner Strength"] =                     {iconFile = "IconPerks innerStrength.png"},
    ["Insidious"] =                          {iconFile = "IconPerks insidious.png"},
    ["Invocation: Treacherous Crows"] =      {iconFile = "IconPerks invocationTreacherousCrows.png"},
    ["Invocation: Weaving Spiders"] =        {iconFile = "IconPerks invocationWeavingSpiders.png"},
    ["Iron Grasp"] =                         {iconFile = "IconPerks ironGrasp.png"},
    ["Iron Maiden"] =                        {iconFile = "IconPerks ironMaiden.png"},
    ["Iron Will"] =                          {iconFile = "IconPerks ironWill.png"},
    ["Jolt"] =                               {iconFile = "IconPerks surge.png"},
    ["Kindred"] =                            {iconFile = "IconPerks kindred.png"},
    ["Kinship"] =                            {iconFile = "IconPerks camaraderie.png"},
    ["Knock Out"] =                          {iconFile = "IconPerks knockOut.png"},
    ["Languid Touch"] =                      {iconFile = "IconPerks languidTouch.png"},
    ["Last Standing"] =                      {iconFile = "IconPerks lastStanding.png"},
    ["Leader"] =                             {iconFile = "IconPerks leader.png"},
    ["Left Behind"] =                        {iconFile = "IconPerks leftBehind.png"},
    ["Lethal Pursuer"] =                     {iconFile = "IconPerks lethalPursuer.png"},
    ["Leverage"] =                           {iconFile = "IconPerks leverage.png"},
    ["Lightborn"] =                          {iconFile = "IconPerks lightborn.png"},
    ["Light-Footed"] =                       {iconFile = "IconPerks light-Footed.png"},
    ["Lightweight"] =                        {iconFile = "IconPerks lightweight.png"},
    ["Lithe"] =                              {iconFile = "IconPerks lithe.png"},
    ["Low Profile"] =                        {iconFile = "IconPerks lowProfile.png"},
    ["Lucky Break"] =                        {iconFile = "IconPerks luckyBreak.png"},
    ["Lucky Star"] =                         {iconFile = "IconPerks luckyStar.png"},
    ["Machine Learning"] =                   {iconFile = "IconPerks machineLearning.png"},
    ["Mad Grit"] =                           {iconFile = "IconPerks madGrit.png"},
    ["Made for This"] =                      {iconFile = "IconPerks madeForThis.png"},
    ["Make Your Choice"] =                   {iconFile = "IconPerks makeYourChoice.png"},
    ["Merciless Storm"] =                    {iconFile = "IconPerks mercilessStorm.png"},
    ["Mettle of Man"] =                      {iconFile = "IconPerks mettleOfMan.png"},
    ["Mindbreaker"] =                        {iconFile = "IconPerks mindbreaker.png"},
    ["Mirrored Illusion"] =                  {iconFile = "IconPerks mirroredIllusion.png"},
    ["Moment of Glory"] =                    {iconFile = "IconPerks MomentOfGlory.png"},
    ["Monitor & Abuse"] =                    {iconFile = "IconPerks monitorAndAbuse.png"},
    ["Nemesis"] =                            {iconFile = "IconPerks nemesis.png"},
    ["Nemesis (Perk)"] =                     {iconFile = "IconPerks nemesis.png"},
    ["No Holds Barred"] =                    "Deadlock",
    ["No Mither"] =                          {iconFile = "IconPerks noMither.png"},
    ["No Quarter"] =                         {iconFile = "IconPerks noQuarter.png"},
    ["No One Left Behind"] =                 {iconFile = "IconPerks noOneLeftBehind.png"},
    ["No Way Out"] =                         {iconFile = "IconPerks noWayOut.png"},
    ["None Are Free"] =                      {iconFile = "T_UI_iconPerks_NoneAreFree.png"},
    ["Nowhere to Hide"] =                    {iconFile = "IconPerks nowhereToHide.png"},
    ["Object of Obsession"] =                {iconFile = "IconPerks objectOfObsession.png"},
    ["Off the Record"] =                     {iconFile = "IconPerks offTheRecord.png"},
    ["Open-Handed"] =                        {iconFile = "IconPerks open-Handed.png"},
    ["Oppression"] =                         {iconFile = "IconPerks oppression.png"},
    ["Overcharge"] =                         {iconFile = "IconPerks overcharge.png"},
    ["Overcome"] =                           {iconFile = "IconPerks overcome.png"},
    ["Overwhelming Presence"] =              {iconFile = "IconPerks overwhelmingPresence.png"},
    ["Overzealous"] =                        {iconFile = "IconPerks overzealous.png"},
    ["Parental Guidance"] =                  {iconFile = "IconPerks parentalGuidance.png"},
    ["Pharmacy"] =                           {iconFile = "IconPerks pharmacy.png"},
    ["Play with Your Food"] =                {iconFile = "IconPerks playWithYourFood.png"},
    ["Plot Twist"] =                         {iconFile = "IconPerks plotTwist.png"},
    ["Plunderer's Instinct"] =               {iconFile = "IconPerks plunderersInstinct.png"},
    ["Poised"] =                             {iconFile = "IconPerks poised.png"},
    ["Pop Goes the Weasel"] =                {iconFile = "IconPerks popGoesTheWeasel.png"},
    ["Potential Energy"] =                   {iconFile = "IconPerks potentialEnergy.png"},
    ["Power Struggle"] =                     {iconFile = "IconPerks powerStruggle.png"},
    ["Predator"] =                           {iconFile = "IconPerks predator.png"},
    ["Premonition"] =                        {iconFile = "IconPerks premonition.png"},
    ["Prove Thyself"] =                      {iconFile = "IconPerks proveThyself.png"},
    ["Quick & Quiet"] =                      {iconFile = "IconPerks quickAndQuiet.png"},
    ["Quick Gambit"] =                       {iconFile = "IconPerks quickGambit.png"},
    ["Rancor"] =                             {iconFile = "IconPerks rancor.png"},
    ["Rapid Brutality"] =                    {iconFile = "IconPerks rapidBrutality.png"},
    ["Rapid Response"] =                     {iconFile = "T_UI_iconsPerks_RapidResponse.png"},
    ["Reactive Healing"] =                   {iconFile = "IconPerks reactiveHealing.png"},
    ["Reassurance"] =                        {iconFile = "IconPerks reassurance.png"},
    ["Red Herring"] =                        {iconFile = "IconPerks redHerring.png"},
    ["Remember Me"] =                        {iconFile = "IconPerks rememberMe.png"},
    ["Renewal"] =                            {iconFile = "IconPerks renewal.png"},
    ["Repressed Alliance"] =                 {iconFile = "IconPerks repressedAlliance.png"},
    ["Residual Manifest"] =                  {iconFile = "IconPerks residualManifest.png"},
    ["Resilience"] =                         {iconFile = "IconPerks resilience.png"},
    ["Resurgence"] =                         {iconFile = "IconPerks resurgence.png"},
    ["Rookie Spirit"] =                      {iconFile = "IconPerks rookieSpirit.png"},
    ["Save the Best for Last"] =             {iconFile = "IconPerks saveTheBestForLast.png"},
    ["Saboteur"] =                           {iconFile = "IconPerks saboteur.png"},
    ["Saboteur (Original Icon)"] =           {iconFile = "IconPerks saboteur_old.png"},
    ["Scavenger"] =                          {iconFile = "IconPerks scavenger.png"},
    ["Scene Partner"] =                      {iconFile = "IconPerks scenePartner.png"},
    ["Scourge Hook: Floods of Rage"] =       {iconFile = "IconPerks scourgeHookFloodsOfRage.png"},
    ["Scourge Hook: Gift of Pain"] =         {iconFile = "IconPerks scourgeHookGiftOfPain.png"},
    ["Scourge Hook: Hangman's Trick"] =      {iconFile = "IconPerks scourgeHookHangmansTrick.png"},
    ["Scourge Hook: Jagged Compass"] =       {iconFile = "IconPerks scourgeHookJaggedCompass.png"},
    ["Scourge Hook: Monstrous Shrine"] =     {iconFile = "IconPerks scourgeHookMonstrousShrine.png"},
    ["Scourge Hook: Pain Resonance"] =       {iconFile = "IconPerks scourgeHookPainResonance.png"},
    ["Scourge Hook: Weeping Wounds"] =       "Scourge Hook: Gift of Pain",
    ["Second Wind"] =                        {iconFile = "IconPerks secondWind.png"},
    ["Self-Aware"] =                         {iconFile = "IconPerks fixated.png"},
    ["Self-Care"] =                          {iconFile = "IconPerks self-Care.png"},
    ["Self-Preservation"] =                  {iconFile = "IconPerks self-Preservation.png"},
    ["Septic Touch"] =                       {iconFile = "IconPerks septicTouch.png"},
    ["Shadowborn"] =                         {iconFile = "IconPerks shadowborn.png"},
    ["Shattered Hope"] =                     {iconFile = "IconPerks shatteredHope.png"},
    ["Shoulder the Burden"] =                {iconFile = "IconPerks shoulderTheBurden.png"},
    ["Situational Awareness"] =              {iconFile = "IconPerks situationalAwareness.png"},
    ["Slippery Meat"] =                      {iconFile = "IconPerks slipperyMeat.png"},
    ["Slippery Meat (Old)"] =                {iconFile = "IconPerks slipperyMeat_old.png"},
    ["Sloppy Butcher"] =                     {iconFile = "IconPerks sloppyButcher.png"},
    ["Small Game"] =                         {iconFile = "IconPerks smallGame.png"},
    ["Small Game (Old)"] =                   {iconFile = "IconPerks smallGame_old.png"},
    ["Smash Hit"] =                          {iconFile = "IconPerks smashHit.png"},
    ["Sole Survivor"] =                      {iconFile = "IconPerks soleSurvivor.png"},
    ["Solidarity"] =                         {iconFile = "IconPerks solidarity.png"},
    ["Soul Guard"] =                         {iconFile = "IconPerks soulGuard.png"},
    ["Specialist"] =                         {iconFile = "IconPerks specialist.png"},
    ["Spies from the Shadows"] =             {iconFile = "IconPerks spiesFromTheShadows.png"},
    ["Spine Chill"] =                        {iconFile = "IconPerks spineChill.png"},
    ["Spirit Fury"] =                        {iconFile = "IconPerks spiritFury.png"},
    ["Sprint Burst"] =                       {iconFile = "IconPerks sprintBurst.png"},
    ["Stake Out"] =                          {iconFile = "IconPerks stakeOut.png"},
    ["Starstruck"] =                         {iconFile = "IconPerks starstruck.png"},
    ["Still Sight"] =                        {iconFile = "IconPerks stillSight.png"},
    ["Streetwise"] =                         {iconFile = "IconPerks streetwise.png"},
    ["Strength in Shadows"] =                {iconFile = "IconPerks strengthInShadows.png"},
    ["Stridor"] =                            {iconFile = "IconPerks stridor.png"},
    ["Superior Anatomy"] =                   {iconFile = "IconPerks superiorAnatomy.png"},
    ["Surge"] =                              {iconFile = "IconPerks surge.png"},
    ["Surveillance"] =                       {iconFile = "IconPerks surveillance.png"},
    ["Teamwork: Collective Stealth"] =       {iconFile = "IconPerks teamworkCollectiveStealth.png"},
    ["Teamwork: Power of Two"] =             {iconFile = "IconPerks teamworkPowerOfTwo.png"},
    ["Technician"] =                         {iconFile = "IconPerks technician.png"},
    ["Tenacity"] =                           {iconFile = "IconPerks tenacity.png"},
    ["Terminus"] =                           {iconFile = "IconPerks terminus.png"},
    ["Territorial Imperative"] =             {iconFile = "IconPerks territorialImperative.png"},
    ["Thanatophobia"] =                      {iconFile = "IconPerks thanatophobia.png"},
    ["This Is Not Happening"] =              {iconFile = "IconPerks thisIsNotHappening.png"},
    ["Thrilling Tremors"] =                  {iconFile = "IconPerks thrillingTremors.png"},
    ["THWACK!"] =                            {iconFile = "IconPerks thwack.png"},
    ["Tinkerer"] =                           {iconFile = "IconPerks tinkerer.png"},
    ["Tough Runner"] =                       {iconFile = "IconPerks toughRunner.png"},
    ["Trail of Torment"] =                   {iconFile = "IconPerks trailOfTorment.png"},
    ["Troubleshooter"] =                     {iconFile = "IconPerks troubleshooter.png"},
    ["Ultimate Weapon"] =                    {iconFile = "IconPerks ultimateWeapon.png"},
    ["Unbound"] =                            {iconFile = "IconPerks unbound.png"},
    ["Underperform"] =                       {iconFile = "IconPerks underperform.png"},
    ["Undone"] =                             {iconFile = "IconPerks undone.png"},
    ["Unforeseen"] =                         {iconFile = "IconPerks unforeseen.png"},
    ["Unnerving Presence"] =                 {iconFile = "IconPerks unnervingPresence.png"},
    ["Unrelenting"] =                        {iconFile = "IconPerks unrelenting.png"},
    ["Up the Ante"] =                        {iconFile = "IconPerks upTheAnte.png"},
    ["Unbreakable"] =                        {iconFile = "IconPerks unbreakable.png"},
    ["Urban Evasion"] =                      {iconFile = "IconPerks urbanEvasion.png"},
    ["Vigil"] =                              {iconFile = "IconPerks vigil.png"},
    ["Visionary"] =                          {iconFile = "IconPerks visionary.png"},
    ["Wake Up!"] =                           {iconFile = "IconPerks wakeUp.png"},
    ["We'll Make It"] =                      {iconFile = "IconPerks wellMakeIt.png"},
    ["We're Gonna Live Forever"] =           {iconFile = "IconPerks wereGonnaLiveForever.png"},
    ["Weave Attunement"] =                   {iconFile = "IconPerks weaveAttunement.png"},
    ["Whispers"] =                           {iconFile = "IconPerks whispers.png"},
    ["Wicked"] =                             {iconFile = "IconPerks wicked.png"},
    ["Windows of Opportunity"] =             {iconFile = "IconPerks windowsOfOpportunity.png"},
    ["Wiretap"] =                            {iconFile = "IconPerks wiretap.png"},
    ["Zanshin Tactics"] =                    {iconFile = "IconPerks zanshinTactics.png"},


    --------------------------- SurvivorIcons ---------------------------
    ["Ace Visconti"] =                       {iconFile = "SurvivorAce.png"},
    ["Ada Wong"] =                           {iconFile = "SurvivorAda.png"},
    ["Adam Francis"] =                       {iconFile = "SurvivorAdam.png"},
    ["Alan Wake"] =                     	 {iconFile = "SurvivorAlan.png"},
    ["Ash Williams"] =                       {iconFile = "SurvivorAsh.png"},
    ["Bill Overbeck"] =                      {iconFile = "SurvivorBill.png"},
    ["Cheryl Mason"] =                       {iconFile = "SurvivorCheryl.png"},
    ["Claudette Morel"] =                    {iconFile = "SurvivorClaudette.png"},
    ["David King"] =                         {iconFile = "SurvivorDavid.png"},
    ["David Tapp"] =                         {iconFile = "SurvivorTapp.png"},
    ["Dwight Fairfield"] =                   {iconFile = "SurvivorDwight.png"},
    ["Ellen Ripley"] =                       {iconFile = "SurvivorEllen.png"},
    ["Élodie Rakoto"] =                      {iconFile = "SurvivorElodie.png"},
    ["Felix Richter"] =                      {iconFile = "SurvivorFelix.png"},
    ["Feng Min"] =                           {iconFile = "SurvivorFeng.png"},
    ["Gabriel Soma"] =                       {iconFile = "SurvivorGabriel.png"},
    ["Haddie Kaur"] =                        {iconFile = "SurvivorHaddie.png"},
    ["Jake Park"] =                          {iconFile = "SurvivorJake.png"},
    ["Jane Romero"] =                        {iconFile = "SurvivorJane.png"},
    ["Jeff Johansen"] =                      {iconFile = "SurvivorJeff.png"},
    ["Jill Valentine"] =                     {iconFile = "SurvivorJill.png"},
    ["Jonah Vasquez"] =                      {iconFile = "SurvivorJonah.png"},
    ["Kate Denson"] =                        {iconFile = "SurvivorKate.png"},
    ["Lara Croft"] =                         {iconFile = "SurvivorLara.png"},
    ["Laurie Strode"] =                      {iconFile = "SurvivorLaurie.png"},
    ["Leon Scott Kennedy"] =                 {iconFile = "SurvivorLeon.png"},
    ["Meg Thomas"] =                         {iconFile = "SurvivorMeg.png"},
    ["Mikaela Reid"] =                       {iconFile = "SurvivorMikaela.png"},
    ["Nancy Wheeler"] =                      {iconFile = "SurvivorNancy.png"},
    ["Nea Karlsson"] =                       {iconFile = "SurvivorNea.png"},
	["Nicolas Cage"] =                       {iconFile = "SurvivorNicolas.png"},
	["Rebecca Chambers"] =                   {iconFile = "SurvivorRebecca.png"},
	["Renato Lyra"] =                        {iconFile = "SurvivorRenato.png"},
	["Sable Ward"] =                         {iconFile = "SurvivorSable.png"},
	["Steve Harrington"] =                   {iconFile = "SurvivorSteve.png"},
    ["Thalita Lyra"] =                       {iconFile = "SurvivorThalita.png"},
    ["Trevor Belmont"] =                     {iconFile = "SurvivorTrevor.png"},
    ["Troupe"] =                             {iconFile = "SurvivorTroupe.png"},
    ["Quentin Smith"] =                      {iconFile = "SurvivorQuentin.png"},
    ["Vittorio Toscano"] =                   {iconFile = "SurvivorVittorio.png"},
	["Yoichi Asakawa"] =                     {iconFile = "SurvivorYoichi.png"},
	["Yui Kimura"] =                         {iconFile = "SurvivorYui.png"},
    ["Yun-Jin Lee"] =                        {iconFile = "SurvivorYun-Jin.png"},
    ["Zarina Kassir"] =                      {iconFile = "SurvivorZarina.png"},

    --------------------------- Hud Survivor Icons ---------------------------
    ["Chris Redfield"] =                     {iconFile = "S27_outfit02_charSelect_portrait_HUD.png"},
    ["Claire Redfield"] =                    {iconFile = "S26_outfit02_charSelect_portrait_HUD.png"},
    ["Cybil Bennett"] =                      {iconFile = "S22_outfit_008_charSelect_portrait_HUD.png"},
    ["Jonathan Byers"] =                     {iconFile = "QM_Outfit_010_charSelect_portrait_HUD.png"},
    ["Lisa Garland"] =                       {iconFile = "S22_outfit_006_charSelect_portrait_HUD.png"},

    --------------------------- IconHelp ---------------------------
    ["Achievement"] =                        {iconFile = "IconHelp achievements.png"},
    ["Add-on"] =                             {iconFile = "IconHelp addons.png"},
    ["Alarm Clock"] =                        {iconFile = "IconHelp alarmClock.png"},
    ["Altruism"] =                           {iconFile = "IconHelp altruism.png"},
    ["Aura"] =                               {iconFile = "IconHelp auras.png"},
    ["Auric Cell"] =                         {iconFile = "IconCurrency auricCells.png"},
    ["Basement"] =                           {iconFile = "IconHelp basement.png"},
    ["Basement Hook"] =                      "Basement",
    ["Black Lock"] =                         "Hatch",
    ["Blood Trinket"] =                      "Thrombotic Trinket",
    ["Bloodlust"] =                          {iconFile = "IconHelp bloodlust.png"},
    ["Bloodpoints"] =                        {iconFile = "IconCurrency bloodpoints.png"},
    ["Bloodpoints white"] =                  {iconFile = "IconHelp bloodpoints.png"},
    ["Bloodstains"] =                        {iconFile = "IconHelp bloodStains.png"},
    ["Bloodweb"] =                           {iconFile = "IconHelp bloodweb.png"},
    ["Breakable Wall"] =                     {iconFile = "IconHelp breakableWall.png"},
    ["Cage"] =                               {iconFile = "IconHelp cagesOfAtonement.png"},
    ["Cage of Atonement"] =                  "Cage",
    ["Cages of Atonement"] =                 "Cage",
    ["Cage of Corruption"] =                 "Cage",
    ["Cages of Corruption"] =                "Cage",
    ["Carrying"] =                           {iconFile = "IconHelp carrySurvivor.png"},
    ["Chase"] =                              {iconFile = "IconHelp chase.png"},
    ["Chest"] =                              {iconFile = "IconHelp chests.png"},
    ["Treasure Chest"] =                     "Chest",
    ["Closet"] =                             {iconFile = "IconHelp lockers.png"},
    ["Cooperation"] =                        {iconFile = "IconHelp cooperation.png"},
    ["Cosmetic Sets"] =                      {iconFile = "IconHelp cosmetic sets.png"},
    ["Crow"] =                               {iconFile = "IconHelp crows.png"},
    ["Crown Pillar"] =                       {iconFile = "IconHelp crownPillar5A.png"},
    ["Daily Ritual"] =                       {iconFile = "IconHelp dailyRituals.png"},
    ["Damage"] =                             {iconFile = "IconHelp breakingGenerators.png"},
    ["Dark Lock"] =                          "Hatch",
    ["Dark Trinket"] =                       {iconFile = "IconCurrency darkTrinkets.png"},
    ["Dead by Daylight"] =                   {iconFile = "IconHelp DBDlogo.png"},
    ["Deafened"] =                           {iconFile = "IconHelp hearing.png"},
    ["Dying"] =                              {iconFile = "IconHelp dying.png"},
    ["Dying State"] =                        {iconFile = "IconHelp dying.png"},
    ["Endgame Collapse"] =                   {iconFile = "IconHelp endGame.png"},
    ["Entity"] =                             {iconFile = "IconHelp entity.png"},
    ["Exit Gate"] =                          {iconFile = "IconHelp exitGates.png"},
    ["Exit Gate Switch"] =                   {iconFile = "IconHelp exitGates.png"},
    ["Fear"] =                               {iconFile = "IconHelp fear.png"},
    ["Frosty Trinket"] =                     {iconFile = "IconCurrency frostyTrinkets.png"},
    ["Gilded Trinket"] =                     {iconFile = "IconCurrency twistedTrinkets.png"},
    ["Hatch"] =                              {iconFile = "IconHelp hatch.png"},
    ["Health"] =                             {iconFile = "IconStatusEffects healing.png"},
    ["Health State"] =                       {iconFile = "IconStatusEffects healing.png"},
    ["Healthy"] =                            {iconFile = "IconHelp_healthy.png"},
    ["Healthy State"] =                      "Healthy",
    ["Hearing"] =                            {iconFile = "IconHelp hearing.png"},
    ["Height"] =                             {iconFile = "IconHelp height.png"},
    ["Hidden"] =                             {iconFile = "IconHelp hiddenKiller.png"},
    ["Hook Struggle"] =                      {iconFile = "IconHelp hookStruggle.png"},
    ["In-Game Store"] =                      "Store",
    ["Injured"] =                            {iconFile = "IconHelp injured.png"},
    ["Injured State"] =                      {iconFile = "IconHelp injured.png"},
    ["Injury"] =                             {iconFile = "IconHelp injured.png"},
    ["Interrupt"] =                          {iconFile = "IconHelp interrupt.png"},
    ["Iridescent Shard"] =                   {iconFile = "IconCurrency iridescentShards.png"},
    ["Item"] =                               {iconFile = "IconHelp items.png"},
    ["Jigsaw Box"] =                         {iconFile = "IconHelp jigsawBoxes.png"},
    ["Killer Shack"] =                       {iconFile = "IconHelp killerShack.png"},
    ["Killer Vision"] =                      {iconFile = "IconHelp killerVision.png"},
    ["Load-Out"] =                           {iconFile = "IconHelp loadout.png"},
    ["Locker"] =                             {iconFile = "IconHelp lockers.png"},
    ["Masquerade Pillar"] =                  {iconFile = "IconHelp crownPillar5A.png"},
    ["Memento Mori"] =                       {iconFile = "IconHelp mementoMori.png"},
    ["Memory Shard"] =                       {iconFile = "QuestIcons fragment.png"},
    ["Mysterious Note"] =                    {iconFile = "IconHelp note.png"},
    ["Movement Speed"] =                     {iconFile = "IconHelp movementSpeed.png"},
    ["Mystery Box"] =                        {iconFile = "IconHelp mysteryBox FP.png"},
    ["Observer"] =                           {iconFile = "IconHelp archivesGeneral.png"},
    ["Obsession"] =                          {iconFile = "IconHelp obsession.png"},
    ["Offering"] =                           {iconFile = "IconHelp offerings.png"},
    ["Pallet"] =                             {iconFile = "IconHelp pullDown.png"},
    ["Perk"] =                               {iconFile = "IconHelp perks.png"},
    ["Pool of Devotion"] =                   {iconFile = "IconHelp poolsOfDevotion.png"},
    ["Pools of Devotion"] =                  {iconFile = "IconHelp poolsOfDevotion.png"},
    ["Power"] =                              "Item",
    ["Procedural"] =                         {iconFile = "IconHelp procedural.png"},
    ["Pumpkin"] =                            {iconFile = "IconHelp pumpkin.png"},
    ["Realm"] =                              {iconFile = "IconHelp procedural.png"},
    ["Rift Fragments"] =                     {iconFile = "RiftFragments.png", unique = true},
    ["Running Speed"] =                      {iconFile = "IconHelp movementSpeed.png"},
    ["Proficiency"] =                        {iconFile = "IconHelp proficiency.png"},
    ["Proficiency List"] =                   {iconFile = "IconHelp proficiencyList.png"},
    ["Pull-Down"] =                          {iconFile = "IconHelp pullDown.png"},
    ["Putrid Serum"] =                       {iconFile = "IconHelp putridSerum.png"},
    ["Safe Unhook"] =                        {iconFile = "IconHelp safeUnhook.png"},
    ["Score Event"] =                        {iconFile = "DailyRitualIcon_objectives.png"},
    ["Scourge Hook"] =                       {iconFile = "IconHelp scourgeHooks.png"},
    ["Scourge Hook Perk"] =                  {iconFile = "IconHelp scourgeHooks.png"},
    ["Scratch Marks"] =                      {iconFile = "IconHelp scratchMarks.png"},
    ["Shrine of Secrets"] =                  {iconFile = "IconHelp shrineOfSecrets.png"},
    ["Skill"] =                              {iconFile = "IconHelp skills.png"},
    ["Skill Check"] =                        {iconFile = "IconHelp skillChecks.png"},
    ["Good Skill Check"] =                   {iconFile = "IconHelp skillChecks.png"},
    ["Great Skill Check"] =                  {iconFile = "IconHelp skillChecks.png"},
    ["Failed Skill Check"] =                 {iconFile = "IconHelp skillChecks.png"},
    ["Snowman"] =                            {iconFile = "IconHelp snowman.png"},
    ["Snowmen"] =                            "Snowman",
    ["Speed"] =                              {iconFile = "IconHelp movementSpeed.png"},
    ["Status Effect"] =                      {iconFile = "IconHelp statusEffects.png"},
    ["Status Effect List"] =                 {iconFile = "IconHelp statusEffectList.png"},
    ["Stillness Crow"] =                     "Crow",
    ["Idle Crow"] =                          "Crow",
    ["Store"] =                              {iconFile = "IconHelp store.png"},
    ["Struggle"] =                           {iconFile = "IconHelp hookStruggle.png"},
    ["Struggle Phase"] =                     "Struggle",
    ["Struggling"] =                         "Struggle",
    ["Supply Case"] =                        {iconFile = "IconHelp supplyCase.png"},
    ["Teachable"] =                          {iconFile = "IconHelp teachables.png"},
    ["Teachable Perk"] =                     "Teachable",
    ["Thrombotic Trinket"] =                 {iconFile = "IconCurrency thromboticTrinkets.png"},
    ["Unique Perk"] =                        "Teachable",
    ["Terror Radius"] =                      {iconFile = "IconHelp terrorRadius.png"},
    ["TV"] =                                 {iconFile = "IconHelp tv.png"},
    ["Vault"] =                              "Window",
    ["Visceral Canker"] =                    {iconFile = "QuestIcons Halloween2020.png"},
    ["Window"] =                             {iconFile = "IconHelp window.png"},
    ["Winter Gift"] =                        {iconFile = "IconHelp mysteryBox FP.png"},


    --------------------------- IconHelpLoading ---------------------------
    ["Artist"] =                             {iconFile = "IconHelpLoading artist.png"},
    ["Assassin"] =                           {iconFile = "IconPowers guardiaCompagnia Assassin.png"},
    ["Blight"] =                             {iconFile = "IconHelpLoading blight.png"},
    ["Boon Totem"] =                         {iconFile = "Atl Hud Icon BoonTotem.png"},
    ["Cannibal"] =                           {iconFile = "IconHelpLoading cannibal.png"},
    ["Carnifex"] =                           {iconFile = "IconPowers guardiaCompagnia Carnifex.png"},
    ["Cenobite"] =                           {iconFile = "IconHelpLoading cenobite.png"},
    ["Character"] =                          {iconFile = "IconHelpLoading players.png"},
    ["Charlotte"] =                          {iconFile = "IconPowers_bloodBond.png"},
    ["Clown"] =                              {iconFile = "IconHelpLoading clown.png"},
    ["Dark Lord"] =                          {iconFile = "KillerDracula.png"},
    ["Deathslinger"] =                       {iconFile = "IconHelpLoading deathslinger.png"},
    ["Demogorgon"] =                         {iconFile = "IconHelpLoading demogorgon.png"},
    ["Doctor"] =                             {iconFile = "IconHelpLoading doctor.png"},
    ["Dredge"] =                             {iconFile = "IconHelpLoading dredge.png"},
    ["Dull Totem"] =                         {iconFile = "IconHelpLoading totem.png"},
    ["Executioner"] =                        {iconFile = "IconHelpLoading wales.png"},
    ["Generator"] =                          {iconFile = "IconHelpLoading generators.png"},
    ["Ghost Face"] =                         {iconFile = "IconHelpLoading ghost.png"},
    ["Ghoul"] =                              {iconFile = "T_UI_iconHelpLoading_K39.png"},
    ["Good Guy"] =                           {iconFile = "IconHelpLoading goodGuy.png"},
    ["Charles Lee Ray"] =                    "Good Guy",
    ["Hag"] =                                {iconFile = "IconHelpLoading hag.png"},
    ["Hex Totem"] =                          "Cursed",
    ["Hillbilly"] =                          {iconFile = "IconHelpLoading hillbilly.png"},
    ["Hook"] =                               {iconFile = "IconHelpLoading hook.png"},
    ["Houndmaster"] =                        {iconFile = "IconHelpLoading houndmaster.png"},
    ["Huntress"] =                           {iconFile = "IconHelpLoading huntress.png"},
    ["Jailer"] =                        	 {iconFile = "IconPowers guardiaCompagnia Jailer.png"},
    ["Killer"] =                             {iconFile = "IconHelpLoading killer.png", paddingLeft = "5px", ilRes = "24px"},
    ["Knight"] =                             {iconFile = "IconHelpLoading knight.png"},
    ["Legion"] =                             {iconFile = "IconHelpLoading legion.png"},
    ["Lich"] =                               {iconFile = "IconHelpLoading lich.png"},
    ["Mastermind"] =                         {iconFile = "IconHelpLoading mastermind.png"},
    ["Nemesis T-Type"] =                     {iconFile = "IconHelpLoading nemesis.png"},
    ["Nemesis (Killer)"] =                   "Nemesis T-Type",
    ["Nightmare"] =                          {iconFile = "IconHelpLoading nightmare.png"},
    ["Nurse"] =                              {iconFile = "IconHelpLoading nurse.png"},
    ["Oni"] =                                {iconFile = "IconHelpLoading oni.png"},
    ["Onryō"] =                              {iconFile = "IconHelpLoading onryo.png"},
    ["Pig"] =                                {iconFile = "IconHelpLoading pig.png"},
    ["Plague"] =                             {iconFile = "IconHelpLoading plague.png"},
    ["Player"] =                             {iconFile = "IconHelpLoading players.png"},
    ["Shape"] =                              {iconFile = "IconHelpLoading shape.png"},
    ["Singularity"] =                        {iconFile = "IconHelpLoading singularity.png"},
    ["Skull Merchant"] =                     {iconFile = "IconHelpLoading skullMerchant.png"},
    ["Spirit"] =                             {iconFile = "IconHelpLoading spirit.png"},
    ["Survivor"] =                           {iconFile = "IconHelpLoading survivor.png", paddingLeft = "5px", ilRes = "24px"},
    ["Teacher"] =                            {iconFile = "IconPowers detention.png"},
    ["Totem"] =                              {iconFile = "IconHelpLoading totem.png"},
    ["Trapper"] =                            {iconFile = "IconHelpLoading trapper.png"},
    ["Trickster"] =                          {iconFile = "IconHelpLoading trickster.png"},
    ["Twins"] =                              {iconFile = "IconHelpLoading twins.png"},
    ["Unknown"] =                            {iconFile = "IconHelpLoading unknown.png"},
    ["Victor"] =                             {iconFile = "IconPowers_bloodBond_Victor.png"},
    ["Wraith"] =                             {iconFile = "IconHelpLoading wraith.png"},
    ["Xenomorph"] =                          {iconFile = "IconHelpLoading xenomorph.png"},


    --------------------------- IconStatusEffects ---------------------------
    ["Bleeding"] =                           {iconFile = "IconStatusEffects bleeding.png"},
    ["Blessed"] =                            {iconFile = "IconStatusEffects blessed.png"},
    ["Blood"] =                              "Bleeding",
    ["Blindness"] =                          {iconFile = "IconStatusEffects vision.png"},
    ["Broken"] =                             {iconFile = "IconStatusEffects broken.png"},
    ["Chance"] =                             {iconFile = "IconStatusEffects luck.png"},
    ["Cleansing"] =                          {iconFile = "IconStatusEffects cleansing.png"},
    ["Cursed"] =                             {iconFile = "IconStatusEffects cursed.png"},
    ["Deep Wound"] =                         {iconFile = "IconStatusEffects deepWound.png"},
    ["Efficiency"] =                         {iconFile = "IconStatusEffects expertise.png"},
    ["Endurance"] =                          {iconFile = "IconStatusEffects enduranceSurvivor.png"},
    ["Endurance (Survivor)"] =               {iconFile = "IconStatusEffects enduranceSurvivor.png"},
    ["Endurance (Killer)"] =                 {iconFile = "IconStatusEffects enduranceKiller.png"},
    ["Exhausted"] =                          {iconFile = "IconStatusEffects exhausted.png"},
    ["Exhaustion"] =                         "Exhausted",
    ["Expertise"] =                          {iconFile = "IconStatusEffects expertise.png"},
    ["Exposed"] =                            {iconFile = "IconStatusEffects exposed.png"},
    ["Glyph"] =                              {iconFile = "IconStatusEffects glyph.png"},
    ["Haste"] =                              {iconFile = "IconStatusEffects haste.png"},
    ["Healing"] =                            {iconFile = "IconStatusEffects healing.png"},
    ["Healing Speed"] =                      "Healing",
    ["Haemorrhage"] =                        "Bleeding",
    ["Hindered"] =                           {iconFile = "IconStatusEffects hindered.png"},
    ["Incapacitated"] =                      {iconFile = "IconStatusEffects incapacitated.png"},
    ["Invigorated"] =                        {iconFile = "IconStatusEffects invigorated.png"},
    ["Luck"] =                               {iconFile = "IconStatusEffects luck.png"},
    ["Madness"] =                            {iconFile = "IconStatusEffects madness.png"},
    ["Mangled"] =                            {iconFile = "IconStatusEffects mangled.png"},
    ["Oblivious"] =                          {iconFile = "IconStatusEffects oblivious.png"},
    ["Pool of Blood"] =                      "Bleeding",
    ["Pools of Blood"] =                     "Bleeding",
    ["Progression"] =                        {iconFile = "IconStatusEffects progressionSpeed.png"},
    ["Progression Speed"] =                  {iconFile = "IconStatusEffects progressionSpeed.png"},
    ["Repair"] =                             {iconFile = "IconStatusEffects repairing.png"},
    ["Repair Speed"] =                       {iconFile = "IconStatusEffects repairing.png"},
    ["Repairing"] =                          {iconFile = "IconStatusEffects repairing.png"},
    ["Revealed"] =                           {iconFile = "IconStatusEffects revealed.png"},
    ["Sabotage"] =                           {iconFile = "IconStatusEffects sabotaging.png"},
    ["Sabotage Speed"] =                     "Sabotage",
    ["Sabotaging"] =                         "Sabotage",
    ["Skill Check Difficulty"] =             {iconFile = "IconStatusEffects skillCheckDifficulty.png"},
    ["Skill Check Probability"] =            {iconFile = "IconStatusEffects skillCheckProbability.png"},
    ["Sleep Penalty"] =                      {iconFile = "IconStatusEffects sleepPenalty.png"},
    ["Speed"] =                              "Haste",
    ["Undetectable"] =                       {iconFile = "IconStatusEffects undetectable.png"},
    ["Vision"] =                             {iconFile = "IconStatusEffects vision.png"},


    --------------------------- Powers ---------------------------
    ["Bear Trap"] =                          {iconFile = "IconPowers trap.png"},
    ["Biopod"] =                             {iconFile = "IconPowers quantumInstantiation.png"},
    ["Birds of Torment"] =                   {iconFile = "IconPowers birdsOfTorment.png"},
    ["Blackened Catalyst"] =                 {iconFile = "IconPowers blackenedCatalyst.png"},
    ["Blighted Corruption"] =                {iconFile = "IconPowers blightedCorruption.png"},
    ["Blood Bond"] =                         {iconFile = "IconPowers bloodBond.png"},
    ["Blood Bond (Victor)"] =                {iconFile = "IconPowers bloodBond_victor.png"},
    ["Bubba's Chainsaw"] =                   {iconFile = "IconPowers bubbasChainsaw.png"},
    ["Bubba's Chainsaw (Tantrum)"] =         {iconFile = "IconPowers bubbasChainsaw_tantrum.png"},
    ["Carter's Spark"] =                     {iconFile = "IconPowers cartersSpark.png"},
    ["Chainsaw"] =                           {iconFile = "IconPowers chainsaw.png"},
    ["Control Station"] =                    {iconFile = "IconItems remoteFlameTurret.png"},
    ["Deluge of Fear"] =                     {iconFile = "IconPowers delugeOfFear.png"},
    ["Deluge of Fear (Demanifested)"] =      {iconFile = "IconPowers delugeOfFear_demanifested.png"},
    ["Detention"] =                          {iconFile = "IconPowers detention.png"},
    ["Dire Crow Swarm"] =                    {iconFile = "IconPowers birdsOfTorment.png"},
    ["Dream Demon"] =                        {iconFile = "IconPowers dreamDemon.png"},
    ["Dream Trap"] =                         {iconFile = "IconPowers dreamDemon.png"},
    ["Drone"] =                              {iconFile = "IconPowers eyesInTheSky.png"},
    ["Evil Within"] =                        {iconFile = "IconPowers stalker1.png"},
    ["Evil Within I"] =                      {iconFile = "IconPowers stalker1.png"},
    ["Evil Within II"] =                     {iconFile = "IconPowers stalker2.png"},
    ["Evil Within III"] =                    {iconFile = "IconPowers stalker3.png"},
    ["Eyes in the Sky"] =                    {iconFile = "IconPowers eyesInTheSky.png"},
    ["Eyes in the Sky (Radar)"] =            {iconFile = "IconPowers eyesInTheSky_radar.png"},
    ["Feral Frenzy"] =                       {iconFile = "IconPowers feralFrenzy.png"},
    ["Guardia Compagnia"] =                  {iconFile = "IconPowers guardiaCompagnia.png"},
    ["Hidden Pursuit"] =                     {iconFile = "IconPowers hiddenPursuit.png"},
    ["Hidden Pursuit (Crawler Mode)"] =      {iconFile = "IconPowers hiddenPursuit_crawlerMode.png"},
    ["Hunting Hatchets"] =                   {iconFile = "IconPowers huntingHatchets.png"},
    ["Invitation Scroll"] =                  {iconFile = "EventIcon invitationScroll.png"},
    ["Jigsaw's Baptism"] =                   {iconFile = "IconPowers jigsawsBaptism.png"},
    ["One-Eyed Terror"] =                    "One-Eyed Terror (Aim Leap)",
    ["One-Eyed Terror (Aim Leap)"] =         {iconFile = "iconPowers_AimKaguneLeap_K39.png"},
    ["One-Eyed Terror (Aim Leap EM)"] =      {iconFile = "iconPowers_AimEnragedMode_K39.png"},
    ["One-Eyed Terror (Cancel Leap)"] =      {iconFile = "iconPowers_CancelKaguneLeap_K39.png"},
    ["One-Eyed Terror (Fire Leap)"] =        {iconFile = "iconPowers_FireKaguneLeap_K39.png"},
    ["One-Eyed Terror (Fire Leap EM)"] =     {iconFile = "iconPowers_FireEnragedMode_K39.png"},
    ["Night Shroud"] =                       {iconFile = "IconPowers nightShroud.png"},
    ["Night Shroud (activated)"] =           {iconFile = "IconPowers nightShroud activated.png"},
    ["Night Shroud (leaning)"] =             {iconFile = "IconHUD ghostFaceLean.png"},
    ["Night Shroud (marked)"] =              {iconFile = "IconHUD markedState.png"},
    ["Of the Abyss"] =                       {iconFile = "IconPowers ofTheAbyss.png"},
    ["Phantasm Trap"] =                      {iconFile = "IconPowers blackenedCatalyst.png"},
    ["Playtime's Over"] =                    {iconFile = "IconPowers playtimesOver.png"},
    ["Playtime's Over (Hidey-Ho Mode)"] =    {iconFile = "IconPowers playtimesOver_TipToe.png"},
    ["Portal"] =                             {iconFile = "IconPowers ofTheAbyss.png"},
    ["Portals"] =                            {iconFile = "IconPowers ofTheAbyss.png"},
    ["Quantum Instantiation"] =              {iconFile = "IconPowers quantumInstantiation.png"},
    ["Reign of Darkness"] =                  {iconFile = "IconPowers reignOfDarkness.png"},
    ["Reverse Bear Trap"] =                  {iconFile = "IconPowers jigsawsBaptism.png"},
    ["Rites of Judgement"] =                 {iconFile = "IconPowers ritesOfJudgement.png"},
    ["Scent of Blood"] =                     {iconFile = "IconPowers K38 dashCommand.png"},
    ["Scent of Blood (Guard)"] =             {iconFile = "IconPowers K38 dogGuarding.png"},
    ["Scent of Blood (Recall)"] =            {iconFile = "IconPowers K38 recallDog.png"},
    ["Scent of Blood (Redirect)"] =          {iconFile = "IconPowers K38 dashRedirect.png"},
    ["Scent of Blood (Return)"] =            {iconFile = "IconPowers K38 dogReturn.png"},
    ["Scent of Blood (Search)"] =            {iconFile = "IconPowers K38 patrolCommand.png"},
    ["Scent of Blood (Swap)"] =              {iconFile = "IconPowers K38 swapControl.png"},
    ["Showstopper"] =                        {iconFile = "IconPowers showstopper.png"},
    ["Showstopper (Main Event)"] =           {iconFile = "IconPowers showstopper_mainEvent.png"},
    ["Showstopper (Main Event Cool-down)"] = {iconFile = "IconPowers showstopper_mainEventCooldown.png"},
    ["Spencer's Last Breath"] =              {iconFile = "IconPowers breath.png"},
    ["Summons of Pain"] =                    {iconFile = "IconPowers summonsOfPain.png"},
    ["T-Virus"] =                            {iconFile = "IconPowers t-Virus.png"},
    ["T-Virus Mutation Rate 1"] =            {iconFile = "IconPowers t-Virus_MR1.png"},
    ["T-Virus Mutation Rate 2"] =            {iconFile = "IconPowers t-Virus_MR2.png"},
    ["T-Virus Mutation Rate 3"] =            {iconFile = "IconPowers t-Virus_MR3.png"},
    ["The Afterpiece Tonic"] =               {iconFile = "IconPowers gasBomb.png"},
    ["The Afterpiece Antidote"] =            {iconFile = "IconPowers gasBomb2.png"},
    ["The Redeemer"] =                       {iconFile = "IconPowers theRedeemer.png"},
    ["The Redeemer (Chain Break)"] =         {iconFile = "IconPowers_theRedeemer_chainBreak.png"},
    ["Twisted Skill"] =                      "Invitation Scroll",
    ["UVX"] =                   			 {iconFile = "IconPowers uvx.png"},
    ["UVX (Charge)"] =                       {iconFile = "iconPowers_ChargeUVX_K35.png"},
    ["UVX (Hallucination)"] =                {iconFile = "iconPowers_CreateHallucination_K35.png"},
    ["UVX (Launch)"] =                       {iconFile = "iconPowers_LaunchUVX_K35.png"},
    ["UVX (Teleport)"] =                     {iconFile = "iconPowers_Teleport_K35.png"},
    ["Vampiric Shift"] =                     {iconFile = "IconPowers K37 Shapeshift.png", paddingLeft = "4px"},
    ["Vampiric Shift (Bat Form)"] =          {iconFile = "IconPowers K37 BatForm.png"},
    ["Vampiric Shift (Cast Hellfire)"] =     {iconFile = "IconPowers K37 CastHellfire.png"},
    ["Vampiric Shift (Charge Hellfire)"] =   {iconFile = "IconPowers K37 ChargeHellfire.png"},
    ["Vampiric Shift (Ready Teleport)"] =    {iconFile = "IconPowers K37 ReadyTeleport.png"},
    ["Vampiric Shift (Teleport)"] =          {iconFile = "IconPowers K37 Teleport.png"},
    ["Vampiric Shift (Vampire Form)"] =      {iconFile = "IconPowers K37 VampireForm.png"},
    ["Vampiric Shift (Wolf Form)"] =         {iconFile = "IconPowers K37 WolfForm.png"},
    ["Vampiric Shift (Wolf Pounce)"] =       {iconFile = "IconPowers K37 WolfPounce.png"},
    ["Vile Darkness"] =                      {iconFile = "IconPowers VileDarkness.png"},
    ["Vile Darkness (Dispelling Sphere)"] =  {iconFile = "IconPowers DispellingSphere.png"},
    ["Vile Darkness (Flight of the Damned)"] = {iconFile = "IconPowers FlightoftheDamned.png"},
    ["Vile Darkness (Fly)"] =                {iconFile = "IconPowers Fly.png"},
    ["Vile Darkness (Mage Hand)"] =          {iconFile = "IconPowers MageHand.png"},
    ["Vile Darkness (Spell Selection: Dispelling Sphere)"] = {iconFile = "IconPowers SpellSelection DispellingSphere.png"},
    ["Vile Darkness (Spell Selection: Flight of the Damned)"] = {iconFile = "IconPowers SpellSelection FlightoftheDamned.png"},
    ["Vile Darkness (Spell Selection: Fly)"] = {iconFile = "IconPowers SpellSelection Fly.png"},
    ["Vile Darkness (Spell Selection: Mage Hand)"] = {iconFile = "IconPowers SpellSelection MageHand.png"},
    ["Vile Purge"] =                         {iconFile = "IconPowers vilePurge.png"},
    ["Virulent Bound"] =                     {iconFile = "IconPowers virulentBound.png"},
    ["Wailing Bell"] =                       {iconFile = "IconPowers bell.png"},
    ["Yamaoka's Haunting"] =                 {iconFile = "IconPowers yamaokasHaunting.png"},
    ["Yamaoka's Wrath"] =                    {iconFile = "IconPowers yamaokasWrath.png"},
    ["Yamaoka's Wrath (Blood Fury)"] =       {iconFile = "IconPowers yamaokasWrath_demon.png"},


    --------------------------- Archives ---------------------------
    ["Cinematics"] =                         {iconFile = "IconHelp archivesCinematicUnlocked.png"},
    ["Collection"] =                         {iconFile = "IconHelp archivesCollection.png"},
    ["Logs"] =                               {iconFile = "IconHelp archivesLog.png"},
    ["Memories"] =                           {iconFile = "IconHelp archivesCollection.png"},
    ["Rift Pass"] =                          {iconFile = "RiftPass.png"},
    

    --------------------------- Score Events ---------------------------
    ["Altruism"] =                           {iconFile = "DailyRitualIcon_altruism.png"},
    ["Boldness"] =                           {iconFile = "DailyRitualIcon_boldness.png"},
    ["Brutality"] =                          {iconFile = "DailyRitualIcon_brutality.png"},
    ["Deviousness"] =                        {iconFile = "DailyRitualIcon_deviousness.png"},
    ["Hunter"] =                             {iconFile = "DailyRitualIcon_hunter.png"},
    ["Objectives"] =                         {iconFile = "DailyRitualIcon_objectives.png"},
    ["Sacrifice"] =                          {iconFile = "DailyRitualIcon_sacrifice.png"},
    ["Survival"] =                           {iconFile = "DailyRitualIcon_survival.png"},

    
    --------------------------- Cosmetic Categories ---------------------------
    ["Arm"] =                                {iconFile = "CategoryIcon arm.png"},
    --["Arms"] =                             {iconFile = "CategoryIcon arm.png"},
    ["Body"] =                               {iconFile = "CategoryIcon body.png"},
    --["Bodies"] =                           {iconFile = "CategoryIcon body.png"},
    ["Hand"] =                               {iconFile = "CategoryIcon hand.png"},
    --["Hands"] =                            {iconFile = "CategoryIcon hand.png"},
    ["Head"] =                               {iconFile = "CategoryIcon head.png"},
    --["Heads"] =                            {iconFile = "CategoryIcon head.png"},
    ["Legs"] =                               {iconFile = "CategoryIcon legs.png"},
    ["Mask"] =                               {iconFile = "CategoryIcon masks.png"},
    --["Masks"] =                            {iconFile = "CategoryIcon masks.png"},
    ["Outfit"] =                             {iconFile = "CategoryIcon outfits.png"},
    --["Outfits"] =                          {iconFile = "CategoryIcon outfits.png"},
    ["Torso"] =                              {iconFile = "CategoryIcon torso.png"},
    --["Torsos"] =                           {iconFile = "CategoryIcon torso.png"},
    ["Upper Body"] =                         {iconFile = "CategoryIcon upperBody.png"},
    ["UpperBodies"] =                        "Upper Body",
    ["Weapon"] =                             {iconFile = "CategoryIcon weapons.png"},
    --["Weapons"] =                          {iconFile = "CategoryIcon weapons.png"},
    
    --------------------------- Events ---------------------------
    ["Events"] =                             {iconFile = "Atl Ico Events.png"},
    ["Scorching Summer BBQ"] =               {iconFile = "ScorchingSummer OverlayIcon.png"},
    ["Howling Grounds"] =                    {iconFile = "HowlingGrounds OverlayIcon.png"},
    ["The Midnight Grove"] =                 {iconFile = "FulliconFavors cursedSeed.png"},
    ["The Hallowed Blight"] =                {iconFile = "HallowedBlight OverlayIcon.png"},
    ["Twisted Masquerade"] =                 {iconFile = "TwistedMasquerade.png"},
    ["Lurking Stripes"] =                    {iconFile = "LurkingStripes.png"},
    ["Greek Week"] =                         {iconFile = "FL_034.png"},
    ["Gnome Chompski"] =                     {iconFile = "DR 016.png"},
    ["Moonrise"] =                           {iconFile = "Moonrise OverlayIcon.png"},
    ["Blood Hunt Event"] =                   {iconFile = "BloodpointsIcon2.png"},
    ["Blood Rush Event"] =                   {iconFile = "BloodpointsIcon2.png"},
    ["Blood Feast Event"] =                  {iconFile = "BloodpointsIcon2.png"},
    ["Spring Cleaning Activities"] =         {iconFile = "BloodpointsIcon2.png"},
    ["Season of Giving 2021"] =              {iconFile = "BloodpointsIcon2.png"},
    ["Advent Calendar 2020"] =               {iconFile = "AU_002.png"},
    ["2 Year Anniversary"] =                 {iconFile = "AuricCells Icon.png"},
    ["Scarlet Swarm"] =                      {iconFile = "TO_013.png"},
    ["Blood Moon 2024"] =                    {iconFile = "EventIcon bloodMoon2024.png"},
    ["Bone Chill"] =                         {iconFile = "BoneChill.png"},
    ["Haunted by Daylight 2022"] =           {iconFile = "EventIcon hauntedByDaylightPumpkin.png"},
    ["Haunted by Daylight 2023"] =           {iconFile = "EventIcon hauntedByDaylightPumpkin2023.png"},
    ["Moonlight Burrow"] =                   {iconFile = "EventIcon moonlightBurrow.png"},
    ["Meet Your Maker"] =                    {iconFile = "eventIcon MeetYourMaker.png"}
}

return p