Module:Item

From Space Station 14 Wiki
Revision as of 12:26, 15 August 2024 by Aliser (talk | contribs) (added all items)
Module documentation
View or edit this documentation (about module documentation)

Implements {{Item}}.

Known items are synced regularly from the upstream, but things like icons and links must be defined manually. See #JSON files to see what data files there are, and see #FAQ on specific instructions.

JSON files

JSON files that are updated automatically, syncing with the upstream:

Warning
Do not make changes to the above JSON files - any changes made will be erased on next update.

JSON files that are filled manually:

FAQ

How to add new item?

New items are added automatically. This doesn't include icons - for that, see #How to add icon to item?.

Where to get item ID?

From Module:Item/item_names_by_item_ids.json.

How to add icon to item?

If you want to add multiple textures per single item, see #Adding multiple icons to item

1. Upload new icon to the wiki.

2. Go to Module:Item/item_image_files_by_item_id.json.

3. Add a new line. Follow the format: "<item ID>": "<file name>"

Example
"WeaponLaserCarbine": "laser rifle-East-35325.png"

4. Save the file. The icon should now appear when using {{item}}.

Adding multiple icons to item

Currently, the only supported use case if for items that have a different icon based on the amount of item.

1. Upload new icons to the wiki.

2. Go to Module:Item/item_image_files_by_item_id.json.

3. Add a new line. Follow the format:

Format
"<item ID>": {
	"default": "<default file name>",
	"byCondition": [
		{
			"type": "amount",
			"conditions": [
				{
					"file": "<file name 1>",
					"min": <minimum amount 1>
				},
				{
					"file": "<file name 2>",
					"min": <minimum amount 2>
				},
				{
					"file": "<file name 3>",
				}
			]
		}
	]
}
  • item ID - item ID to add icons for.
  • default file name - icon to use when amount is not specified.
  • file name 1/2/N - icons to use with specified amounts.
  • "min": <amount 1/2/N> - icon to use when there's at least this much of item.

Last condition entry (objects that have "file" and "min" fields) shouldn't have any condition in it (i.e. no "min" specified), because it will be used in cases where other conditions do not satisfy.

Conditions are evaluated top to bottom, meaning the file from the first one that satisfies will be used.

4. Save the file. The icons should now appear when using {{item}} and differ based on the amount.

How to add custom names to item?

When using {{item}}, you probably don't want to use item IDs because that's internal game info which is a pain in the ass to write. Gladly, there's an existing set of item names defined in Module:Item/item_ids_by_item_lowercase_names.json, which are human-readable. But not all existing items will have their names in there, because some names do repeat (for instance, various bottles named bottle).

To add new cool names and have them not be erased on new update (which happens to the JSON file linked in previous paragraph), add them to Module:Item/item_ids_by_item_lowercase_names_overrides.json. These will have higher priority and will be used instead. You can define as much "aliases" for an item ID as you wish.

Step-by-step: 1. Go to Module:Item/item_ids_by_item_lowercase_names_overrides.json.

2. Add a new line. Follow format: "<item lowercase name>": "<item ID>". Please note, that all items names defined here must be lowercase.

Example
"emag": "EmagUnlimited"

3. Save the file.

How to add a link to item?

To make {{item}} behave like a link all the time, a page link needs to be established in Module:Item/item page links by item ids.json. Please note, if you need a one-time link, use the link parameter in the {{item}} template.

1. Go to Module:Item/item_ids_by_item_lowercase_names_overrides.json.

2. Add a new line. Follow format: "<item ID>": "<page name>".

Example
"Protolathe": "Research_and_Development#Protolathe"

3. Save the file.

TODO

  • Ores are currently hardcoded into names overrides. Figure out a way to pull them from game resources. This is for Module:Item recipe.



-- Contains utilities for working with in-game items.

local p = {} --p stands for package
local getArgs = require('Module:Arguments').getArgs

local item_names_by_item_id = {
    BaseItem = {
        "item",
    },

    BaseStorageItem = {
        "storage item",
    },

    Ashtray = {
        "ashtray",
    },

    BaseRock = {
        "boulder",
    },

    FloraStalagmite1 = {
        "stalagmite",
    },

    FloraTree01 = {
        "tree",
    },

    FloraTree02 = {
        "tree",
    },

    FloraTree03 = {
        "tree",
    },

    FloraTree04 = {
        "tree",
    },

    FloraTree05 = {
        "tree",
    },

    FloraTree06 = {
        "tree",
    },

    FloraTreeSnow01 = {
        "snowy tree",
    },

    FloraTreeSnow02 = {
        "snowy tree",
    },

    FloraTreeSnow03 = {
        "snowy tree",
    },

    FloraTreeSnow04 = {
        "snowy tree",
    },

    FloraTreeSnow05 = {
        "snowy tree",
    },

    FloraTreeSnow06 = {
        "snowy tree",
    },

    FloraTreeStump = {
        "tree stump",
    },

    FloraTreeLarge01 = {
        "large tree",
    },

    FloraTreeLarge02 = {
        "large tree",
    },

    FloraTreeLarge03 = {
        "large tree",
    },

    FloraTreeLarge04 = {
        "large tree",
    },

    FloraTreeLarge05 = {
        "large tree",
    },

    FloraTreeLarge06 = {
        "large tree",
    },

    FloraTreeConifer01 = {
        "snowy conifer",
    },

    FloraTreeConifer02 = {
        "snowy conifer",
    },

    FloraTreeConifer03 = {
        "snowy conifer",
    },

    FloraTreeChristmas01 = {
        "christmas tree",
    },

    FloraTreeChristmas02 = {
        "christmas tree",
    },

    FloraTreeStumpConifer = {
        "tree stump",
    },

    ShadowTree01 = {
        "dark wood",
    },

    LightTree01 = {
        "glowing tree",
    },

    CarvedPumpkin = {
        "carved pumpkin",
    },

    PumpkinLantern = {
        "jack o' lantern",
    },

    LidSalami = {
        "salami lid",
    },

    WoodenSign = {
        "wooden sign",
    },

    WoodenSupport = {
        "wooden support",
    },

    WoodenSupportBeam = {
        "wooden support beam",
    },

    WoodenSupportWall = {
        "wooden support wall",
    },

    PresentBase = {
        "present",
    },

    PresentTrash = {
        "wrapping paper",
    },

    NotekeeperCartridge = {
        "notekeeper cartridge",
    },

    NewsReaderCartridge = {
        "news cartridge",
    },

    CrewManifestCartridge = {
        "crew manifest cartridge",
    },

    NetProbeCartridge = {
        "NetProbe cartridge",
    },

    LogProbeCartridge = {
        "LogProbe cartridge",
    },

    ChameleonProjector = {
        "chameleon projector",
    },

    ChameleonDisguise = {
        "Urist McKleiner",
    },

    ActionDisguiseNoRot = {
        "Toggle Rotation",
    },

    ActionDisguiseAnchor = {
        "Toggle Anchored",
    },

    DoorRemoteDefault = {
        "door remote",
    },

    DoorRemoteCommand = {
        "command door remote",
    },

    DoorRemoteSecurity = {
        "security door remote",
    },

    DoorRemoteArmory = {
        "armory door remote",
    },

    DoorRemoteService = {
        "service door remote",
    },

    DoorRemoteResearch = {
        "research door remote",
    },

    DoorRemoteCargo = {
        "cargo door remote",
    },

    DoorRemoteMedical = {
        "medical door remote",
    },

    DoorRemoteEngineering = {
        "engineering door remote",
    },

    DoorRemoteAll = {
        "super door remote",
    },

    EncryptionKey = {
        "encryption key",
    },

    EncryptionKeyCommon = {
        "common encryption key",
    },

    EncryptionKeyCargo = {
        "cargo encryption key",
    },

    EncryptionKeyCentCom = {
        "central command encryption key",
    },

    EncryptionKeyStationMaster = {
        "station master encryption key",
    },

    EncryptionKeyCommand = {
        "command encryption key",
    },

    EncryptionKeyEngineering = {
        "engineering encryption key",
    },

    EncryptionKeyMedical = {
        "medical encryption key",
    },

    EncryptionKeyMedicalScience = {
        "med-sci encryption key",
    },

    EncryptionKeyScience = {
        "science encryption key",
    },

    EncryptionKeyRobo = {
        "robotech encryption key",
    },

    EncryptionKeySecurity = {
        "security encryption key",
    },

    EncryptionKeyService = {
        "service encryption key",
    },

    EncryptionKeySyndie = {
        "blood-red encryption key",
    },

    EncryptionKeyBinary = {
        "binary translator key",
    },

    EncryptionKeyFreelance = {
        "freelancer encryption key",
    },

    BaseFlatpack = {
        "base flatpack",
    },

    SolarAssemblyFlatpack = {
        "solar assembly flatpack",
    },

    AmePartFlatpack = {
        "AME flatpack",
    },

    SingularityGeneratorFlatpack = {
        "singularity generator flatpack",
    },

    RadiationCollectorFlatpack = {
        "radiation collector flatpack",
    },

    ContainmentFieldGeneratorFlatpack = {
        "containment field generator flatpack",
    },

    EmitterFlatpack = {
        "emitter flatpack",
    },

    TeslaGeneratorFlatpack = {
        "tesla generator flatpack",
    },

    TeslaCoilFlatpack = {
        "tesla coil flatpack",
    },

    TeslaGroundingRodFlatpack = {
        "grounding rod flatpack",
    },

    GyroscopeFlatpack = {
        "gyroscope flatpack",
    },

    ThrusterFlatpack = {
        "thruster flatpack",
    },

    SpaceHeaterFlatpack = {
        "space heater flatpack",
    },

    FaxMachineFlatpack = {
        "fax machine flatpack",
    },

    ForensicScanner = {
        "forensic scanner",
    },

    ForensicReportPaper = {
        "forensic scanner report",
    },

    GeigerCounter = {
        "Geiger counter",
    },

    HandTeleporter = {
        "hand teleporter",
    },

    Holoprojector = {
        "holographic sign projector",
    },

    HolofanProjector = {
        "holofan projector",
    },

    HoloprojectorField = {
        "force field projector",
    },

    HoloprojectorSecurity = {
        "holobarrier projector",
    },

    Mousetrap = {
        "mousetrap",
    },

    MousetrapArmed = {
        "mousetrap",
    },

    ExplosivePayload = {
        "explosive payload",
    },

    ChemicalPayload = {
        "chemical payload",
    },

    FlashPayload = {
        "flash payload",
    },

    BasePDA = {
        "PDA",
    },

    PassengerPDA = {
        "passenger PDA",
    },

    TechnicalAssistantPDA = {
        "technical assistant PDA",
    },

    MedicalInternPDA = {
        "medical intern PDA",
    },

    SecurityCadetPDA = {
        "security cadet PDA",
    },

    ResearchAssistantPDA = {
        "research assistant PDA",
    },

    ServiceWorkerPDA = {
        "service worker PDA",
    },

    ChefPDA = {
        "chef PDA",
    },

    BotanistPDA = {
        "botanist PDA",
    },

    ClownPDA = {
        "clown PDA",
    },

    MimePDA = {
        "mime PDA",
    },

    ChaplainPDA = {
        "chaplain PDA",
    },

    QuartermasterPDA = {
        "quartermaster PDA",
    },

    CargoPDA = {
        "cargo PDA",
    },

    SalvagePDA = {
        "salvage PDA",
    },

    BartenderPDA = {
        "bartender PDA",
    },

    LibrarianPDA = {
        "librarian PDA",
    },

    LawyerPDA = {
        "lawyer PDA",
    },

    JanitorPDA = {
        "janitor PDA",
    },

    CaptainPDA = {
        "captain PDA",
    },

    HoPPDA = {
        "head of personnel PDA",
    },

    CEPDA = {
        "chief engineer PDA",
    },

    EngineerPDA = {
        "engineer PDA",
    },

    CMOPDA = {
        "chief medical officer PDA",
    },

    MedicalPDA = {
        "medical PDA",
    },

    ParamedicPDA = {
        "paramedic PDA",
    },

    ChemistryPDA = {
        "chemistry PDA",
    },

    RnDPDA = {
        "research director PDA",
    },

    SciencePDA = {
        "science PDA",
    },

    HoSPDA = {
        "head of security PDA",
    },

    WardenPDA = {
        "warden PDA",
    },

    SecurityPDA = {
        "security PDA",
    },

    CentcomPDA = {
        "CentComm PDA",
    },

    AdminPDA = {
        "Admin PDA",
    },

    MusicianPDA = {
        "musician PDA",
    },

    AtmosPDA = {
        "atmos PDA",
    },

    ClearPDA = {
        "clear PDA",
    },

    SyndiPDA = {
        "syndicate PDA",
    },

    ERTLeaderPDA = {
        "ERT Leader PDA",
    },

    ERTChaplainPDA = {
        "ERT Chaplain PDA",
    },

    ERTEngineerPDA = {
        "ERT Engineer PDA",
    },

    ERTJanitorPDA = {
        "ERT Janitor PDA",
    },

    ERTMedicPDA = {
        "ERT Medic PDA",
    },

    ERTSecurityPDA = {
        "ERT Security PDA",
    },

    CBURNPDA = {
        "CBURN PDA",
    },

    PsychologistPDA = {
        "psychologist PDA",
    },

    ReporterPDA = {
        "reporter PDA",
    },

    ZookeeperPDA = {
        "zookeeper PDA",
    },

    BoxerPDA = {
        "boxer PDA",
    },

    DetectivePDA = {
        "detective PDA",
    },

    BrigmedicPDA = {
        "brigmedic PDA",
    },

    CluwnePDA = {
        "cluwne PDA",
    },

    SeniorEngineerPDA = {
        "senior engineer PDA",
    },

    SeniorResearcherPDA = {
        "senior researcher PDA",
    },

    SeniorPhysicianPDA = {
        "senior physician PDA",
    },

    SeniorOfficerPDA = {
        "senior officer PDA",
    },

    PiratePDA = {
        "pirate PDA",
    },

    SyndiAgentPDA = {
        "syndicate agent PDA",
    },

    PinpointerBase = {
        "pinpointer",
    },

    PinpointerNuclear = {
        "pinpointer",
    },

    PinpointerSyndicateNuclear = {
        "syndicate pinpointer",
    },

    PinpointerUniversal = {
        "universal pinpointer",
    },

    PinpointerStation = {
        "station pinpointer",
    },

    RadioHandheld = {
        "handheld radio",
    },

    RadioHandheldSecurity = {
        "security radio",
    },

    DefaultStationBeacon = {
        "station beacon",
    },

    StationBeaconPart = {
        "station beacon flatpack",
    },

    BaseHandheldStationMap = {
        "station map",
    },

    DeviceQuantumSpinInverter = {
        "quantum spin inverter",
    },

    Wristwatch = {
        "wristwatch",
    },

    WristwatchGold = {
        "gold watch",
    },

    BikeHorn = {
        "bike horn",
    },

    CluwneHorn = {
        "broken bike horn",
    },

    GoldenBikeHorn = {
        "golden honker",
    },

    BananiumHorn = {
        "bananium horn",
    },

    CandyBucket = {
        "candy bucket",
    },

    Crayon = {
        "crayon",
    },

    CrayonWhite = {
        "white crayon",
    },

    CrayonMime = {
        "mime crayon",
    },

    CrayonRainbow = {
        "rainbow crayon",
    },

    CrayonBlack = {
        "black crayon",
    },

    CrayonRed = {
        "red crayon",
    },

    CrayonOrange = {
        "orange crayon",
    },

    CrayonYellow = {
        "yellow crayon",
    },

    CrayonGreen = {
        "green crayon",
    },

    CrayonBlue = {
        "blue crayon",
    },

    CrayonPurple = {
        "purple crayon",
    },

    CrayonBox = {
        "crayon box",
    },

    Dart = {
        "dart",
    },

    TargetDarts = {
        "dartboard",
    },

    HypoDartBox = {
        "hypodart box",
    },

    PercentileDie = {
        "percentile die",
    },

    d20Dice = {
        "d20",
    },

    d12Dice = {
        "d12",
    },

    d10Dice = {
        "d10",
    },

    d8Dice = {
        "d8",
    },

    d6Dice = {
        "d6",
    },

    d4Dice = {
        "d4",
    },

    DiceBag = {
        "bag of dice",
    },

    MagicDiceBag = {
        "bag of dice",
    },

    Error = {
        "error",
    },

    BaseFigurine = {
        "figurine",
    },

    ToyFigurineHeadOfPersonnel = {
        "head of personnel figure",
    },

    ToyFigurinePassenger = {
        "passenger figure",
    },

    ToyFigurineGreytider = {
        "greytider figure",
    },

    ToyFigurineClown = {
        "clown figure",
    },

    ToyFigurineHoloClown = {
        "holoclown figure",
    },

    ToyFigurineMime = {
        "mime figure",
    },

    ToyFigurineMusician = {
        "musician figure",
    },

    ToyFigurineBoxer = {
        "boxer figure",
    },

    ToyFigurineCaptain = {
        "captain figure",
    },

    ToyFigurineHeadOfSecurity = {
        "head of security figure",
    },

    ToyFigurineWarden = {
        "warden figure",
    },

    ToyFigurineDetective = {
        "detective figure",
    },

    ToyFigurineSecurity = {
        "security officer figure",
    },

    ToyFigurineLawyer = {
        "lawyer figure",
    },

    ToyFigurineCargoTech = {
        "cargo technican figure",
    },

    ToyFigurineSalvage = {
        "salvage specialist figure",
    },

    ToyFigurineQuartermaster = {
        "quartermaster figure",
    },

    ToyFigurineChiefEngineer = {
        "chief engineer figure",
    },

    ToyFigurineEngineer = {
        "station engineer figure",
    },

    ToyFigurineAtmosTech = {
        "atmospheric technician figure",
    },

    ToyFigurineResearchDirector = {
        "research director figure",
    },

    ToyFigurineScientist = {
        "scientist figurine",
    },

    ToyFigurineChiefMedicalOfficer = {
        "chief medical officer figure",
    },

    ToyFigurineChemist = {
        "chemist figure",
    },

    ToyFigurineParamedic = {
        "paramedic figure",
    },

    ToyFigurineMedicalDoctor = {
        "medical doctor figure",
    },

    ToyFigurineLibrarian = {
        "librarian figure",
    },

    ToyFigurineChaplain = {
        "chaplain figure",
    },

    ToyFigurineChef = {
        "chef figure",
    },

    ToyFigurineBartender = {
        "bartender figure",
    },

    ToyFigurineBotanist = {
        "botanist figure",
    },

    ToyFigurineJanitor = {
        "janitor figure",
    },

    ToyFigurineNukie = {
        "syndicate operative figure",
    },

    ToyFigurineNukieElite = {
        "elite syndicate operative figure",
    },

    ToyFigurineNukieCommander = {
        "syndicate operative commander figure",
    },

    ToyFigurineFootsoldier = {
        "syndicate footsoldier figure",
    },

    ToyFigurineWizard = {
        "wizard figure",
    },

    ToyFigurineWizardFake = {
        "fake wizard figure",
    },

    ToyFigurineSpaceDragon = {
        "space dragon figure",
    },

    ToyFigurineQueen = {
        "xeno queen figure",
    },

    ToyFigurineRatKing = {
        "rat king figure",
    },

    ToyFigurineRatServant = {
        "rat servant figure",
    },

    ToyFigurineMouse = {
        "mouse figure",
    },

    ToyFigurineSlime = {
        "slime figure",
    },

    ToyFigurineHamlet = {
        "hamlet figure",
    },

    ToyGriffin = {
        "griffin figure",
    },

    ToyOwlman = {
        "owl figure",
    },

    ToySkeleton = {
        "skeleton figure",
    },

    ToyFigurineThief = {
        "thief character figure",
    },

    MysteryFigureBoxTrash = {
        "unfolded cardboard box",
    },

    MysteryFigureBox = {
        "mystery spacemen minifigure box",
    },

    ImmovableRod = {
        "immovable rod",
    },

    ImmovableRodMop = {
        "immovable mop",
    },

    ImmovableRodShark = {
        "immovable shark",
    },

    ImmovableRodClown = {
        "immovable clown",
    },

    ImmovableRodBanana = {
        "immovable banana",
    },

    ImmovableRodHammer = {
        "immovable hammer",
    },

    ImmovableRodThrongler = {
        "immovable throngler",
    },

    ImmovableRodGibstick = {
        "immovable gibstick",
    },

    BaseFigurineMech = {
        "figurine",
    },

    ToyRipley = {
        "ripley toy",
    },

    ToyFireRipley = {
        "fire ripley",
    },

    ToyDeathRipley = {
        "deathripley toy",
    },

    ToyGygax = {
        "gygax toy",
    },

    ToyDurand = {
        "durand toy",
    },

    ToyHonk = {
        "H.O.N.K. toy",
    },

    ToyMarauder = {
        "marauder toy",
    },

    ToySeraph = {
        "seraph toy",
    },

    ToyMauler = {
        "mauler toy",
    },

    ToyOdysseus = {
        "odysseus toy",
    },

    ToyPhazon = {
        "phazon toy",
    },

    ToyReticence = {
        "reticence toy",
    },

    PersonalAI = {
        "personal ai device",
    },

    SyndicatePersonalAI = {
        "syndicate personal ai device",
    },

    PotatoAI = {
        "potato artificial intelligence",
    },

    ActionPAIPlayMidi = {
        "Play MIDI",
    },

    ActionPAIOpenMap = {
        "Open Map",
    },

    MrChips = {
        "mr chips",
    },

    MrDips = {
        "mr dips",
    },

    Skub = {
        "skub",
    },

    SnapPop = {
        "snap pop",
    },

    SnapPopBox = {
        "snap pop box",
    },

    PlushieThrongler = {
        "The Throngler plushie",
    },

    PlushieGhost = {
        "ghost soft toy",
    },

    PlushieGhostRevenant = {
        "revenant soft toy",
    },

    PlushieBee = {
        "bee plushie",
    },

    PlushieHampter = {
        "hampter plushie",
    },

    PlushieRGBee = {
        "RGBee plushie",
    },

    PlushieNuke = {
        "nukie plushie",
    },

    PlushieRouny = {
        "rouny plushie",
    },

    PlushieLamp = {
        "lamp plushie",
    },

    PlushieArachind = {
        "arachnid plushie",
    },

    PlushieLizard = {
        "lizard plushie",
    },

    PlushieSpaceLizard = {
        "space lizard plushie",
    },

    PlushieDiona = {
        "diona plushie",
    },

    PlushieSharkBlue = {
        "blue shark soft toy",
    },

    PlushieSharkPink = {
        "pink shark soft toy",
    },

    PlushieSharkGrey = {
        "grey shark soft toy",
    },

    PlushieRatvar = {
        "ratvar plushie",
    },

    PlushieNar = {
        "nar'sie plushie",
    },

    PlushieCarp = {
        "carp plushie",
    },

    PlushieMagicarp = {
        "magicarp plushie",
    },

    PlushieRainbowCarp = {
        "rainbow carp plushie",
    },

    PlushieHolocarp = {
        "holocarp plushie",
    },

    PlushieSlime = {
        "slime plushie",
    },

    PlushieSnake = {
        "snake plushie",
    },

    ToyMouse = {
        "mouse toy",
    },

    ToyRubberDuck = {
        "rubber ducky",
    },

    PlushieVox = {
        "vox plushie",
    },

    PlushieAtmosian = {
        "atmosian plushie",
    },

    PlushieXeno = {
        "xeno plushie",
    },

    PlushiePenguin = {
        "penguin plushie",
    },

    PlushieHuman = {
        "human plushie",
    },

    PlushieMoth = {
        "moth plushie",
    },

    BaseFigurineCheapo = {
        "figurine",
    },

    ToyAi = {
        "AI toy",
    },

    ToyNuke = {
        "nuke toy",
    },

    ToyIan = {
        "ian toy",
    },

    FoamCrossbow = {
        "foam crossbow",
    },

    ToyGunBase = {
        "ToyGunBase",
    },

    RevolverCapGun = {
        "cap gun",
    },

    RevolverCapGunFake = {
        "cap gun",
    },

    FoamBlade = {
        "foamblade",
    },

    Basketball = {
        "basketball",
    },

    Football = {
        "football",
    },

    BeachBall = {
        "beach ball",
    },

    BalloonSyn = {
        "syndie balloon",
    },

    BalloonNT = {
        "nanotrasen balloon",
    },

    BalloonCorgi = {
        "corgi balloon",
    },

    SingularityToy = {
        "singuloth-brand toy",
    },

    TeslaToy = {
        "Teddy Tesla",
    },

    PonderingOrb = {
        "pondering orb",
    },

    ToySword = {
        "toy sword",
    },

    ToyAmongPequeno = {
        "among pequeño",
    },

    FoamCutlass = {
        "foam cutlass",
    },

    ClownRecorder = {
        "clown recorder",
    },

    ToyHammer = {
        "rubber hammer",
    },

    WhoopieCushion = {
        "whoopie cushion",
    },

    PlasticBanana = {
        "banana",
    },

    CrazyGlue = {
        "crazy glue",
    },

    NewtonCradle = {
        "newton cradle",
    },

    BaseWhistle = {
        "whistle",
    },

    SyndicateWhistle = {
        "trench whistle",
    },

    BaseSpellbook = {
        "spellbook",
    },

    WizardsGrimoire = {
        "wizards grimoire",
    },

    WizardsGrimoireNoRefund = {
        "wizards grimoire",
    },

    SpawnSpellbook = {
        "spawn spellbook",
    },

    ForceWallSpellbook = {
        "force wall spellbook",
    },

    BlinkBook = {
        "blink spellbook",
    },

    SmiteBook = {
        "smite spellbook",
    },

    KnockSpellbook = {
        "knock spellbook",
    },

    FireballSpellbook = {
        "fireball spellbook",
    },

    ScrollRunes = {
        "scroll of runes",
    },

    ShardCrystalBase = {
        "crystal shard",
    },

    ShardCrystalCyan = {
        "cyan crystal shard",
    },

    ShardCrystalBlue = {
        "blue crystal shard",
    },

    ShardCrystalOrange = {
        "orange crystal shard",
    },

    ShardCrystalPink = {
        "pink crystal shard",
    },

    ShardCrystalGreen = {
        "green crystal shard",
    },

    ShardCrystalRed = {
        "red crystal shard",
    },

    ShardCrystalRandom = {
        "random crystal shard",
    },

    IngotGold = {
        "gold bar",
    },

    IngotGold1 = {
        "gold bar",
    },

    IngotSilver = {
        "silver bar",
    },

    IngotSilver1 = {
        "silver bar",
    },

    MaterialCardboard = {
        "cardboard",
    },

    MaterialCloth = {
        "cloth",
    },

    MaterialDurathread = {
        "durathread",
    },

    MaterialWoodPlank = {
        "wood",
    },

    MaterialBiomass = {
        "biomass",
    },

    MaterialHideBear = {
        "bear hide",
    },

    MaterialHideCorgi = {
        "corgi hide",
    },

    MaterialDiamond = {
        "refined diamond",
    },

    MaterialCotton = {
        "cotton",
    },

    MaterialPyrotton = {
        "pyrotton",
    },

    MaterialBananium = {
        "bananium",
    },

    MaterialWebSilk = {
        "silk",
    },

    MaterialBones = {
        "bones",
    },

    MaterialGunpowder = {
        "gunpowder",
    },

    GoldOre = {
        "gold ore",
    },

    DiamondOre = {
        "diamond ore",
    },

    SteelOre = {
        "iron ore",
    },

    PlasmaOre = {
        "plasma ore",
    },

    SilverOre = {
        "silver ore",
    },

    SpaceQuartz = {
        "space quartz",
    },

    UraniumOre = {
        "uranium ore",
    },

    BananiumOre = {
        "bananium ore",
    },

    Coal = {
        "coal",
    },

    SaltOre = {
        "salt",
    },

    PartRodMetal = {
        "metal rod",
    },

    PartRodMetal10 = {
        "metal rod",
    },

    PartRodMetal1 = {
        "metal rod",
    },

    BaseScrap = {
        "scrap",
    },

    ScrapSteel = {
        "blasted steel pile",
    },

    ScrapGlass = {
        "scrap circuitry",
    },

    ScrapAirlock1 = {
        "airlock door",
    },

    ScrapAirlock2 = {
        "airlock light",
    },

    ScrapBucket = {
        "busted bucket",
    },

    ScrapCamera = {
        "broken camera",
    },

    ScrapCanister1 = {
        "canister handle",
    },

    ScrapCanister2 = {
        "canister valve",
    },

    ScrapCloset = {
        "closet door",
    },

    ScrapFaxMachine = {
        "fax machine",
    },

    ScrapFireExtinguisher = {
        "split fire extinguisher",
    },

    ScrapFirelock1 = {
        "firelock door",
    },

    ScrapFirelock2 = {
        "firelock door",
    },

    ScrapFirelock3 = {
        "firelock frame",
    },

    ScrapIntercom = {
        "intercom scrap",
    },

    ScrapJetpack = {
        "busted jetpack",
    },

    ScrapMedkit = {
        "snapped medkit",
    },

    ScrapMopBucket = {
        "half a mop bucket",
    },

    ScrapPAI = {
        "personal ai device",
    },

    ScrapPAIGold = {
        "gilded personal ai device",
    },

    ScrapTube = {
        "shattered sample tube",
    },

    ShardGlass = {
        "glass shard",
    },

    ShardGlassReinforced = {
        "reinforced glass shard",
    },

    ShardGlassPlasma = {
        "plasma glass shard",
    },

    ShardGlassUranium = {
        "uranium glass shard",
    },

    ShardGlassClockwork = {
        "clockwork glass shard",
    },

    ArabianLamp = {
        "lamp",
    },

    BedsheetBase = {
        "BedsheetBase",
    },

    BedsheetBlack = {
        "black bedsheet",
    },

    BedsheetBlue = {
        "blue bedsheet",
    },

    BedsheetBrown = {
        "brown bedsheet",
    },

    BedsheetCaptain = {
        "captain's bedsheet",
    },

    BedsheetCE = {
        "CE's bedsheet",
    },

    BedsheetCentcom = {
        "CentComm bedsheet",
    },

    BedsheetClown = {
        "clown's bedsheet",
    },

    BedsheetCMO = {
        "CMO's bedsheet",
    },

    BedsheetCosmos = {
        "cosmos bedsheet",
    },

    BedsheetCult = {
        "cult bedsheet",
    },

    BedsheetGreen = {
        "green bedsheet",
    },

    BedsheetGrey = {
        "grey bedsheet",
    },

    BedsheetHOP = {
        "HOP's bedsheet",
    },

    BedsheetHOS = {
        "HOS's bedsheet",
    },

    BedsheetIan = {
        "Ian's bedsheet",
    },

    BedsheetMedical = {
        "medical bedsheet",
    },

    BedsheetMime = {
        "mime's bedsheet",
    },

    BedsheetNT = {
        "NT bedsheet",
    },

    BedsheetOrange = {
        "orange bedsheet",
    },

    BedsheetPurple = {
        "purple bedsheet",
    },

    BedsheetQM = {
        "QM's bedsheet",
    },

    BedsheetRainbow = {
        "rainbow bedsheet",
    },

    BedsheetRD = {
        "RD's bedsheet",
    },

    BedsheetBrigmedic = {
        "brigmedic's bedsheet",
    },

    BedsheetRed = {
        "red bedsheet",
    },

    BedsheetSyndie = {
        "syndicate bedsheet",
    },

    BedsheetUSA = {
        "USA bedsheet",
    },

    BedsheetWhite = {
        "white bedsheet",
    },

    BedsheetWiz = {
        "wizard's bedsheet",
    },

    BedsheetYellow = {
        "yellow bedsheet",
    },

    BookBase = {
        "book",
    },

    BookSpaceEncyclopedia = {
        "space encyclopedia",
    },

    BookTheBookOfControl = {
        "the book of control",
    },

    BookBartendersManual = {
        "bartender's manual",
    },

    BookHowToCookForFortySpaceman = {
        "How To Cook For Forty Spacemen",
    },

    BookLeafLoversSecret = {
        "leaf lover's secret",
    },

    BookEngineersHandbook = {
        "engineer's handbook",
    },

    BookScientistsGuidebook = {
        "scientist's guidebook",
    },

    BookSecurity = {
        "security 101",
    },

    BookHowToKeepStationClean = {
        "how to keep station clean",
    },

    BookHowToRockAndStone = {
        "how to rock and stone",
    },

    BookMedicalReferenceBook = {
        "medical reference book",
    },

    BookHowToSurvive = {
        "how to survive",
    },

    BookChemicalCompendium = {
        "chempendium",
    },

    BookSpaceLaw = {
        "space law",
    },

    BookAtmosDistro = {
        "Newton's Guide to Atmos: The Distro",
    },

    BookAtmosWaste = {
        "Newton's Guide to Atmos: Waste",
    },

    BookAtmosAirAlarms = {
        "Newton's Guide to Atmos: Air Alarms",
    },

    BookAtmosVentsMore = {
        "Newton's Guide to Atmos: Vents and More",
    },

    BookNarsieLegend = {
        "the legend of nar'sie",
    },

    BookTruth = {
        "exploring different philosophical perspectives on truth and the complexity of lying",
    },

    BookWorld = {
        "shaping the state of the world - interplay of forces and choices",
    },

    BookIanAntarctica = {
        "adventures of robert & ian - exploring antarctica",
    },

    BookSlothClownSSS = {
        "the sloth and the clown - space station shenanigans",
    },

    BookSlothClownPranks = {
        "the sloth and the clown - pranks on zorgs",
    },

    BookSlothClownMMD = {
        "the sloth and the clown - maze maze danger",
    },

    BookStruck = {
        "the humbling and transformative experience of being struck by lightning",
    },

    BookSun = {
        "reaching for the sun - a plant's quest for life",
    },

    BookPossum = {
        "fallen ambitions - the tragic tale of morty the possum",
    },

    BookCafe = {
        "the cafe possum",
    },

    BookFeather = {
        "a feather of magic - the wandering bird's journey to belonging",
    },

    BookIanLostWolfPup = {
        "the adventures of ian and renault - finding the lost wolf pup",
    },

    BookIanRanch = {
        "the adventures of ian and renault - ranch expedition",
    },

    BookIanOcean = {
        "the adventures of ian and renault - an ocean adventure",
    },

    BookIanMountain = {
        "the adventures of ian and renault - a mountain expedition",
    },

    BookIanCity = {
        "the adventures of ian and renault - exploring the city",
    },

    BookIanArctic = {
        "the adventures of ian and renault - an arctic journey of courage and friendship",
    },

    BookIanDesert = {
        "the adventures of ian and renault - exploring the mysterious desert",
    },

    BookNames = {
        "the power of names - a philosophical exploration",
    },

    BookEarth = {
        "earthly longing",
    },

    BookAurora = {
        "journey beyond - the starship aurora mission",
    },

    BookTemple = {
        "the nature of the divine - embracing the many gods",
    },

    BookWatched = {
        "watched",
    },

    BookMedicalOfficer = {
        "horizon's battle - a medical officer's tale of trust and survival",
    },

    BookMorgue = {
        "the ghostly residents of the abandoned morgue",
    },

    BookRufus = {
        "rufus and the mischievous fairy",
    },

    BookMap = {
        "the map of adventure",
    },

    BookJourney = {
        "a journey of music, mountains, and self-discovery",
    },

    BookInspiration = {
        "finding inspiration - a writer's journey through the woods",
    },

    BookJanitorTale = {
        "the tales of a tired janitor",
    },

    ProximitySensor = {
        "proximity sensor",
    },

    BrbSign = {
        "brb sign",
    },

    BriefcaseBrown = {
        "brown briefcase",
    },

    BrokenBottle = {
        "broken bottle",
    },

    Candle = {
        "candle",
    },

    CandleRed = {
        "red candle",
    },

    CandleBlue = {
        "blue candle",
    },

    CandleBlack = {
        "black candle",
    },

    CandleGreen = {
        "green candle",
    },

    CandlePurple = {
        "purple candle",
    },

    CandleSmall = {
        "small candle",
    },

    CandleRedSmall = {
        "small red candle",
    },

    CandleBlueSmall = {
        "small blue candle",
    },

    CandleBlackSmall = {
        "small black candle",
    },

    CandleGreenSmall = {
        "small green candle",
    },

    CandlePurpleSmall = {
        "small purple candle",
    },

    CandleInfinite = {
        "magic candle",
    },

    CandleRedInfinite = {
        "magic red candle",
    },

    CandleBlueInfinite = {
        "magic blue candle",
    },

    CandleBlackInfinite = {
        "magic black candle",
    },

    CandleGreenInfinite = {
        "magic green candle",
    },

    CandlePurpleInfinite = {
        "magic purple candle",
    },

    CandleRedSmallInfinite = {
        "small magic red candle",
    },

    CandleBlueSmallInfinite = {
        "small magic blue candle",
    },

    CandleBlackSmallInfinite = {
        "small magic black candle",
    },

    CandleGreenSmallInfinite = {
        "small magic green candle",
    },

    CandlePurpleSmallInfinite = {
        "small magic purple candle",
    },

    CandyBowl = {
        "candy bowl",
    },

    FloorCarpetItemRed = {
        "carpet",
    },

    CoordinatesDisk = {
        "coordinates disk",
    },

    ChopSticks = {
        "chopsticks",
    },

    PairedChopsticks = {
        "paired chopsticks",
    },

    NukeDisk = {
        "nuclear authentication disk",
    },

    NukeDiskFake = {
        "nuclear authentication disk",
    },

    DeskBell = {
        "desk bell",
    },

    Dinkystar = {
        "star sticker",
    },

    DiskCase = {
        "diskcase",
    },

    EggSpider = {
        "egg spider",
    },

    FireExtinguisher = {
        "fire extinguisher",
    },

    ExtinguisherSpray = {
        "extinguisher spray",
    },

    FireExtinguisherMini = {
        "pocket fire extinguisher",
    },

    BaseLamp = {
        "lantern",
    },

    Lamp = {
        "lamp",
    },

    LampBanana = {
        "banana lamp",
    },

    LampGold = {
        "desk lamp",
    },

    LampInterrogator = {
        "interrogator lamp",
    },

    Floodlight = {
        "floodlight",
    },

    FloodlightBroken = {
        "broken floodlight",
    },

    Handcuffs = {
        "handcuffs",
    },

    Cablecuffs = {
        "makeshift handcuffs",
    },

    Zipties = {
        "zipties",
    },

    ZiptiesBroken = {
        "broken zipties",
    },

    CablecuffsBroken = {
        "broken cables",
    },

    ClothingOuterStraightjacket = {
        "straitjacket",
    },

    BlankHandyFlag = {
        "blank handheld flag",
    },

    NTHandyFlag = {
        "Nanotrasen handheld flag",
    },

    SyndieHandyFlag = {
        "syndicate handheld flag",
    },

    LGBTQHandyFlag = {
        "LGBTQ handheld flag",
    },

    PirateHandyFlag = {
        "pirate handheld flag",
    },

    IceCrust = {
        "ice crust",
    },

    IDCardStandard = {
        "identification card",
    },

    PassengerIDCard = {
        "passenger ID card",
    },

    TechnicalAssistantIDCard = {
        "technical assistant ID card",
    },

    MedicalInternIDCard = {
        "medical intern ID card",
    },

    ResearchAssistantIDCard = {
        "research assistant ID card",
    },

    SecurityCadetIDCard = {
        "security cadet ID card",
    },

    ServiceWorkerIDCard = {
        "service worker ID card",
    },

    CaptainIDCard = {
        "captain ID card",
    },

    SecurityIDCard = {
        "security ID card",
    },

    WardenIDCard = {
        "warden ID card",
    },

    EngineeringIDCard = {
        "engineer ID card",
    },

    MedicalIDCard = {
        "medical ID card",
    },

    ParamedicIDCard = {
        "paramedic ID card",
    },

    ChemistIDCard = {
        "chemist ID card",
    },

    CargoIDCard = {
        "cargo ID card",
    },

    SalvageIDCard = {
        "salvage ID card",
    },

    QuartermasterIDCard = {
        "quartermaster ID card",
    },

    ResearchIDCard = {
        "research ID card",
    },

    ClownIDCard = {
        "clown ID card",
    },

    MimeIDCard = {
        "mime ID card",
    },

    ChaplainIDCard = {
        "chaplain ID card",
    },

    JanitorIDCard = {
        "janitor ID card",
    },

    BartenderIDCard = {
        "bartender ID card",
    },

    PunPunIDCard = {
        "pun pun ID card",
    },

    ChefIDCard = {
        "chef ID card",
    },

    BotanistIDCard = {
        "botanist ID card",
    },

    LibrarianIDCard = {
        "librarian ID card",
    },

    LawyerIDCard = {
        "lawyer ID card",
    },

    HoPIDCard = {
        "head of personnel ID card",
    },

    CEIDCard = {
        "chief engineer ID card",
    },

    CMOIDCard = {
        "chief medical officer ID card",
    },

    RDIDCard = {
        "research director ID card",
    },

    HoSIDCard = {
        "head of security ID card",
    },

    BrigmedicIDCard = {
        "brigmedic ID card",
    },

    CentcomIDCard = {
        "command officer ID card",
    },

    ERTLeaderIDCard = {
        "ERT leader ID card",
    },

    ERTChaplainIDCard = {
        "ERT chaplain ID card",
    },

    ERTEngineerIDCard = {
        "ERT engineer ID card",
    },

    ERTJanitorIDCard = {
        "ERT janitor ID card",
    },

    ERTMedicIDCard = {
        "ERT medic ID card",
    },

    ERTSecurityIDCard = {
        "ERT security ID card",
    },

    CentcomIDCardSyndie = {
        "command officer ID card",
    },

    MusicianIDCard = {
        "musician ID card",
    },

    CentcomIDCardDeathsquad = {
        "death squad ID card",
    },

    AgentIDCard = {
        "passenger ID card",
    },

    NukieAgentIDCard = {
        "passenger ID card",
    },

    AtmosIDCard = {
        "atmospheric technician ID card",
    },

    SyndicateIDCard = {
        "syndicate ID card",
    },

    PirateIDCard = {
        "pirate ID card",
    },

    PsychologistIDCard = {
        "psychologist ID card",
    },

    ReporterIDCard = {
        "reporter ID card",
    },

    BoxerIDCard = {
        "boxer ID card",
    },

    ZookeeperIDCard = {
        "zookeeper ID card",
    },

    DetectiveIDCard = {
        "detective ID card",
    },

    CBURNIDcard = {
        "CBURN ID card",
    },

    CluwneIDCard = {
        "cluwne ID card",
    },

    SeniorEngineerIDCard = {
        "senior engineer ID card",
    },

    SeniorResearcherIDCard = {
        "senior researcher ID card",
    },

    SeniorPhysicianIDCard = {
        "senior physician ID card",
    },

    SeniorOfficerIDCard = {
        "senior officer ID card",
    },

    UniversalIDCard = {
        "universal ID card",
    },

    BaseImplanter = {
        "implanter",
    },

    SadTromboneImplanter = {
        "sad trombone implanter",
    },

    LightImplanter = {
        "light implanter",
    },

    BikeHornImplanter = {
        "bike horn implanter",
    },

    TrackingImplanter = {
        "tracking implanter",
    },

    StorageImplanter = {
        "storage implanter",
    },

    FreedomImplanter = {
        "freedom implanter",
    },

    UplinkImplanter = {
        "uplink implanter",
    },

    EmpImplanter = {
        "EMP implanter",
    },

    ScramImplanter = {
        "scram implanter",
    },

    DnaScramblerImplanter = {
        "DNA scrambler implanter",
    },

    MicroBombImplanter = {
        "micro-bomb implanter",
    },

    MacroBombImplanter = {
        "macro-bomb implanter",
    },

    DeathRattleImplanter = {
        "death rattle implanter",
    },

    DeathAcidifierImplanter = {
        "death acidifier implanter",
    },

    MindShieldImplanter = {
        "mindshield implanter",
    },

    ModularReceiver = {
        "modular receiver",
    },

    RifleStock = {
        "rifle stock",
    },

    InflatableWall = {
        "inflatable barricade",
    },

    InflatableDoor = {
        "inflatable door",
    },

    Kudzu = {
        "kudzu",
    },

    KudzuFlowerFriendly = {
        "floral carpet",
    },

    FleshKudzu = {
        "tendons",
    },

    ShadowKudzu = {
        "dark haze",
    },

    ShadowKudzuWeak = {
        "haze",
    },

    LandMineKick = {
        "kick mine",
    },

    LandMineModular = {
        "modular mine",
    },

    LandMineExplosive = {
        "explosive mine",
    },

    BaseStockPart = {
        "stock part",
    },

    CapacitorStockPart = {
        "capacitor",
    },

    MicroManipulatorStockPart = {
        "manipulator",
    },

    MatterBinStockPart = {
        "matter bin",
    },

    MedalCase = {
        "medal case",
    },

    MonkeyCubeBox = {
        "monkey cube box",
    },

    MonkeyCubeWrapped = {
        "monkey cube",
    },

    KoboldCubeBox = {
        "kobold cube box",
    },

    VariantCubeBox = {
        "variant cube box",
    },

    KoboldCubeWrapped = {
        "kobold cube",
    },

    SyndicateSpongeBox = {
        "monkey cube box",
    },

    SyndicateSpongeWrapped = {
        "monkey cube",
    },

    Paper = {
        "paper",
    },

    PaperScrap = {
        "paper scrap",
    },

    PaperOffice = {
        "office paper",
    },

    PaperArtifactAnalyzer = {
        "artifact analyzer printout",
    },

    PaperCaptainsThoughts = {
        "captain's thoughts",
    },

    PaperCargoInvoice = {
        "cargo invoice",
    },

    PaperCargoBountyManifest = {
        "bounty manifest",
    },

    PaperCNCSheet = {
        "character sheet",
    },

    NukeCodePaper = {
        "nuclear authentication codes",
    },

    BoxFolderBase = {
        "folder",
    },

    BoxFolderCentCom = {
        "CentComm folder",
    },

    BoxFolderClipboard = {
        "clipboard",
    },

    BoxFolderCentComClipboard = {
        "CentComm clipboard",
    },

    BoxFolderQmClipboard = {
        "requisition digi-board",
    },

    TraitorCodePaper = {
        "syndicate codeword",
    },

    AllTraitorCodesPaper = {
        "syndicate codewords registry",
    },

    Envelope = {
        "envelope",
    },

    Pen = {
        "pen",
    },

    LuxuryPen = {
        "luxury pen",
    },

    CyberPen = {
        "Cybersun pen",
    },

    PenCap = {
        "captain's fountain pen",
    },

    PenCentcom = {
        "CentComm pen",
    },

    PenHop = {
        "hop's fountain pen",
    },

    PetCarrier = {
        "big pet carrier",
    },

    PotatoAIChip = {
        "supercompact AI chip",
    },

    RubberStampBase = {
        "generic rubber stamp",
    },

    RubberStampBaseAlt = {
        "alternate rubber stamp",
    },

    RubberStampCaptain = {
        "captain's rubber stamp",
    },

    RubberStampCentcom = {
        "CentComm rubber stamp",
    },

    RubberStampChaplain = {
        "chaplain's rubber stamp",
    },

    RubberStampLawyer = {
        "lawyer's rubber stamp",
    },

    RubberStampClown = {
        "clown's rubber stamp",
    },

    RubberStampCE = {
        "chief engineer's rubber stamp",
    },

    RubberStampCMO = {
        "chief medical officer's rubber stamp",
    },

    RubberStampHop = {
        "head of personnel's rubber stamp",
    },

    RubberStampHos = {
        "head of security's rubber stamp",
    },

    RubberStampMime = {
        "mime's rubber stamp",
    },

    RubberStampQm = {
        "quartermaster's rubber stamp",
    },

    RubberStampRd = {
        "research director's rubber stamp",
    },

    RubberStampTrader = {
        "trader's rubber stamp",
    },

    RubberStampSyndicate = {
        "syndicate rubber stamp",
    },

    RubberStampWarden = {
        "warden's rubber stamp",
    },

    RubberStampApproved = {
        "APPROVED rubber stamp",
    },

    RubberStampDenied = {
        "DENIED rubber stamp",
    },

    RubberStampDetective = {
        "detective's rubber stamp",
    },

    BookSecretDocuments = {
        "emergency security orders",
    },

    Spaceshroom = {
        "spaceshroom",
    },

    FoodSpaceshroom = {
        "spaceshroom",
    },

    FoodSpaceshroomCooked = {
        "cooked spaceshroom",
    },

    SpaceCash = {
        "spesos",
    },

    Credit = {
        "speso",
    },

    Credit = {
        "speso",
    },

    SpiderWeb = {
        "spider web",
    },

    SpiderWebClown = {
        "clown spider web",
    },

    BaseSubdermalImplant = {
        "implant",
    },

    SadTromboneImplant = {
        "sad trombone implant",
    },

    LightImplant = {
        "light implant",
    },

    BikeHornImplant = {
        "bike horn implant",
    },

    TrackingImplant = {
        "tracking implant",
    },

    StorageImplant = {
        "storage implant",
    },

    FreedomImplant = {
        "freedom implant",
    },

    UplinkImplant = {
        "uplink implant",
    },

    EmpImplant = {
        "EMP implant",
    },

    ScramImplant = {
        "scram implant",
    },

    DnaScramblerImplant = {
        "DNA scrambler implant",
    },

    MicroBombImplant = {
        "micro-bomb implant",
    },

    MacroBombImplant = {
        "macro-bomb implant",
    },

    DeathAcidifierImplant = {
        "death-acidifier implant",
    },

    DeathRattleImplant = {
        "death rattle implant",
    },

    MindShieldImplant = {
        "mindshield implant",
    },

    FloorTileItemSteelCheckerDark = {
        "steel dark checker tile",
    },

    FloorTileItemSteelCheckerLight = {
        "steel light checker tile",
    },

    FloorTileItemDark = {
        "dark tile",
    },

    FloorTileItemDarkDiagonalMini = {
        "dark steel diagonal mini tile",
    },

    FloorTileItemDarkDiagonal = {
        "dark steel diagonal tile",
    },

    FloorTileItemDarkHerringbone = {
        "dark steel herringbone",
    },

    FloorTileItemDarkMini = {
        "dark steel mini tile",
    },

    FloorTileItemDarkMono = {
        "dark steel mono tile",
    },

    FloorTileItemDarkPavement = {
        "dark steel pavement",
    },

    FloorTileItemDarkPavementVertical = {
        "dark steel vertical pavement",
    },

    FloorTileItemDarkOffset = {
        "offset dark steel tile",
    },

    FloorTileItemSteel = {
        "steel tile",
    },

    FloorTileItemSteelOffset = {
        "offset steel tile",
    },

    FloorTileItemSteelDiagonalMini = {
        "steel diagonal mini tile",
    },

    FloorTileItemSteelDiagonal = {
        "steel diagonal tile",
    },

    FloorTileItemSteelHerringbone = {
        "steel herringbone",
    },

    FloorTileItemSteelMini = {
        "steel mini tile",
    },

    FloorTileItemSteelMono = {
        "steel mono tile",
    },

    FloorTileItemSteelPavement = {
        "steel pavement",
    },

    FloorTileItemSteelPavementVertical = {
        "steel vertical pavement",
    },

    FloorTileItemWhite = {
        "white tile",
    },

    FloorTileItemWhiteOffset = {
        "offset white steel tile",
    },

    FloorTileItemWhiteDiagonalMini = {
        "white steel diagonal mini tile",
    },

    FloorTileItemWhiteDiagonal = {
        "white steel diagonal tile",
    },

    FloorTileItemWhiteHerringbone = {
        "white steel herringbone",
    },

    FloorTileItemWhiteMini = {
        "white steel mini tile",
    },

    FloorTileItemWhiteMono = {
        "white steel mono tile",
    },

    FloorTileItemWhitePavement = {
        "white steel pavement",
    },

    FloorTileItemWhitePavementVertical = {
        "white steel vertical pavement",
    },

    FloorTileItemMetalDiamond = {
        "steel tile",
    },

    FloorTileItemWood = {
        "wood floor",
    },

    FloorTileItemTechmaint = {
        "techmaint floor",
    },

    FloorTileItemMono = {
        "mono tile",
    },

    FloorTileItemLino = {
        "linoleum floor",
    },

    FloorTileItemBrassFilled = {
        "filled brass plate",
    },

    FloorTileItemBrassReebe = {
        "smooth brass plate",
    },

    FloorTileItemDirty = {
        "dirty tile",
    },

    FloorTileItemElevatorShaft = {
        "elevator shaft tile",
    },

    FloorTileItemRockVault = {
        "rock vault tile",
    },

    FloorTileItemBlue = {
        "blue tile",
    },

    FloorTileItemLime = {
        "lime tile",
    },

    FloorTileItemMining = {
        "mining tile",
    },

    FloorTileItemMiningDark = {
        "dark mining tile",
    },

    FloorTileItemMiningLight = {
        "light mining tile",
    },

    FloorTileItemFreezer = {
        "freezer tile",
    },

    FloorTileItemShowroom = {
        "showroom tile",
    },

    FloorTileItemHydro = {
        "hydro tile",
    },

    FloorTileItemBar = {
        "bar tile",
    },

    FloorTileItemClown = {
        "clown tile",
    },

    FloorTileItemMime = {
        "mime tile",
    },

    FloorTileItemKitchen = {
        "kitchen tile",
    },

    FloorTileItemLaundry = {
        "laundry tile",
    },

    FloorTileItemConcrete = {
        "concrete tile",
    },

    FloorTileItemConcreteMono = {
        "concrete mono tile",
    },

    FloorTileItemConcreteSmooth = {
        "concrete smooth",
    },

    FloorTileItemGrayConcrete = {
        "gray concrete tile",
    },

    FloorTileItemGrayConcreteMono = {
        "gray concrete mono tile",
    },

    FloorTileItemGrayConcreteSmooth = {
        "gray concrete smooth",
    },

    FloorTileItemOldConcrete = {
        "old concrete tile",
    },

    FloorTileItemOldConcreteMono = {
        "old concrete mono tile",
    },

    FloorTileItemOldConcreteSmooth = {
        "old concrete smooth",
    },

    FloorTileItemArcadeBlue = {
        "blue arcade floor",
    },

    FloorTileItemArcadeBlue2 = {
        "blue arcade floor",
    },

    FloorTileItemArcadeRed = {
        "red arcade floor",
    },

    FloorTileItemEighties = {
        "eighties floor",
    },

    FloorTileItemCarpetClown = {
        "clown carpet floor",
    },

    FloorTileItemCarpetOffice = {
        "office carpet floor",
    },

    FloorTileItemBoxing = {
        "boxing ring floor",
    },

    FloorTileItemGym = {
        "gym floor",
    },

    FloorTileItemShuttleWhite = {
        "white shuttle floor",
    },

    FloorTileItemShuttleBlue = {
        "blue shuttle floor",
    },

    FloorTileItemShuttleOrange = {
        "orange shuttle floor",
    },

    FloorTileItemShuttlePurple = {
        "purple shuttle floor",
    },

    FloorTileItemShuttleRed = {
        "red shuttle floor",
    },

    FloorTileItemShuttleGrey = {
        "grey shuttle floor",
    },

    FloorTileItemShuttleBlack = {
        "black shuttle floor",
    },

    FloorTileItemGold = {
        "gold floor",
    },

    FloorTileItemSilver = {
        "silver tile",
    },

    FloorTileItemGCircuit = {
        "green circuit floor",
    },

    FloorTileItemBCircuit = {
        "blue circuit floor",
    },

    FloorTileItemGrass = {
        "grass tile",
    },

    FloorTileItemGrassJungle = {
        "jungle grass tile",
    },

    FloorTileItemSnow = {
        "snow tile",
    },

    FloorTileItemWoodPattern = {
        "wood pattern floor",
    },

    FloorTileItemFlesh = {
        "flesh floor",
    },

    FloorTileItemSteelMaint = {
        "steel maint floor",
    },

    FloorTileItemGratingMaint = {
        "grating maint floor",
    },

    FloorTileItemWeb = {
        "web tile",
    },

    FloorTileItemAstroGrass = {
        "astro-grass",
    },

    FloorTileItemMowedAstroGrass = {
        "mowed astro-grass",
    },

    FloorTileItemJungleAstroGrass = {
        "jungle astro-grass",
    },

    FloorTileItemAstroIce = {
        "astro-ice",
    },

    FloorTileItemAstroSnow = {
        "astro-snow",
    },

    FloorTileItemWoodLarge = {
        "large wood floor",
    },

    Torch = {
        "torch",
    },

    Fork = {
        "fork",
    },

    ForkPlastic = {
        "plastic fork",
    },

    Spoon = {
        "spoon",
    },

    SpoonPlastic = {
        "plastic spoon",
    },

    KnifePlastic = {
        "plastic knife",
    },

    BarSpoon = {
        "bar spoon",
    },

    AmeJar = {
        "AME fuel jar",
    },

    LightBulb = {
        "incandescent light bulb",
    },

    LedLightBulb = {
        "led light bulb",
    },

    LightBulbOld = {
        "old incandescent light bulb",
    },

    LightBulbBroken = {
        "incandescent light bulb",
    },

    ServiceLightBulb = {
        "service light bulb",
    },

    LightTube = {
        "fluorescent light tube",
    },

    LightTubeOld = {
        "old fluorescent light tube",
    },

    LightTubeBroken = {
        "fluorescent light tube",
    },

    LedLightTube = {
        "led light tube",
    },

    ExteriorLightTube = {
        "exterior light tube",
    },

    SodiumLightTube = {
        "sodium light tube",
    },

    LightTubeCrystalCyan = {
        "cyan crystal light tube",
    },

    LightTubeCrystalBlue = {
        "blue crystal light tube",
    },

    LightTubeCrystalPink = {
        "pink crystal light tube",
    },

    LightTubeCrystalOrange = {
        "orange crystal light tube",
    },

    LightTubeCrystalRed = {
        "red crystal light tube",
    },

    LightTubeCrystalGreen = {
        "green crystal light tube",
    },

    PortableRecharger = {
        "portable recharger",
    },

    PowerCellPotato = {
        "potato battery",
    },

    PowerCellSmall = {
        "small-capacity power cell",
    },

    PowerCellMedium = {
        "medium-capacity power cell",
    },

    PowerCellHigh = {
        "high-capacity power cell",
    },

    PowerCellHyper = {
        "hyper-capacity power cell",
    },

    PowerCellMicroreactor = {
        "microreactor power cell",
    },

    PowerCellAntiqueProto = {
        "antique power cell prototype",
    },

    PowerCageSmall = {
        "small-capacity power cage",
    },

    PowerCageMedium = {
        "medium-capacity power cage",
    },

    PowerCageHigh = {
        "high-capacity power cage",
    },

    PowerSink = {
        "power sink",
    },

    BaseShield = {
        "base shield",
    },

    RiotShield = {
        "riot shield",
    },

    RiotLaserShield = {
        "riot laser shield",
    },

    RiotBulletShield = {
        "riot bullet shield",
    },

    WoodenBuckler = {
        "wooden buckler",
    },

    MakeshiftShield = {
        "makeshift shield",
    },

    WebShield = {
        "web shield",
    },

    ClockworkShield = {
        "clockwork shield",
    },

    MirrorShield = {
        "mirror shield",
    },

    EnergyShield = {
        "energy shield",
    },

    BrokenEnergyShield = {
        "broken energy shield",
    },

    TelescopicShield = {
        "telescopic shield",
    },

    GasAnalyzer = {
        "gas analyzer",
    },

    Jug = {
        "jug",
    },

    JugCarbon = {
        "jug",
    },

    JugIodine = {
        "jug",
    },

    JugFluorine = {
        "jug",
    },

    JugChlorine = {
        "jug",
    },

    JugAluminium = {
        "jug",
    },

    JugPhosphorus = {
        "jug",
    },

    JugSulfur = {
        "jug",
    },

    JugSilicon = {
        "jug",
    },

    JugHydrogen = {
        "jug",
    },

    JugLithium = {
        "jug",
    },

    JugSodium = {
        "jug",
    },

    JugPotassium = {
        "jug",
    },

    JugRadium = {
        "jug",
    },

    JugIron = {
        "jug",
    },

    JugCopper = {
        "jug",
    },

    JugGold = {
        "jug",
    },

    JugMercury = {
        "jug",
    },

    JugSilver = {
        "jug",
    },

    JugEthanol = {
        "jug",
    },

    JugSugar = {
        "jug",
    },

    JugNitrogen = {
        "jug",
    },

    JugOxygen = {
        "jug",
    },

    JugPlantBGone = {
        "jug",
    },

    JugWeldingFuel = {
        "jug",
    },

    BaseChemistryEmptyBottle = {
        "bottle",
    },

    EpinephrineChemistryBottle = {
        "epinephrine bottle",
    },

    RobustHarvestChemistryBottle = {
        "robust harvest bottle",
    },

    EZNutrientChemistryBottle = {
        "ez nutrient bottle",
    },

    Left4ZedChemistryBottle = {
        "left-4-zed bottle",
    },

    UnstableMutagenChemistryBottle = {
        "unstable mutagen bottle",
    },

    NocturineChemistryBottle = {
        "nocturine bottle",
    },

    EphedrineChemistryBottle = {
        "ephedrine bottle",
    },

    OmnizineChemistryBottle = {
        "omnizine bottle",
    },

    CognizineChemistryBottle = {
        "cognizine bottle",
    },

    PaxChemistryBottle = {
        "pax bottle",
    },

    MuteToxinChemistryBottle = {
        "mute toxin bottle",
    },

    LeadChemistryBottle = {
        "lead bottle",
    },

    ToxinChemistryBottle = {
        "toxin bottle",
    },

    BaseChemistryEmptyVial = {
        "vial",
    },

    VestineChemistryVial = {
        "vestine vial",
    },

    Beaker = {
        "beaker",
    },

    CryoxadoneBeakerSmall = {
        "cryoxadone beaker",
    },

    LargeBeaker = {
        "large beaker",
    },

    CryostasisBeaker = {
        "cryostasis beaker",
    },

    BluespaceBeaker = {
        "bluespace beaker",
    },

    Dropper = {
        "dropper",
    },

    BorgDropper = {
        "borgdropper",
    },

    BaseSyringe = {
        "syringe",
    },

    SyringeBluespace = {
        "bluespace syringe",
    },

    SyringeCryostasis = {
        "cryostasis syringe",
    },

    Pill = {
        "pill",
    },

    PillCanister = {
        "pill canister",
    },

    MonkeyCube = {
        "monkey cube",
    },

    KoboldCube = {
        "kobold cube",
    },

    CowCube = {
        "cow cube",
    },

    GoatCube = {
        "goat cube",
    },

    MothroachCube = {
        "mothroach cube",
    },

    MouseCube = {
        "mouse cube",
    },

    CockroachCube = {
        "cockroach cube",
    },

    SpaceCarpCube = {
        "carp cube",
    },

    SpaceTickCube = {
        "tick cube",
    },

    AbominationCube = {
        "abomination cube",
    },

    DehydratedSpaceCarp = {
        "dehydrated space carp",
    },

    SyndicateSponge = {
        "monkey cube",
    },

    Telecrystal = {
        "telecrystal",
    },

    BaseUplinkRadio = {
        "syndicate uplink",
    },

    AccessConfigurator = {
        "access configurator",
    },

    AccessConfiguratorUniversal = {
        "universal access configurator",
    },

    AppraisalTool = {
        "appraisal tool",
    },

    Bucket = {
        "bucket",
    },

    CableStack = {
        "cable stack",
    },

    CableHVStack = {
        "HV cable coil",
    },

    CableMVStack = {
        "MV cable coil",
    },

    CableApcStack = {
        "LV cable coil",
    },

    Haycutters = {
        "haycutters",
    },

    Moodriver = {
        "moodriver",
    },

    Wronch = {
        "wronch",
    },

    Cowbar = {
        "cowbar",
    },

    Mooltitool = {
        "mooltitool",
    },

    Cowelder = {
        "cowelding tool",
    },

    Milkalyzer = {
        "milkalyzer",
    },

    CowToolbox = {
        "cow toolbox",
    },

    CowToolboxFilled = {
        "cow toolbox",
    },

    BaseCrowbar = {
        "crowbar",
    },

    CrowbarRed = {
        "emergency crowbar",
    },

    BalloonOperative = {
        "operative balloon",
    },

    BalloonAgent = {
        "agent balloon",
    },

    BalloonElite = {
        "elite operative balloon",
    },

    BalloonJuggernaut = {
        "juggernaut balloon",
    },

    BalloonCommander = {
        "commander balloon",
    },

    EmagUnlimited = {
        "cryptographic sequencer",
    },

    Flare = {
        "emergency flare",
    },

    FlashlightLantern = {
        "flashlight",
    },

    FlashlightSeclite = {
        "seclite",
    },

    Fulton = {
        "fulton",
    },

    FultonBeacon = {
        "fulton beacon",
    },

    Fulton = {
        "fulton",
    },

    Fulton1 = {
        "fulton",
    },

    FultonEffect = {
        "fulton effect",
    },

    OxygenTank = {
        "oxygen tank",
    },

    NitrogenTank = {
        "nitrogen tank",
    },

    EmergencyOxygenTank = {
        "emergency oxygen tank",
    },

    EmergencyNitrogenTank = {
        "emergency nitrogen tank",
    },

    ExtendedEmergencyOxygenTank = {
        "extended-capacity emergency oxygen tank",
    },

    ExtendedEmergencyNitrogenTank = {
        "extended-capacity emergency nitrogen tank",
    },

    DoubleEmergencyOxygenTank = {
        "double emergency oxygen tank",
    },

    DoubleEmergencyNitrogenTank = {
        "double emergency nitrogen tank",
    },

    EmergencyFunnyOxygenTank = {
        "funny emergency oxygen tank",
    },

    AirTank = {
        "air tank",
    },

    NitrousOxideTank = {
        "nitrous oxide tank",
    },

    PlasmaTank = {
        "plasma tank",
    },

    GlowstickBase = {
        "green glowstick",
    },

    GlowstickRed = {
        "red glowstick",
    },

    GlowstickPurple = {
        "purple glowstick",
    },

    GlowstickYellow = {
        "yellow glowstick",
    },

    GlowstickBlue = {
        "blue glowstick",
    },

    LightBehaviourTest1 = {
        "light pulse test",
    },

    LightBehaviourTest2 = {
        "color cycle test",
    },

    LightBehaviourTest3 = {
        "multi-behaviour light test",
    },

    LightBehaviourTest4 = {
        "light fade in test",
    },

    LightBehaviourTest5 = {
        "light pulse radius test",
    },

    LightBehaviourTest6 = {
        "light randomize radius test",
    },

    HandheldGPSBasic = {
        "global positioning system",
    },

    HandHeldMassScanner = {
        "handheld mass scanner",
    },

    HandLabeler = {
        "hand labeler",
    },

    InflatableWallStack = {
        "inflatable barricade",
    },

    InflatableDoorStack = {
        "inflatable door",
    },

    RadioJammer = {
        "radio jammer",
    },

    JawsOfLife = {
        "jaws of life",
    },

    SyndicateJawsOfLife = {
        "syndicate jaws of life",
    },

    BaseJetpack = {
        "jetpack",
    },

    ActionToggleJetpack = {
        "Toggle jetpack",
    },

    JetpackBlue = {
        "jetpack",
    },

    JetpackBlueFilled = {
        "jetpack",
    },

    JetpackBlack = {
        "jetpack",
    },

    JetpackBlackFilled = {
        "jetpack",
    },

    JetpackCaptain = {
        "captain's jetpack",
    },

    JetpackCaptainFilled = {
        "captain's jetpack",
    },

    JetpackMini = {
        "mini jetpack",
    },

    JetpackMiniFilled = {
        "mini jetpack",
    },

    JetpackSecurity = {
        "security jetpack",
    },

    JetpackSecurityFilled = {
        "security jetpack",
    },

    JetpackVoid = {
        "void jetpack",
    },

    JetpackVoidFilled = {
        "void jetpack",
    },

    Lantern = {
        "lantern",
    },

    Lighter = {
        "basic lighter",
    },

    CheapLighter = {
        "cheap lighter",
    },

    FlippoLighter = {
        "flippo lighter",
    },

    FlippoEngravedLighter = {
        "flippo engraved lighter",
    },

    LightReplacer = {
        "light replacer",
    },

    Matchstick = {
        "match stick",
    },

    Matchbox = {
        "match box",
    },

    SprayPainter = {
        "spray painter",
    },

    trayScanner = {
        "t-ray scanner",
    },

    ThiefBeacon = {
        "thieving beacon",
    },

    ToolboxEmergency = {
        "emergency toolbox",
    },

    ToolboxMechanical = {
        "mechanical toolbox",
    },

    ToolboxElectrical = {
        "electrical toolbox",
    },

    ToolboxElectricalTurret = {
        "electrical toolbox",
    },

    ToolboxArtistic = {
        "artistic toolbox",
    },

    ToolboxSyndicate = {
        "suspicious toolbox",
    },

    ToolboxGolden = {
        "golden toolbox",
    },

    ToolboxThief = {
        "thief undetermined toolbox",
    },

    Wirecutter = {
        "wirecutter",
    },

    Screwdriver = {
        "screwdriver",
    },

    Wrench = {
        "wrench",
    },

    Multitool = {
        "multitool",
    },

    NetworkConfigurator = {
        "network configurator",
    },

    PowerDrill = {
        "power drill",
    },

    RCD = {
        "RCD",
    },

    RCDRecharging = {
        "experimental RCD",
    },

    RCDExperimental = {
        "experimental RCD",
    },

    RCDAmmo = {
        "compressed matter",
    },

    Omnitool = {
        "omnitool",
    },

    Shovel = {
        "shovel",
    },

    RollingPin = {
        "rolling pin",
    },

    Welder = {
        "welding tool",
    },

    WelderIndustrial = {
        "industrial welding tool",
    },

    WelderIndustrialAdvanced = {
        "advanced industrial welding tool",
    },

    WelderExperimental = {
        "experimental welding tool",
    },

    WelderMini = {
        "emergency welding tool",
    },

    Stunbaton = {
        "stun baton",
    },

    Truncheon = {
        "truncheon",
    },

    Flash = {
        "flash",
    },

    SciFlash = {
        "flash",
    },

    PortableFlasher = {
        "portable flasher",
    },

    DrinkJuiceLimeCarton = {
        "lime juice",
    },

    DrinkJuiceOrangeCarton = {
        "orange juice",
    },

    DrinkJuiceTomatoCarton = {
        "tomato juice",
    },

    DrinkCoconutWaterCarton = {
        "coconut water",
    },

    DrinkCreamCarton = {
        "milk cream",
    },

    DrinkMilkCarton = {
        "milk",
    },

    DrinkSoyMilkCarton = {
        "soy milk",
    },

    DrinkOatMilkCarton = {
        "oat milk",
    },

    DrinkJuiceLemonCarton = {
        "lemon juice",
    },

    DrinkGlass = {
        "metamorphic glass",
    },

    DrinkGlassCoupeShaped = {
        "coupe glass",
    },

    DrinkTeapot = {
        "teapot",
    },

    DrinkWaterJug = {
        "water jug",
    },

    DrinkShakeBlue = {
        "blue milkshake",
    },

    DrinkShakeEmpty = {
        "shakeempty",
    },

    DrinkShakeMeat = {
        "meat shake",
    },

    DrinkShakeRobo = {
        "robo shake",
    },

    DrinkShakeWhite = {
        "white shake",
    },

    DrinkAbsintheBottleFull = {
        "Jailbreaker Verte",
    },

    DrinkBlueCuracaoBottleFull = {
        "Miss Blue Curacao",
    },

    DrinkBottleOfNothingFull = {
        "bottle of nothing",
    },

    DrinkChampagneBottleFull = {
        "champagne bottle",
    },

    DrinkCognacBottleFull = {
        "cognac bottle",
    },

    DrinkColaBottleFull = {
        "space cola bottle",
    },

    DrinkGrenadineBottleFull = {
        "briar rose grenadine syrup bottle",
    },

    DrinkGinBottleFull = {
        "Griffeater gin",
    },

    DrinkGildlagerBottleFull = {
        "gildlager bottle",
    },

    DrinkCoffeeLiqueurBottleFull = {
        "coffee liqueur bottle",
    },

    DrinkMelonLiquorBottleFull = {
        "emeraldine melon liquor",
    },

    DrinkPatronBottleFull = {
        "wrapp artiste patron bottle",
    },

    DrinkPoisonWinebottleFull = {
        "warlock's velvet bottle",
    },

    DrinkRumBottleFull = {
        "captain pete's Cuban spiced rum",
    },

    DrinkSpaceMountainWindBottleFull = {
        "space mountain wind bottle",
    },

    DrinkSpaceUpBottleFull = {
        "space-up bottle",
    },

    DrinkTequilaBottleFull = {
        "caccavo guaranteed quality tequila bottle",
    },

    DrinkVermouthBottleFull = {
        "goldeneye vermouth bottle",
    },

    DrinkVodkaBottleFull = {
        "vodka bottle",
    },

    DrinkWhiskeyBottleFull = {
        "uncle git's special reserve",
    },

    DrinkWineBottleFull = {
        "doublebearded bearded special wine bottle",
    },

    DrinkBeerBottleFull = {
        "beer",
    },

    DrinkBeerGrowler = {
        "Beer Growler",
    },

    DrinkAleBottleFull = {
        "Magm-Ale",
    },

    DrinkAleBottleFullGrowler = {
        "Magm-Ale Growler",
    },

    DrinkWaterBottleFull = {
        "water bottle",
    },

    DrinkSodaWaterBottleFull = {
        "soda water bottle",
    },

    DrinkTonicWaterBottleFull = {
        "tonic water bottle",
    },

    DrinkSakeBottleFull = {
        "small sake bottle",
    },

    DrinkJuiceLimeCartonXL = {
        "lime juice XL",
    },

    DrinkJuiceOrangeCartonXL = {
        "orange juice XL",
    },

    DrinkCreamCartonXL = {
        "milk cream XL",
    },

    DrinkSugarJug = {
        "sugar jug",
    },

    DrinkLemonLimeJug = {
        "lemon lime jug",
    },

    DrinkMeadJug = {
        "mead jug",
    },

    DrinkIceJug = {
        "ice jug",
    },

    DrinkCoconutWaterJug = {
        "coconut water jug",
    },

    DrinkCoffeeJug = {
        "coffee jug",
    },

    DrinkTeaJug = {
        "tea jug",
    },

    DrinkGreenTeaJug = {
        "green tea jug",
    },

    DrinkIcedTeaJug = {
        "iced tea jug",
    },

    DrinkDrGibbJug = {
        "dr gibb. jug",
    },

    DrinkRootBeerJug = {
        "root beer jug",
    },

    DrinkWaterMelonJuiceJug = {
        "watermelon juice jug",
    },

    DrinkEnergyDrinkJug = {
        "red bool jug",
    },

    CustomDrinkJug = {
        "beverage jug",
    },

    DrinkColaCan = {
        "space cola",
    },

    DrinkIcedTeaCan = {
        "iced tea can",
    },

    DrinkLemonLimeCan = {
        "lemon-lime can",
    },

    DrinkGrapeCan = {
        "grape soda can",
    },

    DrinkRootBeerCan = {
        "root beer can",
    },

    DrinkSodaWaterCan = {
        "soda water can",
    },

    DrinkSpaceMountainWindCan = {
        "space mountain wind can",
    },

    DrinkSpaceUpCan = {
        "space-up can",
    },

    DrinkSolDryCan = {
        "sol dry",
    },

    DrinkStarkistCan = {
        "starkist can",
    },

    DrinkTonicWaterCan = {
        "tonic water can",
    },

    DrinkFourteenLokoCan = {
        "Fourteen Loko can",
    },

    DrinkChangelingStingCan = {
        "changeling sting can",
    },

    DrinkDrGibbCan = {
        "Dr. Gibb can",
    },

    DrinkNukieCan = {
        "blood-red brew can",
    },

    DrinkEnergyDrinkCan = {
        "red bool energy drink",
    },

    DrinkCanPack = {
        "6pack",
    },

    DrinkShamblersJuiceCan = {
        "shamblers juice can",
    },

    DrinkPwrGameCan = {
        "pwr game can",
    },

    DrinkBeerCan = {
        "beer can",
    },

    DrinkWineCan = {
        "wine can",
    },

    DrinkBaseCup = {
        "base cup",
    },

    DrinkGoldenCup = {
        "golden cup",
    },

    DrinkBaseMug = {
        "mug",
    },

    DrinkMug = {
        "mug",
    },

    DrinkMugBlack = {
        "black mug",
    },

    DrinkMugBlue = {
        "blue mug",
    },

    DrinkMugGreen = {
        "green mug",
    },

    DrinkMugDog = {
        "funny dog mug",
    },

    DrinkMugHeart = {
        "heart mug",
    },

    DrinkMugMetal = {
        "metal mug",
    },

    DrinkMugMoebius = {
        "moebius mug",
    },

    DrinkMugOne = {
        "#1 mug",
    },

    DrinkMugRainbow = {
        "rainbow mug",
    },

    DrinkMugRed = {
        "red mug",
    },

    DrinkHotCoco = {
        "hot chocolate",
    },

    DrinkHotCoffee = {
        "coffee",
    },

    DrinkCafeLatte = {
        "cafe latte",
    },

    DrinkTeacup = {
        "teacup",
    },

    DrinkGreenTea = {
        "green tea",
    },

    DrinkLean = {
        "grape juice",
    },

    DrinkWaterCup = {
        "water cup",
    },

    DrinkShinyFlask = {
        "shiny flask",
    },

    DrinkMREFlask = {
        "MRE flask",
    },

    DrinkDetFlask = {
        "inspector's flask",
    },

    DrinkHosFlask = {
        "hos's flask",
    },

    DrinkFlask = {
        "captain's flask",
    },

    DrinkFlaskBar = {
        "bar flask",
    },

    DrinkFlaskOld = {
        "flask",
    },

    DrinkLithiumFlask = {
        "lithium flask",
    },

    DrinkVacuumFlask = {
        "vacuum flask",
    },

    DrinkSpaceGlue = {
        "space glue tube",
    },

    DrinkSpaceLube = {
        "space lube tube",
    },

    DrinkMopwataBottleRandom = {
        "delicious mopwata",
    },

    DrinkVisualizerTestCut = {
        "solution container vis cut-out",
    },

    DrinkVisualizerTestNot = {
        "solution container vis cut-not",
    },

    DrinkShaker = {
        "shaker",
    },

    DrinkShotGlass = {
        "shot glass",
    },

    DrinkJar = {
        "jar",
    },

    DrinkJarWhat = {
        "jar of something",
    },

    DrinkJigger = {
        "jigger",
    },

    DrinkIceBucket = {
        "ice bucket",
    },

    DrinkBottleBaseEmpty = {
        "base empty bottle",
    },

    DrinkBottleBaseSmallEmpty = {
        "base empty bottle",
    },

    DrinkCartonBaseEmpty = {
        "base empty carton",
    },

    DrinkCartonBaseLargeEmpty = {
        "base empty bottle",
    },

    DrinkBottleAbsinthe = {
        "Jailbreaker Verte bottle",
    },

    DrinkBottleAlcoClear = {
        "alcohol bottle",
    },

    DrinkBottleAle = {
        "ale bottle",
    },

    DrinkBottleBeer = {
        "beer bottle",
    },

    DrinkBottleCognac = {
        "cognac bottle",
    },

    DrinkBottleGin = {
        "Griffeater gin bottle",
    },

    DrinkBottleGildlager = {
        "gildlager bottle",
    },

    DrinkBottleCoffeeLiqueur = {
        "coffee liqueur bottle",
    },

    DrinkBottleNTCahors = {
        "nt cahors bottle",
    },

    DrinkBottlePatron = {
        "patron bottle",
    },

    DrinkBottlePoisonWine = {
        "poison wine bottle",
    },

    DrinkBottleRum = {
        "rum bottle",
    },

    DrinkBottleTequila = {
        "tequila bottle",
    },

    DrinkBottleVermouth = {
        "vermouth bottle",
    },

    DrinkBottleVodka = {
        "vodka bottle",
    },

    DrinkBottleWhiskey = {
        "whiskey bottle",
    },

    DrinkBottleWine = {
        "wine bottle",
    },

    DrinkCartonLime = {
        "lime juice carton",
    },

    DrinkCartonOrange = {
        "orange juice carton",
    },

    DrinkCartonTomato = {
        "tomato juice carton",
    },

    DrinkCartonCream = {
        "milk cream carton",
    },

    DrinkCartonMilk = {
        "milk carton",
    },

    DrinkCartonSoyMilk = {
        "soy milk carton",
    },

    DrinkCartonOatMilk = {
        "oat milk carton",
    },

    FoodBreadBun = {
        "bun",
    },

    FoodBreadBunBottom = {
        "bottom bun",
    },

    FoodBreadBunTop = {
        "top bun",
    },

    FoodBurgerJelly = {
        "jelly burger",
    },

    FoodBurgerAppendix = {
        "appendix burger",
    },

    FoodBurgerBacon = {
        "bacon burger",
    },

    FoodBurgerBaseball = {
        "baseball burger",
    },

    FoodBurgerBear = {
        "bearger",
    },

    FoodBurgerBig = {
        "big bite burger",
    },

    FoodBurgerBrain = {
        "brain burger",
    },

    FoodBurgerCat = {
        "cat burger",
    },

    FoodBurgerCheese = {
        "cheese burger",
    },

    FoodBurgerChicken = {
        "chicken sandwich",
    },

    FoodBurgerClown = {
        "clown burger",
    },

    FoodBurgerCorgi = {
        "corger",
    },

    FoodBurgerCrab = {
        "crab burger",
    },

    FoodBurgerCrazy = {
        "crazy hamburger",
    },

    FoodBurgerDuck = {
        "duck sandwich",
    },

    FoodBurgerEmpowered = {
        "empowered burger",
    },

    FoodBurgerCarp = {
        "fillet-o-carp burger",
    },

    FoodBurgerFive = {
        "five alarm burger",
    },

    FoodBurgerGhost = {
        "ghost burger",
    },

    FoodBurgerHuman = {
        "human burger",
    },

    FoodBurgerMcguffin = {
        "McGuffin",
    },

    FoodBurgerMcrib = {
        "BBQ Rib Sandwich",
    },

    FoodBurgerMime = {
        "mime burger",
    },

    FoodBurgerPlain = {
        "plain burger",
    },

    FoodBurgerRat = {
        "rat burger",
    },

    FoodBurgerRobot = {
        "roburger",
    },

    FoodBurgerSoy = {
        "soylent burger",
    },

    FoodBurgerSpell = {
        "spell burger",
    },

    FoodBurgerSuper = {
        "super bite burger",
    },

    FoodBurgerTofu = {
        "tofu burger",
    },

    FoodBurgerXeno = {
        "xenoburger",
    },

    FoodBurgerMothRoach = {
        "mothroachburger",
    },

    Eggshells = {
        "eggshells",
    },

    FoodEgg = {
        "egg",
    },

    FoodEggBoiled = {
        "boiled egg",
    },

    FoodFrozenSandwich = {
        "ice-cream sandwich",
    },

    FoodFrozenSandwichStrawberry = {
        "strawberry ice-cream sandwich",
    },

    FoodFrozenFreezy = {
        "space freezy",
    },

    FoodFrozenSundae = {
        "ice-cream sundae",
    },

    FoodFrozenCornuto = {
        "cornuto",
    },

    FoodFrozenPopsicleOrange = {
        "orange creamsicle",
    },

    FoodFrozenPopsicleBerry = {
        "berry creamsicle",
    },

    FoodFrozenPopsicleJumbo = {
        "jumbo ice-cream",
    },

    FoodFrozenSnowconeBase = {
        "sweet snowcone",
    },

    FoodFrozenSnowcone = {
        "flavorless snowcone",
    },

    FoodFrozenSnowconeBerry = {
        "berry snowcone",
    },

    FoodFrozenSnowconeFruit = {
        "fruit salad snowcone",
    },

    FoodFrozenSnowconeClown = {
        "clowncone",
    },

    FoodFrozenSnowconeMime = {
        "mime snowcone",
    },

    FoodFrozenSnowconeRainbow = {
        "rainbow snowcone",
    },

    FoodFrozenSnowconeTrash = {
        "paper cone",
    },

    FoodFrozenPopsicleTrash = {
        "popsicle stick",
    },

    ReagentContainerFlour = {
        "flour bag",
    },

    ReagentContainerFlourSmall = {
        "flour pack",
    },

    ReagentContainerCornmeal = {
        "cornmeal bag",
    },

    ReagentContainerCornmealSmall = {
        "cornmeal pack",
    },

    ReagentContainerRice = {
        "rice bag",
    },

    ReagentContainerRiceSmall = {
        "rice pack",
    },

    ReagentContainerSugar = {
        "sugar bag",
    },

    ReagentContainerSugarSmall = {
        "sugar pack",
    },

    ReagentContainerOliveoil = {
        "olive oil",
    },

    ReagentContainerMayo = {
        "mayonnaise",
    },

    FoodDough = {
        "dough",
    },

    FoodDoughSlice = {
        "dough slice",
    },

    FoodDoughRope = {
        "dough rope",
    },

    FoodDoughCornmeal = {
        "cornmeal dough",
    },

    FoodDoughCornmealSlice = {
        "cornmeal dough slice",
    },

    FoodDoughTortilla = {
        "tortilla dough",
    },

    FoodDoughTortillaSlice = {
        "tortilla dough slice",
    },

    FoodDoughTortillaFlat = {
        "flattened tortilla dough",
    },

    FoodDoughPastryBaseRaw = {
        "raw pastry base",
    },

    FoodDoughPastryBase = {
        "pastry base",
    },

    FoodDoughPie = {
        "pie dough",
    },

    FoodDoughFlat = {
        "flat dough",
    },

    FoodDoughPizzaBaked = {
        "pizza bread",
    },

    FoodCakeBatter = {
        "cake batter",
    },

    FoodButter = {
        "stick of butter",
    },

    FoodButterSlice = {
        "butter slice",
    },

    FoodCannabisButter = {
        "stick of cannabis butter",
    },

    FoodCheese = {
        "cheese wheel",
    },

    FoodCheeseSlice = {
        "cheese wedge",
    },

    FoodChevre = {
        "chèvre log",
    },

    FoodChevreSlice = {
        "chèvre disk",
    },

    FoodTofu = {
        "tofu",
    },

    FoodTofuSlice = {
        "tofu slice",
    },

    FoodBadRecipe = {
        "burned mess",
    },

    FoodCocoaBeans = {
        "cocoa beans",
    },

    FoodMealPotatoLoaded = {
        "loaded baked potato",
    },

    FoodMealFries = {
        "space fries",
    },

    FoodMealFriesCheesy = {
        "cheesy fries",
    },

    FoodMealFriesCarrot = {
        "carrot fries",
    },

    FoodMealNachos = {
        "nachos",
    },

    FoodMealNachosCheesy = {
        "cheesy nachos",
    },

    FoodMealNachosCuban = {
        "Cuban nachos",
    },

    FoodMealMint = {
        "mint",
    },

    FoodMealEggplantParm = {
        "eggplant parmigiana",
    },

    FoodMealPotatoYaki = {
        "yaki imo",
    },

    FoodMealCubancarp = {
        "Cuban carp",
    },

    FoodMealCornedbeef = {
        "corned beef and cabbage",
    },

    FoodMealBearsteak = {
        "filet migrawr",
    },

    FoodMealPigblanket = {
        "pig in a blanket",
    },

    FoodMealRibs = {
        "bbq ribs",
    },

    FoodMealEggsbenedict = {
        "eggs benedict",
    },

    FoodMealOmelette = {
        "cheese omelette",
    },

    FoodMealFriedegg = {
        "fried egg",
    },

    FoodMealMilkape = {
        "milk ape",
    },

    FoodMealMemoryleek = {
        "memory leek",
    },

    DisgustingSweptSoup = {
        "salty sweet miso cola soup",
    },

    FoodMealQueso = {
        "queso",
    },

    FoodMealSashimi = {
        "sashimi",
    },

    FoodMealEnchiladas = {
        "enchiladas",
    },

    FoodSaladWatermelonFruitBowl = {
        "melon fruit bowl",
    },

    FoodMealCornInButter = {
        "corn in butter",
    },

    FoodMeat = {
        "raw meat",
    },

    FoodMeatHuman = {
        "raw human meat",
    },

    FoodMeatFish = {
        "raw carp fillet",
    },

    FoodMeatBacon = {
        "raw bacon",
    },

    FoodMeatBear = {
        "raw bear meat",
    },

    FoodMeatPenguin = {
        "raw penguin meat",
    },

    FoodMeatChicken = {
        "raw chicken meat",
    },

    FoodMeatDuck = {
        "raw duck meat",
    },

    FoodMeatCorgi = {
        "prime-cut corgi meat",
    },

    FoodMeatCrab = {
        "raw crab meat",
    },

    FoodMeatGoliath = {
        "raw goliath meat",
    },

    FoodMeatDragon = {
        "dragon flesh",
    },

    FoodMeatRat = {
        "raw rat meat",
    },

    FoodMeatLizard = {
        "raw lizard meat",
    },

    FoodMeatPlant = {
        "raw plant meat",
    },

    FoodMeatRotten = {
        "rotten meat",
    },

    FoodMeatSpider = {
        "raw spider meat",
    },

    FoodMeatSpiderLeg = {
        "raw spider leg",
    },

    FoodMeatWheat = {
        "meatwheat clump",
    },

    FoodMeatSnake = {
        "raw snake meat",
    },

    FoodMeatXeno = {
        "raw xeno meat",
    },

    FoodMeatRouny = {
        "raw rouny meat",
    },

    FoodMeatTomato = {
        "killer tomato meat",
    },

    FoodMeatSalami = {
        "salami",
    },

    FoodMeatClown = {
        "meat clown",
    },

    FoodMeatMeatball = {
        "meatball",
    },

    FoodMeatSlime = {
        "slimeball",
    },

    MaterialSmileExtract = {
        "smile extract",
    },

    FoodMeatCooked = {
        "steak",
    },

    FoodMeatBaconCooked = {
        "bacon",
    },

    FoodMeatBearCooked = {
        "cooked bear",
    },

    FoodMeatPenguinCooked = {
        "penguin filet",
    },

    FoodMeatChickenCooked = {
        "cooked chicken",
    },

    FoodMeatChickenFried = {
        "fried chicken",
    },

    FoodMeatDuckCooked = {
        "cooked duck",
    },

    FoodMeatCrabCooked = {
        "cooked crab",
    },

    FoodMeatGoliathCooked = {
        "goliath steak",
    },

    FoodMeatRounyCooked = {
        "rouny steak",
    },

    FoodMeatLizardCooked = {
        "lizard steak",
    },

    FoodMeatSpiderlegCooked = {
        "boiled spider leg",
    },

    FoodMeatMeatballCooked = {
        "meatball",
    },

    FoodMeatCutlet = {
        "raw cutlet",
    },

    FoodMeatBearCutlet = {
        "raw bear cutlet",
    },

    FoodMeatPenguinCutlet = {
        "raw penguin cutlet",
    },

    FoodMeatChickenCutlet = {
        "raw chicken cutlet",
    },

    FoodMeatDuckCutlet = {
        "raw duck cutlet",
    },

    FoodMeatLizardCutlet = {
        "raw lizard cutlet",
    },

    FoodMeatSpiderCutlet = {
        "raw spider cutlet",
    },

    FoodMeatXenoCutlet = {
        "raw xeno cutlet",
    },

    FoodMeatTomatoCutlet = {
        "raw killer tomato cutlet",
    },

    FoodMeatSalamiSlice = {
        "salami slice",
    },

    FoodMeatCutletCooked = {
        "cutlet",
    },

    FoodMeatBearCutletCooked = {
        "bear cutlet",
    },

    FoodMeatPenguinCutletCooked = {
        "penguin cutlet",
    },

    FoodMeatChickenCutletCooked = {
        "chicken cutlet",
    },

    FoodMeatDuckCutletCooked = {
        "duck cutlet",
    },

    FoodMeatLizardCutletCooked = {
        "lizard cutlet",
    },

    FoodMeatSpiderCutletCooked = {
        "spider cutlet",
    },

    FoodMeatXenoCutletCooked = {
        "xeno cutlet",
    },

    FoodNoodlesBoiled = {
        "boiled spaghetti",
    },

    FoodNoodles = {
        "spaghetti",
    },

    FoodNoodlesCopy = {
        "copypasta",
    },

    FoodNoodlesMeatball = {
        "spaghetti and meatballs",
    },

    FoodNoodlesSpesslaw = {
        "spesslaw",
    },

    FoodNoodlesChowmein = {
        "chow mein",
    },

    FoodNoodlesButter = {
        "butter noodles",
    },

    WheatBushel = {
        "wheat bushel",
    },

    OatBushel = {
        "oat bushel",
    },

    Sugarcane = {
        "sugarcane",
    },

    Papercane = {
        "papercane roll",
    },

    FoodLaughinPeaPod = {
        "laughin' pea pod",
    },

    Log = {
        "tower-cap log",
    },

    SteelLog = {
        "steel-cap log",
    },

    Nettle = {
        "nettle",
    },

    DeathNettle = {
        "death nettle",
    },

    FoodBanana = {
        "banana",
    },

    FoodMimana = {
        "mimana",
    },

    TrashBananaPeel = {
        "banana peel",
    },

    TrashBakedBananaPeel = {
        "baked banana peel",
    },

    TrashMimanaPeel = {
        "mimana peel",
    },

    TrashBananiumPeel = {
        "bananium peel",
    },

    FoodCarrot = {
        "carrot",
    },

    FoodCabbage = {
        "cabbage",
    },

    FoodGarlic = {
        "garlic",
    },

    FoodLemon = {
        "lemon",
    },

    FoodLemoon = {
        "lemoon",
    },

    FoodLime = {
        "lime",
    },

    FoodOrange = {
        "orange",
    },

    FoodPineapple = {
        "pineapple",
    },

    FoodPotato = {
        "potato",
    },

    FoodTomato = {
        "tomato",
    },

    FoodBlueTomato = {
        "blue tomato",
    },

    FoodBloodTomato = {
        "blood tomato",
    },

    FoodEggplant = {
        "eggplant",
    },

    FoodApple = {
        "apple",
    },

    FoodGoldenApple = {
        "golden apple",
    },

    FoodCocoaPod = {
        "cocoa pod",
    },

    FoodCorn = {
        "ear of corn",
    },

    FoodCornTrash = {
        "corn cob",
    },

    FoodOnion = {
        "onion",
    },

    FoodOnionRed = {
        "red onion",
    },

    FoodMushroom = {
        "chanterelle cluster",
    },

    FoodPineappleSlice = {
        "pineapple slice",
    },

    FoodOnionSlice = {
        "onion slice",
    },

    FoodOnionRedSlice = {
        "red onion slice",
    },

    FoodChiliPepper = {
        "chili pepper",
    },

    FoodChillyPepper = {
        "chilly pepper",
    },

    FoodAloe = {
        "aloe",
    },

    FoodPoppy = {
        "poppy",
    },

    FoodLily = {
        "lily",
    },

    FoodLingzhi = {
        "lingzhi",
    },

    FoodAmbrosiaVulgaris = {
        "ambrosia vulgaris",
    },

    FoodAmbrosiaDeus = {
        "ambrosia deus",
    },

    FoodGalaxythistle = {
        "galaxythistle",
    },

    FoodGlasstle = {
        "glasstle",
    },

    FoodFlyAmanita = {
        "fly amanita",
    },

    FoodGatfruit = {
        "gatfruit",
    },

    FoodRealCapfruit = {
        "capfruit",
    },

    FoodFakeCapfruit = {
        "capfruit",
    },

    RiceBushel = {
        "rice bushel",
    },

    FoodSoybeans = {
        "soybeans",
    },

    FoodSpacemansTrumpet = {
        "spaceman's trumpet",
    },

    FoodKoibean = {
        "koibean",
    },

    FoodWatermelon = {
        "watermelon",
    },

    FoodWatermelonSlice = {
        "watermelon slice",
    },

    FoodGrape = {
        "grapes",
    },

    FoodBerries = {
        "berries",
    },

    FoodBungo = {
        "bungo fruit",
    },

    FoodBungoPit = {
        "bungo pit",
    },

    FoodPeaPod = {
        "pea pod",
    },

    FoodPumpkin = {
        "pumpkin",
    },

    CottonBol = {
        "cotton boll",
    },

    PyrottonBol = {
        "pyrotton boll",
    },

    FoodKebabSkewer = {
        "skewer",
    },

    FoodSnackBoritos = {
        "boritos",
    },

    FoodSnackCnDs = {
        "C&Ds",
    },

    FoodSnackCheesie = {
        "cheesie honkers",
    },

    FoodSnackChips = {
        "chips",
    },

    FoodSnackChocolate = {
        "chocolate bar",
    },

    FoodSnackChocolateBar = {
        "chocolate bar",
    },

    FoodSnackEnergy = {
        "energy bar",
    },

    FoodSnackEnergyBar = {
        "energy bar",
    },

    FoodSnackPistachios = {
        "sweetie's pistachios",
    },

    FoodSnackPopcorn = {
        "popcorn",
    },

    FoodSnackRaisins = {
        "4no raisins",
    },

    FoodSnackSemki = {
        "bob's semki sunflower seeds",
    },

    FoodSnackSus = {
        "sus jerky",
    },

    FoodSnackSyndi = {
        "syndi-cakes",
    },

    DrinkRamen = {
        "cup ramen",
    },

    DrinkHellRamen = {
        "hell ramen",
    },

    FoodSnackChowMein = {
        "chow mein",
    },

    FoodSnackDanDanNoodles = {
        "dan dan noodles",
    },

    FoodSnackCookieFortune = {
        "fortune cookie",
    },

    FoodSnackNutribrick = {
        "nutribrick",
    },

    FoodSnackNutribrickOpen = {
        "nutribrick",
    },

    FoodSnackMREBrownie = {
        "brownie",
    },

    FoodSnackMREBrownieOpen = {
        "brownie",
    },

    FoodPacketBoritosTrash = {
        "boritos bag",
    },

    FoodPacketCnDsTrash = {
        "C&Ds bag",
    },

    FoodPacketCheesieTrash = {
        "cheesie honkers",
    },

    FoodPacketChipsTrash = {
        "chips",
    },

    FoodPacketChocolateTrash = {
        "chocolate wrapper",
    },

    FoodPacketEnergyTrash = {
        "energybar wrapper",
    },

    FoodPacketPistachioTrash = {
        "pistachios packet",
    },

    FoodPacketPopcornTrash = {
        "popcorn box",
    },

    FoodPacketRaisinsTrash = {
        "4no raisins",
    },

    FoodPacketSemkiTrash = {
        "semki packet",
    },

    FoodPacketSusTrash = {
        "sus jerky",
    },

    FoodPacketSyndiTrash = {
        "syndi-cakes box",
    },

    FoodPacketCupRamenTrash = {
        "empty cup ramen",
    },

    FoodPacketChowMeinTrash = {
        "empty chow mein box",
    },

    FoodPacketDanDanTrash = {
        "empty dan dan box",
    },

    FoodCookieFortune = {
        "cookie fortune",
    },

    FoodPacketMRETrash = {
        "MRE wrapper",
    },

    FoodSoupPea = {
        "pea soup",
    },

    FoodSaladAesir = {
        "aesir salad",
    },

    FoodSaladHerb = {
        "herb salad",
    },

    FoodSaladValid = {
        "valid salad",
    },

    FoodSaladColeslaw = {
        "coleslaw",
    },

    FoodSaladCaesar = {
        "caesar salad",
    },

    FoodSaladKimchi = {
        "kimchi salad",
    },

    FoodSaladFruit = {
        "fruit salad",
    },

    FoodSaladJungle = {
        "jungle salad",
    },

    FoodSaladCitrus = {
        "citrus salad",
    },

    FoodSaladEden = {
        "salad of eden",
    },

    FoodRiceBoiled = {
        "boiled rice",
    },

    FoodRiceEgg = {
        "egg-fried rice",
    },

    FoodRicePork = {
        "rice and pork",
    },

    FoodRicePudding = {
        "rice pudding",
    },

    FoodRiceGumbo = {
        "black-eyed gumbo",
    },

    FoodOatmeal = {
        "oatmeal",
    },

    FoodJellyDuff = {
        "space liberty duff",
    },

    FoodJellyAmanita = {
        "amanita jelly",
    },

    FoodSoupMeatball = {
        "meatball soup",
    },

    FoodSoupSlime = {
        "slime soup",
    },

    FoodSoupTomatoBlood = {
        "tomato soup",
    },

    FoodSoupWingFangChu = {
        "wing fang chu",
    },

    FoodSoupClown = {
        "clown's tears",
    },

    FoodSoupVegetable = {
        "vegetable soup",
    },

    FoodSoupNettle = {
        "nettle soup",
    },

    FoodSoupMystery = {
        "mystery soup",
    },

    FoodSoupChiliHot = {
        "bowl of hot chili",
    },

    FoodSoupChiliCold = {
        "cold chili",
    },

    FoodSoupChiliClown = {
        "chili con carnival",
    },

    FoodSoupMonkey = {
        "monkey's delight",
    },

    FoodSoupTomato = {
        "tomato soup",
    },

    FoodSoupEyeball = {
        "eyeball soup",
    },

    FoodSoupMiso = {
        "miso soup",
    },

    FoodSoupMushroom = {
        "mushroom soup",
    },

    FoodSoupBeet = {
        "beet soup",
    },

    FoodSoupBeetRed = {
        "red beet soup",
    },

    FoodSoupStew = {
        "stew",
    },

    FoodSoupPotato = {
        "sweet potato soup",
    },

    FoodSoupOnion = {
        "french onion soup",
    },

    FoodSoupBisque = {
        "bisque",
    },

    FoodSoupElectron = {
        "electron soup",
    },

    FoodSoupBungo = {
        "bungo curry",
    },

    FoodTacoShell = {
        "taco shell",
    },

    BaseComputerCircuitboard = {
        "computer board",
    },

    AlertsComputerCircuitboard = {
        "alerts computer board",
    },

    PowerComputerCircuitboard = {
        "power monitoring computer board",
    },

    MedicalRecordsComputerCircuitboard = {
        "medical records computer board",
    },

    CriminalRecordsComputerCircuitboard = {
        "criminal records computer board",
    },

    StationRecordsComputerCircuitboard = {
        "station records computer board",
    },

    CargoRequestComputerCircuitboard = {
        "cargo request computer board",
    },

    CargoSaleComputerCircuitboard = {
        "cargo sale computer board",
    },

    CargoBountyComputerCircuitboard = {
        "cargo bounty computer board",
    },

    CargoShuttleComputerCircuitboard = {
        "cargo shuttle computer board",
    },

    SalvageExpeditionsComputerCircuitboard = {
        "salvage expeditions computer board",
    },

    CargoShuttleConsoleCircuitboard = {
        "cargo shuttle console board",
    },

    SalvageShuttleConsoleCircuitboard = {
        "salvage shuttle console board",
    },

    SurveillanceCameraMonitorCircuitboard = {
        "surveillance camera monitor board",
    },

    SurveillanceWirelessCameraMonitorCircuitboard = {
        "surveillance wireless camera monitor board",
    },

    ComputerTelevisionCircuitboard = {
        "television board",
    },

    ResearchComputerCircuitboard = {
        "R&D computer board",
    },

    AnalysisComputerCircuitboard = {
        "analysis computer board",
    },

    TechDiskComputerCircuitboard = {
        "tech disk terminal board",
    },

    CrewMonitoringComputerCircuitboard = {
        "crew monitoring computer board",
    },

    IDComputerCircuitboard = {
        "ID card computer board",
    },

    BodyScannerComputerCircuitboard = {
        "body scanner computer board",
    },

    CommsComputerCircuitboard = {
        "communications computer board",
    },

    SyndicateCommsComputerCircuitboard = {
        "syndicate communications computer board",
    },

    RadarConsoleCircuitboard = {
        "radar console computer board",
    },

    SolarControlComputerCircuitboard = {
        "solar control computer board",
    },

    SpaceVillainArcadeComputerCircuitboard = {
        "space villain arcade board",
    },

    BlockGameArcadeComputerCircuitboard = {
        "block game arcade board",
    },

    ParticleAcceleratorComputerCircuitboard = {
        "PA control box computer board",
    },

    ShuttleConsoleCircuitboard = {
        "shuttle console board",
    },

    SyndicateShuttleConsoleCircuitboard = {
        "syndicate shuttle console board",
    },

    CloningConsoleComputerCircuitboard = {
        "cloning console computer board",
    },

    ComputerIFFCircuitboard = {
        "IFF console board",
    },

    ComputerIFFSyndicateCircuitboard = {
        "syndicate IFF console board",
    },

    ComputerMassMediaCircuitboard = {
        "news manager console board",
    },

    SensorConsoleCircuitboard = {
        "sensor monitoring console board",
    },

    RoboticsConsoleCircuitboard = {
        "robotics control console board",
    },

    StationMapCircuitboard = {
        "station map electronics",
    },

    AirAlarmElectronics = {
        "air alarm electronics",
    },

    FireAlarmElectronics = {
        "fire alarm electronics",
    },

    BaseElectronics = {
        "base electronics",
    },

    MailingUnitElectronics = {
        "mailing unit electronics",
    },

    DoorElectronics = {
        "door electronics",
    },

    FirelockElectronics = {
        "firelock electronics",
    },

    Igniter = {
        "igniter",
    },

    IntercomElectronics = {
        "intercom electronics",
    },

    RipleyCentralElectronics = {
        "ripley central control module",
    },

    RipleyPeripheralsElectronics = {
        "ripley peripherals control module",
    },

    HonkerCentralElectronics = {
        "H.O.N.K. central control module",
    },

    HonkerPeripheralsElectronics = {
        "H.O.N.K. peripherals control module",
    },

    HonkerTargetingElectronics = {
        "H.O.N.K. weapon control and targeting module",
    },

    HamtrCentralElectronics = {
        "HAMTR central control module",
    },

    HamtrPeripheralsElectronics = {
        "HAMTR peripherals control module",
    },

    APCElectronics = {
        "APC electronics",
    },

    WallmountSubstationElectronics = {
        "wallmount substation electronics",
    },

    WallmountGeneratorElectronics = {
        "wallmount generator electronics",
    },

    WallmountGeneratorAPUElectronics = {
        "wallmount APU electronics",
    },

    SolarTrackerElectronics = {
        "solar tracker electronics",
    },

    RemoteSignaller = {
        "remote signaller",
    },

    RemoteSignallerAdvanced = {
        "advanced remote signaller",
    },

    SignalTimerElectronics = {
        "signal timer electronics",
    },

    ScreenTimerElectronics = {
        "screen timer electronics",
    },

    BrigTimerElectronics = {
        "brig timer electronics",
    },

    TimerTrigger = {
        "timer trigger",
    },

    SignalTrigger = {
        "signal trigger",
    },

    VoiceTrigger = {
        "voice trigger",
    },

    WeaponPistolCHIMPUpgradeKit = {
        "C.H.I.M.P. handcannon upgrade chip",
    },

    HoloparasiteInjector = {
        "holoparasite injector",
    },

    HoloClownInjector = {
        "holoclown injector",
    },

    MagicalLamp = {
        "magical lamp",
    },

    BoxHoloparasite = {
        "holoparasite box",
    },

    BoxHoloclown = {
        "holoclown box",
    },

    ReinforcementRadio = {
        "syndicate reinforcement radio",
    },

    ReinforcementRadioSyndicate = {
        "syndicate reinforcement radio",
    },

    ReinforcementRadioSyndicateNukeops = {
        "nuclear operative radio",
    },

    ReinforcementRadioSyndicateAncestor = {
        "syndicate genetic ancestor reinforcement radio",
    },

    ReinforcementRadioSyndicateSyndiCat = {
        "syndicat reinforcement radio",
    },

    ReinforcementRadioSyndicateCyborgAssault = {
        "syndicate assault cyborg reinforcement radio",
    },

    SingularityBeacon = {
        "singularity beacon",
    },

    NukeOpsDeclarationOfWar = {
        "war declarator",
    },

    BasePlaceableInstrument = {
        "baseinstrument",
    },

    BasePlaceableInstrumentRotatable = {
        "baseinstrumentrotatable",
    },

    TrumpetInstrument = {
        "trumpet",
    },

    TromboneInstrument = {
        "trombone",
    },

    FrenchHornInstrument = {
        "french horn",
    },

    EuphoniumInstrument = {
        "euphonium",
    },

    MusicalLungInstrument = {
        "musical lung",
    },

    SeashellInstrument = {
        "seashell",
    },

    BirdToyInstrument = {
        "bird whistle",
    },

    PhoneInstrument = {
        "red phone",
    },

    PhoneInstrumentSyndicate = {
        "blood-red phone",
    },

    HelicopterInstrument = {
        "toy helicopter",
    },

    CannedApplauseInstrument = {
        "canned applause",
    },

    GunpetInstrument = {
        "gunpet",
    },

    BikeHornInstrument = {
        "gilded bike horn",
    },

    BananaPhoneInstrument = {
        "banana phone",
    },

    GlockenspielInstrument = {
        "glockenspiel",
    },

    MusicBoxInstrument = {
        "music box",
    },

    XylophoneInstrument = {
        "xylophone",
    },

    MicrophoneInstrument = {
        "microphone",
    },

    SynthesizerInstrument = {
        "synthesizer",
    },

    KalimbaInstrument = {
        "kalimba",
    },

    WoodblockInstrument = {
        "woodblock",
    },

    ReverseCymbalsInstrument = {
        "reverse cymbals",
    },

    SuperSynthesizerInstrument = {
        "super synthesizer",
    },

    ElectricGuitarInstrument = {
        "electric guitar",
    },

    BassGuitarInstrument = {
        "bass guitar",
    },

    RockGuitarInstrument = {
        "rock guitar",
    },

    AcousticGuitarInstrument = {
        "acoustic guitar",
    },

    GuitarlessFretsInstrument = {
        "guitarless frets",
    },

    BanjoInstrument = {
        "banjo",
    },

    ViolinInstrument = {
        "violin",
    },

    ViolaInstrument = {
        "viola",
    },

    CelloInstrument = {
        "cello",
    },

    PianoInstrument = {
        "piano",
    },

    UprightPianoInstrument = {
        "upright piano",
    },

    VibraphoneInstrument = {
        "vibraphone",
    },

    MarimbaInstrument = {
        "marimba",
    },

    ChurchOrganInstrument = {
        "church organ",
    },

    TubaInstrument = {
        "tuba",
    },

    HarpInstrument = {
        "harp",
    },

    TimpaniInstrument = {
        "timpani",
    },

    TaikoInstrument = {
        "taiko",
    },

    ContrabassInstrument = {
        "contrabass",
    },

    MinimoogInstrument = {
        "minimoog",
    },

    TomDrumsInstrument = {
        "tom drums",
    },

    DawInstrument = {
        "digital audio workstation",
    },

    SaxophoneInstrument = {
        "saxophone",
    },

    AccordionInstrument = {
        "accordion",
    },

    HarmonicaInstrument = {
        "harmonica",
    },

    ClarinetInstrument = {
        "clarinet",
    },

    FluteInstrument = {
        "flute",
    },

    RecorderInstrument = {
        "recorder",
    },

    PanFluteInstrument = {
        "pan flute",
    },

    OcarinaInstrument = {
        "ocarina",
    },

    BagpipeInstrument = {
        "bagpipe",
    },

    BackgammonBoard = {
        "backgammon board",
    },

    BackgammonBoardTabletop = {
        "backgammon",
    },

    BaseBoardEntity = {
        "board",
    },

    BaseBoardTabletop = {
        "baseboard",
    },

    CheckerBoard = {
        "checkerboard",
    },

    CheckerBoardTabletop = {
        "checkerboard",
    },

    CheckerPieceWhite = {
        "white checker piece",
    },

    CheckerCrownWhite = {
        "white checker crown",
    },

    CheckerPieceBlack = {
        "black checker piece",
    },

    CheckerCrownBlack = {
        "black checker crown",
    },

    ChessBoard = {
        "chessboard",
    },

    ChessBoardTabletop = {
        "chessboard",
    },

    WhiteKing = {
        "white king",
    },

    WhiteQueen = {
        "white queen",
    },

    WhiteRook = {
        "white rook",
    },

    WhiteBishop = {
        "white bishop",
    },

    WhiteKnight = {
        "white knight",
    },

    WhitePawn = {
        "white pawn",
    },

    BlackKing = {
        "black king",
    },

    BlackQueen = {
        "black queen",
    },

    BlackRook = {
        "black rook",
    },

    BlackBishop = {
        "black bishop",
    },

    BlackKnight = {
        "black knight",
    },

    BlackPawn = {
        "black pawn",
    },

    BaseBattlemap = {
        "battlemap",
    },

    GrassBattlemap = {
        "grass battlemap",
    },

    MoonBattlemap = {
        "moon battlemap",
    },

    SandBattlemap = {
        "sand battlemap",
    },

    SnowBattlemap = {
        "snow battlemap",
    },

    ShipBattlemap = {
        "ship battlemap",
    },

    GrassBoardTabletop = {
        "grass battlemap",
    },

    MoonBoardTabletop = {
        "grass battlemap",
    },

    SandBoardTabletop = {
        "sand battlemap",
    },

    SnowBoardTabletop = {
        "snow battlemap",
    },

    ShipBoardTabletop = {
        "ship battlemap",
    },

    ParchisBoard = {
        "parchís board",
    },

    ParchisBoardTabletop = {
        "parchís",
    },

    RedTabletopPiece = {
        "red piece",
    },

    GreenTabletopPiece = {
        "green piece",
    },

    YellowTabletopPiece = {
        "yellow piece",
    },

    BlueTabletopPiece = {
        "blue piece",
    },

    WhiteTabletopPiece = {
        "white piece",
    },

    BlackTabletopPiece = {
        "black piece",
    },

    SheetGlassBase = {
        "glass",
    },

    SheetRGlass = {
        "reinforced glass",
    },

    SheetRGlass1 = {
        "reinforced glass",
    },

    SheetPGlass = {
        "plasma glass",
    },

    SheetPGlass1 = {
        "plasma glass",
    },

    SheetRPGlass = {
        "reinforced plasma glass",
    },

    SheetRPGlass1 = {
        "reinforced plasma glass",
    },

    SheetUGlass = {
        "uranium glass",
    },

    SheetUGlass1 = {
        "uranium glass",
    },

    SheetRUGlass = {
        "reinforced uranium glass",
    },

    SheetRUGlass1 = {
        "reinforced uranium glass",
    },

    SheetClockworkGlass = {
        "clockwork glass",
    },

    SheetClockworkGlass1 = {
        "clockwork glass",
    },

    SheetSteel = {
        "steel",
    },

    SheetSteel10 = {
        "steel",
    },

    SheetSteel1 = {
        "steel",
    },

    SheetBrass = {
        "brass",
    },

    SheetBrass10 = {
        "brass",
    },

    SheetBrass1 = {
        "brass",
    },

    SheetPlasteel = {
        "plasteel",
    },

    SheetPlasteel10 = {
        "plasteel",
    },

    SheetPlasteel1 = {
        "plasteel",
    },

    SheetPaper = {
        "paper",
    },

    SheetPaper1 = {
        "paper",
    },

    SheetPlasma = {
        "plasma",
    },

    SheetPlasma1 = {
        "plasma",
    },

    SheetPlastic = {
        "plastic",
    },

    SheetPlastic10 = {
        "plastic",
    },

    SheetPlastic1 = {
        "plastic",
    },

    SheetUranium = {
        "uranium",
    },

    SheetUranium1 = {
        "uranium",
    },

    MaterialSheetMeat = {
        "meat sheet",
    },

    CargoPallet = {
        "cargo pallet",
    },

    CargoPalletSell = {
        "cargo selling pallet",
    },

    CargoPalletBuy = {
        "cargo buying pallet",
    },

    Bible = {
        "bible",
    },

    BibleNecronomicon = {
        "necronomicon",
    },

    ActionBibleSummon = {
        "Summon familiar",
    },

    Urn = {
        "urn",
    },

    ChemBag = {
        "chemistry bag",
    },

    ForensicPad = {
        "forensic pad",
    },

    LeavesCannabis = {
        "cannabis leaves",
    },

    LeavesCannabisDried = {
        "dried cannabis leaves",
    },

    GroundCannabis = {
        "ground cannabis",
    },

    LeavesCannabisRainbow = {
        "rainbow cannabis leaves",
    },

    LeavesCannabisRainbowDried = {
        "dried rainbow cannabis leaves",
    },

    GroundCannabisRainbow = {
        "ground rainbow cannabis",
    },

    LeavesTobacco = {
        "tobacco leaves",
    },

    LeavesTobaccoDried = {
        "dried tobacco leaves",
    },

    GroundTobacco = {
        "ground tobacco",
    },

    WheatSeeds = {
        "packet of wheat seeds",
    },

    OatSeeds = {
        "packet of oat seeds",
    },

    BananaSeeds = {
        "packet of banana seeds",
    },

    MimanaSeeds = {
        "packet of mimana seeds",
    },

    CarrotSeeds = {
        "packet of carrot seeds",
    },

    CabbageSeeds = {
        "packet of cabbage seeds",
    },

    GarlicSeeds = {
        "packet of garlic seeds",
    },

    LaughinPeaSeeds = {
        "packet of laughin' pea pods",
    },

    LemonSeeds = {
        "packet of lemon seeds",
    },

    LemoonSeeds = {
        "packet of lemoon seeds",
    },

    LimeSeeds = {
        "packet of lime seeds",
    },

    OrangeSeeds = {
        "packet of orange seeds",
    },

    PineappleSeeds = {
        "packet of pineapple seeds",
    },

    PotatoSeeds = {
        "packet of potato seeds",
    },

    SugarcaneSeeds = {
        "packet of sugarcane seeds",
    },

    PapercaneSeeds = {
        "packet of papercane seeds",
    },

    TowercapSeeds = {
        "packet of tower cap spores",
    },

    SteelcapSeeds = {
        "packet of steel cap spores",
    },

    TomatoSeeds = {
        "packet of tomato seeds",
    },

    BlueTomatoSeeds = {
        "packet of blue tomato seeds",
    },

    BloodTomatoSeeds = {
        "packet of blood tomato seeds",
    },

    KillerTomatoSeeds = {
        "packet of killer tomato seeds",
    },

    EggplantSeeds = {
        "packet of eggplant seeds",
    },

    AppleSeeds = {
        "packet of apple seeds",
    },

    GoldenAppleSeeds = {
        "packet of golden apple seeds",
    },

    CornSeeds = {
        "packet of corn seeds",
    },

    ChanterelleSeeds = {
        "packet of chanterelle spores",
    },

    EggySeeds = {
        "packet of egg-plant seeds",
    },

    TobaccoSeeds = {
        "packet of tobacco seeds",
    },

    CannabisSeeds = {
        "packet of cannabis seeds",
    },

    RainbowCannabisSeeds = {
        "packet of rainbow cannabis seeds",
    },

    NettleSeeds = {
        "packet of nettle seeds",
    },

    DeathNettleSeeds = {
        "packet of death nettle seeds",
    },

    ChiliSeeds = {
        "packet of chili seeds",
    },

    ChillySeeds = {
        "packet of chilly seeds",
    },

    AloeSeeds = {
        "packet of aloe seeds",
    },

    PoppySeeds = {
        "packet of poppy seeds",
    },

    LilySeeds = {
        "packet of lily seeds",
    },

    LingzhiSeeds = {
        "packet of lingzhi spores",
    },

    AmbrosiaVulgarisSeeds = {
        "packet of ambrosia vulgaris seeds",
    },

    AmbrosiaDeusSeeds = {
        "packet of ambrosia deus seeds",
    },

    GalaxythistleSeeds = {
        "packet of galaxythistle seeds",
    },

    GlasstleSeeds = {
        "packet of glasstle seeds",
    },

    FlyAmanitaSeeds = {
        "packet of fly amanita spores",
    },

    GatfruitSeeds = {
        "packet of gatfruit seeds",
    },

    OnionSeeds = {
        "packet of onion seeds",
    },

    RiceSeeds = {
        "packet of rice seeds",
    },

    SoybeanSeeds = {
        "packet of soybean seeds",
    },

    SpacemansTrumpetSeeds = {
        "packet of spaceman's trumpet seeds",
    },

    KoibeanSeeds = {
        "packet of koibean seeds",
    },

    OnionRedSeeds = {
        "packet of red onion seeds",
    },

    WatermelonSeeds = {
        "packet of watermelon seeds",
    },

    GrapeSeeds = {
        "packet of grape seeds",
    },

    CocoaSeeds = {
        "packet of cocoa seeds",
    },

    BerrySeeds = {
        "packet of berry seeds",
    },

    BungoSeeds = {
        "packet of bungo seeds",
    },

    PeaSeeds = {
        "packet of pea pods",
    },

    PumpkinSeeds = {
        "packet of pumpkin seeds",
    },

    CottonSeeds = {
        "packet of cotton seeds",
    },

    PyrottonSeeds = {
        "packet of pyrotton seeds",
    },

    RealCapfruitSeeds = {
        "packet of capfruit seeds",
    },

    PlantBGoneSpray = {
        "Plant-B-Gone",
    },

    WeedSpray = {
        "weed spray",
    },

    PestSpray = {
        "pest spray",
    },

    HydroponicsToolMiniHoe = {
        "mini hoe",
    },

    HydroponicsToolClippers = {
        "plant clippers",
    },

    HydroponicsToolScythe = {
        "scythe",
    },

    HydroponicsToolHatchet = {
        "hatchet",
    },

    HydroponicsToolSpade = {
        "spade",
    },

    PlantBag = {
        "plant bag",
    },

    MopItem = {
        "mop",
    },

    AdvMopItem = {
        "advanced mop",
    },

    WetFloorSign = {
        "wet floor sign",
    },

    Plunger = {
        "plunger",
    },

    GoldenPlunger = {
        "golden plunger",
    },

    RagItem = {
        "damp rag",
    },

    Soap = {
        "soap",
    },

    SoapNT = {
        "soap",
    },

    SoapDeluxe = {
        "soap",
    },

    SoapSyndie = {
        "soap",
    },

    SoapletSyndie = {
        "soaplet",
    },

    SoapHomemade = {
        "soap",
    },

    SoapOmega = {
        "omega soap",
    },

    SprayBottle = {
        "spray bottle",
    },

    MegaSprayBottle = {
        "mega spray bottle",
    },

    SprayBottleWater = {
        "spray bottle",
    },

    SprayBottleSpaceCleaner = {
        "space cleaner",
    },

    Vapor = {
        "vapor",
    },

    TrashBag = {
        "trash bag",
    },

    TrashBagBlue = {
        "trash bag",
    },

    BagOfSummoningGarbage = {
        "spell of all-consuming cleanliness",
    },

    FoodCartBase = {
        "food cart",
    },

    FoodCartHot = {
        "hot food cart",
    },

    FoodCartCold = {
        "cold food cart",
    },

    BooksBag = {
        "books bag",
    },

    MechEquipmentGrabber = {
        "hydraulic clamp",
    },

    MechEquipmentGrabberSmall = {
        "small hydraulic clamp",
    },

    MechEquipmentHorn = {
        "mech horn",
    },

    MechRipley = {
        "Ripley APLU",
    },

    MechHonker = {
        "H.O.N.K.",
    },

    MechHamtr = {
        "HAMTR",
    },

    MechVim = {
        "Vim",
    },

    RipleyHarness = {
        "ripley harness",
    },

    RipleyLArm = {
        "ripley left arm",
    },

    RipleyLLeg = {
        "ripley left leg",
    },

    RipleyRLeg = {
        "ripley right leg",
    },

    RipleyRArm = {
        "ripley right arm",
    },

    RipleyChassis = {
        "ripley chassis",
    },

    HonkerHarness = {
        "H.O.N.K. harness",
    },

    HonkerLArm = {
        "H.O.N.K. left arm",
    },

    HonkerLLeg = {
        "H.O.N.K. left leg",
    },

    HonkerRLeg = {
        "H.O.N.K. right leg",
    },

    HonkerRArm = {
        "H.O.N.K. right arm",
    },

    HonkerChassis = {
        "H.O.N.K. chassis",
    },

    HamtrHarness = {
        "HAMTR harness",
    },

    HamtrLArm = {
        "HAMTR left arm",
    },

    HamtrLLeg = {
        "HAMTR left leg",
    },

    HamtrRLeg = {
        "HAMTR right leg",
    },

    HamtrRArm = {
        "HAMTR right arm",
    },

    HamtrChassis = {
        "HAMTR chassis",
    },

    VimHarness = {
        "vim harness",
    },

    VimChassis = {
        "vim chassis",
    },

    BaseDefibrillator = {
        "defibrillator",
    },

    DiseaseSwab = {
        "sterile swab",
    },

    BoxMouthSwab = {
        "sterile swab dispenser",
    },

    Vaccine = {
        "vaccine",
    },

    HandheldCrewMonitor = {
        "handheld crew monitor",
    },

    Ointment = {
        "ointment",
    },

    RegenerativeMesh = {
        "regenerative mesh",
    },

    Brutepack = {
        "bruise pack",
    },

    MedicatedSuture = {
        "medicated suture",
    },

    Bloodpack = {
        "blood pack",
    },

    Tourniquet = {
        "tourniquet",
    },

    Gauze = {
        "roll of gauze",
    },

    AloeCream = {
        "aloe cream",
    },

    HealingToolbox = {
        "healing toolbox",
    },

    PillDexalin = {
        "pill",
    },

    PillCanisterDexalin = {
        "pill canister",
    },

    PillDylovene = {
        "pill",
    },

    PillCanisterDylovene = {
        "pill canister",
    },

    PillHyronalin = {
        "pill",
    },

    PillCanisterHyronalin = {
        "pill canister",
    },

    PillPotassiumIodide = {
        "pill",
    },

    PillCanisterPotassiumIodide = {
        "pill canister",
    },

    PillIron = {
        "pill",
    },

    PillCopper = {
        "pill",
    },

    PillCanisterIron = {
        "pill canister",
    },

    PillCanisterCopper = {
        "pill canister",
    },

    PillKelotane = {
        "pill",
    },

    PillCanisterKelotane = {
        "pill canister",
    },

    PillDermaline = {
        "pill",
    },

    PillCanisterDermaline = {
        "pill canister",
    },

    PillSpaceDrugs = {
        "space mirage",
    },

    PillTricordrazine = {
        "pill",
    },

    PillCanisterTricordrazine = {
        "pill canister",
    },

    PillBicaridine = {
        "pill",
    },

    PillCanisterBicaridine = {
        "pill canister",
    },

    PillCharcoal = {
        "pill",
    },

    PillCanisterCharcoal = {
        "pill canister",
    },

    PillRomerol = {
        "romerol pill",
    },

    PillAmbuzol = {
        "ambuzol pill",
    },

    PillAmbuzolPlus = {
        "ambuzol plus pill",
    },

    SyringeEphedrine = {
        "ephedrine syringe",
    },

    SyringeInaprovaline = {
        "inaprovaline syringe",
    },

    SyringeTranexamicAcid = {
        "tranexamic acid syringe",
    },

    SyringeBicaridine = {
        "bicaridine syringe",
    },

    SyringeDermaline = {
        "dermaline syringe",
    },

    SyringeHyronalin = {
        "hyronalin syringe",
    },

    SyringeIpecac = {
        "ipecac syringe",
    },

    SyringeAmbuzol = {
        "ambuzol syringe",
    },

    SyringeSigynate = {
        "sigynate syringe",
    },

    SyringeEthylredoxrazine = {
        "ethylredoxrazine syringe",
    },

    SyringePhalanximine = {
        "phalanximine syringe",
    },

    SyringeSaline = {
        "saline syringe",
    },

    SyringeRomerol = {
        "romerol syringe",
    },

    SyringeStimulants = {
        "hyperzine syringe",
    },

    HandheldHealthAnalyzerUnpowered = {
        "health analyzer",
    },

    Hypospray = {
        "hypospray",
    },

    SyndiHypo = {
        "gorlex hypospray",
    },

    BorgHypo = {
        "borghypo",
    },

    AdminHypo = {
        "experimental hypospray",
    },

    ChemicalMedipen = {
        "chemical medipen",
    },

    EmergencyMedipen = {
        "emergency medipen",
    },

    AntiPoisonMedipen = {
        "poison auto-injector",
    },

    BruteAutoInjector = {
        "brute auto-injector",
    },

    BurnAutoInjector = {
        "burn auto-injector",
    },

    RadAutoInjector = {
        "rad auto-injector",
    },

    SpaceMedipen = {
        "space medipen",
    },

    Stimpack = {
        "hyperzine injector",
    },

    StimpackMini = {
        "hyperzine microinjector",
    },

    CombatMedipen = {
        "combat medipen",
    },

    Hypopen = {
        "pen",
    },

    HypopenBox = {
        "hypopen box",
    },

    Medkit = {
        "first aid kit",
    },

    MedkitBurn = {
        "burn treatment kit",
    },

    MedkitToxin = {
        "toxin treatment kit",
    },

    MedkitO2 = {
        "oxygen deprivation treatment kit",
    },

    MedkitBrute = {
        "brute trauma treatment kit",
    },

    MedkitAdvanced = {
        "advanced first aid kit",
    },

    MedkitRadiation = {
        "radiation treatment kit",
    },

    MedkitCombat = {
        "combat medical kit",
    },

    BodyBag = {
        "body bag",
    },

    BodyBagFolded = {
        "body bag",
    },

    Ash = {
        "ash",
    },

    Ectoplasm = {
        "ectoplasm",
    },

    StrangePill = {
        "strange pill",
    },

    Cautery = {
        "cautery",
    },

    Drill = {
        "drill",
    },

    Scalpel = {
        "scalpel",
    },

    ScalpelShiv = {
        "shiv",
    },

    ScalpelAdvanced = {
        "advanced scalpel",
    },

    ScalpelLaser = {
        "laser scalpel",
    },

    Retractor = {
        "retractor",
    },

    Hemostat = {
        "hemostat",
    },

    Saw = {
        "metal saw",
    },

    SawImprov = {
        "choppa",
    },

    SawElectric = {
        "circular saw",
    },

    SawAdvanced = {
        "advanced circular saw",
    },

    AnomalyScanner = {
        "anomaly scanner",
    },

    AnomalyLocatorUnpowered = {
        "anomaly locator",
    },

    AnomalyLocatorWideUnpowered = {
        "wide-spectrum anomaly locator",
    },

    WeaponGauntletGorilla = {
        "G.O.R.I.L.L.A. gauntlet",
    },

    ResearchDisk = {
        "research point disk (1000)",
    },

    ResearchDisk5000 = {
        "research point disk (5000)",
    },

    ResearchDisk10000 = {
        "research point disk (10000)",
    },

    ResearchDiskDebug = {
        "research point disk",
    },

    TechnologyDisk = {
        "technology disk",
    },

    BaseBorgModule = {
        "borg module",
    },

    ActionBorgSwapModule = {
        "Swap Module",
    },

    BorgModuleCable = {
        "cable cyborg module",
    },

    BorgModuleFireExtinguisher = {
        "fire extinguisher cyborg module",
    },

    BorgModuleGPS = {
        "GPS cyborg module",
    },

    BorgModuleRadiationDetection = {
        "radiation detection cyborg module",
    },

    BorgModuleTool = {
        "tool cyborg module",
    },

    BorgModuleAppraisal = {
        "appraisal cyborg module",
    },

    BorgModuleMining = {
        "mining cyborg module",
    },

    BorgModuleGrapplingGun = {
        "grappling gun cyborg module",
    },

    BorgModuleAdvancedTool = {
        "advanced tool cyborg module",
    },

    BorgModuleConstruction = {
        "construction cyborg module",
    },

    BorgModuleRCD = {
        "RCD cyborg module",
    },

    BorgModuleLightReplacer = {
        "light replacer cyborg module",
    },

    BorgModuleCleaning = {
        "cleaning cyborg module",
    },

    BorgModuleAdvancedCleaning = {
        "advanced cleaning cyborg module",
    },

    BorgModuleDiagnosis = {
        "diagnosis cyborg module",
    },

    BorgModuleTreatment = {
        "treatment cyborg module",
    },

    BorgModuleDefibrillator = {
        "defibrillator cyborg module",
    },

    BorgModuleAdvancedTreatment = {
        "advanced treatment cyborg module",
    },

    BorgModuleArtifact = {
        "artifact cyborg module",
    },

    BorgModuleAnomaly = {
        "anomaly cyborg module",
    },

    BorgModuleService = {
        "service cyborg module",
    },

    BorgModuleMusique = {
        "musique cyborg module",
    },

    BorgModuleGardening = {
        "gardening cyborg module",
    },

    BorgModuleHarvesting = {
        "harvesting cyborg module",
    },

    BorgModuleClowning = {
        "clowning cyborg module",
    },

    BorgModuleSyndicateWeapon = {
        "weapon cyborg module",
    },

    BorgModuleOperative = {
        "operative cyborg module",
    },

    BorgModuleEsword = {
        "energy sword cyborg module",
    },

    BorgModuleL6C = {
        "L6C ROW cyborg module",
    },

    BorgModuleMartyr = {
        "martyr cyborg module",
    },

    LeftArmBorgEngineer = {
        "engineer cyborg left arm",
    },

    RightArmBorgEngineer = {
        "engineer cyborg right arm",
    },

    LeftLegBorgEngineer = {
        "engineer cyborg left leg",
    },

    RightLegBorgEngineer = {
        "engineer cyborg right leg",
    },

    HeadBorgEngineer = {
        "engineer cyborg head",
    },

    TorsoBorgEngineer = {
        "engineer cyborg torso",
    },

    LeftLegBorgJanitor = {
        "janitor cyborg left leg",
    },

    RightLegBorgJanitor = {
        "janitor cyborg right leg",
    },

    HeadBorgJanitor = {
        "janitor cyborg head",
    },

    TorsoBorgJanitor = {
        "janitor cyborg torso",
    },

    LeftArmBorgMedical = {
        "medical cyborg left arm",
    },

    RightArmBorgMedical = {
        "medical cyborg right arm",
    },

    LeftLegBorgMedical = {
        "medical cyborg left leg",
    },

    RightLegBorgMedical = {
        "medical cyborg right leg",
    },

    HeadBorgMedical = {
        "medical cyborg head",
    },

    TorsoBorgMedical = {
        "medical cyborg torso",
    },

    LeftArmBorgMining = {
        "mining cyborg left arm",
    },

    RightArmBorgMining = {
        "mining cyborg right arm",
    },

    LeftLegBorgMining = {
        "mining cyborg left leg",
    },

    RightLegBorgMining = {
        "mining cyborg right leg",
    },

    HeadBorgMining = {
        "mining cyborg head",
    },

    TorsoBorgMining = {
        "mining cyborg torso",
    },

    LeftArmBorgService = {
        "service cyborg left arm",
    },

    RightArmBorgService = {
        "service cyborg right arm",
    },

    LeftLegBorgService = {
        "service cyborg left leg",
    },

    RightLegBorgService = {
        "service cyborg right leg",
    },

    HeadBorgService = {
        "service cyborg head",
    },

    TorsoBorgService = {
        "service cyborg torso",
    },

    CyborgEndoskeleton = {
        "cyborg endoskeleton",
    },

    MMI = {
        "man-machine interface",
    },

    PositronicBrain = {
        "positronic brain",
    },

    OreBag = {
        "ore bag",
    },

    OreBagOfHolding = {
        "ore bag of holding",
    },

    DeployableBarrier = {
        "deployable barrier",
    },

    EvidenceMarker = {
        "evidence marker",
    },

    BoxEvidenceMarkers = {
        "evidence marker box",
    },

    TargetHuman = {
        "human target",
    },

    TargetSyndicate = {
        "syndicate target",
    },

    TargetClown = {
        "clown target",
    },

    TargetStrange = {
        "strange target",
    },

    BarberScissors = {
        "barber scissors",
    },

    BaseVendingMachineRestock = {
        "vending machine restock box",
    },

    VendingMachineRestockBooze = {
        "Booze-O-Mat restock box",
    },

    VendingMachineRestockChang = {
        "Mr. Chang's restock box",
    },

    VendingMachineRestockChefvend = {
        "ChefVend restock box",
    },

    VendingMachineRestockCondimentStation = {
        "condiment station restock box",
    },

    VendingMachineRestockClothes = {
        "wardrobe restock box",
    },

    VendingMachineRestockCostumes = {
        "AutoDrobe restock box",
    },

    VendingMachineRestockDinnerware = {
        "Plasteel Chef's restock box",
    },

    VendingMachineRestockDiscountDans = {
        "Discount Dan's restock box",
    },

    VendingMachineRestockDonut = {
        "Robust Donuts restock box",
    },

    VendingMachineRestockEngineering = {
        "EngiVend restock box",
    },

    VendingMachineRestockGames = {
        "Good Clean Fun restock box",
    },

    VendingMachineRestockGetmoreChocolateCorp = {
        "GetMore Chocolate restock box",
    },

    VendingMachineRestockHotDrinks = {
        "Solar's Best restock box",
    },

    VendingMachineRestockMedical = {
        "NanoMed restock box",
    },

    VendingMachineRestockNutriMax = {
        "NutriMax restock box",
    },

    VendingMachineRestockPTech = {
        "PTech restock box",
    },

    VendingMachineRestockRobustSoftdrinks = {
        "beverage restock box",
    },

    VendingMachineRestockSecTech = {
        "SecTech restock box",
    },

    VendingMachineRestockSalvageEquipment = {
        "Salvage Vendor restock box",
    },

    VendingMachineRestockSeeds = {
        "MegaSeed restock box",
    },

    VendingMachineRestockSmokes = {
        "ShadyCigs restock box",
    },

    VendingMachineRestockTankDispenser = {
        "tank dispenser restock box",
    },

    VendingMachineRestockVendomat = {
        "Vendomat restock box",
    },

    VendingMachineRestockRobotics = {
        "Robotech Deluxe restock box",
    },

    VendingMachineRestockHappyHonk = {
        "Happy Honk restock box",
    },

    VendingMachineRestockChemVend = {
        "ChemVend restock box",
    },

    CrateArtifactContainer = {
        "artifact container",
    },

    BaseXenoArtifactItem = {
        "alien artifact",
    },

    ArtifactFragment = {
        "artifact fragment",
    },

    NodeScanner = {
        "node scanner",
    },

    BaseXenoArtifact = {
        "alien artifact",
    },

    FireBomb = {
        "fire bomb",
    },

    FireBombEmpty = {
        "fire bomb",
    },

    HotPotato = {
        "hot potato",
    },

    TrashBananaPeelExplosive = {
        "banana peel",
    },

    TrashBananaPeelExplosiveUnarmed = {
        "banana",
    },

    PenExploding = {
        "pen",
    },

    PenExplodingBox = {
        "exploding pen box",
    },

    PipeBomb = {
        "pipe bomb",
    },

    PipeBombGunpowder = {
        "pipe bomb",
    },

    PipeBombCable = {
        "pipe bomb",
    },

    C4 = {
        "composition C-4",
    },

    SeismicCharge = {
        "seismic charge",
    },

    SpiderCharge = {
        "spider clan charge",
    },

    WeaponFlareGun = {
        "flare gun",
    },

    WeaponImprovisedPneumaticCannon = {
        "improvised pneumatic cannon",
    },

    LauncherCreamPie = {
        "pie cannon",
    },

    WeaponTurretSyndicateBroken = {
        "ballistic turret (broken)",
    },

    BaseWeaponTurret = {
        "ballistic turret",
    },

    WeaponTurretSyndicateDisposable = {
        "disposable ballistic turret",
    },

    WeaponTurretXeno = {
        "xeno turret",
    },

    ArmBlade = {
        "arm blade",
    },

    BaseBallBat = {
        "baseball bat",
    },

    IncompleteBaseBallBat = {
        "incomplete baseball bat",
    },

    WeaponMeleeKnockbackStick = {
        "knockback stick",
    },

    Cane = {
        "cane",
    },

    CaneBlade = {
        "cane blade",
    },

    Chainsaw = {
        "chainsaw",
    },

    RitualDagger = {
        "ritual dagger",
    },

    EldritchBlade = {
        "eldritch blade",
    },

    UnholyHalberd = {
        "unholy halberd",
    },

    EnergySword = {
        "energy sword",
    },

    EnergyDaggerLoud = {
        "energy dagger",
    },

    EnergyDagger = {
        "pen",
    },

    EnergyDaggerBox = {
        "e-dagger box",
    },

    EnergyCutlass = {
        "energy cutlass",
    },

    EnergySwordDouble = {
        "double-bladed energy sword",
    },

    FireAxe = {
        "fireaxe",
    },

    FireAxeFlaming = {
        "fire axe",
    },

    Gohei = {
        "gohei",
    },

    KitchenKnife = {
        "kitchen knife",
    },

    ButchCleaver = {
        "butcher's cleaver",
    },

    CombatKnife = {
        "combat knife",
    },

    SurvivalKnife = {
        "survival knife",
    },

    KukriKnife = {
        "kukri knife",
    },

    BladedFlatcapGrey = {
        "grey flatcap",
    },

    BladedFlatcapBrown = {
        "brown flatcap",
    },

    Shiv = {
        "shiv",
    },

    ReinforcedShiv = {
        "reinforced shiv",
    },

    PlasmaShiv = {
        "plasma shiv",
    },

    UraniumShiv = {
        "uranium shiv",
    },

    ThrowingKnife = {
        "throwing knife",
    },

    Pickaxe = {
        "pickaxe",
    },

    MiningDrill = {
        "mining drill",
    },

    MiningDrillDiamond = {
        "diamond tipped mining drill",
    },

    BaseWeaponCrusher = {
        "crusher",
    },

    WeaponCrusherDagger = {
        "crusher dagger",
    },

    WeaponCrusherGlaive = {
        "crusher glaive",
    },

    WeaponMeleeNeedle = {
        "official security anti-inflatable armament",
    },

    Sledgehammer = {
        "sledgehammer",
    },

    Spear = {
        "spear",
    },

    SpearReinforced = {
        "reinforced spear",
    },

    SpearPlasma = {
        "plasma spear",
    },

    SpearUranium = {
        "uranium spear",
    },

    SpearBone = {
        "bone spear",
    },

    Stunprod = {
        "stun prod",
    },

    CaptainSabre = {
        "captain's sabre",
    },

    Katana = {
        "katana",
    },

    EnergyKatana = {
        "energy katana",
    },

    Machete = {
        "machete",
    },

    Claymore = {
        "claymore",
    },

    Cutlass = {
        "cutlass",
    },

    Throngler = {
        "Throngler",
    },

    WeaponMeleeToolboxRobust = {
        "robust toolbox",
    },

    WhiteCane = {
        "white cane",
    },

    Bola = {
        "bola",
    },

    ClusterBang = {
        "clusterbang",
    },

    ClusterBangFull = {
        "clusterbang",
    },

    ClusterGrenade = {
        "clustergrenade",
    },

    ClusterBananaPeel = {
        "cluster banana peel",
    },

    GrenadeStinger = {
        "stinger grenade",
    },

    GrenadeIncendiary = {
        "incendiary grenade",
    },

    GrenadeShrapnel = {
        "shrapnel grenade",
    },

    SlipocalypseClusterSoap = {
        "slipocalypse clustersoap",
    },

    GrenadeFoamDart = {
        "foam dart grenade",
    },

    ExGrenade = {
        "explosive grenade",
    },

    GrenadeFlashBang = {
        "flashbang",
    },

    SyndieMiniBomb = {
        "syndicate minibomb",
    },

    SelfDestructSeq = {
        "self destruct",
    },

    SupermatterGrenade = {
        "supermatter grenade",
    },

    WhiteholeGrenade = {
        "whitehole grenade",
    },

    NuclearGrenade = {
        "the nuclear option",
    },

    ModularGrenade = {
        "modular grenade",
    },

    EmpGrenade = {
        "EMP grenade",
    },

    HolyHandGrenade = {
        "holy hand grenade",
    },

    SmokeGrenade = {
        "smoke grenade",
    },

    CleanerGrenade = {
        "cleanade",
    },

    TearGasGrenade = {
        "tear gas grenade",
    },

    MetalFoamGrenade = {
        "metal foam grenade",
    },

    GrenadeDummy = {
        "trick grenade",
    },

    SyndieTrickyBomb = {
        "syndicate trickybomb",
    },

    ThrowingStar = {
        "throwing star",
    },

    ThrowingStarNinja = {
        "ninja throwing star",
    },

    FoodBagel = {
        "bagel",
    },

    FoodBagelPoppy = {
        "poppy seed bagel",
    },

    FoodBreadVolcanic = {
        "volcanic loaf",
    },

    FoodBreadVolcanicSlice = {
        "volcanic slice",
    },

    FoodBreadBanana = {
        "banana bread",
    },

    FoodBreadBananaSlice = {
        "banana bread slice",
    },

    FoodBreadCorn = {
        "cornbread",
    },

    FoodBreadCornSlice = {
        "cornbread slice",
    },

    FoodBreadCreamcheese = {
        "cream cheese bread",
    },

    FoodBreadCreamcheeseSlice = {
        "cream cheese bread slice",
    },

    FoodBreadMeat = {
        "meat bread",
    },

    FoodBreadMeatSlice = {
        "meat bread slice",
    },

    FoodBreadMimana = {
        "mimana bread",
    },

    FoodBreadMimanaSlice = {
        "mimana bread slice",
    },

    FoodBreadPlain = {
        "bread",
    },

    FoodBreadPlainSlice = {
        "bread slice",
    },

    FoodBreadSausage = {
        "sausage bread",
    },

    FoodBreadSausageSlice = {
        "sausage bread slice",
    },

    FoodBreadMeatSpider = {
        "spider meat bread",
    },

    FoodBreadMeatSpiderSlice = {
        "spider meat bread slice",
    },

    FoodBreadTofu = {
        "tofu bread",
    },

    FoodBreadTofuSlice = {
        "tofu bread slice",
    },

    FoodBreadMeatXeno = {
        "xeno meat bread",
    },

    FoodBreadMeatXenoSlice = {
        "xeno meat bread slice",
    },

    FoodBreadBaguette = {
        "baguette",
    },

    FoodBreadBaguetteSlice = {
        "crostini",
    },

    FoodBreadButteredToast = {
        "buttered toast",
    },

    FoodBreadFrenchToast = {
        "french toast",
    },

    FoodBreadGarlicSlice = {
        "garlic bread",
    },

    FoodBreadJellySlice = {
        "jelly toast",
    },

    FoodBreadMoldySlice = {
        "moldy bread slice",
    },

    FoodBreadTwoSlice = {
        "two slice",
    },

    MobBreadDog = {
        "bread dog",
    },

    FoodCakeBlueberry = {
        "blueberry cake",
    },

    FoodCakeBlueberrySlice = {
        "blueberry slice",
    },

    FoodCakePlain = {
        "cake",
    },

    FoodCakePlainSlice = {
        "slice of cake",
    },

    FoodCakeCarrot = {
        "carrot cake",
    },

    FoodCakeCarrotSlice = {
        "slice of carrot cake",
    },

    FoodCakeBrain = {
        "brain cake",
    },

    FoodCakeBrainSlice = {
        "slice of brain cake",
    },

    FoodCakeCheese = {
        "cheese cake",
    },

    FoodCakeCheeseSlice = {
        "slice of cheese cake",
    },

    FoodCakeOrange = {
        "orange cake",
    },

    FoodCakeOrangeSlice = {
        "slice of orange cake",
    },

    FoodCakeLime = {
        "lime cake",
    },

    FoodCakeLimeSlice = {
        "slice of lime cake",
    },

    FoodCakeLemon = {
        "lemon cake",
    },

    FoodCakeLemonSlice = {
        "slice of lemon cake",
    },

    FoodCakeLemoon = {
        "lemoon cake",
    },

    FoodCakeLemoonSlice = {
        "shard of lemoon cake",
    },

    FoodCakeChocolate = {
        "chocolate cake",
    },

    FoodCakeChocolateSlice = {
        "slice of chocolate cake",
    },

    FoodCakeApple = {
        "apple cake",
    },

    FoodCakeAppleSlice = {
        "slice of apple cake",
    },

    FoodCakeSlime = {
        "slime cake",
    },

    FoodCakeSlimeSlice = {
        "slice of slime cake",
    },

    FoodCakePumpkin = {
        "pumpkin-spice cake",
    },

    FoodCakePumpkinSlice = {
        "slice of pumpkin-spice cake",
    },

    FoodCakeChristmas = {
        "christmas cake",
    },

    FoodCakeChristmasSlice = {
        "slice of christmas cake",
    },

    FoodCakeBirthday = {
        "birthday cake",
    },

    FoodCakeBirthdaySlice = {
        "slice of birthday cake",
    },

    FoodCakeVanilla = {
        "vanilla cake",
    },

    FoodCakeVanillaSlice = {
        "slice of vanilla cake",
    },

    FoodCakeClown = {
        "clown cake",
    },

    FoodCakeClownSlice = {
        "slice of clown cake",
    },

    FoodCakeSpaceman = {
        "spaceman's cake",
    },

    FoodCakeSpacemanSlice = {
        "slice of spaceman's cake",
    },

    MobCatCake = {
        "cak",
    },

    FoodCakeSuppermatter = {
        "suppermatter",
    },

    FoodCakeSuppermatterSlice = {
        "suppermatter shard",
    },

    FoodDonkpocket = {
        "donk-pocket",
    },

    FoodDonkpocketWarm = {
        "warm donk-pocket",
    },

    FoodDonkpocketDank = {
        "dank-pocket",
    },

    FoodDonkpocketDankWarm = {
        "warm dank-pocket",
    },

    FoodDonkpocketSpicy = {
        "spicy-pocket",
    },

    FoodDonkpocketSpicyWarm = {
        "warm spicy-pocket",
    },

    FoodDonkpocketTeriyaki = {
        "teriyaki-pocket",
    },

    FoodDonkpocketTeriyakiWarm = {
        "warm teriyaki-pocket",
    },

    FoodDonkpocketPizza = {
        "pizza-pocket",
    },

    FoodDonkpocketPizzaWarm = {
        "warm pizza-pocket",
    },

    FoodDonkpocketHonk = {
        "honk-pocket",
    },

    FoodDonkpocketHonkWarm = {
        "warm honk-pocket",
    },

    FoodDonkpocketBerry = {
        "berry-pocket",
    },

    FoodDonkpocketBerryWarm = {
        "warm berry-pocket",
    },

    FoodDonkpocketStonk = {
        "stonk-pocket",
    },

    FoodDonkpocketStonkWarm = {
        "warm stonk-pocket",
    },

    FoodDonkpocketCarp = {
        "carp-pocket",
    },

    FoodDonkpocketCarpWarm = {
        "warm carp-pocket",
    },

    FoodDonkpocketDink = {
        "dink-pocket",
    },

    FoodDonutPlain = {
        "plain donut",
    },

    FoodDonutJellyPlain = {
        "plain jelly-donut",
    },

    FoodDonutHomer = {
        "donut",
    },

    FoodDonutChaos = {
        "chaos donut",
    },

    FoodDonutMeat = {
        "meat donut",
    },

    FoodDonutPink = {
        "pink donut",
    },

    FoodDonutSpaceman = {
        "spaceman's donut",
    },

    FoodDonutApple = {
        "apple donut",
    },

    FoodDonutCaramel = {
        "caramel donut",
    },

    FoodDonutChocolate = {
        "chocolate donut",
    },

    FoodDonutBlumpkin = {
        "blorbo donut",
    },

    FoodDonutBungo = {
        "bungo donut",
    },

    FoodDonut = {
        "matcha donut",
    },

    FoodDonutSweetpea = {
        "sweet pea donut",
    },

    FoodDonutJellyHomer = {
        "jelly-donut",
    },

    FoodDonutJellyPink = {
        "pink jelly-donut",
    },

    FoodDonutJellySpaceman = {
        "spaceman's jelly-donut",
    },

    FoodDonutJellyApple = {
        "apple jelly-donut",
    },

    FoodDonutJellyCaramel = {
        "caramel jelly-donut",
    },

    FoodDonutJellyChocolate = {
        "chocolate jelly-donut",
    },

    FoodDonutJellyBlumpkin = {
        "blumpkin jelly-donut",
    },

    FoodDonutJellyBungo = {
        "bungo jelly-donut",
    },

    FoodDonutJelly = {
        "matcha jelly-donut",
    },

    FoodDonutJellySweetpea = {
        "sweet pea jelly-donut",
    },

    FoodDonutJellySlugcat = {
        "slugcat jelly-donut",
    },

    FoodBakedMuffin = {
        "muffin",
    },

    FoodBakedMuffinBerry = {
        "berry muffin",
    },

    FoodBakedMuffinCherry = {
        "cherry muffin",
    },

    FoodBakedMuffinBluecherry = {
        "bluecherry muffin",
    },

    FoodBakedBunHoney = {
        "honey bun",
    },

    FoodBakedBunHotX = {
        "hotcross bun",
    },

    FoodBakedBunMeat = {
        "meat bun",
    },

    FoodBakedCookie = {
        "cookie",
    },

    FoodBakedCookieOatmeal = {
        "oatmeal cookie",
    },

    FoodBakedCookieRaisin = {
        "raisin cookie",
    },

    FoodBakedCookieSugar = {
        "sugar cookie",
    },

    FoodBakedNugget = {
        "chicken nugget",
    },

    FoodBakedPancake = {
        "pancake",
    },

    FoodBakedPancakeBb = {
        "blueberry pancake",
    },

    FoodBakedPancakeCc = {
        "chocolate chip pancake",
    },

    FoodBakedWaffle = {
        "waffles",
    },

    FoodBakedWaffleSoy = {
        "soy waffles",
    },

    FoodBakedWaffleSoylent = {
        "soylent waffles",
    },

    FoodBakedWaffleRoffle = {
        "roffle waffles",
    },

    FoodBakedPretzel = {
        "poppy pretzel",
    },

    FoodBakedCannoli = {
        "cannoli",
    },

    FoodBakedDumplings = {
        "dumplings",
    },

    FoodBakedChevreChaud = {
        "chèvre chaud",
    },

    FoodBakedBrownieBatch = {
        "brownies",
    },

    FoodBakedBrownie = {
        "brownie",
    },

    FoodBakedCannabisBrownieBatch = {
        "special brownies",
    },

    FoodBakedCannabisBrownie = {
        "special brownie",
    },

    FoodOnionRings = {
        "onion rings",
    },

    FoodPieApple = {
        "apple pie",
    },

    FoodPieAppleSlice = {
        "slice of apple pie",
    },

    FoodPieBaklava = {
        "baklava",
    },

    FoodPieBaklavaSlice = {
        "slice of baklava",
    },

    FoodPieBananaCream = {
        "banana cream pie",
    },

    FoodPieBananaCreamSlice = {
        "slice of banana cream pie",
    },

    FoodPieClafoutis = {
        "berry clafoutis",
    },

    FoodPieClafoutisSlice = {
        "slice of berry clafoutis",
    },

    FoodPieCherry = {
        "cherry pie",
    },

    FoodPieCherrySlice = {
        "slice of cherry pie",
    },

    FoodPieMeat = {
        "meat pie",
    },

    FoodPieMeatSlice = {
        "slice of meat pie",
    },

    FoodPieXeno = {
        "xeno pie",
    },

    FoodPieXenoSlice = {
        "slice of xeno pie",
    },

    FoodPieFrosty = {
        "frosty pie",
    },

    FoodPieFrostySlice = {
        "slice of frosty pie",
    },

    FoodTartMime = {
        "mime tart",
    },

    FoodTartMimeSlice = {
        "slice of mime tart",
    },

    FoodPieAmanita = {
        "amanita pie",
    },

    FoodPiePlump = {
        "plump pie",
    },

    FoodTartGrape = {
        "grape tart",
    },

    FoodTartGapple = {
        "golden apple streusel tart",
    },

    FoodTartCoco = {
        "chocolate lava tart",
    },

    FoodPizzaMargherita = {
        "margherita pizza",
    },

    FoodPizzaMargheritaSlice = {
        "slice of margherita pizza",
    },

    FoodPizzaMeat = {
        "meat pizza",
    },

    FoodPizzaMeatSlice = {
        "slice of meat pizza",
    },

    FoodPizzaMushroom = {
        "mushroom pizza",
    },

    FoodPizzaMushroomSlice = {
        "slice of mushroom pizza",
    },

    FoodPizzaVegetable = {
        "vegetable pizza",
    },

    FoodPizzaVegetableSlice = {
        "slice of vegetable pizza",
    },

    FoodPizzaDonkpocket = {
        "donk-pocket pizza",
    },

    FoodPizzaDonkpocketSlice = {
        "slice of donk-pocket pizza",
    },

    FoodPizzaDank = {
        "dank pizza",
    },

    FoodPizzaDankSlice = {
        "slice of dank pizza",
    },

    FoodPizzaSassysage = {
        "sassysage pizza",
    },

    FoodPizzaSassysageSlice = {
        "slice of sassysage pizza",
    },

    FoodPizzaPineapple = {
        "Hawaiian pizza",
    },

    FoodPizzaPineappleSlice = {
        "slice of Hawaiian pizza",
    },

    FoodPizzaArnold = {
        "Arnold's pizza",
    },

    FoodPizzaArnoldSlice = {
        "slice of Arnold's pizza",
    },

    FoodPizzaMoldySlice = {
        "slice of moldy pizza",
    },

    FoodPizzaUranium = {
        "spicy rock pizza",
    },

    FoodPizzaUraniumSlice = {
        "slice of spicy rock pizza",
    },

    FoodBowlBig = {
        "bowl",
    },

    FoodBowlBigTrash = {
        "broken bowl",
    },

    FoodBowlFancy = {
        "bowl",
    },

    FoodBoxDonut = {
        "donut box",
    },

    FoodContainerEgg = {
        "egg carton",
    },

    FoodBoxPizza = {
        "pizza box",
    },

    FoodBoxPizzaFilled = {
        "pizza box",
    },

    FoodBoxNugget = {
        "chicken nuggets",
    },

    FoodBoxDonkpocket = {
        "box of donk-pockets",
    },

    FoodBoxDonkpocketSpicy = {
        "box of spicy-flavoured donk-pockets",
    },

    FoodBoxDonkpocketTeriyaki = {
        "box of teriyaki-flavoured donk-pockets",
    },

    FoodBoxDonkpocketPizza = {
        "box of pizza-flavoured donk-pockets",
    },

    FoodBoxDonkpocketStonk = {
        "box of limited edition stonk-pockets",
    },

    FoodBoxDonkpocketCarp = {
        "box of carp-pockets",
    },

    FoodBoxDonkpocketBerry = {
        "box of berry-flavoured donk-pockets",
    },

    FoodBoxDonkpocketHonk = {
        "box of banana-flavoured donk-pockets",
    },

    FoodBoxDonkpocketDink = {
        "box of dink-pockets",
    },

    HappyHonk = {
        "happy honk meal",
    },

    HappyHonkNukie = {
        "robust nukie meal",
    },

    HappyHonkNukieSnacks = {
        "syndicate snack box",
    },

    HappyHonkCluwne = {
        "woeful cluwne meal",
    },

    BaseFoodCondimentPacket = {
        "condiment packet",
    },

    FoodCondimentPacketAstrotame = {
        "Astrotame",
    },

    FoodCondimentPacketBbq = {
        "BBQ sauce",
    },

    FoodCondimentPacketCornoil = {
        "corn oil",
    },

    FoodCondimentPacketFrostoil = {
        "coldsauce",
    },

    FoodCondimentPacketHorseradish = {
        "horseradish sauce",
    },

    FoodCondimentPacketHotsauce = {
        "hotsauce",
    },

    FoodCondimentPacketKetchup = {
        "ketchup",
    },

    FoodCondimentPacketMustard = {
        "mustard",
    },

    FoodCondimentPacketPepper = {
        "black pepper",
    },

    FoodCondimentPacketSalt = {
        "salt",
    },

    FoodCondimentPacketSoy = {
        "soy sauce",
    },

    FoodCondimentPacketSugar = {
        "sugar",
    },

    BaseFoodCondimentBottle = {
        "condiment bottle",
    },

    FoodCondimentBottleColdsauce = {
        "coldsauce bottle",
    },

    FoodCondimentBottleEnzyme = {
        "universal enzyme",
    },

    FoodCondimentBottleVinegar = {
        "vinegar bottle",
    },

    FoodCondimentBottleHotsauce = {
        "hotsauce bottle",
    },

    FoodCondimentBottleKetchup = {
        "ketchup bottle",
    },

    FoodCondimentBottleBBQ = {
        "BBQ sauce bottle",
    },

    BaseFoodShaker = {
        "empty shaker",
    },

    FoodShakerSalt = {
        "salt shaker",
    },

    FoodShakerPepper = {
        "pepper shaker",
    },

    FoodPlate = {
        "large plate",
    },

    FoodPlateTrash = {
        "broken plate",
    },

    FoodPlateSmall = {
        "small plate",
    },

    FoodPlatePlastic = {
        "plastic plate",
    },

    FoodPlateSmallPlastic = {
        "plastic plate",
    },

    FoodPlateTin = {
        "pie tin",
    },

    FoodTinBase = {
        "tin",
    },

    FoodTinBaseTrash = {
        "empty tin",
    },

    FoodTinPeaches = {
        "tinned peaches",
    },

    FoodTinPeachesTrash = {
        "tinned peaches",
    },

    FoodTinPeachesMaint = {
        "maintenance peaches",
    },

    FoodTinPeachesMaintTrash = {
        "maintenance peaches",
    },

    FoodTinBeans = {
        "tin of beans",
    },

    FoodTinBeansTrash = {
        "tin of beans",
    },

    FoodTinMRE = {
        "tinned meat",
    },

    FoodTinMRETrash = {
        "tinned meat",
    },

    CigCartonGreen = {
        "Spessman's Smokes carton",
    },

    CigCartonRed = {
        "DromedaryCo carton",
    },

    CigCartonBlue = {
        "AcmeCo carton",
    },

    CigCartonBlack = {
        "Nomads carton",
    },

    CigCartonMixed = {
        "Dan's soaked smokes",
    },

    Cigarette = {
        "cigarette",
    },

    SoakedCigarette = {
        "cigarette",
    },

    CigaretteSyndicate = {
        "cigarette",
    },

    CigaretteOmnizine = {
        "Hot Dog Water Flavor Explosion",
    },

    CigaretteIron = {
        "Rusty Orange Baja Blast",
    },

    CigaretteTricordrazine = {
        "Licorice Allsorts",
    },

    CigaretteDylovene = {
        "Urinal Cake Disolver",
    },

    CigaretteDermaline = {
        "Aloe Peanut Butter Medley",
    },

    CigaretteArithrazine = {
        "Roman Pipe Works",
    },

    CigaretteIpecac = {
        "Grandma's Christmas Fruitcake",
    },

    CigaretteBicaridine = {
        "Wet Dog Enhanced Cigarette",
    },

    CigaretteDexalin = {
        "Rocky Mountain Musk",
    },

    CigarettePax = {
        "Switzerland Express",
    },

    CigaretteBbqSauce = {
        "Spicy Wood Aroma",
    },

    CigaretteBlackPepper = {
        "English Spice",
    },

    CigaretteCapsaicinOil = {
        "Chilly P",
    },

    CigaretteBread = {
        "Double Toasted",
    },

    CigaretteMilk = {
        "Bovine Extract",
    },

    CigaretteBanana = {
        "Clown Adjancency Bonus",
    },

    CigaretteSpaceDrugs = {
        "80's Power Hour",
    },

    CigaretteMuteToxin = {
        "Mixed Lozenges",
    },

    CigaretteMold = {
        "Beneath The Sink Experience",
    },

    CigaretteLicoxide = {
        "Wake Up Call",
    },

    CigaretteWeldingFuel = {
        "Plasma Sauce",
    },

    CigaretteTHC = {
        "Hippy Romance Novel",
    },

    Joint = {
        "joint",
    },

    JointRainbow = {
        "joint",
    },

    Blunt = {
        "blunt",
    },

    BluntRainbow = {
        "blunt",
    },

    CigPackBase = {
        "cigarette pack",
    },

    CigPackMixedBase = {
        "soaked cigarette pack",
    },

    CigPackGreen = {
        "Spessman's Smokes packet",
    },

    CigPackRed = {
        "DromedaryCo packet",
    },

    CigPackBlue = {
        "AcmeCo packet",
    },

    CigPackBlack = {
        "Nomads packet",
    },

    CigPackSyndicate = {
        "Interdyne herbals packet",
    },

    CigPackMixedMedical = {
        "Dan's soaked smokes",
    },

    CigPackMixed = {
        "Dan's soaked smokes",
    },

    CigPackMixedNasty = {
        "Dan's soaked smokes",
    },

    PackPaperRolling = {
        "pack of rolling paper",
    },

    PackPaperRollingFilters = {
        "pack of rolling paper with filters",
    },

    PaperRolling = {
        "rolling paper",
    },

    CigaretteFilter = {
        "cigarette filter",
    },

    CigarCase = {
        "cigar case",
    },

    CigarGoldCase = {
        "premium cigar case",
    },

    Cigar = {
        "cigar",
    },

    CigarGold = {
        "premium Havanian cigar",
    },

    SmokingPipe = {
        "pipe",
    },

    SmokingPipeFilledTobacco = {
        "pipe",
    },

    SmokingPipeFilledCannabis = {
        "pipe",
    },

    SmokingPipeFilledCannabisRainbow = {
        "pipe",
    },

    Vape = {
        "vape",
    },

    BaseMachineCircuitboard = {
        "machine board",
    },

    ShuttleGunSvalinnMachineGunCircuitboard = {
        "LSE-400c \"Svalinn machine gun\" machine board",
    },

    ShuttleGunPerforatorCircuitboard = {
        "LSE-1200c \"Perforator\" machine board",
    },

    ShuttleGunFriendshipCircuitboard = {
        "EXP-320g \"Friendship\" machine board",
    },

    ShuttleGunDusterCircuitboard = {
        "EXP-2100g \"Duster\" machine board",
    },

    ShuttleGunKineticCircuitboard = {
        "PTK-800 \"Matter Dematerializer\" machine board",
    },

    MachineParticleAcceleratorEndCapCircuitboard = {
        "PA end cap board",
    },

    MachineParticleAcceleratorFuelChamberCircuitboard = {
        "PA fuel chamber board",
    },

    MachineParticleAcceleratorPowerBoxCircuitboard = {
        "PA power box board",
    },

    MachineParticleAcceleratorEmitterStarboardCircuitboard = {
        "PA starboard emitter board",
    },

    MachineParticleAcceleratorEmitterForeCircuitboard = {
        "PA fore emitter board",
    },

    MachineParticleAcceleratorEmitterPortCircuitboard = {
        "PA port emitter board",
    },

    AutolatheMachineCircuitboard = {
        "autolathe machine board",
    },

    AutolatheHyperConvectionMachineCircuitboard = {
        "hyper convection autolathe machine board",
    },

    ProtolatheMachineCircuitboard = {
        "protolathe machine board",
    },

    ProtolatheHyperConvectionMachineCircuitboard = {
        "hyper convection protolathe machine board",
    },

    BiofabricatorMachineCircuitboard = {
        "biocube fabricator machine board",
    },

    SecurityTechFabCircuitboard = {
        "security techfab machine board",
    },

    AmmoTechFabCircuitboard = {
        "ammo techfab circuit board",
    },

    MedicalTechFabCircuitboard = {
        "medical techfab machine board",
    },

    CircuitImprinterMachineCircuitboard = {
        "circuit imprinter machine board",
    },

    CircuitImprinterHyperConvectionMachineCircuitboard = {
        "hyper convection circuit imprinter machine board",
    },

    ExosuitFabricatorMachineCircuitboard = {
        "exosuit fabricator machine board",
    },

    ResearchAndDevelopmentServerMachineCircuitboard = {
        "R&D server machine board",
    },

    UniformPrinterMachineCircuitboard = {
        "uniform printer machine board",
    },

    VaccinatorMachineCircuitboard = {
        "vaccinator machine board",
    },

    DiagnoserMachineCircuitboard = {
        "diagnoser machine board",
    },

    ArtifactAnalyzerMachineCircuitboard = {
        "artifact analyzer machine board",
    },

    ArtifactCrusherMachineCircuitboard = {
        "artifact crusher machine board",
    },

    AnomalyVesselCircuitboard = {
        "anomaly vessel machine board",
    },

    AnomalyVesselExperimentalCircuitboard = {
        "experimental anomaly vessel machine board",
    },

    AnomalySynchronizerCircuitboard = {
        "anomaly synchronizer machine board",
    },

    APECircuitboard = {
        "A.P.E. machine board",
    },

    ThermomachineFreezerMachineCircuitBoard = {
        "freezer thermomachine machine board",
    },

    ThermomachineHeaterMachineCircuitBoard = {
        "heater thermomachine machine board",
    },

    HellfireFreezerMachineCircuitBoard = {
        "hellfire freezer machine board",
    },

    HellfireHeaterMachineCircuitBoard = {
        "hellfire heater machine board",
    },

    CondenserMachineCircuitBoard = {
        "condenser machine board",
    },

    PortableScrubberMachineCircuitBoard = {
        "portable scrubber machine board",
    },

    SpaceHeaterMachineCircuitBoard = {
        "space heater machine board",
    },

    CloningPodMachineCircuitboard = {
        "cloning pod machine board",
    },

    MedicalScannerMachineCircuitboard = {
        "medical scanner machine board",
    },

    CrewMonitoringServerMachineCircuitboard = {
        "crew monitoring server machine board",
    },

    CryoPodMachineCircuitboard = {
        "cryo pod machine board",
    },

    ChemMasterMachineCircuitboard = {
        "ChemMaster 4000 machine board",
    },

    ChemDispenserMachineCircuitboard = {
        "chem dispenser machine board",
    },

    BiomassReclaimerMachineCircuitboard = {
        "biomass reclaimer machine board",
    },

    HydroponicsTrayMachineCircuitboard = {
        "hydroponics tray machine board",
    },

    SeedExtractorMachineCircuitboard = {
        "seed extractor machine board",
    },

    SMESMachineCircuitboard = {
        "SMES machine board",
    },

    CellRechargerCircuitboard = {
        "cell recharger machine board",
    },

    PowerCageRechargerCircuitboard = {
        "cage recharger machine board",
    },

    BorgChargerCircuitboard = {
        "cyborg recharging station machine board",
    },

    WeaponCapacitorRechargerCircuitboard = {
        "recharger machine board",
    },

    TurboItemRechargerCircuitboard = {
        "turbo recharger machine board",
    },

    SubstationMachineCircuitboard = {
        "substation machine board",
    },

    DawInstrumentMachineCircuitboard = {
        "digital audio workstation machine board",
    },

    PortableGeneratorPacmanMachineCircuitboard = {
        "P.A.C.M.A.N.-type portable generator machine board",
    },

    ThrusterMachineCircuitboard = {
        "thruster machine board",
    },

    GyroscopeMachineCircuitboard = {
        "gyroscope machine board",
    },

    PortableGeneratorSuperPacmanMachineCircuitboard = {
        "S.U.P.E.R.P.A.C.M.A.N.-type portable generator machine board",
    },

    PortableGeneratorJrPacmanMachineCircuitboard = {
        "J.R.P.A.C.M.A.N.-type portable generator machine board",
    },

    ReagentGrinderMachineCircuitboard = {
        "reagent grinder machine board",
    },

    HotplateMachineCircuitboard = {
        "hotplate machine board",
    },

    ElectricGrillMachineCircuitboard = {
        "electric grill machine board",
    },

    StasisBedMachineCircuitboard = {
        "stasis bed machine board",
    },

    ElectrolysisUnitMachineCircuitboard = {
        "electrolysis unit machine board",
    },

    CentrifugeMachineCircuitboard = {
        "centrifuge machine board",
    },

    MaterialReclaimerMachineCircuitboard = {
        "material reclaimer machine board",
    },

    OreProcessorMachineCircuitboard = {
        "ore processor machine board",
    },

    OreProcessorIndustrialMachineCircuitboard = {
        "industrial ore processor machine board",
    },

    SheetifierMachineCircuitboard = {
        "sheet-meister 2000 machine board",
    },

    MicrowaveMachineCircuitboard = {
        "microwave machine board",
    },

    SyndicateMicrowaveMachineCircuitboard = {
        "donk co. microwave machine board",
    },

    FatExtractorMachineCircuitboard = {
        "lipid extractor machine board",
    },

    FlatpackerMachineCircuitboard = {
        "Flatpacker 1001 machine board",
    },

    EmitterCircuitboard = {
        "emitter machine board",
    },

    SurveillanceCameraRouterCircuitboard = {
        "surveillance camera router board",
    },

    SurveillanceCameraWirelessRouterCircuitboard = {
        "surveillance camera wireless router board",
    },

    SurveillanceWirelessCameraMovableCircuitboard = {
        "movable wireless camera board",
    },

    SurveillanceWirelessCameraAnchoredCircuitboard = {
        "wireless camera board",
    },

    GasRecyclerMachineCircuitboard = {
        "gas recycler board",
    },

    BoozeDispenserMachineCircuitboard = {
        "booze dispenser machine board",
    },

    CargoTelepadMachineCircuitboard = {
        "cargo telepad machine board",
    },

    SodaDispenserMachineCircuitboard = {
        "soda dispenser machine board",
    },

    TelecomServerCircuitboard = {
        "telecommunication server machine board",
    },

    SalvageMagnetMachineCircuitboard = {
        "salvage magnet machine board",
    },

    MiniGravityGeneratorCircuitboard = {
        "mini gravity generator machine board",
    },

    ReagentGrinderIndustrialMachineCircuitboard = {
        "industrial reagent grinder machine board",
    },

    JukeboxCircuitBoard = {
        "jukebox machine board",
    },

    CutterMachineCircuitboard = {
        "cutter machine board",
    },

    CartridgeRocket = {
        "PG-7VL grenade",
    },

    CartridgeRocketSlow = {
        "PG-7VL grenade \"Snail-Rocket\"",
    },

    BaseGrenade = {
        "base grenade",
    },

    GrenadeBaton = {
        "baton grenade",
    },

    GrenadeBlast = {
        "blast grenade",
    },

    GrenadeFlash = {
        "flash grenade",
    },

    GrenadeFrag = {
        "frag grenade",
    },

    GrenadeEMP = {
        "EMP grenade",
    },

    BaseCannonBall = {
        "base cannon ball",
    },

    CannonBall = {
        "cannonball",
    },

    CannonBallGrapeshot = {
        "grapeshot",
    },

    CannonBallGlassshot = {
        "glassshot",
    },

    WeaponProtoKineticAccelerator = {
        "proto-kinetic accelerator",
    },

    WeaponSprayNozzle = {
        "spray nozzle",
    },

    WeaponStaffHealing = {
        "staff of healing",
    },

    WeaponStaffPolymorphDoor = {
        "staff of entrance",
    },

    WeaponWandPolymorphCarp = {
        "wand of carp polymorph",
    },

    WeaponWandPolymorphMonkey = {
        "wand of monkey polymorph",
    },

    WeaponWandFireball = {
        "wand of fireball",
    },

    WeaponWandDeath = {
        "magical wand of instant death",
    },

    WeaponWandPolymorphDoor = {
        "wand of entrance",
    },

    WeaponWandCluwne = {
        "wand of cluwning",
    },

    WeaponWandPolymorphBread = {
        "magic bread wand",
    },

    WeaponWaterPistol = {
        "water pistol",
    },

    WeaponWaterBlaster = {
        "water blaster",
    },

    WeaponWaterBlasterSuper = {
        "super water blaster",
    },

    WeaponLaserSvalinn = {
        "svalinn laser pistol",
    },

    WeaponLaserGun = {
        "retro laser blaster",
    },

    WeaponMakeshiftLaser = {
        "makeshift laser pistol",
    },

    WeaponTeslaGun = {
        "tesla gun",
    },

    WeaponLaserCarbine = {
        "laser rifle",
    },

    WeaponLaserCarbinePractice = {
        "practice laser rifle",
    },

    WeaponPulsePistol = {
        "pulse pistol",
    },

    WeaponPulseCarbine = {
        "pulse carbine",
    },

    WeaponPulseRifle = {
        "pulse rifle",
    },

    WeaponLaserCannon = {
        "laser cannon",
    },

    WeaponParticleDecelerator = {
        "portable particle decelerator",
    },

    WeaponXrayCannon = {
        "x-ray cannon",
    },

    WeaponDisabler = {
        "disabler",
    },

    WeaponDisablerSMG = {
        "disabler SMG",
    },

    WeaponDisablerPractice = {
        "practice disabler",
    },

    WeaponTaser = {
        "taser",
    },

    WeaponAntiqueLaser = {
        "antique laser pistol",
    },

    WeaponAdvancedLaser = {
        "advanced laser pistol",
    },

    WeaponPistolCHIMP = {
        "C.H.I.M.P. handcannon",
    },

    WeaponPistolCHIMPUpgraded = {
        "experimental C.H.I.M.P. handcannon",
    },

    WeaponBehonkerLaser = {
        "eye of a behonker",
    },

    BaseBow = {
        "bow",
    },

    BaseWeaponHeavyMachineGun = {
        "BaseWeaponHeavyMachineGun",
    },

    WeaponMinigun = {
        "minigun",
    },

    BaseWeaponLauncher = {
        "BaseWeaponLauncher",
    },

    WeaponLauncherChinaLake = {
        "china lake",
    },

    WeaponLauncherRocket = {
        "RPG-7",
    },

    WeaponLauncherMultipleRocket = {
        "multiple rocket launcher",
    },

    WeaponLauncherPirateCannon = {
        "pirate cannon",
    },

    WeaponTetherGun = {
        "tether gun",
    },

    WeaponForceGun = {
        "force gun",
    },

    WeaponGrapplingGun = {
        "grappling gun",
    },

    WeaponTetherGunAdmin = {
        "tether gun",
    },

    WeaponForceGunAdmin = {
        "force gun",
    },

    WeaponLauncherAdmemeMeteorLarge = {
        "meteor launcher",
    },

    WeaponLauncherAdmemeImmovableRodSlow = {
        "immovable rod launcher",
    },

    BaseWeaponLightMachineGun = {
        "BaseWeaponLightMachineGun",
    },

    WeaponLightMachineGunL6 = {
        "L6 SAW",
    },

    WeaponLightMachineGunL6C = {
        "L6C ROW",
    },

    BaseWeaponPistol = {
        "BasePistol",
    },

    WeaponPistolViper = {
        "viper",
    },

    WeaponPistolEchis = {
        "echis",
    },

    WeaponPistolCobra = {
        "cobra",
    },

    WeaponPistolMk58 = {
        "mk 58",
    },

    WeaponPistolN1984 = {
        "N1984",
    },

    ArrowRegular = {
        "arrow",
    },

    ArrowImprovised = {
        "glass shard arrow",
    },

    ProjectileFireball = {
        "fireball",
    },

    ProjectileDragonsBreath = {
        "dragon's breath",
    },

    ProjectileAnomalyFireball = {
        "fireball",
    },

    ProjectilePolyboltCarp = {
        "carp polybolt",
    },

    ProjectilePolyboltMonkey = {
        "monkey polybolt",
    },

    ProjectilePolyboltDoor = {
        "door polybolt",
    },

    ProjectileHealingBolt = {
        "healing bolt",
    },

    BulletInstakillMagic = {
        "magical lead cylinder",
    },

    ProjectilePolyboltCluwne = {
        "cluwne polybolt",
    },

    ProjectileIcicle = {
        "icicle",
    },

    ProjectilePolyboltBread = {
        "bread polybolt",
    },

    BaseMeteor = {
        "meteor",
    },

    MeteorSpaceDust = {
        "space dust",
    },

    MeteorUrist = {
        "Urist McMeteor",
    },

    BaseBullet = {
        "BaseBullet",
    },

    BaseBulletPractice = {
        "base bullet practice",
    },

    BaseBulletIncendiary = {
        "base bullet incendiary",
    },

    BaseBulletAP = {
        "base bullet armor-piercing",
    },

    BaseBulletUranium = {
        "base bullet uranium",
    },

    BulletTaser = {
        "taser bolt",
    },

    BulletDisabler = {
        "disabler bolt",
    },

    BulletDisablerPractice = {
        "disabler bolt practice",
    },

    EmitterBolt = {
        "emitter bolt",
    },

    WatcherBolt = {
        "watcher bolt",
    },

    WatcherBoltMagmawing = {
        "magmawing watcher bolt",
    },

    BulletKinetic = {
        "kinetic bolt",
    },

    BulletCharge = {
        "charge bolt",
    },

    AnomalousParticleDelta = {
        "delta particles",
    },

    AnomalousParticleEpsilon = {
        "epsilon particles",
    },

    AnomalousParticleZeta = {
        "zeta particles",
    },

    AnomalousParticleOmegaStrong = {
        "omega particles",
    },

    AnomalousParticleSigma = {
        "sigma particles",
    },

    AnomalousParticleSigmaStrong = {
        "sigma particles",
    },

    BulletRocket = {
        "rocket",
    },

    BulletWeakRocket = {
        "weak rocket",
    },

    BulletGrenadeBaton = {
        "baton grenade",
    },

    BulletGrenadeBlast = {
        "blast grenade",
    },

    BulletGrenadeFlash = {
        "flash grenade",
    },

    BulletGrenadeFrag = {
        "frag grenade",
    },

    BulletGrenadeEMP = {
        "EMP rocket",
    },

    BulletCap = {
        "cap bullet",
    },

    BulletAcid = {
        "acid spit",
    },

    BulletWaterShot = {
        "water",
    },

    BulletCannonBall = {
        "cannonball",
    },

    GrapplingHook = {
        "grappling hook",
    },

    BulletDisablerSmg = {
        "disabler bolt smg",
    },

    TeslaGunBullet = {
        "tesla gun lightning",
    },

    BaseWeaponRevolver = {
        "BaseWeaponRevolver",
    },

    WeaponRevolverDeckard = {
        "Deckard",
    },

    WeaponRevolverInspector = {
        "Inspector",
    },

    WeaponRevolverMateba = {
        "Mateba",
    },

    WeaponRevolverPython = {
        "Python",
    },

    WeaponRevolverPirate = {
        "pirate revolver",
    },

    BaseWeaponRifle = {
        "BaseWeaponRifle",
    },

    WeaponRifleAk = {
        "AKMS",
    },

    WeaponRifleM90GrenadeLauncher = {
        "M-90gl",
    },

    WeaponRifleLecter = {
        "Lecter",
    },

    WeaponRifleFoam = {
        "Foam Force Astro Ace",
    },

    BaseWeaponShotgun = {
        "BaseWeaponShotgun",
    },

    WeaponShotgunBulldog = {
        "Bulldog",
    },

    WeaponShotgunDoubleBarreled = {
        "double-barreled shotgun",
    },

    WeaponShotgunDoubleBarreledRubber = {
        "double-barreled shotgun",
    },

    WeaponShotgunEnforcer = {
        "Enforcer",
    },

    WeaponShotgunKammerer = {
        "Kammerer",
    },

    WeaponShotgunSawn = {
        "sawn-off shotgun",
    },

    WeaponShotgunSawnEmpty = {
        "sawn-off shotgun",
    },

    WeaponShotgunHandmade = {
        "handmade pistol",
    },

    WeaponShotgunBlunderbuss = {
        "blunderbuss",
    },

    WeaponShotgunImprovised = {
        "improvised shotgun",
    },

    WeaponShotgunImprovisedLoaded = {
        "improvised shotgun",
    },

    BaseWeaponSubMachineGun = {
        "BaseSMG",
    },

    WeaponSubMachineGunAtreides = {
        "Atreides",
    },

    WeaponSubMachineGunC20r = {
        "C-20r sub machine gun",
    },

    WeaponSubMachineGunDrozd = {
        "Drozd",
    },

    WeaponSubMachineGunVector = {
        "Vector",
    },

    WeaponSubMachineGunWt550 = {
        "WT550",
    },

    BaseWeaponSniper = {
        "BaseWeaponSniper",
    },

    WeaponSniperMosin = {
        "Kardashev-Mosin",
    },

    WeaponSniperHristov = {
        "Hristov",
    },

    Musket = {
        "musket",
    },

    WeaponPistolFlintlock = {
        "flintlock pistol",
    },

    BaseMagazineBoxAntiMateriel = {
        "ammunition box (.60 anti-materiel)",
    },

    MagazineBoxAntiMaterielBig = {
        "ammunition box (.60 anti-materiel)",
    },

    MagazineBoxAntiMateriel = {
        "ammunition box (.60 anti-materiel)",
    },

    BaseMagazineBoxCaselessRifle = {
        "ammunition box (.25 caseless)",
    },

    MagazineBoxCaselessRifle10x24 = {
        "ammunition box (.25 caseless)",
    },

    MagazineBoxCaselessRifleBig = {
        "ammunition box (.25 caseless)",
    },

    MagazineBoxCaselessRifle = {
        "ammunition box (.25 caseless)",
    },

    MagazineBoxCaselessRiflePractice = {
        "ammunition box (.25 caseless practice)",
    },

    BaseMagazineBoxLightRifle = {
        "ammunition box (.30 rifle)",
    },

    MagazineBoxLightRifleBig = {
        "ammunition box (.30 rifle)",
    },

    MagazineBoxLightRifle = {
        "ammunition box (.30 rifle)",
    },

    MagazineBoxLightRiflePractice = {
        "ammunition box (.30 rifle practice)",
    },

    MagazineBoxLightRifleIncendiary = {
        "ammunition box (.30 rifle incendiary)",
    },

    MagazineBoxLightRifleUranium = {
        "ammunition box (.30 rifle uranium)",
    },

    MagazineBoxMagnum = {
        "ammunition box (.45 magnum)",
    },

    MagazineBoxMagnumPractice = {
        "ammunition box (.45 magnum practice)",
    },

    MagazineBoxMagnumIncendiary = {
        "ammunition box (.45 magnum incendiary)",
    },

    MagazineBoxMagnumUranium = {
        "ammunition box (.45 magnum uranium)",
    },

    MagazineBoxMagnumAP = {
        "ammunition box (.45 magnum armor-piercing)",
    },

    BaseMagazineBoxPistol = {
        "ammunition box (.35 auto)",
    },

    MagazineBoxPistol = {
        "ammunition box (.35 auto)",
    },

    MagazineBoxPistolPractice = {
        "ammunition box (.35 auto practice)",
    },

    MagazineBoxPistolIncendiary = {
        "ammunition box (.35 auto incendiary)",
    },

    MagazineBoxPistolUranium = {
        "ammunition box (.35 auto uranium)",
    },

    MagazineBoxRifleBig = {
        "ammunition box (.20 rifle)",
    },

    MagazineBoxRifle = {
        "ammunition box (.20 rifle)",
    },

    MagazineBoxRiflePractice = {
        "ammunition box (.20 rifle practice)",
    },

    MagazineBoxRifleIncendiary = {
        "ammunition box (.20 rifle incendiary)",
    },

    MagazineBoxRifleUranium = {
        "ammunition box (.20 rifle uranium)",
    },

    BoxBeanbag = {
        "shotgun beanbag cartridges dispenser",
    },

    BoxLethalshot = {
        "shotgun lethal cartridges dispenser",
    },

    BoxShotgunSlug = {
        "shotgun slug cartridges dispenser",
    },

    BoxShotgunFlare = {
        "shotgun flare cartridges dispenser",
    },

    BoxShotgunIncendiary = {
        "shotgun incendiary cartridges dispenser",
    },

    BoxShotgunUranium = {
        "shotgun uranium cartridges dispenser",
    },

    BoxShotgunPractice = {
        "shotgun practice cartridges dispenser",
    },

    BoxShellTranquilizer = {
        "tranquilizer cartridges dispenser",
    },

    BoxDonkSoftBase = {
        "foamdart box",
    },

    BoxDonkSoftBox = {
        "box of foam darts",
    },

    BoxCartridgeCap = {
        "cap gun cartridge box",
    },

    CartridgeAntiMateriel = {
        "cartridge (.60 anti-materiel)",
    },

    BaseCartridgeCaselessRifle = {
        "cartridge (.25 rifle)",
    },

    CartridgeCaselessRifle = {
        "cartridge (.25 caseless)",
    },

    CartridgeCaselessRiflePractice = {
        "cartridge (.25 caseless practice)",
    },

    BaseCartridgeHeavyRifle = {
        "cartridge (.20 rifle)",
    },

    CartridgeMinigun = {
        "cartridge (.10 rifle)",
    },

    BaseCartridgeLightRifle = {
        "cartridge (.30 rifle)",
    },

    CartridgeLightRifle = {
        "cartridge (.30 rifle)",
    },

    CartridgeLightRiflePractice = {
        "cartridge (.30 rifle practice)",
    },

    CartridgeLightRifleIncendiary = {
        "cartridge (.30 rifle incendiary)",
    },

    CartridgeLightRifleUranium = {
        "cartridge (.30 rifle uranium)",
    },

    BaseCartridgeMagnum = {
        "cartridge (.45 magnum)",
    },

    CartridgeMagnum = {
        "cartridge (.45 magnum)",
    },

    CartridgeMagnumPractice = {
        "cartridge (.45 magnum practice)",
    },

    CartridgeMagnumIncendiary = {
        "cartridge (.45 magnum incendiary)",
    },

    CartridgeMagnumAP = {
        "cartridge (.45 magnum armor-piercing)",
    },

    CartridgeMagnumUranium = {
        "cartridge (.45 magnum uranium)",
    },

    BaseCartridgePistol = {
        "cartridge (.35 auto)",
    },

    CartridgePistol = {
        "cartridge (.35 auto)",
    },

    CartridgePistolPractice = {
        "cartridge (.35 auto practice)",
    },

    CartridgePistolIncendiary = {
        "cartridge (.35 auto incendiary)",
    },

    CartridgePistolUranium = {
        "cartridge (.35 auto uranium)",
    },

    BaseCartridgeRifle = {
        "cartridge (.20 rifle)",
    },

    CartridgeRifle = {
        "cartridge (.20 rifle)",
    },

    CartridgeRiflePractice = {
        "cartridge (.20 rifle practice)",
    },

    CartridgeRifleIncendiary = {
        "cartridge (.20 rifle incendiary)",
    },

    CartridgeRifleUranium = {
        "cartridge (.20 rifle uranium)",
    },

    BaseShellShotgun = {
        "shell (.50)",
    },

    ShellShotgunBeanbag = {
        "shell (.50 beanbag)",
    },

    ShellShotgunSlug = {
        "shell (.50 slug)",
    },

    ShellShotgunFlare = {
        "shell (.50 flare)",
    },

    ShellShotgun = {
        "shell (.50)",
    },

    ShellShotgunIncendiary = {
        "shell (.50 incendiary)",
    },

    ShellShotgunPractice = {
        "shell (.50 practice)",
    },

    ShellTranquilizer = {
        "shell (.50 tranquilizer)",
    },

    ShellShotgunImprovised = {
        "improvised shotgun shell",
    },

    ShellShotgunUranium = {
        "uranium shotgun shell",
    },

    BaseCartridgeCap = {
        "cartridge (cap)",
    },

    CartridgeCap = {
        "cap gun cartridge",
    },

    BaseMagazineCaselessRifle = {
        "magazine (.25 caseless)",
    },

    BaseMagazineCaselessRifleShort = {
        "caseless rifle short magazine (.25 caseless)",
    },

    BaseMagazinePistolCaselessRifle = {
        "pistol magazine (.25 caseless)",
    },

    MagazineCaselessRifle10x24 = {
        "box magazine (.25 caseless)",
    },

    MagazinePistolCaselessRifle = {
        "pistol magazine (.25 caseless)",
    },

    MagazinePistolCaselessRiflePractice = {
        "pistol magazine (.25 caseless practice)",
    },

    MagazineCaselessRifle = {
        "magazine (.25 caseless)",
    },

    MagazineCaselessRiflePractice = {
        "magazine (.25 caseless practice)",
    },

    MagazineCaselessRifleShort = {
        "short magazine (.25 caseless)",
    },

    MagazineCaselessRifleShortPractice = {
        "short magazine (.25 caseless practice)",
    },

    BaseMagazineGrenade = {
        "grenade cartridge",
    },

    MagazineGrenadeEmpty = {
        "grenade cartridge",
    },

    MagazineGrenadeFrag = {
        "frag grenade cartridge",
    },

    MagazineGrenadeEMP = {
        "EMP grenade cartridge",
    },

    MagazineGrenadeFlash = {
        "flash grenade cartridge",
    },

    MagazineGrenadeBlast = {
        "blast grenade cartridge",
    },

    MagazineGrenadeBaton = {
        "baton grenade cartridge",
    },

    BaseMagazineHeavyRifle = {
        "magazine (.20 rifle)",
    },

    BaseMagazineLightRifle = {
        "magazine (.30 rifle)",
    },

    MagazineLightRifleBox = {
        "L6 SAW magazine box (.30 rifle)",
    },

    MagazineLightRifle = {
        "magazine (.30 rifle)",
    },

    MagazineLightRifleEmpty = {
        "magazine (.30 rifle any)",
    },

    MagazineLightRiflePractice = {
        "magazine (.30 rifle practice)",
    },

    MagazineLightRifleUranium = {
        "magazine (.30 rifle uranium)",
    },

    MagazineLightRifleIncendiary = {
        "magazine (.30 rifle incendiary)",
    },

    MagazineLightRifleMaxim = {
        "pan magazine (.30 rifle)",
    },

    MagazineLightRiflePkBox = {
        "PK munitions box (.30 rifle)",
    },

    BaseMagazineMagnum = {
        "pistol magazine (.45 magnum)",
    },

    BaseMagazineMagnumSubMachineGun = {
        "Vector magazine (.45 magnum)",
    },

    MagazineMagnumEmpty = {
        "pistol magazine (.45 magnum any)",
    },

    MagazineMagnum = {
        "pistol magazine (.45 magnum)",
    },

    MagazineMagnumPractice = {
        "pistol magazine (.45 magnum practice)",
    },

    MagazineMagnumUranium = {
        "pistol magazine (.45 magnum uranium)",
    },

    MagazineMagnumAP = {
        "pistol magazine (.45 magnum armor-piercing)",
    },

    MagazineMagnumSubMachineGunEmpty = {
        "Vector magazine (.45 magnum any)",
    },

    MagazineMagnumSubMachineGun = {
        "Vector magazine (.45 magnum)",
    },

    MagazineMagnumSubMachineGunPractice = {
        "Vector magazine (.45 magnum practice)",
    },

    MagazineMagnumSubMachineGunUranium = {
        "Vector magazine (.45 magnum uranium)",
    },

    MagazineMagnumSubMachineGunPiercing = {
        "Vector magazine (.45 magnum armor-piercing)",
    },

    BaseMagazinePistol = {
        "pistol magazine (.35 auto)",
    },

    BaseMagazinePistolHighCapacity = {
        "machine pistol magazine (.35 auto)",
    },

    BaseMagazinePistolSubMachineGun = {
        "SMG magazine (.35 auto)",
    },

    MagazinePistolSubMachineGunTopMounted = {
        "WT550 magazine (.35 auto top-mounted)",
    },

    MagazinePistolSubMachineGunTopMountedEmpty = {
        "WT550 magazine (.35 auto top-mounted any)",
    },

    MagazinePistol = {
        "pistol magazine (.35 auto)",
    },

    MagazinePistolEmpty = {
        "pistol magazine (.35 auto any)",
    },

    MagazinePistolIncendiary = {
        "pistol magazine (.35 auto incendiary)",
    },

    MagazinePistolPractice = {
        "pistol magazine (.35 auto practice)",
    },

    MagazinePistolUranium = {
        "pistol magazine (.35 auto uranium)",
    },

    MagazinePistolHighCapacityEmpty = {
        "machine pistol magazine (.35 auto any)",
    },

    MagazinePistolHighCapacity = {
        "machine pistol magazine (.35 auto)",
    },

    MagazinePistolHighCapacityPractice = {
        "machine pistol magazine (.35 auto practice)",
    },

    MagazinePistolHighCapacityRubber = {
        "machine pistol magazine (.35 auto rubber)",
    },

    MagazinePistolSubMachineGun = {
        "SMG magazine (.35 auto)",
    },

    MagazinePistolSubMachineGunEmpty = {
        "SMG magazine (.35 auto any)",
    },

    MagazinePistolSubMachineGunPractice = {
        "SMG magazine (.35 auto practice)",
    },

    MagazinePistolSubMachineGunUranium = {
        "SMG magazine (.35 auto rubber)",
    },

    BaseMagazineRifle = {
        "magazine (.20 rifle)",
    },

    MagazineRifle = {
        "magazine (.20 rifle)",
    },

    MagazineRifleEmpty = {
        "magazine (.20 rifle any)",
    },

    MagazineRifleIncendiary = {
        "magazine (.20 rifle incendiary)",
    },

    MagazineRiflePractice = {
        "magazine (.20 rifle practice)",
    },

    MagazineRifleUranium = {
        "magazine (.20 rifle uranium)",
    },

    BaseMagazineShotgun = {
        "ammo drum (.50 shells)",
    },

    MagazineShotgunEmpty = {
        "ammo drum (.50 shells any)",
    },

    MagazineShotgun = {
        "ammo drum (.50 pellet)",
    },

    MagazineShotgunBeanbag = {
        "ammo drum (.50 beanbags)",
    },

    MagazineShotgunSlug = {
        "ammo drum (.50 slug)",
    },

    MagazineShotgunIncendiary = {
        "ammo drum (.50 incendiary)",
    },

    MagazineFoamBox = {
        "ammunition box (foam)",
    },

    BulletAntiMateriel = {
        "bullet (.60 anti-materiel)",
    },

    BulletCaselessRifle = {
        "bullet (.25 caseless)",
    },

    BulletCaselessRiflePractice = {
        "bullet (.25 caseless practice)",
    },

    PelletClusterRubber = {
        "pellet (ball, rubber)",
    },

    PelletClusterLethal = {
        "pellet (ball, lethal)",
    },

    PelletClusterIncendiary = {
        "pellet (ball, incendiary)",
    },

    BulletHeavyRifle = {
        "bullet (.20 rifle)",
    },

    BulletMinigun = {
        "minigun bullet (.10 rifle)",
    },

    BulletLightRifle = {
        "bullet (.20 rifle)",
    },

    BulletLightRiflePractice = {
        "bullet (.20 rifle practice)",
    },

    BulletLightRifleIncendiary = {
        "bullet (.20 rifle incendiary)",
    },

    BulletLightRifleUranium = {
        "bullet (.20 rifle uranium)",
    },

    BulletMagnum = {
        "bullet (.45 magnum)",
    },

    BulletMagnumPractice = {
        "bullet (.45 magnum practice)",
    },

    BulletMagnumIncendiary = {
        "bullet (.45 magnum incendiary)",
    },

    BulletMagnumAP = {
        "bullet (.45 magnum armor-piercing)",
    },

    BulletMagnumUranium = {
        "bullet (.45 magnum uranium)",
    },

    BulletPistol = {
        "bullet (.35 auto)",
    },

    BulletPistolPractice = {
        "bullet (.35 auto practice)",
    },

    BulletPistolIncendiary = {
        "bullet (.35 auto incendiary)",
    },

    BulletPistolUranium = {
        "bullet (.35 auto uranium)",
    },

    BulletRifle = {
        "bullet (0.20 rifle)",
    },

    BulletRiflePractice = {
        "bullet (0.20 rifle practice)",
    },

    BulletRifleIncendiary = {
        "bullet (0.20 rifle incendiary)",
    },

    BulletRifleUranium = {
        "bullet (0.20 rifle uranium)",
    },

    PelletShotgunSlug = {
        "pellet (.50 slug)",
    },

    PelletShotgunBeanbag = {
        "beanbag (.50)",
    },

    PelletShotgun = {
        "pellet (.50)",
    },

    PelletShotgunIncendiary = {
        "pellet (.50 incendiary)",
    },

    PelletShotgunPractice = {
        "pellet (.50 practice)",
    },

    PelletShotgunImprovised = {
        "improvised pellet",
    },

    PelletShotgunTranquilizer = {
        "pellet (.50 tranquilizer)",
    },

    PelletShotgunFlare = {
        "pellet (.50 flare)",
    },

    PelletShotgunUranium = {
        "pellet (.50 uranium)",
    },

    PelletGrapeshot = {
        "grapeshot pellet",
    },

    PelletGlass = {
        "glass shard",
    },

    BulletFoam = {
        "foam dart",
    },

    BaseSpeedLoaderMagnum = {
        "speed loader (.45 magnum)",
    },

    SpeedLoaderMagnum = {
        "speed loader (.45 magnum)",
    },

    SpeedLoaderMagnumEmpty = {
        "speed loader (.45 magnum any)",
    },

    SpeedLoaderMagnumIncendiary = {
        "speed loader (.45 magnum incendiary)",
    },

    SpeedLoaderMagnumPractice = {
        "speed loader (.45 magnum practice)",
    },

    SpeedLoaderMagnumAP = {
        "speed loader (.45 magnum armor-piercing)",
    },

    SpeedLoaderMagnumUranium = {
        "speed loader (.45 magnum uranium)",
    },

    BaseSpeedLoaderPistol = {
        "speed loader (.35 auto)",
    },

    SpeedLoaderPistol = {
        "speed loader (.35 auto)",
    },

    SpeedLoaderPistolPractice = {
        "speed loader (.35 auto practice)",
    },

    SpeedLoaderLightRifle = {
        "speed loader (.30 rifle)",
    },

    BaseSpeedLoaderCap = {
        "cap gun loader",
    },

    SpeedLoaderCap = {
        "cap gun loader",
    },
}

-- Lookups the item ID by its name or a an alias. 
function p.lookup_item_id_by_name(frame)
	local args = getArgs(frame)
	local name_query = args[1]
	if name_query == nil then 
		error("Name query is nil") 
	end
	
	for item_id, names in pairs(item_names_by_item_id) do
		for _, name in ipairs(names) do
			if string.lower(name) == name_query then
				return item_id
			end
		end
	end
	
	error("No item ID found for item with name: " .. name_query)
end

return p